* support/regression/tests/constantRange.c:
[fw/sdcc] / ChangeLog
1 2006-07-06 Borut Razem <borut.razem AT siol.net>
2
3         * support/regression/tests/bitfields.c:
4           fixed bug [ 1518322 ] regression test bitfields fails on ppc hosts
5         * support/regression/tests/constantRange.c:
6           fixed bug [ 1518317 ] regression test constantRange fails on alpha host
7
8 2006-07-04 Borut Razem <borut.razem AT siol.net>
9
10         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in,
11           src/port.mk,
12           src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
13           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
14           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
15           reverted changes from 2006-07-03
16         * Makefile.common.in: added @CPPFLAGS@ to CPPFLAGS
17         * support/regression/Makefile.in, support/regression/ports/host/spec.mk:
18           added CPPFLAGS, used by the host port
19
20 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
21
22         * support/regression/valdiag/tests/switch.c,
23         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
24         * support/regression/tests/libmullong.c: fixed for host
25         * support/regression/ports/host/spec.mk: disable all warnings for host,
26         SDCC runs with --less-pedantic too
27
28 2006-07-03 Borut Razem <borut.razem AT siol.net>
29
30         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
31           defined CPPFLAGS
32         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
33         * src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
34           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
35           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
36           include ../port.mk
37         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
38           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
39           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
40           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
41
42 2006-07-02 Raphael Neider <rneider AT web.de>
43
44         * src/pic16/devices.inc,
45         * device/include/pic16/pic18fregs.h,
46         * device/include/pic16/pic18f4550.h,
47         * device/lib/pic16/pics.all,
48         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
49
50 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
51
52         * as/hc08/lkaomf51.c (OutputName),
53         * as/mcs51/lkaomf51.c (OutputName),
54         * as/z80/asmain.c (asmbl),
55         * src/ds390/main.c (asmLineNodeFromLineNode),
56         * src/hc08/ralloc.c (hc08_assignRegisters),
57         * src/mcs51/main.c (asmLineNodeFromLineNode),
58         * src/xa51/ralloc.c (checkRegMask),
59         * src/xa51/gen.c (emitcode),
60         * src/z80/gen.c (_emit2),
61         * src/SDCCast.c (searchLitOp),
62         * src/SDCCglobl.h,
63         * support/packihx/packihx.c,
64         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
65         * src/ds390/gen.c (aopPutUsesAcc),
66         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
67         * support/regression/tests/libmullong.c (mullong_wrapper),
68         * src/SDCCsymt.c (powof2),
69         * src/SDCCast.c,
70         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
71         * src/SDCCsymt.h: added TYPE_TARGET_*
72         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
73         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
74         SDCCast because 1) header problems 2) this is the right place
75         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
76         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
77         prototype
78
79 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
80
81         * src/SDCCicode.h: removed buggy semicolon in unused macro
82         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
83         search for previous definiton of auto symbols too,
84         (findPrevUse): fixed logic of emitWarnings
85
86 2006-06-26 Raphael Neider <rneider AT web.de>
87
88         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
89           PCLATH and PCLATU on interrupts, potentially fixes #1505141
90
91 2006-06-25 Raphael Neider <rneider AT web.de>
92
93         * device/lib/pic/libm: NEW, added math library functions
94         * device/lib/pic/libsdcc: NEW; added float support functions
95         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
96         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
97           NEW, added math related headers
98         * device/include/asm/pic/features.h: NEW
99         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
100           (popGet): allow larger offsets for AOP_PCODE,
101           (genDataPointerSet): handle literals explicitly, more debug output,
102           (genAssign): fixed for float using aopLiteral ;-)
103         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
104           GOTO initialisation routine
105         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
106           flag on registers, fixes #1469043 (local variables do not work)
107         * src/pic/main.c (_pic14_do_link),
108         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
109           available
110
111 2006-06-25 Borut Razem <borut.razem AT siol.net>
112
113         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
114           characters printed (not including the trailing '\0' used to end
115           output to strings). Problem detected in regression test bug-927659.c.
116           NOTE: printf() family functions should return int instead
117           unsigned int!
118         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
119           specifier are printed as themselves
120         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
121           support flags, width and precision specifiers
122
123 2006-06-24 Borut Razem <borut.razem AT siol.net>
124
125         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
126           to the list of sdcc tagrets not supporting bit type
127         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
128           testfor pic16 due to bug:
129           [ 1511794 ] pic16: regression test bug-895992.c fails
130
131 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
132
133         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
134         * src/SDCCglue.c (initPointer), fixed bug 1496419
135         * support/regression/tests/bug1496419.c: new, added
136
137 2006-06-22 Borut Razem <borut.razem AT siol.net>
138
139         * support/regression/ports/pic16/support.c: use gpsim usart module from
140           libgpsim_modules library
141
142 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
143
144         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
145         IP0H to IPH0.
146
147 2006-06-19 Raphael Neider <rneider AT web.de>
148
149         * src/pic/glue.h,src/pic16/glue.h: added prototypes
150         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
151           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
152           (pic14printExterns,pic14printPublics,pic16printPublics,
153           pic16_printExterns): use new functions to emit symbols
154           (picglue,pic16glue): emit publics before emitting externs
155         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
156           locally defined functions to avoid bug #1443651
157         * support/regression/tests/bug-716242.c: removed pic16 workaround
158         * support/regression/ports/pic16/spec.mk: ignore errors during build
159
160 2006-06-19 Raphael Neider <rneider AT web.de>
161
162         * src/pic/glue.h: added pic14aopLiteral prototype
163         * src/pic/glue.c (pic14aopLiteral): return unsigned int
164         * src/pic/gen.c: removed stdint.h dependency
165           (aopGet): use Safe_strdup()
166           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
167           (genDataPointerSet): use pic14aopLiteral()
168         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
169           for pic16; thanks to Bernhard and Maarten
170
171 2006-06-18 Borut Razem <borut.razem AT siol.net>
172
173         * support/regression/tests/structflexarray.c: flexible array members
174           not supported by gcc < 3
175         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
176           GUI tool by default
177         * src/pic/gen.c: don't include [p]strdin.h on solaris
178         * support/Util/pstdint.h: addad svn attributes
179         * support/regression/tests/constantRange.c,
180           support/regression/tests/rotate.c: include inttypes.h instead
181           stdint.h on solaris, addad svn attributes
182
183 2006-06-18 Raphael Neider <rneider AT web.de>
184
185         * src/SDCCsymt.c (initCSupport): change return type of divschar to
186           int for PIC16
187         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
188           (pic16_genMinusBits): simplified sign-extension
189           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
190             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
191             adjusted to correctly handle mixed-signed operands, disabled
192             now unused multiplciation routines
193         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
194           (assignResultValue): added argument denoting the size of the result
195             as returned by the function (fixes upcasts in assigning from
196             function calls: char foo(); int i = foo();)
197           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
198             function result to assignResultValue
199           (genMult): disabled inlined multiplication code
200           (genDiv): augmented to also handle the modulus operator, fixed to
201             handle mixed-signed operands correctly
202           (genMod): simply call genDiv, disabled unused code
203           (genAssign): fixed missing (sign-)extension on result
204         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
205             valid char operands, allow signed operands for native code, added
206             division and modulo operator handling
207         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
208
209         As a consequence, onebyte.c (if split into two files) and muldiv.c
210         pass regression tests.
211
212 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
213
214         * doc/Makefile.in: two runs of makeindex seem needed to get
215         correct page references in the index of sdccman.pdf
216         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
217
218 2006-06-17 Borut Razem <borut.razem AT siol.net>
219
220         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
221
222 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
223
224         * doc/sdccman.lyx: updated, added (porting source code, debugging),
225         mentioned ec2drv and paulmon
226
227 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
228
229         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
230           consecutive abs areas
231           (find_empty_space, allocate_space): added map to handle codemap or
232            xdatamap,
233           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
234            absolute idata and xdata
235         * as/mcs51/lkmem.c (summary2): updated legend
236
237 2006-06-16 Raphael Neider <rneider AT web.de>
238
239         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
240
241 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
242
243         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
244           1208515
245         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
246
247 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
248
249         * src/port.h (struct PORT): added field gp_tags, to hold the tag
250         value of generic pointers,
251         * src/avr/main.c,
252           src/ds390/main.c,
253           src/hc08/main.c,
254           src/izt/i186.c,
255           src/izt/tlcs900h.c,
256           src/mcs51/main.c,
257           src/pic/main.c,
258           src/pic16/main.c,
259           src/xa51/main.c,
260           src/z80/main.c: PORT structure, added elements for gp_tags field,
261         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
262         fields in the PORT structure of each port,
263         * src/SDCCast.c (decorateType): allow processing of generic pointers
264         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
265         S_FIXED symbols
266
267 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
268
269         * link/z80/lkgb.c,
270         * link/z80/lkgg.c,
271         * src/pic16/gen.c,
272         * src/pic16/main.c,
273         * src/pic16/pcode.c,
274         * src/pic/main.c,
275         * src/pic/pcoderegs.c,
276         * src/SDCCicode.c,
277         * src/SDCCmain.c,
278         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
279           bug 1504689 on minGW
280
281 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
282
283         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
284
285 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
286
287         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
288
289 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
290
291         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
292           for optimization
293
294 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
295
296         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
297         to a char variable. Fixed bug #1504211
298         * device/include/pic16/adc.h,
299         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
300         and fixed bug #1364390
301
302 2006-06-10 Borut Razem <borut.razem AT siol.net>
303
304         * CVSROOT: removed the CVS left-over
305
306 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
307
308         * as/hc08/asmain.c (asexit),
309         * as/hc08/lkmain.c (lkexit),
310         * as/mcs51/asmain.c (asexit),
311         * as/mcs51/lkmain.c (lkexit),
312         * src/SDCCglue.c (DEFSETFUNC),
313         * src/SDCCmain.c (linkEdit, assemble),
314         * support/librarian/sdcclib.c (AddRel),
315           replaced unlink() by standard C remove()
316         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
317         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
318           gatherImplicitVariables): new, added to fix bug 608752,
319           (createFunction): added gatherImplicitVariables()
320         * src/SDCCast.h: added createRMW prototype
321         * src/SDCCsymt.h (struct symbol): added infertype
322         * support/regression/tests/bug608752.c: new, added
323
324 2006-06-10 Raphael Neider <rneider AT web.de>
325
326         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
327           multibyte dummy reads (fixes #1503234)
328
329 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
330
331         * device/include/mcs51/compiler.h: new, added header file to enable
332           creating common sfr definition header files for different compilers
333
334 2006-06-05 Raphael Neider <rneider AT web.de>
335
336         * src/pic16/{pcode.h,genarith.c}:
337           introduced pCodeOp combining any two pCodeOps (previously only
338           two register operands could be combined), removed pcop2 from
339           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
340         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
341         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
342           rewritten to use new PO_TWO_OPS
343         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
344         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
345           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
346           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
347           (pic16_get_op): embraced return arg to allow #define return(x),
348             added new case for combined opcodes
349           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
350           (pic16_pCode2str,pic16_getRegFrompCodeOp,
351            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
352
353 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
354
355         * src/SDCCval.c (checkConstantRange): added
356         * src/SDCCval.h: added checkConstantRange
357         * support/Util/SDCCerr.c,
358         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
359         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
360         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
361         * src/SDCCast.c (decorateType): added checkConstantRange,
362         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
363         can be emitted with the correct always true/false warning,
364         added optimization for double '!';
365         result of decorateType() must be assigned back to the tree, because
366         decorateType() can change the tree
367         * src/SDCCicode.c (geniCodeLogic),
368         (geniCodeAssign): replaced new checkConstantRange, added warnings,
369         (checkConstantRange): removed, it was only a fragment which never
370         emitted a warning
371         * src/SDCCsymt.c (computeType): fixed promotion for
372         "-1 < (unsigned bit) b"
373         * src/pic/ralloc.c (packRegsForAssign),
374         * src/pic16/ralloc.c (packRegsForAssign),
375         * src/hc08/ralloc.c (packRegsForAssign),
376         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
377         from mcs51
378         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
379         * support/regression/tests/constantRange.c: added
380         * support/valdiag/tests/constantRange.c: added
381         * support/valdiag/valdiag.py: added -DPORT_HOST=1
382
383 2006-06-02 Borut Razem <borut.razem AT siol.net>
384
385         * support/regression/ports/pic16/support.c: increase stack size
386           to 255 bytes
387         * support/regression/Makefile.in: sort tests by name so that the
388           resutlts can be compared on different machines / platforms
389
390 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
391
392         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
393         * src/ds390/gen.c (emitLabel): new, added,
394           (genDjnz): fixed stack overflow bug,
395           (throughout): cosmetic changes to sync with mcs51/gen.c,
396           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
397         * src/mcs51/gen.c (genEndFunction): small optimization,
398           (throughout): cosmetic changes to sync with ds390/gen.c
399
400 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
401
402         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
403           (_print_format): fixed printing pointers
404         * src/mcs51/gen.c (emitLabel, movb): new, added,
405           (genAssign): small optimization,
406           (genDjnz): fixed stack overflow bug,
407           (throughout): replaced sprintf with SNPRINTF,
408           replaced mcs51_regWithIdx with REG_WITH_INDEX,
409           replaced emitcode("mov", "b,...") with MOVB(...),
410           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
411           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
412         * src/mcs51/peeph.def: added rules 140 and 264
413         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
414           so they may get optimized into registers
415
416 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
417
418         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
419           immediately when encountered,
420           (printUsage): always use stderr even on windows
421
422 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
423
424         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
425         (processParms): fixed bug #1247551
426         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
427         parseCmdLine, main): print '--version' to stdout,
428         print 'help' to stdout if --help is given,
429         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
430         arguments are given; fixed --help
431
432 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
433
434         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
435         * support/regression/tests/bug-1493710.c: added
436
437 2006-05-27 Borut Razem <borut.razem AT siol.net>
438
439         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
440           static instead auto
441         * support/regression/ports/pic16/support.c: increase stack size
442           from default 64 bytes to 128 bytes
443         * support/regression/tests/staticinit.c,
444           support/regression/tests/float.c: regression tests fully enabled
445           for pic16 port by putting the initialized data arrays into the code
446           section
447         * support/regression/ports/pic16/spec.mk: don't link default libraries.
448           This was changed by mistake in the previous version.
449
450 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
451
452         * src/pic16/gen.c (genFunction, genEndFunction): some
453         beautifications, fixed bug with falsely restoring FSR2 in large
454         stack model, thanks to Beau E. Cox for reporting the bug
455
456 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
457
458         * debugger/mcs51/break.c,
459         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
460           use %p to print pointers, made address variables unsigned
461         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
462         * debugger/mcs51/symtab.c (parseSymbol): must return something
463         * src/mcs51/gen.c (aopForSym): small optimization,
464            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
465           (freeAsmop): added missing break,
466           (aopPut): removed parameter bvolatile, determine it inside the function,
467           (saveRegisters, unsaveRegisters): small optimization,
468           (genIpush): removed pointless check,
469           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
470           replaced sprintf with SNPRINTF,
471           replaced strcpy with strncpyz,
472           updated aopPut calls,
473           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
474         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
475
476 2006-05-24 Borut Razem <borut.razem AT siol.net>
477
478         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
479           modification of test for the pic16 port, put the array to the code
480           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
481
482 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
483
484         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
485         * support/Util/pstdint.h: added
486
487 2006-05-22 Borut Razem <borut.razem AT siol.net>
488
489         * src/regression/Makefile: removed bool2.c test, added -q linker option
490         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
491           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
492           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
493           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
494           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
495           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
496           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
497           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
498           define SUPPORT_BIT_TYPES 0, removed unused bit variables
499
500 2006-05-22 Raphael Neider <rneider AT web.de>
501
502         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
503           bug #1492360 (problematic due to generic pointers, see code)
504
505 2006-05-22 Borut Razem <borut.razem AT siol.net>
506
507         * support/regression/ports/pic16/specs.mk: removed stack size linker
508           directive
509         * support/regression/tests/array.c,
510           support/regression/tests/bitopcse.c,
511           support/regression/tests/bug-908454.c,
512           support/regression/tests/malloc.c: modified for pic16 regression test
513         * support/regression/tests/bitfields.c:
514           pic16 - excluded bitfileds of size > 8
515         * support/regression/tests/bp.c: pic16 - reduced data size
516         * support/regression/tests/bug-221100.c: pic16 - reduced data size
517         * support/regression/tests/bug-460010.c:
518           pic16 - used the absolute address the fits in memory
519         * support/regression/tests/bug-716242.c:
520           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
521         * support/regression/tests/float.c:
522           pic16 - excluded - data size too big
523         * support/regression/tests/onebyte.c:
524           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
525         * support/regression/tests/shifts.c:
526           pic16 - function names probably have to differ in first X characters
527           (gpasm limitation?)
528         * support/regression/tests/staticinit.c:
529           pic16 - excluded some tests due error: no target memory available for
530           section ".idata"
531
532 2006-05-22 Borut Razem <borut.razem AT siol.net>
533
534         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
535           second try. Thanks Stas Sergeev once more.
536
537 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
538
539         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
540           (genLeftShift, genRightShift): fixed bug 1491627
541         * src/hc08/peeph.def (rules 7, 8.x): added
542         * support/regression/tests/shifts.c (ShiftLeftByParam,
543           ShiftRightByParam, testShiftByParam): added to test variable shifting
544
545 2006-05-20 Raphael Neider <rneider AT web.de>
546
547         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
548         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
549           (allocReg): add only new registers to dynAllocRegs,
550           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
551             #1489055, #1445850, and probably #1483693
552
553 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
554
555         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
556         bug in for-loop that didn't emit the last of CONFIG and ID registers
557
558 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
559
560         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
561           with offset
562         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
563           1489016, 1434401 and 1490124
564         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
565           1489016, 1434401 and 1490124
566
567 2006-05-17 Borut Razem <borut.razem AT siol.net>
568
569         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
570           thanks Stas Sergeev
571
572 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
573
574         * device/include/mcs51/P89c51RD2.h,
575         * device/include/mcs51/P89LPC901.h,
576         * device/include/mcs51/P89LPC922.h,
577         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
578
579 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
580
581         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
582         to fix missing stack pragma in compiled binary object file,
583
584 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
585
586         * support/packihx/configure.in,
587         * support/packihx/configure: removed warning, autoconf >= 2.5x can
588         determine sizeof basic types even while cross compiling
589
590 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
591
592         * src/avr/gen.c (aopop),
593         * src/ds390/gen.c (aopOp),
594         * src/hc08/gen.c (aopOp),
595         * src/mcs51/gen.c (aopop),
596         * src/pic16/gen.c (pic16_aopOp),
597         * src/pic/gen.c (aopOp),
598         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
599         if size of operand is smaller than spill location
600
601 2006-05-12 Borut Razem <borut.razem AT siol.net>
602
603         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
604           have to have CR/LF line endings even if they are checked out on *nix
605           or on WIN32 in cygwin binmode
606
607 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
608
609         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
610         * device/include/ds80c390.h: added sfr16 definitions
611         * src/ds390/gen.c,
612         * src/ds390/gen.h,
613         * src/ds390/main.c,
614         * src/ds390/ralloc.c,
615         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
616           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
617           bit returning functions
618         * support/regression/tests/sfr16.c: enabled test on ds390
619
620 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
621
622         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
623         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
624
625 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
626
627         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
628         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
629           (cl_address_space constructor): removed expensive initialization,
630           (cl_address_space::get_cell): extended for late initialization,
631           (cl_address_space::*): use late initialization,
632           (cl_address_decoder::activate): removed expensive initialization,
633           This reduced regression test running time by 25%
634
635 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
636
637         * packihx/,
638         * configure.in,
639         * configure,
640         * sdcc.dsw,
641         * Makefile.bcc,
642         * Makefile.in,
643         * support/packihx/Makefile.in,
644         * support/packihx/clean.mk,
645         * support/packihx/Makefile.bcc,
646         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
647
648 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
649
650         * src/SDCCval.c (valNot): fix for regression test failure
651           of not.c on big endian hosts
652
653 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
654
655         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
656
657 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
658
659         * device/lib/mcs51/Makefile.in: changed string comparison operator
660           to = for POSIX compliance; == is bash extension
661
662 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
663
664         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
665           kosmonaut_pirx
666
667 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
668
669         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
670         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
671         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
672         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
673         bug report #1478657,
674
675 2006-05-05 Borut Razem <borut.razem AT siol.net>
676
677         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
678           making the html
679
680 2006-05-02 Borut Razem <borut.razem AT siol.net>
681
682         * doc/Makefile.in: removed *.ind dependency since there is no rule to
683           create *.ind, which made make to fail if invoked with -j 2
684
685 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
686
687         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
688           Hubert Sack for patch 1479782
689
690 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
691
692         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
693
694 2006-05-01 Raphael Neider <rneider AT web.de>
695
696         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
697           (create_pic): store only prefix-free device name,
698           (init_pic): check for device names with "16" prefix,
699           (list_valid_pics),
700         * src/pic/device.h (struct PIC_device),
701         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
702             stored device name,
703         * device/include/pic/pic12f{635,675,629,683}.h,
704         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
705         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
706         * device/include/pic/pic16f505.h,
707         * device/lib/pic/libdev/pic16f505.c: removed
708         * device/include/pic/pic14devices.txt: added support for pic12f
709             devices, removed unsupported non 16-bit devices
710             [above changes provided by patch from Zik Saleeba]
711         * src/pic/*, src/pic16/*, device/include/pic16/*,
712           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
713
714 2006-05-01 Borut Razem <borut.razem AT siol.net>
715
716         * configure.in, configure, doc/Makefile.in:
717           sync with nightly build makefile - latex, dvipdf and dvips
718           not needed any more
719
720 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
721
722         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
723         in the library source
724
725 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
726
727         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
728
729 2006-04-28 Raphael Neider <rneider AT web.de>
730
731         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
732         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
733           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
734         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
735
736 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
737
738         * device/lib/pic/libdev/Makefile.in,
739         * device/lib/hc08/Makefile.in,
740         * device/lib/gbz80/Makefile.in,
741         * device/lib/z80/Makefile.in,
742         * device/lib/ds390/Makefile.in,
743         * device/lib/ds400/Makefile.in: added srcdir to include search path,
744         thanks to Borut for the bug report
745         * configure.in,
746         * configure: always create doc/Makefile independent from --enable-doc
747         * Makefile.in: always install from directory doc independent from
748         --enable-doc
749         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
750         removed
751         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
752         * doc/Makefile.in: install *.txt if present
753         * device/include/Makefile.in (install): added installation of pic/*.inc
754         and pic/*.txt files again, they were erroneously removed
755
756 2006-04-28 Raphael Neider <rneider AT web.de>
757
758         * src/pic/{gen.c,main.h,pcode.c},
759         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
760             concerning signedness with casts
761
762 2006-04-28 Raphael Neider <rneider AT web.de>
763
764         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
765             definition of an interrupt handler,
766         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
767             interrupt handler stuff from picglue() to separate routine,
768           (picglue): enabled definition of intr handlers in files w/o main()
769
770 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
771
772         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
773           compilation with MSVC 2005 Express Edition (VC8)
774
775 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
776
777         * device/lib/Makefile: fixed build of gbz80 lib
778
779 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
780
781         * support/regression/tests/bug-460010.c,
782         * support/regression/tests/bug-524691.c,
783         * support/regression/tests/bug-716242.c: removed conditional defines
784           that are already in testfwk.h
785
786 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
787
788         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
789           (AccAXRsh1): added, shift right by 1,
790           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
791            AccAXLrl1
792         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
793
794 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
795
796         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
797         remove cast to same type
798         * src/SDCCast.c (decorateType): fix for RFE 1475742,
799         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
800         * as/z80/Makefile,
801         * link/z80/Makefile: removed, they have moved to
802         Makefile.in files
803         * configure,
804         * configure.in: replaced duplicate message about ucsim by missing sdcpp
805         * install-sh: fix bug #1204398 by setting umask 0022
806         * device/lib/Makefile: separate build of z80 and gbz80 lib
807
808 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
809
810         Enabled VPATH feature: changed nearly all Makefiles (149 files).
811         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
812
813         One basic decision: e.g. src/clean.mk includes further files. In order
814         to make this work there are two solutions:
815         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
816           run configure on them. This way they can use
817           'include $(srcdir)/port-clean.mk'
818         - always include clean.mk by the Makefile at the same level. To avoid
819           that `make clean` tries to include and build Makefile.dep the
820           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
821           implemented, because now even `make uninstall` doesn't create
822           Makefile.in. clean.mk could be eliminated by pasting it in
823           Makefile.in.
824
825         * debugger/mcs51/Makefile.in: build own objects from library sources
826         (SLIB, SDCC) in current directory
827
828         * configure, configure.in: renamed --disable-device-lib-build in
829         --disable-device-lib; added --enable-doc, the required tools are
830         searched by configure; added result message; the toolchain for the
831         belonging ports are now only built, if the port is enabled.
832
833         * support/regression/*: all output is written in directory gen, because
834         the fwk and ports directories don't livet in the build tree using vpath
835
836         * doc/sdccman.lyx: renamed --disable-device-lib-build to
837         --disable-device-lib, added --enable-doc, added section VPATH
838
839         * sim/ucsim/configure.in,
840         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
841         z80 are enabled by default
842
843 2006-04-24 Raphael Neider <rneider AT web.de>
844
845         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
846             to config word, "pic14_"-prefixed some extern functions
847           (pic14_emitConfigWord): emit __config directive(s) if assignment to
848             config word has been found
849         * src/pic/device.h: added prototypes
850         * src/pic/pcode.c: added "pic14_"-prefix where needed
851         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
852             fixup
853         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
854             words,
855           (pic14emitRegularMap): ignore config words,
856           (pic14createInterruptVect): moved generating __config directives away
857           (picglue): have __config directives emitted
858
859 2006-04-24 Borut Razem <borut.razem AT siol.net>
860
861         * doc/Makefile: sync with nightly build makefile
862
863 2006-04-24 Raphael Neider <rneider AT web.de>
864
865         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
866             registers that have not been assigned proper liveranges,
867             fixes #1469504 and #1474602,
868           (pCodeRegOptimizeRegUsage): fixed typo in comment
869
870 2006-04-24 Borut Razem <borut.razem AT siol.net>
871
872         * device/examples/main8051.c: deleted - it was removed from CVS
873           24.mar.2000 and after that modified 18.feb.2001, so it reappered
874           after the transition to Subversion
875         * src/SDCCalloc.h: deleted - it was removed  from CVS
876           3.feb.2001 and after that modified 18.feb.2001, so it reappered
877           after the transition to Subversion
878         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
879           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
880           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
881           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
882
883 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
884
885         * as/asx8051.dsp: added mcs51/strcmpi.h
886         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
887         * as/hc08/aslink.h: updated lnksect prototype
888         * as/hc08/asm.h,
889         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
890         * as/hc08/asmain.c,
891         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
892           (newdot): handle A_ABS
893         * as/hc08/asout.c,
894         * as/mcs51/asout.c (outarea): output address
895         * as/hc08/lkaomf51.c,
896         * as/mcs51/lkaomf51.c: disabled unused array UsageType
897         * as/hc08/m08pst.c,
898         * as/mcs51/i51pst.c,
899         * as/z80/z80pst.c: "ABS" is not A_OVR
900         * as/hc08/lkarea.c (newarea): read a_addr,
901           (lnkarea): added codemap array, sort absolute areas to the front,
902            combine all GSINITx/GSFINAL,
903           (find_empty_space, allocate_space): new functions,
904           (lnksect): return next address, handle absolute sections
905         * as/mcs51/lkarea.c (newarea): read a_addr,
906           lnksect2 prototype changed,
907           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
908           (find_empty_space, allocate_space): new, factored out of lnksect2,
909           (lnksect2): return next address, handle absolute sections
910         * as/hc08/lkhead.c,
911         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
912         * as/hc08/lklibr.c (addfile, fndsym),
913         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
914           index out of range and detect both '\' and '/'
915         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
916         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
917           regression tests (ds390 cannot return bool yet)
918         * doc/sdccman.lyx: changed version number, document changed --no-peep,
919           document critical interrupts on z80, document changed SDCC define
920         * src/asm.c (_asxxxx_mapping): fixed .org directive,
921           (_a390_mapping): added .org directive
922         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
923           (genMultOneByte): fixed warnings
924         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
925           ones
926         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
927         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
928           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
929         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
930         * src/pic16/main.c: removed newReg prototype
931         * src/pic16/pcode.c,
932         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
933           warnings
934         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
935           ones
936         * src/pic16/ralloc.c
937         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
938           to fix warnings
939         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
940           from short to PIC_OPTYPE
941         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
942         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
943           optype from short to PIC_OPTYPE
944         * src/port.h: made int_size unsigned to fix warnings
945         * src/SDCC.y: fixed warning on MSVC
946         * src/SDCCicode.c (getArraySizePtr): return unsigned int
947         * src/SDCCopt.c (convertToFcall): fixed warnings
948         * src/SDCCsymt.h: removed double prototype for genSymName
949         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
950           offset int to fix warnings
951
952 2006-04-22 Borut Razem <borut.razem AT siol.net>
953
954         * doc/sdccman.lyx, */Makefile, */Makefile.in:
955           references to CVS replaced with Subversion
956
957 2006-04-21 Borut Razem <borut.razem AT siol.net>
958
959         * doc/sdccman.lyx, */Makefile, */Makefile.in:
960           references to CVS replaced with Subversion
961
962 2006-04-19 Borut Razem <borut.razem AT siol.net>
963
964         * src/version.awk: adapted for svn
965         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
966           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
967           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
968           /binutils-avr/etc/*.vi, *.jin: removed all properties
969           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
970
971 2006-04-19 Borut Razem <borut.razem AT siol.net>
972
973         * CVS to Subversion migration completed
974
975 2006-04-18 Borut Razem <borut.razem AT siol.net>
976
977         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
978           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
979
980 2006-04-17 Borut Razem <borut.razem AT siol.net>
981
982         * device/include/Makefile.in: added pic/*.inc to the installation
983
984 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
985
986         * support/regression/collate-results.py: fixed output in case of
987         a valdiag error
988         * support/regression/generate-cases.py: fixed splitting of pathnames
989         with dots
990         * as/hc08/lklibr.c (addfile),
991         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
992
993 2006-04-11 Raphael Neider <rneider AT web.de>
994
995         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
996         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
997         * src/pic16/pcode.c (assignValnums): fixed #1460578
998
999 2006-04-11 Raphael Neider <rneider AT web.de>
1000
1001         * device/lib/pic/libdev/*.c,
1002         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
1003           fixes #1468739, enables compilation in --std-c99 mode
1004         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
1005
1006 2006-04-11 Raphael Neider <rneider AT web.de>
1007
1008         * src/pic/device.c (find_device): removed debug output
1009           (list_valid_pics): enabled verbose listing of supported devices
1010         * device/include/stdbool.h: define bool as char for pic14/16 as well
1011
1012 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1013
1014         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
1015
1016 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1017
1018         * .version: bumped version to 2.5.6
1019         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
1020
1021 2006-04-06 Raphael Neider <rneider AT web.de>
1022
1023         * .version: bumped version to 2.5.6 (pic14 ABI changed)
1024         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
1025         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
1026           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1027             pic14_constructAbsMap
1028           (pic14printPublics): declare absolute global symbols as global
1029           (pic14createInterruptVect),
1030         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1031           (newReg): assume new registers unused, use correct name in
1032             hashtable (reg->name instead of name), more debugLog output
1033         * src/pic/device.h (PIC_device): added fields for verbose output
1034         * src/pic/device.c: moved device definition to pic14devices.txt,
1035             added routines for runtime parsing of pic14devices.txt,
1036             added support for second config word
1037         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1038           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1039           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1040           (_pic14_parseOptions): moved pCodeInitRegisters here
1041           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1042         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1043           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1044             handling the pseudo stack
1045         * device/lib/Makefile.in: ignore failures in objects-pic16,
1046         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1047         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1048         * device/lib/pic/Makefile.subdir,
1049         * device/lib/pic16/Makefile.subdir: improved clean rules
1050         * device/lib/pic/libdev/: NEW, pic14 device libraries
1051         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1052         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1053         * device/include/Makefile.in: create subdir and install pic14 headers
1054         * device/include/pic/p16f_common.inc: removed unused declarations
1055         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1056             PICs from inc2h.pl v1.6,
1057             replaced BIT_AT macros with struct declarations
1058         * device/include/pic/pic14devices.txt: definition of supported devices,
1059             all above improvements contributed by Zik Saleeba, thanks
1060         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1061         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1062             headers
1063
1064 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1065
1066         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1067         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1068           thanks to Charles Olds
1069
1070 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1071
1072         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1073
1074 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1077         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1078         * support/regression/bug1464657.c: added, new test
1079
1080 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1081
1082         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1083           version number
1084
1085 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1086
1087         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1088           --no-peep and --peep-file <file> are used don't use default rules but
1089           do use the <file>
1090
1091 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1092
1093         * src/mcs51/gen.c (genCall): fixed bug 1457608
1094
1095 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1096
1097         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1098         changes seem to cause (trigger?) problems with the build system.
1099
1100 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1101
1102         * src/SDCCpeeph.c (operandsLiteral): new, added,
1103           (callFuncByName): inserted operandsLiteral
1104         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1105
1106 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1107
1108         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1109         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1110
1111 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1112
1113         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1114           implemented patch 1120823 Thanks to Willy De la Court (normal
1115           interrupts need an interrupt number now if they are made critical),
1116           and enabled nesting of critical functions though not for gbz80
1117           (genCritical, genEndCritical): added functions
1118           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1119         * src/z80/mappings.i: added "ei" to all mappings
1120
1121 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1122
1123         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1124         submitted by the Debian SDCC maintainer Aurelien Jarno:
1125         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1126         archive with gcc 4.1 on mips and wrote the patch"
1127
1128 2006-03-16 Raphael Neider <rneider AT web.de>
1129
1130         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1131           the left operand is shorter than the result (c* = lit-c* + int),
1132           fixes bug #1450796
1133         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1134           OP_SYMBOL
1135
1136 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1137
1138         * src/.version: increased version number to 2.5.5
1139         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1140         linking is done manually in pic16 port's _linkEdit,
1141         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1142         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1143         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1144         allocate asmop as AOP_ACC,
1145         (aopForRemat): added parameter 'bool result' in function declaration,
1146         (pic16_aopGet): return AOP_ACC when accessing WREG,
1147         (pic16_popGetTempReg): minor modification,
1148         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1149         'pic16_allocWithIdx',
1150         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1151         calling function in absolute addresses,
1152         (genAssign): take into account AOP_ACC asmop,
1153         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1154         * src/pic16/pcoderegs.c: some debug functions and lines added,
1155         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1156         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1157         register too,
1158         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1159         call to allocReg, not by manually allocating a new one,
1160         (pic16_assignRegisters): now before going through the register
1161         allocating functions mark all registers as free. This eliminates some
1162         side effects resulting from peephole parser done earlier in the backbone
1163
1164 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1165
1166         * src/SDCCicode.c (geniCodeLogic),
1167         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1168
1169 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1170
1171         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1172           (genSend): bugfix, do not allocate and free twice,
1173           (shiftRLong): handle partially overlapping aops
1174         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1175
1176 2006-03-08 Borut Razem <borut.razem AT siol.net>
1177
1178         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1179           for pic16
1180
1181 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1182
1183         * support/regression/tests/bug1409955.c: new, added
1184         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1185         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1186           (aopForSym, aopOp): increment asmop.allocated if reused,
1187           (freeAsmop): decrement asmop.allocated and check for zero instead of
1188           using asmop.freed,
1189           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1190           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1191            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1192            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1193            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1194            genSignedRightShift, genRightShift, genDataPointerGet,
1195            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1196            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1197             in reverse order from allocation,
1198           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1199             added swappedLR to keep track
1200         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1201           pdata & code for GCC, z80, gbz80 & hc08
1202         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1203
1204 2006-03-08 Raphael Neider <rneider AT web.de>
1205
1206         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1207
1208 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1211         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1212         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1213
1214 2006-03-06 Borut Razem <borut.razem AT siol.net>
1215
1216         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1217           made the linker quiet
1218
1219 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1220
1221         * src/pic16/gen.c (genPcall): fixed bug #1443644
1222         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1223         which dumps before the function entry point a data byte which represents
1224         the number of the local variables used by the specified function, added
1225         'xinst' for initial support for Extended Instruction Support,
1226         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1227         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1228         port->fun_prefix anymore (may change later),
1229         (genFunction, genEndFunction): do not store/restore local registers for
1230         _main (this should take care the --main-return command line option in
1231         the future),
1232         (genOr): removed some legacy pic-port instructions,
1233         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1234         performing operations with SFR's causes data to be written more than
1235         once to each SFR. Perhaps SFRs should be handled in special cases...
1236         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1237         pcode.h
1238         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1239         into account for stack starting position,
1240         (struct OPTIONS pic16_optionsTable): added command line argument
1241         --extended or -y for Extended Instruction Support,
1242         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1243         (deassignLRs): *** perhaps the most important change, old 'for' code
1244         (commented out for reference), didn't account for some registers which
1245         were left marked 'not free' after a pointer operation. The change
1246         reduces register usage a lot in some cases
1247
1248 2006-03-04 Borut Razem <borut.razem AT siol.net>
1249
1250         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1251           _clean
1252         * support/regression/tests/bug-524697.c: decreased array size for
1253           mcs51 to fit into the internal RAM
1254         * support/regression/Makefile.in: a little bit more verbose
1255
1256 2006-03-03 Borut Razem <borut.razem AT siol.net>
1257
1258         * support/regression/fwk/lib/testfwk.c,
1259           support/regression/fwk/include/testfwk.h: introduced function
1260           _prints(), nonrecursive _printn(), call _initEmu() from main()
1261         * support/regression/ports/gbz80/support.asm,
1262           support/regression/ports/ucz80/support.asm,
1263           support/regression/ports/z80/support.asm,
1264           support/regression/ports/ds390/support.c,
1265           support/regression/ports/hc08/support.c,
1266           support/regression/ports/host/support.c,
1267           support/regression/ports/mcs51/support.c,
1268           support/regression/ports/xa51/support.c: added empty _initEmu()
1269           function
1270         * support/regression/ports/pic16/gpsim.cmd,
1271           support/regression/ports/pic16/spec.mk,
1272           support/regression/ports/pic16/support.c,
1273           support/regression/Makefile.in: added pic16 regression test
1274
1275 2006-03-01 Raphael Neider <rneider AT web.de>
1276
1277         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1278           genConstPointerGet): use safe way of generating MOVFF to cover
1279             literals as well as registers, fixes bug #1440527
1280         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1281             dereference
1282           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1283             more correctly, fixes bug #1232186
1284           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1285         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1286             gplink guess the correct processor in more cases, applied patch
1287             from Till Riedel attached to and fixing bug #1436552
1288
1289 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1290
1291         * support/regression/tests/array.c: added, contains check for #1434401
1292         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1293
1294 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1295
1296         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1297         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1298         * device/include/mcs51/c8051f326.h,
1299         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1300         * device/include/mcs51/c8051f000.h,
1301         * device/include/mcs51/c8051f018.h,
1302         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1303           PCON_IDLE,PCON_STOP and added sfr16 definitions
1304
1305 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1306
1307         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1308           genGetWord): fixed bug 1409955
1309
1310 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1311
1312         * device/include/hc08/mc68hc908gp32.h,
1313         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1314
1315 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1316
1317         * src/SDCCast.c (constExprValue): return NULL if not a value
1318         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1319         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1320         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1321
1322 2006-02-13 Borut Razem <borut.razem AT siol.net>
1323
1324         * src/regression/ptrarg.c: added, fails due to bug #1430967
1325         * src/regression/Makefile: ptrarg.c added, ...
1326
1327 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1328
1329         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1330         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1331
1332 2006-02-11 Borut Razem <borut.razem AT siol.net>
1333
1334         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1335           print "Processor: xxx" message to stdout only if --verbose
1336
1337 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1338
1339         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1340         * support/regression/tests/bug1426356.c: added
1341         * support/regression/tests/bitfields.c: removed 2 tests
1342
1343 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1344
1345         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1346         * device/include/mcs51/c8051f330.h,
1347         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1348           PCON_IDLE,PCON_STOP and added sfr16 definitions
1349         * device/lib/_divsint.c,
1350         * device/lib/_divuint.c,
1351         * device/lib/_divulong.c,
1352         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1353           register bank bug for small stackauto
1354
1355 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1356
1357         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1358
1359 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1360
1361         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1362         * all.dsp: corrected several bin paths
1363         * device/include/mcs51/c8051f120.h,
1364         * device/include/mcs51/c8051f300.h,
1365         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1366           to PCON_IDLE,PCON_STOP
1367         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1368         * device/lib/printf_large.c (output_float): fixed bug 1388703
1369         * support/regression/tests/bug1057979.c: added test for bug 1388703
1370
1371 2006-02-08 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic/pcode.c (pciTRIS): fixed typo,
1374           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1375           (LinkFlow): fixed handling of flows that end in a call,
1376           (ReuseReg): perform safety check earlier
1377         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1378             to work with flows at the beginning of a pBlock,
1379             fixes #1426557 (Symbol not previously defined),
1380           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1381             usage information
1382           (RemoveUnusedRegisters): update register usage info
1383         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1384             created, reuse existing ones instead
1385         * src/pic/gen.c (genPcall): fixed #1424719
1386
1387 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1388
1389         * link/z80/lkmain.c,
1390         * link/z80/lklex.c,
1391         * link/z80/lkdata.c,
1392         * link/z80/aslink.h: fixed build on current cygwin:
1393         replaced getline() by lk_getline()
1394
1395 2006-02-01 Borut Razem <borut.razem AT siol.net>
1396
1397         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1398           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1399           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1400           src/regression/bool1.c, src/regression/bool2.c,
1401           src/regression/bool3.c, src/regression/call1.c,
1402           src/regression/compare.c, src/regression/compare10.c,
1403           src/regression/compare2.c, src/regression/compare3.c,
1404           src/regression/compare4.c, src/regression/compare5.c,
1405           src/regression/compare6.c, src/regression/compare7.c,
1406           src/regression/compare8.c, src/regression/compare9.c,
1407           src/regression/configword.c, src/regression/for.c,
1408           src/regression/inline.c, src/regression/mult1.c,
1409           src/regression/nestfor.c, src/regression/or1.c,
1410           src/regression/pointer1.c, src/regression/ptrfunc.c,
1411           src/regression/rotate1.c, src/regression/rotate2.c,
1412           src/regression/rotate3.c, src/regression/rotate4.c,
1413           src/regression/rotate5.c, src/regression/rotate6.c,
1414           src/regression/rotate7.c, src/regression/string1.c,
1415           src/regression/struct1.c, src/regression/sub.c,
1416           src/regression/sub2.c, src/regression/switch1.c,
1417           src/regression/while.c, src/regression/xor.c,
1418           src/regression/create_stc, src/regression/simulate,
1419           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1420           regression tests
1421         * src/regression/gpsim_assert.h: added
1422
1423 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1424
1425         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1426         ((void (code *) (void)) 0) ();
1427         * as/hc08/aslex.c,
1428         * as/hc08/aslink.h,
1429         * as/hc08/asm.h,
1430         * as/hc08/asmain.c,
1431         * as/hc08/lkdata.c,
1432         * as/hc08/lklex.c,
1433         * as/hc08/lkmain.c,
1434         * as/mcs51/aslex.c,
1435         * as/mcs51/aslink.h,
1436         * as/mcs51/asm.h,
1437         * as/mcs51/asmain.c,
1438         * as/mcs51/lkdata.c,
1439         * as/mcs51/lklex.c,
1440         * as/mcs51/lkmain.c,
1441         * as/z80/aslex.c,
1442         * as/z80/asm.h,
1443         * as/z80/asmain.c: fixed build on current cygwin:
1444         replaced getline() by as_getline()
1445
1446 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1447
1448         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1449         declarator in the symbol chain
1450         * src/SDCCsymt.h,
1451         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1452         parameter list for function pointers
1453         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1454         * support/regression/tests/bug-716242.c: added
1455
1456 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1457
1458         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1459         offset if possible
1460         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1461
1462 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1463
1464         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1465         inifinitely recurseable, added static
1466         * support/regression/tests/bug-1408066.c: added
1467
1468 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1469
1470         * src/SDCCicode.h,
1471         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1472         renamed, added possibility to create "postLoopLbl"-labels
1473         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1474         newiTempLoopHeaderLabel
1475         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1476         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1477         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1478         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1479         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1480         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1481         (basicInduction): fixed bug #136564, made static,
1482         (loopInduction): changed parameter of basicInduction, made static,
1483         (addPostLoopBlock): added
1484         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1485         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1486         findLoopEndSeq
1487         * support/regression/tests/bug-136564.c: added
1488         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1489         --std-sdcc99 to LIBSDCCFLAGS
1490
1491 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1492
1493         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1494         while loop
1495         * support/regression/tests/bug-1406131.c: added
1496
1497 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1498
1499         * src/SDCCast.c (decorateType): fix promotion of unary minus
1500         * src/SDCCsymt.c (computeType): beautified
1501         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1502         (valUnaryPM, valComplement): fix sign and promotion,
1503         (valNot): ANSI: result type is int (SDCC: unsigned char)
1504         * support/regression/tests/uminus.c: speedup by removing superflous
1505         test case 'int'
1506         * support/regression/tests/onebyte.c: added promotion and signedness
1507         tests for unary minus
1508         * support/regressions/tests/bug-477927.c: disable warning about
1509         uninitialized variables
1510         * support/regression/tests/not.c: added
1511
1512 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1513
1514         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1515         * src/mcs51/gen.c (gen51Code): show final register usage after
1516         fillGaps in asm with --i-code-in-asm
1517         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1518         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1519         incUsed, rliveClear, adjustIChain): made static,
1520         (setFromRange): excluded because it's unused,
1521         (findPrevUseSym, markWholeLoop): added,
1522         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1523         through all branches of predecessors enables sdcc to emit the warning
1524         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1525         (rlivePoint): made static, added parameter emitWarnings which is only
1526         true during the first run out of two,
1527         (findRecursiveSucc, findRecursivePred): removed,
1528         (computeLiveRanges): made static, added parameter emitWarnings,
1529         (dumpIcRlive): added for debugging only
1530         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1531         removed prototype of setFromRange()
1532         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1533         in call of computeLiveRanges()
1534         * support/regression/tests/bug-895992.c: added
1535         * support/regression/tests/bug-971834.c: added
1536         * support/valdiag/tests/bug-895992.c: added
1537         * support/valdiag/tests/bug-971834.c: added
1538
1539 2005-12-18 Raphael Neider <rneider AT web.de>
1540
1541         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1542           (genUnpackBits): improved code for direct operands,
1543           (genPackBits): improved code for literal assignment to bitfields
1544             and for direct destination operands (no FSR indirection),
1545             prevented redundant AND, fixes #1362800,
1546           (AccLsh): added parameter to disable masking of the result
1547         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1548           skip instructions with side-effects (like incfsz),
1549           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1550         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1551         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1552           fixes #1375263
1553
1554 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1555
1556         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1557         volatile variables as spill location
1558
1559 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1560
1561         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1562         replacing literals
1563         * support/regression/tests/bug-1376320.c: added
1564
1565 2005-12-08 Raphael Neider <rneider AT web.de>
1566
1567         * src/pic/device.c: renamed is_shared to pic14_is_shared
1568         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1569         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1570           (is_valid_identifier): added for above workaround
1571
1572 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1573
1574         * device/lib/Makefile.in: fixed to enable port-specific-objects
1575         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1576           char, thanks Hubert Sack
1577         * doc/sdccman.lyx: documented --xstack-loc,
1578           elaborated a bit more on interrupts and pitfalls,
1579           removed "setjmp/longjmp unsupported",
1580           documented some unsupported C99 features
1581         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1582         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1583           if, thanks Hubert Sack
1584         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1585         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1586           make make_library
1587         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1588           regression tests can report resource usage (rfe 700441)
1589         * support/regression/collate-results.py: report resource usage
1590         * support/regression/ports/ds390/spec.mk,
1591         * support/regression/ports/hc08/spec.mk,
1592         * support/regression/ports/mcs51/spec.mk,
1593         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1594         * support/regression/ports/ds390/uCsim.cmd,
1595         * support/regression/ports/hc08/uCsim.cmd,
1596         * support/regression/ports/mcs51/uCsim.cmd,
1597         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1598         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1599           library, use the default one
1600         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1601           building the library
1602
1603 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1604
1605         * config.dsp: added dependency on .version and configure_vc.awk
1606         * device/include/setjmp.h: updated for --stack-auto and --xstack
1607         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1608         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1609         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1610         * device/lib/libsdcc.lib: added _setjmp
1611         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1612           (decorateType): fixed bug 1372851,
1613           (optimizeGetHbit): fixed warning
1614         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1615           array initialisation
1616         * support/regression/tests/bug1057979.c: added test for bug 1358192
1617         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1618
1619 2005-12-03 Borut Razem <borut.razem AT siol.net>
1620
1621         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1622           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1623
1624 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1625
1626         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1627         createIval): implement symbol independant "flexible array member",
1628         (createIvalCharPtr): implemented flexible array initialisation with a
1629         string
1630         * src/SDCCsymt.c (copyStruct): removed,
1631         (getSize): fixed misleading comment,
1632         (getAllocSize): removed, the additional allocation size is now in
1633         sym->flexArrayLength,
1634         (checkStructFlexArray): new, syntax checks for flexible array members,
1635         (compStructSize): added syntax checks for "flexible array members"
1636         (copyStruct): removed,
1637         (copyLinkChain): removed inefficient fix for bug 770487
1638         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1639         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1640         symbol->flexArrayLength
1641         * src/SDCCerr.c,
1642         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1643         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1644         * support/regression/tests/structflexarray.c: added
1645         * support/valdiag/tests/structflexiblearray.c: added
1646
1647 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1648
1649         * src/SDCCast.c (decorateType): fixed bug 1368489
1650         * support/Util/SDCCerr.c,
1651         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1652
1653 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1654
1655         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1656           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1657
1658 2005-11-27 Borut Razem <borut.razem AT siol.net>
1659
1660         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1661           support/cpp2/mkdeps.h: added command line option
1662           -obj-ext=<extension> to SDCPP to define object file externion, used
1663           for generation of make dependencies (-M)
1664         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1665
1666 2005-11-26 Borut Razem <borut.razem AT siol.net>
1667
1668         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1669           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1670           added pic and pic16 libraries
1671
1672 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1673
1674         * device/include/float.h: Corrected typo in prototype of __fsgt
1675
1676 2005-11-25 Borut Razem <borut.razem AT siol.net>
1677
1678         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1679           added creation of model-mcs51-stack-auto libraries
1680
1681 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1682
1683         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1684         and fields-list too
1685         * src/SDCCast.c (createIvalArray): removed obsolete comment
1686
1687 2005-11-24 Borut Razem <borut.razem AT siol.net>
1688
1689         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1690           added missing device/lib/mcs51/crt*.asm sources
1691
1692 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1693
1694         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1695
1696 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1697
1698         * device/lib/_fs2schar.c,
1699         * device/lib/_fs2sint.c,
1700         * device/lib/_fs2slong.c: optimized inline asm
1701
1702 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1703
1704         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1705           Better handling of floats between -1.0 and 0.0.
1706
1707 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1708
1709         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1710           (the missing "if"s prohibited removal of redundant labels)
1711
1712 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1713
1714         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1715           Properly convert floats between -1.0 and 0.0 to long, int, and char
1716           types (max integer value of negative floats tends to zero).
1717         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1718           Removed changes made so to work properly with floats between
1719           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1720           and _fs2char.c
1721
1722 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1723
1724         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1725         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1726         (genCast) cosmetic change
1727         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1728         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1729         from mcs51
1730         * support/regression/tests/bitfields (testSignedBitfields): added
1731
1732 2005-11-18 Borut Razem <borut.razem AT siol.net>
1733
1734         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1735         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1736           introduced SILENT option to make building of pic16 libraries less
1737
1738 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1739
1740         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1741           Now they work properly with floats between -1.0 and 0.0
1742         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1743
1744 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1745
1746         * src/SDCCicode.c (printOperand): added missing else
1747
1748 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1749
1750         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1751         reformatted for better readability
1752         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1753         signed bitfields
1754
1755 2005-11-17 Borut Razem <borut.razem AT siol.net>
1756
1757         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1758           introduced SILENT option to make building of pic16 libraries less
1759           verbose - used for nightly snapshot build
1760         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1761           available on Win32 platforms.
1762         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1763           medium, large, pic and pic16
1764
1765 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1766
1767         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1768           printf("%f"...) sets fraction to zero.
1769
1770 2005-11-16 Raphael Neider <rneider AT web.de>
1771
1772         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1773           fixes #1357221
1774         * src/pic/gen.c (genIfx): implemented for CARRY bit
1775         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1776           to generic pointers, fixes #1357332,
1777           (pic16_movLit2f): NEW,
1778           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1779
1780 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1781
1782         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1783
1784 2005-11-11 Raphael Neider <rneider AT web.de>
1785
1786         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1787         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1788           compute pointer's type from operand,
1789           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1790           improved single bit reads, fixes bug #1353379
1791
1792 2005-11-09 Borut Razem <borut.razem AT siol.net>
1793
1794         * support/scripts/sdcc.nsi: added lib/pic to the package
1795
1796 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1797
1798         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1799
1800 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1801
1802         * support/regression/tests/bug1348008.c: added
1803         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1804         * support/regression/tests/bug1337835.c: updated comment
1805
1806 2005-11-06 Borut Razem <borut.razem AT siol.net>
1807
1808         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1809           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1810           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1811           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1812           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1813           dynamic construction of cl_error_class and derivates - 2.nd try
1814
1815 2005-11-05 Borut Razem <borut.razem AT siol.net>
1816
1817         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1818           bug, which caused Bus Errors on sparc solaris
1819
1820 2005-11-04 Borut Razem <borut.razem AT siol.net>
1821
1822         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1823           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1824           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1825           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1826           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1827           and derivates to resolve the initialization problem on OSX
1828
1829 2005-11-02 Borut Razem <borut.razem AT siol.net>
1830
1831         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1832           corrected typo - #include <winsock2.h>
1833
1834 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1835
1836         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1837           (_asxxxx_mapping): added org directive for future enhancements
1838
1839 2005-11-01 Borut Razem <borut.razem AT siol.net>
1840
1841         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1842           enabled sockets on WIN32
1843         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1844
1845 2005-10-31 Borut Razem <borut.razem AT siol.net>
1846
1847         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1848           WIN32 backslash path delimiters should be escaped when used in C strings
1849         * support/regression/tests/bitfields.c: exclude failing assertions for
1850           __CYGWIN32__ and __MINGW32__ hosts
1851
1852 2005-10-30 Borut Razem <borut.razem AT siol.net>
1853
1854         * src/SDCCutil.c: corrected double comparison typo
1855
1856 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1857
1858         * device/lib/medium/Makefile: added for new memory model medium
1859         * device/include/asm/mcs51/features.h: updated for medium/pdata
1860         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1861           added Multiply & Accumulate sbit's and MAC0_PAGE define
1862         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1863         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1864         * device/lib/_mullong.c: update for medium model
1865         * device/lib/incl.mk: added medium model
1866         * doc/sdccman.lyx: documented medium model
1867         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1868         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1869         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1870         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1871           (allocParms): set SCLS and OCLS to pdata for medium model
1872         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1873           for pdata,
1874           (powof2): return <0 if not power of 2
1875         * src/avr/gen.c (genBitWise): use updated powof2
1876         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1877           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1878           (shiftLLeftOrResult): use B if necessary
1879         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1880         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1881         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1882         * support/regression/Makefile.in: added test-mcs51-medium
1883         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1884
1885 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1886
1887         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1888         specifier unsigned
1889         * device/lib/time.c (mktime): fixed bug 1334315
1890
1891 2005-10-28 Raphael Neider <rneider AT web.de>
1892
1893         * device/include/pic/p16f_common.inc: added common declarations
1894         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1895
1896 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1897
1898         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1899           (aopPutUsesAcc): added to predict accumulator use,
1900           (assignResultValue): save acc if necessary,
1901           (genMinusDec): store result if indirectly addressed,
1902           (genDivOneByte):  save acc if necessary,
1903           (movLeft2Result): bugfix if left already in acc,
1904           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1905             attention to accumulator use (esp. pdata),
1906           (genReceive): receive pdata correctly
1907         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1908         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1909
1910 2005-10-27 Raphael Neider <rneider AT web.de>
1911
1912         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1913
1914 2005-10-27 Raphael Neider <rneider AT web.de>
1915
1916         * .version: changed version to 2.5.4
1917         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1918         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1919           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1920             arithmetics support routines
1921         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1922         * device/lib/Makefile.in: also create installdir for pic
1923
1924         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1925           pic14 port as well
1926         * src/pic/device.c (dump_sfr): rewritten to delegate register
1927           placement to the linker (use `extern sym' rather than sym EQU addr),
1928           (validAddress): fixed to check last specified address
1929         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1930           (popGetLit): truncate literal value to 8 bit,
1931           (popGet): moved assert to more appropriate place
1932           (popGetExternal): create pCode operand from and mark the according
1933             symbol as being `extern'
1934           (popGetAddr): added sanity check on immediate's offset, provide
1935             GPOINTER tag on demand
1936           (aopPut): fixed for immediates,
1937           (mov2w_op): move operand's address or contents to WREG (depending on
1938             operand type), safer variant of mov2w,
1939           (movwf,call_libraryfunc): NEW, handy abbreviations,
1940           (get_argument_pcop,get_return_val_pcop,pass_argument,
1941           get_returnvalue): interface for accessing function parameters and
1942             return values,
1943           (assignResultValuei,genRet): use new parameter/return value interface
1944           (pic14_getDataSize): back to old version handling generic pointers,
1945           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1946             provided implementation and/or fixed old one,
1947           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1948             calls, removed legacy 8051 reference code
1949           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1950           (loadSignToC): NEW, move the operands sign bit to CARRY,
1951           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1952             genRightShiftSigned, accepts negative shift counts,
1953           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1954           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1955             generic pointers, __data pointers and __code pointers,
1956           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1957             and signed bitfields, limit bitfields to 8 bit,
1958           (genDataPointerGet): fixed number of bytes read,
1959           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1960           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1961             pointers to constant data are no longer assumed to point to __code
1962             space, removed invalid pointer types,
1963           (bitpatternFromVal): retrieve the PICs representation of an integer
1964             or float literal,
1965           (genDataPointerSet): fixed assigning to po_immediate operands,
1966           (genGenPointerSet): implemented as library call,
1967           (genIfx): fixed incorrect condition,
1968           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1969             provide GPOINTER tag according to destination's storage class,
1970           (genCast): added code to handle casting to generic pointers, added
1971             sign-/zero extension of the result
1972           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1973         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1974         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1975           extend the result
1976         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1977           address/register resides in the shared banks
1978           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1979             put all variables into separate sections (have the linker arrange
1980             them)
1981           (picglue): put init code and interrupt handlers in separate sections
1982         * src/pic/main.c: added port specific options table, modified to PORT
1983           structure to make GPOINTERs 3 byte, added pic14_options
1984           (_pic14_do_link): private linking routine (update paths to libraries,
1985             add libsdcc.lib by default)
1986         * src/pic/main.h: declare pic14_options
1987         * src/pic/pcode.c: fixed instructions i/o relations,
1988           (RegCond): reverted to correct version,
1989           (newpCodeOpLit): truncate literals to 8 bit,
1990           (genericPrint): added debug output,
1991           (getRegFromInstruction): fixed for various operand types, simplified
1992           (BuildFlow): fixed broken handling of isntructions with labels
1993           (LinkFlow): start at last instruction in flow (skip trailing comments),
1994             pass the flow on to the next instruction after CALL
1995           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1996           (insertPCodeInstruction): fixed inserting after a skip instruction,
1997           (DoBankSelect): fixed for labeled instructions
1998           (OptimizepBlock): honor --nopeep switch
1999           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
2000         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
2001         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
2002           (pCodeOptime2pCodes): allow disabling this optimization via
2003             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
2004             but is still buggy), started implementation of a dataflow based
2005             pCode optimization (CSE + dead code elimination)
2006           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
2007         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
2008           names are independant of the stack location and therefore portable across
2009           devices
2010
2011 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
2012
2013         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
2014           (selectSpil): fixed bug 1337835 by not spilling bit variables
2015         * support/regression/tests/bug1337835.c: added test for this bug
2016         * src/mcs51/peeph.def: restart after rule 3.c,
2017           addded rules 263.x to optimize loading constants
2018
2019 2005-10-26 Raphael Neider <rneider AT web.de>
2020
2021         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
2022         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
2023           (genAssign): emit warning when casting literals to generic pointer
2024             type, also applies when taking the address of a fixed variable,
2025           (genCast): improved casting to generic pointers
2026         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2027           extern variables, added verbose error message
2028         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2029
2030 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2031
2032         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2033         carry must be complemented too
2034         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2035         could be emitted by genMinus
2036         * src/SDCCval.c (constVal): fixed bug 1305065
2037
2038 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2039
2040         * src/SDCCast.c (addCast): added promotion for bit variables
2041         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2042         promotion casts + optimisation
2043         (optimizeGetWord): fix warning 'i' might be used uninitialized
2044         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2045         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2046
2047 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2048
2049         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2050         all chars are promoted to int; promotion should be handled in SDCCast.c
2051
2052 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2053
2054         * device/lib/_strcmp.c: Fixed bug 1326457
2055
2056 2005-10-11 Raphael Neider <rneider AT web.de>
2057
2058         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2059         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2060
2061 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2062
2063         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2064         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2065
2066 2005-10-04 Raphael Neider <rneider AT web.de>
2067
2068         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2069           device/lib/pic16/pics.all: added pic18f1320
2070         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2071
2072 2005-09-30 Raphael Neider <rneider AT web.de>
2073
2074         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2075         * src/pic16/devices.inc: NEW, provides device descriptions
2076         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2077
2078 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2079
2080         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2081           GETHBIT
2082
2083 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2084
2085         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2086           documented Any Order Bit, Higher Order Byte and Higher Order Word
2087         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2088         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2089           (optimizeGetAbit): new, to get any bit, not only the high bit,
2090           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2091           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2092           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2093           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2094             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2095             GETABIT, GETBYTE, GETWORD: decorate them,
2096           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2097           (ast_print): added GETABIT, GETBYTE, GETWORD
2098         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2099         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2100           (geniCodeBinary): new generic binary icode,
2101           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2102         * src/port.h: updated comment for PORT.hasExtBitOp
2103         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2104           (genGetByte): new, to get a single byte,
2105           (genGetWord): new, to get a word from a long,
2106           (gen51Code): added GETABIT, GETBYTE, GETWORD
2107         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2108
2109 2005-09-23 Raphael Neider <rneider AT web.de>
2110
2111         * configure.in, configure: have device/lib/pic configured
2112         * device/lib/Makefile.in: added model-pic14
2113         * device/lib/clean.mk: added pic/ to clean rule
2114         * device/lib/pic: added rudimentary pic14 library providing support
2115           functions for multiplication/division/generic pointer access
2116         * src/SDCCopt.c (convilong): mark support functions as extern
2117           for pic14 port as well
2118         * src/pic/gen.c (genMult): added assertions,
2119           (genpic14Code): emit warning on unhandled iCodes
2120         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2121         * src/pic/pcode.c (pCodeOpCopy),
2122         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2123           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2124           SFR_REGISTER}), made safe for future extensions
2125         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2126           instructions even if preceeded by SKIP instructions (also remove
2127           them); removed unused code
2128         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2129           prevents leaving parts of the structure uninitialized after copying
2130
2131 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2132
2133         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2134           ago by me
2135         * support/regression/tests/addsub.c: added test for the bug
2136
2137 2005-09-21 Raphael Neider <rneider AT web.de>
2138
2139         * device/include/pic16/pic18f1220.h,
2140           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2141         * device/lib/pic16/Makefile.rules: added missing opening paren
2142         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2143           are provided in genutils.c,
2144           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2145           operand/result sizes,
2146           (genCmp): assert on NULL pointers first, then check deref'ed values
2147         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2148           result size
2149
2150 2005-09-18 Raphael Neider <rneider AT web.de>
2151
2152         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2153           as these are now unused,
2154           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2155         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2156           local, avoids uninitialized pointer dereference on r->name
2157         * src/pic16/ralloc.c (newReg): fixed indentation
2158
2159 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2160
2161         * src/SDCCval.c (constVal): fixed bug 730366
2162         * support/Util/SDCCerr.c,
2163         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2164
2165 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2166
2167         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2168
2169 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2170
2171         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2172
2173 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2174
2175         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2176           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2177         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2178           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2179         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2180         * packihx/packihx.c (hexDigit): made c unsigned char
2181         * as/mcs51/lklibr.c (fndsym),
2182         * link/z80/lkgb.c (gb),
2183         * link/z80/lklibr.c (fndsym),
2184         * link/z80/lkrloc.c (relr),
2185         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2186         * src/SDCC.lex (checkCurrFile, process_pragma),
2187         * src/SDCCglue.c (spacesToUnderscores),
2188         * src/SDCCmain.c (setParseWithComma, processFile),
2189         * src/asm.c (tvsprintf, printCLine),
2190         * src/avr/gen.c (emitcode, aopPut),
2191         * src/ds390/gen.c (emitcode),
2192         * src/hc08/gen.c (emitcode, emitinline),
2193         * src/mcs51/gen.c (emitcode, genInline),
2194         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2195           tokenizeLineNode),
2196         * src/pic/ralloc.c (debugLog),
2197         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2198           tokenizeLineNode),
2199         * src/pic16/ralloc.c (debugLog),
2200         * src/z80/main.c (_process_pragma):
2201            made all ctype.h function calls safe
2202         * src/SDCCopt.c: include math.h for fabs
2203         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2204           and used them throughout the code to make ctype.h function calls safe
2205         * src/ds390/main.c (asmLineNodeFromLineNode),
2206         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2207         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2208            unsigned char*
2209         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2210           (newpCodeAsmDir): made ctype.h function calls safe
2211         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2212           pic16_emitcode):  made lbp unsigned char*
2213         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2214           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2215         * src/xa51/gen.c (emitcode),
2216         * src/z80/gen.c (_emit2): made lbp unsigned char*
2217         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2218            char*
2219
2220 2005-09-05 Raphael Neider <rneider AT web.de>
2221
2222         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2223           access bank splitpoint
2224
2225 2005-09-05 Raphael Neider <rneider AT web.de>
2226
2227         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2228
2229 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2230
2231         * .version: changed to version 2.5.3
2232         * doc/sdccman.lyx: changed version to 2.5.3,
2233           documented --codeseg and --constseg and pragma codeseg and constseg,
2234           documented bit parameters (reentrant) and bit returning
2235         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2236            currFunc->recvSize, but is this ok for all ports?
2237           (ast2iCode): result of ~ on unsigned char must be cast to int for
2238            bool to work
2239         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2240           function pointers in bit space
2241         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2242           (processFuncArgs): call port.reg_parm() with reentrancy info
2243         * src/port.h,
2244         * src/avr/main.c,
2245         * src/ds390/main.c,
2246         * src/hc08/main.c,
2247         * src/pic/main.c,
2248         * src/pic16/main.c,
2249         * src/xa51/main.c,
2250         * src/z80/main.c: port.reg_parm prototype extended with
2251           "bool reentrant" parameter
2252         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2253           options.stackAuto for allocating bit register parameters
2254         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2255           (genSend): set BitBankUsed if it is,
2256           (selectRegBank): factored out of genCall for use in genPcall,
2257           (genCall): removed redundant dtype assignmen, use selectRegBank,
2258           (genPcall): handle returning in Carry properly, save in F0 if needed,
2259           (genReceive): handle bit register parameters
2260         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2261           (mcs51_assignRegisters): enable bit registers for all reentrant
2262            functions and don't set BitBankUsed unconditionally
2263         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2264         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2265         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2266
2267 2005-08-27 Borut Razem <borut.razem AT siol.net>
2268
2269         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2270         ppc-osx (Darwin) does not support -u option. It seems that it is
2271         supported only on Linux - GNU cp
2272
2273 2005-08-25 Borut Razem <borut.razem AT siol.net>
2274
2275         * sim/ucsim/gui.src/serio.src/Makefile.in,
2276           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2277           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2278           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2279           install and strip, since the strip at /usr/ccs/bin should be used
2280           on solaris
2281
2282 2005-08-24 Borut Razem <borut.razem AT siol.net>
2283
2284         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2285
2286 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2287
2288         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2289         ffffffffu
2290
2291 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2292
2293         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2294         * as/mcs51/lkmain.c (link_main): fixed warning
2295         * device/include/stdbool.h: ds390 has no advanced bit support yet
2296         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2297         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2298         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2299           and updated their macros
2300         * src/SDCCval.c (constVal): updated comment for renamed b_long
2301
2302 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2303
2304         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2305         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2306           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2307           (oprio): set priority for '['
2308         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2309            and adb_24_bit
2310         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2311         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2312         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2313         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2314           added overlayable BIT_BANK area
2315         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2316           (summary2): explain 'T' in legenda
2317         * as/mcs51/lkrloc.c: replaced old K&R style,
2318           (relr): added R_BIT processing,
2319           (errmsg): added "Bit-addressable relocation error",
2320           (adb_bit): added for converting from byte- to bit-addressable space,
2321           (adb_24_bit): added for converting from byte- to bit-addressable space
2322         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2323            used in reentrant functions now even as return value
2324         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2325         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2326           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2327         * src/SDCCglobl.h: added indicator BitBankUsed
2328         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2329            the bit registers b0-b7
2330         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2331           (geniCodeCast): fixed bug 1263853,
2332           (geniCodeLogicAndOr): put result in bool or char,
2333           (geniCodeReceive): added parameter func for accessing the return type,
2334           (geniCodeFunctionBody): pass func to geniCodeReceive
2335         * src/SDCCmain.c: added indicator BitBankUsed
2336         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2337         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2338           (checkSClass): don't put automatic bool/bit on stack,
2339           (checkFunction): removed check on function cannot return bit
2340         * src/SDCCsymt.h: added newBoolLink prototype
2341         * src/mcs51/gen.c (rb1regs): added bit registers,
2342           (movc): created for assigning to carry,
2343           (pushReg, popReg): created for pushing registers,
2344           (sameRegs): check both AOP_REG and AOP_CRY types,
2345           (aopOp): handle bit registers,
2346           (aopPut): optimization no self-assign,
2347           (saveRegisters): push reg->base (bits) only once for bit registers,
2348            and use pushReg,
2349           (unsaveRegisters): pop reg->base only once and use popReg,
2350           (assignResultValue): added parameter func and return in carry for bits,
2351           (genIpush): optimization no reload in A if not changed,
2352           (genSend): bit parameters in reentrant functions are passed in bit
2353            registers by first assigning to bits in B, then save registers and
2354            copy B to bits,
2355           (genCall): handle returning in Carry properly, save it in F0 if needed,
2356           (genPcall): updated assignResultValue call, this is not safe yet for bit
2357            returning function !!!
2358           (genFunction): don't generate equ's for bit registers and use pushReg,
2359           (genEndFunction): take care of bit returning functions and use popReg,
2360           (genRet): return bit in Carry,
2361           (genIfx): optimize bit registers and other directly addressable bits,
2362           (genReceive): updated assignResultValue call
2363         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2364           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2365            registers when using stack-auto
2366         * src/mcs51/ralloc.c (_G): added allBitregs,
2367           (regs8051): added the bit registers,
2368           (createStackSpil): use macro IS_BIT,
2369           (getRegBit): added to allocate a bit register, else spill,
2370           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2371           (updateRegUsage): factored out to ease stepping while debugging,
2372           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2373            also allocate bit registers,
2374           (fillGaps): handle bit registers,
2375           (findAllBitregs): added to create bit vector with all bit registers,
2376           (mcs51_allBitregs): returns this bit vector,
2377           (mcs51_assignRegisters): when using stack-auto use bit registers for
2378            passing parameters and creating local variables
2379         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2380
2381 2005-08-22 Borut Razem <borut.razem AT siol.net>
2382
2383         * device/lib/Makefile.in: replaced find option -or with -o
2384           to make it run on solaris
2385
2386 2005-08-22 Raphael Neider <rneider AT web.de>
2387
2388         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2389           fixes #1265442 (crash on Solaris)
2390
2391 2005-08-20 Borut Razem <borut.razem AT siol.net>
2392
2393         * configure, configure.in: added tests for libsocket and libnsl libraries,
2394           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2395           from support/regression/Makefile.in
2396         * support/regression/Makefile.in: added
2397         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2398         * sim/ucsim/libtool: regenerated on sparc-solaris
2399         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2400           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2401           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2402           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2403           sparc-solaris, which doesn't use GNU ld linker
2404         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2405         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2406
2407 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2408
2409         * src/mcs51/peeph.def: updated comments
2410
2411 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2412
2413         * device/lib/_gptrget.c,
2414         * device/lib/_gptrput.c: slightly shorter
2415         * doc/sdccman.lyx: incremented version
2416         * src/mcs51/peeph.def: moved peephole comments to the line of first
2417           change to better keep line correlation, reanimated 186.e
2418         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2419
2420 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2421
2422         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2423           David Saxton with quotes around file name.
2424
2425 2005-08-15 Borut Razem <borut.razem AT siol.net>
2426
2427         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2428           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2429           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2430           make tests run on x86_64 platform
2431
2432 2005-08-13 Raphael Neider <rneider AT web.de>
2433
2434         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2435           as it might be executed DURING a build (parallel make is wonderful)
2436
2437 2005-08-13 Raphael Neider <rneider AT web.de>
2438
2439         * device/lib/Makefile.in (port-specific-objects-pic16):
2440           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2441         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2442           dependency
2443         * device/lib/pic16/Makefile.rules: build subdirs before creating
2444           the library, removed builddir rule, create $(builddir) early in
2445           recurse rule, use empty recurse rule for leaf directories
2446         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2447           mkdir errors (race condition), removed duplicate suffix "hex"
2448           from clean rules
2449         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2450         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2451           prevents mkdir -p from aborting on Alpha
2452
2453 2005-08-12 Raphael Neider <rneider AT web.de>
2454
2455         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2456           db-statements in order to allow for arrays of pointers in code
2457           sections to be placed without interspersed 0-padding, fixes
2458           bug #1256215
2459         * (emitStatistics): fixed division by zero for pic18f1220
2460         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2461           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2462         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2463         * (pic16_pCodeConstString): keep track of already emitted string
2464           literals to prevent "duplicate definitions of symbol _str_NR"
2465         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2466           debug message
2467         * device/lib/Makefile.in: ignore failing PIC16 library builds
2468         * device/lib/pic16/Makefile: do not build if gputils are missing
2469         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2470
2471 2005-08-10 Raphael Neider <rneider AT web.de>
2472
2473         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2474           my last commit)
2475
2476 2005-08-10 Raphael Neider <rneider AT web.de>
2477
2478         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2479           Rokas' patch to add the new fixed point type "__fixed16x16"
2480         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2481           functions for __fixed16x16 arithmetics
2482         * device/lib/pic16: reimplemented the build system to support
2483           a separate build directory, better handling of libio (create
2484           the library in a separate subdir for each architecture) and
2485           easier configuration (centralized in Makefile.common)
2486
2487 2005-08-07 Raphael Neider <rneider AT web.de>
2488
2489         * src/pic16/gen.c (genrshTwo): fixed sign extension
2490         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2491         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2492           added T0CONbits
2493         * device/include/pic16/pic18f4220.h: NEW, header for
2494           pic18f4220 and pic18f4320
2495         * device/include/pic16/pic18fregs.h: added new devices,
2496           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2497         * device/include/pic16/signal.h: resolved name clashes
2498           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2499           to also allow testing for interrupt enable bits, added
2500           comments on how to use the macros
2501         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2502         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2503           register definitions for the devices
2504         * device/lib/pic16/pics.all: added new devices
2505         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2506           allocated memory
2507         * device/lib/pic16/libc/stdlib/memfree: do not count
2508           the block header as free memory
2509         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2510           simplified and added missing end-of-blocklist-marker
2511           (reported by Peter Onion, fixes #1252814)
2512         * (_mergeHeapBlock): fixed loop condition
2513         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2514           len==0, restructured code
2515         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2516           up a bit, reduced bitfield accesses, prevent endless loops
2517           in case of heap corruption
2518         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2519           "unreferenced arguments/must return a value" warnings
2520         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2521           replaced BAUDREG with SPBRG
2522         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2523           device/lib/pic16/debug/gstack/gstack.c: replaced
2524           _naked, _asm, _endasm with __naked, __asm, __endasm
2525
2526 2005-08-05 Raphael Neider <rneider AT web.de>
2527
2528         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2529           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2530
2531 2005-08-05 Borut Razem <borut.razem AT siol.net>
2532
2533         * device/lib/Makefile.in: added missing ';'
2534         * configure: removed ^M characters
2535
2536 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2537
2538         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2539           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2540           License
2541
2542 2005-08-04 Borut Razem <borut.razem AT siol.net>
2543
2544         * configure.in: pic16 libraries build 2nd try - enable running
2545           configure in device/lib/pic16
2546         * configure: regenerated from configure.in
2547         * device/lib/Makefile.in: create $(PORT)/bin directory
2548
2549 2005-08-03 Raphael Neider <rneider AT web.de>
2550
2551         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2552           to get/set values via pointers
2553         * (genUnpackBits,genPackBits): changed detection of
2554           ptr->bitfield vs. sym.bitfield, fixed access via generic
2555           pointers, removed dead (wrong) code for multibyte bitfields
2556         * (genNearPointerGet, genGenPointerGet): removed useless code,
2557           fixed bitfield detection, fixes #1250594
2558         * (genNearPointerSet): removed useless code
2559         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2560           and introduced macro pic16_emitpcode that conditionally emits
2561           the origin of the following pCode (useful for debugging SDCC)
2562         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2563         * (createDefmap): fixed handling of LFSR for --optimize-df
2564
2565 2005-08-02 Borut Razem <borut.razem AT siol.net>
2566
2567         * device/lib/Makefile.in: pic16 libraries build enabled since
2568           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2569
2570 2005-08-02 Raphael Neider <rneider AT web.de>
2571
2572         * src/pic16/gen.c (genPackBits): removed deprecated warning
2573         * (genGenPointerSet): fixed bitfield detection
2574
2575 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2576
2577         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2578
2579 2005-07-31 Raphael Neider <rneider AT web.de>
2580
2581         * device/lib/pic16/libdev/pic18f458.c,
2582           device/include/pic16/pic18f458.h: added missing T0CONbits
2583
2584 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2585
2586         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2587
2588 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2589
2590         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2591
2592 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2593
2594         * device/include/mcs51/at89c51ed2.h: added.
2595
2596 2005-07-23 Raphael Neider <rneider AT web.de>
2597
2598         * src/pic/gen.h: added emitpcode macro for debugging
2599         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2600           and replace by macro adding debug information on demand
2601         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2602         * (gencjne): tried to fix; replaced with correct (slower) code
2603         * (gen{Unp,P}ackBits): fixed single bit access
2604         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2605         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2606           previous instruction
2607         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2608           register has to be handled with care (forbidding movement
2609           of assignments/uses, removing assignments completely, ...)
2610         * (pCodeOptime2pCodes): make use of regIsSpecial
2611         * added lots of debugging output (commented out)
2612         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2613           from being reused as result UNLESS it is known to work
2614
2615 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2616
2617         * support/Util/dbuf.h: include <stddef.h> for size_t
2618         * .version: changed to version 2.5.2
2619
2620 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2621
2622         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2623
2624 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2625
2626         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2627           (genModOneByte): removed needless psha/pula
2628
2629 2005-07-22 Raphael Neider <rneider AT web.de>
2630
2631         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2632           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2633         * src/pic/gen.c (resolveIfx): do not "invent" labels
2634         * (genSkipc): changed to positive logic
2635         * (genSkipCond): removed as no longer needed
2636         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2637           backport from PIC16
2638         * (genLeftShift): check operands are in different registers
2639         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2640           INCF does not update CARRY...
2641         * src/pic/main.c: fixed _linkCmd
2642         * src/pic/pcode.c (unlinkpCode): added inactive code
2643         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2644           alive (do not assign result and operand overlapping registers)
2645
2646 2005-07-22 Raphael Neider <rneider AT web.de>
2647
2648         * src/pic/device.c (dump_sfr): replaced register declaration with
2649           call to emitSymbolToFile() to avoid duplicate symbols
2650         * (assignRelocatableRegisters): do not declare external symbols
2651         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2652           right (take size of type, not etype)
2653         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2654         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2655         * (packRegsForAccUse): disabled assignment of WREG as
2656           the result reg to prevent occurence of just fixed #1235003,
2657           fixes #1242954
2658         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2659           symbols (avoids duplicate symbols in .asm file)
2660         * (pic14emitRegularMap): use emitSymbolToFile()
2661         * src/pic/gen.c (aopOp): fixed spillLocation handling
2662         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2663         * (genDataPointerSet): removed unneccessary variables/output
2664
2665 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2666
2667         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2668         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2669
2670 2005-07-21 Raphael Neider <rneider AT web.de>
2671
2672         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2673           architecture cannot handle them efficiently, fixes bug #1235003
2674         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2675           check for empty sets before using them (fixes bug #1232190)
2676
2677 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2678
2679         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2680           (lnksect2): generate warnings for memory overlap
2681         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2682           constseg to set the name of these segments so you can instruct the linker
2683           to place them in banks
2684         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2685         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2686           added code_seg and const_seg to options
2687         * src/SDCCglue.c (emitMaps): use options.const_seg,
2688           (createInterruptVect): put interrupt vectors in segment HOME,
2689           (glue): put HOME before static segment and put the main glue in HOME,
2690           (glue): use options.code_seg
2691         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2692         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2693           these segments so you can instruct the linker to place them in banks
2694           (linkEdit): use code_loc for HOME segment which should be the first
2695           segment in code memory now
2696         * src/SDCCmem.c: fixed more stuff like bug 1238386
2697         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2698           (changePointer): don't change function pointers to code pointers for
2699           banked functions,
2700           (compareType): added exceptional check for banked function pointers
2701         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2702         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2703           after static in code memory
2704         * src/mcs51/gen.c: added aopLiteralLong prototype,
2705           (aopForSym): use getSize for functions,
2706           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2707           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2708           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2709           the segment,
2710           (genPcall): use call for literal function pointers and generate banked
2711           calls over the one trampoline so there's only one place for the user to
2712           modify according to his/hers hardware,
2713           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2714           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2715         * src/mcs51/main.c: added keyword banked,
2716           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2717         * support/Util/SDCCerr.c,
2718         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2719           needed for passing the bank and address to the trampoline
2720         * device/lib/mcs51/crtbank.asm: added for bankswitching
2721         * device/lib/mcs51/Makefile: added crtbank
2722
2723 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2724
2725         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2726           for fields at offset 0 of a struct or union as reported
2727           on 2005-07-07 in the developer mailing list.
2728
2729 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2730
2731         * src/SDCCmem.c: fixed bug 1238386
2732
2733 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2734
2735         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2736           (patch #1144962), added peephole 300, enabled 259.x
2737         * doc/sdccman.lyx: removed screenshot and provided link instead
2738
2739 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2740
2741         * doc/sdccman.lyx: added section about debugging with ddd
2742         * doc/figures/ddd_example.eps: screenshot of debugging session
2743
2744 2005-07-04 Raphael Neider <rneider AT web.de>
2745
2746         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2747           like CODE pointers, fixes #1115683
2748         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2749           call, fixes bugs #1232211, #1228110,
2750           fixed wrong casts to pCodeFlow from pCodeInstructions
2751
2752 2005-07-04 Raphael Neider <rneider AT web.de>
2753
2754         * src/pic/gen.c (popGet): changed assert to allow for
2755           bit operands
2756         * (popGetAddr): changed signature to provide
2757           an additional index, patched all call sites
2758         * (genCmpEq): handle literal-like operands correctly
2759         * (genAddrOf): added sanity checks on __code/__data pointers
2760         * (genAssign): added handling of symbols from __code section
2761         * (gencjne): do not generate code for comparisons whose result
2762           is neither stored nor used, fixes bug #1171114
2763         * (AccLsh, AccRsh): operate on operand instead of WREG
2764         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2765           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2766           by known count
2767         * rewrote complete shift-by-literal logic, commented unused
2768           functions out
2769         * (genConstPointerGet): get multiple bytes (if result size > 1),
2770           fixed handling of non-immediate addresses
2771         * (genPointerGet): handle CODE pointers like CONST pointers
2772         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2773         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2774           operand is to be treated as a literal or not
2775         * (mov2w,genPcall,genCmpEq),
2776           src/pic/genarith.c: use aop_isLitLike() to decide between
2777           literal/register contents
2778         * (addSign): added missing offset
2779         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2780           only emit comment in debug-mode,
2781           use {aop,op}_isLitLike throughout the file
2782         * src/pic/glue.c: fix initializers for pointers (work in progress)
2783         * src/pic/pcode.c (get_op): honor index on _const symbols
2784         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2785         * (dumppBlock): added pCode size estimation
2786         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2787           check for IS_SYMOP before OP_SYMBOL'ing
2788         * fixed indentation, compacted switch-statements
2789         * (allocReg): find free register and allocate it instead of
2790           allocating new registers all the time
2791         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2792           registers as its operands (necessary only for multibyte GETs)
2793
2794 2005-07-01 Raphael Neider <rneider AT web.de>
2795
2796         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2797           debugging .asm-output macros FENTRY + FEXIT
2798         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2799           way... I wonder...
2800         * (emitpComment): NEW, printf to pCode
2801         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2802           offset handling
2803         * (popGetAddr): NEW, variant of popGet to access an immediates
2804           high(er) bytes instead of the n'th byte of memory they reference,
2805           replaced popGet with popGetAddr where neccessary
2806         * (genDataPointerGet): reactivated and fixed implementation
2807         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2808           accesses
2809         * (genDataPointerSet): fixed multibyte assignments
2810         * (genpic14Code): fixed --i-code-in-asm handling
2811         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2812         * (genPlus): fixed index-out-of-bounds error
2813         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2814         * src/pic/ralloc.c: added debugging output macro FENTRY2
2815         * (spillThis): fixed indentation, enbraced for-body for clarity
2816         * (rematStr): commented out as now unused
2817         * (regTypeNum): commented out special spill case (overwrites
2818           arbitrary values)
2819         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2820
2821 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2822
2823         * doc/sdccman.lyx: documented sfr16/sfr32,
2824           added example for using storage class with function pointers
2825         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2826
2827 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2828
2829         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2830         * device/lib/_itoa.c,
2831         * device/lib/_ltoa.c: optimized codesize
2832         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2833           but don't know how to suppress the double warning.
2834         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2835         * support/Util/SDCCerr.c,
2836         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2837
2838 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2839
2840         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2841           fixed old K&R prototypes
2842         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2843         * device/lib/_gptrget.c,
2844         * device/lib/_gptrgetc.c,
2845         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2846           also new versions for small generic pointers and banked generic pointers
2847         * src/port.h: added const_name
2848         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2849         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2850         * src/SDCCcse.c (findPrevIc): check all associative operators
2851         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2852         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2853         * src/SDCCmem.c: updated comments,
2854           set far-space to 0 for pdata, results in optimized code
2855         * src/SDCCmem.h: added macro CONST_NAME
2856         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2857           moving the info into the highest bits, see also gptrget/gptrput
2858         * src/src.dsp: added sdcc.ico to project files
2859         * src/avr/gen.c (genCast): fixed bug 0x%d
2860         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2861         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2862           relation between ptr_type and DCL_TYPE,
2863           (genCast): fixed bug 0x%d
2864         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2865           (CODE)" for const_name
2866         * src/hc08/gen.c (genCast): fixed bug 0x%d
2867         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2868           (hc08_port): added "CONST (CODE)" for const_name
2869         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2870           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2871           between ptr_type and DCL_TYPE,
2872           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2873           operand* and took AOP() inside function so sfr-ness can be checked,
2874           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2875           new prototype,
2876           (genFunction, genEndFunction): optimized stack setup,
2877           (genMinus): optimized for literals with ending zeroes (in bytes),
2878           (genCast): fixed bug 0x%d
2879         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2880           (mcs51_port): added "CONST (CODE)" for const_name
2881         * src/mcs51/peeph.def: made rule 226 more generic
2882         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2883         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2884         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2885         * src/z80/main.c (z80_port): added NULL for const_name,
2886           (gbz80_port): added NULL for const_name
2887         * support/regression/tests/bug663539.c,
2888         * support/regression/tests/sfr16.c: new tests
2889
2890 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2891
2892         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2893
2894 2005-06-24 Raphael Neider <rneider AT web.de>
2895
2896         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2897           corrected typos...
2898         * device/include/pic16/signal.h: added USBIF
2899           and SIG_USB
2900
2901 2005-06-24 Raphael Neider <rneider AT web.de>
2902
2903         * device/lib/pic16/libdev/pic18f2455.c,
2904           device/include/pic16/pic18f2455.h: NEW
2905         * device/include/pic16/pic18fregs.h,
2906           device/lib/pic16/pics.all,
2907           src/pic16/device.c: added 18f2455
2908         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2909           device/include/pic16/{pic18f[68][567].h,usart.h}:
2910           replaced MULTIPLE_USARTS define with more relaible
2911           compatibility sfrs (for USART access)
2912
2913 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2914
2915         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2916           and the output asm file line is printed on two lines.
2917
2918 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2919
2920         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2921           BGT, BLE, BHI, and BLS instructions
2922         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2923           genCmpEq): removed
2924         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2925           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2926           fixes bug #1216342
2927         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2928
2929 2005-06-15 Raphael Neider <rneider AT web.de>
2930
2931         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2932         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2933         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2934           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2935           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2936
2937 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2938
2939         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2940           Marcel Telka in bug #1215704
2941
2942 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2943
2944         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2945           located in shared memory bank.
2946
2947 2005-05-31 Raphael Neider <rneider AT web.de>
2948
2949         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2950           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2951           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2952
2953 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2954
2955         * device/lib/_strncpy.c: fixed the fix
2956
2957 2005-05-26 Raphael Neider <rneider AT web.de>
2958
2959         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2960           initializers with \0, bug #1208187
2961         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2962           intializers with \0, bug #1208187
2963
2964 2005-05-26 Raphael Neider <rneider AT web.de>
2965
2966         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2967           initializers with \0, bug #1208187
2968         * src/pic16/main.c (_process_pragma): added sanity checks
2969           for stack position and size, emit warnings when appropriate
2970
2971 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2972
2973         * device/lib/_strncpy.c: fixed not filling with \0
2974
2975 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2976
2977         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2978           createFunction),
2979         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2980           compound_statement),
2981         * src/SDCCsymt.h,
2982         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2983
2984 2005-05-24 Raphael Neider <rneider AT web.de>
2985
2986         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2987
2988 2005-05-24 Raphael Neider <rneider AT web.de>
2989
2990         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2991           TRISE definitions, closes bug #1162453
2992
2993 2005-05-22 Raphael Neider <rneider AT web.de>
2994
2995         * src/pic16/main.c (_process_pragma): check for missing
2996           arguments to pragmas code and udata
2997         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2998           consistency fixes to match other headers (thanks to Jim Paris)
2999         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
3000
3001 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
3002
3003         * src/SDCCicode.c (isOperandEqual): fixed missing ;
3004
3005 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
3006
3007         * support/regression/tests/bug1198642.c: new test
3008         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
3009         * src/SDCCcse.c (findPrevIc): added comment, please have a look
3010         * support/scripts/resource.h,
3011         * support/scripts/resource.rc,
3012         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
3013         * support/scripts/sdcc.ico: added 32x32 icon
3014
3015 2005-05-18 Raphael Neider <rneider AT web.de>
3016
3017         * device/lib/pic16/libdev/pic18f*.c,
3018         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
3019           keywords to "__sfr" and "__at (X)"
3020         * device/include/pic16/pic18fregs.h: added pic18f4520
3021         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
3022           #1203088 (MPLAB compatibility)
3023
3024 2005-05-17 Raphael Neider <rneider AT web.de>
3025
3026         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3027         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3028         * device/lib/pic16/pics.all: added new devices
3029         * src/pic16/device.c: added support for pic18f4520
3030
3031 2005-05-16 Raphael Neider <rneider AT web.de>
3032         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3033         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3034         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3035           convenience function for bit access
3036
3037 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3038
3039         * device/lib/printf_large.c: fixed bug 1193299
3040         * support/regression/tests/bug1057979.c: added test %3.3s
3041
3042 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3043
3044         * device/include/mcs51/8051.h,
3045         * device/include/mcs51/8052.h: made parseable with lint
3046         * device/include/mcs51/lint.h: added include file for (sp)lint
3047         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3048         * doc/cdbfileformat.lyx,
3049         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3050
3051 2005-05-14 Raphael Neider <rneider AT web.de>
3052
3053         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3054         * device/lib/pic16/libc/stdlib/itoa.c (new)
3055         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3056         * device/lib/pic16/libio/Makefile: exclude subdir according to
3057           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3058         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3059         * src/pic16/gen.c (genFunction): prevent annoying warning
3060         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3061           nameclashes on BeOS
3062         * support/cpp2/cppmain.c (cpp_output_string): new
3063         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3064           fixes bug 1116802
3065
3066 2005-05-13 Borut Razem <borut.razem AT siol.net>
3067
3068         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3069
3070 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3071
3072         * .version: changed to version 2.5.1; back to bleeding edge development
3073
3074 2005-05-11 Borut Razem <borut.razem AT siol.net>
3075
3076         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3077           generate PDF version 1.3 documents
3078
3079 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3080
3081         * .version: changed to version 2.5.0
3082
3083 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3084
3085         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3086
3087 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3088
3089         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3090         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3091         well as many smaller updates.
3092         * .version: changed to version 2.5.0-pre1
3093
3094 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3095
3096         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3097
3098 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3099
3100         * support/regression/tests/bug1185672.c: added
3101         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3102           bug 1185672
3103         * src/mcs51/gen.c (genCall): added comments, made it look safer
3104         * src/mcs51/gen.c (genEndFunction): simplified
3105
3106 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3107
3108         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3109
3110 2005-04-14 Borut Razem <borut.razem AT siol.net>
3111
3112         * fixed bug 1045046 - SIGSEGV with really simple code?:
3113           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3114           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3115
3116 2005-04-14 Borut Razem <borut.razem AT siol.net>
3117
3118         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3119           src/pic16/device.h: temporarily disabled experimental #inline pragma
3120           for 2.5.0 release
3121
3122 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3123
3124         * device/include/z80/stdio.h,
3125         * device/include/z80/string.h: removed these highly incomplete files so
3126           SDCC can use the default ones in device/include/
3127
3128 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3129
3130         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3131         gcc warning.
3132         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3133         fix sdcpp warnings.
3134
3135 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3136
3137         * device/include/malloc.h: removed redundant __reentrant prototypes
3138         * device/lib/_mullong.c: added working xstack variant in asm (C version
3139           doesn't pass regression tests)
3140         * device/lib/bpx.c: used __data and made bpx char for mcs51
3141         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3142           (createFunction): fixed bug with xstackPtr
3143         * src/SDCCcse.c: corrected comments
3144         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3145           (killDeadCode, eBBlockFromiCode): removed unused code
3146         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3147           corrected comments
3148         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3149           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3150           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3151           (genModOneByte): fixed warning in MSVC
3152         * src/mcs51/main.c (): added comments
3153         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3154
3155 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3156
3157         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3158
3159 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3160
3161         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3162
3163 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3164
3165         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3166         characters arrays of larger size than the declared one.
3167
3168 2005-04-10 Borut Razem <borut.razem AT siol.net>
3169
3170         * src/pic/gen.c (genInline),
3171           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3172           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3173           (findNextInstruction), (findPrevInstruction),
3174           (findInstructionUsingLabel),
3175           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3176         * src/pic/pcode.c (findLabel): added missing '\n'
3177         * src/src.dsp: added SDCCdwarf2.c to the project
3178
3179 2005-04-09 Borut Razem <borut.razem AT siol.net>
3180
3181         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3182
3183 2005-04-08 Raphael Neider <rneider AT web.de>
3184
3185         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3186           into the chain after a given one) and mergeDefmapSymbols (combine
3187           defmap entries for each symbol per pcode)
3188         * (createDefmap): have defmap entries merged in the end
3189         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3190           a symbol before replacing one access type's symbol, merge symbols in
3191           the end (replacement symbol might already have an entry)
3192         * (assignValnums): keep reference to written WREG intact
3193
3194 2005-04-08 Raphael Neider <rneider AT web.de>
3195
3196         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3197           Alpha)
3198
3199 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3200
3201         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3202         bytes
3203
3204 2005-04-07 Raphael Neider <rneider AT web.de>
3205
3206         * device/include/pic16/usart.h: added compatibility defines for
3207           devices with more than one USART
3208         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3209
3210 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3211
3212         * device/lib/Makefile.in: updated for port specific include
3213
3214 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3215
3216         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3217
3218 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3219
3220         * device/include/8051.h,
3221         * device/include/8052.h,
3222         * device/include/at89S8252.h,
3223         * device/include/at89c55.h,
3224         * device/include/at89x051.h,
3225         * device/include/at89x51.h,
3226         * device/include/at89x52.h,
3227         * device/include/mcs51reg.h,
3228         * device/include/reg51.h,
3229         * device/include/reg764.h,
3230         * device/include/regc515c.h,
3231         * device/include/sab80515.h: (re)moved these 12 files
3232         * device/include/mcs51/8051.h,
3233         * device/include/mcs51/8052.h,
3234         * device/include/mcs51/at89S8252.h,
3235         * device/include/mcs51/at89c55.h,
3236         * device/include/mcs51/at89x051.h,
3237         * device/include/mcs51/at89x51.h,
3238         * device/include/mcs51/at89x52.h,
3239         * device/include/mcs51/mcs51reg.h,
3240         * device/include/mcs51/reg51.h,
3241         * device/include/mcs51/reg764.h,
3242         * device/include/mcs51/regc515c.h,
3243         * device/include/mcs51/sab80515.h: and added them here
3244
3245 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3246
3247         * device/include/stdarg.h: changed SDCC specific keywords to double
3248           underlined form.
3249         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3250           mcs51 and ds390.
3251         * device/include/hc08/mc68hc908gp32.h,
3252         * device/include/hc08/mc68hc908jb8.h,
3253         * device/include/hc08/mc68hc908jkjl.h,
3254         * device/include/hc08/mc68hc908qy.h: fixed comments
3255         * device/include/mcs51/README: updated
3256         * device/include/mcs51/c8051f120.h: added PINRSF
3257         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3258         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3259           amidst code. Also inline is not supported.
3260
3261 2005-04-06 Raphael Neider <rneider AT web.de>
3262
3263         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3264         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3265           callers stack/frame pointers
3266
3267 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3268
3269         * device/include/pic16/usart.h: added, missing in previous commit,
3270         * device/include/pic16/adc.h: fixed typo,
3271         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3272         commit,
3273         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3274         <p18fxxx.inc>
3275         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3276         uninitialized because a bug appears with gplink
3277         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3278         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3279         complains for unrecognised option
3280
3281 2005-04-05 Raphael Neider <rneider AT web.de>
3282
3283         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3284           structs as well (using memcpy)
3285         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3286           on ISRs (GOTO has no label)
3287         * src/pic16/device.h: added OF_OPTIMIZE_DF
3288         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3289           new data flow analysis/optimization
3290         * src/pic16/pcode.c: added (prototypes for and implementation of)
3291           dataflow analysis functions, fixed pCodeInstructions' inCond and
3292           outCond values, made RCALL a branch instruction
3293         * (pic16_unlinkpCode): keep C line if possible
3294         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3295           C line moved if possible
3296         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3297         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3298           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3299         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3300           new flow)
3301         * (pic16_getJumptabpCode): NEW, needed in...
3302         * (LinkFlow): fixed handling of jumptables, calls and conditional
3303           branches
3304         * (pic16_InsertCommentAfter): NEW
3305         * (pic16_pCodeReplace): made verbose and flow preserving
3306         * (AnalyzeFlow): added call to data flow analysis
3307         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3308         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3309         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3310
3311 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3312
3313         * src/SDCCast.c (decorateType): fixed bug #1105626
3314
3315 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3316
3317         * device/include/asm/pic16/features.h,
3318         * pic18f*.h headers,
3319         * device/include/pic16/adc.h,
3320         * device/include/pic16/delay.h,
3321         * device/include/pic16/i2c.h,
3322         * device/include/pic16/malloc.h,
3323         * device/include/pic16/stdio.h,
3324         * device/include/pic16/stdlib.h,
3325         * device/include/pic16/string.h,
3326         * device/lib/pic16/libc/stdio/printf_tiny.c,
3327         * device/lib/pic16/libc/stdio/printf_small.c,
3328         * device/lib/pic16/libc/stdio/strmgpsim.c,
3329         * device/lib/pic16/libc/stdio/strmmssp.c,
3330         * device/lib/pic16/libc/stdio/strmusart.c,
3331         * device/lib/pic16/libc/stdio/vfprintf.c,
3332         * device/lib/pic16/libc/stdlib/ltoa.c,
3333         * device/lib/pic16/libc/stdlib/putchar.c,
3334         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3335         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3336         * device/lib/pic16/libc/stdlib/memchrram.c,
3337         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3338         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3339         * device/lib/pic16/libio/adc/adcbusy.c,
3340         * device/lib/pic16/libio/adc/adcread.c,
3341         * device/lib/pic16/libio/adc/adcsetch.c,
3342         * device/lib/pic16/libio/usart/ubaud.c,
3343         * device/lib/pic16/libio/usart/ubusy.c,
3344         * device/lib/pic16/libio/usart/udrdy.c,
3345         * device/lib/pic16/libio/usart/uopen.c,
3346         * device/lib/pic16/libio/usart/uputc.c,
3347         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3348         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3349         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3350         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3351         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3352         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3353         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3354         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3355         specific keywords to double underlined form,
3356         * device/lib/pic16/libc/Makefile.rules,
3357         * device/lib/pic16/libsdcc/Makefile.rules,
3358         * device/lib/pic16/libm/Makefile,
3359         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3360         to compile with C standard set in Makefile.common
3361         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3362         rand.c and crc.c in compilation process,
3363         * device/lib/pic16/libsdcc/int/divuint.c,
3364         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3365         `c' from signed to unsigned,
3366         * device/lib/pic16/startup/crt0.c,
3367         * device/lib/pic16/startup/crt0i.c,
3368         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3369         keywords to double underlined form, bug fixes in _do_cinit function
3370         which prevented the correct initialization of the .idata segment,
3371         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3372         core to enter a infinite loop
3373         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3374
3375 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3376
3377         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3378
3379 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3380
3381         * device/include/Makefile.in: add support for hc08 subdirectory
3382         * device/include/hc08/: new subdirectory
3383         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3384         Lucas Loizaga, thanks!
3385         * device/include/hc08/mc68hc908qy.h,
3386         * device/include/hc08/mc68hc908gp32.h,
3387         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3388         their own directory. Changed internal macro names to use the compiler
3389         reserved namespace. Changed SDCC specific keywords to double
3390         underlined form.
3391         * device/include/math.h,
3392         * device/include/malloc.h,
3393         * device/include/stdarg.h,
3394         * device/include/stdbool.h
3395         * device/include/string.h,
3396         * device/include/tinibios.h,
3397         * device/include/ds400rom.h,
3398         * device/include/8051.h,
3399         * device/include/8052.h,
3400         * device/include/80c51xa.h,
3401         * device/include/at89c55.h,
3402         * device/include/at89S8252.h,
3403         * device/include/at89x51.h,
3404         * device/include/at89x52.h,
3405         * device/include/ds80c390.h,
3406         * device/include/reg764.h,
3407         * device/include/regc515c.h,
3408         * device/include/sab80515.h,
3409         * device/include/mcs51/c8051f000.h,
3410         * device/include/mcs51/c8051f018.h,
3411         * device/include/mcs51/c8051f020.h,
3412         * device/include/mcs51/c8051f040.h,
3413         * device/include/mcs51/c8051f060.h,
3414         * device/include/mcs51/c8051f120.h,
3415         * device/include/mcs51/c8051f300.h,
3416         * device/include/mcs51/c8051f310.h,
3417         * device/include/mcs51/c8051f320.h,
3418         * device/include/mcs51/c8051f330.h,
3419         * device/include/mcs51/c8051f350.h,
3420         * device/include/z180.h: Changed SDCC specific keywords to double
3421         underlined form.
3422
3423 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3424
3425         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3426         18F4455,
3427         * (pic16_assignConfigWordValue): disable testing of configuration
3428         register value with config mask,
3429         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3430         function with port->fun_prefix,
3431         * (genFunction): when generating a naked interrupt function never
3432         create an absolute segment placed in interrupt vector address, place
3433         the actual interrupt function at IVA instead, when an interrupt
3434         function is generated with unspecified interrupt then do not create
3435         the absolute section,
3436         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3437         code for generating a call to generic pointer get/put function with
3438         a call to function pic16_callGenericPointer(),
3439         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3440         the call to the generic pointer get/put functions with prefixing the
3441         function name with port->fun_prefix,
3442         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3443         * src/pic16/main.c (_process_pragma): prefix function with
3444         port->fun_prefix,
3445         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3446         calling assembler, old 18Fxxxx macro is deprecated,
3447         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3448         PC_ASMDIR in while condition,
3449         * (findInstruction): add PC_ASMDIR in while condition,
3450         * (buildCallTree): prefix main with port->fun_prefix,
3451         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3452         identifier for variable with banked access in instructions BTFSS,
3453         BTFSC, BCF, BSF, BTG
3454         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3455         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3456         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3457         perform optimization when enviroment variable NO_REG_OPT is set,
3458         * (insideLRBlock): NEW, return 1 if register is inside an
3459         INF_LOCALREGS block,
3460         * (RemoveRegFromLRBlock): remove a register that is completely
3461         eliminated by register optimization, but it is still left in local
3462         register store/restore in/from stack block,
3463         * (Remove2pcodes): after removing register, check to see if it
3464         should be removed from local register store/restore in/from stack
3465         block,
3466         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3467         DUMMY_READ_VOLATILE,
3468
3469         * device/include/pic16/adc.h: minor prototype modifications and
3470         update,
3471         * device/include/pic16/malloc.h: added GPL notice various
3472         modifications,
3473         * device/include/pic16/stdint.h: NEW, standard header for ints
3474         * device/include/pic16/delay.h: NEW, header for delay functions,
3475         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3476         delay1mtcy,
3477         * device/include/pic16/signal.h: NEW, header providing helper macros
3478         for implementing signal handlers,
3479         * device/include/pic16/stdio.h: added prototypes for functions,
3480         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3481         prototypes for stdin and stdout, added macro PUTCHAR to
3482         automatically implement putchar function prototype,
3483         * device/include/pic16/usart.h: modified and updated USART library,
3484         * device/lib/pic16/libio/adc/,
3485         * device/lib/pic16/libio/i2c: some modifications to improve library
3486         performance,
3487         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3488         family of functions,
3489         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3490         family of functions and other sources,
3491         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3492         of the PIC18Fxx[28] devices,
3493         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3494         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3495         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3496         _do_cinit function, because the previous failed when local variables
3497         where not placed in the same memory bank,
3498         * device/lib/pic16/libsdcc/char/: various modifications to improve
3499         library performance,
3500         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3501         information on the new functions of the c library and more...
3502
3503 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3504
3505         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3506
3507 2005-03-26 Raphael Neider <rneider AT web.de>
3508
3509         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3510           if condition == CARRY)
3511         * (genCmp): adapted to new genSkipc semantics
3512         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3513           on rIfx (genCmp was broken)
3514
3515 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3516
3517         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3518         * src/z80/main.c (_keywords[]),
3519         * src/SDCCglobal.h (struct options),
3520         * src/SDCC.y,
3521         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3522         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3523         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3524         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3525         always available in leading double underscore form. The C99 support is
3526         mostly missing, but it's a start.
3527         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3528         reserved identifier "__data".
3529
3530 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3531
3532         * src/mcs51/peeph.def: fixed bug 1170013
3533
3534 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3535
3536         * device/include/mcs51reg.h: fixed bug 842007
3537
3538 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3539
3540         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3541         last time.
3542
3543 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3544
3545         * src/port.h (struct PORT),
3546         * src/avr/ralloc.c (avr_assignRegisters),
3547         * src/avr/main.c,
3548         * src/ds390/ralloc.c (ds390_assignRegisters),
3549         * src/ds390/main.c,
3550         * src/hc08/ralloc.c (hc08_assignRegisters),
3551         * src/hc08/main.c,
3552         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3553         * src/mcs51/main.c,
3554         * src/pic/ralloc.c (pic14_assignRegisters),
3555         * src/pic/main.c,
3556         * src/pic16/ralloc.c (pic16_assignRegisters),
3557         * src/pic16/main.c,
3558         * src/xa51/ralloc.c (xa51_assignRegisters),
3559         * src/xa51/main.c,
3560         * src/z80/ralloc.c (z80_assignRegisters),
3561         * src/z80/ralloc.h,
3562         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3563         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3564         * src/SDCCcse.h,
3565         * src/SDCCdflow.c (computeDataFlow),
3566         * src/SDCCdflow.h,
3567         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3568         * src/SDCCloop.h,
3569         * src/SDCCcflow.c (*),
3570         * src/SDCCcflow.h,
3571         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3572         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3573         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3574         immedDom() returning wrong block; probably fixes bug #1160833)
3575
3576 2005-03-20 Borut Razem <borut.razem AT siol.net>
3577
3578         * support/scripts/inc2h.pl: WIN32 port
3579
3580 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3581
3582         * device/lib/makefile.in: added abs.c and labs.c
3583
3584 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3585
3586         * device/include/stdint.h: added
3587         * device/lib/abs.c: added
3588         * device/lib/labs.c: added
3589         * device/include/stdlib.h: added abs() and labs() prototypes
3590         * device/lib/libsdcc.lib: added abs and labs
3591         * device/include/float.h,
3592         * device/lib/_fsmul.c,
3593         * device/lib/printf_fast.c,
3594         * device/lib/printf_tiny.c: updated comments
3595
3596 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3597
3598         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3599         bug #1164313
3600
3601 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3604         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3605
3606 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3607
3608         * device/lib/printf_large.c: removed inline assembly for portability and
3609           readability. Use printf_fast if speed or size are more important.
3610         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3611         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3612
3613 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3614
3615         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3616         prevent compiler warning
3617
3618 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3619
3620         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3621         moved to level 0 and declared as static. Also they are explicit
3622         placed in access bank. This was necessery because some times they
3623         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3624         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3625         optimizations. Currently only compare to unsigned char is implemented,
3626         * src/pic16/gen.c: added fReturnIdx array,
3627         * (struct resolvedIfx) is moved to gen.h and made public,
3628         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3629         * (aopForSym): added an optimization to directly store in stack of
3630         the operand of a SEND iCode,
3631         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3632         but as registers instead (AOP_REG) using the fReturnIdx array,
3633         * (pic16_freeAsmop): remove the freed register from the
3634         _G.sregsAlloc field,
3635         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3636         a compare of 'WREG',
3637         * (pic16_popGetTempRegCond): changed function prototype, now
3638         function takes also a bitVector argument v which holds the current
3639         set of registers that are allocated for stack access by aopForSym,
3640         registers allocated in aopForSym for accessing stack symbols are not
3641         any more part of the functions usedRegs field,
3642         * (genCall): some times aopOp is called for a stack variable to be
3643         send, aopForSym might perform the push, if this is true make sure
3644         that genCall doesn't push the variable twice by testing _G.resDirect,
3645         * (genFunction): changed testing for unspecified interrupt number
3646         from 256 to INTNO_UNSPEC,
3647         * modified selection scheme of frame pointer generation. Previously
3648         if function did use local registers a frame pointer was generated,
3649         now a frame pointer is generated only if function has arguments
3650         (that need PLUSW2 register access), or has stack arguments, or the
3651         compiler is not instructed to omit the frame pointer,
3652         * (genEndFunction): before restoring local registers that were saved
3653         in the function preamble, also restore the registers that *might*
3654         have been allocated for stack access,
3655         * (genRet): removed some old comments,
3656         * (genCmp, the active (RN's) version): added a call to the
3657         pic16_genCmp_special function to perform the compare with a more
3658         robust and optimized way,
3659         * (genInline): a feature has been added in inline code generation,
3660         which allows a wildcard variable substitution when writing inline
3661         assembly. Code is incomplete and experimental therefore undocumented,
3662         * (genCast): changed order of aopOp for result and right to allow
3663         aopForSym to directly load the result if possible,
3664         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3665         perform an optimized compare on some selected special occasions,
3666         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3667         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3668         generate an IVT any more,
3669         * src/pic16/main.c (pic16_optionsTable): added command line option
3670         --optimize-cmp,
3671         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3672         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3673         macros,
3674         * src/pic16/NOTES: Raphael Neider added in list of active developers
3675         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3676         jumptable_end to prevent bug #,
3677         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3678         inCond and outCond fields,
3679         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3680         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3681         turn off register spilling,
3682         * (packRegsForOneUse): synced with other ports' versions although it
3683         is not used currently,
3684         * (pic16_packRegisters): added an optimization while reading
3685         structure bitfields, some registers may be saved (malloc code is
3686         decreased by 80 bytes)
3687
3688 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3689
3690         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3691         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3692         this can be optimized more?
3693
3694 2005-03-10 Raphael Neider <rneider AT web.de>
3695
3696         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3697           genNearPointerGet): (hopefully) fixed access to bitfields via
3698           pointers (p->bitN = x; and x = p->bitN; failed)
3699
3700 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3701
3702         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3703
3704 2005-03-09 Raphael Neider <rneider AT web.de>
3705
3706         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3707
3708 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3709
3710         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3711         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3712           (regTypeNum): set REG_BIT type if necessary
3713         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3714         * support/regression/tests/critical.c: check bug 1144613
3715
3716 2005-03-02 Raphael Neider <rneider AT web.de>
3717
3718         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3719
3720 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3721
3722         * src/avr/ralloc.c (serialRegAssign),
3723         * src/ds390/ralloc.c (serialRegAssign),
3724         * src/hc08/ralloc.c (serialRegAssign),
3725         * src/mcs51/ralloc.c (serialRegAssign),
3726         * src/pic/ralloc.c (serialRegAssign),
3727         * src/pic16/ralloc.c (serialRegAssign),
3728         * src/xa51/ralloc.c (serialRegAssign),
3729         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3730
3731 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3732
3733         * src/SDCCast.c (decorateType): fixed bug 1124787
3734
3735 2005-02-20 Hubert Sack <sack AT digiplan.de>
3736         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3737
3738         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3739         patch #1121755
3740
3741 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3742
3743         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3744         to keep the correct label reference count when adding/removing references
3745         to labels. A peephole file using this is appended to patch #1144962.
3746
3747 2005-02-14 Raphael Neider <rneider AT web.de>
3748
3749         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3750         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3751         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3752           retrievals of result operand's value on assignment
3753
3754 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3755
3756         * device/include/pic16/string.h: modified prototype for memccpy()
3757         to memccpy(void *, void *, char, size_t)
3758         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3759         check whether to omit frame pointer or not,
3760         * (genInline): convert all occurences of "\n" to LF in inline
3761         assembler blocks, this helps formatting the inline text,
3762         * (pic16_loadFSR0): modified prototype,
3763         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3764         removed some 8051 legacy code,
3765         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3766         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3767         before allocating temporary registers in functions,
3768
3769 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3770
3771         * support/regression/tests/bitvars.c: corrected the "fix"
3772
3773 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3774
3775         * support/regression/tests/bitvars.c,
3776         * support/regression/tests/bitwise.c,
3777         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3778
3779 2005-02-10 Raphael Neider <rneider AT web.de>
3780
3781         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3782           different size for Alpha
3783         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3784
3785 2005-02-09 Raphael Neider <rneider AT web.de>
3786
3787         * src/SDCC.lex(doPragma) : save and restore warning options as well
3788           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3789         * have #pragma less_pedantic set the errorlevel to WARNING
3790           (fixes #1117001)
3791         * (cloneOptimize) : fixed wrong malloc's size
3792         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3793           facilitate correct handling of #pragma (save|restore)
3794
3795 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3796
3797         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3798
3799 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3800
3801         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3802
3803 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3804
3805         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3806
3807 2005-02-02 Raphael Neider <rneider AT web.de>
3808
3809         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3810         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3811         * (pic16_storeForReturn): fixed to allow returning function pointers
3812         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3813         * device/include/pic16/{stddef.h,stdbool.h}: added
3814
3815 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3816
3817         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3818
3819 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3820
3821         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3822         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3823          appeared to be required
3824
3825 2005-01-31 Borut Razem <borut.razem AT siol.net>
3826
3827         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3828           include/mcs51 and include/z80 directories to the package
3829
3830 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3831
3832         * src/hc08/gen.c (genFunction): fixed bug #1112752
3833
3834 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3835
3836         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3837
3838 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3839
3840         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3841
3842 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3843
3844         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3845
3846 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3847
3848         * device/include/c8051fxxx.h: removed these 6 files
3849         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3850
3851 2005-01-26 Raphael Neider <rneider AT web.de>
3852
3853         * src/pic16/gen.c (genAssign): fixed assignment from longs
3854           in codespace (were cut to three bytes)
3855         * (genDummyRead): implemented (except for CODESPACE...),
3856           fixed bug #1108575
3857         * src/pic16/glue.c (emitStatistics): beautified
3858         * device/lib/pic16/libm/Makefile: added include path
3859
3860 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3861
3862         * src/z80/gen.c (aopPut): fixed bug #1103902
3863
3864 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3865
3866         * device/lib/expf.c: fixed bug #1095792
3867
3868 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3869
3870         * device/lib/pic16/libm: added Math library sources
3871
3872 2005-01-24 Raphael Neider <rneider AT web.de>
3873
3874         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3875           to enable upcast to pCodeOpReg2 (there is no type tag to
3876           differenciate the two and pic16_popGet2p cast into PCOR2)
3877         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3878           (sizeof(sectNames) changed to sizeof(sectName))
3879           Both patches fix segfaults under MinGW.
3880
3881 2005-01-23 Raphael Neider <rneider AT web.de>
3882
3883         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3884           Safe_[mc]?alloc()'ed variables
3885         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3886           of (byte sized) temporaries (assign them to WREG for now)
3887         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3888           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3889           this might fix SIGSEGVs on MinGW...
3890         * src/SDCCopt.c (killDeadCode): restored original behaviour
3891           (volatile operands might get thrown away though)
3892
3893 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3894
3895         * src/pic16/gen.c: fixed bug #1106975,
3896         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3897         pointer update, INTCON is saved, global interrupts are disabled and
3898         restored after updateing TOS.
3899         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3900         * added function attribute 'shadowregs' to take advantage of shadow
3901         registers,
3902         * added function attribute 'wparam' as an alternative to the wparam
3903         pragma,
3904         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3905         user declares a non-ISR function as 'shadowregs',
3906         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3907
3908 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3909
3910         * .version: bumped version number to 2.4.8
3911         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3912         pic16 port,
3913         * device/lib/pic16/libio/i2c/: I2C module support library,
3914         * device/include/pic16/i2c.h: I2C support library header,
3915         * device/lib/pic16/libc/stdio/: standard IO support sources,
3916         * (printf_small.c): printf_small() source, supports float print,
3917         * (printf_tiny.c): printf_tiny() source, does not support floats,
3918         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3919         enable global optimizations for entire library source, other
3920         Makefiles in the source tree are also modified to reflect this,
3921         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3922         function,
3923         * doc/sdccman.lyx: updated to reflect new changes,
3924         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3925         sym->onStack if-case,
3926         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3927         sbit, idata, _idata, xdata, _xdata,
3928         * added pragma library, to link an external library, (see doc),
3929         * removed command line options, --pomit-config-words, --pomit-ivt,
3930         --pleave-reset-vector,
3931         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3932         when calling assembler to reflect memory model used, also define
3933         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3934         reflect stack model used,
3935         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3936         on stack return NULL,
3937
3938 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3939
3940         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3941           of the operands is volatile. Fixes #1020220
3942
3943 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3944
3945         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3946         * (OptimizeRegUsage): make sure that there is really no other flow where
3947           the first pCode is used
3948
3949 2005-01-22 Raphael Neider <rneider AT web.de>
3950
3951         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3952           to fix #1106967 (pCode->seq are not set up correctly)
3953
3954 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3955
3956         * src/SDCCglue.c (glue): make sure code area is declared before the
3957         static initialization area.
3958
3959 2005-01-21 Raphael Neider <rneider AT web.de>
3960
3961         * device/lib/Makefile.in: fixed test for pic16 install dir
3962         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3963           optimizations
3964         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3965           added --optimize-goto compiler switch and pragma wparam documentation
3966         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3967         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3968           and PRODH closing bug #1071770 (peephole optimizer)
3969
3970 2005-01-19 Raphael Neider <rneider AT web.de>
3971
3972         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3973           cmdLine buffers (used when calling sdcpp...) are large enough
3974           (MAX_PATH=256 truncates arguments leading to system halts when
3975           used in MinGW...)
3976         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3977         * (genUminus): rewritten to for efficiency
3978         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3979           used uninitialized in some cases)
3980         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3981           copy the third byte from the int -- now assumes 0x80 (data memory)
3982         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3983           operands (genAddLit expects the iCode's operands to swapped as
3984           well), fixed leftover bytes (crashed for short left operands)
3985         * (pic16_genMinusDec): performance improvements, removed false
3986           PIC14 emitSKPNCs
3987         * (pic16_genMinus): fixed to cope with differently sized operands
3988         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3989           for --obanksel > 1
3990         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3991         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3992           new banksel optimization
3993         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3994           analysis for temporary registers (segfaults...)
3995         * src/pic16/peeph.def: added rule
3996
3997 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3998
3999         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
4000         which converts a float number to its ASCII representation
4001         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
4002         functions to convert the fractional and integer part of a float to ASCII,
4003         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
4004         realloc.c): added _MALLOC_SPEC to explicit place variables in data
4005         ram
4006         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
4007         _STATMEM macros,
4008         * device/include/pic16/adc.h: added GPL info,
4009         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
4010         a pCodeOp as tested operand,
4011         * (genNearPointerGet): optimized bit testing, does not use
4012         intermediate register for bit value, test directly instead with
4013         BTFSS, BTFSC, works only for single bits,
4014         * (genpic16Code): dump the name of the iCode in the asm,
4015         * src/pic16/ralloc.c (decodeOp): removed static declaration and
4016         renamed to pic16_decodeOp,
4017         * (serialRegAssign): do not allocate a temporary register for iCode
4018         sequences that test a single bit for 1/0
4019
4020 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
4021
4022         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
4023         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
4024         access stack and frame pointers. They are initially assigned to
4025         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
4026         accessing SFRs. Updated all occurences of modification of stack or
4027         frame pointer in gen.c and pcode.c,
4028         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4029         assigning of a literal value to pointers,
4030         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4031         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4032         selected
4033
4034 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4035
4036         * doc/sdccman.lyx: update documentation about stack pragma, added
4037         some info for stack memory models
4038
4039 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4040
4041         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4042
4043 2005-01-08 Raphael Neider <rneider AT web.de>
4044
4045         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4046           udata sections to fix bug #1097823
4047
4048 2005-01-05 Raphael Neider <rneider AT web.de>
4049
4050         * src/pic16/gen.c (genGenericShift): added handling of differently
4051           sized left operand and result
4052
4053 2005-01-04 Raphael Neider <rneider AT web.de>
4054
4055         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4056         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4057           to hold the condition bit)
4058         * added new version of genCmp (old code available via #define)
4059         * added new version of genShiftLeft/genShiftRight in a generic
4060           way, now supports shifting by negative values
4061         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4062           shiftCount (expected by genGenericShift)
4063         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4064         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4065           dump
4066         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4067           is an invalid literal too...)
4068
4069 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4070
4071         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4072         from Raphael Neider,
4073         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4074         for 8-bit literals. This fixes some literal operands which are sign
4075         extended to 16-bits ints when instruction needs only 8-bits.
4076
4077 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4078
4079         * device/lib/logf.c: added mcs51 assembly version
4080         * device/lib/expf.c: added mcs51 assembly version
4081         * device/lib/_logexpf.c: new shared asm code for expf and logf
4082         * device/include/math.h: add defines for assembly math library
4083         * device/lib/Makefile.in: build new _logexpf.c
4084         * device/lib/libfloat.lib: use new _logexpf.c
4085
4086 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4087
4088         * src/pic/device.c
4089         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4090           device types which have less than 0x7f registers.
4091
4092 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4093
4094         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4095
4096 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4097
4098         * device/lib/printf_fast.c: only build on supported arch.
4099         * device/lib/printf_tiny.c: only build on supported arch.
4100         * device/lib/printf_fast_f.c: only build if asm float lib
4101         * device/lib/_fsget1arg.c: only build if asm float lib
4102         * device/lib/_fsget2args.c: only build if asm float lib
4103         * device/lib/_fsnormalize.c: only build if asm float lib
4104         * device/lib/_fsreturnval.c: only build if asm float lib
4105         * device/lib/_fsrshift.c: only build if asm float lib
4106         * device/lib/_fsswapargs.c: only build if asm float lib
4107         * device/include/stdio.h: don't provide print_fast,
4108           print_fast_f, print_tiny prototypes if --xstack used
4109
4110 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4111
4112         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4113         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4114           to the SOURCES
4115
4116 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4117
4118         * device/lib/printf_fast_f.c: same as printf_fast, but
4119           with floating point enabled
4120         * device/lib/printf_fast.c: minor tweaks
4121         * device/include/stdio.h: add printf_fast_f
4122
4123 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4124
4125         * src/SDCCmain.c: make --float-reent default for mcs51
4126         * device/lib/_fsadd.c: added mcs51 assembly version
4127         * device/lib/_fssub.c: added mcs51 assembly version
4128         * device/lib/_fsmul.c: added mcs51 assembly version
4129         * device/lib/_fsdiv.c: added mcs51 assembly version
4130         * device/lib/_fseq.c: added mcs51 assembly version
4131         * device/lib/_fsneq.c: added mcs51 assembly version
4132         * device/lib/_fsgt.c: added mcs51 assembly version
4133         * device/lib/_fslt.c: added mcs51 assembly version
4134         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4135         * device/lib/Makefile.in: add _fscmp to build
4136         * device/lib/libfloat.lib: add _fscmp to build
4137
4138 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4139
4140         * device/lib/_fs2slong.c: added mcs51 assembly version
4141         * device/lib/_fs2sint.c: added mcs51 assembly version
4142         * device/lib/_fs2schar.c: added mcs51 assembly version
4143         * device/lib/_fs2ulong.c: added mcs51 assembly version
4144         * device/lib/_fs2uint.c: added mcs51 assembly version
4145         * device/lib/_fs2uchar.c: added mcs51 assembly version
4146         * device/lib/_slong2fs.c: added mcs51 assembly version
4147         * device/lib/_sint2fs.c: added mcs51 assembly version
4148         * device/lib/_schar2fs.c: added mcs51 assembly version
4149         * device/lib/_ulong2fs.c: added mcs51 assembly version
4150         * device/lib/_uint2fs.c: added mcs51 assembly version
4151         * device/lib/_uchar2fs.c: added mcs51 assembly version
4152         * device/include/float.h: added #define to select asm vs c
4153
4154 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4155
4156         * device/lib/printf_fast.c: improvements to float output
4157         * device/include/float.h: add defines for assembly float library
4158         * device/lib/_fsget1arg.c: receive 1 float arg
4159         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4160         * device/lib/_fsnormalize.c: normalize a float
4161         * device/lib/_fsreturnval.c: return float, various helper routines
4162         * device/lib/_fsrshift.c: right shift a float's mantissa
4163         * device/lib/_fsswapargs.c: swap 2 floats
4164         * device/lib/Makefile.in: build these 6 new files for mcs51
4165         * device/lib/libfloat.lib: add these 6 files to the library
4166
4167 2004-12-26 Borut Razem <borut.razem AT siol.net>
4168
4169         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4170           built by gcc 3.4.2
4171
4172 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4173
4174         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4175           and fully reentrant and register bank neutral.
4176         * device/lib/printf_fast.c: added float (not enabled by default),
4177           added compact/slower integer (also not enabled by default),
4178           improved size/speed of fast integer code, other minor changes
4179         * device/include/stdio.h, device/lib/Makefile.in,
4180           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4181
4182 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4183
4184         * src/pic16/pcode.c: declaring variables other than at the start of a
4185           block is not supported in C by VC6.
4186
4187 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4188
4189         * applied a previous patch from Raphael Neider that wasn't included
4190         in the previous commits, which fixes infinite loops within jumptable
4191         improvements,
4192         * made some fixes that previous patches introduced
4193
4194 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4195
4196         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4197         that fixes an issue with AOP_PCODE asmop's offset,
4198         * (pic16_popCopyReg): update instance field too,
4199         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4200         function of pic port,
4201         * (genCmp, genAnd, genAssign),
4202         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4203
4204 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4205
4206         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4207         variables initial values to idata section,
4208         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4209         variables in some functions. This utilizes parmBytes field of iCode
4210         structure to hold the offset of the variable in stack. (might be
4211         able to use the stack field too?)
4212         * applied patch from Raphael Neider # ### , # ###
4213         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4214         variable initial values in idata section,
4215         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4216         for static variables with initial value
4217         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4218         applied fix in while loop from Raphael Neider.
4219
4220 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4221
4222         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4223         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4224         * src/ds390/ralloc.c (serialRegAssign): spill bits
4225         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4226         * support/Util/SDCCerr.c,
4227         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4228         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4229         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4230
4231 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4232
4233         * device/include/sdcc-lib.h: inserted LGPL, added includes
4234           asm/ds390/features.h and asm/mcs51/features.h
4235         * device/include/asm/default/features.h,
4236         * device/include/asm/gbz80/features.h,
4237         * device/include/asm/z80/features.h: added empty _AUTOMEM
4238           and _STATMEM
4239         * device/include/asm/ds390/features.h,
4240         * device/include/asm/mcs51/features.h: added files with defines for
4241           _AUTOMEM and _STATMEM indicating automatic and static storage class
4242         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4243         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4244         * src/SDCCicode.c (geniCodeCast),
4245         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4246         * src/SDCCloop.c (loopInduction): removed unused variable lr
4247         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4248           to convertToFcall to include char modulo (RFE 1065037), added check
4249           if left operand is unsigned and use abs of literal value
4250         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4251           as it doesn't work after conversion from peephole.def to peephole.rul
4252         * src/mcs51/gen.c (toBoolean): added check for size,
4253           (genModOneByte): optimized code for signed char modulo a literal
4254           power of 2 (thanks to Hubert Sack),
4255           (genRRC): removed unnecessary "clr c",
4256           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4257         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4258           jump optimization,
4259           swapped rules 256.c and 256.d,
4260           extended 256.d by using new multiple checks (thanks Erik),
4261           added rules 256.e and 256.f,
4262           updated rule 261.a and 261.b to new generated code
4263         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4264
4265 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4266
4267         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4268           induction related bugs, including first part of bug #1074377
4269
4270 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4271
4272         * applied patch from bug-report #1076292,
4273         * applied patches for genAnd and Goto-optimizations for Raphael
4274         Neider,
4275         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4276         dump a less iCode information,
4277         * src/pic16/device.h (pic16_options_t): added field debgen,
4278         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4279         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4280         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4281         puclic,
4282         * (various functions): added macros FENTRY and FENTRY2 to functions,
4283         to emit function prologue,
4284         * (various functions): fixed indentation,
4285         * (genNearPointerGet): fixed loading of FSR0,
4286         * (genPackBits): applied patch from Raphael Neider to fix updating
4287         of FSR0 and touching only the modified bits,
4288         * src/pic16/genarith.c (various functions): added macros FENTRY to
4289         emit function prologue in comments,
4290         * src/pic16/pcode.h: added functions debugf2, debugf3,
4291         * src/pic16/ralloc.c: partial fix for packForPush caused
4292         segmentation fault,
4293
4294 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4295
4296         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4297           <stsp AT users.sourceforge.net> with reversed byte order
4298         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4299
4300 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4301
4302         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4303           bug #1074377
4304         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4305         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4306
4307 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4308
4309         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4310
4311 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4312
4313         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4314           conditions,
4315           (setFromConditionArgs): friendly operand parser for peephole rules,
4316           (operandBaseName, operandsNotRelated): new peephole condition
4317           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4318           architecture specific register naming into account, handles n-way
4319           comparisons, and supports quoted literals
4320         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4321
4322 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4323
4324         * src/mcs51/peeph.def: fixed bug #1076940
4325
4326 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4327
4328         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4329
4330 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4331
4332         Adding support for replacing ljmps with sjmps in jumptables
4333         generated for switch statements. For now you need to set the
4334         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4335         Now 4 algorithms for mcs51 jumptable generation are used:
4336         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4337         addresses loaded pc-relative for up to 112 cases and stack-pushing
4338         target addresses loaded with offset from dptr for up to 256 cases.
4339
4340         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4341         * src/mcs51/main.c: adapted constants for switch table generation
4342         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4343
4344 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4345
4346         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4347         * support/regression/tests/bug1057979.c: added test for bug 1073386
4348
4349 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4350
4351         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4352         compilers
4353
4354 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4355
4356         * src/pic16/device.h,
4357         * src/pic16/genarith.c,
4358         * src/pic16/glue.c,
4359         * src/pic16/main.c,
4360         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4361
4362 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4363
4364         Large cummulative patch for pic16 port.
4365         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4366         to call when a stack overflow occurs,
4367         * (malloc.h): added CVS Id tag,
4368         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4369         variable,
4370         * added libc directory. The current version of LibC contains string
4371         functions, ctype functions and macros and some functions of the
4372         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4373         be extensively tested in the future. Standard disclaimer here.
4374         Library is not automatically build yet. But one can build it by
4375         invoking 'make' inside the libc directory.
4376         * added ADC library under libio. Preliminary version yet.
4377
4378         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4379         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4380         aopForRemat() now and not by pic16_aopOp(),
4381         * (pic16_popGetTempReg): removed warning messgae when allocating
4382         temporary registers, its a buggy feature and will be removed,
4383         * (pic16_popGet): set register instance field in AOP_CRY,
4384         * (pic16_outBitC): fixed for results in size greater than 1,
4385         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4386         * (pic16_storeForReturn): optimized return of 0,
4387         * (genCmp): experimental code for new genCmp which uses PIC18's
4388         special compare&skip instructions. Initial tests fail some times
4389         with variables grater than 1 byte in size, so new code is disabled,
4390         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4391         a single bit,
4392         * (genCast): began a fix to optimize the casting of a bit to another
4393         bit, now assigning a bitfield to another bitfield will fail, sorry,
4394         * src/pic16/main.c: disabled the use of lr-support feature,
4395         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4396         * added some function prototypes, added function _debugf prototype,
4397         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4398         bits with offset (case PO_GPR_BIT),
4399         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4400         command line,
4401         * (isBankInstruction): modified to return 0 for no banking instruction,
4402         and 1 for banking instruction,
4403         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4404         caused stop processing pCodes after a inline assembly block,
4405         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4406         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4407         registers when it shouldn't,
4408         * src/pic16/ralloc.c (allocReg): add preliminary support for
4409         supporting a limited set of temporary registers,
4410
4411 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4412
4413         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4414           genDataPointerSet): ensure assignments always copy in MSB to LSB
4415           order,
4416           (loadRegFromAop): recognize CLRH optimization,
4417           (genFunction): optimize RECEIVE iCodes in reentrant functions
4418
4419 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4420
4421         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4422           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4423           selected.
4424         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4425         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4426           contiguous with data
4427
4428 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4429
4430         * device/lib/_gptrget.c (_gptrget),
4431         * device/lib/_gptrgetc.c (_gptrgetc),
4432         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4433           instead of sjmp to ret
4434         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4435           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4436
4437 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4438
4439         * .version: bumped version to 2.4.7
4440         * device/lib/_gptrget.c (_gptrget): is now _naked
4441         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4442         * device/lib/_gptrput.c (_gptrput): is now _naked
4443         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4444           (createFunction): fixed xstack
4445         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4446         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4447           or bit either,
4448           (geniCodeCritical): store original interrupt state in an iTemp bit
4449           var unless stack-auto
4450         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4451         * src/SDCCmain.c (setIncludePath): added include/target to search path
4452         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4453         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4454           prototype,
4455           (processFuncArgs): put bit vars in bit area
4456         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4457           unsaveRBank): fixed xstack,
4458           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4459           (genFunction, genEndFunction): fixed xstack,
4460           (genAssign): optimization don't walk backwards through mem
4461         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4462         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4463         * support/regression/Makefile: also make library (for stack-auto) when
4464           making "all" and added "test-mcs51-xstack-auto"
4465         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4466         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4467         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4468         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4469         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4470           make-library by MAKE_LIBRARY
4471         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4472           regression tests for xstack
4473         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4474         * support/regression/tests/critical.c: test for critical on mcs51
4475
4476 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4477
4478         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4479           built version of sdcc instead of installed version
4480
4481 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4482
4483         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4484         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4485           vprintf.c now
4486         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4487         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4488           WARNING: remove device/lib/build/z80/printf.o by hand when
4489           updating from previous build!
4490         * device/lib/z80/printf.c: updated comment
4491         * support/regression/tests/bug1057979.c: test all ports now
4492         * support/regression/tests/bug1065458.c: file added
4493
4494 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4495
4496         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4497           *_start and *_end symbols for static functions
4498
4499 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4500
4501         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4502           and search crt0.o in all library paths,
4503           (setIncludePath): proper handling of --nostdinc,
4504           (setLibPath): proper handling of --nostdlib
4505         * support/regression/Makefile,
4506         * support/regression/ports/ds390/spec.mk,
4507         * support/regression/ports/gbz80/spec.mk,
4508         * support/regression/ports/hc08/spec.mk,
4509         * support/regression/ports/mcs51/spec.mk,
4510         * support/regression/ports/mcs51-large/spec.mk,
4511         * support/regression/ports/mcs51-stack-auto/spec.mk,
4512         * support/regression/ports/z80/spec.mk: use include and lib files from
4513           built version of sdcc instead of installed version
4514         * doc/sdccman.lyx: fixed typo in --nostdinc
4515
4516 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4517
4518         * src/pic/pcode.c,
4519         * src/pic/device.c,
4520         * src/pic/ralloc.c,
4521         * src/pic/gen.c : added support to generate code for struct bit fields.
4522
4523 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4524
4525         * as/xa51/xa_version.h,
4526         * device/include/errno.h,
4527         * device/include/regc515c.h,
4528         * device/lib/_itoa.c,
4529         * device/lib/_ltoa.c,
4530         * device/lib/ser_ir_cts_rts.c,
4531         * sim/ucsim/xa.src/glob.cc,
4532         * sim/ucsim/xa.src/inst_gen.cc,
4533         * sim/ucsim/xa.src/xa_bit.cc,
4534         * sim/ucsim/xa.src/xa_sfr.cc,
4535         * sim/ucsim/z80.src/inst_dd.cc,
4536         * sim/ucsim/z80.src/inst_fdcb.cc,
4537         * support/scripts/keil2sdcc.pl,
4538         * src/pic16/pic16.dsp,
4539         * src/pic16/pic16a.dsp: corrected cvs line endings
4540         * device/lib/printf_large.c: fixed bug 1057979
4541         * src/pic16/gen.c: fixed non-C standard code
4542         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4543         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4544         * support/regression/ports/mcs51/support.c: reload T1 asap
4545         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4546           pdata use and clear idata startup behaviour
4547         * support/regression/tests/bug1057979.c: added
4548
4549 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4550
4551         * device/examples/ds390/ow390/ad26.h,
4552         * device/examples/ds390/ow390/cnt1d.h,
4553         * device/examples/ds390/ow390/crcutil.c,
4554         * device/examples/ds390/ow390/ownet.h,
4555         * device/examples/ds390/ow390/owsesu.c,
4556         * device/examples/ds390/ow390/swt12.h,
4557         * device/examples/ds390/ow390/swtoper.c,
4558         * device/examples/ds390/ow390/temp10.h,
4559         * device/examples/ds390/ow390/thermodl.c,
4560         * device/examples/ds390/tinitalk/tinitalk.dsp,
4561         * device/examples/ds390/tinitalk/tinitalk.dsw,
4562         * device/examples/mcs51/clock/hw.h,
4563         * device/examples/mcs51/simple2/go.bat,
4564         * device/examples/serialcomm/windows/serial.h,
4565         * device/examples/xa51/dummy.c,
4566         * device/examples/xa51/hello.c,
4567         * device/include/80c51xa.h,
4568         * device/include/at89x051.h: corrected cvs line endings
4569
4570 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4571
4572         * src/pic16/main.c (options): added command line --gstack, to trace
4573         stack over/under flows,
4574         * added pragma 'wparam' to allow passing first byte of function
4575         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4576         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4577         call to __gstack_test function and sets up the symbol as extern,
4578         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4579         * popaop): added call to pic16_testStackOverflow,
4580         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4581         wparamList list,
4582         * (genCall, genPcall): now all parameters are passed via stack
4583         except in functions that are pass to wparam pragma in which WREG is
4584         used too,
4585         * (genPcall): REENTRANT flag is checked to see if variable prototype
4586         contains reentrant keyword, don't call a non-reentrant function, via
4587         a reentrant function pointer or vice versa, functions are never
4588         passed via WREG,
4589         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4590         D.Winkler,
4591         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4592         SIGSEGV when accessing a NULL register stucture,
4593         * (pic16_printGPointerType): modified to handle UPPER modifier for
4594         function initializers, changed prototype of function to simpler one,
4595         * (pic16_printIvalFuncPtr): check to see if function is already
4596         added in externs list,
4597         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4598         optimized a move from W to SFR with a move to the same register
4599         later after a CALL,
4600         * device/lib/pic16/debug: NEW directory, contains debug features
4601         which are enabled when linking with libdebug.lib, currently command
4602         line option --gstack enables stack pointer tracing for over/under
4603         flow, corresponding sources are in debug/gstack
4604
4605 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4606
4607         * doc/sdccman.lyx: updated SDCC version,
4608         * (PIC16 port): update list of command line options,
4609         * src/pic16/device.h (structure pic16_options_t): added field gstack
4610         to enable stack overflow tracing on push/pops,
4611         * src/pic16/device.c (statistics structure): added statistics
4612         structure,
4613         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4614         pic16_dump_int_registers): increase statistics counters for each
4615         * variable which is encountered
4616         * (pic16_dump_usection): emit each .udata variable to its own udata
4617         section,
4618         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4619         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4620         parameters via stack, otherwise use old scheme,
4621         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4622         assembler output file,
4623         * src/pic16/main.c: added command line options --gstack to enable
4624         push/pop tracing for stack overflow,
4625         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4626         instructions): added size of each instruction,
4627         * (pic16_countInstruction): estimate size of instructions in
4628         the_pFile list, inline assembly blocks are not counted,
4629         * (pic16_FixRegisterBanking): trace previous register usage, when
4630         banksel optimizations is greater than 0, don't emit a redudant
4631         banksel directive,
4632
4633 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4634
4635         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4636         * src/pic16/ralloc.c : applied same fix for pic16.
4637         * src/pic/gen.c : tidied it up a little.
4638
4639 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4640
4641         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4642         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4643
4644 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4645
4646         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4647
4648 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4649
4650         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4651         non-reentrant function __modsint in the interrupt function (thus
4652         corrupting math operations during serial I/O)
4653         * device/lib/ser_ir.c: as above, changed buffersize
4654         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4655         256.c,d for zeroing
4656         * doc/Makefile: added option -t for rsync
4657
4658 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4659
4660         * src/SDCCast.h (struct ast),
4661         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4662
4663 2004-10-20 Borut Razem <borut.razem AT siol.net>
4664
4665         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4666         package
4667
4668 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4669
4670         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4671         makefile targets,
4672         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4673         support functions to replace long sequences of MOVFF's from access
4674         bank registers to stack and vice versa,
4675         * src/pic16/device.h: added new field opt_flags, where optimization
4676         flags can be set to enable certain features,
4677         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4678         * pBlock, (genFunction, genEndFunction): surroung loop for
4679         saving/loading used registers in stack with PC_INFO pCodes,
4680         INF_LREGS. Code in between can then be optimized by pCode optimizer
4681         to support function calls,
4682         * (genDataPointerSet): fixed bug which loaded float fields in
4683         structures with corrupt data,
4684         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4685         in a standard way debug info on stderr. Feature used for developing
4686         and debugging only,
4687         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4688         obsolete chunks of code,
4689         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4690         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4691         * pic16/src/pcode.c (pic16_newpCodeInfo,
4692         * (pic16_newpCodeOpLocalRegs),
4693         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4694         feature,
4695         * (pic16_pCodeConstString): printing of the initial value of a
4696         symbol as a comment is inhibited since parsing was already done by
4697         copyStr and output is corrupt,
4698         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4699
4700 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4701
4702         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4703
4704 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4705
4706         * as/mcs51/lkarea.c: removed old K&R style,
4707           (lnksect): changed check on boundary error,
4708           (lnksect2): changed check on boundary error,
4709           (lnksect2): extend XSTK to end of page if size = 1
4710         * as/mcs51/lkmain.c: removed old K&R style,
4711           (Areas51): create l_IRAM symbol
4712         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4713         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4714           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4715         * device/lib/_mullong.c: added version to be compiled with xstack
4716         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4717         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4718         * device/lib/mcs51/crtxstack.asm: fixed comment
4719         * src/SDCCglue.c: maxInterrupts defaults to 0,
4720           (emitMaps): added pdata,
4721           (createInterruptVect): (re)moved default,
4722           (glue): added pdata,
4723           (glue): moved __start__xstack to XSTK with default size 1
4724         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4725           and options.float_rent when options.stackAuto is set,
4726           (linkEdit): only write XDATA_NAME if provided on command line
4727         * src/SDCCmem.h,
4728         * src/SDCCmem.c: added pdata
4729         * src/port.h: added pdata_name to PORT
4730         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4731           (saveRegisters, unsaveRegisters): removed usage of B,
4732           (genMinus): fixed accumulator clash,
4733           (genJumpTab): added comment, this needs another look
4734         * src/mcs51/gen.c: added check for "B in use" paranoia,
4735           added pushB() and popB()
4736         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4737           chance
4738         * src/avr/main.c,
4739         * src/ds390/main.c,
4740         * src/hc08/main.c,
4741         * src/mcs51/main.c,
4742         * src/pic/main.c,
4743         * src/pic16/main.c,
4744         * src/xa51/main.c,
4745         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4746           added PSEG (PAG,XDATA) or NULL to port specifier
4747         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4748         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4749           (_mcs51_genInitStartup): removed __start__xstack equ,
4750           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4751         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4752         * src/z80/gen.c (_rleAppend): fixed warnings
4753         * support/regression/tests/zeropad.c: added pdata test
4754         * .version: bumped to 2.4.6
4755
4756 2004-10-17 Borut Razem <borut.razem AT siol.net>
4757
4758         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4759         as a part of nightly build
4760
4761 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4762
4763         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4764         WREG holds the first byte function parameters,
4765         * (aopForSym): take special case for symbols which are in FARSPACE
4766         but in CODESPACE too,
4767         * (assignResultValue): modified to take into account _G.useWreg,
4768         * (genCall): don't use wreg for parameter passing when function is
4769         declared as reentrant, too, added optimization INCF to stack
4770         pointer when stack parameter count is 1,
4771         * (genFunction, genEndFunction): refurnished and fixed to not using
4772         wreg for passing parameters when function has varargs or is
4773         reentrant, fixed bug with symbol name compare for generating
4774         functions in absolute address,
4775         * (pic16_storeForReturn): refurnished,
4776         * (genCmp): began writing a new version of the function, not ready
4777         yet, therefore it is disabled,
4778         * (genAssign): do not read code memory when assigning a function to
4779         a pointer function,
4780         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4781         array of characters, not pointer,
4782         * (pic16initialComments): in debug mode emit an .ident directive for
4783         the assembler,
4784         * (_process_pragma): emit a new warning type (internal to pic16)
4785         when setting stack to default length, emit a similar warning when
4786         placing a function at absolute address and address is not word aligned
4787         * (_pic16_parseOptions): added 'return TRUE' statement,
4788         * (_pic16_linkEdit): if compiling a source, then add the source's
4789         file object, first in the list of objects to link,
4790
4791 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4792
4793         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4794         * src/pic/main.c : removed VC warning.
4795         * src/pic/gen.c : changed comment.
4796
4797 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4798
4799         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4800         reference to a deprecated symbol _GPTRREG was causing failure to
4801         link. Thanks G. M. Gallant for the info.
4802
4803 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4804
4805         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4806         comments for Bugs item #954788.
4807
4808 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4809
4810         * src/pic16/device.c (pic16_dump_gsection,
4811         * pic16_groupRegistersInSection): handle symbols declared to be in
4812         access bank differently,
4813         * src/pic16/gen.c (struct _G): added field resDirect,
4814         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4815         send values read from stack directly to result and don't allocate
4816         temporary values,
4817         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4818         same registers,
4819         * (pic16_sameRegsOfs): NEW,
4820         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4821         free because they were not allocated from temporary pool,
4822         * pic16_popRegFromString): workaround to fix a problem with
4823         allocating variables twice or never,
4824         * (genGenPointerGet): using PRODL instead of FSR0H,
4825         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4826         instead of FSR0H,
4827         * (genAssign): take advantage of the _G.resDirect flag,
4828         * (genCast): around line 11844, use mov2f instead of directly
4829         MOVFF'ing between operands to account for literal values,
4830         * src/pic16/genutils.c: some new debug functions for gpsim have been
4831         added,
4832         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4833         float with integer part only,
4834         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4835         place variables in access bank
4836         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4837         updated sources to reflect recent changes in gen.c
4838
4839 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4840
4841         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4842         sources that searched for headers in installation path, now the
4843         device/include/pic16 is used,
4844         * src/pic16/glue.c (pic16glue),
4845         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4846         .line directives if not in debug mode, this suppresses assembler's
4847         warnings for ignored directives
4848
4849 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4850
4851         * src/port.h: made reset_regparms prototype void parameter explicit.
4852         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4853         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4854         * doc/sdccman.lyx: documented warning disabling and how to use
4855           printf_large to make it print floats.
4856         * device/include/stdbool.h: NEW
4857         * device/lib/_atof.c,
4858         * device/lib/_divuint.c,
4859         * device/lib/_divulong.c,
4860         * device/lib/expf.c,
4861         * device/lib/printf_large.c,
4862         * device/lib/sincosf.c,
4863         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4864         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4865           a completely reentrant lib.
4866
4867 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4868
4869         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4870         * device/include/pic16/stdio.h: fixed bug with colon
4871
4872 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4873
4874         * device/include/pic16/stdio.h,
4875         * device/include/pic16/stdlib.h,
4876         * device/include/pic16/math.h: NEW
4877         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4878         declared as _naked to reduce overhead
4879         * device/lib/Makefile.in (target port-specific-objects-pic16):
4880         changed * to *.* so to ignore the CVS directory,
4881         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4882         stacked variables back in stack,
4883         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4884         corruption
4885
4886 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4887
4888         * .version: bumped version number to 2.4.5
4889         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4890         * support/Util/SDCCerr.c (messages structure): added entry for
4891         W_POSSBUG2
4892
4893         Large cumulative patch for pic16 port and libraries.
4894         * device/include/pic16/sdcc-lib.h,
4895         * device/include/pic16/stdarg.h,
4896         * device/include/asm/pic16/features.h,
4897         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4898         * device/include/pic16/float.h: changes reentrant keyword with
4899         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4900         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4901         updated target build-libraries to include objects from gptr,
4902         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4903         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4904         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4905         all function headings,
4906         * src/SDCCmain.c: added global parameter userIncDirsSet,
4907         * (parseCmdLine): when option -I is encountered add directory to
4908         userIncDirsSet too,
4909         * src/version.awk: added space between control and long,
4910         * src/pic16/NOTES: added some notes for the port,
4911         * src/pic16/gen.c: added prototype for mov2fp function,
4912         * (fReturnpic16[]): properly named return value registers,
4913         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4914         * (aopForSym): added code to handle symbols with onStack flag set,
4915         symbols onStack are allocated PTRSIZE bytes,
4916         * (aopFreeAsmop): handles special case where asmops are stack objects,
4917         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4918         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4919         added argument lock to trace flaws in allocating temporary registers
4920         when developing port,
4921         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4922         * (pic16_popRegFromString): reenabled allocating a direct register
4923         from string,
4924         * (assignResultValue): various beautifications,
4925         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4926         referenced function argument,
4927         * (genIpush): reenabled to allow stacked arguments, handles only
4928         ic->parmPush iCodes,
4929         * (genCall, genPcall): major changes to allow for variable argument
4930         functions, fixed a bug with falsely restoring stack pointer after
4931         returning from call,
4932         * (genFunction): pending code for critical function,
4933         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4934         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4935         * (genNearPointerGet): fixed bug with indirect reading, was always
4936         reading from INDF0
4937         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4938         pointers,
4939         * (genAddrOf): rewrote code to take address of a stacked function parameter
4940         * (genCast): fixed casting to generic pointer type,
4941         * src/pic16/gen.h: added AOP_STA,
4942         * (struct asmop): added field stk,
4943         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4944         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4945         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4946         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4947         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4948         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4949         generic pointers,
4950         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4951         and library paths,
4952         * (pic16_port structure): generic pointer size is set to 3,
4953         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4954         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4955         compiler warning,
4956         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4957         operand is an iTemp,
4958
4959 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4960
4961         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4962         * debugger/mcs51/simi.c: addapt new syntax of s51
4963
4964 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4965
4966         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4967         * src/pic16/pcode.c: commented out some calls to free() in order to
4968         fix bug #989576,
4969
4970 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4971
4972         * src/SDCCicode.h,
4973         * src/SDCCicode.c (isiCodeInFunctionCall),
4974         * src/avr/ralloc.c (selectSpil),
4975         * src/pic/ralloc.c (selectSpil),
4976         * src/pic16/ralloc.c (selectSpil),
4977         * src/ds390/ralloc.c (selectSpil),
4978         * src/hc08/ralloc.c (selectSpil),
4979         * src/xa51/ralloc.c (selectSpil),
4980         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4981         stack in the middle of a function call sequence (fixes bug #1020268)
4982         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4983         costs associated with the minimum switch case.
4984
4985 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4986
4987         * src/SDCC.lex: fixed bug #1030549
4988
4989 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4990
4991         * src/SDCCcse.h (struct cseDef),
4992         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4993         over a function call if the CSE is derived from a symbol whose
4994         address has been taken (fixes bug #1029883)
4995         * support/regression/tests/bug-1029883: a new regression test for
4996         this bug
4997
4998 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4999
5000         * src/hc08/gen.c (emitinline): fixed bug #1029778
5001         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
5002         to a cast object is no longer a syntax error ("fixes" bug #1030006,
5003         and starts toward RFE #905167)
5004
5005 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
5006
5007         * src/pic16/gen.c (mov2f): New function to move an operand to
5008         another without considering if it is a literal or a register,
5009         * (pic16_sameRegs): don't check if they are both AOP_REG,
5010         * (AccRsh): removed andmask=0 lines,
5011         * (genLeftShift): duplicated to be improved in future versions,
5012         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
5013         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
5014         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
5015         * (pic16initMnemonics): added initialization for POC_INFSNZW,
5016         * (insertBankSwitch): fixed inserting banksel directives algorithm
5017         for instructions that follow a skip instruction, this fixes a report
5018         for broken subtraction code generation,
5019         * src/pic16/ralloc.c (deassignLRs): do not free register if current
5020         iCode is a left op, just in case result and right share the same
5021         registers
5022
5023 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5024
5025         * src/hc08/main.c,
5026         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5027         preservation of HX
5028         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5029         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5030         on 2004-09-12; it was buggy
5031
5032 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5033
5034         * src/SDCCsymt.h: removed RESULT_CHECK
5035         * src/SDCCast.c,
5036         * src/SDCCglue.c,
5037         * src/SDCCval.c,
5038         * src/pic/glue.c,
5039         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5040
5041 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5042
5043         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5044         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5045         configuration values no more rejected by compiler, they are assigned
5046         to configuration registers with a warning message instead,
5047         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5048         the for-loop so last conf register is emitted too,
5049         * (_pic16_initPaths): link library libsdcc.lib by default,
5050         * (_hasNativeMulFor): modified test for multiplication according to
5051         Raphael Neider's remarks. Integer multiplication is also done with
5052         support functions,
5053         * device/include/pic16/pic18fregs.h: corrected type error in while
5054         testing and including 18f6720 header file
5055
5056 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5057
5058         * src/pic16/device.h (pic16_options): removed field use_crt,
5059         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5060         until an optimization to handle single bits is added,
5061         * (pic16_loadFSR0): moved before genUnpackBits,
5062         * (genAnd): some white lines removed,
5063         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5064         leave_reset flags in pic16_options when using crt modules,
5065
5066 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5067
5068         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5069           for bugs 898889 & 979599. Also used some safer print instructions.
5070
5071 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5072
5073         * src/pic16/device.h (pic16_options_t): added field use_crt,
5074         crt_name, no_crt,
5075         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5076         catch a probable future bug,
5077         * src/pic16/gen.c: aopIdx function commented out,
5078         * (genAssign): commented out old code which used aopIdx,
5079         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5080         code, added if conditionals to take into account the --use-crt
5081         command line options,
5082         * src/pic16/main.c (pic16_optionsTable): added new command line
5083         options, --use-crt= and --no-crt,
5084         * (_pic16_linkEdit): now the proper crt object is added in the
5085         linker command line except than when --no-crt is specified,
5086         * src/pic16/pcode.c,
5087         * src/pic16/pcode.h: added some structures and functions for a new
5088         optimization scheme to compansate for instruction overhead between
5089         same iCodes, this scheme is currently under development and is not
5090         working in any way,
5091         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5092         to && operator,
5093         * device/lib/pic16/startup/crt0i.c,
5094         * device/lib/pic16/startup/crt0iz.c: added global char variable
5095         __uflags to force the generation of an idata section
5096
5097 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5098
5099         * doc/Makefile,
5100         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5101         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5102
5103 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5104
5105         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5106         Frieder) and clarified the default code optimization mode
5107
5108 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5109
5110         * src/SDCC.lex (doPragma, process_pragma),
5111         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5112         "opt_code_size", and "opt_code_balanced"
5113         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5114         regrouped options by category, added support for category headers
5115         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5116         and "--opt-code-size"
5117         * doc/sdccman.lyx: documented these new options and pragmas
5118         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5119         preference into account
5120
5121 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5122
5123         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5124           geniCodePreDec): Fixed bug 904237 by generating a warning
5125         * src/SDCCerr.h,
5126         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5127
5128 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5129
5130         * src/pic/device.c : When no max ram set validate full memory range.
5131         * src/pic/pcode.c,
5132         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5133
5134 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5135
5136         * device/lib/_gptrget.c,
5137         * device/lib/_gptrput.c: updated comment
5138         * device/lib/calloc.c,
5139         * device/lib/free.c,
5140         * device/lib/malloc.c,
5141         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5142         * src/SDCCcse.c (cseBBlock),
5143         * src/SDCCicode.c (printOperand, geniCodeArray),
5144         * src/SDCCicode.h (struct operand): fixed bug 868103
5145         * support/regression/tests/bug-868103.c: added
5146         * src/SDCCast.c (searchLitOp),
5147         * src/SDCCcse.h (struct cseDef),
5148         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5149         * src/SDCCicode.h (struct operand),
5150         * src/SDCCsymt.h (struct sym_link),
5151         * src/avr/gen.c (hasInc),
5152         * src/ds390/gen.c (hasInc),
5153         * src/hc08/gen.c (genPlusIncr, hasInc),
5154         * src/mcs51/gen.c (hasInc),
5155         * src/pic16/glue.c (pic16_printIvalChar),
5156         * src/pic16/ralloc.c (regWithIdx),
5157         * src/xa51/gen.c (hasInc) : removed warnings
5158         * src/SDCCast.c (createBlock): added comment ???
5159         * src/hc08/ralloc.c: updated comments
5160
5161 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5162
5163         * doc/sdccman.lyx: updated section on switch statements, added
5164         section about semaphore locking
5165         * doc/Makefile: added option -info for latex2html
5166         * device/lib/_gptrget.c,
5167         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5168
5169 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5170
5171         * src/pic/device.h,
5172         * src/pic/device.c,
5173         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5174          maxram is less than 0x100.
5175
5176 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5177
5178         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5179
5180 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5181
5182         * src/port.h,
5183         * src/mcs51/main.c,
5184         * src/ds390/main.c,
5185         * src/z80/main.c,
5186         * src/hc08/main.c,
5187         * src/pic/main.c,
5188         * src/pic16/main.c,
5189         * src/avr/main.c,
5190         * src/xa51/main.c
5191         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5192         a jump table is the best form for a switch statement, including
5193         automatic insertion of missing cases to make the case range
5194         continuous. Developed in collaboration with Frieder Ferlemann.
5195
5196 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5197
5198         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5199         accumulator result if it needs sign extension
5200
5201 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5202
5203         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5204
5205 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5206
5207         * device/lib/gbz80/printf.c,
5208         * device/lib/z80/printf.c: removed define for NULL
5209
5210 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5211
5212         * as/xa51/xa_link.c,
5213         * device/examples/ds390/ow390/ad26.c,
5214         * device/examples/ds390/ow390/cnt1d.c,
5215         * device/examples/ds390/ow390/counter.c,
5216         * device/examples/ds390/ow390/ds2480.h,
5217         * device/examples/ds390/ow390/ds2480ut.c,
5218         * device/examples/ds390/ow390/findtype.c,
5219         * device/examples/ds390/ow390/gethumd.c,
5220         * device/examples/ds390/ow390/owllu.c,
5221         * device/examples/ds390/ow390/ownetu.c,
5222         * device/examples/ds390/ow390/swt12.c,
5223         * device/examples/ds390/ow390/swtloop.c,
5224         * device/examples/ds390/ow390/temp.c,
5225         * device/examples/ds390/ow390/temp10.c,
5226         * device/examples/ds390/ow390/thermo21.c,
5227         * device/examples/ds390/ow390/tinilnk.c,
5228         * device/examples/ds390/ow390/tstfind.c,
5229         * device/examples/serialcomm/windows/serial.cpp,
5230         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5231         * device/include/reg51.h: fixed line endings for cvs
5232
5233 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5234
5235         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5236         packRegsForAccUse, packRegisters): new accumulator register
5237         packing algorithm
5238         * support/regression/ports/hc08/support.c (_putchar): suppress
5239         warning of unused variable
5240         * src/SDCCicode.c: added SWAP entry to codeTable
5241
5242 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5243
5244         * device/lib/sprintf.c: forgot to add this file before previous commit
5245
5246 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5247
5248         * src/pic16/gen.c (genPackBits): added operand right in function
5249         parameters, load result directly if p_type is POINTER (that is
5250         called by genNearPointerSet)
5251         * (genUnPackBits): added operand left in function parameters,
5252         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5253         FSR0 if accessing bitfields,
5254
5255 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5256
5257         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5258           _print_format; updated printf, sprintf, vsprintf
5259         * device/include/asm/default/features.h: corrected comment/define
5260         * device/lib/Makefile.in: added sprintf.c
5261         * device/lib/libsdcc.lib: added sprintf module
5262         * device/lib/printf_large.c,
5263         * device/lib/vprintf.c,
5264         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5265           into these 3 files
5266         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5267         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5268         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5269           hc08 test
5270         * support/regression/tests/zeropad.c: define idata as data for hc08
5271
5272 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5273
5274         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5275         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5276         labels are referenced at least once (even if a reference is not found)
5277         * src/hc08/gen.c (emitcode): set isComment flag for comments
5278         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5279         loads), rules 6a..6b (optimize jumps to return)
5280
5281 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5282
5283         * device/lib/acosf.c (acosf),
5284         * device/lib/asinf.c (asinf),
5285         * device/lib/atanf.c (atanf),
5286         * device/lib/ceilf.c (ceilf),
5287         * device/lib/cosf.c (cosf),
5288         * device/lib/coshf.c (coshf),
5289         * device/lib/cotf.c (cotf),
5290         * device/lib/fabsf.c (fabsf),
5291         * device/lib/floorf.c (floorf),
5292         * device/lib/log10f.c (log10f),
5293         * device/lib/logf.c (logf),
5294         * device/lib/sinf.c (sinf),
5295         * device/lib/sinhf.c (sinhf),
5296         * device/lib/sqrtf.c (sqrtf),
5297         * device/lib/tanf.c (tanf),
5298         * device/lib/tanhf.c (tanhf),
5299         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5300         replaced all instances of "reentrant" in the library functions
5301         defined in math.h with this macro.
5302         * support/regression/tests/float_trans.c: reenabled test for hc08
5303
5304 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5305
5306         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5307         erroneously deleted
5308
5309 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5310
5311         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5312         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5313         multi-byte volatile operands are used
5314         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5315         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5316         initialization to area GSINIT0 so that it would always precede
5317         any static initializers in GSINIT
5318         * support/regression/tests/zeropad.c: fixed idata define for hc08
5319         * support/regression/tests/bug-927659.c,
5320         * support/regression/tests/float_trans.c: disabled tests for hc08
5321         pending missing library routines
5322         * .version: increased version number to 2.4.4 - hc08 port now passes
5323         regression tests
5324
5325
5326 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5327
5328         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5329         * Makefile.common.in,
5330         * as/Makefile,
5331         * as/hc08/Makefile.in,
5332         * as/mcs51/Makefile.in,
5333         * as/z80/Makefile.in,
5334         * debugger/mcs51/Makefile.in,
5335         * device/include/Makefile.in,
5336         * device/lib/Makefile.in,
5337         * doc/Makefile,
5338         * link/Makefile,
5339         * link/z80/Makefile.in,
5340         * packihx/Makefile.in,
5341         * sim/ucsim/main_in.mk,
5342         * sim/ucsim/avr.src/Makefile.in,
5343         * sim/ucsim/doc/Makefile.in,
5344         * sim/ucsim/gui.src/serio.src/Makefile.in,
5345         * sim/ucsim/hc08.src/Makefile.in,
5346         * sim/ucsim/s51.src/Makefile.in,
5347         * sim/ucsim/xa.src/Makefile.in,
5348         * sim/ucsim/z80.src/Makefile.in,
5349         * src/Makefile.in,
5350         * support/cpp2/Makefile.in,
5351         * support/librarian/Makefile,
5352         * support/makebin/Makefile: added DESTDIR to the install path proposed
5353         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5354         * doc/sdccman.lyx: added DESTDIR documentation
5355
5356 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5357
5358         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5359         instruction for interrupt handlers, use fast returns when returning
5360         from high priority interrupts
5361
5362 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5363
5364         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5365         code generation
5366         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5367         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5368         bugs, ported much of Bernhard's code from mcs51
5369         * src/mcs51/gen.c (genSend),
5370         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5371         than one when calling a reentrant function
5372         * device/lib/_mullong.c: defined an alternate struct layout for big
5373         endian ports (hc08)
5374
5375 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5376
5377         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5378         test
5379
5380 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5381
5382         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5383         are sane and complete before asking the port its prefered parameter
5384         passing method (fixes bug #1017633)
5385         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5386         and _ret3
5387
5388 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5389
5390         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5391         problem in bitfields >= 8 bits.
5392
5393 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5394
5395         * src/SDCCsymt.c: undid changes that were not meant to be committed
5396
5397 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5398
5399         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5400
5401 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5402
5403         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5404           copied and wrong bit got inverted
5405
5406 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5407
5408         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5409         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5410         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5411         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5412         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5413         assignments to bitfields at known addresses
5414         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5415         reads from bitfields at known addresses
5416         * src/hc08/ralloc.c (packRegisters),
5417         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5418         genhc08Code): optimize pointer get values used as conditionals
5419         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5420         and branch
5421
5422 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5423
5424         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5425         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5426         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5427         as conditionals
5428
5429 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5430
5431         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5432
5433 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5434
5435         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5436         related problems
5437
5438 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5439
5440         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5441
5442 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5443
5444         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5445         mcs51 port
5446
5447 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5448
5449         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5450
5451 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5452
5453         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5454         cases use more compact code.
5455
5456 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5457
5458         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5459
5460 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5461
5462         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5463
5464 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5465
5466         * src/SDCCsymt.h,
5467         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5468         parameter of changePointer() from symbol* to sym_link*
5469         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5470         * src/SDCCsymt.c (compareType): void* type is castable to other
5471         pointers, but not necesarily an exact match.
5472         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5473         is no longer blindly treated as an exact match.
5474         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5475
5476 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5477
5478         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5479
5480 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5481
5482         * src/pic/gen.c,
5483         * src/pic/pcode.c,
5484         * src/pic/ralloc.h,
5485         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5486
5487 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5488
5489         * src/pic/device.c,
5490         * src/pic/device.h,
5491         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5492
5493 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5494
5495         * src/mcs51/gen.c (emitcode): fixed bug #992819
5496
5497 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5498
5499         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5500           there's no need to make it worse
5501
5502 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5503
5504         * src/mcs51/ralloc.c (deassignLR),
5505         * src/ds390/ralloc.c (deassignLR),
5506         * src/hc08/ralloc.c (deassignLR),
5507         * src/z80/ralloc.c (deassignLR),
5508         * src/pic/ralloc.c (deassignLR),
5509         * src/pic16/ralloc.c (deassignLR),
5510         * src/avr/ralloc.c (deassignLR),
5511         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5512         rlivePoint): fixed another part of bug #971834
5513
5514 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5515
5516         * src/z80/main.c: enabled "critical" keyword
5517         * src/z80/mappings.i,
5518         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5519         functions (fixes bug #979646)
5520         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5521
5522 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5523
5524         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5525           such as c:\mydir.
5526
5527 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5528
5529         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5530           doesn't disable too much optimizations
5531
5532 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5533
5534         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5535
5536 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5537
5538         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5539
5540 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5541
5542         * src/pic/gen.c tidied up tabs
5543         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5544         * src/pic/main.c tidied up tabs
5545         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5546         * src/pic/pcoderegs.c tidied up tabs
5547         * src/pic/ralloc.c tidied up tabs
5548
5549 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5550
5551         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5552         to S_FIXED for pic16 port and when symbol is not in level 0,
5553         allocate for S_REGISTER storage class and pic16 port, too,
5554         * src/pic16/device.h: prototype for checkSym,
5555         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5556         * (pic16_assignConfigWordValue): test the value and the mask to
5557         validate that the value is suitable for the configuration word,
5558         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5559         collect extern declared symbols, don't emit symbol twice, check
5560         first if symbol is in publics set first,
5561         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5562         * added command line '--fstack' which enables an experimental
5563         feature for stack access, too buggy to be used yet...
5564         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5565         * (pic16_allocDirReg): when register has storage class S_REGISTER
5566         allocate in pic16_dynAccessRegs,
5567         * device/include/pic16/pic18f????.h: modified configuration word
5568         naming convention, words started as CONFIG0H but should be CONFIG1H
5569
5570 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5571
5572         * device/include/mcs51reg.h: fixed bug 970993
5573
5574 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5575
5576         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5577         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5578         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5579         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5580         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5581         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5582           error/warning numbers,
5583           added function setWarningDisabled()
5584         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5585         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5586           _memcmp.c _memmove.c calloc.c realloc.c free.c
5587         * support/regression/tests/malloc.c: added tests for new functionality
5588         * support/regression/tests/zeropad.c: added tests for truncated initializers
5589           and initialized char arrays starting with '\x0'
5590         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5591
5592 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5593
5594         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5595
5596 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5597
5598         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5599         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5600         peephole 177.e. Thanks to anonymous
5601
5602 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5603
5604         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5605         function isn't used in the source but referenced as a
5606         variable initializer then declare it as extern in .asm file
5607
5608 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5609
5610         * .version: increased version number to 2.4.3
5611
5612         Adding version extension according to ChangeLog CVS revision
5613         * src/Makefile.in (target all): added dependency 'version.h'
5614         * (rule version.h): added rule to create version.h from ChangeLog,
5615         * (rule dep): added dependency version.h,
5616         * src/version.awk: AWK script to create version.h
5617         * src/SDCCdwarf2.c (dwWriteModule),
5618         * src/SDCCglue.c (initialComments),
5619         * src/SDCCmain.c (printVersionInfo): modified to write after
5620         version string the version extension number,
5621         * src/SDCCutil.c: included "version.h"
5622         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5623         number,
5624         * src/SDCCutil.h: added prototype for getBuildNumber
5625
5626         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5627         includeDirsSet, too,
5628         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5629         const char [] is found in function prototype...
5630
5631         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5632         moving to WREG with source is already in WREG,
5633         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5634         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5635         * (aopForSym): stack'ed symbols are partially supported, added
5636         if-clause to support symbols in FARSPACE,
5637         * (sameRegs): added test for AOP_ACC to see if registers are same,
5638         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5639         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5640         * (pic16_popRegFromString): will not allocate a new register if it
5641         doesn't find one by name, bug may have introduced...
5642         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5643         * (genIpush): revived to use pic16 port's stack,
5644         * (genAddrOf): added incomplete case for stack'ed operand,
5645         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5646         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5647         can handle multibyte operands,
5648         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5649         * (pic16initialComments): added message for MPLAB compatibility
5650         mode enabled,
5651         * src/pic16/main.h: prototype for pic16_mplab_comp,
5652         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5653         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5654         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5655         because of increased complexity of procedure,
5656         * (_process_pragma): stack pragma changed to format 'stack pos len',
5657         emit symbol '_stack_end' to conform with gplink,
5658         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5659         to search for register,
5660         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5661         PO_GPR_REGISTER,
5662         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5663         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5664         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5665         case for PO_GPR_REGISTER,
5666         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5667         dies, the new era is ahead !...
5668         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5669         pic16_dynInternalRegs,
5670         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5671         * (pic16_allocDirReg): minor optimizations and bug fixes,
5672         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5673
5674         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5675         load stack and frame pointer with address of 'stack_end' symbol
5676
5677 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5678
5679         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5680         without source code but only variable initializers
5681
5682 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5683
5684         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5685         external are not declared as extern to reduce overhead while linking
5686
5687 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5688
5689         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5690
5691 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5692
5693         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5694           Yee Keat for the patch
5695         * src/SDCCast.c (decorateType): fixed bug #979599
5696         * src/ds390/gen.h: removed local fReturnSizeDS390
5697         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5698         * src/ds390/gen.c (genAnd, genOr, genXor),
5699         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5700
5701 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5702
5703         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5704         add relFilesSet to $3, manipulate $2 to handle linking of object
5705         files without source files in command line,
5706         * device/include/pic16 (all headers): added ID location macros,
5707         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5708         entries for ID location bytes,
5709         * (pic16_assignIdByteValue): NEW,
5710         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5711         added field dumpcalltree to pic16_options_t,
5712         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5713         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5714         emitting rFalseIfx label after check_carry label,
5715         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5716         pic16_emitDIRegs), NEW
5717         * (pic16glue): dump .calltree file when option --calltree found,
5718         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5719         * (_pic16_genAssemblerPreamble): emit ID locations after
5720         configuration registers,
5721         * (pic16_linkCmd): modifications of the link command,
5722         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5723         * (pic16_pCodeInitRegisters): don't init stack registers,
5724         * (pic16_findPrevInstruction): fixed bug,
5725         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5726         bug with immediate registers,
5727         * (buildCallTree): traces stack push and pop,
5728         * (pct2): dump also stack usage for each function,
5729         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5730         * (pic16_allocDirReg): various modifications,
5731         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5732         fixed to 1,
5733
5734 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5735
5736         * src/pic16/pcode.c: removed buggy double colon
5737
5738 2004-07-01 Borut Razem <borut.razem AT siol.net>
5739
5740         * support/scripts/sdcc.nsi: added include/pic16 to setup
5741
5742 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5743
5744         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5745         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5746         target 'clean',
5747         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5748         specific command line arguments. Also added sample lkr script
5749         for placing a variable at a specific memory bank.
5750         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5751         at a specific memory bank,
5752         * (pic16_dump_isection): fixed bug which caused string literals to
5753         be omitted when dumping idata section,
5754         * (pic16_groupRegistersInSection): added code to handle registers
5755         in specific memory banks,
5756         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5757         public, all references are renamed too,
5758         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5759         AOP_DPTR2,
5760         * (pic16_storeForReturn): added case to handle when dest is WREG,
5761         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5762         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5763         pic16_rel_udata, check to see if that register is marked as being
5764         a member of a specific memory bank,
5765         * (pic16_printIvalCharPtr): added code to add string literals either
5766         to code or the idata sections,
5767         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5768         also accept the 'udata' pragma,
5769         * src/pic16/main.h: new structure types sectName and sectSym
5770         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5771         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5772         * (pic16_findPrevInstruction): fixed, it returned nothing,
5773         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5774         instruction combinations,
5775         * (pic16_FixRegisterBanking): heavily reorganised,
5776         * (pic16_AnalyzeBanking): if generating banksel directives is
5777         disabled, then don't call FixRegisterBanking at all,
5778         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5779         completely removed,
5780         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5781
5782 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5783
5784         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5785         Phuah Yee Keat <yk.phuah AT nestac.com>
5786
5787 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5788
5789         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5790         correctly the IVT even if it is relocated to some other location
5791
5792 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5793
5794         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5795         * device/include/pic16/pic18f2220.h: NEW,
5796         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5797         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5798         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5799         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5800         nodefaultlibs, ivt_loc is the location of the interrupt vector
5801         table, and nodefaultlibs signs that default libraries should not be
5802         linked in link stage,
5803         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5804         according to --ivt-loc argument,
5805         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5806         when pragma stack is found,
5807
5808 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5809
5810         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5811         256 (range check), 257 (do while), 258.a-f (bit banging
5812         f.e. on 3-wire SPI bus)
5813
5814 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5815
5816         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5817         variables used exclusively within a loop
5818
5819 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5820
5821         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5822
5823 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5824
5825         * src/SDCClrange.c (computeClash): fixed bug #971834
5826
5827 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5828
5829         * src/mcs51/gen.c (genCmp): fixed bug #975903
5830         * src/hc08/gen.c (operandsEqu),
5831         * src/ds390/gen.c (operandsEqu),
5832         * src/z80/gen.c (operandsEqu),
5833         * src/pic/gen.c (operandsEqu),
5834         * src/pic16/gen.c (operandsEqu),
5835         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5836         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5837
5838 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5839
5840         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5841
5842 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5843
5844         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5845         default case in switch statement,
5846         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5847         to eliminate problem with initialisation of pointers, but problem
5848         still exists,
5849         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5850         * (emitStaticSegment): removed various lines emitting debug info,
5851         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5852         added processor registers for utilizing EEPROM,
5853         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5854         configurable and set 8
5855
5856 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5857
5858         * .version: increased version number to 2.4.2,
5859
5860         Cumulative patch for pic16 port
5861         * src/pic16/device.c: changed scheme to dump initial values for
5862         variables in idata segment, all print_idata* functions were removed,
5863         now the pic16_printIval* will be called,
5864         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5865         * _pic16_printPointerType, pic16_printPointerType,
5866         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5867         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5868         NEW, similar to the respective functions in SDCCglue.c,
5869         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5870         way, emitting hex bytes,
5871         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5872
5873 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5874
5875         * src/avr/ralloc.c (serialRegAssign),
5876         * src/xa51/ralloc.c (serialRegAssign),
5877         * src/pic/ralloc.c (serialRegAssign),
5878         * src/pic16/ralloc.c (serialRegAssign),
5879         * src/hc08/ralloc.c (serialRegAssign),
5880         * src/z80/ralloc.c (serialRegAssign),
5881         * src/ds390/ralloc.c (serialRegAssign),
5882         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5883
5884 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5887         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5888
5889 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5890
5891         Cumulative patch for pic16 port:
5892         * src/pic16/device.h (typedef PIC16_device) modified fields for
5893         defining microcontrollers,
5894         * src/pic16/device.c: added new info for all devices in Pics16 array,
5895         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5896         to be optimised out by the pCode optimiser,
5897         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5898         specially, bug reported by G.M. Gallant,
5899         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5900         as force'd so that cannot be optimised out by pCode optimiser,
5901         * src/pic16/pcode.c,
5902         * src/pic16/pcodepeeph.c,
5903         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5904         they are disabled by default, but can be enabled explicit with
5905         command argument --denable-peeps, for testing,
5906         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5907         --pomit-ivt in COMPILE_FLAGS
5908
5909 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5910
5911         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5912           compilation on MSVC
5913
5914 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5915
5916         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5917
5918 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5919
5920         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5921         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5922
5923 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5924
5925         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5926         would only assign 0x300001 register.
5927
5928 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5929
5930         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5931         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5932
5933 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5934
5935         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5936         for ds80c400
5937         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5938         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5939         added peephole 254 (left shift), 255 (jump table)
5940
5941 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5942
5943         * device/lib/Makefile.in: removed comment line with model-pic16,
5944         * (target port-specific-objects-pic16): the libraries and objects
5945         are copied to the build directory form the device/lib/pic16/bin
5946         directory
5947
5948         Cumulative patch concerning pic16 port:
5949         * library directory has been re-organized,
5950         * added support for PIC18F1220,
5951         * added headers and library sources for chips 18f1220,18f6520,
5952         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5953
5954         * configuration registers setting has changed, now each supported
5955         device has a complete description of the registers it uses,
5956         * all initialisations are moved to idata sections, these section
5957         can be absolute or relocatable,
5958         * fixed initialisation of codespace variables,
5959         * fixed warning about PCLATU and gpsim,
5960         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5961         * (genAssign): use table reads when assigning from variables in codespace,
5962         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5963         char/int variables placed in codespace,
5964         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5965         registers set in .asm file, no need for --pomit-config-words anymore,
5966         * (pic16glue): some 8051 legacy segments are commented out
5967         (to be removed completely),
5968         * added support for alternative assembler and linker with --asm=
5969         and --link= command line arguments,
5970         * peepholes are disabled automatically in the port, no need to
5971         specify on command line,
5972         * port supports natively char/int/long multiplication, but converts
5973         all divisions to support functions,
5974         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5975         to the file set in variable $2,
5976         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5977         strings in ASCII format and not in hex,
5978         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5979         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5980         allocate proper register if iCodes aren't temporary,
5981
5982 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5983
5984         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5985
5986 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5987
5988         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5989         is commented out
5990
5991 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5992
5993         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5994         computed address is reused
5995         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5996         multi-byte bitfields
5997
5998 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5999
6000         * src/z80/gen.c: (genArrayInit): must check for pointers too
6001
6002 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
6003
6004         * support/regression/tests/zeropad.c: never meant to commit the
6005           nestedstruct test: removed, added check for GCC version
6006
6007 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
6008
6009         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
6010         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
6011         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
6012           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
6013           bugs 928906 and 954082 half-empty initializers
6014         * src/SDCCsymt.h,
6015         * src/SDCCsymt.c (getAllocSize): added for above fix
6016         * src/z80/gen.c (genArrayInit): fixed bug 741044
6017         * support/regression/tests/zeropad.c: added tests
6018
6019 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
6020
6021         * src/pic16/device.c (pic16_dump_section): corrected bug which
6022         caused some symbols of the libraries to be misplaced
6023
6024 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6025
6026         * src/pic16/glue.c,
6027         * src/pic16/ralloc.h,
6028         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6029         to fix conflict with pic port
6030
6031 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6032
6033         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6034         externs configuration variables,
6035         * src/pic16/ralloc.h,
6036         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6037         prototype in header, commented out some debug messages
6038
6039 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6040
6041         * src/pic16/glue.c,
6042         * src/pic16/main.c,
6043         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6044         for gpasm COFF object generation. Thanks to D. Hawkins for
6045         his patch info
6046
6047 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/ds390/main.c,
6050         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6051         Brock for spotting this)
6052         * src/ds390/gen.c (genEndFunction),
6053         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6054         interrupt handler and critical. Disable push/pop optimizations when
6055         peephole optimizations disabled.
6056
6057 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6058
6059         Updated pic16 library sources and headers.
6060         * device/lib/pic16/pic18f*/ ,
6061         * device/include/pic16/*.h: modified to handle structured SFR
6062         definitions
6063
6064 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6065
6066         * src/port.h (PORT structure): added hook initPaths, now each
6067         port can declare its own default search paths,
6068         which can been seen with the --print-search-dirs option,
6069         see pic16 port for example,
6070         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6071         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6072         * (doPrintSearchDirs): NEW, replaces in a central manner the
6073         printing of search dirs which was split in set*Paths functions,
6074         * (main): added call to port->initPaths and doPrintSearchDirs,
6075         * src/avr/main.c,
6076         * src/ds390/main.c,
6077         * src/hc08/main.c,
6078         * src/izt/i186.c,
6079         * src/izt/tlcs900h.c,
6080         * src/mcs51/main.c,
6081         * src/pic/main.c,
6082         * src/pic16/main.c: modified port structures to reflect addition of
6083         initPaths hook,
6084
6085         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6086         * (pic16_dump_section): for registers in same address reserve memory once,
6087         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6088         to no_banksel,
6089         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6090         result is greater in size than right or left,
6091         * (pic16_genUMult8X8_8): there are some cases where the result can
6092         be 16 bits size, so handle these,
6093         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6094         * (pic16_outBitC): modified to emit pcodes,
6095         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6096         or not,
6097         * (genDivOneByte): implemented algorithm to divide 8-bits,
6098         * (genCmp): uncommented goto, but issues still exist,
6099         * (genAnd): fixed a bug with variables >8bits,
6100         * (genPackBits): optimization added that uses BCF/BSF to change a
6101         single bit,
6102         * (genAssign): fixed bug when assigning floating point literals,
6103         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6104         __sdcc_gsinit_startup label,
6105         * src/pic16/main.c (_pic16_init): removed search directory
6106         initialisations,
6107         * (_pic16_initPaths): NEW, used to initialise search directories,
6108         * (_hasNativeMulFor): support functions for all except char/int
6109         multiplication, and char division,
6110         * (PIC16_port struct): modified entry for native mul support,
6111         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6112         no_banksel option,
6113         * (buildCallTree): call to register_usage is ifdef'ed out,
6114
6115 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * device/include/string.h: applied Stas Sergeev's patch to make this
6118         header file compatible with the preprocessor -Wundef option
6119         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6120         failure (fixes bug #941458)
6121
6122 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6123
6124         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6125         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6126         that the variable, not the function, should be static
6127         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6128         to be consistent with non-literal case
6129
6130 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * src/SDCCast.c (isConformingBody): fixed bug #949967
6133         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6134         convilong): fixed bug #952086
6135
6136 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6137
6138         * src/SDCCmem.c (allocVariables): fixed bug #955321
6139
6140 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6141
6142         * src/hc08/main.c (_hc08_genAssemblerEnd),
6143         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6144         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6145         completely eliminated the use of a temporary file
6146         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6147         when more than one file linked
6148         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6149
6150 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6151
6152         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6153         which fixes bug #543481
6154         * support/regression/tests/bug-751703.c: fixed comments left from a
6155         cut and paste error
6156         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6157         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6158         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6159         scopes
6160         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6161         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6162         are now changed to underscores in moduleName
6163
6164 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6165
6166         * as/mcs51/lkmem.c: better fix for bug #954173
6167
6168 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6169         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6170
6171         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6172         * device/include/c8051f000.h,
6173         * device/include/c8051f120.h,
6174         * device/include/c8051f300.h,
6175         * device/include/c8051f310.h,
6176         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6177         PWM16) and detab'ed
6178
6179 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6180
6181         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6182         and mailing lists, doc'ed --no-peep-comments, removed reference
6183         to knoppix (newest version has no LyX/LaTeX), other minor changes
6184         * src/SDCCglue.c (glue): save 2 bytes stack space with
6185         option --main-return. The ljmp could probably be avoided too
6186
6187 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6188
6189         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6190
6191 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6192
6193         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6194         * src/SDCCopt.c (isLocalWithoutDef),
6195         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6196         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6197         (credit to Maarten Brock for patch #949363, on which this is based)
6198         * support/regression/tests/bug-751703.c: some test cases of extern used
6199         within inner scopes.
6200
6201 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6202
6203         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6204         SPEC_STRUCT
6205         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6206         struct definitions
6207         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6208         dwWriteLabel): fix to create valid debugger symbols even when
6209         the module name has non-alphanumeric symbols in it
6210         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6211         when a variable's allocation has been optimized away
6212
6213
6214 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6215
6216         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6217         * src/hc08/main.c,
6218         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6219         * src/mcs51/main.c,
6220         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6221         * src/ds390/main.c,
6222         * src/z80/gen.c (z80_emitDebuggerSymbol),
6223         * src/z80/main.c,
6224         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6225         * src/pic/main.c,
6226         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6227         * src/pic16/main.c,
6228         * src/avr/gen.c (avr_emitDebuggerSymbol),
6229         * src/avr/main.c,
6230         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6231         * src/xa51/main.c,
6232         * src/SDCCdebug.c (emitDebuggerSymbol),
6233         * src/SDCCdebug.h,
6234         * src/port.h: added a debugger struct to the port struct. Added a
6235         callback for defining debugger symbols
6236
6237         * src/SDCCast.c (createLabel),
6238         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6239         with isitmp = 1
6240         * src/SDCCicode.h,
6241         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6242         iCode back to the ast for the function
6243
6244         * src/hc08/ralloc.c (hc08_assignRegisters),
6245         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6246         unneeded fields from the regs struct.
6247         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6248         pushReg() & pullReg() functions instead of emitcode()
6249
6250         * src/hc08/gen.c (genLabel, genhc08Code),
6251         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6252
6253         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6254         debugger hooks
6255
6256         * src/hc08/gen.c (genEndFunction, genhc08Code),
6257         * src/hc08/gen.h,
6258         * src/mcs51/gen.c (genEndFunction, gen51Code),
6259         * src/mcs51/gen.h,
6260         * src/ds390/gen.c (genEndFunction, gen390Code),
6261         * src/ds390/gen.h,
6262         * src/z80/gen.c (genEndFunction, genZ80Code),
6263         * src/z80/gen.h,
6264         * src/z80/z80.h,
6265         * src/pic/gen.c (genEndFunction, genpic14Code),
6266         * src/pic/gen.h,
6267         * src/pic16/gen.c (genEndFunction, genpic16Code),
6268         * src/pic16/gen.h,
6269         * src/avr/gen.c (genEndFunction, genAVRCode),
6270         * src/avr/gen.h,
6271         * src/xa51/gen.c (genEndFunction, genXA51Code),
6272         * src/xa51/gen.h,
6273         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6274         specific code to cdbFile.c and out of the backend code generators
6275
6276         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6277         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6278         starting address is now 0
6279
6280         * as/hc08/asm.h,
6281         * as/hc08/m08pst.c,
6282         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6283         assembler directive for DWARF support
6284         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6285
6286         * src/src.dsp,
6287         * src/Makefile.in,
6288         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6289
6290 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6291
6292         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6293         and inappropriate peephole optimization in jump tables
6294
6295 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6296
6297         * as/hc08/m08pst.c,
6298         * src/SDCCglue.c: sdccopt works for the hc08 port now
6299
6300 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6301
6302         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6303
6304 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6305
6306         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6307
6308 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6309
6310         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6311         rules
6312         * src/SDCCmain.c,
6313         * src/SDCCglobl.h,
6314         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6315         comments from the peephole optimizer replacement rules
6316         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6317         symbols
6318         * src/SDCCcse.c (updateSpillLocation),
6319         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6320         equivalents
6321         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6322         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6323         objects far pointers
6324
6325 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6326
6327         * src/SDCCsymt.h: a missing part of my last change
6328         * src/pic/ralloc.c (regTypeNum),
6329         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6330
6331 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/SDCCicode.h,
6334         * src/SDCCicode.c (aggrToPtrDclType),
6335         * src/SDCCptropt.h,
6336         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6337         ptrPseudoSymConvert),
6338         * src/pic/ralloc.c (regTypeNum),
6339         * src/pic16/ralloc.c (regTypeNum),
6340         * src/hc08/ralloc.c (regTypeNum),
6341         * src/ds390/ralloc.c (regTypeNum),
6342         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6343         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6344
6345 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6346
6347         * link/z80/lkmain.c (afile),
6348         * as/hc08/lkmain.c (afile),
6349         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6350         prevent a pointer problem when a filename has no directory and
6351         no extension specified.
6352
6353 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6354
6355         * link/z80/lkmain.c (afile): allow periods in directory names
6356         * link/z80/lkmain.c (afile),
6357         * as/mcs51/lkmain.c (afile),
6358         * as/hc08/lkmain.c (afile): allow linker script file to have an
6359         extension other than ".lnk"
6360         * link/z80/lklex.c (getfid),
6361         * link/z80/lkmain.c (parse),
6362         * as/mcs51/lklex.c (getfid),
6363         * as/mcs51/lkmain.c (parse),
6364         * as/hc08/lklex.c (getfid),
6365         * as/hc08/lkmain.c (parse): Support comments in the linker script
6366         file on lines by themselves and after filenames
6367
6368 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6369
6370         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6371
6372 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         * src/z80/peeph-z80.def: removed some peephole rules that don't
6375         work with multibyte arithmetic (fixed bug #937126)
6376         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6377         to registers and not global variables
6378         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6379         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6380         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6381         checking for assignments not internally generated (fixed bug #931895)
6382         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6383         structure member (fixed bug #930072)
6384
6385 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         * src/SDCCmain.c (linkEdit),
6388         * src/hc08/main.c (_hc08_parseOptions),
6389         * as/hc08/Makefile.in,
6390         * as/hc08/aslink.h,
6391         * as/hc08/asm.h,
6392         * as/hc08/m08pst.c,
6393         * as/hc08/lkrloc.c (relr, rele),
6394         * as/hc08/lkarea.c (lnkarea)
6395         * as/hc08/lkmain.c (afile, parse),
6396         * as/hc08/lkelf.c: support for ELF output
6397         * as/hc08/lks19.c (s19),
6398         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6399
6400 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6401
6402         * as/mcs51/lkihx.c: Fixed bug #899105.
6403
6404 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6405
6406         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6407         .dsp files from Unix to DOS.
6408
6409 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6412         function pointers; we have been compliant for several months now.
6413         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6414         change that was accidently commented out
6415         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6416         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6417         bug #922319
6418
6419 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6420
6421         * src/hc08/gen.c: output of all of the internal debugging information
6422         is now controlled by the D() macro; it is disabled by default
6423
6424 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6425
6426         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6427         harder to keep the same registers during a CAST iCode
6428         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6429         long via int can be done in a single cast, if the signedness is
6430         correct.
6431         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6432         putchar() in tinibios.c in ds390's library
6433
6434 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6435
6436         * src/SDCCast.c (decorateType): fixed bug #898889,
6437         cast result of a literal complement too
6438         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6439         fixed check for bitfields
6440
6441 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6442
6443         * src/SDCCicode.c (geniCodeLogic): made it static,
6444         (geniCodeLogicAndOr): added in order to fix bug #905492,
6445         (ast2iCode): fixed bug #905492
6446         * support/regression/tests/bug-905492.c: added
6447         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6448         (processParms): fixed bug #927659: don't copy parms, this will clear
6449         decorated flag
6450         * support/regression/tests/bug-927659.c: added
6451
6452 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6453
6454         * src/SDCCast.c (addCast): don't cast float to char
6455         * device/lib/libsdcc.lib: added _memmove
6456
6457 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6458
6459         * device/lib/large/Makefile: fixed parallel execution by
6460         replacing `make` by `$(MAKE)`
6461
6462 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6465         offsets (fixes bug #923936)
6466
6467 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6468
6469         * device/lib/small/Makefile: fixed parallel execution by
6470         replacing `make` by `$(MAKE)`
6471
6472 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6473
6474         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6475
6476 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6477
6478         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6479         * src/regression/Makefile: Regression test was not running.
6480
6481 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6482
6483         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6484         complement if possible
6485         * src/SDCCval.c (valComplement),
6486         * src/SDCCicode.c (operandOperation): fixed complement of literal
6487         * support/regression/tests/onebyte.c (testComplement): added
6488
6489 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6490
6491         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6492         return an optimized tree; actually replace actParm with the new tree
6493         * src/SDCCast.h: added some parantheses to remove side effects
6494         * support/regression/tests/bug-920866.c
6495
6496 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6497         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6498         Bit operands were not being handled properly in the pic14 port.
6499         (now src/regression/add.c passes again).
6500
6501 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6502
6503         * src/SDCC.y (labeled_statement): case and default no longer require
6504         a following statement (RFE #893037)
6505
6506 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6507
6508         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6509         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6510         disabled (fixes bug #916294)
6511         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6512         "mov a,acc"; patch provided by Lenny Story
6513         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6514
6515 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6518         functions
6519         * src/ds390/gen.c (genFunction, genEndFunction),
6520         * src/ds390/ralloc.c (ds390_assignRegisters),
6521         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6522         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6523         pushed if there are parameters passed on the stack. Also, a cleaner
6524         way to decide if r0/r1 should be pushed/popped. (Together they fix
6525         bug #918693)
6526
6527 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6528
6529         * doc/sdccman.lyx,
6530         * device/lib/mcs51/crtpagesfr.asm,
6531         * device/lib/mcs51/crtxinit.asm,
6532         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6533         to avoid confusion with Si Lab's SFRPAGE register.
6534
6535 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * src/SDCCglue.c (emitMaps): allow public sfr variables
6538         * src/SDCCglue.c (initialComments): include compiler build date
6539         with compiler version and put the timestamp of the generated
6540         assembly file on a serperate line to be less confusing.
6541         * src/port.h: added genInitStartup hook
6542         * src/avr/main.c,
6543         * src/ds390/main.c,
6544         * src/hc08/main.c,
6545         * src/pic/main.c,
6546         * src/pic16/main.c,
6547         * src/xa51/main.c,
6548         * src/z80/main.c: genInitStartup initialize as NULL (default to
6549         historical behaviour)
6550         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6551         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6552         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6553         library instead of hard coding it into the compiler.
6554         * support/regression/ports/mcs51-stack-auto/spec.mk,
6555         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6556         * device/lib/mcs51/Makefile,
6557         * device/lib/small/Makefile,
6558         * device/lib/large/Makefile,
6559         * device/lib/mcs51/crtpagesfr.asm,
6560         * device/lib/mcs51/crtstart.asm,
6561         * device/lib/mcs51/crtxclear.asm,
6562         * device/lib/mcs51/crtxinit.asm,
6563         * device/lib/mcs51/crtclear.asm,
6564         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6565         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6566         and into user configurable files.
6567         * device/lib/clean.mk: clean mcs51 directory too
6568         * support/regression/tests/longlit.c: added static to T1 declaration
6569         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6570         accesses in the initialization code
6571
6572 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6575         OSCTRIMVAL as noted in bug #916008
6576
6577 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6578
6579         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6580         in loops with multiple exits (reported as incorrect registers
6581         used by Martin Helmling in Sdcc-user list)
6582
6583 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6584
6585         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6586         made ds390 register extensions look less like error messages
6587
6588 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6589
6590         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6591         reported by Adam Wozniak in Sdcc-user list
6592
6593 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6594
6595         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6596         arithmetic optimizations, added debug output
6597
6598 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6599
6600         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6601         * sdcc.spec: updated and split sdcc into 3 rpms
6602         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6603         needed for literals of LEFT_OP and '+'
6604         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6605         introduced RESULT_TYPE_NOPROM
6606         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6607         left shift
6608         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6609         limited promotion to int only for '*'
6610         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6611
6612 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6613
6614         * src/pic16/gen.c (genSkip),
6615         (genc16bit2lit), (gencjneshort): commented out
6616         (is_LitOp): new helper function, checks operand type
6617         (genCmpEq): rewritten
6618
6619 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6620
6621         * support/regression/tests/bug-908454.c: added
6622
6623 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6624
6625         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6626         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6627         (geniCodeCast): cosmetic, don't preserve bit storage class
6628         (geniCodeLeftShift): added promotion
6629         (geniCodeLogic): fixed regression
6630         * src/SDCCsymt.c (computeTypeOr): accept bits too
6631         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6632
6633 2004-03-07  Borut Razem <borut.razem AT siol.net>
6634
6635         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6636
6637 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6638
6639         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6640         version of pic16_genPackRegisters which does not check if ic is a
6641         CAST operator,
6642         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6643         function cause string1.c regression test fails
6644
6645 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6646
6647         * sim/ucsim/configure.in,
6648         * sim/ucsim/configure,
6649         * sim/ucsim/doc/Makefile.in: use docdir
6650         * src/SDCC.y: fixed sbit atrributes
6651         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6652         * src/SDCCast.c (decorateType): |^& need special promotion handling
6653         * src/SDCCast.h,
6654         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6655         * src/SDCCsymt.h (computeType),
6656         * src/SDCCicode.c: computeType() needs op
6657         * src/SDCCsymt.c (checkTypeSanity),
6658         * doc/sddman.lyx: "plain" bitfields are unsigned
6659         * src/SDCCsymt.c (computeTypeOr): added
6660         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6661         |^& ops
6662         * src/SDCCval.c (val*): computeType() needs op
6663         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6664         * support/regression/tests/onebyte.c: added tests for |^&
6665
6666 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6667
6668         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6669         for writing icode into asm output.
6670
6671 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6672
6673         * src/pic16/device.c: added some debug lines enabled
6674         with macro DEBUG_CHECK,
6675         * src/pic16/genarith.c: more debug in genPlus,
6676         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6677         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6678         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6679         * (aopForSym): onStack symbols are re-placed in data memspace,
6680         and onStack flag is cleared,
6681         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6682         copy temporary pcodeop,
6683         * (genPcall): added warning for not updating PCLATU,
6684         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6685         always true for pic16 port,
6686         * (genMultOneWord): NEW, supports integer multiplication,
6687         * (genMult): modified to call genMultOneWord,
6688         * (ifxForOp): added warning when return NULL,
6689         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6690         flag is set before call to operandFromSymbol for implicit
6691         added structures,
6692         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6693         options.intlong_rent are set by default,
6694         * (_hasNativeMulFor): modified to allow port generation of integer
6695         multiplication,
6696         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6697         set regtype to REG_SFR for all registers, restricting seting the
6698         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6699
6700 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6701
6702         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6703         more than 500 times in the regression tests
6704
6705 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         * support/Util/SDCCerr.h,
6708         * support/Util/SDCCerr.c,
6709         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6710         enumerator_list),
6711         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6712         for symbol conflicts.
6713         * support/valdiags/tests/enum.c,
6714         * support/valdiags/tests/tentdecl.c,
6715         * support/valdiags/tests/struct.c: expect possible error messages
6716         referring to original symbol definitions.
6717         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6718         * src/SDCCsymt.h,
6719         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6720
6721 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6722
6723         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6724
6725 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6726
6727         * src/pic16/ralloc.c (newReg): fixed bug #908929
6728
6729 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6730
6731         * src/ds390/gen.c: added missing #include "main.h"
6732
6733 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6734
6735         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6736         checking if symbol is already in set,
6737         * src/pic16/device.h: prototype for checkAddSym,
6738         * src/pic16/gen.c: (_G): added entry interruptvector,
6739         * (assignResultValue): removed some commented out lines,
6740         * (genFunction): check for ISR via sym->type, absolute section for
6741         interrupt code is created via a new pBlock, the goto instruction is
6742         placed now correctly at the interrupt vector position, changed all
6743         references from ivec to _G.interruptvector,
6744         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6745         is the interrupt is a high priority one, same for return from ISR,
6746         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6747         externs to calls of checkAddSym,
6748         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6749         pic16_pcode_verbose flag is set,
6750         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6751         * src/pic16/pcoderegs.c: message about how many registers are saved
6752         will only be emitted if pic16_pcode_verbose flag is set,
6753
6754 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * src/ds390/ralloc.h,
6757         * src/ds390/ralloc.c (ds390_regWithIdx),
6758         * src/ds390/gen.c (emitcode),
6759         * src/ds390/main.h,
6760         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6761         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6762         ds390operandCompare, getRegsRead, getRegsWritten,
6763         initializeAsmLineNode): customized instruction size calculation for
6764         ds390, started basis for some register optimizations
6765         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6766         corresponding assembly output
6767         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6768         missing push/pop of r0/r1. Optimized push/pops
6769
6770 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6771
6772         * src/mcs51/main.c (instructionSize): fixed ACALL size
6773         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6774
6775 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6776
6777         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6778         the sorting of rlist with NULL elements
6779         * (print_idataType, print_idata): NEW to create idata sections
6780         * src/pic16/device.h: idataSymSet new variable
6781         * src/pic16/gen.c (genFunction): fixed some bugs in string
6782         comparing, improved the absolute section creation for ISRs,
6783         added FSR0L/FSR0H in registers that are saved in an ISR,
6784         * (genInline): fixed the processing of inline snippets,
6785         now they undergo no process by the peephole optimizer
6786         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6787         are placed in idataSymSet,
6788         * (pic16emitStaticSeg): extern symbols are added in externs,
6789         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6790         switching when aboslute variables are placed in access bank memory
6791         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6792         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6793         commented out with #if,
6794         * (pic16_packRegisters): reintroduce the check for CAST because some
6795         symbols are not correctly handled,
6796         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6797         pCodeInstruction instead of pCode,
6798         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6799         pCodeAsmDir definition,
6800         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6801         directive, then the argument directive is emitted without the leading
6802         tab, hack for inline labels which must be in the first column,
6803         * (compareLabel,pic16_findNextInstruction),
6804         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6805         * (insertBankSwitch): modified for the new pCodeAsmDir,
6806
6807 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6808         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6809
6810         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6811         instance,
6812         * (pushSide): commented out with #if,
6813         * (assignResultValue): fixed some typos in saving
6814         registers,
6815         * (genPcall): FIXED and sync'ed with genCall,
6816         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6817         * (genNearPointerGet): fixed to handle some more cases,
6818         implementation scheme via table reads,
6819         * (genConstPointerGet): modified to access code memory correct,
6820         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6821         and improved to handle some cases
6822         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6823         instead of "RETLW" for init data
6824         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6825         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6826         variables are placed in access bank memory (<0x80 and >=0xf80),
6827         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6828         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6829         TBLWT_POSTDEC,TBLWT_PREINC
6830         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6831         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6832         directives
6833         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6834         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6835         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6836         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6837
6838 2004-02-29  Borut Razem <borut.razem AT siol.net>
6839
6840         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6841         support/Util/findme.h, support/Util/system.h: enhance binary relative
6842         search for lib and include by using findProgramPath()
6843
6844 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6845
6846         * src/SDCCpeeph.h,
6847         * src/SDCCpeeph.c (pcDistance),
6848         * src/port.h,
6849         * src/mcs51/ralloc.h,
6850         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6851         * src/mcs51/main.h,
6852         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6853         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6854         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6855         size calculation port specific, started basis for some register
6856         optimizations
6857         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6858         missing push/pop of r0/r1. Optimized push/pops
6859         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6860         * device/lib/_modsint.c (_modsint),
6861         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6862         and stack version so regression tests pass
6863
6864 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6865
6866         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6867         * src/SDCCast.c (decorateType): catch another small optimization
6868         with '?' operator
6869         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6870         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6871         modified to finally use computeType() all over SDCC,
6872         see Feature Request #877103
6873         * src/SDCCval.h: cosmetic
6874         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6875         valCompare(); regression tested in muldiv.c
6876         * support/regression/tests/muldiv.c (testMod): mod sign follows
6877         dividend only
6878
6879 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6880
6881         * src/SDCCast.c (decorateType): fixed bug #902362
6882         * doc/INSTALL.txt: fixed install instructions for win32
6883
6884 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6885
6886         * device/include/Makefile.in (install): fixed by replacing spaces
6887         by tabs
6888         * doc/README.txt,
6889         * doc/INSTALL.txt: updated for release
6890         * doc/sdccman.lyx: added warning for --xstack being buggy
6891
6892 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6893
6894         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6895         to eliminate build warnings.
6896         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6897
6898 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6899            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6900
6901         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6902         removed -penable-stack, added comment for stack pragma, added
6903         warning for not initializing the stack/frame registers, removed
6904         comment at interrupts section
6905
6906         Stack is made permanent, there is no ability to disable stack usage.
6907         * src/pic16/device.h,
6908         * src/pic16/device.c: removed all references to USE_STACK macro,
6909         * src/pic16/device.c (pic16_dump_section): when no elements in
6910         rlist, free rlist before return,
6911         * (pic16_dump_int_registers): NEW, internal registers are a new set
6912         of general purpose registers reused by each function,
6913         * (checkAddReg): returns 1 if registers is added to set,
6914         * (pic16_groupRegistersInSection): when a registers is of type
6915         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6916         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6917         SRCASECMP macro is moved here from device.c
6918         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6919         PO_PCLATU, PO_PRODL, PO_PRODH,
6920         * (pic16_pCodeOpType, genMinus,
6921         changed compares to "a" register, with AOP_ACC,
6922         * (pic16_genPlus): fixed some bugs and indented properly,
6923         * (pic16_addSign): changed size to size+offset in the MOVWF
6924         instruction,
6925         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6926         multiply 8-bit operand by literal, result is 8-bit,
6927         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6928         multiply 2 8-bit operand, result is 8-bit,
6929         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6930         genUMult8X*_16,
6931         * src/pic16/gen.c: changed accUse to contain WREG only,
6932         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6933         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6934         true, do not use immediate addressing any more unless sym is a
6935         pointer in codespace,
6936         * (aopForRemat): do not use immediate addressing when symbol not in
6937         codespace and when symbol's address is requested,
6938         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6939         accUse size (= 1),
6940         * (aopGet): added case for AOP_ACC and don't return "accumulator
6941         bug" but WREG instead,
6942         * (popGetTempReg): pushes contents of temporary register in stack,
6943         * (popReleaseTempReg): pops contents of temporary register from
6944         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6945         * (pic16_popGet): separated case AOP_ACC to return register WREG
6946         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6947         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6948         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6949         the use of immediate pointers to certain cases only.
6950
6951         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6952         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6953         * (assignResultValue, genCall, genRet): modified to use the new
6954         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6955         genPcall is still broken,
6956         * (genFunction): added code to create 'A' type pBlocks when
6957         interrupt functions are generated, code not extensively tested yet,
6958         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6959         * (genEndFunction): modified so ISRs pop stored registers from stack,
6960         * (genMultOneByte): cleanup,
6961         * (AccRsh): added flag andmask, to and result with appropriate mask,
6962         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6963         * (genDataPointerGet): fixed and reenabled its use,
6964         * (genNearDataPointerGet): bugs fixed,
6965         * (genDataPointerSet): bugs fixed,
6966         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6967         pic16_DumpSymbol, pic16_DumpOp,
6968         * src/pic16/genutils.h: function prototypes for the above functions,
6969         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6970         pointers,
6971         * (pic16emitRegularMap): many many many improvements, but needs a
6972         major cleanup,
6973         * src/pic16/main.c: enable_stack in pic16_options is removed,
6974         * (_pic16_parseOptions): removed command line options -penable-stack,
6975         * (_process_pragma): emit stack symbol only when stack pragma is
6976         processed,
6977         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6978         redirected to FSR0L/FSR0H pair,
6979         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6980         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6981         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6982         for immediates,
6983         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6984         * (dumpPicOptype): NEW,
6985         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6986         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6987         with movff instruction,
6988         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6989         added pic16_int_regs, some packRegsFor* functions are commented out,
6990         because produce errors,
6991         * src/pic16/NOTES: minor modifications
6992
6993 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6994
6995         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6996         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6997         --pack-iram.
6998         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6999         * as/mcs51/lkaomf51.c: fixed bug #895763
7000
7001 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
7002
7003         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
7004
7005 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7006
7007         * doc/sdccman.lyx: added details about the HC08 storage classes and
7008         interrupts, fixed the register usage info for z80 & gbz80
7009
7010 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
7011
7012         * doc/sdccman.lyx: added more pic16 port documentation
7013         * device/include/pic16/: added header pic18fregs.h
7014
7015 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
7016
7017         * doc/sdccman.lyx: added Vangelis' contribution
7018
7019 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7020
7021         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
7022         extend to the next CALL or PCALL, not just to the next CALL.
7023
7024 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
7025
7026         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7027
7028 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7029
7030         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7031         bug #895752 and a better fix for bug #716790
7032
7033 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7034
7035         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7036
7037 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7038
7039         * doc/sdccman.lyx: minor changes, minor changed
7040
7041 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7042
7043         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7044         which can't handle SDCC_NEWONEBYTEOPS,
7045         (geniCodeMultiply): removed conversion from mult to shift for pic14
7046         and pic16
7047
7048 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7049
7050         * src/hc08/gen.h,
7051         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7052         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7053         thus fixing bug #895406
7054
7055 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7056
7057         * device/lib/_modsint.c,
7058         * device/lib/_modslong.c: sign follows divisor only
7059         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7060         signs or signedness can be ignored
7061         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7062         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7063         added optimization for IFX,
7064         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7065         arguments;
7066         reenabled optimization for IFX, which was removed on 2004-01-11
7067         * src/SDCCast.h: added return type IFX
7068         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7069         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7070         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7071         SDCC_OLDONEBYTEOPS selects the old behaviour
7072         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7073         changed again and commented promotion rule
7074         * src/SDCCval.c (valDiv): promotion no longer necessary
7075         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7076         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7077         rewritten
7078         * support/regression/tests/onebyte.c: added
7079
7080 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7081
7082         * gen.c (genInline): reverted to old code for assemnling inline
7083         code because of bug reported James Chadd
7084
7085 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7086
7087         * ralloc.h: missing declarations from previous patch,
7088         seems that patch for ralloc.h was never applied, fixed
7089
7090 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7091            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7092
7093         * pcode.c,
7094         * pcode.h,
7095         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7096         indirect addressing. Marked FSR0 as deprecated
7097         * gen.c (pointerCode): commented out, not needed now
7098         (pic16_popGet2p): new MOVFF helper function
7099         (genGenPointerGet),
7100         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7101         (shiftRLong): removed duplicate debugging info
7102
7103 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7104
7105         * src/ds390/gen.c (genNearPointerGet),
7106         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7107         optimization with bits, but not bitfields.
7108         * src/ds390/ralloc.c (packRegisters),
7109         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7110
7111 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7112
7113         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7114
7115 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7116
7117         * src/SDCCsymt.h,
7118         * src/SDCCicode.c (operandFromSymbol),
7119         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7120         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7121         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7122         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7123         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7124         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7125         bug #892038
7126         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7127         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7128         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7129         * src/SDCCsymt.c (newSymbol),
7130         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7131         enumerator_list),
7132         * src/SDCCval.h,
7133         * src/SDCCval.c (newiList): fixed bug #885705
7134
7135 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7136
7137         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7138         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7139
7140 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7141
7142         * device/include/c8051f120.h,
7143         * device/include/c8051f300.h,
7144         * device/include/c8051f310.h: added/updated header files for Silicon
7145         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7146         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7147         in new section Submitting patches
7148
7149 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7150
7151         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7152         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7153         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7154         genGenPointerSet),
7155         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7156         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7157         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7158         genGenPointerSet),
7159         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7160         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7161         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7162         genGenPointerSet),
7163         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7164         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7165         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7166         genGenPointerSet): fixed bug #892400
7167         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7168         to eliminate build warnings.
7169         * src/SDCCast.c (processParms),
7170         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7171         fixed bug 751859
7172         * support/valdiag/valdiag.py: added GCC to the list of defines active
7173         when compiling with gcc
7174
7175 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7176
7177         * support/Util/SDCCerr.h,
7178         * support/Util/SDCCerr.c,
7179         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7180         with an incomplete type (fixed bug #883734)
7181         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7182
7183 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7184
7185         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7186
7187 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7188
7189         * src/SDCCast.c (decorateType),
7190         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7191         function pointer implementation
7192         * support/regression/tests/funptrs.c: added tests to verify both forms
7193         of function pointers work correctly. Added tests to verify parameters
7194         are passed in the correct order.
7195
7196 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7197
7198         * device.c (regCompare): registers are sorted by ascending
7199         address and increasing size,
7200         * main.c (_pic16_finaliseOptions): removed the declaration
7201         of compiler macro MCU. Now a macro of the format pic18fxxxx
7202         will be defined from the command line
7203
7204 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7205             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7206
7207         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7208         PCOP_RLCF was overwritten!
7209         * gen.c (genSkip): commented out calls to pic16_emitcode,
7210         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7211         * (genlshTwo),
7212         * (genRRC): added debugging info,
7213         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7214         overwritten while shifting,
7215         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7216         overwritten while shifting,
7217         * (AccLsh),
7218         * (AccRsh),
7219         * (shiftLLeftOrResult),
7220         * (shiftRLeftOrResult),
7221         * (shiftRLong),
7222         * (shiftLLong): Implemented with pic16_emitpcode
7223         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7224         * (genLeftShift): Fixed bug, operand for shift by variable always
7225         was "and"ed with 0x0f,
7226         * (genLeftShiftLiteral),
7227         * (genrshTwo),
7228         * (genRightShiftLiteral): added debugging info,
7229         * (genrshFour): added comment,
7230         * (genRightShift): determined signedness from operand "left"
7231         instead of "result"
7232
7233 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7234
7235         * src/SDCCicode.c (geniCodeParms),
7236         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7237         function pointers, fixed function pointer bugs #861242 and #861896
7238
7239 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7240
7241         * device/include/c8051f000.h,
7242         * device/include/c8051f120.h,
7243         * device/include/c8051f300.h: added header files for Silicon
7244         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7245
7246 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7247
7248         * src/SDCCast.c (processParams): added new type flow and restructured
7249         (gatherAutoInit): added new type flow
7250         (addCast): cosmetic changes
7251         (getLeftResultType): added new type flow for array indices, patch
7252         provided by Stas, see FR #877103
7253         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7254         array index patch by Stas
7255         * src/SDCCast.h: added prototype getResultTypeFromType()
7256         * src/SDCCval.h,
7257         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7258         * src/pic/glue.c (pic14emitStaticSeg),
7259         * src/pic16/glue.c (pic16emitStaticSeg),
7260         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7261         for initialization of symbols
7262         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7263         * support/Util/SDCCerr.h:
7264         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7265         * .version: bumped version number to 2.3.8
7266         * device/include/Makefile.in (install),
7267         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7268         avoid warnings
7269
7270 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7273         Slade Rich fixed an optimization bug
7274         * src/pic/pcodepeep.c,
7275         * src/pic/pcoderegs.c
7276         * doc/Makefile (install): added test for directory
7277
7278 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7279
7280         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7281         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7282         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7283         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7284         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7285         * as/mcs51/asexpr.c (term),
7286         * as/hc08/asexpr.c (term): fixed bug #887146
7287
7288 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7289
7290         * src/z80/gen.c (genMult): handle single byte result product
7291         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7292         DUMMY_READ_VOLATILE (fixed bug #886367)
7293
7294 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7295
7296         * support/regression/tests/libmullong.c: fixed logic, on little endian
7297         hosts we ended without a mullong_wrapper()
7298
7299 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7300
7301         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7302         virus/worm forged address usage.
7303
7304 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7305
7306         Fixed promotion, it should be done on AST level:
7307         * src/SDCCast.c (addCast): added promotion to int
7308         (decorateType): updated call to upCast()
7309         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7310         usualUnaryConversions()
7311
7312 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7313
7314         * support/regression/tests/literalop.c (mulWrapper): Added a
7315         wrapper to remove integer overflow warnings.
7316
7317         * support/regression/tests/float_trans.c: Made work on host.
7318
7319         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7320         location of sz80.
7321
7322         * support/regression/generate-cases.py (main): Changed from inline
7323         to a main method.
7324
7325         * doc/Makefile (install): Changed to depth first to get rid of
7326         missing directory install warning.
7327
7328         * as/Makefile (install-doc): Made work on Mac.
7329
7330 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7331
7332         * src/SDCCast.c: added an additional type flow in decorateType() of
7333         opposite direction, see feature request #860006; it's enabled at runtime
7334         by setting the environment variable SDCC_NEWTYPEFLOW
7335         * src/SDCCast.h: changed prototype of decorateType()
7336         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7337         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7338         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7339         see feature request #877103
7340         * src/SDCCval.c: updated call of decorateType()
7341         (valBitwise): fixed bug #882876
7342         (valMinus): added promotion
7343         (valLogicAndOr): result is unsigned
7344         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7345         * src/SDCCsymt.c (computeType),
7346         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7347         must not cause an unsigned operation
7348         * src/pic/glue (pic14emitRegularMap),
7349         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7350
7351 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * src/pic/pcode.c (PCodeID): commented out left over debug code
7354
7355 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7356
7357         * support/valdiag/tests/overflow.c: added shift tests
7358         * src/pic/device.c,
7359         * src/pic/gen.c,
7360         * src/pic/gen.h,
7361         * src/pic/glue.c,
7362         * src/pic/main.c,
7363         * src/pic/pcode.c,
7364         * src/pic/pcode.h,
7365         * src/pic/pcodepeep.c,
7366         * src/pic/pcoderegs.c,
7367         * src/pic/ralloc.c,
7368         * src/pic/ralloc.h: applied patch from Slade Rich;
7369         added support for multiple code pages and multiple RAM banks on the
7370         PIC 14 port. The ASM files now no longer simply assume all the
7371         code / RAM are in the same page / bank. This means the linker can
7372         safely allocate code/RAM of separate ASM files to different pages/banks.
7373         * doc/sdccman.lyx: added Slade's tips
7374         * src/mcs51/peeph.def: fixed bug #880768
7375
7376 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7377
7378         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7379         * src/SDCCast.c (decorateType): fixed bug #880197
7380
7381 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7382
7383         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7384         getopt.h.
7385
7386         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7387         strtof is not part of C89 and isn't included with Mac OS X.
7388
7389 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7390
7391         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7392         shiftL2Left2Result): fixed bug #879326
7393         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7394         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7395         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7396         address fetch for clr instruction
7397         * device/lib/hc08/_mulint.c: created optimized assembly version
7398         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7399
7400 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7401
7402         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7403         proposed in FR #877103
7404
7405 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7406
7407         * src/SDCCval.c (cheapestVal): added missing checks
7408         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7409         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7410
7411 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7412
7413         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7414         equal operands
7415
7416 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7417
7418         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7419         loaded with the linker search paths (-L arguments) and the libraries
7420         to be linked with the current source (-l arguments). Changes
7421         currently will affect only the pic16 port.
7422         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7423         include path the port specific paths and port specific libraries,
7424         * gplink command now contains the $3 argument,
7425         * src/pic16/device.h,
7426         * src/pic16/device.c,: structure PIC_device is made public and
7427         renamed to PIC16_device, the same for variable Pics which is renamed
7428         to Pics16. Updated all references to them.
7429         * src/pic16/glue.c (pic16glue): corrected bug with code
7430         initialization which bypassed the variable initializations block.
7431
7432         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7433         COMPILE_FLAGS and added the --nostdinc option
7434
7435 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7436
7437         * device/include/mc68hc908jb8.h: Register defs for another member
7438         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7439
7440 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7441
7442         Documenting changes from previous commits.
7443         * configure.in (version 1.56),
7444         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7445         when generating output files to configure the pic16 library,
7446         but now I've commented it out, since gputils aren't installed in the
7447         SF compile farm, so library won't compile
7448
7449         * device/lib/Makefile.in (version 1.56): initially I've added in
7450         target 'all' the prerequestive 'model-pic16' so it compiled the
7451         pic16 library, but now I've commented it out for the same reasons
7452         above,
7453         * added targets 'model-pic16' and 'objects-pic16' to compile the
7454         library
7455         * added target 'port-specific-objects-pic16' to handle the
7456         generated libraries and copy them into the build/ directory
7457         * added target 'clean-intermediate-pic16' to clean intermediate
7458         files into pic16 directory
7459         * in target 'installdirs' added line to create directory pic16 in
7460         the installation path
7461
7462         * device/include/Makefile.in (version 1.11): in target 'install'
7463         added lines to copy all header files to installation path,
7464         * in target 'installdirs' added line create directory for pic16
7465         headers in the installation path
7466
7467 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7468
7469         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7470          a function call
7471
7472 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7473
7474         * configure,
7475         * device/lib/configure.in,
7476         * device/lib/configure: fixed for autoconf 2.57
7477
7478 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7479
7480         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7481         option so that it actually works. Made it specific to the z80, since
7482         the gbz80 doesn't have these kinds of I/O ports.
7483
7484 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7485
7486         * device/include/z180.h,
7487         * device/lib/_memcpy.c,
7488         * device/lib/_memmove.c,
7489         * device/lib/_mulint.c,
7490         * device/lib/ser_ir.c,
7491         * device/lib/ser_ir_cts_rts.c,
7492         * device/lib/_strcmp.c,
7493         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7494         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7495         portmode; added deprecation warning for bank= and protmode= forms.
7496         Also, guard against buffer overflow.
7497         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7498
7499 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7500
7501         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7502         changed interrupt vector table generation to only emit declared vectors.
7503         * device/include/Makefile.in: added missing backslash
7504         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7505
7506 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7507
7508         Mainly changes to support compilation of the device libraries
7509         * src/pic16/device.c: stack is allocated via symbol and not
7510         via literal number. The symbol is placed in the corresponding
7511         position of the data ram
7512         * (pic16_dump_section): relocatable and absolute uninitialized
7513         data are now emitted in sorted order to reduce section naming,
7514         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7515         weren't marked as being in the access bank,
7516
7517 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7518
7519         Added portion of GNU PIC Library under the directory
7520         device/include/pic16 and device/lib/pic16. These files
7521         contain the declarations of SFRs for the PIC18Fxx2 devices.
7522         The directory is initialized via configure from toplevel.
7523
7524 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7525
7526         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7527         the spilllocations to be compared correctly
7528
7529 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7530
7531         * src/SDCCast.c (decorateType): fixed bug introduced today
7532
7533 2004-01-12  Borut Razem <borut.razem AT siol.net>
7534
7535         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7536         doc/sdccman.lyx: upper case pragmas are deprecated
7537
7538 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7539
7540         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7541         in simpler and even better code
7542
7543 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7544
7545         * src/SDCCicode.c (operandOperation): fixed bug #874819
7546         * src/SDCCast.c (decorateType): fixed
7547         char foo (unsigned long ul) { return ul > 0; }
7548
7549 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7550
7551         * doc/sdccman.lyx: Moved and added some sections, small changes
7552         all over. Telling LaTeX to be less strict with word spacing
7553         to better keep the right margin. Changed some notes about
7554         maintainance of the ports in section 3.2.1 - is it OK like this?
7555
7556 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7557
7558         SDCC source changes:
7559         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7560         convilong): modified to inform the pic16 port that builtin functions
7561         are external
7562
7563         PIC16 PORT specific changes:
7564         * src/pic16/device.c pic16_dump_equates() added,
7565         processor registers declared internally by the port are emitted in
7566         the translation as equates,
7567         * src/pic16/gen.c: inline code is passed unprocessed to the
7568         translation,
7569         * (pic16_popGetLit2): fnuction modified to take second operand as
7570         pCodeOp pointer and not as literal,
7571         * (popRegFromIdx): prefixed with pic16_,
7572         * (pic16_popCombine2): modified to receive already allocated pCode
7573         operands,
7574         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7575         * (genFunction): initializes local stack frame and pushes on stack
7576         all the registers used by this function,
7577         * (genEndFunction): restores all registers from stack and restores
7578         stack frame,
7579         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7580         improvements,
7581         * (pic16glue): changed the program startup sequence,
7582         * added new dbName code 'A' for functions placed in absolute section
7583         * src/pic16/main.c: added function attribute _naked,
7584         * added pragma 'code' to place a fnuction at an absolute address,
7585         * added command line arguments --debug-ralloc and --pcode-verbose,
7586         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7587         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7588         * (pic16_newpCodeOpLit2): modified to take the second operand as
7589         pCodeOp pointer,
7590         * (pic16_printpBlock): modified to emit each function in a separate
7591         section,
7592         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7593         UPPER for immediate operands,
7594         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7595         instruction,
7596         * src/pic16/peeph.def: all peepholes with movff are commented out,
7597         because there is a problem in the pcode peep optimizer,
7598         * src/pic16/ralloc.c: the register allocator can now reuse local
7599         function symbols for another function. This saves register usage.
7600         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7601
7602         Added file src/pic16/NOTES with information about program writing on
7603         the current port version.
7604
7605 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7606
7607         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7608         and peephole 252 (array access)
7609
7610 2004-01-09  Borut Razem <borut.razem AT siol.net>
7611
7612         * src/SDCCmain.c : fixed #872250: -l command line defined library
7613           files are scanned before standard library files
7614
7615 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7616
7617         * src/SDCCast.c (decorateType): fixed bug #874046
7618
7619 2004-01-09  Borut Razem <borut.razem AT siol.net>
7620
7621         * support/scripts/sdcc.nsi: remove previous installation
7622
7623 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7624
7625         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7626         bytes for last interrupt vector (mcs51)
7627         * sdcc.spec: fixed typo
7628
7629 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7630
7631         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7632         gen51Code): more efficient parameter receive for --model-large
7633         ("bug" #845294)
7634
7635 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7636
7637         * src/ds390/main.c,
7638         * src/z80/main.c: added missed needLinkerScript flags (more than
7639         one port structure defined in these file)
7640         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7641         bug #795325
7642
7643 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7644
7645         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7646         * src/port.h: added flag needLinkerScript in port->linker
7647         structure to inform whether to create a .lnk file or not,
7648         * src/avr/main.c,
7649         * src/ds390/main.c,
7650         * src/hc08/main.c,
7651         * src/mcs51/main.c,
7652         * src/pic/main.c,
7653         * src/pic16/main.c,
7654         * src/xa51/main.c,
7655         * src/z80/main.c: changed appropriately to configure
7656         needLinkerScript flag
7657         * src/pic/gen.c,
7658         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7659         * src/pic/glue.c: added variable udata_section_name to
7660         override default uninitialized data segment definition for
7661         devices only with SHAREBANK memory (reported from Erik Epetrich)
7662         * (pic14emitOverlay): modified to emit a commented overlay segment
7663         directive when no overlay data exist
7664         * (picglue): modified to emit uninitialized data segment
7665         according to udata_section_name
7666         * src/pic/main.c (_pic14_parseOptions): added command line
7667         options --udata-section-name=[name] to override default
7668         udata definition name
7669         * modified _linkCmd and _asmCmd to include compiler passed
7670         arguments via -W option
7671         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7672         object file from '.rel' to '.o' in port->linker structure,
7673         changed size of fptr from 2 to 3 in port structure
7674
7675 2004-01-07  Borut Razem <borut.razem AT siol.net>
7676
7677         * support/scripts/sdcc.nsi: update PATH
7678         * support/scripts/sdcc.ico: craeted
7679
7680 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7681
7682         * device/include/Makefile.in: fix install
7683         * doc/Makefile: fix install
7684
7685 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7686
7687         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7688         in bug #860505
7689         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7690         how the function variable allocation summary is displayed; also
7691         include information about variables allocated to the overlay
7692         segment
7693
7694 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7695
7696         * as/mcs51/lkmain.c: Help about -Y option
7697         * as/mcs51/lkarea.c: Fixed gcc warnings
7698
7699 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7700
7701         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7702         fixed warning
7703         * support/valdiag/tests/overflow.c: added
7704         * src/SDCCast.c (decorateType),
7705         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7706         LEFT_OP (left shift)
7707
7708 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7709
7710         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7711         (default behaviour).
7712
7713 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7714
7715         A python script to validate compiler diagnostic messages. It can be
7716         used to verify that sdcc complains about bad c source code and
7717         gives a good location of the error.
7718         * support/valdiag/Makefile,
7719         * support/valdiag/valdiag.py,
7720         * support/valdiag/tests/*
7721
7722 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7723
7724         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7725         * src/SDCCsymt.c (newEnumType),
7726         * src/SDCCsymt.h
7727         * support/Util/SDCCerr.c,
7728         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7729         enum related bugs.
7730         * support/regression/tests/enum.c: added test for enum values that
7731         require at least 2 bytes of storage.
7732
7733 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7734
7735         * src/common.h: added ifndef/define/endif macros
7736         around the header file.
7737         Bug reported from Jesus Calvino-Fraga
7738
7739 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7740
7741         * sdcc.spec: updated
7742         * device/include/Makefile.in: don't install CVS directories
7743         * device/lib/Makefile.in: added removal of CVS directories after install
7744         * doc/Makefile: fixed install, added local_icons
7745         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7746         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7747         * src/ds390/gen.c (genRightShift): fixed bug #870788
7748         * src/SDCCast.c (decorateType): fixed bug #870781
7749
7750 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7751
7752         PIC16 port related changes:
7753         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7754         added variable stackPos,
7755
7756         * gen.c: genCall, assignResultValue: added support for
7757         pushing/retrieving function parameters to/from stack,
7758         genFunction,genEndFunction: setup stack frame for the
7759         generated function,
7760         genAddrOf: will be changed according to bug 863624
7761
7762         * added files genutils.c and genutils.h which contain gen*
7763         debugged and optimised functions extracted from gen.c
7764
7765         * glue.c: added variable 'externs' which holds extern symbols,
7766         pic16emitRegularMap: is modified to properly handle relocatable
7767          symbols under the new scheme,
7768         pic16createInterruptVect: is modified
7769         pic16printPublics: is modified to emit 'global' assembler directives,
7770         added pic16_printExterns to print extern symbols,
7771         pic16glue: initializes stack/frame pointer in the beginning of
7772         the assembly output. Temporary hack, will be corrected later,
7773         because gplink yet does not support stack and SDCC does not
7774         yet support a type of crt0.o object to create the final binary.
7775
7776         * Removed many lines that contain 8051 legacy code.
7777         * The code is finally placed under a 'code' directive.
7778         * Added port specific options.
7779
7780         * _process_pragma: simplified since now we do not need *special*
7781         include file to define SFR registers. But a separate header
7782         will be needed. This will be developed later.
7783         * _pic16_parseOptions: added, parses port specific options:
7784         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7785         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7786         --preplace-udata-with=
7787
7788         * _pic16_setDefaultOptions: modified to initialize section names,
7789         but hack is temporarly out of order since it needs improvement.
7790         * _pic16_genAssemblerPreamble: configuration words are emitted by
7791         their address instead of their name. This part is incomplete and
7792         supports only the 18Fxx2 devices. Other devices will emit an error
7793         during assembly since they do not contain the same set of config
7794         registers
7795         * _pic16_genIVT: is modified,
7796
7797         * pcode.c: added definitions for some hardware registers that are needed
7798         for stack support
7799         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7800         All PCI entries are updated. Now LFSR is supported.
7801         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7802         * added pic16_newpCodeOpLit2 to support instructions with
7803         two literal arguments
7804         * pic16_pCode2str: corrected code that emits assembler instructions
7805         with two literal operands and those that have an access bit modifier
7806         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7807         this fixes a bug which caused some labels to be lost, when an
7808         assembler directive was added, i.e. banksel,
7809         * pic16_FixRegisterBanking: improved logic that causes the insertion
7810         of bank switching,
7811         * InlineFunction: functions that are called once, are not any more
7812         inlined. This can be a port option in the future,
7813
7814         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7815
7816         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7817         hold the corresponding uninitialized symbols,
7818         * pic16_allocProcessorRegister: registers have explicit marked the
7819         accessBank field,
7820         * pic16_allocInternalRegister: registers are explicit marked as
7821         not used,
7822         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7823         processing list, so bit registers were lost,
7824         *
7825
7826         * ralloc.h: added field 'accessBank' and original symbol operand
7827         in register definition,
7828         * removed the field isMapped from register definition,
7829
7830         ** Several functions have been removed from various sources:
7831         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7832         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7833         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7834         pic16_assignRelocatableRegisters
7835
7836         ** others have been introduced:
7837         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7838         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7839
7840 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7841
7842         * support/scripts/inc2h.pl: changed definition of BIT_AT
7843         to emit 'sbit at' instead of 'bit at'. This was a request.
7844
7845         PIC16 port related preliminary changes:
7846         * gen.c: prefixed function popRegFromString with
7847         pic16_ and all references to it corrected
7848         * pcode.c: all pic16_pc_* hardware registers prefixed
7849         with underscore (_),
7850         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7851         * ralloc.c: newReg(): when register is REG_SFR then
7852         set address to rIdx,
7853         pic16_allocProcessorRegister(): marks register wasUsed=0
7854         pic16_writeUsedRegs(): added a call to assign processor
7855         registers via pic16_assignFixedRegisters
7856
7857 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7858
7859         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7860         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7861         variables in unused register banks.  Also the SSEG is placed
7862         wherever there is enough space for it, and IDATA can be anywhere
7863         in internal RAM.  For now compile using -Wl-Y[stack_size].
7864         The mem file is different for this option as well, since it
7865         makes no sense of talking about DSEG lenght.
7866
7867 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7868
7869         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7870         in certain cases, e.g. when ROM assignment, patch provided
7871         from Albert den Haan.
7872
7873 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7874
7875         Many signedness and type propagation fixes:
7876         * src/SDCCicode.c: made geniCodeCast() static
7877         replaced SPEC_ by IS_ (cosmetic)
7878         (operandOperation): fixed div and mod operation
7879         (usualBinaryConversions): added support for promotion of char
7880         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7881         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7882         (geniCodeAdd): an array index will stay unsigned, even if promoted
7883         from char to int
7884         (geniCodeArray): ditto
7885         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7886         * src/SDCCsymt.c (computeType): added more support for char;
7887         promotion of char is selectable by promoteCharToInt, fixed signedness
7888         for all cases
7889         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7890         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7891         * src/SDCCval (val*): replaced signedness calculation by
7892         computeType()
7893         rearranged if-branches (cosmetic)
7894         (valShift): added warning W_SHIFT_CHANGED
7895         (valCompare): fixed problem with different types
7896         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7897         * support/regression/tests/literalop.c: added many cases
7898         * support/regression/tests/ast_constant_folding.c: changed finally to
7899         'unsigned int'
7900         * .version: new year, new version: 2.3.7
7901         * src/SDCCmain.c (main): applied patch #866468
7902         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7903         provided by Scott Bronson
7904         * doc/sdccman.lyx: updated documentation for sdcdb
7905         updated and added chapter tips
7906
7907 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7908
7909         * src/SDCCsymt.h: missing from yesterday's commits
7910
7911 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7912
7913         * src/SDCC.y (struct_or_union_specifier),
7914         * support/Util/SDCCerr.c,
7915         * support/Util/SDCCerr.h: verify that struct & union tags are used
7916         as declared.
7917
7918 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7919
7920         * src/SDCCglobl.h: missing from yesterday's commits
7921
7922 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7923
7924         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7925         sft_attributes, struct_declaration, parameter_declaration,
7926         type_name, start_block, declaration_list),
7927         * src/SDCC.lex (check_type): support redefinition of typedef names
7928
7929 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7930
7931         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7932         aligned xdata arrays. Erik helped me with the if clause.
7933
7934 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7935
7936         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7937         warning
7938
7939 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7940
7941         * src/SDCCast.h,
7942         * src/SDCCast.c (newAst_),
7943         * src/SDCCicode.h,
7944         * src/SDCCicode.c (ast2iCode, newiCode),
7945         * src/SDCCglobl.h,
7946         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7947         expr, statement, expression_statement, selection_statement,
7948         iteration_statement, expr_opt, jump_statement): foundation for tracking
7949         sequence points
7950         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7951         point code too)
7952
7953 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7954
7955         * support/Util/SDCCerr.c,
7956         * src/SDCCast.h,
7957         * src/SDCCast.c (createCase, createDefault, decorateType),
7958         * src/SDCClabel.c (labelUnreach),
7959         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7960         to error messages.
7961         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7962         (with thanks to Stas Sergeev)
7963         * device/include/time.h,
7964         * device/lib/time.c (CheckTime): suppress unreachable code warning
7965
7966 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * src/SDCCast.c (createIvalCharPtr),
7969         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7970         bug #753752)
7971         * support/regression/tests/nullstring.c: tests for these two bugs
7972
7973 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7974
7975         * support/Util/SDCCerr.h,
7976         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7977         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7978         about storage class and 'at' used inside struct or union
7979         * src/SDCCBBlock.c (iCodeFromeBBlock),
7980         * src/SDCCcse.c (ifxOptimize),
7981         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7982         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7983         printIval, emitStaticSeg, emitOverlay),
7984         * src/SDCClabel.c (deleteIfx),
7985         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7986         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7987         gatherAutoInit, processParms),
7988         * support/Util/SDCCerr.h,
7989         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7990         reporting for post-parse errors.
7991
7992 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7993
7994         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7995         implicit casts via union; they don't work on big endian systems
7996         (possible fix for bug #861138)
7997
7998 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7999
8000         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
8001         * src/mcs51/main.c: fixed the fix for bug #737001
8002
8003 2003-12-15  Borut Razem <borut.razem AT siol.net>
8004
8005         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
8006
8007 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8008
8009         * support/makebin/makebin.c: put output in binary mode
8010
8011 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8012
8013         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
8014         xdata and data memory on startup. Set the environment variable
8015         SDCC_NOGENRAMCLEAR to disable this.
8016         * src/mcs51/peephole.def,
8017         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
8018         (allows non-interrupt and interrupt code to safely compete for a resource
8019         without the non-interrupt code having to disable interrupts)
8020
8021 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8022
8023         * src/SDCCicode.c (geniCodeAdd),
8024         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
8025         with valFromType if type might be a pointer and host is big endian).
8026         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8027         types, not just integer types.
8028         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8029         multiply defined with mismatching "at" address.
8030
8031 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8032
8033         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8034         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8035         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8036         with embedded nulls (fixed bug #753752)
8037
8038 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8039
8040         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8041         Apparently this did not see much testing (endless loop)
8042
8043 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8044
8045         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8046
8047 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8048
8049         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8050         gracefully handle NULL memmap pointers
8051
8052 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8053
8054         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8055         instead of deleting the iCode when an operand is volatile
8056         * src/z80/gen.c (genDummyRead),
8057         * src/mcs51/gen.c (genDummyRead),
8058         * src/ds390/gen.c (genDummyRead),
8059         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8060         not just IC_RIGHT
8061         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8062         * src/SDCC.y: fixed bug #850420
8063
8064 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8065
8066         Applied z80 i/o port patch from Peter Townson and fixed some operators
8067         to better handle operands in A register.
8068         * device/include/z180.h
8069         * src/SDCC.y
8070         * src/SDCCglue.c
8071         * src/z80/gen.c
8072         * src/z80/gen.h
8073         * src/z80/main.c
8074         * src/z80/peeph-z80.def
8075         * src/z80/peeph.def
8076         * src/z80/z80.h
8077
8078 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8079
8080         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8081
8082 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8083
8084         * device/lib/hc08/_mullong.c: Removed extra #endif
8085
8086 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8087
8088         * sim/ucsim/hc08.src/inst.cc,
8089         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8090         carries from x to h
8091         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8092         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8093         * device/include/stdarg.h: fixed varargs for hc08
8094         * device/lib/Makefile.in,
8095         * device/lib/hc08/Makefile,
8096         * device/lib/hc08/_mulint.c,
8097         * device/lib/hc08/_mullong.c: fixed some endian problems
8098
8099 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8100
8101         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8102         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8103         * device/lib/_gptrget.c,
8104         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8105
8106 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8107
8108         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8109         * src/SDCCast.c (astErrors): fixed bug #846007
8110         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8111
8112 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8113
8114         * src/SDCCast.c (decorateType): disabled a transformation I added in
8115         revision 1.188 (access to fields of a structure at an absolute address);
8116         it breaks with bitfields, extern declarations, and gcse analysis.
8117         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8118         could be assigned through a pointer, so don't complain.
8119         * src/SDCCast.c (astErrors),
8120         * src/SDCCast.h,
8121         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8122
8123 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8124
8125         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8126         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8127         output of __config directives, since gpasm now supports them
8128         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8129         pre-processor macro, i.e. -DMCU=p18f452
8130         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8131         and modified to handle 'cast' icode similarly to '=' icode
8132         * src/pic16/device.h (typedef struct PIC_device): added field
8133         'extMIface' to indicate that chip has external memory interface
8134         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8135         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8136         18F8720
8137
8138 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8139
8140         * src/SDCC.y (pointer): fixed bug #846006
8141         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8142         * src/SDCCast.c (decorateType): fixed bug #846009
8143         * src/ds390/peeph.def,
8144         * src/ds390/gen.c (genAnd, genOr),
8145         * src/mcs51/peeph.def,
8146         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8147
8148 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8149
8150         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8151         * src/SDCCdflow.c
8152         * src/SDCCcse.c
8153         * src/SDCCcse.h
8154         * src/SDCCBBlock.h
8155         * src/SDCCBBlock.c
8156
8157 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8158
8159         fixed bug #845089
8160         * src/SDCCbitv.h,
8161         * src/SDCCbitv.c: added function to free a bitvector
8162         * src/SDCClrange.h,
8163         * src/SDCClrange.c: added function to recompute the liveranges
8164         * src/avr/ralloc.c,
8165         * src/ds390/ralloc.c,
8166         * src/hc08/ralloc.c,
8167         * src/mcs51/ralloc.c,
8168         * src/pic/ralloc.c,
8169         * src/pic16/ralloc.c,
8170         * src/xa51/ralloc.c,
8171         * src/z80/ralloc.c: recompute the liveranges after register packing
8172
8173 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8174
8175         * src/SDCCloop.c (newInduction): fixed bug #845630
8176
8177 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8178
8179         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8180         inadvertantly left behind from my 2003-11-12 change
8181
8182 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8183
8184         Updated headers I neglected to commit yesterday.
8185         * src/SDCClrange.h,
8186         * src/SDCCicode.h
8187
8188 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8189
8190         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8191         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8192         * src/SDCCopt.c (eBBlockFromiCode),
8193         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8194         the creation of the key hash table from the sequencing so it can be used
8195         earlier (for some GCSE bug fixes still pending)
8196
8197 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8198
8199         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8200         * support/regression/tests/addsub.c: testing genPlus shortcut
8201
8202 2003-11-15  Borut Razem <borut.razem AT siol.net>
8203
8204         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8205
8206 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8207
8208         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8209         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8210         ordering is immaterial.
8211         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8212
8213 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8214
8215         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8216         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8217         (SIGSEV) of bug #840381
8218         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8219         unlink new file before rename if new and old filenames are the same)
8220
8221 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8222
8223         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8224         uninitialized variables) for the mcs51. Set environment variable
8225         SDCC_GENRAMCLEAR to test.
8226         xdata initialization slightly shorter
8227
8228 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8229
8230         * src/SDCCsymt.h,
8231         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8232         #838241 & 780691 (basicly the same bug)
8233         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8234         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8235
8236 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * src/SDCCmain.c (linkEdit): "fix" #834252
8239
8240 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8241
8242         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8243         * src/SDCCast.h,
8244         * src/SDCC.y: fixed bug #819403
8245
8246 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8247
8248         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8249         the reentrant attribute.
8250         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8251         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8252         simulation
8253         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8254         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8255         erroneously reduced to a literal.
8256         * src/hc08/ralloc.c (packRegisters, rematStr),
8257         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8258         some cases
8259
8260 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8261
8262         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8263         * doc/sdccman.lyx: changed from 'article' to 'book'
8264         * doc/Makefile: readded test_suite_spec and cdbfileformat
8265
8266 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8267
8268         * device/include/stdlib.h: include malloc.h to comply with ANSI
8269         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8270
8271 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8272
8273         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8274         * doc/clean.mk: also remove *.out files
8275         * doc/sdccman.lyx: some additions, larger top/bottom margins
8276
8277 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8278
8279         * src/SDCC.y: fixed bug #837365
8280         * support/regression/tests/bitopcse.c
8281         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8282         a symbol (might be valop instead)
8283         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8284         * device/lib/clean.mk: added hc08 to the cleaning list
8285
8286 2003-11-04  Borut Razem <borut.razem AT siol.net>
8287
8288         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8289           made 2003-11-04
8290         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8291           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8292           malloc is declared in standard stdlib.h
8293
8294 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8295
8296         * device/lib/hc08/Makefile: need to clean .rel not .o files
8297         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8298
8299 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8300
8301         * src/port.h,
8302         * src/hc08/main.c,
8303         * src/mcs51/main.c,
8304         * src/ds390/main.c,
8305         * src/z80/main.c,
8306         * src/avr/main.c,
8307         * src/pic/main.c,
8308         * src/pic16/main.c,
8309         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8310         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8311         tests (which uses the port's oclsExpense function)
8312         * src/SDCC.y,
8313         * src/SDCCast.c,
8314         * src/SDCCicode.c,
8315         * src/hc08/gen.c,
8316         * src/ds390/gen.c,
8317         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8318
8319 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8320
8321         * src/SDCCcse.c (ifxOptimize),
8322         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8323         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8324         deleting the IFX iCode.
8325         * src/hc08/ralloc.c: reduced unneeded slocs
8326         * src/hc08/gen.c: fixed bug in asmopToBoolean
8327
8328 2003-11-04  Borut Razem <borut.razem AT siol.net>
8329
8330         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8331           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8332           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8333           transferred to configure
8334
8335 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8336
8337         Use headers defined in the C[++] standards:
8338         * sim/ucsim/gui.src/serio.src/fileio.cc
8339         * sim/ucsim/gui.src/serio.src/frontend.cc
8340         * sim/ucsim/gui.src/serio.src/main.cc
8341         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8342         * support/Util/NewAlloc.c
8343         * as/hc08/lklibr.c
8344         * as/mcs51/lklibr.c
8345         * as/z80/aslist.c
8346         * as/z80/assym.c
8347
8348 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8349
8350         * Added MSVC projects for hc08 assembler and linker:
8351         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8352         /as/hc08/link_hc08.dsp
8353
8354 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8355
8356         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8357
8358 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8359
8360         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8361
8362 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8363
8364         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8365
8366 2003-10-31  Borut Razem <borut.razem AT siol.net>
8367
8368         * support/cpp2/cpplib.h,
8369           support/cpp2/cpplib.c,
8370           support/cpp2/cpplex.c,
8371           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8372           to switch _asm block preprocessing on / off. Default is
8373           #pragma preproc_asm +
8374
8375 2003-10-31  Borut Razem <borut.razem AT siol.net>
8376
8377         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8378           when outputting comment blocks (when executed with -C option) and
8379           _asm (SDCPP specific) blocks
8380
8381 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8382
8383         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8384
8385 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8386
8387         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8388
8389 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8390
8391         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8392         * src/SDCCast.c (decorateType): fixed bug #832664
8393
8394 2003-10-31  Borut Razem <borut.razem AT siol.net>
8395
8396         * support\cpp2\cpplex.c: fixed for SDCPP:
8397           comments(when executed with -C option) and _asm blocks
8398           were included even if they where in skipped #if block.
8399           Applied solution from GCC cpp 3.3.2
8400
8401 2003-10-31  Borut Razem <borut.razem AT siol.net>
8402
8403         * src/SDCC.lex: sdcc now understands both formats:
8404           '# <line_number> <file_name>' and
8405           '#line <line_number> <file_name>'
8406         * support/cpp2/cppmain.c: sdcpp now generates the standard
8407           '# <line_number> <file_name>' instead of former
8408           '#line <line_number> <file_name>'
8409
8410 2003-10-30  Borut Razem <borut.razem AT siol.net>
8411
8412         * support/cpp2/cpphash.h,
8413         * support/cpp2/cpplib.h
8414         * support/cpp2/cpplex.c,
8415         * support/cpp2/cppmain.c,
8416         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8417
8418 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8419
8420         Fixed a number of problems revealed by bug #827883.
8421         * src/SDCCloop.c (loopInvariants): Spill location of the
8422         result operand should be recomputed if extracted from
8423         a loop. Also, don't extract assignments of an iTemp
8424         from a literal.
8425         * src/SDCCast.c (isConformingBody): loop reversal should
8426         not occur if the control variable is involved with a
8427         relational operator.
8428
8429 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8430
8431         * .version: bumped to 2.3.6 to reflect the big improvements
8432         made by Erik and Klaus. Thanks!
8433
8434 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8435
8436         Replaced the livrange code.
8437         * src/SDCClrange.c: added new LR code
8438         * src/SDCCloop.c,
8439         * src/SDCCBBlock.h: removed remainig parts from old LR code
8440         * src/ds390/ralloc.c,
8441         * src/ds390/gen.c: minor fixes to make it work with new code
8442
8443 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8444
8445         * as/hc08/asm.h,
8446         * as/hc08/lkrloc.c,
8447         * src/hc08/gen.c,
8448         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8449         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8450         (tweaked fix for bug #818696)
8451
8452 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8453
8454         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8455
8456 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8457
8458         * src/SDCCmain.c,
8459         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8460         * src/mcs51/gen.c (gencjneshort),
8461         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8462         more efficient (per Scott Bronson's suggestion)
8463
8464 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8465
8466         Extended the semantics of the critical keyword to include
8467         individual statements. See RFE #827755 and #799831
8468         * src/SDCC.y
8469         * src/SDCCicode.c
8470         * src/SDCCopt.c
8471         * src/SDCCast.c
8472         * support/Util/SDCCerr.c
8473         * support/Util/SDCCerr.h
8474         * src/mcs51/gen.c
8475         * src/ds390/gen.c
8476         * src/hc08/gen.c
8477
8478 2003-10-19  Borut Razem <borut.razem AT siol.net>
8479
8480         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8481
8482 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8483
8484         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8485         Fixed bug #818696
8486         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8487         and predecrement operand is displayed
8488
8489 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8490
8491         * src/SDCCval.c (valMinus): fixed bug #826041
8492
8493 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8494
8495         Some hc08 related updates that I missed earlier
8496         * sim/ucsim/stypes.h
8497         * support/regression/ports/hc08/spec.mk
8498
8499 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8500
8501         New target "hc08" for the Motorola 68hc08 family of micros
8502
8503         * configure
8504         * configure.in
8505         * Makefile
8506         * src/hc08/*
8507         * src/SDCCmain.c
8508         * src/port.h
8509         * sim/ucsim/hc08.src/*
8510         * sim/ucsim/configure.in
8511         * src/ucsim/configure
8512         * sim/ucsim/packages_in.mk
8513         * as/hc08/*
8514         * as/Makefile
8515         * device/include/mc68hc908qy.h
8516         * device/lib/hc08/*
8517         * device/lib/Makefile.in
8518         * support/regression/ports/hc08/*
8519         * support/regression/Makefile
8520
8521 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8522
8523         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8524         regression test
8525         * src/ds390/gen.c (genCast): fixed bug #821957
8526
8527 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8528
8529         * device/lib/logf.c: "fixed" overlay bug
8530         * support/regression/ports/host/spec.mk: added m library
8531         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8532         * support/regression/tests/float_trans: added (for Eric)
8533
8534 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8535
8536         * src/mcs51/gen.c (genCpl): fixed bug
8537         http://sf.net/mailarchive/message.php?msg_id=6263915
8538
8539 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8540
8541         * src/SDCCast.c (decorateType): added extended constant folding
8542         * src/SDCCsymt.c (computeType): cleanup
8543         * src/SDCCval.c (valShift): minor optimization
8544         * support/regression/tests/ast_constant_folding.c: added
8545
8546 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8547
8548         * src/SDCCmain.c: removed some unintended changes
8549
8550 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8551
8552         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8553         * src/z80/gen.c: fixed part of bug #817589
8554         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8555
8556 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8557
8558         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8559         * src/SDCCcflow.c
8560         * src/SDCCcse.c
8561         * src/SDCCdflow.c
8562         * src/SDCClabel.c
8563         * src/SDCClrange.c
8564         * src/SDCCmem.c
8565         * src/SDCCopt.c
8566         * src/SDCCpeeph.c
8567         * src/SDCCset.c
8568         * src/avr/ralloc.c
8569         * src/ds390/ralloc.c
8570         * src/izt/ralloc.c
8571         * src/mcs51/ralloc.c
8572         * src/pic/ralloc.c
8573         * src/pic16/ralloc.c
8574         * src/xa51/ralloc.c
8575         * src/z80/ralloc.c
8576         * src/z80/gen.c: removed unused label "release:"
8577
8578 2003-10-06  Borut Razem <borut.razem AT siol.net>
8579
8580         * src/SDCC.lex: removed definition of unused variables
8581           save_optimize and save_options
8582
8583 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8584
8585         * clean.mk: removed '=' in "-maxdepth=1"
8586         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8587         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8588
8589 2003-10-06  Borut Razem <borut.razem AT siol.net>
8590
8591         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8592           my_unput() replaced by unput()
8593
8594 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8595
8596         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8597         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8598         type-punned pointer will break strict-aliasing rules"
8599         Old LR behaviour is again default; Klaus' LR can be choosen by
8600         defining the environment variable LRKLAUS
8601         * src/SDCCBBlock.h
8602         * src/SDCCloop.c
8603         * src/SDCClrange.c
8604         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8605         * clean.mk: fixed removal of files in bin/CVS/
8606         * device/lib/clean.mk: fixed removal of directories small and large
8607         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8608         * src/SDCCicode.c,
8609         * src/SDCCval.c: removed superflous test for pedantic
8610
8611 2003-10-05  Borut Razem <borut.razem AT siol.net>
8612
8613         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8614           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8615           message "unmatched #pragma SAVE and #pragma RESTORE"
8616
8617 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8618
8619         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8620           assembly, critical functions, atomic, nojtbound)
8621
8622 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8623
8624         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8625         * src/SDCCBBlock.h
8626         * src/SDCCloop.c
8627         * src/SDCCloop.h
8628         * src/SDCClrange.c
8629
8630 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8631
8632         * src/z80/gen.h,
8633         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8634         * src/mcs51/gen.h
8635         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8636         * src/ds390/gen.h
8637         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8638         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8639         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8640
8641 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8642
8643         * src/z80/gen.c (genRet): fixed bug #524753
8644         * src/z80/gen.c (genCast): fixed internal error on cast from
8645         pointer to long
8646         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8647         fix for bug #477835 to the z80
8648         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8649         for tracking iCodes in the peephole optimizer for z80
8650
8651 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8652
8653         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8654         the other part of bug #814548
8655         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8656
8657 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8658
8659         * src/SDCCcse.c: fixed part of bug #814548
8660
8661 2003-09-28  Borut Razem <borut.razem AT siol.net>
8662
8663         * src/asm.c: rewrite of printILine() to use temporary file instead
8664           a pipe
8665         * src/xa51/main.c: commented out declaration of int rewinds
8666
8667 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8668
8669         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8670
8671 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8672
8673         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8674         * src/asm.c (printILine): Fixed bug #811015
8675
8676 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8677
8678         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8679         freeing.
8680
8681 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8682
8683         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8684         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8685         to correctly handle general case of AOP_PAIRPTR
8686         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8687
8688 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8689
8690         * src/mcs51/ralloc.c (fillGaps),
8691         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8692         register positioning bug)
8693
8694 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8695
8696         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8697
8698 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8699
8700         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8701         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8702         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8703         (ralloc doesn't intentionally do this now, but perhaps later)
8704         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8705         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8706         register positioning bugs (Fixed bug #762602 and #795325)
8707         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8708         (Fixed bug #808779)
8709         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8710         lines that --i-code-in-asm generates
8711
8712 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8713
8714         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8715         trying to fclose a FILE* that was already closed.
8716
8717 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8718
8719         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8720         of const struct should be treated as if const themselves)
8721
8722 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8723
8724         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8725
8726 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8727
8728         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8729         Unix (/n) and DOS (/r/n) line terminations.
8730
8731 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8732
8733         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8734         bug #613775
8735
8736 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8737
8738         * src/mcs51/gen.c (genFunction, genEndFunction),
8739         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8740         and restore of EA so that stack offsets to parameters are
8741         correct when using both critical and reentrant/stack-auto.
8742         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8743         size (can be triggered in error if sloc is shared between
8744         different sized objects)
8745         * device/include/float.h: fixed macros to explicitly use
8746         unsigned long where needed
8747
8748 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8749
8750         Feature req. 799831: added code to allow nesting of critical functions
8751         * src/mcs51/gen.c (genFunction, genEndFunction)
8752         * src/ds390/gen.c (genFunction, genEndFunction)
8753
8754 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8755
8756         * src/SDCCsymt.c (sclsFromPtr),
8757         * src/SDCCsymt.h,
8758         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8759         support for standard C idiom of memory mapped variables; for
8760         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8761         to xdata int at 0x1234 tempvar = 1.
8762         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8763         provided by Akiya ISHIDA
8764
8765 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8766
8767         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8768         * src/SDCCval.c (constVal): added reduction from int to char
8769         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8770         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8771         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8772         to ignore the sign
8773         * support/regression/tests/shifts.c: fixed
8774
8775 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8776
8777         * src/z80/gen.c (genXor): Fixed bug #805445
8778
8779 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8780
8781         Fixed bug #621531 (const & volatile confusion in the type chain).
8782         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8783         refer to the const or volatile state of the pointer itself.
8784
8785         * src/SDCCast.c
8786         * src/SDCCglue.c
8787         * src/SDCCicode.c
8788         * src/SDCCsymt.c
8789         * src/SDCCval.c
8790         * src/SDCC.y
8791         * src/SDCCsymt.h
8792         * src/pic/gen.c
8793         * src/pic/ralloc.c
8794         * src/pic16/gen.c
8795         * src/pic16/ralloc.c
8796         * support/regression/tests/const.c
8797
8798 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8799
8800         When checking for duplicated modules, use absolute paths
8801         instead of relative paths.  Files changed:
8802
8803         * as/mcs51/lklib.c
8804         * link/z80/lklib.c
8805
8806 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8807
8808         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8809
8810 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8811
8812         * device/include/string.h: added size_t typedef, changed
8813         prototypes to use size_t, eliminated separate reentrant and
8814         non-reentrant declarations, added _memmove declaration
8815         * device/lib/_memcpy.c: changed to use size_t instead of int,
8816         changed /4 to >>2 to avoid division library call
8817         * device/lib/_memcmp.c,
8818         * device/lib/_memset.c,
8819         * device/lib/_strncat.c,
8820         * device/lib/_strncpy.c,
8821         * device/lib/_strncmp.c: changed to use size_t instead of int
8822         * device/lib/_memmove.c: new file (fixed bug #772294)
8823         * device/lib/Makefile.in: added _memmove.c
8824         * device/lib/z80/asm_strings.s: fixed bug #772290
8825         * support/regression/tests/bitfields.c: attempt to fix host assertion
8826         failure on amd64-unknown-linux2.2
8827
8828 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8829
8830         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8831         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8832         * as/z80/asmain.c (main): fixed bug #801766
8833
8834 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8835
8836         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8837         compilers
8838
8839 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8840
8841         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8842         reported in bug #800609
8843
8844 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8845
8846         * Top header beautifications in src/pic16 directory:
8847           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8848           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8849           pcoderegs.h, ralloc.c, ralloc.h
8850         * main.c: added top header and GPL license notice
8851         * pcode.c: fixed the if-conditional warning
8852
8853 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8854
8855         * device/lib/_mullong.c: replaced int by short for gcc
8856
8857 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8858
8859         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8860         and JUMPTABLE iCodes properly now (worked by accident before)
8861         * src/mcs51/gen.c (leftRightUseAcc),
8862         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8863         iCode properly now. Use getSize instead of nRegs since a & b
8864         aren't part of the nRegs tally.
8865
8866 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8867
8868         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8869         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8870           before instructions that use the _STATUS register
8871
8872 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8873
8874         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8875         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8876         fetching of the pointer
8877         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8878         copied from genNearPointerSet()
8879         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8880         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8881         If they pop r0/r1 they must be called in the opposite order than aopOp().
8882         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8883         (resp. --stack-auto), prepared for --xstack
8884
8885 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8886
8887         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8888
8889 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8890
8891         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8892         these ports have their own __sdcc_external_start()
8893
8894 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8895
8896         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8897         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8898         type for bits was changed. It resulted in bit variables becoming
8899         global, which is not permitted in PIC 14 assembly output.
8900
8901 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8902
8903         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8904
8905 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8906
8907         Z80 and MCS51 linkers complaint if a public symbol is defined
8908         in more than one library module:
8909
8910         * as/mcs51/lklib.c
8911         * link/z80/lklib.c
8912         * as/mcs51/Makefile.in
8913
8914 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8915
8916         A few small changes that speed up the peephole optimizer.
8917
8918         * src/SDCCpeeph.c
8919
8920 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8921
8922         Try to make the peephole optimizer smarter by maintaining
8923         an association between the assembly source code and the
8924         iCodes that originated them. Put this information to use
8925         with a new peephole rule condition "notVolatile" so that
8926         the rules can be aggressive yet still safe.
8927
8928         * src/SDCCpeeph.c
8929         * src/SDCCpeeph.h
8930         * src/mcs51/gen.c
8931         * src/mcs51/peeph.def
8932
8933 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8934
8935         Fixed bug #741761
8936
8937         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8938         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8939         if the left or right operand symbols have the accuse flag set.
8940
8941 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8942
8943         Changed the type of the result of the ! (NOT) operator to char;
8944         previously it returned the same type as the source. This allows
8945         us to eliminate all the genFloatNot functions (all of its target
8946         implementations were very buggy) since !float can use the same
8947         code as !long now.
8948
8949         * src/SDCCicode.c (ast2iCode): ! returns char
8950         * src/mcs51/gen.c (genNot, genNotFloat),
8951         * src/ds390/gen.c (genNot, genNotFloat),
8952         * src/z80/gen.c (genNot, genNotFloat),
8953         * src/pic/gen.c (genNot, genNotFloat),
8954         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8955
8956 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8957
8958         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8959         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8960            during interrupts. Ensure WSAVE is located at a shared bank address.
8961         2. Fixed page selection in some places
8962         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8963            the registers name strings.
8964         4. Fixed "signed / unsigned compare" compiler warnings.
8965         5. The PIC port manages its own allocation of the general purpose
8966            registers, but makes no attempt to reuse them. As a result when
8967            compiling it soon runs out of general purpose registers. Some
8968            additional code was added to the files pcode.c and device.c to walk
8969            through the function call tree and rename the registers so that they
8970            get reused.
8971
8972         * src/pic/device.c
8973         * src/pic/gen.c
8974         * src/pic/glue.c
8975         * src/pic/pcode.c
8976         * src/pic/pcode.h
8977         * src/pic/ralloc.c
8978         * src/pic/ralloc.h
8979         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8980         genPlus() & genMinus() when the result is the same as left or right
8981
8982 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8983
8984         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8985
8986 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8987
8988         Made bitfield a distinct type from bit so that bitfields
8989         convert as per ANSI C and bits retain their traditional
8990         boolean style behaviour. Implemented bitfield support in
8991         the z80 port.
8992
8993         * src/SDCCsymt.h,
8994         * src/SDCCsymt.c,
8995         * src/SDCCast.c,
8996         * src/cdbFile.c,
8997         * src/mcs51/gen.c,
8998         * src/ds390/gen.c: bit v bitfield split
8999         * src/z80/gen.c: New support for bitfields
9000         * support/regression/tests/bitfields.c: reenabled z80,
9001         added more tests
9002
9003 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9004
9005         Rules 246.x, 247.x relate to bitfields, the others speed up
9006         access to xdata mapped I/O devices.
9007
9008         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
9009
9010 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9011
9012         Cleaned up genPackBits and genUnpackBits and added two helper
9013         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
9014         for literal assignments in genPackBits (thanks to Frieder for
9015         reminding me).
9016
9017         * src/mcs51/gen.c
9018         * src/ds390/gen.c
9019
9020 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9021
9022         Fixed bug #748310 (pointer to function type mishandled when the
9023         function name is omitted). Also fixed a SIGSEGV when a function
9024         attribute (reentrant, etc) is used on a non-function or on a
9025         function but misplaced before the parameter list.
9026
9027         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9028         bug #748310
9029         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9030         * support/Util/SDCCerr.h,
9031         * support/Util/SDCCerr.c: Added func attr misuse error msg
9032
9033 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9034
9035         Fixed bug #787649 by anonymous
9036         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9037         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9038
9039 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9040
9041         Fixed numerous bitfield problems.
9042
9043         * src/SDCC.y: More bitfield related error checking
9044         * src/SDCCsymt.h,
9045         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9046         * support/Util/SDCCerr.h,
9047         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9048         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9049         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9050         * support/regression/tests/bitfields.c: tests added
9051
9052 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9053
9054         Made the constant following the "interrupt" keyword optional. If
9055         omitted, the function will not automatically be given an entry
9056         in the interrupt vector table (similar to #pragma NOIV, but
9057         less syntacticly kludgy). The interrupt number is also now
9058         range checked. Also fixed a bug in the high order bit example
9059         in the manual.
9060
9061         * src/SDCC.y
9062         * src/SDCCmem.c
9063         * src/SDCCglue.c
9064         * src/SDCCsymt.h
9065         * support/Util/SDCCerr.c
9066         * support/Util/SDCCerr.h
9067         * doc/sdccman.lyx
9068
9069 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9070
9071         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9072         * src/SDCCicode.c (operandOperation): rewritten some ops
9073         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9074         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9075         other type
9076         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9077         be re-activated by defining REDUCE_LITERALS)
9078         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9079         unsigned, but are signed by default
9080         * src/SDCCval.c (constVal): rearranged
9081         * src/SDCCval.c (valMod): preliminary fix
9082         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9083         * support/regression/literalop.c: added, work in progress
9084
9085 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9086
9087         Generate warnings for useless declarations like "char data;"
9088         that don't do what new users expect.
9089
9090         * src/SDCC.y
9091         * support/Util/SDCCerr.h
9092         * support/Util/SDCCerr.c
9093
9094 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9095
9096         * src/SDCCval.c (valMult): fix overflow detection of negative int
9097
9098 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9099
9100         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9101
9102         Changes to support big endian targets:
9103
9104         * src/ports.h
9105         * src/SDCCglue.c
9106         * src/avr/main.c
9107         * src/ds390/main.c
9108         * src/izt/i186.c
9109         * src/mcs51/main.c
9110         * src/pic/main.c
9111         * src/pic16/main.c
9112         * src/xa51/main.c
9113         * src/z80/main.c
9114
9115 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9118         * device/lib/time.c: fixed warning "integer overflow in expression"
9119
9120 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9121
9122         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9123         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9124         constants are unsigned; added recognition of "u" flag for unsigned
9125         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9126         * src/SDCCval.c (valDiv, valMod): fixed signdness
9127         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9128         signedness of modulo, left and right shift
9129         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9130         * support/Util/SDCCerr.h: added warning W_INT_OVL
9131         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9132         * src/SDCCast.c (ast_print): improved output of constants
9133
9134 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9135
9136         Fixed some warnings when building with MSVC:
9137
9138         * as\mcs51\asdata.c
9139         * as\z80\asdata.c
9140         * as\mcs51\asm.h
9141         * as\z80\asm.h
9142         * link\z80\aslink.h
9143         * link\z80\lkdata.c
9144         * link\z80\lkeval.c
9145         * link\z80\lkgb.c
9146         * link\z80\lkihx.c
9147         * link\z80\lks19.c
9148         * link\z80\lksym.c
9149         * support\cpp2\cpplib.c
9150         * src\ds390\gen.c
9151         * src\mcs51\gen.c
9152
9153 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9154
9155         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9156
9157 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9158
9159         * support\librarian\clean.mk: Do not remove Makefile.
9160         * support\librarian\Makefile: added.
9161
9162 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9163
9164         Added librarian to MSVC build:
9165         * all.dsp
9166         * sdcc.dsw
9167         * support\librarian\librarian.dsp
9168
9169         'configure' not needed for librarian, removed:
9170         * support\librarian\configure
9171         * support\librarian\configure.in
9172         * support\librarian\config_in.h
9173         * support\librarian\Makefile.in
9174
9175         Hopefully these ones built the librarian and the rest of sdcc properly:
9176         * Makefile
9177         * Makefile.common.in
9178
9179         Messed up 'configure', so revert to previous version:
9180         * configure
9181         * configure.in
9182
9183 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9184
9185         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9186         there, while the mantissa of a double is "only" 53 bits wide.
9187
9188 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9189
9190         Adding sdcclib to the build.  MSVC project coming soon.
9191         Files added/changed:
9192
9193         * support\librarian\clean.mk
9194         * support\librarian\configure
9195         * support\librarian\configure.in
9196         * support\librarian\config_in.h
9197         * support\librarian\Makefile.bcc
9198         * support\librarian\Makefile.in
9199         * support\librarian\sdcclib.c
9200         * Makefile.bcc
9201         * Makefile
9202         * Makefile.common.in
9203         * configure
9204         * configure.in
9205
9206 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9207
9208         Linker now complaints if linked modules have conflicting options, for
9209         example, one compiled using --model-large and another one compiled with
9210         --model-small.  The following files were modified:
9211
9212         * as\mcs51\asdata.c
9213         * as\mcs51\aslink.h
9214         * as\mcs51\asm.h
9215         * as\mcs51\asmain.c
9216         * as\mcs51\asout.c
9217         * as\mcs51\i51pst.c
9218         * as\mcs51\lkdata.c
9219         * as\mcs51\lklibr.c
9220         * as\mcs51\lkmain.c
9221         * as\z80\asdata.c
9222         * as\z80\asm.h
9223         * as\z80\asmain.c
9224         * as\z80\asout.c
9225         * as\z80\z80pst.c
9226         * link\z80\aslink.h
9227         * link\z80\lkdata.c
9228         * link\z80\lklibr.c
9229         * link\z80\lkmain.c
9230         * src\SDCCglue.c
9231
9232 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9233
9234         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9235         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9236
9237 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9238
9239         * src/z80/mappings.i: fix _mul[us][int,long] entries
9240
9241 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9242
9243         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9244
9245 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9246
9247         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9248         * support/regression/tests/bitopcse.c: added
9249         fixed warning:
9250         * src/avr/gen.c:
9251         * src/pic/gen.c:
9252         * src/pic16/gen.c:
9253         * src/z80/gen.c:
9254         * src/xa51/gen.c:
9255
9256 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9257
9258         added support for new library format to z80, gbz80 linkers:
9259         *link/z80/aslink.h
9260         *link/z80/lklex.c
9261         *link/z80/lklib.c
9262         *link/z80/lklist.c
9263
9264 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9265
9266         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9267         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9268
9269 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9270
9271         added DUMMY_READ_VOLATILE:
9272         * src/SDCC.y:
9273         * src/avr/gen.c:
9274         * src/xa51/gen.c:
9275         * src/z80/gen.c:
9276         * src/pic/gen.c:
9277         * src/pic16/gen.c:
9278         * src/mcs51/gen.c:
9279         * src/ds390/gen.c:
9280         * src/SDCCcse.c (algebraicOpts): many improvements
9281         * src/SDCCcse.h: removed algebraicOpts()
9282         * src/SDCCicode.c (picDummyRead): added
9283
9284 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9285
9286         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9287         "Insufficient space in data memory".
9288
9289 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9290
9291         * src/mcs51/gen.c: fixed bug #771358
9292         * src/z80/gen.c: fixed bug #759087
9293
9294 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9295
9296         * src/pic16/glue.c: minor cleanup by Vangelis
9297
9298 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9299
9300         * device/include/regc515c.h: fixed #758477
9301         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9302         * device/lib/_gptrput.c: saved a few bytes
9303         * my tab spacing is 8, yours too?)
9304         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9305         * device/lib/serial.c: process RX bytes earlier than TX bytes
9306         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9307
9308 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9309
9310         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9311
9312 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9313
9314     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9315
9316 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9317
9318         * device/lib/Makefile.in: bad fix, reverted to 1.43
9319
9320 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9321
9322         * device/lib/Makefile.in: added missing z80 object files
9323
9324 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9325
9326         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9327         pic16 progress by Vangelis:
9328         * src/SDCCglobl.h:
9329         * src/SDCCmain.c:
9330         * src/pic/Makefile:
9331         * src/pic:
9332         * pic/Makefile:
9333         * pic16/device.c:
9334         * pic16/device.h:
9335         * pic16/gen.c:
9336         * pic16/gen.h:
9337         * pic16/genarith.c:
9338         * pic16/glue.c:
9339         * pic16/main.c:
9340         * pic16/pcode.c:
9341         * pic16/pcode.h:
9342         * pic16/pcodepeep.c:
9343         * pic16/peeph.def:
9344
9345 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9346
9347     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9348
9349 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9350
9351     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9352     added gbz80 build to MSVC project.
9353     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9354     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9355     from 8051 stuff and setup so it links using a .lnk file.
9356
9357 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9358
9359     * support/librarian/sdcclib.c: sdcc librarian.
9360     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9361     with sdcclib.
9362
9363 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9364
9365     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9366
9367 2003-07-02  Borut Razem <borut.razem AT siol.net>
9368
9369         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9370         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9371         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9372         src/xa51/main.c, src/z80/main.c:
9373         virtualization of glue() function: each port has it's own glue function,
9374         which is accessed by do_glue function pointer in PORT.general structure
9375
9376 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9377
9378         * DS800C400 fun, improved ROM interface and tinibios.
9379
9380 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9381
9382         * More support for DS80C400. Now includes beginning of interface to ROM.
9383
9384 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9385
9386         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9387
9388 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9389
9390         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9391
9392 2003-06-19  Borut Razem <borut.razem AT siol.net>
9393
9394         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9395
9396 2003-06-19  Borut Razem <borut.razem AT siol.net>
9397
9398         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9399         fixed Z80 port - crt0.o: cannot open.
9400
9401 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9402
9403         * support/Util/MySystem.c (merge_command): revert bad fix
9404
9405 2003-06-18  Borut Razem <borut.razem AT siol.net>
9406
9407         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9408
9409 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9410
9411         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9412         option --use-stdout sends errors to stdout instead of stderr.
9413
9414 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9415
9416         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9417
9418 2003-06-15  Borut Razem <borut.razem AT siol.net>
9419
9420         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9421         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9422         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9423         fixed width array of pointers replaced with sets;
9424         multiple include and lib paths ared transferred to preprocessor and linker
9425         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9426         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9427         fixed width array of pointers
9428         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9429         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9430         fixupPath(), getPathDifference()
9431         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9432         fixed width array of pointers
9433
9434 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9435
9436         * src/pic16/ralloc.c: fix warnings
9437         * src/pic16/pcode.c: fix warning
9438
9439 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9440
9441          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9442         know all the details, but essentially this set of changes enable
9443         the pic16 port to generate movff instructions and generate assembler
9444         directives,
9445         * src/SDCCmain.c:
9446         * src/pic16/gen.c:
9447         * src/pic16/glue.c:
9448         * src/pic16/pcode.c:
9449         * src/pic16/device.c:
9450         * src/pic16/main.c:
9451         * src/pic16/pcode.h:
9452         * src/pic16/pcoderegs.c:
9453         * src/pic16/ralloc.c:
9454         * src/pic16/ralloc.h:
9455
9456 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9457
9458         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9459         added option --vc, so sdcc errors and warnings are compatible with
9460         Microsoft Visual Studio.
9461
9462 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9463
9464         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9465           device/lib/libfloat.lib: added atof function.
9466
9467 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9468
9469         * doc/sdccman.lyx: updated to Lyx 1.3
9470         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9471         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9472         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9473
9474 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9475
9476         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9477
9478 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9479
9480         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9481           additions to the "related tools/documentation" section
9482
9483 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9484
9485         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9486
9487 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9488
9489         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9490         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9491
9492 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9493
9494         * doc/sdccman.lyx: fix double dash and other minor things
9495         * doc/Makefile: fix double dash
9496
9497 2003-05-28  Karl Bongers(patches from Martin Helmling)
9498         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9499           condition and ignore commands.
9500
9501 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9502
9503         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9504           is in parts still quite out of date, I did changes as far as I felt makes sense
9505           for a non-native english speaker.
9506           Please feel free to add to the manual or to correct my changes.
9507         * doc/Makefile: undid touching the date of intermediate tex files.
9508
9509 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9510
9511         * doc/sdccman.lyx: Manual has an index now
9512
9513 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9514
9515         Finalize muluint/mulsint and mululong/mulslong merging:
9516         * device/lib/_mulint.c
9517         * device/lib/_mullong.c
9518         * device/lib/gbz80/mul.s
9519         * device/lib/gbz80/stubs.s
9520         * device/lib/z80/mul.s
9521         * device/lib/z80/stubs.s
9522         * src/SDCCsymt.c (initCSupport)
9523
9524 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9525
9526         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9527         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9528           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9529           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9530           instead of /Zm500.
9531
9532 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9533
9534         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9535           the regression tests I'm not brave enough to enable 245.b, 245.c
9536         * doc/sdccman.lyx: added latex preamble for hyperref package.
9537           Using pdflatex this will give you a hyperlinked pdf file with
9538           bookmarks. (prepend '%' before /usepackage if this breaks something)
9539
9540 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9541
9542          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9543
9544 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9545
9546         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9547
9548 2003-05-21    <johan AT balder>
9549
9550         * src/SDCCglue.c (printIval): fixed bug #739934
9551
9552 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9553
9554         Applied patch from bug 737905 (renamed yylineo to mylineno):
9555         * src/altlex.c
9556         * src/SDCCast.c
9557         * src/SDCglobl.h
9558         * src/SDCC.lex
9559         * src/SDCCsymt.c
9560         * src/SDCCval.c
9561         * src/pic16/pcode.c: Cleaned warnings
9562         * src/pic16/pcodeflow.c: Cleaned warnings
9563         * src/pic16/pcoderegs.c: Cleaned warnings
9564
9565 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9566
9567         * src/pic16/pcode.c: Cleaned warnings
9568         * src/pic16/pcodepeep.c: Cleaned warnings
9569         * src/pic16/ralloc.c: Cleaned warnings
9570
9571 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9572
9573         * doc/sdccman.lyx: fixed bug 739745
9574         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9575
9576 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9577
9578         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9579         it can be defined with CFLAGS when running configure
9580         * src/SDCCmain.c: fixed compiling + linking with object files
9581
9582 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9583
9584         * configure.in: configure for pic16 port,
9585             added --disable-pic16-port
9586         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9587         * src/SDCCmain.c: linkOptions is changed to set *,
9588             added if/endif conditional macros to remove options help
9589             messages from optionsTable when a port is not configured, added
9590             support for the PIc16 port in the ports table, when executing
9591             the compiler with no port specified on command line, a default
9592             port is selected with the new macro DEFAULT_PORT which is
9593             defined in port.h, in setDefaultOptions() linkOptions is removed
9594             from initialization assignment, since now it is a set,
9595             parseCmdLine uses setParseWithComma for linkOptions, in
9596             linkEdit() linkOptions are accessed with new function indexSet()
9597             which returns the i'th item of a set variable. See SDCCset.c, in
9598             linkEdit() when calling buildCmdLine(), added linkOptions as
9599             last argument. Now users can pass arguments to gplink via the
9600             -Wl option, main() uses pic16glue() to glue up pic16 programs
9601         * src/SDCCpeeph.c: various changes to support pic16
9602         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9603             return the i'th item of the set
9604         * src/SDCCset.h: added function prototype for indexSet()
9605         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9606         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9607         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9608             added macro DEFAULT_PORT
9609         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9610         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9611             generated
9612         * src/pic16/glue.c: commented out some error producing lines
9613         * src/pic16/main.c: __config directives are commented out to stop
9614             gpasm complaining and test the linkage with gplink, _linkCmd and
9615             _asmCmd changed to be more gplink and gpasm friendly
9616         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9617             produced an error when parsed, peep rule 12 is added to utilize
9618             movff, but it is commented out since the pCode does not support
9619             yet a command with 2 address arguments
9620
9621 2003-05-18    <johan AT balder>
9622
9623         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9624         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9625 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9626
9627         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9628   Added feature to script commands from file.
9629
9630 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9631
9632         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9633         * src/SDCCutil.c: include ctype.h for win32
9634
9635 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9636
9637         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9638
9639 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9640
9641         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9642   Fixed so you can set breakpoints prior to run, run does not stop
9643   on entry now.  Add tbreak.  Other enhancements and fixes for use
9644   with ddd.
9645
9646 2003-05-12  Borut Razem <borut.razem AT siol.net>
9647
9648         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9649
9650 2003-05-11  Borut Razem <borut.razem AT siol.net>
9651
9652         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9653         the path of bin directory, so that PATH is the only env. variable, which has to be set
9654         in case of standard installation.
9655         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9656         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9657         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9658
9659 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9660
9661         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9662         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9663         temp files are in the port dir; clean the gen/test directory when
9664         generating new test.c
9665         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9666         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9667         * support/regression/tests/zeropad.c: added
9668
9669 2003-05-09    <johan AT balder>
9670
9671         * src/SDCCglue.c: fixed bug #597940
9672
9673 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9674
9675         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9676   cache sfr, optimize next,step, fix off by one sourceline,
9677   support ddd list function.
9678         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9679
9680 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9681
9682         * support/regression/HTMLgen.py: added compare_s2f()
9683         * support/regression/Makefile: redo 1.27
9684         * support/regression/generate-cases.py: redo 1.5
9685
9686 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9687
9688         * support/regression/tests/float.c: workaround 33 bit hex constant
9689         * support/regression/tests/simplefloat.c: fix division for host
9690
9691 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9692
9693         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9694         that tame's the PIC's over-aggressive optimizer.
9695
9696 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9697
9698          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9699          support for MSVC.
9700
9701 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9702
9703         Initial support for DS80C400. "Hello world" runs on TINIm400
9704         (with polled I/O).
9705
9706 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9707
9708          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9709          * Some notes on ddd usage added in debugger/README
9710          Martin Helmling adding more features and fixes for ddd GUI debugger.
9711          Code added for nexti, stepi, up, down, and other adjustments.
9712
9713 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9714
9715         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9716         * src/pic/peeph.def Added two rules to optimize carry manipulation
9717         * src/pic/* removed debug printfs
9718
9719 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9720
9721         * debugger/mcs51/cmd.c: added header newalloc.h
9722
9723 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9724
9725         * as/Makefile: new EXEEXT
9726         * as/z80/Makefile: remove trailing slash of BUILDIR
9727         * as/z80/clean.mk: new EXEEXT
9728         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9729         * support/cpp2/Makefile.in: new EXEEXT
9730         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9731
9732 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9733
9734         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9735         EXEEXT was introduced to fix all related problems with targets
9736         "clean", "install" and "uninstall"; a couple of further flaws
9737         especially with "clean" have been fixed too
9738         * as/mcs51/Makefile.in
9739         * as/mcs51/clean.mk
9740         * as/z80/Makefile
9741         * Makefile
9742         * clean.mk
9743         * debugger/mcs51/Makefile.in
9744         * debugger/mcs51/clean.mk
9745         * link/z80/Makefile
9746         * link/z80/Makefile.in
9747         * link/z80/clean.mk
9748         * link/Makefile
9749         * packihx/Makefile.in
9750         * packihx/clean.mk
9751         * sim/ucsim/Makefile
9752         * sim/ucsim/clean.mk
9753         * sim/ucsim/avr.src/Makefile.in
9754         * sim/ucsim/avr.src/clean.mk
9755         * sim/ucsim/s51.src/Makefile.in
9756         * sim/ucsim/s51.src/clean.mk
9757         * sim/ucsim/xa.src/Makefile.in
9758         * sim/ucsim/xa.src/clean.mk
9759         * sim/ucsim/z80.src/Makefile.in
9760         * sim/ucsim/z80.src/clean.mk
9761         * sim/ucsim/main_in.mk
9762         * sim/ucsim/packages_in.mk
9763         * sim/ucsim/gui.src/Makefile.in
9764         * sim/ucsim/gui.src/serio.src/Makefile.in
9765         * sim/ucsim/gui.src/serio.src/clean.mk
9766         * src/Makefile.in
9767         * src/clean.mk
9768         * support/cpp2/Makefile.in
9769         * support/cpp2/clean.mk
9770         * support/makebin/Makefile
9771         * support/makebin/clean.mk
9772         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9773         * doc/sdccman.lyx: --program-suffix no longer needed
9774
9775 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9776
9777          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9778          Martin Helmling added support for ddd GUI debugger.
9779          Code added to display assembly, set variables, and other commands
9780          to interface to ddd.
9781
9782 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9783
9784         * as/Makefile: fix target clean
9785         * as/clean.mk: fix target clean
9786         * as/z80/clean.mk: fix target clean
9787
9788 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9789
9790         * Makefile.common.in: added  AT EXEEXT AT
9791         * configure.in: removed all mingw32 stuff
9792         * configure: rebuilt from configure.in
9793         * doc/sdccman.lyx: updated section "installation"
9794         * support/scripts/sdcc_mingw32: adapted to configure
9795         * support/scripts/sdcc_cygwin_mingw32: added
9796
9797 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9798
9799         * src/pic Added object file support for the PIC port
9800         * src/pic Applied patch from Craig Franklin (this started the object file support)
9801         * src/regression Updated the PIC regression tests for object files
9802
9803 2003-04-20  Borut Razem <borut.razem AT siol.net>
9804
9805         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9806           lklex.c: In function `getfid':
9807           lklex.c:203: warning: array subscript has type `char'
9808         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9809           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9810         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9811           stack handling macros
9812
9813 2003-04-19  Borut Razem <borut.razem AT siol.net>
9814
9815         * "handling space characters in file path" task:
9816         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9817         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9818         * support/Util/MySystem.h: make it self-sufficient
9819         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9820           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9821           handling space characters in file path
9822         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9823           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9824         * support/Util/MySystem.c: handling space characters in executable's path
9825
9826 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9827
9828         * as/z80/Makefile: fix permanent rebuild of z80
9829         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9830         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9831
9832 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9833
9834         * src/SDCCopt.c: add special case optimization to replace modulo by
9835           a power of two with a bitwise AND.
9836
9837 2003-04-18    <johan AT balder>
9838
9839         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9840
9841 2003-04-17    <johan AT balder>
9842
9843         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9844         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9845
9846 2003-04-13  Borut Razem <borut.razem AT siol.net>
9847
9848         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9849         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9850           fixed mingw problem in adl_NORMALIZE_PATH
9851
9852 2003-04-12  Borut Razem <borut.razem AT siol.net>
9853
9854         * fixed "#pragma SAVE/RESTORE can not be nested":
9855         * src/SDCC.lex: reworked pragma handling functions
9856         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9857         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9858
9859 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9860
9861         * src/SDCCutil.c (pathEquivalent): defined but not used
9862         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9863         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9864         * configure: rebuilt from configure.in
9865         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9866         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9867         * device/include/Makefile.in: replace sdcc_datadir
9868         * device/lib/Makefile.in: replace sdcc_datadir
9869         * Makefile.common.in: add LDFLAGS from configure
9870         * packihx/Makefile.in: use LDFLAGS
9871         * src/Makefile.in: use LDFLAGS
9872         * support/cpp2/Makefile.in: add LDFLAGS from configure
9873         * support/makebin/Makefile: use LDFLAGS
9874         * .version: bumped version number to 2.3.5
9875
9876 2003-04-12  Borut Razem <borut.razem AT siol.net>
9877
9878         * completed "different paths" task:
9879         * src/SDCCmacro.c: fixed bug in handling quotes
9880         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9881         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9882
9883 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9884
9885         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9886
9887 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9888
9889         * ds390/gen.c ds390/peeph.def: fix bug 706781
9890
9891 2003-04-11  Borut Razem <borut.razem AT siol.net>
9892
9893         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9894
9895 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9896
9897         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9898         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9899          set - this bit used to not be set...).
9900         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9901           bad code in PIC Port
9902         * src/regression/and2.c added to test bug 609268
9903         * src/regression/Makefile added and2.c to regression test
9904
9905
9906 2003-04-08    <johan AT CP255758-A>
9907
9908         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9909         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9910         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9911
9912 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9913
9914         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9915         fix bug #487815
9916         * support/cpp2/Makefile.in: fix bug #487815
9917         * configure: rebuilt from configure.in
9918         * Makefile.common.in: docdir changed, new path suffixes
9919         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9920         * sdcc_vc_in.h: reflect changes from sdccconf.h
9921         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9922         * src/SDCCutil.h: remove BINDIR hack
9923         * doc/sdccman.lyx: update new path hierarchy
9924
9925 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9926
9927         * src/SDCCpeeph.c: added okToRemoveSLOC test
9928
9929 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9930
9931         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9932
9933 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9934
9935         * src/SDCCpeeph.c: added labelIsReturnOnly test
9936         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9937
9938 2003-04-05    <johan AT balder>
9939
9940         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9941         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9942         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9943         * src/SDCCast.c: fixed a warning
9944         * src/SDCCast.h: fixed a warning
9945         * src/SDCCicode.c (operandFromAst): fixed a warning
9946
9947 2003-04-04    <johan AT balder>
9948
9949         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9950         * src/SDCCast.c (decorateType): fixed bug #715076
9951         * src/SDCC.y: fixed bug #702907
9952
9953 2003-04-03    <johan AT balder>
9954
9955         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9956         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9957         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9958         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9959         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9960
9961 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9962
9963         * _decdptr.c: fix return values
9964         * _gptrget.c: fix return values
9965         * _gptrgetc.c: fix return values
9966         * _gptrput.c: fix return values
9967         * _mulint.c: fix return values
9968         * as/z80/Makefile: fix 'make -j' problem
9969
9970 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9971
9972         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9973         * configure.in: big cleanup, updated to autoconf 2.5x
9974         * configure: rebuilt from configure.in
9975         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9976         * sdcc_vc_in.h: reflect changes from sdccconf.h
9977         * doc/Makefile: fixed a flaw in "make install"
9978
9979 2003-04-02    <johan AT balder>
9980
9981         * src/ds390/gen.c (genCmp): no comments
9982         * src/mcs51/gen.c (genCmp): no comments
9983         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9984         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9985
9986 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9987
9988         * support/regression/generate-cases.py: place generated file in given sub directory
9989         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9990         * support/regression/Makefile: improvements for 'make -j';
9991         side effect: it's simpler and faster now
9992
9993 2003-03-31  Borut Razem <borut.razem AT siol.net>
9994
9995         * src/z80/main.c: link-{port} and as-{port} defined without path
9996         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9997
9998 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9999
10000         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
10001
10002 2003-03-30  Borut Razem <borut.razem AT siol.net>
10003
10004         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
10005           changed type of list parameter to set
10006         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
10007         * src/port.h: changed type of do_assemble() parameter to set
10008         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
10009           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
10010           definition of "cppoutfilename" macro with NULL value in preProcess()
10011         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
10012         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
10013         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
10014           replaced with set *binPathSet
10015         * shash_add() deallocates the item, if allready exsists, before adding the new one
10016         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
10017
10018 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
10019
10020         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
10021           a nested for loop bug in the PIC port
10022         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
10023           for loops
10024
10025 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
10026
10027         * support/Util/dbuf.h: remove C++ stuff to make it portable
10028
10029 2003-03-28  Borut Razem <borut.razem AT siol.net>
10030
10031         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10032           literal strings in stringLiteral()
10033         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10034         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
10035           to the project
10036
10037 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10038
10039         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10040
10041 2003-03-26    <johan AT balder>
10042
10043         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10044         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10045         * src/SDCCast.c (decorateType): fixed " -v < 3"
10046
10047 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10048
10049         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10050         Added Lenny Story's debug infrastructure changes:
10051         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10052         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10053         * src/cdbFile.c: added
10054         * src/SDCCdebug.c: added
10055         * src/SDCCdebug.h: added
10056         * src/SDCCast.c (createFunction)
10057         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10058         * src/SDCCmain.c (parseCmdLine, main)
10059         * src/SDCCmem.c (redoStackOffsets)
10060         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10061         * src/SDCCsymt.h
10062         * src/common.h
10063         * src/avr/gen.c (genAVRCode)
10064         * src/ds390/gen.c (gen390Code)
10065         * src/mcs51/gen.c (gen51Code)
10066         * src/pic/gen.c (genpic14Code)
10067         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10068         * src/xa51/gen.c (genXA51Code)
10069         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10070
10071 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10072
10073         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10074         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10075
10076 2003-03-22    <johan AT balder>
10077
10078         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10079
10080 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10081
10082         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10083         * doc/cdbfileformat.lyx: added, written by Lenny Story
10084         * doc/Makefile: added cdbfileformat.lyx
10085         * doc/clean.mk: added cdbfileformat.lyx
10086
10087 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10088
10089         * src/mcs51/peeph.def: fix bug #705773
10090
10091 2003-03-20    <johan AT balder>
10092
10093         An sfr/sbit can have an "at #" AND an initializer
10094         * src/SDCCsymt.c (checkSClass):
10095         * src/SDCCmem.c (allocGlobal):
10096         * src/SDCCmem.c (allocLocal):
10097         * src/SDCCast.c (createBlock):
10098
10099 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10100
10101         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10102
10103 2003-03-16    <johan AT balder>
10104
10105         Undid the hackup of const and volatile, the problem is much bigger
10106         * src/SDCC.y:1.65
10107         * src/SDCCast.c:1.171
10108         * src/SDCCglue.c:1.138
10109         * src/SDCCicode.c:1.146
10110         * src/SDCCsymt.c:1.150
10111         * src/SDCCval.c:1.65
10112
10113 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10114
10115         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10116         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10117
10118 2003-03-13    <johan AT balder>
10119
10120         Hackup const and volatile modifiers in type chains a bit:
10121         * src/SDCC.y:1.63
10122         * src/SDCCast.c:1.169
10123         * src/SDCCglue.c:1.136
10124         * src/SDCCicode.c:1.143
10125         * src/SDCCsymt.c1.146
10126         * src/SDCCsymt.h1.59
10127         * src/SDCCval.c:1.63
10128
10129 2003-03-12    <johan AT balder>
10130
10131         * src/SDCCBBlock.h: more LRH debugging junk
10132         * src/SDCCcflow.h: more LRH debugging junk
10133         * src/SDCCloop.c: more LRH debugging junk
10134         * src/SDCC.y (struct_declaration): fixed bug #697590
10135         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10136         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10137         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10138
10139 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10140         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10141         test function names must now match exactly).
10142         * src/SDCCcse.c: added special case in findCheaperOp to allow
10143         extending a short integer. Makes less awful code for bug 700121 test case.
10144
10145 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10146
10147         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10148         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10149
10150 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10151
10152         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10153         actually called (operandsNotEqual() was called for all
10154         operandsNotEqualX tests).
10155
10156 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10157
10158         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10159         with shorter literals. Fixes bug 700121.
10160
10161 2003-03-11    <johan AT balder>
10162
10163         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10164
10165 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10166
10167         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10168         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10169
10170 2003-03-10  Borut Razem <borut.razem AT siol.net>
10171
10172         * src/SDCCmain.c: pipe preprocessor's output
10173         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10174         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10175         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10176         which closes all pipes in pipeSet set
10177         * src/SDCCset.c: free deleted item in function deleteSetItem()
10178         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10179         moved from z80 to src subproject
10180         * .version: increased version number to 2.3.4
10181
10182 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10183
10184         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10185         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10186         * support/regression/ports/xa51/spec.mk: fix typo
10187
10188 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10189
10190         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10191
10192 2003-03-09  Borut Razem <borut.razem AT siol.net>
10193
10194         * src/SDCCmain.c: pipe preprocessor's output
10195         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10196         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10197         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10198         which closes all pipes in pipeSet set
10199         * src/SDCCset.c: free deleted item in function deleteSetItem()
10200         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10201         moved from z80 to src subproject
10202
10203 2003-03-09  Borut Razem <borut.razem AT siol.net>
10204
10205         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10206         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10207         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10208         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10209         * src/SDCCglobl.h: unification of WIN32 native definitions
10210
10211 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10212
10213         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10214
10215 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10216
10217         * src/configure.in:   check for endianess (even while cross-compiling)
10218         * src/configure:      check for endianess (even while cross-compiling)
10219         * src/configure_in.h: check for endianess (even while cross-compiling)
10220         * src/avr/gen.c:        remove old endianess stuff
10221         * src/mcs51/gen.c:      remove old endianess stuff
10222         * src/ds390/gen.c:      remove old endianess stuff
10223         * src/pic/gen.c:        remove old endianess stuff
10224         * src/pic/genarith.c:   remove old endianess stuff
10225         * src/pic/glue.c:       fix endianess check
10226         * src/pic16/gen.c:      remove old endianess stuff
10227         * src/pic16/genarith.c: remove old endianess stuff
10228         * src/pic16/glue.c:     fix endianess check
10229         * src/xa51/gen.c:       remove old endianess stuff
10230         * src/z80/gen.c:        fix endianess check
10231         * src/SDCCglue.c:       fix endianess check
10232         * src/ds390/peeph.def: fix bug 700036
10233
10234 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10235
10236         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10237         * src/configure: find appropriate data-types on host for SDCC's int and long
10238         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10239         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10240         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10241
10242 2003-03-07    <johan AT balder>
10243
10244         Just a big NOOP:
10245                 some minor cleanups before the big shot
10246                 OP_DEFS and OP_USES now use Kevin's protection
10247                 new option --nolabelopt
10248
10249         * src/SDCCBBlock.c:
10250         * src/SDCCast.c,:
10251         * src/SDCCcflow.c:
10252         * src/SDCCcse.c:
10253         * src/SDCCicode.c:
10254         * src/SDCCicode.h:
10255         * src/SDCClabel.c:
10256         * src/SDCCloop.c:
10257         * src/SDCCmain.c:
10258         * src/ds390/ralloc.c:
10259         * src/mcs51/ralloc.c:
10260         * src/pic/ralloc.c:
10261         * src/xa51/ralloc.c:
10262         * src/z80/ralloc.c:
10263
10264 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10265
10266         * src/pic/pcode.c (get_op): fix 64 bit warnings
10267         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10268         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10269         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10270         * support/regression/tests/malloc.c: fix 64 bit warnings
10271
10272 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10273
10274         * src/mcs51/gen.c (genMinus): fixed bug 696436
10275
10276 2003-03-02  Borut Razem <borut.razem AT siol.net>
10277
10278         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10279
10280 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10281
10282         * configure.in: test for mkstemp
10283         * sdccconf_in.h: add HAVE_MKSTEMP
10284
10285 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10286
10287         * device/include/ctype.h: removed warning while using --stack-auto
10288         * device/include/malloc.h: removed warning while using --stack-auto
10289         * device/include/string.h: removed warning while using --stack-auto
10290
10291 2003-02-23  Borut Razem <borut.razem AT siol.net>
10292
10293         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10294         because NDEBUG is defined (see man assert)
10295         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10296
10297 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10298
10299         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10300         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10301
10302 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10303
10304         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10305         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10306
10307 2003-02-18    <johan AT balder>
10308
10309         * as/mcs51/asmain.c (asmbl): module can start with a digit
10310         * as/z80/asmain.c (asmbl): module can start with a digit
10311
10312 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10313
10314         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10315         * src/asm.c: fix pipe() for Mingw32
10316
10317 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10318
10319         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10320         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10321         make -V work again; --c1mode reads now from stdin
10322         * doc/sdccman.lyx: added --c1mode
10323         * support/Util/SDCCerr.c: new messages for c1 mode
10324         * support/Util/SDCCerr.h: new messages for c1 mode
10325         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10326
10327 2003-02-15    <johan AT balder>
10328
10329         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10330
10331 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10332
10333         * doc/sdccman.lyx: Environment variables, -o and other minor things
10334
10335 2003-02-14    <johan AT balder>
10336
10337         * src/xa51/main.c: before anyone really tries to use it :)
10338
10339         * Install doc's in share/sdcc/doc
10340         * removed some obsolete files
10341         * Do a proper make distclean and uninstall
10342         M Makefile.common.in
10343         R sdccbuild.sh
10344         M as/Makefile
10345         M device/include/Makefile.in
10346         M device/lib/Makefile.in
10347         M doc/sdccman.lyx
10348         M link/Makefile
10349         M sim/ucsim/doc/Makefile.in
10350         M src/clean.mk
10351         R src/avr/peeph.rul
10352         R src/xa51/peeph.rul
10353         M support/cpp2/Makefile.in
10354         M support/makebin/Makefile
10355
10356
10357 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10358
10359         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10360
10361 2003-02-10  Borut Razem <borut.razem AT siol.net>
10362
10363         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10364         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10365         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10366         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10367         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10368         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10369         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10370         src/z80/Makefile.bcc: Borland Makefile cleanup
10371         * as/z80/Makefile.bcc: Added Borland Makefile
10372         * support/cpp2/borland.h: Removed
10373
10374 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10375
10376         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10377         * src/SDCC.lex: new pragma NOIV
10378         * src/SDCCglobl.h: new pragma NOIV
10379         * src/SDCCmem.c: new pragma NOIV
10380
10381 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10382
10383         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10384
10385 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10386
10387         * src/SDCCmain.c: signal handling is switched off by --debug
10388         * doc/Makefile: small fix for install; use clean.mk again
10389         * doc/clean.mk: clean *.pdf and *.html too
10390
10391 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10392
10393         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10394         * device/lib/printfl.c: fix a ds390 bug by making it portable
10395         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10396         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10397         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10398         * debugger/mcs51/cmd.c: converted multi-line string literals
10399         * sim/ucsim/globals.cc: converted multi-line string literals
10400         * src/SDCCmain.c: introduced signal handler to remove temp files
10401         * doc/Makefile: small tweaks, implement clean
10402         * doc: removed generated files
10403
10404 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10405
10406         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10407         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10408         Address Record is not correctly generated for DS390."
10409
10410 2003-02-02  Borut Razem <borut.razem AT siol.net>
10411
10412         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10413         * as/mcs51/asm.h: fixed compilation with Borland C
10414         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10415         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10416         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10417         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10418         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10419         src/z80/Makefile.bcc: delete $(LIB) only if exist
10420         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10421
10422 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10423
10424         * device/include/malloc.h: introduced NULL
10425         * device/include/string.h: introduced NULL
10426         * device/include/stdlib.h: introduced NULL
10427         * device/lib/_memcpy.c: removed NULL
10428         * device/lib/_strcat.c: removed NULL
10429         * device/lib/_strchr.c: removed NULL
10430         * device/lib/_strcmp.c: removed NULL
10431         * device/lib/_strcpy.c: removed NULL
10432         * device/lib/_strcspn.c: removed NULL
10433         * device/lib/_strlen.c: removed NULL
10434         * device/lib/_strncat.c: removed NULL
10435         * device/lib/_strncmp.c: removed NULL
10436         * device/lib/_strncpy.c: removed NULL
10437         * device/lib/_strpbrk.c: removed NULL
10438         * device/lib/_strrchr.c: removed NULL
10439         * device/lib/_strspn.c: removed NULL
10440         * device/lib/_strstr.c: removed NULL
10441         * device/lib/_strtok.c: removed NULL
10442         * device/lib/malloc.c: removed NULL, include own header
10443
10444 2003-02-02    <johan AT balder>
10445
10446         * 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
10447         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10448         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10449         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10450         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10451         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10452
10453 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10454
10455         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10456         area 'DATA'"
10457
10458 2003-02-01    <johan AT balder>
10459
10460         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10461
10462 2003-01-31    <johan AT CP255758-A>
10463
10464         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10465
10466 2003-01-30    <johan AT balder>
10467
10468         * src/SDCCBBlock.c: automatic bug detection
10469         * src/SDCCicode.c: automatic bug detection
10470
10471 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10472
10473         * src/SDCCglobl.h:   now --xram-size 0 works
10474         * src/SDCCmain.c:    now --xram-size 0 works
10475
10476 2003-01-29    <johan AT balder>
10477
10478         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10479
10480 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10481
10482         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10483         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10484         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10485         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10486         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10487         * src/SDCCmain.c:    Added options --xram-size and --code-size
10488
10489 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10490
10491         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10492         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10493
10494 2003-01-27    <johan AT balder>
10495
10496         * src/SDCC.y: fixed bug #613764
10497
10498 2003-01-26    <johan AT balder>
10499
10500         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10501         * src/SDCCsymt.h: fixed bug #673374
10502         * src/SDCCglue.c: fixed bug #661910
10503         * src/SDCCast.c: fixed bug #458099 and 673374
10504
10505 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10506
10507         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10508         * as/mcs51/strcmpi.h: added
10509         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10510         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10511         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10512         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10513         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10514         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10515         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10516         * as/mcs51/Makefile.aslink: new module strcmpi
10517         * as/mcs51/Makefile.asx8051: new module strcmpi
10518         * as/mcs51/Makefil.bcc: new module strcmpi
10519         * as/mcs51/Makefile.in: new module strcmpi
10520         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10521
10522 2003-01-26    <johan AT balder>
10523
10524         * src/SDCCglue.c: reverted back to 1.124
10525         * src/SDCCast.c: reverted back to 1.156
10526         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10527
10528 2003-01-25    <johan AT balder>
10529
10530         * src/SDCCglue.c: A better fix for bug #661910
10531         * src/SDCCast.c: A better fix for bug #661910
10532         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10533
10534 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10535
10536         * src/Makefile.in: remove spawn.o
10537         * src/SDCCmain.c: remove spawn.h
10538         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10539         * src/spawn.c: removed
10540         * src/spawn.h: removed
10541         * support/regression/ports/ds390/spec.mk: link with -r
10542
10543 2003-01-24    <johan AT CP255758-A>
10544
10545         * src/ds390/gen.c (aopOp): fixed bug #667458
10546         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10547         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10548         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10549
10550 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10551
10552         * src/mcs51/peeph.def: better assembler identation by Frieder
10553         * src/mcs51/gen.c: better assembler identation by Frieder
10554
10555 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10556
10557         * as/z80/string.h: removed for gcc 3.2
10558         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10559         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10560
10561 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10562
10563         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10564         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10565         * support/regression/Makefile: separate temp files for ports
10566         * support/regression/generate-cases.py: separate temp files for ports
10567         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10568         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10569
10570 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10571
10572         * moved tinitalk to device/examples/ds390
10573
10574 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10575
10576         * as/mcs51/lkmem.c: rflag is for DS390
10577         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10578         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10579                          (linkEdit): move mem- and map-files the same way as ihx-files
10580         * src/z80/main.c (_setDefaultOptions): removed --generic
10581         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10582         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10583         * src/pic/glue.c (picglue): --c1mode works again
10584         * src/pic16/glue.c (pic16glue): --c1mode works again
10585         * src/asm.c (printCLine): fix #660034
10586
10587 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10588
10589         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10590         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10591         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10592         * as/mcs51/lkmem (summary): better fix for sp problem
10593         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10594         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10595         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10596                                               remove --stack-after-data
10597
10598 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10599
10600         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10601         * src/SDCCutil.c (join): ugly bug: missing '\0'
10602         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10603
10604 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10605
10606         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10607         * src/port.h: typo
10608         * src/pic/main.c (_asmCmd): gpasm supports -o
10609         * src/z80/main.c: more general macros
10610         * device/lib/Makefile.in: remove intermediate files
10611
10612 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10613
10614         * .version: Bumped version number to 2.3.3
10615         * src/SDCCBBlock.c: new option -o
10616         * src/SDCCglobl.h: new option -o
10617         * src/SDCCglue.c: new option -o
10618         * src/SDCCmain.c: new option -o
10619         * src/asm.c: new option -o
10620         * src/ds390/main.c: new option -o
10621         * src/pic/glue.c: new option -o
10622         * src/pic/pcode.c: new option -o
10623         * src/pic/ralloc.c: new option -o
10624         * src/pic16/glue.c: new option -o
10625         * src/pic16/pcode.c: new option -o
10626         * src/pic16/ralloc.c: new option -o
10627         * src/z80/main.c: new option -o
10628         * device/lib/Makefile.in: use -o
10629         * support/regression/ports/ds390/spec.mk: use -o
10630         * support/regression/ports/gbz80/spec.mk: use -o
10631         * support/regression/ports/mcs51/spec.mk: use -o
10632         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10633         * support/regression/ports/z80/spec.mk: use -o
10634         * support/regression/ports/ucz80/spec.mk: use -o
10635         * support/regression/ports/xa51/spec.mk: use -o
10636         * support/regression/fwk/lib/timeout.c: fix usage string
10637
10638 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10639         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10640
10641 2003-01-07    <johan AT balder>
10642
10643         * src/SDCCast.c (decorateType): fixed bug #600035
10644
10645 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10646         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10647         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10648         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10649         * src/pic/pcode.c: outcommented unused variable to remove warnings
10650         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10651
10652 2003-01-06    <karl AT turbobit.com>
10653         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10654    regression tests.
10655
10656 2003-01-06    <johan AT balder>
10657
10658         * src/SDCCicode.c: fixed array add
10659
10660 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10661         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10662         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10663
10664 2003-01-04    <johan AT balder>
10665
10666         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10667
10668 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10669         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10670
10671 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10672         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10673         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10674
10675 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10676         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10677
10678 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10679         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10680
10681 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10682         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10683
10684 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10685
10686     * in \sdcc\as\mcs51\ changed these files in order to create an
10687     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10688     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10689     following files to include the previous two files: aslink.dsp,
10690     Makefile.aslink, Makefile.bcc, and Makefile.in.
10691
10692     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10693     .adb instead of .cdb
10694
10695 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10696
10697         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10698         value from option --iram-size.
10699
10700 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10701
10702         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10703         dram[] array.
10704
10705 2002-09-18    <wiml AT hhhh.org>
10706
10707         * SDCClrange.h: exposed setFromRange() and setToRange()
10708         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10709           packRegsForAccUse() (bug 542397)
10710         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10711           multiple times and emitting the fetch operations more than once
10712           added aopGetUsesAcc() function to allow binary operators to
10713           fetch their operands in the correct order; made genMinus() emit
10714           compact code for X = LITERAL - Y
10715
10716 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10717         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10718         sprintf() in line 1267.
10719
10720 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10721         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10722         like ports.
10723
10724 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10725         Changes to aslink (All the changes are marked with 'JCF'):
10726
10727         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10728         summary().
10729
10730         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10731         area BSEG.  Also moves, if possible, the DATA area down into the internal
10732         ram so more space is available.
10733
10734         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10735         sflag.
10736
10737         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10738         not bytes.  Function summary() which creates a memory usage summary
10739         file with extension .mem.  Reports of overlaping stack and small stack
10740         size.  If the space for the stack is less than 16 bytes aslink trows a
10741         warning.
10742
10743         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10744         the 8051.  Option 'y' for memory summary output file.
10745
10746         Changes to sdcc (All the changes are marked with 'JCF'):
10747
10748         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10749
10750         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10751         overlaying area for it (uses RegBankUsed[4]).
10752
10753         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10754         bank zero as used by default.  By default aslink locates the stack
10755         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10756         the creation of the .mem file.  Delegates the allocation of data area
10757         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10758         the begining of the stack area to aslink.
10759
10760         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10761         glue() in SDCCglue.c creates an area for it.
10762
10763 2002-09-03  Borut Razem <borut.razem AT siol.net>
10764         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10765         sdcc/src/pic/glue.c:
10766         introduced atexit() handler for teporay files removal in case of
10767         errors, assertions, ...
10768
10769 2002-08-29  Borut Razem <borut.razem AT siol.net>
10770         * sdcc/support/cpp2/auto-host_vc_in.h:
10771         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10772         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10773         Maybe there is a similar problem with BORLANDC? It should be checked!
10774
10775         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10776         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10777         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10778         was not executed, and the compiler (cl) launched a warning:
10779         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10780
10781 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10782         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10783
10784 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10785         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10786
10787         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10788           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10789           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10790           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10791           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10792           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10793           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10794         - added Release configuration in VS projects
10795         - review of compiler an linker options
10796         - VC .exe files are generated in bin_vc directory, not to interfere
10797           with binaries generated from other projects (cygwin, mingw, bcc ...)
10798
10799         * sdcc/src/yacc.dsp: added
10800
10801         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10802         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10803         and insert the version number definitions from .version
10804
10805         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10806
10807         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10808         added - genarate auto-host.h using auto-host_vc_in.h as template
10809
10810         * sdcc/sdcc_vc.h,
10811         removed from CVS, generated automatically
10812
10813 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10814         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10815
10816 2002-08-11  Borut Razem <borut.razem AT siol.net>
10817         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10818
10819 2002-08-10  Borut Razem <borut.razem AT siol.net>
10820         * src/SDCCmain.c (main):
10821         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10822         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10823         The consequence was that some temporary files were not removed.
10824
10825         * src/SDCCglue.c:
10826         unification of code in functions tempfilename() and tempfile():
10827         function tempnam() is defined in Visual Studio 6.0 and .NET
10828
10829         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10830
10831         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10832           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10833         - removed compiler command line option /WX: Treats all warnings as errors
10834         - update a list of source files, included into the project
10835
10836         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10837           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10838         changed project type to Generic Project so that can be correcly converted to VS.NET project
10839
10840         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10841
10842         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10843
10844         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10845
10846         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10847         added return 0 statements after assert() to make compiler happy
10848
10849         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10850         added newline in the def file to keep MSC compiler satisfied
10851
10852         * sdcc/src/z80/gen.c:
10853         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10854           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10855         - solved MSC error in function aopDump()
10856
10857         * sdcc_vc.h: define PREFIX as "\\sdcc"
10858
10859 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10860         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10861
10862 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10863         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10864         - Rewrote the register banking algorithm.
10865         - Added pCode live-range analysis to registers (for now, only non-used and
10866         singly-used registers optimized away)
10867
10868         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10869
10870         * 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.
10871
10872 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10873         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10874
10875 2002-04-22  Michael Hope  <michaelh AT vroom>
10876
10877         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10878
10879         * configure.in (DD_COPT): Added include support required for gbdk.
10880
10881         * .version: Bumped version number just to increase it.
10882
10883         * src/SDCCmain.c: Added -nostdinc to the default options.
10884
10885 2002-04-15  Michael Hope  <michaelh AT vroom>
10886
10887         * device/lib/z80/printf.c (sprintf): Added.
10888
10889         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10890
10891         * src/z80/peeph.def: Added transpose redundent load rule.
10892
10893         * src/z80/main.c: Added force callee saves for jaune.
10894
10895         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10896
10897         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10898
10899 2002-03-28  Johan Knol  <johan AT balder>
10900
10901         * src/SDCCval.c: fixed bug #532436
10902
10903 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10904         * /src/port.h:
10905         Added "char *Processor" field to the port structure.
10906
10907         * /src/SDCCmain.c:
10908         Added -p option. Allows port dependent processor to be specified.
10909
10910         * all ports:
10911         Initialized the new field char *Processor field to NULL in all ports
10912
10913         * /src/pic/*:
10914         Compiler generated registers for interrupt context saving
10915         were not getting allocated.
10916
10917 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10918
10919         * /src/SDCCast.c:
10920         Fixed left shift. Will promote the left side of a left shift
10921         if a) left shifting more than size of operand or b) when assigned
10922         to something size > size of left side
10923
10924 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10925         * src/pic/*
10926         tons of changes. Register allocation has been
10927         rewritten. Added customization for the various PICs. Flow
10928         analysis is restructured. ...
10929
10930         * src/pic/device.h:
10931         Added
10932
10933         * src/pic/device.c:
10934         Added. device.c is a PIC port hack to accomodate variations
10935         in PIC devices.
10936
10937 2002-03-13  Michael Hope  <michaelh AT vroom>
10938
10939         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10940
10941 2002-03-04  johanknol  <johanknol AT manik>
10942
10943         * /src/SDCCval.c: fixed
10944
10945         const unsigned char arr[][2] = { { 0, 1 } };
10946         t18.c:1: error: Initializer element is not constant
10947
10948 2002-03-04  bela  <bela AT manik>
10949
10950         * /device/include/mcs51reg.h:
10951         ds89c420 register definition update
10952
10953 2002-03-03    <johan AT FRIJA>
10954
10955         * support/Util/SDCCerr.c: did something, but don't no why anymore
10956
10957         * support/regression/tests/bug-524691.c: made it a little less shy
10958
10959         * src/SDCCast.c (decorateType): fixed bug #524697
10960
10961         * src/SDCCast.c: made some lineno improvements
10962
10963         * src/SDCCval.c (getNelements): changed warning to error
10964
10965         * src/SDCCglue.c (printIvalArray): changed warning to error
10966
10967         * src/SDCCicode.c: fixed a warning for mingw
10968
10969         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10970
10971         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10972
10973 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10974
10975         * src/ds390/peeph.def:
10976         Added some more peephole rules
10977
10978         * src/ds390/gen.c: Various fixes & enhancements
10979
10980         * src/SDCClrange.c, src/SDCClrange.h:
10981         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10982
10983         * src/ds390/ralloc.c:
10984         various fixes & enhancements (ds390) specific
10985
10986         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10987         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10988         from rallocs.
10989
10990         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10991
10992 2002-03-02    <johan AT FRIJA>
10993
10994         * src/SDCCast.c (decorateType): fixed bug #524708
10995
10996         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10997
10998         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10999
11000 2002-03-01  Michael Hope  <michaelh AT vroom>
11001
11002         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
11003
11004         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
11005
11006 2002-03-01    <johan AT FRIJA>
11007
11008         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
11009
11010         * src/SDCCast.c (decorateType): fixed bug #524209
11011
11012         * src/SDCCval.c (valNot): fixed bug #524195
11013
11014 2002-02-26    <johan AT balder>
11015
11016         * src/xa51/gen.c: fixed a warning
11017
11018         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
11019
11020         * src/SDCCast.c (decorateType): fixed bug #522534
11021
11022 2002-02-23    <johan AT balder>
11023
11024         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
11025
11026 2002-02-22    <johan AT balder>
11027
11028         * src/SDCCast.c: fixed bug #514865
11029
11030         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11031
11032 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11033
11034         * sdcc/src/SDCCloop.c:
11035         Previous fix was not good. basic blocks that have "break" or "return" are
11036         not really partof a loop , but live ranges used in these blocks should
11037         be live thru the entire loop, so set partOfLoop but don't add them to
11038         loop region
11039
11040 2002-02-21    <johan AT FRIJA>
11041
11042         * src/SDCCcse.c: fixed bug #514308
11043
11044 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11045
11046         * src/SDCCloop.c:
11047         Fixed BUG #519583. If a conditional block ended in a return/break
11048         statement inside a loop, it was not being considered part of the loop.
11049
11050         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11051
11052 2002-02-10  Karl Bongers <karl AT turbobit.com>
11053
11054         * debugger/*:
11055         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11056         with lots of comments and notes.
11057
11058         * device/examples/test2.c:
11059         Fix bug, "red" variable not being initialized(compiler complained).
11060
11061         * device/examples/Makefile, examples/test3.c:
11062         Add Makefile in device/examples folder, compiles test3.c
11063         for use as a multiple module SDCDB test case.
11064
11065         * sim/ucsim/cmd.src/cmdset.cc:
11066         Took out debug printfs in ucsim "next" command.
11067
11068         * sim/ucsim/xa.src:
11069         Karl and Johan start ucsim XA support.  Most dissassembly working,
11070         about 75% emulation done(plenty of work remaining).
11071
11072         * sim/ucsim/z80.src:
11073         Add Z80 support to ucsim, add test-ucz80 regression test,
11074         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11075         Notice z80 compiler fails on examples/test3.c/crc code.
11076
11077 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11078
11079         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11080         Added support for --parms-in-bank1
11081
11082         * src/ds390/peeph.def:
11083         added a few more peephole optimzations
11084
11085         * src/ds390/main.c:
11086         1) added __builtin_inp & __builtin_outp used to read in data of given length
11087            from a memory mapped port
11088         2) added __builtin_memcmp
11089         3) added __builtin_swapw swap bytes of a short
11090
11091         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11092         1) handle multiple send & receives from register bank1
11093         2) ralloc can now allocate DPTR1 to some liveRanges
11094
11095         * src/SDCCsymt.c, src/SDCCsymt.h:
11096         changes to handle multiple sends & receives
11097
11098         * src/SDCCptropt.h:
11099         added some pointer arithmetic optimization
11100
11101         * src/SDCCptropt.c:
11102         added some pointer arithmetic optimizations but not stable yet so not
11103         called from anywhere (will get this working shortly)
11104
11105         * src/SDCCopt.c: fixed for multiple sends & receives
11106
11107         * src/SDCCmain.c:
11108         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11109         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11110            set preprocessor defines (depending on options)
11111
11112         * src/SDCCicode.c, src/SDCCicode.h:
11113         changes made to handle multiple sends & receives
11114
11115         * src/SDCCglobl.h:
11116         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11117
11118         * src/SDCCcse.c, src/SDCCcse.h:
11119         added function findbackward def (to be used in upcoming optimization)
11120
11121         * src/SDCCcflow.c, src/SDCCcflow.h:
11122         added function returnAtEnd - to determine if a basic block terminates with
11123         a RETURN iCode
11124
11125         * src/SDCCast.c, src/SDCCast.h:
11126         added option parms-in-bank1
11127
11128         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11129         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11130         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11131         adjusted for --parms-in-bank1 option
11132
11133         * device/include/string.h:
11134         donot redefine "reentrant" keyword
11135
11136         * device/include/ds80c390.h: Added some more SFRs
11137
11138 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11139
11140         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11141
11142 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11143
11144         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11145
11146 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11147
11148         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11149
11150 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11151
11152         * Added --xram-movc option
11153
11154 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11155
11156         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11157
11158 2002-01-11  Johan Knol
11159
11160         * Added math lib of Jesus Calvino-Fraga
11161
11162 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11163
11164         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11165         * support/regression/Makefile: new target test-mcs51-stack-auto
11166         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11167
11168 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11169
11170         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11171
11172 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11173
11174         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11175
11176 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11177
11178         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11179
11180         * src/SDCCglue.h: add definition for printIvalChar()
11181
11182 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11183
11184         * src/SDCCast.c: fix #498138 by Johan
11185
11186         * src/SDCCglue.c: fix #498138 by Johan
11187
11188 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11189
11190         * support/regression/Makefile: fix clean
11191
11192         * support/regression/ports/ds390/support.c: fix transmission of last character
11193
11194 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11195
11196         * /sdcc/src/ds390/gen.c:
11197         a) improved computing address of stack variable
11198         b) took out some #if 0 code
11199         c) improved parmBytes adjustment
11200         d) improved genPlusIncr & genMinusIncr
11201         e) genCmp could generate bad code (when left assigned to DPTR)
11202         f) Fixed bug in hasInc
11203
11204         * /sdcc/src/ds390/ralloc.c:
11205         a) packRegsForSupport could mess up live information (Fixed)
11206         b) packRegsDPTRuse could be incorrect for left & right shift
11207
11208         * /sdcc/src/mcs51/ralloc.c:
11209         packRegsForSupport could mess up the live information (Fixed)
11210
11211         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11212
11213         * /sdcc/src/SDCCast.c:
11214         can reverse a loop even if function call is present as long
11215         as the loop control variable is local & is not passed as parameter
11216
11217 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11218
11219         * /sdcc/ChangeLog: *** empty log message ***
11220
11221         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11222         More builtin function additions for TININative
11223
11224         * /sdcc/src/ds390/ralloc.c:
11225         Had broken the regression testsuite
11226
11227         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11228
11229         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11230         Added funcattr hasStackParms will be set for reentrant functions when there
11231         are paramteres on the stack, this helps in minimizing frame pointer generation
11232         typeFromStr can handle function pointers now
11233
11234         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11235         *** empty log message ***
11236
11237 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11238
11239         * /src/ds390/gen.c, /src/ds390/main.c:
11240         More builtin function additions for TININative
11241
11242         * /src/ds390/ralloc.c:
11243         Had broken the regression testsuite
11244
11245         * /src/SDCCast.c: Fixed a bug in dumptree
11246
11247         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11248         Added funcattr hasStackParms will be set for reentrant functions when there
11249         are paramteres on the stack, this helps in minimizing frame pointer generation
11250         typeFromStr can handle function pointers now
11251
11252         * /doc/builtins.txt, /doc/TININative.txt:
11253         *** empty log message ***
11254
11255
11256 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11257
11258         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11259         ALPHA version for -mTININative
11260
11261         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11262         updated to reflect changes in the port structure
11263
11264         * /src/port.h:
11265         added function do_assemble (similar to do_link) if non-null this function
11266         will be called to do assembly (-mTININative) requires a multi command
11267         assembly
11268         added function genAssemblerEnd will be called to generate assembler Epilogue
11269
11270         * /src/SDCCsymt.c:
11271         added _JavaNative to debug info printing
11272
11273         * /src/SDCCmain.c: added option --tini-libid
11274         added port->do_assemble function (-mTININative) has a multi command assemble
11275
11276         * /src/SDCCglue.c: Disabled "constExpr" check
11277         added port->genAssemblerEnd function
11278
11279         * /src/SDCCglobl.h: Added option --tini-libid value
11280
11281         * /src/SDCCast.h:
11282         tookout optimizeCompare from the header (has no external references)
11283
11284         * /src/SDCCast.c: made one more function "static"
11285
11286 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11287
11288         * src/z80/mappings.i: Added z80asm support.
11289
11290         * src/z80/main.c: Added z80asm support on --asm=z80asm
11291
11292         * src/z80/gen.c: Fixed asm portability issues.
11293
11294         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11295
11296         * src/SDCCglue.c (printExterns): Added global/extern split.
11297
11298 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11299
11300         * support/regression/Makefile: added test for mcs51 model large
11301
11302         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11303
11304         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11305
11306 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11307
11308         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11309
11310 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11311
11312         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11313
11314         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11315
11316 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11317
11318         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11319
11320         * support/regression/tests/simplefloat.c: Port to mcs51.
11321
11322 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11323         * support/regression/tests/bug-485362.c: Added.
11324
11325         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11326
11327         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11328
11329         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11330
11331         * src/z80/gen.c (aopDump): Added a dump function.
11332
11333 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11334         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11335
11336         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11337
11338         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11339
11340         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11341
11342         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11343
11344         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11345
11346         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11347
11348         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11349
11350         * support/regression/ports/ds390/support.c: Use tinibios.
11351
11352         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11353
11354 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11355
11356         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11357         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11358
11359         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11360
11361         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11362
11363 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11364
11365         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11366
11367         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11368         (packRegsForIYUse): Created and optimised.
11369
11370 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11371
11372         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11373 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11374
11375         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11376
11377         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11378
11379         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11380
11381 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11382
11383         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11384
11385         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11386
11387 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11388
11389         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11390
11391         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11392
11393         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11394
11395 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11396
11397         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11398         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11399         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11400
11401         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11402
11403         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11404         (genNotFloat): Added.
11405         (genUminusFloat): Added.
11406
11407         * device/lib/z80/Makefile: Added floating pt stubs.
11408
11409         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11410
11411         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11412
11413         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11414
11415 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11416
11417         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11418
11419         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11420
11421         * sdcc/support/regression/Makefile: Add port ds390.
11422
11423         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11424
11425         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11426
11427         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11428
11429         * sdcc/support/regression/ports/ds390/support.c: Added.
11430
11431         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11432
11433         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11434
11435         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11436
11437 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11438
11439         * device/include/malloc.h: Added z80 and gbz80 support.
11440
11441         * device/lib/gbz80/heap.s: Added.
11442
11443         * device/lib/z80/heap.s: Added.
11444
11445         * device/lib/malloc.c: Added z80 and gbz80 support.
11446
11447         * support/regression/tests/malloc.c (testMalloc): Added.
11448
11449         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11450
11451         * support/regression/tests/bug-478094.c: Added.
11452
11453         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11454
11455 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11456
11457         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11458
11459         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11460
11461         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11462
11463         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11464
11465         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11466
11467 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11468
11469         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11470
11471 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11472
11473         * support/regression/tests/bug-477927.c: Added.
11474
11475         * src/z80/peeph.def: Added minor rules.
11476
11477         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11478
11479         * src/z80/peeph.def: Added jump optimisation modification.
11480
11481 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11482
11483         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11484
11485 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11486
11487         * support/regression/tests/funptrs.c: Added.
11488
11489 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11490
11491         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11492
11493 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11494
11495         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11496
11497         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11498
11499         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11500         (movLeft2ResultLong): Created.
11501
11502         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11503         (joinPushes): Added.  Joins two char pushes into a word push.
11504
11505 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11506
11507         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11508
11509         * support/makebin/Makefile (install): Added creation of dest dir.
11510
11511 2001-10-24 Karl Bongers <karl AT turbobit.com>
11512
11513         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11514
11515 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11516
11517         * src/z80/ralloc.c: Turned off faulty pack for one use.
11518
11519         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11520
11521         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11522
11523 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11524
11525         * support/regression/Makefile: Improved clean
11526
11527         * support/regression/ports/gbz80/spec.mk: Added clean
11528
11529         * support/regression/ports/host/spec.mk: Added clean
11530
11531         * support/regression/ports/z80/spec.mk: Added clean
11532
11533         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11534
11535         * support/regression/ports/mcs51/timeout.c: little improvements
11536
11537 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11538
11539         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11540
11541         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11542
11543         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11544
11545 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11546
11547         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11548
11549         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11550
11551 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11552         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11553
11554         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11555
11556         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11557
11558         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11559
11560         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11561
11562         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11563
11564         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11565
11566         * support/regression/tests/longor.c: Added.
11567
11568 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11569
11570         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11571
11572         * as/mcs51/aslink.h: define PATH_MAX
11573
11574         * as/mcs51/asm.h: define PATH_MAX
11575
11576         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11577
11578         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11579
11580         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11581
11582         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11583
11584         * src/SDCCglobl.h: define PATH_MAX
11585
11586         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11587
11588         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11589
11590 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11591
11592         * src/z80/gen.c (gencjneshort): Fixed
11593
11594         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11595
11596 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11597
11598         * support/regression/tests/bug-469671.c: Added.
11599
11600         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11601
11602 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11603
11604         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11605
11606         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11607
11608 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11609
11610         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11611
11612         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11613
11614         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11615
11616         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11617
11618         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11619
11620         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11621
11622         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11623
11624 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11625
11626         * 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.
11627
11628         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11629
11630         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11631
11632 2001-10-07    <johan AT FRIJA>
11633
11634         * device/lib/gets.c (gets): fixed the return value.
11635
11636 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11637         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11638
11639         * 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.
11640
11641         * 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.
11642
11643         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11644
11645         * src/pic/gen.c: Removed Safe_strdup.
11646
11647         * configure.in: Added option to enable libgc support.
11648
11649         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11650         (bitVectUnion): Optimised.
11651         (bitVectIntersect): Optimised.
11652         (bitVectBitsInCommon): Optimised.
11653         (bitVectCplAnd): Optimised.
11654
11655         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11656
11657 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11658
11659         * src/SDCCmain.c: distinguish between assembler debug and plain options
11660
11661         * src/avr/main.c:   remove standard assembler options
11662
11663         * src/ds390/main.c: remove standard assembler options
11664
11665         * src/mcs51/main.c: remove standard assembler options
11666
11667         * src/port.h: removed "PENDING" comment
11668
11669 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11670
11671         * src/device/lib/_mulint.c  : new, with assember functions
11672
11673         * src/device/lib/_mullong.c : new, with assember functions
11674
11675         * src/device/lib/_divuint.c : with assember functions
11676
11677         * src/device/lib/_divsint.c : with assember functions
11678
11679         * src/device/lib/_divulong.c: with assember functions
11680
11681         * src/device/lib/_divslong.c: with assember functions
11682
11683         * src/device/lib/_moduint.c : with assember functions
11684
11685         * src/device/lib/_modsint.c : with assember functions
11686
11687         * src/device/lib/_modulong.c: with assember functions
11688
11689         * src/device/lib/_modslong.c: with assember functions
11690
11691         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11692
11693         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11694
11695         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11696                                       replaced _mululong.c and _mulslong.c by _mullong.c
11697
11698 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11699
11700         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11701
11702 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11703
11704         * src/SDCCglue.c: test, if win32api is available for MINGW
11705
11706 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11707
11708         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11709         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11710         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11711         * support/regression/ports/host/spec.mk: removed GENERIC
11712         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11713         * support/regression/ports/z80/spec.mk: removed GENERIC
11714
11715 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11716
11717         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11718
11719         * support/regression/tests/bug-467035.c: Created.
11720
11721 2001-10-01    <johan AT FRIJA>
11722
11723         * src/SDCC.y: fixed bug #466586 part 1
11724
11725 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11726
11727         * SDCCicode.c: z80 has no generic pointers
11728         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11729
11730 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11731
11732         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11733
11734 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11735
11736         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11737
11738         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11739
11740 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11741
11742         * configure.in: Fixed up so that ucsim is only configured once.
11743
11744         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11745
11746         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11747         (getPathDifference): As above.
11748
11749         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11750
11751         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11752
11753 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11754         * .version: Updated to 2.3.1
11755
11756         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11757         Added copyright header.
11758
11759         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11760         (assemble): Added support for macro based assembler commands.
11761         (linkEdit): Added support for macro based linker commands.
11762         (preProcess): Changed the pre-processor to use macros.
11763         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11764         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11765
11766         * device/lib/z80/crt0.s: Added module name for debugging.
11767
11768 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11769
11770         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11771
11772         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11773
11774         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11775
11776         * src/Makefile.in: Added SDCCmacro and SDCCutil
11777
11778 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11779
11780         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11781
11782 2001-09-16    <johan AT FRIJA>
11783
11784         * 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.
11785
11786 2001-09-15    <johan AT FRIJA>
11787
11788         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11789         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11790
11791 2001-09-11    <johan AT FRIJA>
11792
11793         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11794
11795 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11796
11797         * support/regression/tests/bug-460444.c: Added test case.
11798
11799         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11800         (genCast): Added justification for all of the asserts.
11801
11802 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11803
11804         * support/regression/support.c: _xdata replaced by xdata
11805
11806         * support/regression/spec.mk: removed _generic
11807
11808 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11809
11810         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11811
11812         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11813         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11814
11815         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11816
11817         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11818
11819         * support/regression/tests/bug-460010.c: Added test case.
11820
11821         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11822
11823 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11824
11825         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11826
11827         * support/regression/testfwk.c: removed workaround for bug #436344
11828
11829         * support/regression/tests/bp.c: use less memory with mcs51
11830
11831         * support/regression/tests/bug-441448.c: use less memory
11832
11833         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11834
11835         * support/regression/collate-results.py: typo
11836
11837 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11838
11839         * support/regression/tests/fetchoverlap.c: Added new test case.
11840
11841         * support/regression/tests/bp.c: Added new test case.
11842
11843         * support/regression/tests/bug-448984.c: Added new test case.
11844
11845         * support/regression/tests/pow2shifts.c: Added new test case.
11846
11847         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11848         (genlshTwo): Fixed right shift for count > 8.
11849
11850         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11851
11852 2001-09-08    <johan AT FRIJA>
11853
11854         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11855
11856 2001-09-07    <johan AT FRIJA>
11857
11858         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11859
11860         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11861
11862 2001-09-06    <johan AT FRIJA>
11863
11864         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11865         * bernhard noted me at this: "() equals to (void)" (1.38)
11866
11867 2001-09-05    <johan AT FRIJA>
11868
11869         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11870
11871 2001-09-04    <johan AT FRIJA>
11872
11873         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11874
11875
11876 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11877
11878         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11879
11880 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11881
11882         * link/z80/aslink.h: Fixed path for PATH_MAX
11883
11884 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11885
11886         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11887
11888         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11889
11890         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11891
11892         * 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.
11893
11894 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11895
11896         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11897         (genCmp): Fixed up genCmp for the GB with longs.
11898
11899         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11900
11901         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11902
11903         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11904
11905         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11906
11907 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11908
11909         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11910
11911 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11912
11913         * 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.
11914
11915         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11916
11917 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11918
11919         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11920
11921         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11922
11923 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11924
11925   * sim/ucsim/configure:    little improvement of Cygwin-detection
11926   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11927   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11928   * support/regression/tests/bug-221100.c: small changes for mcs51
11929   * support/regression/tests/bug-221168.c: small changes for mcs51
11930   * support/regression/tests/bug-227710.c: small changes for mcs51
11931   * support/regression/tests/staticinit.c: small changes for mcs51
11932   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11933   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11934   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11935
11936 $Revision$