* support/regression/tests/bitfields.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
6 2006-07-04 Borut Razem <borut.razem AT siol.net>
7
8         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in,
9           src/port.mk,
10           src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
11           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
12           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
13           reverted changes from 2006-07-03
14         * Makefile.common.in: added @CPPFLAGS@ to CPPFLAGS
15         * support/regression/Makefile.in, support/regression/ports/host/spec.mk:
16           added CPPFLAGS, used by the host port
17
18 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
19
20         * support/regression/valdiag/tests/switch.c,
21         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
22         * support/regression/tests/libmullong.c: fixed for host
23         * support/regression/ports/host/spec.mk: disable all warnings for host,
24         SDCC runs with --less-pedantic too
25
26 2006-07-03 Borut Razem <borut.razem AT siol.net>
27
28         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
29           defined CPPFLAGS
30         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
31         * src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
32           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
33           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
34           include ../port.mk
35         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
36           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
37           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
38           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
39
40 2006-07-02 Raphael Neider <rneider AT web.de>
41
42         * src/pic16/devices.inc,
43         * device/include/pic16/pic18fregs.h,
44         * device/include/pic16/pic18f4550.h,
45         * device/lib/pic16/pics.all,
46         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
47
48 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
49
50         * as/hc08/lkaomf51.c (OutputName),
51         * as/mcs51/lkaomf51.c (OutputName),
52         * as/z80/asmain.c (asmbl),
53         * src/ds390/main.c (asmLineNodeFromLineNode),
54         * src/hc08/ralloc.c (hc08_assignRegisters),
55         * src/mcs51/main.c (asmLineNodeFromLineNode),
56         * src/xa51/ralloc.c (checkRegMask),
57         * src/xa51/gen.c (emitcode),
58         * src/z80/gen.c (_emit2),
59         * src/SDCCast.c (searchLitOp),
60         * src/SDCCglobl.h,
61         * support/packihx/packihx.c,
62         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
63         * src/ds390/gen.c (aopPutUsesAcc),
64         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
65         * support/regression/tests/libmullong.c (mullong_wrapper),
66         * src/SDCCsymt.c (powof2),
67         * src/SDCCast.c,
68         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
69         * src/SDCCsymt.h: added TYPE_TARGET_*
70         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
71         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
72         SDCCast because 1) header problems 2) this is the right place
73         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
74         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
75         prototype
76
77 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
78
79         * src/SDCCicode.h: removed buggy semicolon in unused macro
80         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
81         search for previous definiton of auto symbols too,
82         (findPrevUse): fixed logic of emitWarnings
83
84 2006-06-26 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
87           PCLATH and PCLATU on interrupts, potentially fixes #1505141
88
89 2006-06-25 Raphael Neider <rneider AT web.de>
90
91         * device/lib/pic/libm: NEW, added math library functions
92         * device/lib/pic/libsdcc: NEW; added float support functions
93         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
94         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
95           NEW, added math related headers
96         * device/include/asm/pic/features.h: NEW
97         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
98           (popGet): allow larger offsets for AOP_PCODE,
99           (genDataPointerSet): handle literals explicitly, more debug output,
100           (genAssign): fixed for float using aopLiteral ;-)
101         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
102           GOTO initialisation routine
103         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
104           flag on registers, fixes #1469043 (local variables do not work)
105         * src/pic/main.c (_pic14_do_link),
106         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
107           available
108
109 2006-06-25 Borut Razem <borut.razem AT siol.net>
110
111         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
112           characters printed (not including the trailing '\0' used to end
113           output to strings). Problem detected in regression test bug-927659.c.
114           NOTE: printf() family functions should return int instead
115           unsigned int!
116         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
117           specifier are printed as themselves
118         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
119           support flags, width and precision specifiers
120
121 2006-06-24 Borut Razem <borut.razem AT siol.net>
122
123         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
124           to the list of sdcc tagrets not supporting bit type
125         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
126           testfor pic16 due to bug:
127           [ 1511794 ] pic16: regression test bug-895992.c fails
128
129 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
130
131         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
132         * src/SDCCglue.c (initPointer), fixed bug 1496419
133         * support/regression/tests/bug1496419.c: new, added
134
135 2006-06-22 Borut Razem <borut.razem AT siol.net>
136
137         * support/regression/ports/pic16/support.c: use gpsim usart module from
138           libgpsim_modules library
139
140 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
141
142         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
143         IP0H to IPH0.
144
145 2006-06-19 Raphael Neider <rneider AT web.de>
146
147         * src/pic/glue.h,src/pic16/glue.h: added prototypes
148         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
149           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
150           (pic14printExterns,pic14printPublics,pic16printPublics,
151           pic16_printExterns): use new functions to emit symbols
152           (picglue,pic16glue): emit publics before emitting externs
153         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
154           locally defined functions to avoid bug #1443651
155         * support/regression/tests/bug-716242.c: removed pic16 workaround
156         * support/regression/ports/pic16/spec.mk: ignore errors during build
157
158 2006-06-19 Raphael Neider <rneider AT web.de>
159
160         * src/pic/glue.h: added pic14aopLiteral prototype
161         * src/pic/glue.c (pic14aopLiteral): return unsigned int
162         * src/pic/gen.c: removed stdint.h dependency
163           (aopGet): use Safe_strdup()
164           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
165           (genDataPointerSet): use pic14aopLiteral()
166         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
167           for pic16; thanks to Bernhard and Maarten
168
169 2006-06-18 Borut Razem <borut.razem AT siol.net>
170
171         * support/regression/tests/structflexarray.c: flexible array members
172           not supported by gcc < 3
173         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
174           GUI tool by default
175         * src/pic/gen.c: don't include [p]strdin.h on solaris
176         * support/Util/pstdint.h: addad svn attributes
177         * support/regression/tests/constantRange.c,
178           support/regression/tests/rotate.c: include inttypes.h instead
179           stdint.h on solaris, addad svn attributes
180
181 2006-06-18 Raphael Neider <rneider AT web.de>
182
183         * src/SDCCsymt.c (initCSupport): change return type of divschar to
184           int for PIC16
185         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
186           (pic16_genMinusBits): simplified sign-extension
187           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
188             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
189             adjusted to correctly handle mixed-signed operands, disabled
190             now unused multiplciation routines
191         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
192           (assignResultValue): added argument denoting the size of the result
193             as returned by the function (fixes upcasts in assigning from
194             function calls: char foo(); int i = foo();)
195           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
196             function result to assignResultValue
197           (genMult): disabled inlined multiplication code
198           (genDiv): augmented to also handle the modulus operator, fixed to
199             handle mixed-signed operands correctly
200           (genMod): simply call genDiv, disabled unused code
201           (genAssign): fixed missing (sign-)extension on result
202         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
203             valid char operands, allow signed operands for native code, added
204             division and modulo operator handling
205         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
206
207         As a consequence, onebyte.c (if split into two files) and muldiv.c
208         pass regression tests.
209
210 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
211
212         * doc/Makefile.in: two runs of makeindex seem needed to get
213         correct page references in the index of sdccman.pdf
214         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
215
216 2006-06-17 Borut Razem <borut.razem AT siol.net>
217
218         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
219
220 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
221
222         * doc/sdccman.lyx: updated, added (porting source code, debugging),
223         mentioned ec2drv and paulmon
224
225 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
226
227         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
228           consecutive abs areas
229           (find_empty_space, allocate_space): added map to handle codemap or
230            xdatamap,
231           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
232            absolute idata and xdata
233         * as/mcs51/lkmem.c (summary2): updated legend
234
235 2006-06-16 Raphael Neider <rneider AT web.de>
236
237         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
238
239 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
240
241         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
242           1208515
243         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
244
245 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
246
247         * src/port.h (struct PORT): added field gp_tags, to hold the tag
248         value of generic pointers,
249         * src/avr/main.c,
250           src/ds390/main.c,
251           src/hc08/main.c,
252           src/izt/i186.c,
253           src/izt/tlcs900h.c,
254           src/mcs51/main.c,
255           src/pic/main.c,
256           src/pic16/main.c,
257           src/xa51/main.c,
258           src/z80/main.c: PORT structure, added elements for gp_tags field,
259         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
260         fields in the PORT structure of each port,
261         * src/SDCCast.c (decorateType): allow processing of generic pointers
262         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
263         S_FIXED symbols
264
265 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
266
267         * link/z80/lkgb.c,
268         * link/z80/lkgg.c,
269         * src/pic16/gen.c,
270         * src/pic16/main.c,
271         * src/pic16/pcode.c,
272         * src/pic/main.c,
273         * src/pic/pcoderegs.c,
274         * src/SDCCicode.c,
275         * src/SDCCmain.c,
276         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
277           bug 1504689 on minGW
278
279 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
280
281         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
282
283 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
284
285         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
286
287 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
288
289         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
290           for optimization
291
292 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
293
294         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
295         to a char variable. Fixed bug #1504211
296         * device/include/pic16/adc.h,
297         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
298         and fixed bug #1364390
299
300 2006-06-10 Borut Razem <borut.razem AT siol.net>
301
302         * CVSROOT: removed the CVS left-over
303
304 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
305
306         * as/hc08/asmain.c (asexit),
307         * as/hc08/lkmain.c (lkexit),
308         * as/mcs51/asmain.c (asexit),
309         * as/mcs51/lkmain.c (lkexit),
310         * src/SDCCglue.c (DEFSETFUNC),
311         * src/SDCCmain.c (linkEdit, assemble),
312         * support/librarian/sdcclib.c (AddRel),
313           replaced unlink() by standard C remove()
314         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
315         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
316           gatherImplicitVariables): new, added to fix bug 608752,
317           (createFunction): added gatherImplicitVariables()
318         * src/SDCCast.h: added createRMW prototype
319         * src/SDCCsymt.h (struct symbol): added infertype
320         * support/regression/tests/bug608752.c: new, added
321
322 2006-06-10 Raphael Neider <rneider AT web.de>
323
324         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
325           multibyte dummy reads (fixes #1503234)
326
327 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
328
329         * device/include/mcs51/compiler.h: new, added header file to enable
330           creating common sfr definition header files for different compilers
331
332 2006-06-05 Raphael Neider <rneider AT web.de>
333
334         * src/pic16/{pcode.h,genarith.c}:
335           introduced pCodeOp combining any two pCodeOps (previously only
336           two register operands could be combined), removed pcop2 from
337           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
338         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
339         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
340           rewritten to use new PO_TWO_OPS
341         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
342         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
343           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
344           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
345           (pic16_get_op): embraced return arg to allow #define return(x),
346             added new case for combined opcodes
347           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
348           (pic16_pCode2str,pic16_getRegFrompCodeOp,
349            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
350
351 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
352
353         * src/SDCCval.c (checkConstantRange): added
354         * src/SDCCval.h: added checkConstantRange
355         * support/Util/SDCCerr.c,
356         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
357         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
358         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
359         * src/SDCCast.c (decorateType): added checkConstantRange,
360         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
361         can be emitted with the correct always true/false warning,
362         added optimization for double '!';
363         result of decorateType() must be assigned back to the tree, because
364         decorateType() can change the tree
365         * src/SDCCicode.c (geniCodeLogic),
366         (geniCodeAssign): replaced new checkConstantRange, added warnings,
367         (checkConstantRange): removed, it was only a fragment which never
368         emitted a warning
369         * src/SDCCsymt.c (computeType): fixed promotion for
370         "-1 < (unsigned bit) b"
371         * src/pic/ralloc.c (packRegsForAssign),
372         * src/pic16/ralloc.c (packRegsForAssign),
373         * src/hc08/ralloc.c (packRegsForAssign),
374         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
375         from mcs51
376         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
377         * support/regression/tests/constantRange.c: added
378         * support/valdiag/tests/constantRange.c: added
379         * support/valdiag/valdiag.py: added -DPORT_HOST=1
380
381 2006-06-02 Borut Razem <borut.razem AT siol.net>
382
383         * support/regression/ports/pic16/support.c: increase stack size
384           to 255 bytes
385         * support/regression/Makefile.in: sort tests by name so that the
386           resutlts can be compared on different machines / platforms
387
388 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
389
390         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
391         * src/ds390/gen.c (emitLabel): new, added,
392           (genDjnz): fixed stack overflow bug,
393           (throughout): cosmetic changes to sync with mcs51/gen.c,
394           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
395         * src/mcs51/gen.c (genEndFunction): small optimization,
396           (throughout): cosmetic changes to sync with ds390/gen.c
397
398 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
399
400         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
401           (_print_format): fixed printing pointers
402         * src/mcs51/gen.c (emitLabel, movb): new, added,
403           (genAssign): small optimization,
404           (genDjnz): fixed stack overflow bug,
405           (throughout): replaced sprintf with SNPRINTF,
406           replaced mcs51_regWithIdx with REG_WITH_INDEX,
407           replaced emitcode("mov", "b,...") with MOVB(...),
408           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
409           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
410         * src/mcs51/peeph.def: added rules 140 and 264
411         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
412           so they may get optimized into registers
413
414 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
415
416         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
417           immediately when encountered,
418           (printUsage): always use stderr even on windows
419
420 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
421
422         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
423         (processParms): fixed bug #1247551
424         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
425         parseCmdLine, main): print '--version' to stdout,
426         print 'help' to stdout if --help is given,
427         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
428         arguments are given; fixed --help
429
430 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
431
432         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
433         * support/regression/tests/bug-1493710.c: added
434
435 2006-05-27 Borut Razem <borut.razem AT siol.net>
436
437         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
438           static instead auto
439         * support/regression/ports/pic16/support.c: increase stack size
440           from default 64 bytes to 128 bytes
441         * support/regression/tests/staticinit.c,
442           support/regression/tests/float.c: regression tests fully enabled
443           for pic16 port by putting the initialized data arrays into the code
444           section
445         * support/regression/ports/pic16/spec.mk: don't link default libraries.
446           This was changed by mistake in the previous version.
447
448 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
449
450         * src/pic16/gen.c (genFunction, genEndFunction): some
451         beautifications, fixed bug with falsely restoring FSR2 in large
452         stack model, thanks to Beau E. Cox for reporting the bug
453
454 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
455
456         * debugger/mcs51/break.c,
457         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
458           use %p to print pointers, made address variables unsigned
459         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
460         * debugger/mcs51/symtab.c (parseSymbol): must return something
461         * src/mcs51/gen.c (aopForSym): small optimization,
462            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
463           (freeAsmop): added missing break,
464           (aopPut): removed parameter bvolatile, determine it inside the function,
465           (saveRegisters, unsaveRegisters): small optimization,
466           (genIpush): removed pointless check,
467           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
468           replaced sprintf with SNPRINTF,
469           replaced strcpy with strncpyz,
470           updated aopPut calls,
471           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
472         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
473
474 2006-05-24 Borut Razem <borut.razem AT siol.net>
475
476         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
477           modification of test for the pic16 port, put the array to the code
478           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
479
480 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
481
482         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
483         * support/Util/pstdint.h: added
484
485 2006-05-22 Borut Razem <borut.razem AT siol.net>
486
487         * src/regression/Makefile: removed bool2.c test, added -q linker option
488         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
489           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
490           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
491           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
492           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
493           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
494           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
495           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
496           define SUPPORT_BIT_TYPES 0, removed unused bit variables
497
498 2006-05-22 Raphael Neider <rneider AT web.de>
499
500         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
501           bug #1492360 (problematic due to generic pointers, see code)
502
503 2006-05-22 Borut Razem <borut.razem AT siol.net>
504
505         * support/regression/ports/pic16/specs.mk: removed stack size linker
506           directive
507         * support/regression/tests/array.c,
508           support/regression/tests/bitopcse.c,
509           support/regression/tests/bug-908454.c,
510           support/regression/tests/malloc.c: modified for pic16 regression test
511         * support/regression/tests/bitfields.c:
512           pic16 - excluded bitfileds of size > 8
513         * support/regression/tests/bp.c: pic16 - reduced data size
514         * support/regression/tests/bug-221100.c: pic16 - reduced data size
515         * support/regression/tests/bug-460010.c:
516           pic16 - used the absolute address the fits in memory
517         * support/regression/tests/bug-716242.c:
518           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
519         * support/regression/tests/float.c:
520           pic16 - excluded - data size too big
521         * support/regression/tests/onebyte.c:
522           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
523         * support/regression/tests/shifts.c:
524           pic16 - function names probably have to differ in first X characters
525           (gpasm limitation?)
526         * support/regression/tests/staticinit.c:
527           pic16 - excluded some tests due error: no target memory available for
528           section ".idata"
529
530 2006-05-22 Borut Razem <borut.razem AT siol.net>
531
532         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
533           second try. Thanks Stas Sergeev once more.
534
535 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
536
537         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
538           (genLeftShift, genRightShift): fixed bug 1491627
539         * src/hc08/peeph.def (rules 7, 8.x): added
540         * support/regression/tests/shifts.c (ShiftLeftByParam,
541           ShiftRightByParam, testShiftByParam): added to test variable shifting
542
543 2006-05-20 Raphael Neider <rneider AT web.de>
544
545         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
546         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
547           (allocReg): add only new registers to dynAllocRegs,
548           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
549             #1489055, #1445850, and probably #1483693
550
551 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
552
553         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
554         bug in for-loop that didn't emit the last of CONFIG and ID registers
555
556 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
557
558         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
559           with offset
560         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
561           1489016, 1434401 and 1490124
562         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
563           1489016, 1434401 and 1490124
564
565 2006-05-17 Borut Razem <borut.razem AT siol.net>
566
567         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
568           thanks Stas Sergeev
569
570 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
571
572         * device/include/mcs51/P89c51RD2.h,
573         * device/include/mcs51/P89LPC901.h,
574         * device/include/mcs51/P89LPC922.h,
575         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
576
577 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
578
579         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
580         to fix missing stack pragma in compiled binary object file,
581
582 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
583
584         * support/packihx/configure.in,
585         * support/packihx/configure: removed warning, autoconf >= 2.5x can
586         determine sizeof basic types even while cross compiling
587
588 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
589
590         * src/avr/gen.c (aopop),
591         * src/ds390/gen.c (aopOp),
592         * src/hc08/gen.c (aopOp),
593         * src/mcs51/gen.c (aopop),
594         * src/pic16/gen.c (pic16_aopOp),
595         * src/pic/gen.c (aopOp),
596         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
597         if size of operand is smaller than spill location
598
599 2006-05-12 Borut Razem <borut.razem AT siol.net>
600
601         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
602           have to have CR/LF line endings even if they are checked out on *nix
603           or on WIN32 in cygwin binmode
604
605 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
606
607         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
608         * device/include/ds80c390.h: added sfr16 definitions
609         * src/ds390/gen.c,
610         * src/ds390/gen.h,
611         * src/ds390/main.c,
612         * src/ds390/ralloc.c,
613         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
614           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
615           bit returning functions
616         * support/regression/tests/sfr16.c: enabled test on ds390
617
618 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
619
620         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
621         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
622
623 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
624
625         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
626         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
627           (cl_address_space constructor): removed expensive initialization,
628           (cl_address_space::get_cell): extended for late initialization,
629           (cl_address_space::*): use late initialization,
630           (cl_address_decoder::activate): removed expensive initialization,
631           This reduced regression test running time by 25%
632
633 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
634
635         * packihx/,
636         * configure.in,
637         * configure,
638         * sdcc.dsw,
639         * Makefile.bcc,
640         * Makefile.in,
641         * support/packihx/Makefile.in,
642         * support/packihx/clean.mk,
643         * support/packihx/Makefile.bcc,
644         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
645
646 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
647
648         * src/SDCCval.c (valNot): fix for regression test failure
649           of not.c on big endian hosts
650
651 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
652
653         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
654
655 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
656
657         * device/lib/mcs51/Makefile.in: changed string comparison operator
658           to = for POSIX compliance; == is bash extension
659
660 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
661
662         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
663           kosmonaut_pirx
664
665 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
666
667         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
668         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
669         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
670         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
671         bug report #1478657,
672
673 2006-05-05 Borut Razem <borut.razem AT siol.net>
674
675         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
676           making the html
677
678 2006-05-02 Borut Razem <borut.razem AT siol.net>
679
680         * doc/Makefile.in: removed *.ind dependency since there is no rule to
681           create *.ind, which made make to fail if invoked with -j 2
682
683 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
684
685         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
686           Hubert Sack for patch 1479782
687
688 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
689
690         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
691
692 2006-05-01 Raphael Neider <rneider AT web.de>
693
694         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
695           (create_pic): store only prefix-free device name,
696           (init_pic): check for device names with "16" prefix,
697           (list_valid_pics),
698         * src/pic/device.h (struct PIC_device),
699         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
700             stored device name,
701         * device/include/pic/pic12f{635,675,629,683}.h,
702         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
703         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
704         * device/include/pic/pic16f505.h,
705         * device/lib/pic/libdev/pic16f505.c: removed
706         * device/include/pic/pic14devices.txt: added support for pic12f
707             devices, removed unsupported non 16-bit devices
708             [above changes provided by patch from Zik Saleeba]
709         * src/pic/*, src/pic16/*, device/include/pic16/*,
710           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
711
712 2006-05-01 Borut Razem <borut.razem AT siol.net>
713
714         * configure.in, configure, doc/Makefile.in:
715           sync with nightly build makefile - latex, dvipdf and dvips
716           not needed any more
717
718 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
719
720         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
721         in the library source
722
723 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
724
725         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
726
727 2006-04-28 Raphael Neider <rneider AT web.de>
728
729         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
730         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
731           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
732         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
733
734 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
735
736         * device/lib/pic/libdev/Makefile.in,
737         * device/lib/hc08/Makefile.in,
738         * device/lib/gbz80/Makefile.in,
739         * device/lib/z80/Makefile.in,
740         * device/lib/ds390/Makefile.in,
741         * device/lib/ds400/Makefile.in: added srcdir to include search path,
742         thanks to Borut for the bug report
743         * configure.in,
744         * configure: always create doc/Makefile independent from --enable-doc
745         * Makefile.in: always install from directory doc independent from
746         --enable-doc
747         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
748         removed
749         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
750         * doc/Makefile.in: install *.txt if present
751         * device/include/Makefile.in (install): added installation of pic/*.inc
752         and pic/*.txt files again, they were erroneously removed
753
754 2006-04-28 Raphael Neider <rneider AT web.de>
755
756         * src/pic/{gen.c,main.h,pcode.c},
757         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
758             concerning signedness with casts
759
760 2006-04-28 Raphael Neider <rneider AT web.de>
761
762         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
763             definition of an interrupt handler,
764         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
765             interrupt handler stuff from picglue() to separate routine,
766           (picglue): enabled definition of intr handlers in files w/o main()
767
768 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
769
770         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
771           compilation with MSVC 2005 Express Edition (VC8)
772
773 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
774
775         * device/lib/Makefile: fixed build of gbz80 lib
776
777 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
778
779         * support/regression/tests/bug-460010.c,
780         * support/regression/tests/bug-524691.c,
781         * support/regression/tests/bug-716242.c: removed conditional defines
782           that are already in testfwk.h
783
784 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
785
786         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
787           (AccAXRsh1): added, shift right by 1,
788           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
789            AccAXLrl1
790         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
791
792 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
793
794         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
795         remove cast to same type
796         * src/SDCCast.c (decorateType): fix for RFE 1475742,
797         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
798         * as/z80/Makefile,
799         * link/z80/Makefile: removed, they have moved to
800         Makefile.in files
801         * configure,
802         * configure.in: replaced duplicate message about ucsim by missing sdcpp
803         * install-sh: fix bug #1204398 by setting umask 0022
804         * device/lib/Makefile: separate build of z80 and gbz80 lib
805
806 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
807
808         Enabled VPATH feature: changed nearly all Makefiles (149 files).
809         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
810
811         One basic decision: e.g. src/clean.mk includes further files. In order
812         to make this work there are two solutions:
813         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
814           run configure on them. This way they can use
815           'include $(srcdir)/port-clean.mk'
816         - always include clean.mk by the Makefile at the same level. To avoid
817           that `make clean` tries to include and build Makefile.dep the
818           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
819           implemented, because now even `make uninstall` doesn't create
820           Makefile.in. clean.mk could be eliminated by pasting it in
821           Makefile.in.
822
823         * debugger/mcs51/Makefile.in: build own objects from library sources
824         (SLIB, SDCC) in current directory
825
826         * configure, configure.in: renamed --disable-device-lib-build in
827         --disable-device-lib; added --enable-doc, the required tools are
828         searched by configure; added result message; the toolchain for the
829         belonging ports are now only built, if the port is enabled.
830
831         * support/regression/*: all output is written in directory gen, because
832         the fwk and ports directories don't livet in the build tree using vpath
833
834         * doc/sdccman.lyx: renamed --disable-device-lib-build to
835         --disable-device-lib, added --enable-doc, added section VPATH
836
837         * sim/ucsim/configure.in,
838         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
839         z80 are enabled by default
840
841 2006-04-24 Raphael Neider <rneider AT web.de>
842
843         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
844             to config word, "pic14_"-prefixed some extern functions
845           (pic14_emitConfigWord): emit __config directive(s) if assignment to
846             config word has been found
847         * src/pic/device.h: added prototypes
848         * src/pic/pcode.c: added "pic14_"-prefix where needed
849         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
850             fixup
851         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
852             words,
853           (pic14emitRegularMap): ignore config words,
854           (pic14createInterruptVect): moved generating __config directives away
855           (picglue): have __config directives emitted
856
857 2006-04-24 Borut Razem <borut.razem AT siol.net>
858
859         * doc/Makefile: sync with nightly build makefile
860
861 2006-04-24 Raphael Neider <rneider AT web.de>
862
863         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
864             registers that have not been assigned proper liveranges,
865             fixes #1469504 and #1474602,
866           (pCodeRegOptimizeRegUsage): fixed typo in comment
867
868 2006-04-24 Borut Razem <borut.razem AT siol.net>
869
870         * device/examples/main8051.c: deleted - it was removed from CVS
871           24.mar.2000 and after that modified 18.feb.2001, so it reappered
872           after the transition to Subversion
873         * src/SDCCalloc.h: deleted - it was removed  from CVS
874           3.feb.2001 and after that modified 18.feb.2001, so it reappered
875           after the transition to Subversion
876         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
877           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
878           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
879           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
880
881 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
882
883         * as/asx8051.dsp: added mcs51/strcmpi.h
884         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
885         * as/hc08/aslink.h: updated lnksect prototype
886         * as/hc08/asm.h,
887         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
888         * as/hc08/asmain.c,
889         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
890           (newdot): handle A_ABS
891         * as/hc08/asout.c,
892         * as/mcs51/asout.c (outarea): output address
893         * as/hc08/lkaomf51.c,
894         * as/mcs51/lkaomf51.c: disabled unused array UsageType
895         * as/hc08/m08pst.c,
896         * as/mcs51/i51pst.c,
897         * as/z80/z80pst.c: "ABS" is not A_OVR
898         * as/hc08/lkarea.c (newarea): read a_addr,
899           (lnkarea): added codemap array, sort absolute areas to the front,
900            combine all GSINITx/GSFINAL,
901           (find_empty_space, allocate_space): new functions,
902           (lnksect): return next address, handle absolute sections
903         * as/mcs51/lkarea.c (newarea): read a_addr,
904           lnksect2 prototype changed,
905           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
906           (find_empty_space, allocate_space): new, factored out of lnksect2,
907           (lnksect2): return next address, handle absolute sections
908         * as/hc08/lkhead.c,
909         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
910         * as/hc08/lklibr.c (addfile, fndsym),
911         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
912           index out of range and detect both '\' and '/'
913         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
914         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
915           regression tests (ds390 cannot return bool yet)
916         * doc/sdccman.lyx: changed version number, document changed --no-peep,
917           document critical interrupts on z80, document changed SDCC define
918         * src/asm.c (_asxxxx_mapping): fixed .org directive,
919           (_a390_mapping): added .org directive
920         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
921           (genMultOneByte): fixed warnings
922         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
923           ones
924         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
925         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
926           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
927         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
928         * src/pic16/main.c: removed newReg prototype
929         * src/pic16/pcode.c,
930         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
931           warnings
932         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
933           ones
934         * src/pic16/ralloc.c
935         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
936           to fix warnings
937         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
938           from short to PIC_OPTYPE
939         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
940         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
941           optype from short to PIC_OPTYPE
942         * src/port.h: made int_size unsigned to fix warnings
943         * src/SDCC.y: fixed warning on MSVC
944         * src/SDCCicode.c (getArraySizePtr): return unsigned int
945         * src/SDCCopt.c (convertToFcall): fixed warnings
946         * src/SDCCsymt.h: removed double prototype for genSymName
947         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
948           offset int to fix warnings
949
950 2006-04-22 Borut Razem <borut.razem AT siol.net>
951
952         * doc/sdccman.lyx, */Makefile, */Makefile.in:
953           references to CVS replaced with Subversion
954
955 2006-04-21 Borut Razem <borut.razem AT siol.net>
956
957         * doc/sdccman.lyx, */Makefile, */Makefile.in:
958           references to CVS replaced with Subversion
959
960 2006-04-19 Borut Razem <borut.razem AT siol.net>
961
962         * src/version.awk: adapted for svn
963         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
964           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
965           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
966           /binutils-avr/etc/*.vi, *.jin: removed all properties
967           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
968
969 2006-04-19 Borut Razem <borut.razem AT siol.net>
970
971         * CVS to Subversion migration completed
972
973 2006-04-18 Borut Razem <borut.razem AT siol.net>
974
975         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
976           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
977
978 2006-04-17 Borut Razem <borut.razem AT siol.net>
979
980         * device/include/Makefile.in: added pic/*.inc to the installation
981
982 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
983
984         * support/regression/collate-results.py: fixed output in case of
985         a valdiag error
986         * support/regression/generate-cases.py: fixed splitting of pathnames
987         with dots
988         * as/hc08/lklibr.c (addfile),
989         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
990
991 2006-04-11 Raphael Neider <rneider AT web.de>
992
993         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
994         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
995         * src/pic16/pcode.c (assignValnums): fixed #1460578
996
997 2006-04-11 Raphael Neider <rneider AT web.de>
998
999         * device/lib/pic/libdev/*.c,
1000         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
1001           fixes #1468739, enables compilation in --std-c99 mode
1002         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
1003
1004 2006-04-11 Raphael Neider <rneider AT web.de>
1005
1006         * src/pic/device.c (find_device): removed debug output
1007           (list_valid_pics): enabled verbose listing of supported devices
1008         * device/include/stdbool.h: define bool as char for pic14/16 as well
1009
1010 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1011
1012         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
1013
1014 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1015
1016         * .version: bumped version to 2.5.6
1017         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
1018
1019 2006-04-06 Raphael Neider <rneider AT web.de>
1020
1021         * .version: bumped version to 2.5.6 (pic14 ABI changed)
1022         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
1023         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
1024           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1025             pic14_constructAbsMap
1026           (pic14printPublics): declare absolute global symbols as global
1027           (pic14createInterruptVect),
1028         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1029           (newReg): assume new registers unused, use correct name in
1030             hashtable (reg->name instead of name), more debugLog output
1031         * src/pic/device.h (PIC_device): added fields for verbose output
1032         * src/pic/device.c: moved device definition to pic14devices.txt,
1033             added routines for runtime parsing of pic14devices.txt,
1034             added support for second config word
1035         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1036           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1037           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1038           (_pic14_parseOptions): moved pCodeInitRegisters here
1039           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1040         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1041           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1042             handling the pseudo stack
1043         * device/lib/Makefile.in: ignore failures in objects-pic16,
1044         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1045         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1046         * device/lib/pic/Makefile.subdir,
1047         * device/lib/pic16/Makefile.subdir: improved clean rules
1048         * device/lib/pic/libdev/: NEW, pic14 device libraries
1049         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1050         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1051         * device/include/Makefile.in: create subdir and install pic14 headers
1052         * device/include/pic/p16f_common.inc: removed unused declarations
1053         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1054             PICs from inc2h.pl v1.6,
1055             replaced BIT_AT macros with struct declarations
1056         * device/include/pic/pic14devices.txt: definition of supported devices,
1057             all above improvements contributed by Zik Saleeba, thanks
1058         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1059         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1060             headers
1061
1062 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1063
1064         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1065         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1066           thanks to Charles Olds
1067
1068 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1069
1070         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1071
1072 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1073
1074         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1075         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1076         * support/regression/bug1464657.c: added, new test
1077
1078 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1081           version number
1082
1083 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1084
1085         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1086           --no-peep and --peep-file <file> are used don't use default rules but
1087           do use the <file>
1088
1089 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1090
1091         * src/mcs51/gen.c (genCall): fixed bug 1457608
1092
1093 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1094
1095         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1096         changes seem to cause (trigger?) problems with the build system.
1097
1098 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1099
1100         * src/SDCCpeeph.c (operandsLiteral): new, added,
1101           (callFuncByName): inserted operandsLiteral
1102         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1103
1104 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1105
1106         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1107         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1108
1109 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1110
1111         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1112           implemented patch 1120823 Thanks to Willy De la Court (normal
1113           interrupts need an interrupt number now if they are made critical),
1114           and enabled nesting of critical functions though not for gbz80
1115           (genCritical, genEndCritical): added functions
1116           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1117         * src/z80/mappings.i: added "ei" to all mappings
1118
1119 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1120
1121         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1122         submitted by the Debian SDCC maintainer Aurelien Jarno:
1123         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1124         archive with gcc 4.1 on mips and wrote the patch"
1125
1126 2006-03-16 Raphael Neider <rneider AT web.de>
1127
1128         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1129           the left operand is shorter than the result (c* = lit-c* + int),
1130           fixes bug #1450796
1131         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1132           OP_SYMBOL
1133
1134 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1135
1136         * src/.version: increased version number to 2.5.5
1137         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1138         linking is done manually in pic16 port's _linkEdit,
1139         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1140         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1141         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1142         allocate asmop as AOP_ACC,
1143         (aopForRemat): added parameter 'bool result' in function declaration,
1144         (pic16_aopGet): return AOP_ACC when accessing WREG,
1145         (pic16_popGetTempReg): minor modification,
1146         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1147         'pic16_allocWithIdx',
1148         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1149         calling function in absolute addresses,
1150         (genAssign): take into account AOP_ACC asmop,
1151         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1152         * src/pic16/pcoderegs.c: some debug functions and lines added,
1153         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1154         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1155         register too,
1156         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1157         call to allocReg, not by manually allocating a new one,
1158         (pic16_assignRegisters): now before going through the register
1159         allocating functions mark all registers as free. This eliminates some
1160         side effects resulting from peephole parser done earlier in the backbone
1161
1162 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1163
1164         * src/SDCCicode.c (geniCodeLogic),
1165         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1166
1167 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1168
1169         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1170           (genSend): bugfix, do not allocate and free twice,
1171           (shiftRLong): handle partially overlapping aops
1172         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1173
1174 2006-03-08 Borut Razem <borut.razem AT siol.net>
1175
1176         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1177           for pic16
1178
1179 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1180
1181         * support/regression/tests/bug1409955.c: new, added
1182         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1183         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1184           (aopForSym, aopOp): increment asmop.allocated if reused,
1185           (freeAsmop): decrement asmop.allocated and check for zero instead of
1186           using asmop.freed,
1187           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1188           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1189            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1190            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1191            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1192            genSignedRightShift, genRightShift, genDataPointerGet,
1193            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1194            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1195             in reverse order from allocation,
1196           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1197             added swappedLR to keep track
1198         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1199           pdata & code for GCC, z80, gbz80 & hc08
1200         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1201
1202 2006-03-08 Raphael Neider <rneider AT web.de>
1203
1204         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1205
1206 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1207
1208         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1209         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1210         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1211
1212 2006-03-06 Borut Razem <borut.razem AT siol.net>
1213
1214         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1215           made the linker quiet
1216
1217 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1218
1219         * src/pic16/gen.c (genPcall): fixed bug #1443644
1220         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1221         which dumps before the function entry point a data byte which represents
1222         the number of the local variables used by the specified function, added
1223         'xinst' for initial support for Extended Instruction Support,
1224         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1225         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1226         port->fun_prefix anymore (may change later),
1227         (genFunction, genEndFunction): do not store/restore local registers for
1228         _main (this should take care the --main-return command line option in
1229         the future),
1230         (genOr): removed some legacy pic-port instructions,
1231         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1232         performing operations with SFR's causes data to be written more than
1233         once to each SFR. Perhaps SFRs should be handled in special cases...
1234         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1235         pcode.h
1236         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1237         into account for stack starting position,
1238         (struct OPTIONS pic16_optionsTable): added command line argument
1239         --extended or -y for Extended Instruction Support,
1240         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1241         (deassignLRs): *** perhaps the most important change, old 'for' code
1242         (commented out for reference), didn't account for some registers which
1243         were left marked 'not free' after a pointer operation. The change
1244         reduces register usage a lot in some cases
1245
1246 2006-03-04 Borut Razem <borut.razem AT siol.net>
1247
1248         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1249           _clean
1250         * support/regression/tests/bug-524697.c: decreased array size for
1251           mcs51 to fit into the internal RAM
1252         * support/regression/Makefile.in: a little bit more verbose
1253
1254 2006-03-03 Borut Razem <borut.razem AT siol.net>
1255
1256         * support/regression/fwk/lib/testfwk.c,
1257           support/regression/fwk/include/testfwk.h: introduced function
1258           _prints(), nonrecursive _printn(), call _initEmu() from main()
1259         * support/regression/ports/gbz80/support.asm,
1260           support/regression/ports/ucz80/support.asm,
1261           support/regression/ports/z80/support.asm,
1262           support/regression/ports/ds390/support.c,
1263           support/regression/ports/hc08/support.c,
1264           support/regression/ports/host/support.c,
1265           support/regression/ports/mcs51/support.c,
1266           support/regression/ports/xa51/support.c: added empty _initEmu()
1267           function
1268         * support/regression/ports/pic16/gpsim.cmd,
1269           support/regression/ports/pic16/spec.mk,
1270           support/regression/ports/pic16/support.c,
1271           support/regression/Makefile.in: added pic16 regression test
1272
1273 2006-03-01 Raphael Neider <rneider AT web.de>
1274
1275         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1276           genConstPointerGet): use safe way of generating MOVFF to cover
1277             literals as well as registers, fixes bug #1440527
1278         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1279             dereference
1280           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1281             more correctly, fixes bug #1232186
1282           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1283         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1284             gplink guess the correct processor in more cases, applied patch
1285             from Till Riedel attached to and fixing bug #1436552
1286
1287 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1288
1289         * support/regression/tests/array.c: added, contains check for #1434401
1290         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1291
1292 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1293
1294         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1295         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1296         * device/include/mcs51/c8051f326.h,
1297         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1298         * device/include/mcs51/c8051f000.h,
1299         * device/include/mcs51/c8051f018.h,
1300         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1301           PCON_IDLE,PCON_STOP and added sfr16 definitions
1302
1303 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1304
1305         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1306           genGetWord): fixed bug 1409955
1307
1308 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1309
1310         * device/include/hc08/mc68hc908gp32.h,
1311         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1312
1313 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1314
1315         * src/SDCCast.c (constExprValue): return NULL if not a value
1316         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1317         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1318         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1319
1320 2006-02-13 Borut Razem <borut.razem AT siol.net>
1321
1322         * src/regression/ptrarg.c: added, fails due to bug #1430967
1323         * src/regression/Makefile: ptrarg.c added, ...
1324
1325 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1326
1327         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1328         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1329
1330 2006-02-11 Borut Razem <borut.razem AT siol.net>
1331
1332         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1333           print "Processor: xxx" message to stdout only if --verbose
1334
1335 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1336
1337         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1338         * support/regression/tests/bug1426356.c: added
1339         * support/regression/tests/bitfields.c: removed 2 tests
1340
1341 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1342
1343         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1344         * device/include/mcs51/c8051f330.h,
1345         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1346           PCON_IDLE,PCON_STOP and added sfr16 definitions
1347         * device/lib/_divsint.c,
1348         * device/lib/_divuint.c,
1349         * device/lib/_divulong.c,
1350         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1351           register bank bug for small stackauto
1352
1353 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1354
1355         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1356
1357 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1358
1359         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1360         * all.dsp: corrected several bin paths
1361         * device/include/mcs51/c8051f120.h,
1362         * device/include/mcs51/c8051f300.h,
1363         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1364           to PCON_IDLE,PCON_STOP
1365         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1366         * device/lib/printf_large.c (output_float): fixed bug 1388703
1367         * support/regression/tests/bug1057979.c: added test for bug 1388703
1368
1369 2006-02-08 Raphael Neider <rneider AT web.de>
1370
1371         * src/pic/pcode.c (pciTRIS): fixed typo,
1372           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1373           (LinkFlow): fixed handling of flows that end in a call,
1374           (ReuseReg): perform safety check earlier
1375         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1376             to work with flows at the beginning of a pBlock,
1377             fixes #1426557 (Symbol not previously defined),
1378           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1379             usage information
1380           (RemoveUnusedRegisters): update register usage info
1381         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1382             created, reuse existing ones instead
1383         * src/pic/gen.c (genPcall): fixed #1424719
1384
1385 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1386
1387         * link/z80/lkmain.c,
1388         * link/z80/lklex.c,
1389         * link/z80/lkdata.c,
1390         * link/z80/aslink.h: fixed build on current cygwin:
1391         replaced getline() by lk_getline()
1392
1393 2006-02-01 Borut Razem <borut.razem AT siol.net>
1394
1395         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1396           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1397           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1398           src/regression/bool1.c, src/regression/bool2.c,
1399           src/regression/bool3.c, src/regression/call1.c,
1400           src/regression/compare.c, src/regression/compare10.c,
1401           src/regression/compare2.c, src/regression/compare3.c,
1402           src/regression/compare4.c, src/regression/compare5.c,
1403           src/regression/compare6.c, src/regression/compare7.c,
1404           src/regression/compare8.c, src/regression/compare9.c,
1405           src/regression/configword.c, src/regression/for.c,
1406           src/regression/inline.c, src/regression/mult1.c,
1407           src/regression/nestfor.c, src/regression/or1.c,
1408           src/regression/pointer1.c, src/regression/ptrfunc.c,
1409           src/regression/rotate1.c, src/regression/rotate2.c,
1410           src/regression/rotate3.c, src/regression/rotate4.c,
1411           src/regression/rotate5.c, src/regression/rotate6.c,
1412           src/regression/rotate7.c, src/regression/string1.c,
1413           src/regression/struct1.c, src/regression/sub.c,
1414           src/regression/sub2.c, src/regression/switch1.c,
1415           src/regression/while.c, src/regression/xor.c,
1416           src/regression/create_stc, src/regression/simulate,
1417           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1418           regression tests
1419         * src/regression/gpsim_assert.h: added
1420
1421 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1422
1423         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1424         ((void (code *) (void)) 0) ();
1425         * as/hc08/aslex.c,
1426         * as/hc08/aslink.h,
1427         * as/hc08/asm.h,
1428         * as/hc08/asmain.c,
1429         * as/hc08/lkdata.c,
1430         * as/hc08/lklex.c,
1431         * as/hc08/lkmain.c,
1432         * as/mcs51/aslex.c,
1433         * as/mcs51/aslink.h,
1434         * as/mcs51/asm.h,
1435         * as/mcs51/asmain.c,
1436         * as/mcs51/lkdata.c,
1437         * as/mcs51/lklex.c,
1438         * as/mcs51/lkmain.c,
1439         * as/z80/aslex.c,
1440         * as/z80/asm.h,
1441         * as/z80/asmain.c: fixed build on current cygwin:
1442         replaced getline() by as_getline()
1443
1444 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1445
1446         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1447         declarator in the symbol chain
1448         * src/SDCCsymt.h,
1449         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1450         parameter list for function pointers
1451         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1452         * support/regression/tests/bug-716242.c: added
1453
1454 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1455
1456         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1457         offset if possible
1458         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1459
1460 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1461
1462         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1463         inifinitely recurseable, added static
1464         * support/regression/tests/bug-1408066.c: added
1465
1466 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1467
1468         * src/SDCCicode.h,
1469         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1470         renamed, added possibility to create "postLoopLbl"-labels
1471         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1472         newiTempLoopHeaderLabel
1473         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1474         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1475         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1476         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1477         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1478         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1479         (basicInduction): fixed bug #136564, made static,
1480         (loopInduction): changed parameter of basicInduction, made static,
1481         (addPostLoopBlock): added
1482         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1483         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1484         findLoopEndSeq
1485         * support/regression/tests/bug-136564.c: added
1486         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1487         --std-sdcc99 to LIBSDCCFLAGS
1488
1489 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1490
1491         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1492         while loop
1493         * support/regression/tests/bug-1406131.c: added
1494
1495 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1496
1497         * src/SDCCast.c (decorateType): fix promotion of unary minus
1498         * src/SDCCsymt.c (computeType): beautified
1499         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1500         (valUnaryPM, valComplement): fix sign and promotion,
1501         (valNot): ANSI: result type is int (SDCC: unsigned char)
1502         * support/regression/tests/uminus.c: speedup by removing superflous
1503         test case 'int'
1504         * support/regression/tests/onebyte.c: added promotion and signedness
1505         tests for unary minus
1506         * support/regressions/tests/bug-477927.c: disable warning about
1507         uninitialized variables
1508         * support/regression/tests/not.c: added
1509
1510 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1511
1512         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1513         * src/mcs51/gen.c (gen51Code): show final register usage after
1514         fillGaps in asm with --i-code-in-asm
1515         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1516         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1517         incUsed, rliveClear, adjustIChain): made static,
1518         (setFromRange): excluded because it's unused,
1519         (findPrevUseSym, markWholeLoop): added,
1520         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1521         through all branches of predecessors enables sdcc to emit the warning
1522         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1523         (rlivePoint): made static, added parameter emitWarnings which is only
1524         true during the first run out of two,
1525         (findRecursiveSucc, findRecursivePred): removed,
1526         (computeLiveRanges): made static, added parameter emitWarnings,
1527         (dumpIcRlive): added for debugging only
1528         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1529         removed prototype of setFromRange()
1530         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1531         in call of computeLiveRanges()
1532         * support/regression/tests/bug-895992.c: added
1533         * support/regression/tests/bug-971834.c: added
1534         * support/valdiag/tests/bug-895992.c: added
1535         * support/valdiag/tests/bug-971834.c: added
1536
1537 2005-12-18 Raphael Neider <rneider AT web.de>
1538
1539         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1540           (genUnpackBits): improved code for direct operands,
1541           (genPackBits): improved code for literal assignment to bitfields
1542             and for direct destination operands (no FSR indirection),
1543             prevented redundant AND, fixes #1362800,
1544           (AccLsh): added parameter to disable masking of the result
1545         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1546           skip instructions with side-effects (like incfsz),
1547           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1548         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1549         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1550           fixes #1375263
1551
1552 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1553
1554         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1555         volatile variables as spill location
1556
1557 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1558
1559         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1560         replacing literals
1561         * support/regression/tests/bug-1376320.c: added
1562
1563 2005-12-08 Raphael Neider <rneider AT web.de>
1564
1565         * src/pic/device.c: renamed is_shared to pic14_is_shared
1566         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1567         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1568           (is_valid_identifier): added for above workaround
1569
1570 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1571
1572         * device/lib/Makefile.in: fixed to enable port-specific-objects
1573         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1574           char, thanks Hubert Sack
1575         * doc/sdccman.lyx: documented --xstack-loc,
1576           elaborated a bit more on interrupts and pitfalls,
1577           removed "setjmp/longjmp unsupported",
1578           documented some unsupported C99 features
1579         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1580         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1581           if, thanks Hubert Sack
1582         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1583         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1584           make make_library
1585         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1586           regression tests can report resource usage (rfe 700441)
1587         * support/regression/collate-results.py: report resource usage
1588         * support/regression/ports/ds390/spec.mk,
1589         * support/regression/ports/hc08/spec.mk,
1590         * support/regression/ports/mcs51/spec.mk,
1591         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1592         * support/regression/ports/ds390/uCsim.cmd,
1593         * support/regression/ports/hc08/uCsim.cmd,
1594         * support/regression/ports/mcs51/uCsim.cmd,
1595         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1596         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1597           library, use the default one
1598         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1599           building the library
1600
1601 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1602
1603         * config.dsp: added dependency on .version and configure_vc.awk
1604         * device/include/setjmp.h: updated for --stack-auto and --xstack
1605         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1606         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1607         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1608         * device/lib/libsdcc.lib: added _setjmp
1609         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1610           (decorateType): fixed bug 1372851,
1611           (optimizeGetHbit): fixed warning
1612         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1613           array initialisation
1614         * support/regression/tests/bug1057979.c: added test for bug 1358192
1615         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1616
1617 2005-12-03 Borut Razem <borut.razem AT siol.net>
1618
1619         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1620           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1621
1622 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1623
1624         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1625         createIval): implement symbol independant "flexible array member",
1626         (createIvalCharPtr): implemented flexible array initialisation with a
1627         string
1628         * src/SDCCsymt.c (copyStruct): removed,
1629         (getSize): fixed misleading comment,
1630         (getAllocSize): removed, the additional allocation size is now in
1631         sym->flexArrayLength,
1632         (checkStructFlexArray): new, syntax checks for flexible array members,
1633         (compStructSize): added syntax checks for "flexible array members"
1634         (copyStruct): removed,
1635         (copyLinkChain): removed inefficient fix for bug 770487
1636         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1637         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1638         symbol->flexArrayLength
1639         * src/SDCCerr.c,
1640         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1641         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1642         * support/regression/tests/structflexarray.c: added
1643         * support/valdiag/tests/structflexiblearray.c: added
1644
1645 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1646
1647         * src/SDCCast.c (decorateType): fixed bug 1368489
1648         * support/Util/SDCCerr.c,
1649         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1650
1651 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1652
1653         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1654           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1655
1656 2005-11-27 Borut Razem <borut.razem AT siol.net>
1657
1658         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1659           support/cpp2/mkdeps.h: added command line option
1660           -obj-ext=<extension> to SDCPP to define object file externion, used
1661           for generation of make dependencies (-M)
1662         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1663
1664 2005-11-26 Borut Razem <borut.razem AT siol.net>
1665
1666         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1667           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1668           added pic and pic16 libraries
1669
1670 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1671
1672         * device/include/float.h: Corrected typo in prototype of __fsgt
1673
1674 2005-11-25 Borut Razem <borut.razem AT siol.net>
1675
1676         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1677           added creation of model-mcs51-stack-auto libraries
1678
1679 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1680
1681         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1682         and fields-list too
1683         * src/SDCCast.c (createIvalArray): removed obsolete comment
1684
1685 2005-11-24 Borut Razem <borut.razem AT siol.net>
1686
1687         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1688           added missing device/lib/mcs51/crt*.asm sources
1689
1690 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1691
1692         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1693
1694 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1695
1696         * device/lib/_fs2schar.c,
1697         * device/lib/_fs2sint.c,
1698         * device/lib/_fs2slong.c: optimized inline asm
1699
1700 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1701
1702         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1703           Better handling of floats between -1.0 and 0.0.
1704
1705 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1706
1707         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1708           (the missing "if"s prohibited removal of redundant labels)
1709
1710 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1711
1712         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1713           Properly convert floats between -1.0 and 0.0 to long, int, and char
1714           types (max integer value of negative floats tends to zero).
1715         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1716           Removed changes made so to work properly with floats between
1717           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1718           and _fs2char.c
1719
1720 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1721
1722         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1723         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1724         (genCast) cosmetic change
1725         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1726         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1727         from mcs51
1728         * support/regression/tests/bitfields (testSignedBitfields): added
1729
1730 2005-11-18 Borut Razem <borut.razem AT siol.net>
1731
1732         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1733         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1734           introduced SILENT option to make building of pic16 libraries less
1735
1736 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1737
1738         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1739           Now they work properly with floats between -1.0 and 0.0
1740         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1741
1742 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1743
1744         * src/SDCCicode.c (printOperand): added missing else
1745
1746 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1747
1748         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1749         reformatted for better readability
1750         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1751         signed bitfields
1752
1753 2005-11-17 Borut Razem <borut.razem AT siol.net>
1754
1755         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1756           introduced SILENT option to make building of pic16 libraries less
1757           verbose - used for nightly snapshot build
1758         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1759           available on Win32 platforms.
1760         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1761           medium, large, pic and pic16
1762
1763 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1764
1765         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1766           printf("%f"...) sets fraction to zero.
1767
1768 2005-11-16 Raphael Neider <rneider AT web.de>
1769
1770         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1771           fixes #1357221
1772         * src/pic/gen.c (genIfx): implemented for CARRY bit
1773         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1774           to generic pointers, fixes #1357332,
1775           (pic16_movLit2f): NEW,
1776           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1777
1778 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1779
1780         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1781
1782 2005-11-11 Raphael Neider <rneider AT web.de>
1783
1784         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1785         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1786           compute pointer's type from operand,
1787           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1788           improved single bit reads, fixes bug #1353379
1789
1790 2005-11-09 Borut Razem <borut.razem AT siol.net>
1791
1792         * support/scripts/sdcc.nsi: added lib/pic to the package
1793
1794 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1795
1796         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1797
1798 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1799
1800         * support/regression/tests/bug1348008.c: added
1801         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1802         * support/regression/tests/bug1337835.c: updated comment
1803
1804 2005-11-06 Borut Razem <borut.razem AT siol.net>
1805
1806         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1807           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1808           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1809           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1810           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1811           dynamic construction of cl_error_class and derivates - 2.nd try
1812
1813 2005-11-05 Borut Razem <borut.razem AT siol.net>
1814
1815         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1816           bug, which caused Bus Errors on sparc solaris
1817
1818 2005-11-04 Borut Razem <borut.razem AT siol.net>
1819
1820         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1821           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1822           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1823           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1824           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1825           and derivates to resolve the initialization problem on OSX
1826
1827 2005-11-02 Borut Razem <borut.razem AT siol.net>
1828
1829         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1830           corrected typo - #include <winsock2.h>
1831
1832 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1833
1834         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1835           (_asxxxx_mapping): added org directive for future enhancements
1836
1837 2005-11-01 Borut Razem <borut.razem AT siol.net>
1838
1839         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1840           enabled sockets on WIN32
1841         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1842
1843 2005-10-31 Borut Razem <borut.razem AT siol.net>
1844
1845         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1846           WIN32 backslash path delimiters should be escaped when used in C strings
1847         * support/regression/tests/bitfields.c: exclude failing assertions for
1848           __CYGWIN32__ and __MINGW32__ hosts
1849
1850 2005-10-30 Borut Razem <borut.razem AT siol.net>
1851
1852         * src/SDCCutil.c: corrected double comparison typo
1853
1854 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1855
1856         * device/lib/medium/Makefile: added for new memory model medium
1857         * device/include/asm/mcs51/features.h: updated for medium/pdata
1858         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1859           added Multiply & Accumulate sbit's and MAC0_PAGE define
1860         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1861         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1862         * device/lib/_mullong.c: update for medium model
1863         * device/lib/incl.mk: added medium model
1864         * doc/sdccman.lyx: documented medium model
1865         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1866         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1867         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1868         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1869           (allocParms): set SCLS and OCLS to pdata for medium model
1870         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1871           for pdata,
1872           (powof2): return <0 if not power of 2
1873         * src/avr/gen.c (genBitWise): use updated powof2
1874         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1875           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1876           (shiftLLeftOrResult): use B if necessary
1877         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1878         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1879         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1880         * support/regression/Makefile.in: added test-mcs51-medium
1881         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1882
1883 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1884
1885         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1886         specifier unsigned
1887         * device/lib/time.c (mktime): fixed bug 1334315
1888
1889 2005-10-28 Raphael Neider <rneider AT web.de>
1890
1891         * device/include/pic/p16f_common.inc: added common declarations
1892         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1893
1894 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1895
1896         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1897           (aopPutUsesAcc): added to predict accumulator use,
1898           (assignResultValue): save acc if necessary,
1899           (genMinusDec): store result if indirectly addressed,
1900           (genDivOneByte):  save acc if necessary,
1901           (movLeft2Result): bugfix if left already in acc,
1902           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1903             attention to accumulator use (esp. pdata),
1904           (genReceive): receive pdata correctly
1905         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1906         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1907
1908 2005-10-27 Raphael Neider <rneider AT web.de>
1909
1910         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1911
1912 2005-10-27 Raphael Neider <rneider AT web.de>
1913
1914         * .version: changed version to 2.5.4
1915         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1916         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1917           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1918             arithmetics support routines
1919         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1920         * device/lib/Makefile.in: also create installdir for pic
1921
1922         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1923           pic14 port as well
1924         * src/pic/device.c (dump_sfr): rewritten to delegate register
1925           placement to the linker (use `extern sym' rather than sym EQU addr),
1926           (validAddress): fixed to check last specified address
1927         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1928           (popGetLit): truncate literal value to 8 bit,
1929           (popGet): moved assert to more appropriate place
1930           (popGetExternal): create pCode operand from and mark the according
1931             symbol as being `extern'
1932           (popGetAddr): added sanity check on immediate's offset, provide
1933             GPOINTER tag on demand
1934           (aopPut): fixed for immediates,
1935           (mov2w_op): move operand's address or contents to WREG (depending on
1936             operand type), safer variant of mov2w,
1937           (movwf,call_libraryfunc): NEW, handy abbreviations,
1938           (get_argument_pcop,get_return_val_pcop,pass_argument,
1939           get_returnvalue): interface for accessing function parameters and
1940             return values,
1941           (assignResultValuei,genRet): use new parameter/return value interface
1942           (pic14_getDataSize): back to old version handling generic pointers,
1943           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1944             provided implementation and/or fixed old one,
1945           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1946             calls, removed legacy 8051 reference code
1947           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1948           (loadSignToC): NEW, move the operands sign bit to CARRY,
1949           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1950             genRightShiftSigned, accepts negative shift counts,
1951           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1952           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1953             generic pointers, __data pointers and __code pointers,
1954           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1955             and signed bitfields, limit bitfields to 8 bit,
1956           (genDataPointerGet): fixed number of bytes read,
1957           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1958           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1959             pointers to constant data are no longer assumed to point to __code
1960             space, removed invalid pointer types,
1961           (bitpatternFromVal): retrieve the PICs representation of an integer
1962             or float literal,
1963           (genDataPointerSet): fixed assigning to po_immediate operands,
1964           (genGenPointerSet): implemented as library call,
1965           (genIfx): fixed incorrect condition,
1966           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1967             provide GPOINTER tag according to destination's storage class,
1968           (genCast): added code to handle casting to generic pointers, added
1969             sign-/zero extension of the result
1970           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1971         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1972         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1973           extend the result
1974         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1975           address/register resides in the shared banks
1976           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1977             put all variables into separate sections (have the linker arrange
1978             them)
1979           (picglue): put init code and interrupt handlers in separate sections
1980         * src/pic/main.c: added port specific options table, modified to PORT
1981           structure to make GPOINTERs 3 byte, added pic14_options
1982           (_pic14_do_link): private linking routine (update paths to libraries,
1983             add libsdcc.lib by default)
1984         * src/pic/main.h: declare pic14_options
1985         * src/pic/pcode.c: fixed instructions i/o relations,
1986           (RegCond): reverted to correct version,
1987           (newpCodeOpLit): truncate literals to 8 bit,
1988           (genericPrint): added debug output,
1989           (getRegFromInstruction): fixed for various operand types, simplified
1990           (BuildFlow): fixed broken handling of isntructions with labels
1991           (LinkFlow): start at last instruction in flow (skip trailing comments),
1992             pass the flow on to the next instruction after CALL
1993           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1994           (insertPCodeInstruction): fixed inserting after a skip instruction,
1995           (DoBankSelect): fixed for labeled instructions
1996           (OptimizepBlock): honor --nopeep switch
1997           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1998         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1999         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
2000           (pCodeOptime2pCodes): allow disabling this optimization via
2001             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
2002             but is still buggy), started implementation of a dataflow based
2003             pCode optimization (CSE + dead code elimination)
2004           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
2005         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
2006           names are independant of the stack location and therefore portable across
2007           devices
2008
2009 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
2010
2011         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
2012           (selectSpil): fixed bug 1337835 by not spilling bit variables
2013         * support/regression/tests/bug1337835.c: added test for this bug
2014         * src/mcs51/peeph.def: restart after rule 3.c,
2015           addded rules 263.x to optimize loading constants
2016
2017 2005-10-26 Raphael Neider <rneider AT web.de>
2018
2019         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
2020         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
2021           (genAssign): emit warning when casting literals to generic pointer
2022             type, also applies when taking the address of a fixed variable,
2023           (genCast): improved casting to generic pointers
2024         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2025           extern variables, added verbose error message
2026         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2027
2028 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2029
2030         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2031         carry must be complemented too
2032         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2033         could be emitted by genMinus
2034         * src/SDCCval.c (constVal): fixed bug 1305065
2035
2036 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2037
2038         * src/SDCCast.c (addCast): added promotion for bit variables
2039         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2040         promotion casts + optimisation
2041         (optimizeGetWord): fix warning 'i' might be used uninitialized
2042         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2043         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2044
2045 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2046
2047         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2048         all chars are promoted to int; promotion should be handled in SDCCast.c
2049
2050 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2051
2052         * device/lib/_strcmp.c: Fixed bug 1326457
2053
2054 2005-10-11 Raphael Neider <rneider AT web.de>
2055
2056         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2057         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2058
2059 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2060
2061         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2062         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2063
2064 2005-10-04 Raphael Neider <rneider AT web.de>
2065
2066         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2067           device/lib/pic16/pics.all: added pic18f1320
2068         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2069
2070 2005-09-30 Raphael Neider <rneider AT web.de>
2071
2072         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2073         * src/pic16/devices.inc: NEW, provides device descriptions
2074         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2075
2076 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2077
2078         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2079           GETHBIT
2080
2081 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2082
2083         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2084           documented Any Order Bit, Higher Order Byte and Higher Order Word
2085         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2086         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2087           (optimizeGetAbit): new, to get any bit, not only the high bit,
2088           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2089           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2090           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2091           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2092             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2093             GETABIT, GETBYTE, GETWORD: decorate them,
2094           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2095           (ast_print): added GETABIT, GETBYTE, GETWORD
2096         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2097         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2098           (geniCodeBinary): new generic binary icode,
2099           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2100         * src/port.h: updated comment for PORT.hasExtBitOp
2101         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2102           (genGetByte): new, to get a single byte,
2103           (genGetWord): new, to get a word from a long,
2104           (gen51Code): added GETABIT, GETBYTE, GETWORD
2105         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2106
2107 2005-09-23 Raphael Neider <rneider AT web.de>
2108
2109         * configure.in, configure: have device/lib/pic configured
2110         * device/lib/Makefile.in: added model-pic14
2111         * device/lib/clean.mk: added pic/ to clean rule
2112         * device/lib/pic: added rudimentary pic14 library providing support
2113           functions for multiplication/division/generic pointer access
2114         * src/SDCCopt.c (convilong): mark support functions as extern
2115           for pic14 port as well
2116         * src/pic/gen.c (genMult): added assertions,
2117           (genpic14Code): emit warning on unhandled iCodes
2118         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2119         * src/pic/pcode.c (pCodeOpCopy),
2120         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2121           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2122           SFR_REGISTER}), made safe for future extensions
2123         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2124           instructions even if preceeded by SKIP instructions (also remove
2125           them); removed unused code
2126         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2127           prevents leaving parts of the structure uninitialized after copying
2128
2129 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2130
2131         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2132           ago by me
2133         * support/regression/tests/addsub.c: added test for the bug
2134
2135 2005-09-21 Raphael Neider <rneider AT web.de>
2136
2137         * device/include/pic16/pic18f1220.h,
2138           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2139         * device/lib/pic16/Makefile.rules: added missing opening paren
2140         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2141           are provided in genutils.c,
2142           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2143           operand/result sizes,
2144           (genCmp): assert on NULL pointers first, then check deref'ed values
2145         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2146           result size
2147
2148 2005-09-18 Raphael Neider <rneider AT web.de>
2149
2150         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2151           as these are now unused,
2152           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2153         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2154           local, avoids uninitialized pointer dereference on r->name
2155         * src/pic16/ralloc.c (newReg): fixed indentation
2156
2157 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2158
2159         * src/SDCCval.c (constVal): fixed bug 730366
2160         * support/Util/SDCCerr.c,
2161         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2162
2163 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2164
2165         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2166
2167 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2168
2169         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2170
2171 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2172
2173         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2174           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2175         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2176           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2177         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2178         * packihx/packihx.c (hexDigit): made c unsigned char
2179         * as/mcs51/lklibr.c (fndsym),
2180         * link/z80/lkgb.c (gb),
2181         * link/z80/lklibr.c (fndsym),
2182         * link/z80/lkrloc.c (relr),
2183         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2184         * src/SDCC.lex (checkCurrFile, process_pragma),
2185         * src/SDCCglue.c (spacesToUnderscores),
2186         * src/SDCCmain.c (setParseWithComma, processFile),
2187         * src/asm.c (tvsprintf, printCLine),
2188         * src/avr/gen.c (emitcode, aopPut),
2189         * src/ds390/gen.c (emitcode),
2190         * src/hc08/gen.c (emitcode, emitinline),
2191         * src/mcs51/gen.c (emitcode, genInline),
2192         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2193           tokenizeLineNode),
2194         * src/pic/ralloc.c (debugLog),
2195         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2196           tokenizeLineNode),
2197         * src/pic16/ralloc.c (debugLog),
2198         * src/z80/main.c (_process_pragma):
2199            made all ctype.h function calls safe
2200         * src/SDCCopt.c: include math.h for fabs
2201         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2202           and used them throughout the code to make ctype.h function calls safe
2203         * src/ds390/main.c (asmLineNodeFromLineNode),
2204         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2205         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2206            unsigned char*
2207         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2208           (newpCodeAsmDir): made ctype.h function calls safe
2209         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2210           pic16_emitcode):  made lbp unsigned char*
2211         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2212           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2213         * src/xa51/gen.c (emitcode),
2214         * src/z80/gen.c (_emit2): made lbp unsigned char*
2215         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2216            char*
2217
2218 2005-09-05 Raphael Neider <rneider AT web.de>
2219
2220         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2221           access bank splitpoint
2222
2223 2005-09-05 Raphael Neider <rneider AT web.de>
2224
2225         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2226
2227 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2228
2229         * .version: changed to version 2.5.3
2230         * doc/sdccman.lyx: changed version to 2.5.3,
2231           documented --codeseg and --constseg and pragma codeseg and constseg,
2232           documented bit parameters (reentrant) and bit returning
2233         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2234            currFunc->recvSize, but is this ok for all ports?
2235           (ast2iCode): result of ~ on unsigned char must be cast to int for
2236            bool to work
2237         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2238           function pointers in bit space
2239         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2240           (processFuncArgs): call port.reg_parm() with reentrancy info
2241         * src/port.h,
2242         * src/avr/main.c,
2243         * src/ds390/main.c,
2244         * src/hc08/main.c,
2245         * src/pic/main.c,
2246         * src/pic16/main.c,
2247         * src/xa51/main.c,
2248         * src/z80/main.c: port.reg_parm prototype extended with
2249           "bool reentrant" parameter
2250         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2251           options.stackAuto for allocating bit register parameters
2252         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2253           (genSend): set BitBankUsed if it is,
2254           (selectRegBank): factored out of genCall for use in genPcall,
2255           (genCall): removed redundant dtype assignmen, use selectRegBank,
2256           (genPcall): handle returning in Carry properly, save in F0 if needed,
2257           (genReceive): handle bit register parameters
2258         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2259           (mcs51_assignRegisters): enable bit registers for all reentrant
2260            functions and don't set BitBankUsed unconditionally
2261         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2262         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2263         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2264
2265 2005-08-27 Borut Razem <borut.razem AT siol.net>
2266
2267         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2268         ppc-osx (Darwin) does not support -u option. It seems that it is
2269         supported only on Linux - GNU cp
2270
2271 2005-08-25 Borut Razem <borut.razem AT siol.net>
2272
2273         * sim/ucsim/gui.src/serio.src/Makefile.in,
2274           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2275           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2276           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2277           install and strip, since the strip at /usr/ccs/bin should be used
2278           on solaris
2279
2280 2005-08-24 Borut Razem <borut.razem AT siol.net>
2281
2282         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2283
2284 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2285
2286         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2287         ffffffffu
2288
2289 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2290
2291         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2292         * as/mcs51/lkmain.c (link_main): fixed warning
2293         * device/include/stdbool.h: ds390 has no advanced bit support yet
2294         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2295         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2296         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2297           and updated their macros
2298         * src/SDCCval.c (constVal): updated comment for renamed b_long
2299
2300 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2301
2302         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2303         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2304           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2305           (oprio): set priority for '['
2306         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2307            and adb_24_bit
2308         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2309         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2310         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2311         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2312           added overlayable BIT_BANK area
2313         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2314           (summary2): explain 'T' in legenda
2315         * as/mcs51/lkrloc.c: replaced old K&R style,
2316           (relr): added R_BIT processing,
2317           (errmsg): added "Bit-addressable relocation error",
2318           (adb_bit): added for converting from byte- to bit-addressable space,
2319           (adb_24_bit): added for converting from byte- to bit-addressable space
2320         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2321            used in reentrant functions now even as return value
2322         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2323         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2324           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2325         * src/SDCCglobl.h: added indicator BitBankUsed
2326         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2327            the bit registers b0-b7
2328         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2329           (geniCodeCast): fixed bug 1263853,
2330           (geniCodeLogicAndOr): put result in bool or char,
2331           (geniCodeReceive): added parameter func for accessing the return type,
2332           (geniCodeFunctionBody): pass func to geniCodeReceive
2333         * src/SDCCmain.c: added indicator BitBankUsed
2334         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2335         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2336           (checkSClass): don't put automatic bool/bit on stack,
2337           (checkFunction): removed check on function cannot return bit
2338         * src/SDCCsymt.h: added newBoolLink prototype
2339         * src/mcs51/gen.c (rb1regs): added bit registers,
2340           (movc): created for assigning to carry,
2341           (pushReg, popReg): created for pushing registers,
2342           (sameRegs): check both AOP_REG and AOP_CRY types,
2343           (aopOp): handle bit registers,
2344           (aopPut): optimization no self-assign,
2345           (saveRegisters): push reg->base (bits) only once for bit registers,
2346            and use pushReg,
2347           (unsaveRegisters): pop reg->base only once and use popReg,
2348           (assignResultValue): added parameter func and return in carry for bits,
2349           (genIpush): optimization no reload in A if not changed,
2350           (genSend): bit parameters in reentrant functions are passed in bit
2351            registers by first assigning to bits in B, then save registers and
2352            copy B to bits,
2353           (genCall): handle returning in Carry properly, save it in F0 if needed,
2354           (genPcall): updated assignResultValue call, this is not safe yet for bit
2355            returning function !!!
2356           (genFunction): don't generate equ's for bit registers and use pushReg,
2357           (genEndFunction): take care of bit returning functions and use popReg,
2358           (genRet): return bit in Carry,
2359           (genIfx): optimize bit registers and other directly addressable bits,
2360           (genReceive): updated assignResultValue call
2361         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2362           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2363            registers when using stack-auto
2364         * src/mcs51/ralloc.c (_G): added allBitregs,
2365           (regs8051): added the bit registers,
2366           (createStackSpil): use macro IS_BIT,
2367           (getRegBit): added to allocate a bit register, else spill,
2368           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2369           (updateRegUsage): factored out to ease stepping while debugging,
2370           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2371            also allocate bit registers,
2372           (fillGaps): handle bit registers,
2373           (findAllBitregs): added to create bit vector with all bit registers,
2374           (mcs51_allBitregs): returns this bit vector,
2375           (mcs51_assignRegisters): when using stack-auto use bit registers for
2376            passing parameters and creating local variables
2377         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2378
2379 2005-08-22 Borut Razem <borut.razem AT siol.net>
2380
2381         * device/lib/Makefile.in: replaced find option -or with -o
2382           to make it run on solaris
2383
2384 2005-08-22 Raphael Neider <rneider AT web.de>
2385
2386         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2387           fixes #1265442 (crash on Solaris)
2388
2389 2005-08-20 Borut Razem <borut.razem AT siol.net>
2390
2391         * configure, configure.in: added tests for libsocket and libnsl libraries,
2392           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2393           from support/regression/Makefile.in
2394         * support/regression/Makefile.in: added
2395         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2396         * sim/ucsim/libtool: regenerated on sparc-solaris
2397         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2398           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2399           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2400           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2401           sparc-solaris, which doesn't use GNU ld linker
2402         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2403         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2404
2405 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2406
2407         * src/mcs51/peeph.def: updated comments
2408
2409 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2410
2411         * device/lib/_gptrget.c,
2412         * device/lib/_gptrput.c: slightly shorter
2413         * doc/sdccman.lyx: incremented version
2414         * src/mcs51/peeph.def: moved peephole comments to the line of first
2415           change to better keep line correlation, reanimated 186.e
2416         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2417
2418 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2419
2420         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2421           David Saxton with quotes around file name.
2422
2423 2005-08-15 Borut Razem <borut.razem AT siol.net>
2424
2425         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2426           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2427           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2428           make tests run on x86_64 platform
2429
2430 2005-08-13 Raphael Neider <rneider AT web.de>
2431
2432         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2433           as it might be executed DURING a build (parallel make is wonderful)
2434
2435 2005-08-13 Raphael Neider <rneider AT web.de>
2436
2437         * device/lib/Makefile.in (port-specific-objects-pic16):
2438           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2439         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2440           dependency
2441         * device/lib/pic16/Makefile.rules: build subdirs before creating
2442           the library, removed builddir rule, create $(builddir) early in
2443           recurse rule, use empty recurse rule for leaf directories
2444         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2445           mkdir errors (race condition), removed duplicate suffix "hex"
2446           from clean rules
2447         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2448         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2449           prevents mkdir -p from aborting on Alpha
2450
2451 2005-08-12 Raphael Neider <rneider AT web.de>
2452
2453         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2454           db-statements in order to allow for arrays of pointers in code
2455           sections to be placed without interspersed 0-padding, fixes
2456           bug #1256215
2457         * (emitStatistics): fixed division by zero for pic18f1220
2458         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2459           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2460         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2461         * (pic16_pCodeConstString): keep track of already emitted string
2462           literals to prevent "duplicate definitions of symbol _str_NR"
2463         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2464           debug message
2465         * device/lib/Makefile.in: ignore failing PIC16 library builds
2466         * device/lib/pic16/Makefile: do not build if gputils are missing
2467         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2468
2469 2005-08-10 Raphael Neider <rneider AT web.de>
2470
2471         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2472           my last commit)
2473
2474 2005-08-10 Raphael Neider <rneider AT web.de>
2475
2476         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2477           Rokas' patch to add the new fixed point type "__fixed16x16"
2478         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2479           functions for __fixed16x16 arithmetics
2480         * device/lib/pic16: reimplemented the build system to support
2481           a separate build directory, better handling of libio (create
2482           the library in a separate subdir for each architecture) and
2483           easier configuration (centralized in Makefile.common)
2484
2485 2005-08-07 Raphael Neider <rneider AT web.de>
2486
2487         * src/pic16/gen.c (genrshTwo): fixed sign extension
2488         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2489         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2490           added T0CONbits
2491         * device/include/pic16/pic18f4220.h: NEW, header for
2492           pic18f4220 and pic18f4320
2493         * device/include/pic16/pic18fregs.h: added new devices,
2494           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2495         * device/include/pic16/signal.h: resolved name clashes
2496           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2497           to also allow testing for interrupt enable bits, added
2498           comments on how to use the macros
2499         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2500         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2501           register definitions for the devices
2502         * device/lib/pic16/pics.all: added new devices
2503         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2504           allocated memory
2505         * device/lib/pic16/libc/stdlib/memfree: do not count
2506           the block header as free memory
2507         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2508           simplified and added missing end-of-blocklist-marker
2509           (reported by Peter Onion, fixes #1252814)
2510         * (_mergeHeapBlock): fixed loop condition
2511         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2512           len==0, restructured code
2513         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2514           up a bit, reduced bitfield accesses, prevent endless loops
2515           in case of heap corruption
2516         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2517           "unreferenced arguments/must return a value" warnings
2518         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2519           replaced BAUDREG with SPBRG
2520         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2521           device/lib/pic16/debug/gstack/gstack.c: replaced
2522           _naked, _asm, _endasm with __naked, __asm, __endasm
2523
2524 2005-08-05 Raphael Neider <rneider AT web.de>
2525
2526         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2527           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2528
2529 2005-08-05 Borut Razem <borut.razem AT siol.net>
2530
2531         * device/lib/Makefile.in: added missing ';'
2532         * configure: removed ^M characters
2533
2534 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2535
2536         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2537           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2538           License
2539
2540 2005-08-04 Borut Razem <borut.razem AT siol.net>
2541
2542         * configure.in: pic16 libraries build 2nd try - enable running
2543           configure in device/lib/pic16
2544         * configure: regenerated from configure.in
2545         * device/lib/Makefile.in: create $(PORT)/bin directory
2546
2547 2005-08-03 Raphael Neider <rneider AT web.de>
2548
2549         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2550           to get/set values via pointers
2551         * (genUnpackBits,genPackBits): changed detection of
2552           ptr->bitfield vs. sym.bitfield, fixed access via generic
2553           pointers, removed dead (wrong) code for multibyte bitfields
2554         * (genNearPointerGet, genGenPointerGet): removed useless code,
2555           fixed bitfield detection, fixes #1250594
2556         * (genNearPointerSet): removed useless code
2557         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2558           and introduced macro pic16_emitpcode that conditionally emits
2559           the origin of the following pCode (useful for debugging SDCC)
2560         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2561         * (createDefmap): fixed handling of LFSR for --optimize-df
2562
2563 2005-08-02 Borut Razem <borut.razem AT siol.net>
2564
2565         * device/lib/Makefile.in: pic16 libraries build enabled since
2566           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2567
2568 2005-08-02 Raphael Neider <rneider AT web.de>
2569
2570         * src/pic16/gen.c (genPackBits): removed deprecated warning
2571         * (genGenPointerSet): fixed bitfield detection
2572
2573 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2574
2575         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2576
2577 2005-07-31 Raphael Neider <rneider AT web.de>
2578
2579         * device/lib/pic16/libdev/pic18f458.c,
2580           device/include/pic16/pic18f458.h: added missing T0CONbits
2581
2582 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2583
2584         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2585
2586 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2587
2588         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2589
2590 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2591
2592         * device/include/mcs51/at89c51ed2.h: added.
2593
2594 2005-07-23 Raphael Neider <rneider AT web.de>
2595
2596         * src/pic/gen.h: added emitpcode macro for debugging
2597         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2598           and replace by macro adding debug information on demand
2599         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2600         * (gencjne): tried to fix; replaced with correct (slower) code
2601         * (gen{Unp,P}ackBits): fixed single bit access
2602         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2603         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2604           previous instruction
2605         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2606           register has to be handled with care (forbidding movement
2607           of assignments/uses, removing assignments completely, ...)
2608         * (pCodeOptime2pCodes): make use of regIsSpecial
2609         * added lots of debugging output (commented out)
2610         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2611           from being reused as result UNLESS it is known to work
2612
2613 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2614
2615         * support/Util/dbuf.h: include <stddef.h> for size_t
2616         * .version: changed to version 2.5.2
2617
2618 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2619
2620         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2621
2622 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2623
2624         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2625           (genModOneByte): removed needless psha/pula
2626
2627 2005-07-22 Raphael Neider <rneider AT web.de>
2628
2629         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2630           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2631         * src/pic/gen.c (resolveIfx): do not "invent" labels
2632         * (genSkipc): changed to positive logic
2633         * (genSkipCond): removed as no longer needed
2634         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2635           backport from PIC16
2636         * (genLeftShift): check operands are in different registers
2637         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2638           INCF does not update CARRY...
2639         * src/pic/main.c: fixed _linkCmd
2640         * src/pic/pcode.c (unlinkpCode): added inactive code
2641         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2642           alive (do not assign result and operand overlapping registers)
2643
2644 2005-07-22 Raphael Neider <rneider AT web.de>
2645
2646         * src/pic/device.c (dump_sfr): replaced register declaration with
2647           call to emitSymbolToFile() to avoid duplicate symbols
2648         * (assignRelocatableRegisters): do not declare external symbols
2649         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2650           right (take size of type, not etype)
2651         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2652         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2653         * (packRegsForAccUse): disabled assignment of WREG as
2654           the result reg to prevent occurence of just fixed #1235003,
2655           fixes #1242954
2656         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2657           symbols (avoids duplicate symbols in .asm file)
2658         * (pic14emitRegularMap): use emitSymbolToFile()
2659         * src/pic/gen.c (aopOp): fixed spillLocation handling
2660         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2661         * (genDataPointerSet): removed unneccessary variables/output
2662
2663 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2664
2665         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2666         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2667
2668 2005-07-21 Raphael Neider <rneider AT web.de>
2669
2670         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2671           architecture cannot handle them efficiently, fixes bug #1235003
2672         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2673           check for empty sets before using them (fixes bug #1232190)
2674
2675 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2676
2677         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2678           (lnksect2): generate warnings for memory overlap
2679         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2680           constseg to set the name of these segments so you can instruct the linker
2681           to place them in banks
2682         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2683         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2684           added code_seg and const_seg to options
2685         * src/SDCCglue.c (emitMaps): use options.const_seg,
2686           (createInterruptVect): put interrupt vectors in segment HOME,
2687           (glue): put HOME before static segment and put the main glue in HOME,
2688           (glue): use options.code_seg
2689         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2690         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2691           these segments so you can instruct the linker to place them in banks
2692           (linkEdit): use code_loc for HOME segment which should be the first
2693           segment in code memory now
2694         * src/SDCCmem.c: fixed more stuff like bug 1238386
2695         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2696           (changePointer): don't change function pointers to code pointers for
2697           banked functions,
2698           (compareType): added exceptional check for banked function pointers
2699         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2700         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2701           after static in code memory
2702         * src/mcs51/gen.c: added aopLiteralLong prototype,
2703           (aopForSym): use getSize for functions,
2704           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2705           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2706           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2707           the segment,
2708           (genPcall): use call for literal function pointers and generate banked
2709           calls over the one trampoline so there's only one place for the user to
2710           modify according to his/hers hardware,
2711           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2712           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2713         * src/mcs51/main.c: added keyword banked,
2714           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2715         * support/Util/SDCCerr.c,
2716         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2717           needed for passing the bank and address to the trampoline
2718         * device/lib/mcs51/crtbank.asm: added for bankswitching
2719         * device/lib/mcs51/Makefile: added crtbank
2720
2721 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2722
2723         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2724           for fields at offset 0 of a struct or union as reported
2725           on 2005-07-07 in the developer mailing list.
2726
2727 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2728
2729         * src/SDCCmem.c: fixed bug 1238386
2730
2731 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2732
2733         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2734           (patch #1144962), added peephole 300, enabled 259.x
2735         * doc/sdccman.lyx: removed screenshot and provided link instead
2736
2737 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2738
2739         * doc/sdccman.lyx: added section about debugging with ddd
2740         * doc/figures/ddd_example.eps: screenshot of debugging session
2741
2742 2005-07-04 Raphael Neider <rneider AT web.de>
2743
2744         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2745           like CODE pointers, fixes #1115683
2746         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2747           call, fixes bugs #1232211, #1228110,
2748           fixed wrong casts to pCodeFlow from pCodeInstructions
2749
2750 2005-07-04 Raphael Neider <rneider AT web.de>
2751
2752         * src/pic/gen.c (popGet): changed assert to allow for
2753           bit operands
2754         * (popGetAddr): changed signature to provide
2755           an additional index, patched all call sites
2756         * (genCmpEq): handle literal-like operands correctly
2757         * (genAddrOf): added sanity checks on __code/__data pointers
2758         * (genAssign): added handling of symbols from __code section
2759         * (gencjne): do not generate code for comparisons whose result
2760           is neither stored nor used, fixes bug #1171114
2761         * (AccLsh, AccRsh): operate on operand instead of WREG
2762         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2763           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2764           by known count
2765         * rewrote complete shift-by-literal logic, commented unused
2766           functions out
2767         * (genConstPointerGet): get multiple bytes (if result size > 1),
2768           fixed handling of non-immediate addresses
2769         * (genPointerGet): handle CODE pointers like CONST pointers
2770         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2771         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2772           operand is to be treated as a literal or not
2773         * (mov2w,genPcall,genCmpEq),
2774           src/pic/genarith.c: use aop_isLitLike() to decide between
2775           literal/register contents
2776         * (addSign): added missing offset
2777         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2778           only emit comment in debug-mode,
2779           use {aop,op}_isLitLike throughout the file
2780         * src/pic/glue.c: fix initializers for pointers (work in progress)
2781         * src/pic/pcode.c (get_op): honor index on _const symbols
2782         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2783         * (dumppBlock): added pCode size estimation
2784         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2785           check for IS_SYMOP before OP_SYMBOL'ing
2786         * fixed indentation, compacted switch-statements
2787         * (allocReg): find free register and allocate it instead of
2788           allocating new registers all the time
2789         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2790           registers as its operands (necessary only for multibyte GETs)
2791
2792 2005-07-01 Raphael Neider <rneider AT web.de>
2793
2794         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2795           debugging .asm-output macros FENTRY + FEXIT
2796         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2797           way... I wonder...
2798         * (emitpComment): NEW, printf to pCode
2799         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2800           offset handling
2801         * (popGetAddr): NEW, variant of popGet to access an immediates
2802           high(er) bytes instead of the n'th byte of memory they reference,
2803           replaced popGet with popGetAddr where neccessary
2804         * (genDataPointerGet): reactivated and fixed implementation
2805         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2806           accesses
2807         * (genDataPointerSet): fixed multibyte assignments
2808         * (genpic14Code): fixed --i-code-in-asm handling
2809         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2810         * (genPlus): fixed index-out-of-bounds error
2811         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2812         * src/pic/ralloc.c: added debugging output macro FENTRY2
2813         * (spillThis): fixed indentation, enbraced for-body for clarity
2814         * (rematStr): commented out as now unused
2815         * (regTypeNum): commented out special spill case (overwrites
2816           arbitrary values)
2817         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2818
2819 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * doc/sdccman.lyx: documented sfr16/sfr32,
2822           added example for using storage class with function pointers
2823         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2824
2825 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2826
2827         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2828         * device/lib/_itoa.c,
2829         * device/lib/_ltoa.c: optimized codesize
2830         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2831           but don't know how to suppress the double warning.
2832         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2833         * support/Util/SDCCerr.c,
2834         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2835
2836 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2837
2838         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2839           fixed old K&R prototypes
2840         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2841         * device/lib/_gptrget.c,
2842         * device/lib/_gptrgetc.c,
2843         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2844           also new versions for small generic pointers and banked generic pointers
2845         * src/port.h: added const_name
2846         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2847         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2848         * src/SDCCcse.c (findPrevIc): check all associative operators
2849         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2850         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2851         * src/SDCCmem.c: updated comments,
2852           set far-space to 0 for pdata, results in optimized code
2853         * src/SDCCmem.h: added macro CONST_NAME
2854         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2855           moving the info into the highest bits, see also gptrget/gptrput
2856         * src/src.dsp: added sdcc.ico to project files
2857         * src/avr/gen.c (genCast): fixed bug 0x%d
2858         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2859         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2860           relation between ptr_type and DCL_TYPE,
2861           (genCast): fixed bug 0x%d
2862         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2863           (CODE)" for const_name
2864         * src/hc08/gen.c (genCast): fixed bug 0x%d
2865         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2866           (hc08_port): added "CONST (CODE)" for const_name
2867         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2868           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2869           between ptr_type and DCL_TYPE,
2870           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2871           operand* and took AOP() inside function so sfr-ness can be checked,
2872           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2873           new prototype,
2874           (genFunction, genEndFunction): optimized stack setup,
2875           (genMinus): optimized for literals with ending zeroes (in bytes),
2876           (genCast): fixed bug 0x%d
2877         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2878           (mcs51_port): added "CONST (CODE)" for const_name
2879         * src/mcs51/peeph.def: made rule 226 more generic
2880         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2881         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2882         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2883         * src/z80/main.c (z80_port): added NULL for const_name,
2884           (gbz80_port): added NULL for const_name
2885         * support/regression/tests/bug663539.c,
2886         * support/regression/tests/sfr16.c: new tests
2887
2888 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2889
2890         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2891
2892 2005-06-24 Raphael Neider <rneider AT web.de>
2893
2894         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2895           corrected typos...
2896         * device/include/pic16/signal.h: added USBIF
2897           and SIG_USB
2898
2899 2005-06-24 Raphael Neider <rneider AT web.de>
2900
2901         * device/lib/pic16/libdev/pic18f2455.c,
2902           device/include/pic16/pic18f2455.h: NEW
2903         * device/include/pic16/pic18fregs.h,
2904           device/lib/pic16/pics.all,
2905           src/pic16/device.c: added 18f2455
2906         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2907           device/include/pic16/{pic18f[68][567].h,usart.h}:
2908           replaced MULTIPLE_USARTS define with more relaible
2909           compatibility sfrs (for USART access)
2910
2911 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2912
2913         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2914           and the output asm file line is printed on two lines.
2915
2916 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2917
2918         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2919           BGT, BLE, BHI, and BLS instructions
2920         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2921           genCmpEq): removed
2922         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2923           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2924           fixes bug #1216342
2925         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2926
2927 2005-06-15 Raphael Neider <rneider AT web.de>
2928
2929         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2930         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2931         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2932           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2933           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2934
2935 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2936
2937         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2938           Marcel Telka in bug #1215704
2939
2940 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2941
2942         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2943           located in shared memory bank.
2944
2945 2005-05-31 Raphael Neider <rneider AT web.de>
2946
2947         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2948           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2949           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2950
2951 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2952
2953         * device/lib/_strncpy.c: fixed the fix
2954
2955 2005-05-26 Raphael Neider <rneider AT web.de>
2956
2957         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2958           initializers with \0, bug #1208187
2959         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2960           intializers with \0, bug #1208187
2961
2962 2005-05-26 Raphael Neider <rneider AT web.de>
2963
2964         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2965           initializers with \0, bug #1208187
2966         * src/pic16/main.c (_process_pragma): added sanity checks
2967           for stack position and size, emit warnings when appropriate
2968
2969 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2970
2971         * device/lib/_strncpy.c: fixed not filling with \0
2972
2973 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2974
2975         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2976           createFunction),
2977         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2978           compound_statement),
2979         * src/SDCCsymt.h,
2980         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2981
2982 2005-05-24 Raphael Neider <rneider AT web.de>
2983
2984         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2985
2986 2005-05-24 Raphael Neider <rneider AT web.de>
2987
2988         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2989           TRISE definitions, closes bug #1162453
2990
2991 2005-05-22 Raphael Neider <rneider AT web.de>
2992
2993         * src/pic16/main.c (_process_pragma): check for missing
2994           arguments to pragmas code and udata
2995         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2996           consistency fixes to match other headers (thanks to Jim Paris)
2997         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2998
2999 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
3000
3001         * src/SDCCicode.c (isOperandEqual): fixed missing ;
3002
3003 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
3004
3005         * support/regression/tests/bug1198642.c: new test
3006         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
3007         * src/SDCCcse.c (findPrevIc): added comment, please have a look
3008         * support/scripts/resource.h,
3009         * support/scripts/resource.rc,
3010         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
3011         * support/scripts/sdcc.ico: added 32x32 icon
3012
3013 2005-05-18 Raphael Neider <rneider AT web.de>
3014
3015         * device/lib/pic16/libdev/pic18f*.c,
3016         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
3017           keywords to "__sfr" and "__at (X)"
3018         * device/include/pic16/pic18fregs.h: added pic18f4520
3019         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
3020           #1203088 (MPLAB compatibility)
3021
3022 2005-05-17 Raphael Neider <rneider AT web.de>
3023
3024         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3025         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3026         * device/lib/pic16/pics.all: added new devices
3027         * src/pic16/device.c: added support for pic18f4520
3028
3029 2005-05-16 Raphael Neider <rneider AT web.de>
3030         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3031         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3032         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3033           convenience function for bit access
3034
3035 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3036
3037         * device/lib/printf_large.c: fixed bug 1193299
3038         * support/regression/tests/bug1057979.c: added test %3.3s
3039
3040 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3041
3042         * device/include/mcs51/8051.h,
3043         * device/include/mcs51/8052.h: made parseable with lint
3044         * device/include/mcs51/lint.h: added include file for (sp)lint
3045         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3046         * doc/cdbfileformat.lyx,
3047         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3048
3049 2005-05-14 Raphael Neider <rneider AT web.de>
3050
3051         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3052         * device/lib/pic16/libc/stdlib/itoa.c (new)
3053         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3054         * device/lib/pic16/libio/Makefile: exclude subdir according to
3055           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3056         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3057         * src/pic16/gen.c (genFunction): prevent annoying warning
3058         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3059           nameclashes on BeOS
3060         * support/cpp2/cppmain.c (cpp_output_string): new
3061         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3062           fixes bug 1116802
3063
3064 2005-05-13 Borut Razem <borut.razem AT siol.net>
3065
3066         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3067
3068 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3069
3070         * .version: changed to version 2.5.1; back to bleeding edge development
3071
3072 2005-05-11 Borut Razem <borut.razem AT siol.net>
3073
3074         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3075           generate PDF version 1.3 documents
3076
3077 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3078
3079         * .version: changed to version 2.5.0
3080
3081 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3082
3083         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3084
3085 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3086
3087         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3088         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3089         well as many smaller updates.
3090         * .version: changed to version 2.5.0-pre1
3091
3092 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3093
3094         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3095
3096 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3097
3098         * support/regression/tests/bug1185672.c: added
3099         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3100           bug 1185672
3101         * src/mcs51/gen.c (genCall): added comments, made it look safer
3102         * src/mcs51/gen.c (genEndFunction): simplified
3103
3104 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3105
3106         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3107
3108 2005-04-14 Borut Razem <borut.razem AT siol.net>
3109
3110         * fixed bug 1045046 - SIGSEGV with really simple code?:
3111           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3112           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3113
3114 2005-04-14 Borut Razem <borut.razem AT siol.net>
3115
3116         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3117           src/pic16/device.h: temporarily disabled experimental #inline pragma
3118           for 2.5.0 release
3119
3120 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3121
3122         * device/include/z80/stdio.h,
3123         * device/include/z80/string.h: removed these highly incomplete files so
3124           SDCC can use the default ones in device/include/
3125
3126 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3127
3128         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3129         gcc warning.
3130         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3131         fix sdcpp warnings.
3132
3133 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3134
3135         * device/include/malloc.h: removed redundant __reentrant prototypes
3136         * device/lib/_mullong.c: added working xstack variant in asm (C version
3137           doesn't pass regression tests)
3138         * device/lib/bpx.c: used __data and made bpx char for mcs51
3139         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3140           (createFunction): fixed bug with xstackPtr
3141         * src/SDCCcse.c: corrected comments
3142         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3143           (killDeadCode, eBBlockFromiCode): removed unused code
3144         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3145           corrected comments
3146         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3147           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3148           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3149           (genModOneByte): fixed warning in MSVC
3150         * src/mcs51/main.c (): added comments
3151         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3152
3153 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3154
3155         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3156
3157 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3158
3159         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3160
3161 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3162
3163         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3164         characters arrays of larger size than the declared one.
3165
3166 2005-04-10 Borut Razem <borut.razem AT siol.net>
3167
3168         * src/pic/gen.c (genInline),
3169           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3170           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3171           (findNextInstruction), (findPrevInstruction),
3172           (findInstructionUsingLabel),
3173           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3174         * src/pic/pcode.c (findLabel): added missing '\n'
3175         * src/src.dsp: added SDCCdwarf2.c to the project
3176
3177 2005-04-09 Borut Razem <borut.razem AT siol.net>
3178
3179         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3180
3181 2005-04-08 Raphael Neider <rneider AT web.de>
3182
3183         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3184           into the chain after a given one) and mergeDefmapSymbols (combine
3185           defmap entries for each symbol per pcode)
3186         * (createDefmap): have defmap entries merged in the end
3187         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3188           a symbol before replacing one access type's symbol, merge symbols in
3189           the end (replacement symbol might already have an entry)
3190         * (assignValnums): keep reference to written WREG intact
3191
3192 2005-04-08 Raphael Neider <rneider AT web.de>
3193
3194         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3195           Alpha)
3196
3197 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3198
3199         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3200         bytes
3201
3202 2005-04-07 Raphael Neider <rneider AT web.de>
3203
3204         * device/include/pic16/usart.h: added compatibility defines for
3205           devices with more than one USART
3206         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3207
3208 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3209
3210         * device/lib/Makefile.in: updated for port specific include
3211
3212 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3213
3214         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3215
3216 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3217
3218         * device/include/8051.h,
3219         * device/include/8052.h,
3220         * device/include/at89S8252.h,
3221         * device/include/at89c55.h,
3222         * device/include/at89x051.h,
3223         * device/include/at89x51.h,
3224         * device/include/at89x52.h,
3225         * device/include/mcs51reg.h,
3226         * device/include/reg51.h,
3227         * device/include/reg764.h,
3228         * device/include/regc515c.h,
3229         * device/include/sab80515.h: (re)moved these 12 files
3230         * device/include/mcs51/8051.h,
3231         * device/include/mcs51/8052.h,
3232         * device/include/mcs51/at89S8252.h,
3233         * device/include/mcs51/at89c55.h,
3234         * device/include/mcs51/at89x051.h,
3235         * device/include/mcs51/at89x51.h,
3236         * device/include/mcs51/at89x52.h,
3237         * device/include/mcs51/mcs51reg.h,
3238         * device/include/mcs51/reg51.h,
3239         * device/include/mcs51/reg764.h,
3240         * device/include/mcs51/regc515c.h,
3241         * device/include/mcs51/sab80515.h: and added them here
3242
3243 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3244
3245         * device/include/stdarg.h: changed SDCC specific keywords to double
3246           underlined form.
3247         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3248           mcs51 and ds390.
3249         * device/include/hc08/mc68hc908gp32.h,
3250         * device/include/hc08/mc68hc908jb8.h,
3251         * device/include/hc08/mc68hc908jkjl.h,
3252         * device/include/hc08/mc68hc908qy.h: fixed comments
3253         * device/include/mcs51/README: updated
3254         * device/include/mcs51/c8051f120.h: added PINRSF
3255         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3256         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3257           amidst code. Also inline is not supported.
3258
3259 2005-04-06 Raphael Neider <rneider AT web.de>
3260
3261         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3262         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3263           callers stack/frame pointers
3264
3265 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3266
3267         * device/include/pic16/usart.h: added, missing in previous commit,
3268         * device/include/pic16/adc.h: fixed typo,
3269         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3270         commit,
3271         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3272         <p18fxxx.inc>
3273         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3274         uninitialized because a bug appears with gplink
3275         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3276         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3277         complains for unrecognised option
3278
3279 2005-04-05 Raphael Neider <rneider AT web.de>
3280
3281         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3282           structs as well (using memcpy)
3283         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3284           on ISRs (GOTO has no label)
3285         * src/pic16/device.h: added OF_OPTIMIZE_DF
3286         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3287           new data flow analysis/optimization
3288         * src/pic16/pcode.c: added (prototypes for and implementation of)
3289           dataflow analysis functions, fixed pCodeInstructions' inCond and
3290           outCond values, made RCALL a branch instruction
3291         * (pic16_unlinkpCode): keep C line if possible
3292         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3293           C line moved if possible
3294         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3295         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3296           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3297         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3298           new flow)
3299         * (pic16_getJumptabpCode): NEW, needed in...
3300         * (LinkFlow): fixed handling of jumptables, calls and conditional
3301           branches
3302         * (pic16_InsertCommentAfter): NEW
3303         * (pic16_pCodeReplace): made verbose and flow preserving
3304         * (AnalyzeFlow): added call to data flow analysis
3305         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3306         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3307         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3308
3309 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3310
3311         * src/SDCCast.c (decorateType): fixed bug #1105626
3312
3313 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3314
3315         * device/include/asm/pic16/features.h,
3316         * pic18f*.h headers,
3317         * device/include/pic16/adc.h,
3318         * device/include/pic16/delay.h,
3319         * device/include/pic16/i2c.h,
3320         * device/include/pic16/malloc.h,
3321         * device/include/pic16/stdio.h,
3322         * device/include/pic16/stdlib.h,
3323         * device/include/pic16/string.h,
3324         * device/lib/pic16/libc/stdio/printf_tiny.c,
3325         * device/lib/pic16/libc/stdio/printf_small.c,
3326         * device/lib/pic16/libc/stdio/strmgpsim.c,
3327         * device/lib/pic16/libc/stdio/strmmssp.c,
3328         * device/lib/pic16/libc/stdio/strmusart.c,
3329         * device/lib/pic16/libc/stdio/vfprintf.c,
3330         * device/lib/pic16/libc/stdlib/ltoa.c,
3331         * device/lib/pic16/libc/stdlib/putchar.c,
3332         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3333         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3334         * device/lib/pic16/libc/stdlib/memchrram.c,
3335         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3336         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3337         * device/lib/pic16/libio/adc/adcbusy.c,
3338         * device/lib/pic16/libio/adc/adcread.c,
3339         * device/lib/pic16/libio/adc/adcsetch.c,
3340         * device/lib/pic16/libio/usart/ubaud.c,
3341         * device/lib/pic16/libio/usart/ubusy.c,
3342         * device/lib/pic16/libio/usart/udrdy.c,
3343         * device/lib/pic16/libio/usart/uopen.c,
3344         * device/lib/pic16/libio/usart/uputc.c,
3345         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3346         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3347         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3348         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3349         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3350         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3351         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3352         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3353         specific keywords to double underlined form,
3354         * device/lib/pic16/libc/Makefile.rules,
3355         * device/lib/pic16/libsdcc/Makefile.rules,
3356         * device/lib/pic16/libm/Makefile,
3357         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3358         to compile with C standard set in Makefile.common
3359         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3360         rand.c and crc.c in compilation process,
3361         * device/lib/pic16/libsdcc/int/divuint.c,
3362         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3363         `c' from signed to unsigned,
3364         * device/lib/pic16/startup/crt0.c,
3365         * device/lib/pic16/startup/crt0i.c,
3366         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3367         keywords to double underlined form, bug fixes in _do_cinit function
3368         which prevented the correct initialization of the .idata segment,
3369         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3370         core to enter a infinite loop
3371         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3372
3373 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3374
3375         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3376
3377 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3378
3379         * device/include/Makefile.in: add support for hc08 subdirectory
3380         * device/include/hc08/: new subdirectory
3381         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3382         Lucas Loizaga, thanks!
3383         * device/include/hc08/mc68hc908qy.h,
3384         * device/include/hc08/mc68hc908gp32.h,
3385         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3386         their own directory. Changed internal macro names to use the compiler
3387         reserved namespace. Changed SDCC specific keywords to double
3388         underlined form.
3389         * device/include/math.h,
3390         * device/include/malloc.h,
3391         * device/include/stdarg.h,
3392         * device/include/stdbool.h
3393         * device/include/string.h,
3394         * device/include/tinibios.h,
3395         * device/include/ds400rom.h,
3396         * device/include/8051.h,
3397         * device/include/8052.h,
3398         * device/include/80c51xa.h,
3399         * device/include/at89c55.h,
3400         * device/include/at89S8252.h,
3401         * device/include/at89x51.h,
3402         * device/include/at89x52.h,
3403         * device/include/ds80c390.h,
3404         * device/include/reg764.h,
3405         * device/include/regc515c.h,
3406         * device/include/sab80515.h,
3407         * device/include/mcs51/c8051f000.h,
3408         * device/include/mcs51/c8051f018.h,
3409         * device/include/mcs51/c8051f020.h,
3410         * device/include/mcs51/c8051f040.h,
3411         * device/include/mcs51/c8051f060.h,
3412         * device/include/mcs51/c8051f120.h,
3413         * device/include/mcs51/c8051f300.h,
3414         * device/include/mcs51/c8051f310.h,
3415         * device/include/mcs51/c8051f320.h,
3416         * device/include/mcs51/c8051f330.h,
3417         * device/include/mcs51/c8051f350.h,
3418         * device/include/z180.h: Changed SDCC specific keywords to double
3419         underlined form.
3420
3421 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3422
3423         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3424         18F4455,
3425         * (pic16_assignConfigWordValue): disable testing of configuration
3426         register value with config mask,
3427         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3428         function with port->fun_prefix,
3429         * (genFunction): when generating a naked interrupt function never
3430         create an absolute segment placed in interrupt vector address, place
3431         the actual interrupt function at IVA instead, when an interrupt
3432         function is generated with unspecified interrupt then do not create
3433         the absolute section,
3434         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3435         code for generating a call to generic pointer get/put function with
3436         a call to function pic16_callGenericPointer(),
3437         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3438         the call to the generic pointer get/put functions with prefixing the
3439         function name with port->fun_prefix,
3440         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3441         * src/pic16/main.c (_process_pragma): prefix function with
3442         port->fun_prefix,
3443         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3444         calling assembler, old 18Fxxxx macro is deprecated,
3445         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3446         PC_ASMDIR in while condition,
3447         * (findInstruction): add PC_ASMDIR in while condition,
3448         * (buildCallTree): prefix main with port->fun_prefix,
3449         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3450         identifier for variable with banked access in instructions BTFSS,
3451         BTFSC, BCF, BSF, BTG
3452         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3453         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3454         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3455         perform optimization when enviroment variable NO_REG_OPT is set,
3456         * (insideLRBlock): NEW, return 1 if register is inside an
3457         INF_LOCALREGS block,
3458         * (RemoveRegFromLRBlock): remove a register that is completely
3459         eliminated by register optimization, but it is still left in local
3460         register store/restore in/from stack block,
3461         * (Remove2pcodes): after removing register, check to see if it
3462         should be removed from local register store/restore in/from stack
3463         block,
3464         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3465         DUMMY_READ_VOLATILE,
3466
3467         * device/include/pic16/adc.h: minor prototype modifications and
3468         update,
3469         * device/include/pic16/malloc.h: added GPL notice various
3470         modifications,
3471         * device/include/pic16/stdint.h: NEW, standard header for ints
3472         * device/include/pic16/delay.h: NEW, header for delay functions,
3473         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3474         delay1mtcy,
3475         * device/include/pic16/signal.h: NEW, header providing helper macros
3476         for implementing signal handlers,
3477         * device/include/pic16/stdio.h: added prototypes for functions,
3478         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3479         prototypes for stdin and stdout, added macro PUTCHAR to
3480         automatically implement putchar function prototype,
3481         * device/include/pic16/usart.h: modified and updated USART library,
3482         * device/lib/pic16/libio/adc/,
3483         * device/lib/pic16/libio/i2c: some modifications to improve library
3484         performance,
3485         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3486         family of functions,
3487         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3488         family of functions and other sources,
3489         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3490         of the PIC18Fxx[28] devices,
3491         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3492         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3493         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3494         _do_cinit function, because the previous failed when local variables
3495         where not placed in the same memory bank,
3496         * device/lib/pic16/libsdcc/char/: various modifications to improve
3497         library performance,
3498         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3499         information on the new functions of the c library and more...
3500
3501 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3502
3503         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3504
3505 2005-03-26 Raphael Neider <rneider AT web.de>
3506
3507         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3508           if condition == CARRY)
3509         * (genCmp): adapted to new genSkipc semantics
3510         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3511           on rIfx (genCmp was broken)
3512
3513 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3514
3515         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3516         * src/z80/main.c (_keywords[]),
3517         * src/SDCCglobal.h (struct options),
3518         * src/SDCC.y,
3519         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3520         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3521         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3522         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3523         always available in leading double underscore form. The C99 support is
3524         mostly missing, but it's a start.
3525         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3526         reserved identifier "__data".
3527
3528 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3529
3530         * src/mcs51/peeph.def: fixed bug 1170013
3531
3532 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3533
3534         * device/include/mcs51reg.h: fixed bug 842007
3535
3536 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3539         last time.
3540
3541 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3542
3543         * src/port.h (struct PORT),
3544         * src/avr/ralloc.c (avr_assignRegisters),
3545         * src/avr/main.c,
3546         * src/ds390/ralloc.c (ds390_assignRegisters),
3547         * src/ds390/main.c,
3548         * src/hc08/ralloc.c (hc08_assignRegisters),
3549         * src/hc08/main.c,
3550         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3551         * src/mcs51/main.c,
3552         * src/pic/ralloc.c (pic14_assignRegisters),
3553         * src/pic/main.c,
3554         * src/pic16/ralloc.c (pic16_assignRegisters),
3555         * src/pic16/main.c,
3556         * src/xa51/ralloc.c (xa51_assignRegisters),
3557         * src/xa51/main.c,
3558         * src/z80/ralloc.c (z80_assignRegisters),
3559         * src/z80/ralloc.h,
3560         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3561         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3562         * src/SDCCcse.h,
3563         * src/SDCCdflow.c (computeDataFlow),
3564         * src/SDCCdflow.h,
3565         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3566         * src/SDCCloop.h,
3567         * src/SDCCcflow.c (*),
3568         * src/SDCCcflow.h,
3569         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3570         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3571         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3572         immedDom() returning wrong block; probably fixes bug #1160833)
3573
3574 2005-03-20 Borut Razem <borut.razem AT siol.net>
3575
3576         * support/scripts/inc2h.pl: WIN32 port
3577
3578 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3579
3580         * device/lib/makefile.in: added abs.c and labs.c
3581
3582 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3583
3584         * device/include/stdint.h: added
3585         * device/lib/abs.c: added
3586         * device/lib/labs.c: added
3587         * device/include/stdlib.h: added abs() and labs() prototypes
3588         * device/lib/libsdcc.lib: added abs and labs
3589         * device/include/float.h,
3590         * device/lib/_fsmul.c,
3591         * device/lib/printf_fast.c,
3592         * device/lib/printf_tiny.c: updated comments
3593
3594 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3597         bug #1164313
3598
3599 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3600
3601         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3602         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3603
3604 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3605
3606         * device/lib/printf_large.c: removed inline assembly for portability and
3607           readability. Use printf_fast if speed or size are more important.
3608         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3609         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3610
3611 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3612
3613         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3614         prevent compiler warning
3615
3616 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3617
3618         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3619         moved to level 0 and declared as static. Also they are explicit
3620         placed in access bank. This was necessery because some times they
3621         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3622         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3623         optimizations. Currently only compare to unsigned char is implemented,
3624         * src/pic16/gen.c: added fReturnIdx array,
3625         * (struct resolvedIfx) is moved to gen.h and made public,
3626         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3627         * (aopForSym): added an optimization to directly store in stack of
3628         the operand of a SEND iCode,
3629         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3630         but as registers instead (AOP_REG) using the fReturnIdx array,
3631         * (pic16_freeAsmop): remove the freed register from the
3632         _G.sregsAlloc field,
3633         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3634         a compare of 'WREG',
3635         * (pic16_popGetTempRegCond): changed function prototype, now
3636         function takes also a bitVector argument v which holds the current
3637         set of registers that are allocated for stack access by aopForSym,
3638         registers allocated in aopForSym for accessing stack symbols are not
3639         any more part of the functions usedRegs field,
3640         * (genCall): some times aopOp is called for a stack variable to be
3641         send, aopForSym might perform the push, if this is true make sure
3642         that genCall doesn't push the variable twice by testing _G.resDirect,
3643         * (genFunction): changed testing for unspecified interrupt number
3644         from 256 to INTNO_UNSPEC,
3645         * modified selection scheme of frame pointer generation. Previously
3646         if function did use local registers a frame pointer was generated,
3647         now a frame pointer is generated only if function has arguments
3648         (that need PLUSW2 register access), or has stack arguments, or the
3649         compiler is not instructed to omit the frame pointer,
3650         * (genEndFunction): before restoring local registers that were saved
3651         in the function preamble, also restore the registers that *might*
3652         have been allocated for stack access,
3653         * (genRet): removed some old comments,
3654         * (genCmp, the active (RN's) version): added a call to the
3655         pic16_genCmp_special function to perform the compare with a more
3656         robust and optimized way,
3657         * (genInline): a feature has been added in inline code generation,
3658         which allows a wildcard variable substitution when writing inline
3659         assembly. Code is incomplete and experimental therefore undocumented,
3660         * (genCast): changed order of aopOp for result and right to allow
3661         aopForSym to directly load the result if possible,
3662         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3663         perform an optimized compare on some selected special occasions,
3664         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3665         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3666         generate an IVT any more,
3667         * src/pic16/main.c (pic16_optionsTable): added command line option
3668         --optimize-cmp,
3669         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3670         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3671         macros,
3672         * src/pic16/NOTES: Raphael Neider added in list of active developers
3673         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3674         jumptable_end to prevent bug #,
3675         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3676         inCond and outCond fields,
3677         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3678         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3679         turn off register spilling,
3680         * (packRegsForOneUse): synced with other ports' versions although it
3681         is not used currently,
3682         * (pic16_packRegisters): added an optimization while reading
3683         structure bitfields, some registers may be saved (malloc code is
3684         decreased by 80 bytes)
3685
3686 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3687
3688         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3689         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3690         this can be optimized more?
3691
3692 2005-03-10 Raphael Neider <rneider AT web.de>
3693
3694         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3695           genNearPointerGet): (hopefully) fixed access to bitfields via
3696           pointers (p->bitN = x; and x = p->bitN; failed)
3697
3698 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3699
3700         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3701
3702 2005-03-09 Raphael Neider <rneider AT web.de>
3703
3704         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3705
3706 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3707
3708         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3709         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3710           (regTypeNum): set REG_BIT type if necessary
3711         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3712         * support/regression/tests/critical.c: check bug 1144613
3713
3714 2005-03-02 Raphael Neider <rneider AT web.de>
3715
3716         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3717
3718 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3719
3720         * src/avr/ralloc.c (serialRegAssign),
3721         * src/ds390/ralloc.c (serialRegAssign),
3722         * src/hc08/ralloc.c (serialRegAssign),
3723         * src/mcs51/ralloc.c (serialRegAssign),
3724         * src/pic/ralloc.c (serialRegAssign),
3725         * src/pic16/ralloc.c (serialRegAssign),
3726         * src/xa51/ralloc.c (serialRegAssign),
3727         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3728
3729 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3730
3731         * src/SDCCast.c (decorateType): fixed bug 1124787
3732
3733 2005-02-20 Hubert Sack <sack AT digiplan.de>
3734         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3735
3736         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3737         patch #1121755
3738
3739 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3740
3741         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3742         to keep the correct label reference count when adding/removing references
3743         to labels. A peephole file using this is appended to patch #1144962.
3744
3745 2005-02-14 Raphael Neider <rneider AT web.de>
3746
3747         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3748         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3749         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3750           retrievals of result operand's value on assignment
3751
3752 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3753
3754         * device/include/pic16/string.h: modified prototype for memccpy()
3755         to memccpy(void *, void *, char, size_t)
3756         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3757         check whether to omit frame pointer or not,
3758         * (genInline): convert all occurences of "\n" to LF in inline
3759         assembler blocks, this helps formatting the inline text,
3760         * (pic16_loadFSR0): modified prototype,
3761         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3762         removed some 8051 legacy code,
3763         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3764         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3765         before allocating temporary registers in functions,
3766
3767 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3768
3769         * support/regression/tests/bitvars.c: corrected the "fix"
3770
3771 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3772
3773         * support/regression/tests/bitvars.c,
3774         * support/regression/tests/bitwise.c,
3775         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3776
3777 2005-02-10 Raphael Neider <rneider AT web.de>
3778
3779         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3780           different size for Alpha
3781         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3782
3783 2005-02-09 Raphael Neider <rneider AT web.de>
3784
3785         * src/SDCC.lex(doPragma) : save and restore warning options as well
3786           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3787         * have #pragma less_pedantic set the errorlevel to WARNING
3788           (fixes #1117001)
3789         * (cloneOptimize) : fixed wrong malloc's size
3790         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3791           facilitate correct handling of #pragma (save|restore)
3792
3793 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3794
3795         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3796
3797 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3798
3799         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3800
3801 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3802
3803         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3804
3805 2005-02-02 Raphael Neider <rneider AT web.de>
3806
3807         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3808         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3809         * (pic16_storeForReturn): fixed to allow returning function pointers
3810         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3811         * device/include/pic16/{stddef.h,stdbool.h}: added
3812
3813 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3814
3815         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3816
3817 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3818
3819         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3820         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3821          appeared to be required
3822
3823 2005-01-31 Borut Razem <borut.razem AT siol.net>
3824
3825         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3826           include/mcs51 and include/z80 directories to the package
3827
3828 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3829
3830         * src/hc08/gen.c (genFunction): fixed bug #1112752
3831
3832 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3833
3834         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3835
3836 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3837
3838         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3839
3840 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3841
3842         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3843
3844 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3845
3846         * device/include/c8051fxxx.h: removed these 6 files
3847         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3848
3849 2005-01-26 Raphael Neider <rneider AT web.de>
3850
3851         * src/pic16/gen.c (genAssign): fixed assignment from longs
3852           in codespace (were cut to three bytes)
3853         * (genDummyRead): implemented (except for CODESPACE...),
3854           fixed bug #1108575
3855         * src/pic16/glue.c (emitStatistics): beautified
3856         * device/lib/pic16/libm/Makefile: added include path
3857
3858 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3859
3860         * src/z80/gen.c (aopPut): fixed bug #1103902
3861
3862 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3863
3864         * device/lib/expf.c: fixed bug #1095792
3865
3866 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3867
3868         * device/lib/pic16/libm: added Math library sources
3869
3870 2005-01-24 Raphael Neider <rneider AT web.de>
3871
3872         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3873           to enable upcast to pCodeOpReg2 (there is no type tag to
3874           differenciate the two and pic16_popGet2p cast into PCOR2)
3875         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3876           (sizeof(sectNames) changed to sizeof(sectName))
3877           Both patches fix segfaults under MinGW.
3878
3879 2005-01-23 Raphael Neider <rneider AT web.de>
3880
3881         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3882           Safe_[mc]?alloc()'ed variables
3883         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3884           of (byte sized) temporaries (assign them to WREG for now)
3885         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3886           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3887           this might fix SIGSEGVs on MinGW...
3888         * src/SDCCopt.c (killDeadCode): restored original behaviour
3889           (volatile operands might get thrown away though)
3890
3891 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3892
3893         * src/pic16/gen.c: fixed bug #1106975,
3894         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3895         pointer update, INTCON is saved, global interrupts are disabled and
3896         restored after updateing TOS.
3897         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3898         * added function attribute 'shadowregs' to take advantage of shadow
3899         registers,
3900         * added function attribute 'wparam' as an alternative to the wparam
3901         pragma,
3902         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3903         user declares a non-ISR function as 'shadowregs',
3904         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3905
3906 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3907
3908         * .version: bumped version number to 2.4.8
3909         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3910         pic16 port,
3911         * device/lib/pic16/libio/i2c/: I2C module support library,
3912         * device/include/pic16/i2c.h: I2C support library header,
3913         * device/lib/pic16/libc/stdio/: standard IO support sources,
3914         * (printf_small.c): printf_small() source, supports float print,
3915         * (printf_tiny.c): printf_tiny() source, does not support floats,
3916         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3917         enable global optimizations for entire library source, other
3918         Makefiles in the source tree are also modified to reflect this,
3919         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3920         function,
3921         * doc/sdccman.lyx: updated to reflect new changes,
3922         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3923         sym->onStack if-case,
3924         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3925         sbit, idata, _idata, xdata, _xdata,
3926         * added pragma library, to link an external library, (see doc),
3927         * removed command line options, --pomit-config-words, --pomit-ivt,
3928         --pleave-reset-vector,
3929         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3930         when calling assembler to reflect memory model used, also define
3931         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3932         reflect stack model used,
3933         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3934         on stack return NULL,
3935
3936 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3937
3938         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3939           of the operands is volatile. Fixes #1020220
3940
3941 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3942
3943         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3944         * (OptimizeRegUsage): make sure that there is really no other flow where
3945           the first pCode is used
3946
3947 2005-01-22 Raphael Neider <rneider AT web.de>
3948
3949         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3950           to fix #1106967 (pCode->seq are not set up correctly)
3951
3952 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3953
3954         * src/SDCCglue.c (glue): make sure code area is declared before the
3955         static initialization area.
3956
3957 2005-01-21 Raphael Neider <rneider AT web.de>
3958
3959         * device/lib/Makefile.in: fixed test for pic16 install dir
3960         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3961           optimizations
3962         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3963           added --optimize-goto compiler switch and pragma wparam documentation
3964         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3965         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3966           and PRODH closing bug #1071770 (peephole optimizer)
3967
3968 2005-01-19 Raphael Neider <rneider AT web.de>
3969
3970         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3971           cmdLine buffers (used when calling sdcpp...) are large enough
3972           (MAX_PATH=256 truncates arguments leading to system halts when
3973           used in MinGW...)
3974         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3975         * (genUminus): rewritten to for efficiency
3976         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3977           used uninitialized in some cases)
3978         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3979           copy the third byte from the int -- now assumes 0x80 (data memory)
3980         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3981           operands (genAddLit expects the iCode's operands to swapped as
3982           well), fixed leftover bytes (crashed for short left operands)
3983         * (pic16_genMinusDec): performance improvements, removed false
3984           PIC14 emitSKPNCs
3985         * (pic16_genMinus): fixed to cope with differently sized operands
3986         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3987           for --obanksel > 1
3988         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3989         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3990           new banksel optimization
3991         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3992           analysis for temporary registers (segfaults...)
3993         * src/pic16/peeph.def: added rule
3994
3995 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3996
3997         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3998         which converts a float number to its ASCII representation
3999         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
4000         functions to convert the fractional and integer part of a float to ASCII,
4001         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
4002         realloc.c): added _MALLOC_SPEC to explicit place variables in data
4003         ram
4004         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
4005         _STATMEM macros,
4006         * device/include/pic16/adc.h: added GPL info,
4007         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
4008         a pCodeOp as tested operand,
4009         * (genNearPointerGet): optimized bit testing, does not use
4010         intermediate register for bit value, test directly instead with
4011         BTFSS, BTFSC, works only for single bits,
4012         * (genpic16Code): dump the name of the iCode in the asm,
4013         * src/pic16/ralloc.c (decodeOp): removed static declaration and
4014         renamed to pic16_decodeOp,
4015         * (serialRegAssign): do not allocate a temporary register for iCode
4016         sequences that test a single bit for 1/0
4017
4018 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
4019
4020         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
4021         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
4022         access stack and frame pointers. They are initially assigned to
4023         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
4024         accessing SFRs. Updated all occurences of modification of stack or
4025         frame pointer in gen.c and pcode.c,
4026         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4027         assigning of a literal value to pointers,
4028         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4029         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4030         selected
4031
4032 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4033
4034         * doc/sdccman.lyx: update documentation about stack pragma, added
4035         some info for stack memory models
4036
4037 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4038
4039         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4040
4041 2005-01-08 Raphael Neider <rneider AT web.de>
4042
4043         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4044           udata sections to fix bug #1097823
4045
4046 2005-01-05 Raphael Neider <rneider AT web.de>
4047
4048         * src/pic16/gen.c (genGenericShift): added handling of differently
4049           sized left operand and result
4050
4051 2005-01-04 Raphael Neider <rneider AT web.de>
4052
4053         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4054         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4055           to hold the condition bit)
4056         * added new version of genCmp (old code available via #define)
4057         * added new version of genShiftLeft/genShiftRight in a generic
4058           way, now supports shifting by negative values
4059         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4060           shiftCount (expected by genGenericShift)
4061         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4062         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4063           dump
4064         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4065           is an invalid literal too...)
4066
4067 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4068
4069         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4070         from Raphael Neider,
4071         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4072         for 8-bit literals. This fixes some literal operands which are sign
4073         extended to 16-bits ints when instruction needs only 8-bits.
4074
4075 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4076
4077         * device/lib/logf.c: added mcs51 assembly version
4078         * device/lib/expf.c: added mcs51 assembly version
4079         * device/lib/_logexpf.c: new shared asm code for expf and logf
4080         * device/include/math.h: add defines for assembly math library
4081         * device/lib/Makefile.in: build new _logexpf.c
4082         * device/lib/libfloat.lib: use new _logexpf.c
4083
4084 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4085
4086         * src/pic/device.c
4087         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4088           device types which have less than 0x7f registers.
4089
4090 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4091
4092         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4093
4094 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4095
4096         * device/lib/printf_fast.c: only build on supported arch.
4097         * device/lib/printf_tiny.c: only build on supported arch.
4098         * device/lib/printf_fast_f.c: only build if asm float lib
4099         * device/lib/_fsget1arg.c: only build if asm float lib
4100         * device/lib/_fsget2args.c: only build if asm float lib
4101         * device/lib/_fsnormalize.c: only build if asm float lib
4102         * device/lib/_fsreturnval.c: only build if asm float lib
4103         * device/lib/_fsrshift.c: only build if asm float lib
4104         * device/lib/_fsswapargs.c: only build if asm float lib
4105         * device/include/stdio.h: don't provide print_fast,
4106           print_fast_f, print_tiny prototypes if --xstack used
4107
4108 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4109
4110         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4111         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4112           to the SOURCES
4113
4114 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4115
4116         * device/lib/printf_fast_f.c: same as printf_fast, but
4117           with floating point enabled
4118         * device/lib/printf_fast.c: minor tweaks
4119         * device/include/stdio.h: add printf_fast_f
4120
4121 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4122
4123         * src/SDCCmain.c: make --float-reent default for mcs51
4124         * device/lib/_fsadd.c: added mcs51 assembly version
4125         * device/lib/_fssub.c: added mcs51 assembly version
4126         * device/lib/_fsmul.c: added mcs51 assembly version
4127         * device/lib/_fsdiv.c: added mcs51 assembly version
4128         * device/lib/_fseq.c: added mcs51 assembly version
4129         * device/lib/_fsneq.c: added mcs51 assembly version
4130         * device/lib/_fsgt.c: added mcs51 assembly version
4131         * device/lib/_fslt.c: added mcs51 assembly version
4132         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4133         * device/lib/Makefile.in: add _fscmp to build
4134         * device/lib/libfloat.lib: add _fscmp to build
4135
4136 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4137
4138         * device/lib/_fs2slong.c: added mcs51 assembly version
4139         * device/lib/_fs2sint.c: added mcs51 assembly version
4140         * device/lib/_fs2schar.c: added mcs51 assembly version
4141         * device/lib/_fs2ulong.c: added mcs51 assembly version
4142         * device/lib/_fs2uint.c: added mcs51 assembly version
4143         * device/lib/_fs2uchar.c: added mcs51 assembly version
4144         * device/lib/_slong2fs.c: added mcs51 assembly version
4145         * device/lib/_sint2fs.c: added mcs51 assembly version
4146         * device/lib/_schar2fs.c: added mcs51 assembly version
4147         * device/lib/_ulong2fs.c: added mcs51 assembly version
4148         * device/lib/_uint2fs.c: added mcs51 assembly version
4149         * device/lib/_uchar2fs.c: added mcs51 assembly version
4150         * device/include/float.h: added #define to select asm vs c
4151
4152 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4153
4154         * device/lib/printf_fast.c: improvements to float output
4155         * device/include/float.h: add defines for assembly float library
4156         * device/lib/_fsget1arg.c: receive 1 float arg
4157         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4158         * device/lib/_fsnormalize.c: normalize a float
4159         * device/lib/_fsreturnval.c: return float, various helper routines
4160         * device/lib/_fsrshift.c: right shift a float's mantissa
4161         * device/lib/_fsswapargs.c: swap 2 floats
4162         * device/lib/Makefile.in: build these 6 new files for mcs51
4163         * device/lib/libfloat.lib: add these 6 files to the library
4164
4165 2004-12-26 Borut Razem <borut.razem AT siol.net>
4166
4167         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4168           built by gcc 3.4.2
4169
4170 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4171
4172         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4173           and fully reentrant and register bank neutral.
4174         * device/lib/printf_fast.c: added float (not enabled by default),
4175           added compact/slower integer (also not enabled by default),
4176           improved size/speed of fast integer code, other minor changes
4177         * device/include/stdio.h, device/lib/Makefile.in,
4178           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4179
4180 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4181
4182         * src/pic16/pcode.c: declaring variables other than at the start of a
4183           block is not supported in C by VC6.
4184
4185 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4186
4187         * applied a previous patch from Raphael Neider that wasn't included
4188         in the previous commits, which fixes infinite loops within jumptable
4189         improvements,
4190         * made some fixes that previous patches introduced
4191
4192 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4193
4194         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4195         that fixes an issue with AOP_PCODE asmop's offset,
4196         * (pic16_popCopyReg): update instance field too,
4197         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4198         function of pic port,
4199         * (genCmp, genAnd, genAssign),
4200         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4201
4202 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4203
4204         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4205         variables initial values to idata section,
4206         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4207         variables in some functions. This utilizes parmBytes field of iCode
4208         structure to hold the offset of the variable in stack. (might be
4209         able to use the stack field too?)
4210         * applied patch from Raphael Neider # ### , # ###
4211         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4212         variable initial values in idata section,
4213         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4214         for static variables with initial value
4215         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4216         applied fix in while loop from Raphael Neider.
4217
4218 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4219
4220         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4221         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4222         * src/ds390/ralloc.c (serialRegAssign): spill bits
4223         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4224         * support/Util/SDCCerr.c,
4225         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4226         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4227         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4228
4229 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4230
4231         * device/include/sdcc-lib.h: inserted LGPL, added includes
4232           asm/ds390/features.h and asm/mcs51/features.h
4233         * device/include/asm/default/features.h,
4234         * device/include/asm/gbz80/features.h,
4235         * device/include/asm/z80/features.h: added empty _AUTOMEM
4236           and _STATMEM
4237         * device/include/asm/ds390/features.h,
4238         * device/include/asm/mcs51/features.h: added files with defines for
4239           _AUTOMEM and _STATMEM indicating automatic and static storage class
4240         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4241         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4242         * src/SDCCicode.c (geniCodeCast),
4243         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4244         * src/SDCCloop.c (loopInduction): removed unused variable lr
4245         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4246           to convertToFcall to include char modulo (RFE 1065037), added check
4247           if left operand is unsigned and use abs of literal value
4248         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4249           as it doesn't work after conversion from peephole.def to peephole.rul
4250         * src/mcs51/gen.c (toBoolean): added check for size,
4251           (genModOneByte): optimized code for signed char modulo a literal
4252           power of 2 (thanks to Hubert Sack),
4253           (genRRC): removed unnecessary "clr c",
4254           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4255         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4256           jump optimization,
4257           swapped rules 256.c and 256.d,
4258           extended 256.d by using new multiple checks (thanks Erik),
4259           added rules 256.e and 256.f,
4260           updated rule 261.a and 261.b to new generated code
4261         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4262
4263 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4264
4265         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4266           induction related bugs, including first part of bug #1074377
4267
4268 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4269
4270         * applied patch from bug-report #1076292,
4271         * applied patches for genAnd and Goto-optimizations for Raphael
4272         Neider,
4273         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4274         dump a less iCode information,
4275         * src/pic16/device.h (pic16_options_t): added field debgen,
4276         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4277         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4278         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4279         puclic,
4280         * (various functions): added macros FENTRY and FENTRY2 to functions,
4281         to emit function prologue,
4282         * (various functions): fixed indentation,
4283         * (genNearPointerGet): fixed loading of FSR0,
4284         * (genPackBits): applied patch from Raphael Neider to fix updating
4285         of FSR0 and touching only the modified bits,
4286         * src/pic16/genarith.c (various functions): added macros FENTRY to
4287         emit function prologue in comments,
4288         * src/pic16/pcode.h: added functions debugf2, debugf3,
4289         * src/pic16/ralloc.c: partial fix for packForPush caused
4290         segmentation fault,
4291
4292 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4293
4294         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4295           <stsp AT users.sourceforge.net> with reversed byte order
4296         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4297
4298 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4301           bug #1074377
4302         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4303         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4304
4305 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4306
4307         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4308
4309 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4310
4311         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4312           conditions,
4313           (setFromConditionArgs): friendly operand parser for peephole rules,
4314           (operandBaseName, operandsNotRelated): new peephole condition
4315           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4316           architecture specific register naming into account, handles n-way
4317           comparisons, and supports quoted literals
4318         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4319
4320 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4321
4322         * src/mcs51/peeph.def: fixed bug #1076940
4323
4324 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4325
4326         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4327
4328 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4329
4330         Adding support for replacing ljmps with sjmps in jumptables
4331         generated for switch statements. For now you need to set the
4332         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4333         Now 4 algorithms for mcs51 jumptable generation are used:
4334         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4335         addresses loaded pc-relative for up to 112 cases and stack-pushing
4336         target addresses loaded with offset from dptr for up to 256 cases.
4337
4338         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4339         * src/mcs51/main.c: adapted constants for switch table generation
4340         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4341
4342 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4343
4344         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4345         * support/regression/tests/bug1057979.c: added test for bug 1073386
4346
4347 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4348
4349         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4350         compilers
4351
4352 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4353
4354         * src/pic16/device.h,
4355         * src/pic16/genarith.c,
4356         * src/pic16/glue.c,
4357         * src/pic16/main.c,
4358         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4359
4360 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4361
4362         Large cummulative patch for pic16 port.
4363         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4364         to call when a stack overflow occurs,
4365         * (malloc.h): added CVS Id tag,
4366         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4367         variable,
4368         * added libc directory. The current version of LibC contains string
4369         functions, ctype functions and macros and some functions of the
4370         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4371         be extensively tested in the future. Standard disclaimer here.
4372         Library is not automatically build yet. But one can build it by
4373         invoking 'make' inside the libc directory.
4374         * added ADC library under libio. Preliminary version yet.
4375
4376         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4377         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4378         aopForRemat() now and not by pic16_aopOp(),
4379         * (pic16_popGetTempReg): removed warning messgae when allocating
4380         temporary registers, its a buggy feature and will be removed,
4381         * (pic16_popGet): set register instance field in AOP_CRY,
4382         * (pic16_outBitC): fixed for results in size greater than 1,
4383         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4384         * (pic16_storeForReturn): optimized return of 0,
4385         * (genCmp): experimental code for new genCmp which uses PIC18's
4386         special compare&skip instructions. Initial tests fail some times
4387         with variables grater than 1 byte in size, so new code is disabled,
4388         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4389         a single bit,
4390         * (genCast): began a fix to optimize the casting of a bit to another
4391         bit, now assigning a bitfield to another bitfield will fail, sorry,
4392         * src/pic16/main.c: disabled the use of lr-support feature,
4393         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4394         * added some function prototypes, added function _debugf prototype,
4395         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4396         bits with offset (case PO_GPR_BIT),
4397         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4398         command line,
4399         * (isBankInstruction): modified to return 0 for no banking instruction,
4400         and 1 for banking instruction,
4401         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4402         caused stop processing pCodes after a inline assembly block,
4403         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4404         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4405         registers when it shouldn't,
4406         * src/pic16/ralloc.c (allocReg): add preliminary support for
4407         supporting a limited set of temporary registers,
4408
4409 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4410
4411         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4412           genDataPointerSet): ensure assignments always copy in MSB to LSB
4413           order,
4414           (loadRegFromAop): recognize CLRH optimization,
4415           (genFunction): optimize RECEIVE iCodes in reentrant functions
4416
4417 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4418
4419         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4420           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4421           selected.
4422         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4423         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4424           contiguous with data
4425
4426 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4427
4428         * device/lib/_gptrget.c (_gptrget),
4429         * device/lib/_gptrgetc.c (_gptrgetc),
4430         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4431           instead of sjmp to ret
4432         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4433           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4434
4435 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4436
4437         * .version: bumped version to 2.4.7
4438         * device/lib/_gptrget.c (_gptrget): is now _naked
4439         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4440         * device/lib/_gptrput.c (_gptrput): is now _naked
4441         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4442           (createFunction): fixed xstack
4443         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4444         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4445           or bit either,
4446           (geniCodeCritical): store original interrupt state in an iTemp bit
4447           var unless stack-auto
4448         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4449         * src/SDCCmain.c (setIncludePath): added include/target to search path
4450         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4451         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4452           prototype,
4453           (processFuncArgs): put bit vars in bit area
4454         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4455           unsaveRBank): fixed xstack,
4456           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4457           (genFunction, genEndFunction): fixed xstack,
4458           (genAssign): optimization don't walk backwards through mem
4459         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4460         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4461         * support/regression/Makefile: also make library (for stack-auto) when
4462           making "all" and added "test-mcs51-xstack-auto"
4463         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4464         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4465         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4466         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4467         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4468           make-library by MAKE_LIBRARY
4469         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4470           regression tests for xstack
4471         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4472         * support/regression/tests/critical.c: test for critical on mcs51
4473
4474 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4475
4476         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4477           built version of sdcc instead of installed version
4478
4479 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4480
4481         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4482         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4483           vprintf.c now
4484         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4485         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4486           WARNING: remove device/lib/build/z80/printf.o by hand when
4487           updating from previous build!
4488         * device/lib/z80/printf.c: updated comment
4489         * support/regression/tests/bug1057979.c: test all ports now
4490         * support/regression/tests/bug1065458.c: file added
4491
4492 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4493
4494         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4495           *_start and *_end symbols for static functions
4496
4497 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4498
4499         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4500           and search crt0.o in all library paths,
4501           (setIncludePath): proper handling of --nostdinc,
4502           (setLibPath): proper handling of --nostdlib
4503         * support/regression/Makefile,
4504         * support/regression/ports/ds390/spec.mk,
4505         * support/regression/ports/gbz80/spec.mk,
4506         * support/regression/ports/hc08/spec.mk,
4507         * support/regression/ports/mcs51/spec.mk,
4508         * support/regression/ports/mcs51-large/spec.mk,
4509         * support/regression/ports/mcs51-stack-auto/spec.mk,
4510         * support/regression/ports/z80/spec.mk: use include and lib files from
4511           built version of sdcc instead of installed version
4512         * doc/sdccman.lyx: fixed typo in --nostdinc
4513
4514 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4515
4516         * src/pic/pcode.c,
4517         * src/pic/device.c,
4518         * src/pic/ralloc.c,
4519         * src/pic/gen.c : added support to generate code for struct bit fields.
4520
4521 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4522
4523         * as/xa51/xa_version.h,
4524         * device/include/errno.h,
4525         * device/include/regc515c.h,
4526         * device/lib/_itoa.c,
4527         * device/lib/_ltoa.c,
4528         * device/lib/ser_ir_cts_rts.c,
4529         * sim/ucsim/xa.src/glob.cc,
4530         * sim/ucsim/xa.src/inst_gen.cc,
4531         * sim/ucsim/xa.src/xa_bit.cc,
4532         * sim/ucsim/xa.src/xa_sfr.cc,
4533         * sim/ucsim/z80.src/inst_dd.cc,
4534         * sim/ucsim/z80.src/inst_fdcb.cc,
4535         * support/scripts/keil2sdcc.pl,
4536         * src/pic16/pic16.dsp,
4537         * src/pic16/pic16a.dsp: corrected cvs line endings
4538         * device/lib/printf_large.c: fixed bug 1057979
4539         * src/pic16/gen.c: fixed non-C standard code
4540         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4541         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4542         * support/regression/ports/mcs51/support.c: reload T1 asap
4543         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4544           pdata use and clear idata startup behaviour
4545         * support/regression/tests/bug1057979.c: added
4546
4547 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4548
4549         * device/examples/ds390/ow390/ad26.h,
4550         * device/examples/ds390/ow390/cnt1d.h,
4551         * device/examples/ds390/ow390/crcutil.c,
4552         * device/examples/ds390/ow390/ownet.h,
4553         * device/examples/ds390/ow390/owsesu.c,
4554         * device/examples/ds390/ow390/swt12.h,
4555         * device/examples/ds390/ow390/swtoper.c,
4556         * device/examples/ds390/ow390/temp10.h,
4557         * device/examples/ds390/ow390/thermodl.c,
4558         * device/examples/ds390/tinitalk/tinitalk.dsp,
4559         * device/examples/ds390/tinitalk/tinitalk.dsw,
4560         * device/examples/mcs51/clock/hw.h,
4561         * device/examples/mcs51/simple2/go.bat,
4562         * device/examples/serialcomm/windows/serial.h,
4563         * device/examples/xa51/dummy.c,
4564         * device/examples/xa51/hello.c,
4565         * device/include/80c51xa.h,
4566         * device/include/at89x051.h: corrected cvs line endings
4567
4568 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4569
4570         * src/pic16/main.c (options): added command line --gstack, to trace
4571         stack over/under flows,
4572         * added pragma 'wparam' to allow passing first byte of function
4573         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4574         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4575         call to __gstack_test function and sets up the symbol as extern,
4576         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4577         * popaop): added call to pic16_testStackOverflow,
4578         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4579         wparamList list,
4580         * (genCall, genPcall): now all parameters are passed via stack
4581         except in functions that are pass to wparam pragma in which WREG is
4582         used too,
4583         * (genPcall): REENTRANT flag is checked to see if variable prototype
4584         contains reentrant keyword, don't call a non-reentrant function, via
4585         a reentrant function pointer or vice versa, functions are never
4586         passed via WREG,
4587         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4588         D.Winkler,
4589         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4590         SIGSEGV when accessing a NULL register stucture,
4591         * (pic16_printGPointerType): modified to handle UPPER modifier for
4592         function initializers, changed prototype of function to simpler one,
4593         * (pic16_printIvalFuncPtr): check to see if function is already
4594         added in externs list,
4595         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4596         optimized a move from W to SFR with a move to the same register
4597         later after a CALL,
4598         * device/lib/pic16/debug: NEW directory, contains debug features
4599         which are enabled when linking with libdebug.lib, currently command
4600         line option --gstack enables stack pointer tracing for over/under
4601         flow, corresponding sources are in debug/gstack
4602
4603 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4604
4605         * doc/sdccman.lyx: updated SDCC version,
4606         * (PIC16 port): update list of command line options,
4607         * src/pic16/device.h (structure pic16_options_t): added field gstack
4608         to enable stack overflow tracing on push/pops,
4609         * src/pic16/device.c (statistics structure): added statistics
4610         structure,
4611         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4612         pic16_dump_int_registers): increase statistics counters for each
4613         * variable which is encountered
4614         * (pic16_dump_usection): emit each .udata variable to its own udata
4615         section,
4616         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4617         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4618         parameters via stack, otherwise use old scheme,
4619         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4620         assembler output file,
4621         * src/pic16/main.c: added command line options --gstack to enable
4622         push/pop tracing for stack overflow,
4623         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4624         instructions): added size of each instruction,
4625         * (pic16_countInstruction): estimate size of instructions in
4626         the_pFile list, inline assembly blocks are not counted,
4627         * (pic16_FixRegisterBanking): trace previous register usage, when
4628         banksel optimizations is greater than 0, don't emit a redudant
4629         banksel directive,
4630
4631 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4632
4633         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4634         * src/pic16/ralloc.c : applied same fix for pic16.
4635         * src/pic/gen.c : tidied it up a little.
4636
4637 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4638
4639         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4640         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4641
4642 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4643
4644         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4645
4646 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4647
4648         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4649         non-reentrant function __modsint in the interrupt function (thus
4650         corrupting math operations during serial I/O)
4651         * device/lib/ser_ir.c: as above, changed buffersize
4652         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4653         256.c,d for zeroing
4654         * doc/Makefile: added option -t for rsync
4655
4656 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4657
4658         * src/SDCCast.h (struct ast),
4659         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4660
4661 2004-10-20 Borut Razem <borut.razem AT siol.net>
4662
4663         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4664         package
4665
4666 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4667
4668         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4669         makefile targets,
4670         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4671         support functions to replace long sequences of MOVFF's from access
4672         bank registers to stack and vice versa,
4673         * src/pic16/device.h: added new field opt_flags, where optimization
4674         flags can be set to enable certain features,
4675         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4676         * pBlock, (genFunction, genEndFunction): surroung loop for
4677         saving/loading used registers in stack with PC_INFO pCodes,
4678         INF_LREGS. Code in between can then be optimized by pCode optimizer
4679         to support function calls,
4680         * (genDataPointerSet): fixed bug which loaded float fields in
4681         structures with corrupt data,
4682         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4683         in a standard way debug info on stderr. Feature used for developing
4684         and debugging only,
4685         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4686         obsolete chunks of code,
4687         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4688         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4689         * pic16/src/pcode.c (pic16_newpCodeInfo,
4690         * (pic16_newpCodeOpLocalRegs),
4691         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4692         feature,
4693         * (pic16_pCodeConstString): printing of the initial value of a
4694         symbol as a comment is inhibited since parsing was already done by
4695         copyStr and output is corrupt,
4696         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4697
4698 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4699
4700         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4701
4702 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4703
4704         * as/mcs51/lkarea.c: removed old K&R style,
4705           (lnksect): changed check on boundary error,
4706           (lnksect2): changed check on boundary error,
4707           (lnksect2): extend XSTK to end of page if size = 1
4708         * as/mcs51/lkmain.c: removed old K&R style,
4709           (Areas51): create l_IRAM symbol
4710         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4711         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4712           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4713         * device/lib/_mullong.c: added version to be compiled with xstack
4714         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4715         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4716         * device/lib/mcs51/crtxstack.asm: fixed comment
4717         * src/SDCCglue.c: maxInterrupts defaults to 0,
4718           (emitMaps): added pdata,
4719           (createInterruptVect): (re)moved default,
4720           (glue): added pdata,
4721           (glue): moved __start__xstack to XSTK with default size 1
4722         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4723           and options.float_rent when options.stackAuto is set,
4724           (linkEdit): only write XDATA_NAME if provided on command line
4725         * src/SDCCmem.h,
4726         * src/SDCCmem.c: added pdata
4727         * src/port.h: added pdata_name to PORT
4728         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4729           (saveRegisters, unsaveRegisters): removed usage of B,
4730           (genMinus): fixed accumulator clash,
4731           (genJumpTab): added comment, this needs another look
4732         * src/mcs51/gen.c: added check for "B in use" paranoia,
4733           added pushB() and popB()
4734         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4735           chance
4736         * src/avr/main.c,
4737         * src/ds390/main.c,
4738         * src/hc08/main.c,
4739         * src/mcs51/main.c,
4740         * src/pic/main.c,
4741         * src/pic16/main.c,
4742         * src/xa51/main.c,
4743         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4744           added PSEG (PAG,XDATA) or NULL to port specifier
4745         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4746         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4747           (_mcs51_genInitStartup): removed __start__xstack equ,
4748           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4749         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4750         * src/z80/gen.c (_rleAppend): fixed warnings
4751         * support/regression/tests/zeropad.c: added pdata test
4752         * .version: bumped to 2.4.6
4753
4754 2004-10-17 Borut Razem <borut.razem AT siol.net>
4755
4756         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4757         as a part of nightly build
4758
4759 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4760
4761         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4762         WREG holds the first byte function parameters,
4763         * (aopForSym): take special case for symbols which are in FARSPACE
4764         but in CODESPACE too,
4765         * (assignResultValue): modified to take into account _G.useWreg,
4766         * (genCall): don't use wreg for parameter passing when function is
4767         declared as reentrant, too, added optimization INCF to stack
4768         pointer when stack parameter count is 1,
4769         * (genFunction, genEndFunction): refurnished and fixed to not using
4770         wreg for passing parameters when function has varargs or is
4771         reentrant, fixed bug with symbol name compare for generating
4772         functions in absolute address,
4773         * (pic16_storeForReturn): refurnished,
4774         * (genCmp): began writing a new version of the function, not ready
4775         yet, therefore it is disabled,
4776         * (genAssign): do not read code memory when assigning a function to
4777         a pointer function,
4778         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4779         array of characters, not pointer,
4780         * (pic16initialComments): in debug mode emit an .ident directive for
4781         the assembler,
4782         * (_process_pragma): emit a new warning type (internal to pic16)
4783         when setting stack to default length, emit a similar warning when
4784         placing a function at absolute address and address is not word aligned
4785         * (_pic16_parseOptions): added 'return TRUE' statement,
4786         * (_pic16_linkEdit): if compiling a source, then add the source's
4787         file object, first in the list of objects to link,
4788
4789 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4790
4791         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4792         * src/pic/main.c : removed VC warning.
4793         * src/pic/gen.c : changed comment.
4794
4795 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4796
4797         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4798         reference to a deprecated symbol _GPTRREG was causing failure to
4799         link. Thanks G. M. Gallant for the info.
4800
4801 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4802
4803         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4804         comments for Bugs item #954788.
4805
4806 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4807
4808         * src/pic16/device.c (pic16_dump_gsection,
4809         * pic16_groupRegistersInSection): handle symbols declared to be in
4810         access bank differently,
4811         * src/pic16/gen.c (struct _G): added field resDirect,
4812         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4813         send values read from stack directly to result and don't allocate
4814         temporary values,
4815         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4816         same registers,
4817         * (pic16_sameRegsOfs): NEW,
4818         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4819         free because they were not allocated from temporary pool,
4820         * pic16_popRegFromString): workaround to fix a problem with
4821         allocating variables twice or never,
4822         * (genGenPointerGet): using PRODL instead of FSR0H,
4823         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4824         instead of FSR0H,
4825         * (genAssign): take advantage of the _G.resDirect flag,
4826         * (genCast): around line 11844, use mov2f instead of directly
4827         MOVFF'ing between operands to account for literal values,
4828         * src/pic16/genutils.c: some new debug functions for gpsim have been
4829         added,
4830         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4831         float with integer part only,
4832         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4833         place variables in access bank
4834         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4835         updated sources to reflect recent changes in gen.c
4836
4837 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4838
4839         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4840         sources that searched for headers in installation path, now the
4841         device/include/pic16 is used,
4842         * src/pic16/glue.c (pic16glue),
4843         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4844         .line directives if not in debug mode, this suppresses assembler's
4845         warnings for ignored directives
4846
4847 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4848
4849         * src/port.h: made reset_regparms prototype void parameter explicit.
4850         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4851         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4852         * doc/sdccman.lyx: documented warning disabling and how to use
4853           printf_large to make it print floats.
4854         * device/include/stdbool.h: NEW
4855         * device/lib/_atof.c,
4856         * device/lib/_divuint.c,
4857         * device/lib/_divulong.c,
4858         * device/lib/expf.c,
4859         * device/lib/printf_large.c,
4860         * device/lib/sincosf.c,
4861         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4862         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4863           a completely reentrant lib.
4864
4865 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4866
4867         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4868         * device/include/pic16/stdio.h: fixed bug with colon
4869
4870 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4871
4872         * device/include/pic16/stdio.h,
4873         * device/include/pic16/stdlib.h,
4874         * device/include/pic16/math.h: NEW
4875         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4876         declared as _naked to reduce overhead
4877         * device/lib/Makefile.in (target port-specific-objects-pic16):
4878         changed * to *.* so to ignore the CVS directory,
4879         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4880         stacked variables back in stack,
4881         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4882         corruption
4883
4884 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4885
4886         * .version: bumped version number to 2.4.5
4887         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4888         * support/Util/SDCCerr.c (messages structure): added entry for
4889         W_POSSBUG2
4890
4891         Large cumulative patch for pic16 port and libraries.
4892         * device/include/pic16/sdcc-lib.h,
4893         * device/include/pic16/stdarg.h,
4894         * device/include/asm/pic16/features.h,
4895         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4896         * device/include/pic16/float.h: changes reentrant keyword with
4897         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4898         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4899         updated target build-libraries to include objects from gptr,
4900         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4901         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4902         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4903         all function headings,
4904         * src/SDCCmain.c: added global parameter userIncDirsSet,
4905         * (parseCmdLine): when option -I is encountered add directory to
4906         userIncDirsSet too,
4907         * src/version.awk: added space between control and long,
4908         * src/pic16/NOTES: added some notes for the port,
4909         * src/pic16/gen.c: added prototype for mov2fp function,
4910         * (fReturnpic16[]): properly named return value registers,
4911         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4912         * (aopForSym): added code to handle symbols with onStack flag set,
4913         symbols onStack are allocated PTRSIZE bytes,
4914         * (aopFreeAsmop): handles special case where asmops are stack objects,
4915         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4916         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4917         added argument lock to trace flaws in allocating temporary registers
4918         when developing port,
4919         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4920         * (pic16_popRegFromString): reenabled allocating a direct register
4921         from string,
4922         * (assignResultValue): various beautifications,
4923         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4924         referenced function argument,
4925         * (genIpush): reenabled to allow stacked arguments, handles only
4926         ic->parmPush iCodes,
4927         * (genCall, genPcall): major changes to allow for variable argument
4928         functions, fixed a bug with falsely restoring stack pointer after
4929         returning from call,
4930         * (genFunction): pending code for critical function,
4931         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4932         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4933         * (genNearPointerGet): fixed bug with indirect reading, was always
4934         reading from INDF0
4935         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4936         pointers,
4937         * (genAddrOf): rewrote code to take address of a stacked function parameter
4938         * (genCast): fixed casting to generic pointer type,
4939         * src/pic16/gen.h: added AOP_STA,
4940         * (struct asmop): added field stk,
4941         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4942         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4943         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4944         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4945         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4946         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4947         generic pointers,
4948         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4949         and library paths,
4950         * (pic16_port structure): generic pointer size is set to 3,
4951         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4952         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4953         compiler warning,
4954         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4955         operand is an iTemp,
4956
4957 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4958
4959         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4960         * debugger/mcs51/simi.c: addapt new syntax of s51
4961
4962 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4963
4964         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4965         * src/pic16/pcode.c: commented out some calls to free() in order to
4966         fix bug #989576,
4967
4968 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * src/SDCCicode.h,
4971         * src/SDCCicode.c (isiCodeInFunctionCall),
4972         * src/avr/ralloc.c (selectSpil),
4973         * src/pic/ralloc.c (selectSpil),
4974         * src/pic16/ralloc.c (selectSpil),
4975         * src/ds390/ralloc.c (selectSpil),
4976         * src/hc08/ralloc.c (selectSpil),
4977         * src/xa51/ralloc.c (selectSpil),
4978         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4979         stack in the middle of a function call sequence (fixes bug #1020268)
4980         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4981         costs associated with the minimum switch case.
4982
4983 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4984
4985         * src/SDCC.lex: fixed bug #1030549
4986
4987 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4988
4989         * src/SDCCcse.h (struct cseDef),
4990         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4991         over a function call if the CSE is derived from a symbol whose
4992         address has been taken (fixes bug #1029883)
4993         * support/regression/tests/bug-1029883: a new regression test for
4994         this bug
4995
4996 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4997
4998         * src/hc08/gen.c (emitinline): fixed bug #1029778
4999         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
5000         to a cast object is no longer a syntax error ("fixes" bug #1030006,
5001         and starts toward RFE #905167)
5002
5003 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
5004
5005         * src/pic16/gen.c (mov2f): New function to move an operand to
5006         another without considering if it is a literal or a register,
5007         * (pic16_sameRegs): don't check if they are both AOP_REG,
5008         * (AccRsh): removed andmask=0 lines,
5009         * (genLeftShift): duplicated to be improved in future versions,
5010         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
5011         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
5012         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
5013         * (pic16initMnemonics): added initialization for POC_INFSNZW,
5014         * (insertBankSwitch): fixed inserting banksel directives algorithm
5015         for instructions that follow a skip instruction, this fixes a report
5016         for broken subtraction code generation,
5017         * src/pic16/ralloc.c (deassignLRs): do not free register if current
5018         iCode is a left op, just in case result and right share the same
5019         registers
5020
5021 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5022
5023         * src/hc08/main.c,
5024         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5025         preservation of HX
5026         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5027         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5028         on 2004-09-12; it was buggy
5029
5030 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5031
5032         * src/SDCCsymt.h: removed RESULT_CHECK
5033         * src/SDCCast.c,
5034         * src/SDCCglue.c,
5035         * src/SDCCval.c,
5036         * src/pic/glue.c,
5037         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5038
5039 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5040
5041         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5042         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5043         configuration values no more rejected by compiler, they are assigned
5044         to configuration registers with a warning message instead,
5045         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5046         the for-loop so last conf register is emitted too,
5047         * (_pic16_initPaths): link library libsdcc.lib by default,
5048         * (_hasNativeMulFor): modified test for multiplication according to
5049         Raphael Neider's remarks. Integer multiplication is also done with
5050         support functions,
5051         * device/include/pic16/pic18fregs.h: corrected type error in while
5052         testing and including 18f6720 header file
5053
5054 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5055
5056         * src/pic16/device.h (pic16_options): removed field use_crt,
5057         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5058         until an optimization to handle single bits is added,
5059         * (pic16_loadFSR0): moved before genUnpackBits,
5060         * (genAnd): some white lines removed,
5061         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5062         leave_reset flags in pic16_options when using crt modules,
5063
5064 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5065
5066         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5067           for bugs 898889 & 979599. Also used some safer print instructions.
5068
5069 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5070
5071         * src/pic16/device.h (pic16_options_t): added field use_crt,
5072         crt_name, no_crt,
5073         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5074         catch a probable future bug,
5075         * src/pic16/gen.c: aopIdx function commented out,
5076         * (genAssign): commented out old code which used aopIdx,
5077         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5078         code, added if conditionals to take into account the --use-crt
5079         command line options,
5080         * src/pic16/main.c (pic16_optionsTable): added new command line
5081         options, --use-crt= and --no-crt,
5082         * (_pic16_linkEdit): now the proper crt object is added in the
5083         linker command line except than when --no-crt is specified,
5084         * src/pic16/pcode.c,
5085         * src/pic16/pcode.h: added some structures and functions for a new
5086         optimization scheme to compansate for instruction overhead between
5087         same iCodes, this scheme is currently under development and is not
5088         working in any way,
5089         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5090         to && operator,
5091         * device/lib/pic16/startup/crt0i.c,
5092         * device/lib/pic16/startup/crt0iz.c: added global char variable
5093         __uflags to force the generation of an idata section
5094
5095 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5096
5097         * doc/Makefile,
5098         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5099         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5100
5101 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5102
5103         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5104         Frieder) and clarified the default code optimization mode
5105
5106 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5107
5108         * src/SDCC.lex (doPragma, process_pragma),
5109         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5110         "opt_code_size", and "opt_code_balanced"
5111         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5112         regrouped options by category, added support for category headers
5113         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5114         and "--opt-code-size"
5115         * doc/sdccman.lyx: documented these new options and pragmas
5116         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5117         preference into account
5118
5119 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5120
5121         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5122           geniCodePreDec): Fixed bug 904237 by generating a warning
5123         * src/SDCCerr.h,
5124         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5125
5126 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5127
5128         * src/pic/device.c : When no max ram set validate full memory range.
5129         * src/pic/pcode.c,
5130         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5131
5132 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5133
5134         * device/lib/_gptrget.c,
5135         * device/lib/_gptrput.c: updated comment
5136         * device/lib/calloc.c,
5137         * device/lib/free.c,
5138         * device/lib/malloc.c,
5139         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5140         * src/SDCCcse.c (cseBBlock),
5141         * src/SDCCicode.c (printOperand, geniCodeArray),
5142         * src/SDCCicode.h (struct operand): fixed bug 868103
5143         * support/regression/tests/bug-868103.c: added
5144         * src/SDCCast.c (searchLitOp),
5145         * src/SDCCcse.h (struct cseDef),
5146         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5147         * src/SDCCicode.h (struct operand),
5148         * src/SDCCsymt.h (struct sym_link),
5149         * src/avr/gen.c (hasInc),
5150         * src/ds390/gen.c (hasInc),
5151         * src/hc08/gen.c (genPlusIncr, hasInc),
5152         * src/mcs51/gen.c (hasInc),
5153         * src/pic16/glue.c (pic16_printIvalChar),
5154         * src/pic16/ralloc.c (regWithIdx),
5155         * src/xa51/gen.c (hasInc) : removed warnings
5156         * src/SDCCast.c (createBlock): added comment ???
5157         * src/hc08/ralloc.c: updated comments
5158
5159 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5160
5161         * doc/sdccman.lyx: updated section on switch statements, added
5162         section about semaphore locking
5163         * doc/Makefile: added option -info for latex2html
5164         * device/lib/_gptrget.c,
5165         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5166
5167 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5168
5169         * src/pic/device.h,
5170         * src/pic/device.c,
5171         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5172          maxram is less than 0x100.
5173
5174 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5175
5176         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5177
5178 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5179
5180         * src/port.h,
5181         * src/mcs51/main.c,
5182         * src/ds390/main.c,
5183         * src/z80/main.c,
5184         * src/hc08/main.c,
5185         * src/pic/main.c,
5186         * src/pic16/main.c,
5187         * src/avr/main.c,
5188         * src/xa51/main.c
5189         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5190         a jump table is the best form for a switch statement, including
5191         automatic insertion of missing cases to make the case range
5192         continuous. Developed in collaboration with Frieder Ferlemann.
5193
5194 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5195
5196         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5197         accumulator result if it needs sign extension
5198
5199 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5200
5201         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5202
5203 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5204
5205         * device/lib/gbz80/printf.c,
5206         * device/lib/z80/printf.c: removed define for NULL
5207
5208 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5209
5210         * as/xa51/xa_link.c,
5211         * device/examples/ds390/ow390/ad26.c,
5212         * device/examples/ds390/ow390/cnt1d.c,
5213         * device/examples/ds390/ow390/counter.c,
5214         * device/examples/ds390/ow390/ds2480.h,
5215         * device/examples/ds390/ow390/ds2480ut.c,
5216         * device/examples/ds390/ow390/findtype.c,
5217         * device/examples/ds390/ow390/gethumd.c,
5218         * device/examples/ds390/ow390/owllu.c,
5219         * device/examples/ds390/ow390/ownetu.c,
5220         * device/examples/ds390/ow390/swt12.c,
5221         * device/examples/ds390/ow390/swtloop.c,
5222         * device/examples/ds390/ow390/temp.c,
5223         * device/examples/ds390/ow390/temp10.c,
5224         * device/examples/ds390/ow390/thermo21.c,
5225         * device/examples/ds390/ow390/tinilnk.c,
5226         * device/examples/ds390/ow390/tstfind.c,
5227         * device/examples/serialcomm/windows/serial.cpp,
5228         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5229         * device/include/reg51.h: fixed line endings for cvs
5230
5231 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5232
5233         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5234         packRegsForAccUse, packRegisters): new accumulator register
5235         packing algorithm
5236         * support/regression/ports/hc08/support.c (_putchar): suppress
5237         warning of unused variable
5238         * src/SDCCicode.c: added SWAP entry to codeTable
5239
5240 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5241
5242         * device/lib/sprintf.c: forgot to add this file before previous commit
5243
5244 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5245
5246         * src/pic16/gen.c (genPackBits): added operand right in function
5247         parameters, load result directly if p_type is POINTER (that is
5248         called by genNearPointerSet)
5249         * (genUnPackBits): added operand left in function parameters,
5250         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5251         FSR0 if accessing bitfields,
5252
5253 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5254
5255         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5256           _print_format; updated printf, sprintf, vsprintf
5257         * device/include/asm/default/features.h: corrected comment/define
5258         * device/lib/Makefile.in: added sprintf.c
5259         * device/lib/libsdcc.lib: added sprintf module
5260         * device/lib/printf_large.c,
5261         * device/lib/vprintf.c,
5262         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5263           into these 3 files
5264         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5265         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5266         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5267           hc08 test
5268         * support/regression/tests/zeropad.c: define idata as data for hc08
5269
5270 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5271
5272         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5273         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5274         labels are referenced at least once (even if a reference is not found)
5275         * src/hc08/gen.c (emitcode): set isComment flag for comments
5276         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5277         loads), rules 6a..6b (optimize jumps to return)
5278
5279 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5280
5281         * device/lib/acosf.c (acosf),
5282         * device/lib/asinf.c (asinf),
5283         * device/lib/atanf.c (atanf),
5284         * device/lib/ceilf.c (ceilf),
5285         * device/lib/cosf.c (cosf),
5286         * device/lib/coshf.c (coshf),
5287         * device/lib/cotf.c (cotf),
5288         * device/lib/fabsf.c (fabsf),
5289         * device/lib/floorf.c (floorf),
5290         * device/lib/log10f.c (log10f),
5291         * device/lib/logf.c (logf),
5292         * device/lib/sinf.c (sinf),
5293         * device/lib/sinhf.c (sinhf),
5294         * device/lib/sqrtf.c (sqrtf),
5295         * device/lib/tanf.c (tanf),
5296         * device/lib/tanhf.c (tanhf),
5297         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5298         replaced all instances of "reentrant" in the library functions
5299         defined in math.h with this macro.
5300         * support/regression/tests/float_trans.c: reenabled test for hc08
5301
5302 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5303
5304         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5305         erroneously deleted
5306
5307 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5308
5309         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5310         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5311         multi-byte volatile operands are used
5312         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5313         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5314         initialization to area GSINIT0 so that it would always precede
5315         any static initializers in GSINIT
5316         * support/regression/tests/zeropad.c: fixed idata define for hc08
5317         * support/regression/tests/bug-927659.c,
5318         * support/regression/tests/float_trans.c: disabled tests for hc08
5319         pending missing library routines
5320         * .version: increased version number to 2.4.4 - hc08 port now passes
5321         regression tests
5322
5323
5324 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5325
5326         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5327         * Makefile.common.in,
5328         * as/Makefile,
5329         * as/hc08/Makefile.in,
5330         * as/mcs51/Makefile.in,
5331         * as/z80/Makefile.in,
5332         * debugger/mcs51/Makefile.in,
5333         * device/include/Makefile.in,
5334         * device/lib/Makefile.in,
5335         * doc/Makefile,
5336         * link/Makefile,
5337         * link/z80/Makefile.in,
5338         * packihx/Makefile.in,
5339         * sim/ucsim/main_in.mk,
5340         * sim/ucsim/avr.src/Makefile.in,
5341         * sim/ucsim/doc/Makefile.in,
5342         * sim/ucsim/gui.src/serio.src/Makefile.in,
5343         * sim/ucsim/hc08.src/Makefile.in,
5344         * sim/ucsim/s51.src/Makefile.in,
5345         * sim/ucsim/xa.src/Makefile.in,
5346         * sim/ucsim/z80.src/Makefile.in,
5347         * src/Makefile.in,
5348         * support/cpp2/Makefile.in,
5349         * support/librarian/Makefile,
5350         * support/makebin/Makefile: added DESTDIR to the install path proposed
5351         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5352         * doc/sdccman.lyx: added DESTDIR documentation
5353
5354 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5355
5356         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5357         instruction for interrupt handlers, use fast returns when returning
5358         from high priority interrupts
5359
5360 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5361
5362         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5363         code generation
5364         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5365         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5366         bugs, ported much of Bernhard's code from mcs51
5367         * src/mcs51/gen.c (genSend),
5368         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5369         than one when calling a reentrant function
5370         * device/lib/_mullong.c: defined an alternate struct layout for big
5371         endian ports (hc08)
5372
5373 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5374
5375         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5376         test
5377
5378 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5379
5380         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5381         are sane and complete before asking the port its prefered parameter
5382         passing method (fixes bug #1017633)
5383         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5384         and _ret3
5385
5386 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5387
5388         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5389         problem in bitfields >= 8 bits.
5390
5391 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5392
5393         * src/SDCCsymt.c: undid changes that were not meant to be committed
5394
5395 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5396
5397         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5398
5399 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5400
5401         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5402           copied and wrong bit got inverted
5403
5404 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5407         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5408         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5409         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5410         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5411         assignments to bitfields at known addresses
5412         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5413         reads from bitfields at known addresses
5414         * src/hc08/ralloc.c (packRegisters),
5415         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5416         genhc08Code): optimize pointer get values used as conditionals
5417         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5418         and branch
5419
5420 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5421
5422         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5423         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5424         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5425         as conditionals
5426
5427 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5428
5429         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5430
5431 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5432
5433         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5434         related problems
5435
5436 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5437
5438         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5439
5440 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5441
5442         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5443         mcs51 port
5444
5445 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5446
5447         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5448
5449 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5450
5451         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5452         cases use more compact code.
5453
5454 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5455
5456         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5457
5458 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5459
5460         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5461
5462 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5463
5464         * src/SDCCsymt.h,
5465         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5466         parameter of changePointer() from symbol* to sym_link*
5467         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5468         * src/SDCCsymt.c (compareType): void* type is castable to other
5469         pointers, but not necesarily an exact match.
5470         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5471         is no longer blindly treated as an exact match.
5472         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5473
5474 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5475
5476         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5477
5478 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5479
5480         * src/pic/gen.c,
5481         * src/pic/pcode.c,
5482         * src/pic/ralloc.h,
5483         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5484
5485 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5486
5487         * src/pic/device.c,
5488         * src/pic/device.h,
5489         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5490
5491 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * src/mcs51/gen.c (emitcode): fixed bug #992819
5494
5495 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5496
5497         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5498           there's no need to make it worse
5499
5500 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5501
5502         * src/mcs51/ralloc.c (deassignLR),
5503         * src/ds390/ralloc.c (deassignLR),
5504         * src/hc08/ralloc.c (deassignLR),
5505         * src/z80/ralloc.c (deassignLR),
5506         * src/pic/ralloc.c (deassignLR),
5507         * src/pic16/ralloc.c (deassignLR),
5508         * src/avr/ralloc.c (deassignLR),
5509         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5510         rlivePoint): fixed another part of bug #971834
5511
5512 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5513
5514         * src/z80/main.c: enabled "critical" keyword
5515         * src/z80/mappings.i,
5516         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5517         functions (fixes bug #979646)
5518         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5519
5520 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5521
5522         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5523           such as c:\mydir.
5524
5525 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5526
5527         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5528           doesn't disable too much optimizations
5529
5530 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5531
5532         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5533
5534 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5535
5536         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5537
5538 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5539
5540         * src/pic/gen.c tidied up tabs
5541         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5542         * src/pic/main.c tidied up tabs
5543         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5544         * src/pic/pcoderegs.c tidied up tabs
5545         * src/pic/ralloc.c tidied up tabs
5546
5547 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5548
5549         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5550         to S_FIXED for pic16 port and when symbol is not in level 0,
5551         allocate for S_REGISTER storage class and pic16 port, too,
5552         * src/pic16/device.h: prototype for checkSym,
5553         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5554         * (pic16_assignConfigWordValue): test the value and the mask to
5555         validate that the value is suitable for the configuration word,
5556         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5557         collect extern declared symbols, don't emit symbol twice, check
5558         first if symbol is in publics set first,
5559         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5560         * added command line '--fstack' which enables an experimental
5561         feature for stack access, too buggy to be used yet...
5562         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5563         * (pic16_allocDirReg): when register has storage class S_REGISTER
5564         allocate in pic16_dynAccessRegs,
5565         * device/include/pic16/pic18f????.h: modified configuration word
5566         naming convention, words started as CONFIG0H but should be CONFIG1H
5567
5568 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5569
5570         * device/include/mcs51reg.h: fixed bug 970993
5571
5572 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5573
5574         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5575         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5576         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5577         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5578         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5579         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5580           error/warning numbers,
5581           added function setWarningDisabled()
5582         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5583         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5584           _memcmp.c _memmove.c calloc.c realloc.c free.c
5585         * support/regression/tests/malloc.c: added tests for new functionality
5586         * support/regression/tests/zeropad.c: added tests for truncated initializers
5587           and initialized char arrays starting with '\x0'
5588         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5589
5590 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5591
5592         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5593
5594 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5595
5596         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5597         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5598         peephole 177.e. Thanks to anonymous
5599
5600 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5601
5602         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5603         function isn't used in the source but referenced as a
5604         variable initializer then declare it as extern in .asm file
5605
5606 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5607
5608         * .version: increased version number to 2.4.3
5609
5610         Adding version extension according to ChangeLog CVS revision
5611         * src/Makefile.in (target all): added dependency 'version.h'
5612         * (rule version.h): added rule to create version.h from ChangeLog,
5613         * (rule dep): added dependency version.h,
5614         * src/version.awk: AWK script to create version.h
5615         * src/SDCCdwarf2.c (dwWriteModule),
5616         * src/SDCCglue.c (initialComments),
5617         * src/SDCCmain.c (printVersionInfo): modified to write after
5618         version string the version extension number,
5619         * src/SDCCutil.c: included "version.h"
5620         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5621         number,
5622         * src/SDCCutil.h: added prototype for getBuildNumber
5623
5624         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5625         includeDirsSet, too,
5626         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5627         const char [] is found in function prototype...
5628
5629         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5630         moving to WREG with source is already in WREG,
5631         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5632         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5633         * (aopForSym): stack'ed symbols are partially supported, added
5634         if-clause to support symbols in FARSPACE,
5635         * (sameRegs): added test for AOP_ACC to see if registers are same,
5636         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5637         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5638         * (pic16_popRegFromString): will not allocate a new register if it
5639         doesn't find one by name, bug may have introduced...
5640         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5641         * (genIpush): revived to use pic16 port's stack,
5642         * (genAddrOf): added incomplete case for stack'ed operand,
5643         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5644         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5645         can handle multibyte operands,
5646         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5647         * (pic16initialComments): added message for MPLAB compatibility
5648         mode enabled,
5649         * src/pic16/main.h: prototype for pic16_mplab_comp,
5650         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5651         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5652         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5653         because of increased complexity of procedure,
5654         * (_process_pragma): stack pragma changed to format 'stack pos len',
5655         emit symbol '_stack_end' to conform with gplink,
5656         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5657         to search for register,
5658         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5659         PO_GPR_REGISTER,
5660         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5661         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5662         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5663         case for PO_GPR_REGISTER,
5664         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5665         dies, the new era is ahead !...
5666         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5667         pic16_dynInternalRegs,
5668         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5669         * (pic16_allocDirReg): minor optimizations and bug fixes,
5670         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5671
5672         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5673         load stack and frame pointer with address of 'stack_end' symbol
5674
5675 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5676
5677         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5678         without source code but only variable initializers
5679
5680 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5681
5682         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5683         external are not declared as extern to reduce overhead while linking
5684
5685 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5686
5687         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5688
5689 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5690
5691         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5692           Yee Keat for the patch
5693         * src/SDCCast.c (decorateType): fixed bug #979599
5694         * src/ds390/gen.h: removed local fReturnSizeDS390
5695         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5696         * src/ds390/gen.c (genAnd, genOr, genXor),
5697         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5698
5699 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5700
5701         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5702         add relFilesSet to $3, manipulate $2 to handle linking of object
5703         files without source files in command line,
5704         * device/include/pic16 (all headers): added ID location macros,
5705         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5706         entries for ID location bytes,
5707         * (pic16_assignIdByteValue): NEW,
5708         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5709         added field dumpcalltree to pic16_options_t,
5710         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5711         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5712         emitting rFalseIfx label after check_carry label,
5713         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5714         pic16_emitDIRegs), NEW
5715         * (pic16glue): dump .calltree file when option --calltree found,
5716         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5717         * (_pic16_genAssemblerPreamble): emit ID locations after
5718         configuration registers,
5719         * (pic16_linkCmd): modifications of the link command,
5720         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5721         * (pic16_pCodeInitRegisters): don't init stack registers,
5722         * (pic16_findPrevInstruction): fixed bug,
5723         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5724         bug with immediate registers,
5725         * (buildCallTree): traces stack push and pop,
5726         * (pct2): dump also stack usage for each function,
5727         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5728         * (pic16_allocDirReg): various modifications,
5729         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5730         fixed to 1,
5731
5732 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5733
5734         * src/pic16/pcode.c: removed buggy double colon
5735
5736 2004-07-01 Borut Razem <borut.razem AT siol.net>
5737
5738         * support/scripts/sdcc.nsi: added include/pic16 to setup
5739
5740 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5741
5742         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5743         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5744         target 'clean',
5745         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5746         specific command line arguments. Also added sample lkr script
5747         for placing a variable at a specific memory bank.
5748         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5749         at a specific memory bank,
5750         * (pic16_dump_isection): fixed bug which caused string literals to
5751         be omitted when dumping idata section,
5752         * (pic16_groupRegistersInSection): added code to handle registers
5753         in specific memory banks,
5754         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5755         public, all references are renamed too,
5756         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5757         AOP_DPTR2,
5758         * (pic16_storeForReturn): added case to handle when dest is WREG,
5759         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5760         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5761         pic16_rel_udata, check to see if that register is marked as being
5762         a member of a specific memory bank,
5763         * (pic16_printIvalCharPtr): added code to add string literals either
5764         to code or the idata sections,
5765         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5766         also accept the 'udata' pragma,
5767         * src/pic16/main.h: new structure types sectName and sectSym
5768         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5769         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5770         * (pic16_findPrevInstruction): fixed, it returned nothing,
5771         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5772         instruction combinations,
5773         * (pic16_FixRegisterBanking): heavily reorganised,
5774         * (pic16_AnalyzeBanking): if generating banksel directives is
5775         disabled, then don't call FixRegisterBanking at all,
5776         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5777         completely removed,
5778         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5779
5780 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5781
5782         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5783         Phuah Yee Keat <yk.phuah AT nestac.com>
5784
5785 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5786
5787         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5788         correctly the IVT even if it is relocated to some other location
5789
5790 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5791
5792         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5793         * device/include/pic16/pic18f2220.h: NEW,
5794         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5795         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5796         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5797         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5798         nodefaultlibs, ivt_loc is the location of the interrupt vector
5799         table, and nodefaultlibs signs that default libraries should not be
5800         linked in link stage,
5801         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5802         according to --ivt-loc argument,
5803         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5804         when pragma stack is found,
5805
5806 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5807
5808         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5809         256 (range check), 257 (do while), 258.a-f (bit banging
5810         f.e. on 3-wire SPI bus)
5811
5812 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5813
5814         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5815         variables used exclusively within a loop
5816
5817 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5818
5819         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5820
5821 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5822
5823         * src/SDCClrange.c (computeClash): fixed bug #971834
5824
5825 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5826
5827         * src/mcs51/gen.c (genCmp): fixed bug #975903
5828         * src/hc08/gen.c (operandsEqu),
5829         * src/ds390/gen.c (operandsEqu),
5830         * src/z80/gen.c (operandsEqu),
5831         * src/pic/gen.c (operandsEqu),
5832         * src/pic16/gen.c (operandsEqu),
5833         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5834         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5835
5836 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5839
5840 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5841
5842         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5843         default case in switch statement,
5844         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5845         to eliminate problem with initialisation of pointers, but problem
5846         still exists,
5847         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5848         * (emitStaticSegment): removed various lines emitting debug info,
5849         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5850         added processor registers for utilizing EEPROM,
5851         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5852         configurable and set 8
5853
5854 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5855
5856         * .version: increased version number to 2.4.2,
5857
5858         Cumulative patch for pic16 port
5859         * src/pic16/device.c: changed scheme to dump initial values for
5860         variables in idata segment, all print_idata* functions were removed,
5861         now the pic16_printIval* will be called,
5862         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5863         * _pic16_printPointerType, pic16_printPointerType,
5864         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5865         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5866         NEW, similar to the respective functions in SDCCglue.c,
5867         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5868         way, emitting hex bytes,
5869         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5870
5871 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5872
5873         * src/avr/ralloc.c (serialRegAssign),
5874         * src/xa51/ralloc.c (serialRegAssign),
5875         * src/pic/ralloc.c (serialRegAssign),
5876         * src/pic16/ralloc.c (serialRegAssign),
5877         * src/hc08/ralloc.c (serialRegAssign),
5878         * src/z80/ralloc.c (serialRegAssign),
5879         * src/ds390/ralloc.c (serialRegAssign),
5880         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5881
5882 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5885         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5886
5887 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5888
5889         Cumulative patch for pic16 port:
5890         * src/pic16/device.h (typedef PIC16_device) modified fields for
5891         defining microcontrollers,
5892         * src/pic16/device.c: added new info for all devices in Pics16 array,
5893         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5894         to be optimised out by the pCode optimiser,
5895         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5896         specially, bug reported by G.M. Gallant,
5897         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5898         as force'd so that cannot be optimised out by pCode optimiser,
5899         * src/pic16/pcode.c,
5900         * src/pic16/pcodepeeph.c,
5901         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5902         they are disabled by default, but can be enabled explicit with
5903         command argument --denable-peeps, for testing,
5904         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5905         --pomit-ivt in COMPILE_FLAGS
5906
5907 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5908
5909         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5910           compilation on MSVC
5911
5912 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5913
5914         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5915
5916 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5917
5918         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5919         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5920
5921 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5922
5923         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5924         would only assign 0x300001 register.
5925
5926 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5927
5928         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5929         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5930
5931 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5932
5933         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5934         for ds80c400
5935         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5936         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5937         added peephole 254 (left shift), 255 (jump table)
5938
5939 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5940
5941         * device/lib/Makefile.in: removed comment line with model-pic16,
5942         * (target port-specific-objects-pic16): the libraries and objects
5943         are copied to the build directory form the device/lib/pic16/bin
5944         directory
5945
5946         Cumulative patch concerning pic16 port:
5947         * library directory has been re-organized,
5948         * added support for PIC18F1220,
5949         * added headers and library sources for chips 18f1220,18f6520,
5950         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5951
5952         * configuration registers setting has changed, now each supported
5953         device has a complete description of the registers it uses,
5954         * all initialisations are moved to idata sections, these section
5955         can be absolute or relocatable,
5956         * fixed initialisation of codespace variables,
5957         * fixed warning about PCLATU and gpsim,
5958         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5959         * (genAssign): use table reads when assigning from variables in codespace,
5960         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5961         char/int variables placed in codespace,
5962         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5963         registers set in .asm file, no need for --pomit-config-words anymore,
5964         * (pic16glue): some 8051 legacy segments are commented out
5965         (to be removed completely),
5966         * added support for alternative assembler and linker with --asm=
5967         and --link= command line arguments,
5968         * peepholes are disabled automatically in the port, no need to
5969         specify on command line,
5970         * port supports natively char/int/long multiplication, but converts
5971         all divisions to support functions,
5972         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5973         to the file set in variable $2,
5974         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5975         strings in ASCII format and not in hex,
5976         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5977         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5978         allocate proper register if iCodes aren't temporary,
5979
5980 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5981
5982         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5983
5984 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5985
5986         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5987         is commented out
5988
5989 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5990
5991         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5992         computed address is reused
5993         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5994         multi-byte bitfields
5995
5996 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5997
5998         * src/z80/gen.c: (genArrayInit): must check for pointers too
5999
6000 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
6001
6002         * support/regression/tests/zeropad.c: never meant to commit the
6003           nestedstruct test: removed, added check for GCC version
6004
6005 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
6006
6007         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
6008         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
6009         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
6010           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
6011           bugs 928906 and 954082 half-empty initializers
6012         * src/SDCCsymt.h,
6013         * src/SDCCsymt.c (getAllocSize): added for above fix
6014         * src/z80/gen.c (genArrayInit): fixed bug 741044
6015         * support/regression/tests/zeropad.c: added tests
6016
6017 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
6018
6019         * src/pic16/device.c (pic16_dump_section): corrected bug which
6020         caused some symbols of the libraries to be misplaced
6021
6022 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6023
6024         * src/pic16/glue.c,
6025         * src/pic16/ralloc.h,
6026         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6027         to fix conflict with pic port
6028
6029 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6030
6031         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6032         externs configuration variables,
6033         * src/pic16/ralloc.h,
6034         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6035         prototype in header, commented out some debug messages
6036
6037 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6038
6039         * src/pic16/glue.c,
6040         * src/pic16/main.c,
6041         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6042         for gpasm COFF object generation. Thanks to D. Hawkins for
6043         his patch info
6044
6045 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6046
6047         * src/ds390/main.c,
6048         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6049         Brock for spotting this)
6050         * src/ds390/gen.c (genEndFunction),
6051         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6052         interrupt handler and critical. Disable push/pop optimizations when
6053         peephole optimizations disabled.
6054
6055 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6056
6057         Updated pic16 library sources and headers.
6058         * device/lib/pic16/pic18f*/ ,
6059         * device/include/pic16/*.h: modified to handle structured SFR
6060         definitions
6061
6062 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6063
6064         * src/port.h (PORT structure): added hook initPaths, now each
6065         port can declare its own default search paths,
6066         which can been seen with the --print-search-dirs option,
6067         see pic16 port for example,
6068         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6069         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6070         * (doPrintSearchDirs): NEW, replaces in a central manner the
6071         printing of search dirs which was split in set*Paths functions,
6072         * (main): added call to port->initPaths and doPrintSearchDirs,
6073         * src/avr/main.c,
6074         * src/ds390/main.c,
6075         * src/hc08/main.c,
6076         * src/izt/i186.c,
6077         * src/izt/tlcs900h.c,
6078         * src/mcs51/main.c,
6079         * src/pic/main.c,
6080         * src/pic16/main.c: modified port structures to reflect addition of
6081         initPaths hook,
6082
6083         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6084         * (pic16_dump_section): for registers in same address reserve memory once,
6085         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6086         to no_banksel,
6087         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6088         result is greater in size than right or left,
6089         * (pic16_genUMult8X8_8): there are some cases where the result can
6090         be 16 bits size, so handle these,
6091         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6092         * (pic16_outBitC): modified to emit pcodes,
6093         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6094         or not,
6095         * (genDivOneByte): implemented algorithm to divide 8-bits,
6096         * (genCmp): uncommented goto, but issues still exist,
6097         * (genAnd): fixed a bug with variables >8bits,
6098         * (genPackBits): optimization added that uses BCF/BSF to change a
6099         single bit,
6100         * (genAssign): fixed bug when assigning floating point literals,
6101         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6102         __sdcc_gsinit_startup label,
6103         * src/pic16/main.c (_pic16_init): removed search directory
6104         initialisations,
6105         * (_pic16_initPaths): NEW, used to initialise search directories,
6106         * (_hasNativeMulFor): support functions for all except char/int
6107         multiplication, and char division,
6108         * (PIC16_port struct): modified entry for native mul support,
6109         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6110         no_banksel option,
6111         * (buildCallTree): call to register_usage is ifdef'ed out,
6112
6113 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * device/include/string.h: applied Stas Sergeev's patch to make this
6116         header file compatible with the preprocessor -Wundef option
6117         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6118         failure (fixes bug #941458)
6119
6120 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6121
6122         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6123         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6124         that the variable, not the function, should be static
6125         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6126         to be consistent with non-literal case
6127
6128 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCCast.c (isConformingBody): fixed bug #949967
6131         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6132         convilong): fixed bug #952086
6133
6134 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6135
6136         * src/SDCCmem.c (allocVariables): fixed bug #955321
6137
6138 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6139
6140         * src/hc08/main.c (_hc08_genAssemblerEnd),
6141         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6142         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6143         completely eliminated the use of a temporary file
6144         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6145         when more than one file linked
6146         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6147
6148 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6149
6150         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6151         which fixes bug #543481
6152         * support/regression/tests/bug-751703.c: fixed comments left from a
6153         cut and paste error
6154         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6155         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6156         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6157         scopes
6158         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6159         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6160         are now changed to underscores in moduleName
6161
6162 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6163
6164         * as/mcs51/lkmem.c: better fix for bug #954173
6165
6166 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6167         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6168
6169         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6170         * device/include/c8051f000.h,
6171         * device/include/c8051f120.h,
6172         * device/include/c8051f300.h,
6173         * device/include/c8051f310.h,
6174         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6175         PWM16) and detab'ed
6176
6177 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6178
6179         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6180         and mailing lists, doc'ed --no-peep-comments, removed reference
6181         to knoppix (newest version has no LyX/LaTeX), other minor changes
6182         * src/SDCCglue.c (glue): save 2 bytes stack space with
6183         option --main-return. The ljmp could probably be avoided too
6184
6185 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6186
6187         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6188
6189 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6190
6191         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6192         * src/SDCCopt.c (isLocalWithoutDef),
6193         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6194         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6195         (credit to Maarten Brock for patch #949363, on which this is based)
6196         * support/regression/tests/bug-751703.c: some test cases of extern used
6197         within inner scopes.
6198
6199 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6202         SPEC_STRUCT
6203         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6204         struct definitions
6205         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6206         dwWriteLabel): fix to create valid debugger symbols even when
6207         the module name has non-alphanumeric symbols in it
6208         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6209         when a variable's allocation has been optimized away
6210
6211
6212 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6213
6214         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6215         * src/hc08/main.c,
6216         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6217         * src/mcs51/main.c,
6218         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6219         * src/ds390/main.c,
6220         * src/z80/gen.c (z80_emitDebuggerSymbol),
6221         * src/z80/main.c,
6222         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6223         * src/pic/main.c,
6224         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6225         * src/pic16/main.c,
6226         * src/avr/gen.c (avr_emitDebuggerSymbol),
6227         * src/avr/main.c,
6228         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6229         * src/xa51/main.c,
6230         * src/SDCCdebug.c (emitDebuggerSymbol),
6231         * src/SDCCdebug.h,
6232         * src/port.h: added a debugger struct to the port struct. Added a
6233         callback for defining debugger symbols
6234
6235         * src/SDCCast.c (createLabel),
6236         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6237         with isitmp = 1
6238         * src/SDCCicode.h,
6239         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6240         iCode back to the ast for the function
6241
6242         * src/hc08/ralloc.c (hc08_assignRegisters),
6243         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6244         unneeded fields from the regs struct.
6245         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6246         pushReg() & pullReg() functions instead of emitcode()
6247
6248         * src/hc08/gen.c (genLabel, genhc08Code),
6249         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6250
6251         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6252         debugger hooks
6253
6254         * src/hc08/gen.c (genEndFunction, genhc08Code),
6255         * src/hc08/gen.h,
6256         * src/mcs51/gen.c (genEndFunction, gen51Code),
6257         * src/mcs51/gen.h,
6258         * src/ds390/gen.c (genEndFunction, gen390Code),
6259         * src/ds390/gen.h,
6260         * src/z80/gen.c (genEndFunction, genZ80Code),
6261         * src/z80/gen.h,
6262         * src/z80/z80.h,
6263         * src/pic/gen.c (genEndFunction, genpic14Code),
6264         * src/pic/gen.h,
6265         * src/pic16/gen.c (genEndFunction, genpic16Code),
6266         * src/pic16/gen.h,
6267         * src/avr/gen.c (genEndFunction, genAVRCode),
6268         * src/avr/gen.h,
6269         * src/xa51/gen.c (genEndFunction, genXA51Code),
6270         * src/xa51/gen.h,
6271         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6272         specific code to cdbFile.c and out of the backend code generators
6273
6274         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6275         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6276         starting address is now 0
6277
6278         * as/hc08/asm.h,
6279         * as/hc08/m08pst.c,
6280         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6281         assembler directive for DWARF support
6282         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6283
6284         * src/src.dsp,
6285         * src/Makefile.in,
6286         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6287
6288 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6291         and inappropriate peephole optimization in jump tables
6292
6293 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6294
6295         * as/hc08/m08pst.c,
6296         * src/SDCCglue.c: sdccopt works for the hc08 port now
6297
6298 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6299
6300         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6301
6302 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6303
6304         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6305
6306 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6309         rules
6310         * src/SDCCmain.c,
6311         * src/SDCCglobl.h,
6312         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6313         comments from the peephole optimizer replacement rules
6314         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6315         symbols
6316         * src/SDCCcse.c (updateSpillLocation),
6317         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6318         equivalents
6319         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6320         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6321         objects far pointers
6322
6323 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         * src/SDCCsymt.h: a missing part of my last change
6326         * src/pic/ralloc.c (regTypeNum),
6327         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6328
6329 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6330
6331         * src/SDCCicode.h,
6332         * src/SDCCicode.c (aggrToPtrDclType),
6333         * src/SDCCptropt.h,
6334         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6335         ptrPseudoSymConvert),
6336         * src/pic/ralloc.c (regTypeNum),
6337         * src/pic16/ralloc.c (regTypeNum),
6338         * src/hc08/ralloc.c (regTypeNum),
6339         * src/ds390/ralloc.c (regTypeNum),
6340         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6341         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6342
6343 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6344
6345         * link/z80/lkmain.c (afile),
6346         * as/hc08/lkmain.c (afile),
6347         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6348         prevent a pointer problem when a filename has no directory and
6349         no extension specified.
6350
6351 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6352
6353         * link/z80/lkmain.c (afile): allow periods in directory names
6354         * link/z80/lkmain.c (afile),
6355         * as/mcs51/lkmain.c (afile),
6356         * as/hc08/lkmain.c (afile): allow linker script file to have an
6357         extension other than ".lnk"
6358         * link/z80/lklex.c (getfid),
6359         * link/z80/lkmain.c (parse),
6360         * as/mcs51/lklex.c (getfid),
6361         * as/mcs51/lkmain.c (parse),
6362         * as/hc08/lklex.c (getfid),
6363         * as/hc08/lkmain.c (parse): Support comments in the linker script
6364         file on lines by themselves and after filenames
6365
6366 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6367
6368         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6369
6370 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6371
6372         * src/z80/peeph-z80.def: removed some peephole rules that don't
6373         work with multibyte arithmetic (fixed bug #937126)
6374         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6375         to registers and not global variables
6376         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6377         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6378         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6379         checking for assignments not internally generated (fixed bug #931895)
6380         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6381         structure member (fixed bug #930072)
6382
6383 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6384
6385         * src/SDCCmain.c (linkEdit),
6386         * src/hc08/main.c (_hc08_parseOptions),
6387         * as/hc08/Makefile.in,
6388         * as/hc08/aslink.h,
6389         * as/hc08/asm.h,
6390         * as/hc08/m08pst.c,
6391         * as/hc08/lkrloc.c (relr, rele),
6392         * as/hc08/lkarea.c (lnkarea)
6393         * as/hc08/lkmain.c (afile, parse),
6394         * as/hc08/lkelf.c: support for ELF output
6395         * as/hc08/lks19.c (s19),
6396         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6397
6398 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6399
6400         * as/mcs51/lkihx.c: Fixed bug #899105.
6401
6402 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6403
6404         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6405         .dsp files from Unix to DOS.
6406
6407 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6408
6409         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6410         function pointers; we have been compliant for several months now.
6411         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6412         change that was accidently commented out
6413         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6414         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6415         bug #922319
6416
6417 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * src/hc08/gen.c: output of all of the internal debugging information
6420         is now controlled by the D() macro; it is disabled by default
6421
6422 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6425         harder to keep the same registers during a CAST iCode
6426         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6427         long via int can be done in a single cast, if the signedness is
6428         correct.
6429         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6430         putchar() in tinibios.c in ds390's library
6431
6432 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6433
6434         * src/SDCCast.c (decorateType): fixed bug #898889,
6435         cast result of a literal complement too
6436         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6437         fixed check for bitfields
6438
6439 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6440
6441         * src/SDCCicode.c (geniCodeLogic): made it static,
6442         (geniCodeLogicAndOr): added in order to fix bug #905492,
6443         (ast2iCode): fixed bug #905492
6444         * support/regression/tests/bug-905492.c: added
6445         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6446         (processParms): fixed bug #927659: don't copy parms, this will clear
6447         decorated flag
6448         * support/regression/tests/bug-927659.c: added
6449
6450 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6451
6452         * src/SDCCast.c (addCast): don't cast float to char
6453         * device/lib/libsdcc.lib: added _memmove
6454
6455 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6456
6457         * device/lib/large/Makefile: fixed parallel execution by
6458         replacing `make` by `$(MAKE)`
6459
6460 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6461
6462         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6463         offsets (fixes bug #923936)
6464
6465 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6466
6467         * device/lib/small/Makefile: fixed parallel execution by
6468         replacing `make` by `$(MAKE)`
6469
6470 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6471
6472         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6473
6474 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6475
6476         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6477         * src/regression/Makefile: Regression test was not running.
6478
6479 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6480
6481         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6482         complement if possible
6483         * src/SDCCval.c (valComplement),
6484         * src/SDCCicode.c (operandOperation): fixed complement of literal
6485         * support/regression/tests/onebyte.c (testComplement): added
6486
6487 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6488
6489         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6490         return an optimized tree; actually replace actParm with the new tree
6491         * src/SDCCast.h: added some parantheses to remove side effects
6492         * support/regression/tests/bug-920866.c
6493
6494 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6495         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6496         Bit operands were not being handled properly in the pic14 port.
6497         (now src/regression/add.c passes again).
6498
6499 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6500
6501         * src/SDCC.y (labeled_statement): case and default no longer require
6502         a following statement (RFE #893037)
6503
6504 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6507         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6508         disabled (fixes bug #916294)
6509         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6510         "mov a,acc"; patch provided by Lenny Story
6511         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6512
6513 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6514
6515         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6516         functions
6517         * src/ds390/gen.c (genFunction, genEndFunction),
6518         * src/ds390/ralloc.c (ds390_assignRegisters),
6519         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6520         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6521         pushed if there are parameters passed on the stack. Also, a cleaner
6522         way to decide if r0/r1 should be pushed/popped. (Together they fix
6523         bug #918693)
6524
6525 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6526
6527         * doc/sdccman.lyx,
6528         * device/lib/mcs51/crtpagesfr.asm,
6529         * device/lib/mcs51/crtxinit.asm,
6530         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6531         to avoid confusion with Si Lab's SFRPAGE register.
6532
6533 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6534
6535         * src/SDCCglue.c (emitMaps): allow public sfr variables
6536         * src/SDCCglue.c (initialComments): include compiler build date
6537         with compiler version and put the timestamp of the generated
6538         assembly file on a serperate line to be less confusing.
6539         * src/port.h: added genInitStartup hook
6540         * src/avr/main.c,
6541         * src/ds390/main.c,
6542         * src/hc08/main.c,
6543         * src/pic/main.c,
6544         * src/pic16/main.c,
6545         * src/xa51/main.c,
6546         * src/z80/main.c: genInitStartup initialize as NULL (default to
6547         historical behaviour)
6548         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6549         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6550         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6551         library instead of hard coding it into the compiler.
6552         * support/regression/ports/mcs51-stack-auto/spec.mk,
6553         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6554         * device/lib/mcs51/Makefile,
6555         * device/lib/small/Makefile,
6556         * device/lib/large/Makefile,
6557         * device/lib/mcs51/crtpagesfr.asm,
6558         * device/lib/mcs51/crtstart.asm,
6559         * device/lib/mcs51/crtxclear.asm,
6560         * device/lib/mcs51/crtxinit.asm,
6561         * device/lib/mcs51/crtclear.asm,
6562         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6563         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6564         and into user configurable files.
6565         * device/lib/clean.mk: clean mcs51 directory too
6566         * support/regression/tests/longlit.c: added static to T1 declaration
6567         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6568         accesses in the initialization code
6569
6570 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6573         OSCTRIMVAL as noted in bug #916008
6574
6575 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6576
6577         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6578         in loops with multiple exits (reported as incorrect registers
6579         used by Martin Helmling in Sdcc-user list)
6580
6581 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6582
6583         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6584         made ds390 register extensions look less like error messages
6585
6586 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6587
6588         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6589         reported by Adam Wozniak in Sdcc-user list
6590
6591 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6592
6593         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6594         arithmetic optimizations, added debug output
6595
6596 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6597
6598         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6599         * sdcc.spec: updated and split sdcc into 3 rpms
6600         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6601         needed for literals of LEFT_OP and '+'
6602         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6603         introduced RESULT_TYPE_NOPROM
6604         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6605         left shift
6606         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6607         limited promotion to int only for '*'
6608         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6609
6610 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6611
6612         * src/pic16/gen.c (genSkip),
6613         (genc16bit2lit), (gencjneshort): commented out
6614         (is_LitOp): new helper function, checks operand type
6615         (genCmpEq): rewritten
6616
6617 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * support/regression/tests/bug-908454.c: added
6620
6621 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6622
6623         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6624         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6625         (geniCodeCast): cosmetic, don't preserve bit storage class
6626         (geniCodeLeftShift): added promotion
6627         (geniCodeLogic): fixed regression
6628         * src/SDCCsymt.c (computeTypeOr): accept bits too
6629         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6630
6631 2004-03-07  Borut Razem <borut.razem AT siol.net>
6632
6633         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6634
6635 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6636
6637         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6638         version of pic16_genPackRegisters which does not check if ic is a
6639         CAST operator,
6640         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6641         function cause string1.c regression test fails
6642
6643 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6644
6645         * sim/ucsim/configure.in,
6646         * sim/ucsim/configure,
6647         * sim/ucsim/doc/Makefile.in: use docdir
6648         * src/SDCC.y: fixed sbit atrributes
6649         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6650         * src/SDCCast.c (decorateType): |^& need special promotion handling
6651         * src/SDCCast.h,
6652         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6653         * src/SDCCsymt.h (computeType),
6654         * src/SDCCicode.c: computeType() needs op
6655         * src/SDCCsymt.c (checkTypeSanity),
6656         * doc/sddman.lyx: "plain" bitfields are unsigned
6657         * src/SDCCsymt.c (computeTypeOr): added
6658         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6659         |^& ops
6660         * src/SDCCval.c (val*): computeType() needs op
6661         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6662         * support/regression/tests/onebyte.c: added tests for |^&
6663
6664 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6665
6666         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6667         for writing icode into asm output.
6668
6669 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6670
6671         * src/pic16/device.c: added some debug lines enabled
6672         with macro DEBUG_CHECK,
6673         * src/pic16/genarith.c: more debug in genPlus,
6674         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6675         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6676         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6677         * (aopForSym): onStack symbols are re-placed in data memspace,
6678         and onStack flag is cleared,
6679         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6680         copy temporary pcodeop,
6681         * (genPcall): added warning for not updating PCLATU,
6682         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6683         always true for pic16 port,
6684         * (genMultOneWord): NEW, supports integer multiplication,
6685         * (genMult): modified to call genMultOneWord,
6686         * (ifxForOp): added warning when return NULL,
6687         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6688         flag is set before call to operandFromSymbol for implicit
6689         added structures,
6690         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6691         options.intlong_rent are set by default,
6692         * (_hasNativeMulFor): modified to allow port generation of integer
6693         multiplication,
6694         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6695         set regtype to REG_SFR for all registers, restricting seting the
6696         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6697
6698 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6699
6700         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6701         more than 500 times in the regression tests
6702
6703 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6704
6705         * support/Util/SDCCerr.h,
6706         * support/Util/SDCCerr.c,
6707         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6708         enumerator_list),
6709         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6710         for symbol conflicts.
6711         * support/valdiags/tests/enum.c,
6712         * support/valdiags/tests/tentdecl.c,
6713         * support/valdiags/tests/struct.c: expect possible error messages
6714         referring to original symbol definitions.
6715         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6716         * src/SDCCsymt.h,
6717         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6718
6719 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6720
6721         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6722
6723 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6724
6725         * src/pic16/ralloc.c (newReg): fixed bug #908929
6726
6727 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6728
6729         * src/ds390/gen.c: added missing #include "main.h"
6730
6731 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6732
6733         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6734         checking if symbol is already in set,
6735         * src/pic16/device.h: prototype for checkAddSym,
6736         * src/pic16/gen.c: (_G): added entry interruptvector,
6737         * (assignResultValue): removed some commented out lines,
6738         * (genFunction): check for ISR via sym->type, absolute section for
6739         interrupt code is created via a new pBlock, the goto instruction is
6740         placed now correctly at the interrupt vector position, changed all
6741         references from ivec to _G.interruptvector,
6742         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6743         is the interrupt is a high priority one, same for return from ISR,
6744         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6745         externs to calls of checkAddSym,
6746         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6747         pic16_pcode_verbose flag is set,
6748         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6749         * src/pic16/pcoderegs.c: message about how many registers are saved
6750         will only be emitted if pic16_pcode_verbose flag is set,
6751
6752 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6753
6754         * src/ds390/ralloc.h,
6755         * src/ds390/ralloc.c (ds390_regWithIdx),
6756         * src/ds390/gen.c (emitcode),
6757         * src/ds390/main.h,
6758         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6759         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6760         ds390operandCompare, getRegsRead, getRegsWritten,
6761         initializeAsmLineNode): customized instruction size calculation for
6762         ds390, started basis for some register optimizations
6763         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6764         corresponding assembly output
6765         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6766         missing push/pop of r0/r1. Optimized push/pops
6767
6768 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6769
6770         * src/mcs51/main.c (instructionSize): fixed ACALL size
6771         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6772
6773 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6774
6775         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6776         the sorting of rlist with NULL elements
6777         * (print_idataType, print_idata): NEW to create idata sections
6778         * src/pic16/device.h: idataSymSet new variable
6779         * src/pic16/gen.c (genFunction): fixed some bugs in string
6780         comparing, improved the absolute section creation for ISRs,
6781         added FSR0L/FSR0H in registers that are saved in an ISR,
6782         * (genInline): fixed the processing of inline snippets,
6783         now they undergo no process by the peephole optimizer
6784         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6785         are placed in idataSymSet,
6786         * (pic16emitStaticSeg): extern symbols are added in externs,
6787         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6788         switching when aboslute variables are placed in access bank memory
6789         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6790         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6791         commented out with #if,
6792         * (pic16_packRegisters): reintroduce the check for CAST because some
6793         symbols are not correctly handled,
6794         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6795         pCodeInstruction instead of pCode,
6796         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6797         pCodeAsmDir definition,
6798         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6799         directive, then the argument directive is emitted without the leading
6800         tab, hack for inline labels which must be in the first column,
6801         * (compareLabel,pic16_findNextInstruction),
6802         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6803         * (insertBankSwitch): modified for the new pCodeAsmDir,
6804
6805 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6806         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6807
6808         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6809         instance,
6810         * (pushSide): commented out with #if,
6811         * (assignResultValue): fixed some typos in saving
6812         registers,
6813         * (genPcall): FIXED and sync'ed with genCall,
6814         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6815         * (genNearPointerGet): fixed to handle some more cases,
6816         implementation scheme via table reads,
6817         * (genConstPointerGet): modified to access code memory correct,
6818         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6819         and improved to handle some cases
6820         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6821         instead of "RETLW" for init data
6822         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6823         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6824         variables are placed in access bank memory (<0x80 and >=0xf80),
6825         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6826         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6827         TBLWT_POSTDEC,TBLWT_PREINC
6828         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6829         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6830         directives
6831         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6832         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6833         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6834         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6835
6836 2004-02-29  Borut Razem <borut.razem AT siol.net>
6837
6838         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6839         support/Util/findme.h, support/Util/system.h: enhance binary relative
6840         search for lib and include by using findProgramPath()
6841
6842 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6843
6844         * src/SDCCpeeph.h,
6845         * src/SDCCpeeph.c (pcDistance),
6846         * src/port.h,
6847         * src/mcs51/ralloc.h,
6848         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6849         * src/mcs51/main.h,
6850         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6851         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6852         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6853         size calculation port specific, started basis for some register
6854         optimizations
6855         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6856         missing push/pop of r0/r1. Optimized push/pops
6857         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6858         * device/lib/_modsint.c (_modsint),
6859         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6860         and stack version so regression tests pass
6861
6862 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6863
6864         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6865         * src/SDCCast.c (decorateType): catch another small optimization
6866         with '?' operator
6867         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6868         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6869         modified to finally use computeType() all over SDCC,
6870         see Feature Request #877103
6871         * src/SDCCval.h: cosmetic
6872         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6873         valCompare(); regression tested in muldiv.c
6874         * support/regression/tests/muldiv.c (testMod): mod sign follows
6875         dividend only
6876
6877 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6878
6879         * src/SDCCast.c (decorateType): fixed bug #902362
6880         * doc/INSTALL.txt: fixed install instructions for win32
6881
6882 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6883
6884         * device/include/Makefile.in (install): fixed by replacing spaces
6885         by tabs
6886         * doc/README.txt,
6887         * doc/INSTALL.txt: updated for release
6888         * doc/sdccman.lyx: added warning for --xstack being buggy
6889
6890 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6891
6892         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6893         to eliminate build warnings.
6894         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6895
6896 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6897            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6898
6899         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6900         removed -penable-stack, added comment for stack pragma, added
6901         warning for not initializing the stack/frame registers, removed
6902         comment at interrupts section
6903
6904         Stack is made permanent, there is no ability to disable stack usage.
6905         * src/pic16/device.h,
6906         * src/pic16/device.c: removed all references to USE_STACK macro,
6907         * src/pic16/device.c (pic16_dump_section): when no elements in
6908         rlist, free rlist before return,
6909         * (pic16_dump_int_registers): NEW, internal registers are a new set
6910         of general purpose registers reused by each function,
6911         * (checkAddReg): returns 1 if registers is added to set,
6912         * (pic16_groupRegistersInSection): when a registers is of type
6913         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6914         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6915         SRCASECMP macro is moved here from device.c
6916         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6917         PO_PCLATU, PO_PRODL, PO_PRODH,
6918         * (pic16_pCodeOpType, genMinus,
6919         changed compares to "a" register, with AOP_ACC,
6920         * (pic16_genPlus): fixed some bugs and indented properly,
6921         * (pic16_addSign): changed size to size+offset in the MOVWF
6922         instruction,
6923         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6924         multiply 8-bit operand by literal, result is 8-bit,
6925         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6926         multiply 2 8-bit operand, result is 8-bit,
6927         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6928         genUMult8X*_16,
6929         * src/pic16/gen.c: changed accUse to contain WREG only,
6930         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6931         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6932         true, do not use immediate addressing any more unless sym is a
6933         pointer in codespace,
6934         * (aopForRemat): do not use immediate addressing when symbol not in
6935         codespace and when symbol's address is requested,
6936         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6937         accUse size (= 1),
6938         * (aopGet): added case for AOP_ACC and don't return "accumulator
6939         bug" but WREG instead,
6940         * (popGetTempReg): pushes contents of temporary register in stack,
6941         * (popReleaseTempReg): pops contents of temporary register from
6942         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6943         * (pic16_popGet): separated case AOP_ACC to return register WREG
6944         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6945         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6946         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6947         the use of immediate pointers to certain cases only.
6948
6949         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6950         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6951         * (assignResultValue, genCall, genRet): modified to use the new
6952         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6953         genPcall is still broken,
6954         * (genFunction): added code to create 'A' type pBlocks when
6955         interrupt functions are generated, code not extensively tested yet,
6956         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6957         * (genEndFunction): modified so ISRs pop stored registers from stack,
6958         * (genMultOneByte): cleanup,
6959         * (AccRsh): added flag andmask, to and result with appropriate mask,
6960         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6961         * (genDataPointerGet): fixed and reenabled its use,
6962         * (genNearDataPointerGet): bugs fixed,
6963         * (genDataPointerSet): bugs fixed,
6964         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6965         pic16_DumpSymbol, pic16_DumpOp,
6966         * src/pic16/genutils.h: function prototypes for the above functions,
6967         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6968         pointers,
6969         * (pic16emitRegularMap): many many many improvements, but needs a
6970         major cleanup,
6971         * src/pic16/main.c: enable_stack in pic16_options is removed,
6972         * (_pic16_parseOptions): removed command line options -penable-stack,
6973         * (_process_pragma): emit stack symbol only when stack pragma is
6974         processed,
6975         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6976         redirected to FSR0L/FSR0H pair,
6977         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6978         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6979         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6980         for immediates,
6981         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6982         * (dumpPicOptype): NEW,
6983         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6984         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6985         with movff instruction,
6986         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6987         added pic16_int_regs, some packRegsFor* functions are commented out,
6988         because produce errors,
6989         * src/pic16/NOTES: minor modifications
6990
6991 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6992
6993         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6994         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6995         --pack-iram.
6996         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6997         * as/mcs51/lkaomf51.c: fixed bug #895763
6998
6999 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
7000
7001         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
7002
7003 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7004
7005         * doc/sdccman.lyx: added details about the HC08 storage classes and
7006         interrupts, fixed the register usage info for z80 & gbz80
7007
7008 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
7009
7010         * doc/sdccman.lyx: added more pic16 port documentation
7011         * device/include/pic16/: added header pic18fregs.h
7012
7013 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
7014
7015         * doc/sdccman.lyx: added Vangelis' contribution
7016
7017 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7018
7019         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
7020         extend to the next CALL or PCALL, not just to the next CALL.
7021
7022 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
7023
7024         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7025
7026 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7027
7028         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7029         bug #895752 and a better fix for bug #716790
7030
7031 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7032
7033         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7034
7035 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7036
7037         * doc/sdccman.lyx: minor changes, minor changed
7038
7039 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7040
7041         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7042         which can't handle SDCC_NEWONEBYTEOPS,
7043         (geniCodeMultiply): removed conversion from mult to shift for pic14
7044         and pic16
7045
7046 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7047
7048         * src/hc08/gen.h,
7049         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7050         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7051         thus fixing bug #895406
7052
7053 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7054
7055         * device/lib/_modsint.c,
7056         * device/lib/_modslong.c: sign follows divisor only
7057         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7058         signs or signedness can be ignored
7059         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7060         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7061         added optimization for IFX,
7062         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7063         arguments;
7064         reenabled optimization for IFX, which was removed on 2004-01-11
7065         * src/SDCCast.h: added return type IFX
7066         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7067         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7068         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7069         SDCC_OLDONEBYTEOPS selects the old behaviour
7070         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7071         changed again and commented promotion rule
7072         * src/SDCCval.c (valDiv): promotion no longer necessary
7073         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7074         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7075         rewritten
7076         * support/regression/tests/onebyte.c: added
7077
7078 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7079
7080         * gen.c (genInline): reverted to old code for assemnling inline
7081         code because of bug reported James Chadd
7082
7083 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7084
7085         * ralloc.h: missing declarations from previous patch,
7086         seems that patch for ralloc.h was never applied, fixed
7087
7088 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7089            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7090
7091         * pcode.c,
7092         * pcode.h,
7093         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7094         indirect addressing. Marked FSR0 as deprecated
7095         * gen.c (pointerCode): commented out, not needed now
7096         (pic16_popGet2p): new MOVFF helper function
7097         (genGenPointerGet),
7098         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7099         (shiftRLong): removed duplicate debugging info
7100
7101 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7102
7103         * src/ds390/gen.c (genNearPointerGet),
7104         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7105         optimization with bits, but not bitfields.
7106         * src/ds390/ralloc.c (packRegisters),
7107         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7108
7109 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7110
7111         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7112
7113 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7114
7115         * src/SDCCsymt.h,
7116         * src/SDCCicode.c (operandFromSymbol),
7117         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7118         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7119         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7120         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7121         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7122         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7123         bug #892038
7124         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7125         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7126         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7127         * src/SDCCsymt.c (newSymbol),
7128         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7129         enumerator_list),
7130         * src/SDCCval.h,
7131         * src/SDCCval.c (newiList): fixed bug #885705
7132
7133 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7134
7135         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7136         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7137
7138 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7139
7140         * device/include/c8051f120.h,
7141         * device/include/c8051f300.h,
7142         * device/include/c8051f310.h: added/updated header files for Silicon
7143         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7144         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7145         in new section Submitting patches
7146
7147 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7148
7149         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7150         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7151         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7152         genGenPointerSet),
7153         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7154         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7155         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7156         genGenPointerSet),
7157         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7158         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7159         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7160         genGenPointerSet),
7161         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7162         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7163         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7164         genGenPointerSet): fixed bug #892400
7165         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7166         to eliminate build warnings.
7167         * src/SDCCast.c (processParms),
7168         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7169         fixed bug 751859
7170         * support/valdiag/valdiag.py: added GCC to the list of defines active
7171         when compiling with gcc
7172
7173 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7174
7175         * support/Util/SDCCerr.h,
7176         * support/Util/SDCCerr.c,
7177         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7178         with an incomplete type (fixed bug #883734)
7179         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7180
7181 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7182
7183         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7184
7185 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7186
7187         * src/SDCCast.c (decorateType),
7188         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7189         function pointer implementation
7190         * support/regression/tests/funptrs.c: added tests to verify both forms
7191         of function pointers work correctly. Added tests to verify parameters
7192         are passed in the correct order.
7193
7194 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7195
7196         * device.c (regCompare): registers are sorted by ascending
7197         address and increasing size,
7198         * main.c (_pic16_finaliseOptions): removed the declaration
7199         of compiler macro MCU. Now a macro of the format pic18fxxxx
7200         will be defined from the command line
7201
7202 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7203             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7204
7205         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7206         PCOP_RLCF was overwritten!
7207         * gen.c (genSkip): commented out calls to pic16_emitcode,
7208         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7209         * (genlshTwo),
7210         * (genRRC): added debugging info,
7211         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7212         overwritten while shifting,
7213         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7214         overwritten while shifting,
7215         * (AccLsh),
7216         * (AccRsh),
7217         * (shiftLLeftOrResult),
7218         * (shiftRLeftOrResult),
7219         * (shiftRLong),
7220         * (shiftLLong): Implemented with pic16_emitpcode
7221         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7222         * (genLeftShift): Fixed bug, operand for shift by variable always
7223         was "and"ed with 0x0f,
7224         * (genLeftShiftLiteral),
7225         * (genrshTwo),
7226         * (genRightShiftLiteral): added debugging info,
7227         * (genrshFour): added comment,
7228         * (genRightShift): determined signedness from operand "left"
7229         instead of "result"
7230
7231 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7232
7233         * src/SDCCicode.c (geniCodeParms),
7234         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7235         function pointers, fixed function pointer bugs #861242 and #861896
7236
7237 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7238
7239         * device/include/c8051f000.h,
7240         * device/include/c8051f120.h,
7241         * device/include/c8051f300.h: added header files for Silicon
7242         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7243
7244 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7245
7246         * src/SDCCast.c (processParams): added new type flow and restructured
7247         (gatherAutoInit): added new type flow
7248         (addCast): cosmetic changes
7249         (getLeftResultType): added new type flow for array indices, patch
7250         provided by Stas, see FR #877103
7251         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7252         array index patch by Stas
7253         * src/SDCCast.h: added prototype getResultTypeFromType()
7254         * src/SDCCval.h,
7255         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7256         * src/pic/glue.c (pic14emitStaticSeg),
7257         * src/pic16/glue.c (pic16emitStaticSeg),
7258         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7259         for initialization of symbols
7260         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7261         * support/Util/SDCCerr.h:
7262         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7263         * .version: bumped version number to 2.3.8
7264         * device/include/Makefile.in (install),
7265         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7266         avoid warnings
7267
7268 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7269
7270         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7271         Slade Rich fixed an optimization bug
7272         * src/pic/pcodepeep.c,
7273         * src/pic/pcoderegs.c
7274         * doc/Makefile (install): added test for directory
7275
7276 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7277
7278         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7279         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7280         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7281         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7282         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7283         * as/mcs51/asexpr.c (term),
7284         * as/hc08/asexpr.c (term): fixed bug #887146
7285
7286 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7287
7288         * src/z80/gen.c (genMult): handle single byte result product
7289         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7290         DUMMY_READ_VOLATILE (fixed bug #886367)
7291
7292 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7293
7294         * support/regression/tests/libmullong.c: fixed logic, on little endian
7295         hosts we ended without a mullong_wrapper()
7296
7297 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7298
7299         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7300         virus/worm forged address usage.
7301
7302 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7303
7304         Fixed promotion, it should be done on AST level:
7305         * src/SDCCast.c (addCast): added promotion to int
7306         (decorateType): updated call to upCast()
7307         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7308         usualUnaryConversions()
7309
7310 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7311
7312         * support/regression/tests/literalop.c (mulWrapper): Added a
7313         wrapper to remove integer overflow warnings.
7314
7315         * support/regression/tests/float_trans.c: Made work on host.
7316
7317         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7318         location of sz80.
7319
7320         * support/regression/generate-cases.py (main): Changed from inline
7321         to a main method.
7322
7323         * doc/Makefile (install): Changed to depth first to get rid of
7324         missing directory install warning.
7325
7326         * as/Makefile (install-doc): Made work on Mac.
7327
7328 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7329
7330         * src/SDCCast.c: added an additional type flow in decorateType() of
7331         opposite direction, see feature request #860006; it's enabled at runtime
7332         by setting the environment variable SDCC_NEWTYPEFLOW
7333         * src/SDCCast.h: changed prototype of decorateType()
7334         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7335         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7336         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7337         see feature request #877103
7338         * src/SDCCval.c: updated call of decorateType()
7339         (valBitwise): fixed bug #882876
7340         (valMinus): added promotion
7341         (valLogicAndOr): result is unsigned
7342         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7343         * src/SDCCsymt.c (computeType),
7344         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7345         must not cause an unsigned operation
7346         * src/pic/glue (pic14emitRegularMap),
7347         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7348
7349 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7350
7351         * src/pic/pcode.c (PCodeID): commented out left over debug code
7352
7353 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7354
7355         * support/valdiag/tests/overflow.c: added shift tests
7356         * src/pic/device.c,
7357         * src/pic/gen.c,
7358         * src/pic/gen.h,
7359         * src/pic/glue.c,
7360         * src/pic/main.c,
7361         * src/pic/pcode.c,
7362         * src/pic/pcode.h,
7363         * src/pic/pcodepeep.c,
7364         * src/pic/pcoderegs.c,
7365         * src/pic/ralloc.c,
7366         * src/pic/ralloc.h: applied patch from Slade Rich;
7367         added support for multiple code pages and multiple RAM banks on the
7368         PIC 14 port. The ASM files now no longer simply assume all the
7369         code / RAM are in the same page / bank. This means the linker can
7370         safely allocate code/RAM of separate ASM files to different pages/banks.
7371         * doc/sdccman.lyx: added Slade's tips
7372         * src/mcs51/peeph.def: fixed bug #880768
7373
7374 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7375
7376         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7377         * src/SDCCast.c (decorateType): fixed bug #880197
7378
7379 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7380
7381         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7382         getopt.h.
7383
7384         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7385         strtof is not part of C89 and isn't included with Mac OS X.
7386
7387 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7388
7389         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7390         shiftL2Left2Result): fixed bug #879326
7391         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7392         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7393         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7394         address fetch for clr instruction
7395         * device/lib/hc08/_mulint.c: created optimized assembly version
7396         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7397
7398 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7399
7400         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7401         proposed in FR #877103
7402
7403 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         * src/SDCCval.c (cheapestVal): added missing checks
7406         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7407         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7408
7409 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7410
7411         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7412         equal operands
7413
7414 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7415
7416         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7417         loaded with the linker search paths (-L arguments) and the libraries
7418         to be linked with the current source (-l arguments). Changes
7419         currently will affect only the pic16 port.
7420         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7421         include path the port specific paths and port specific libraries,
7422         * gplink command now contains the $3 argument,
7423         * src/pic16/device.h,
7424         * src/pic16/device.c,: structure PIC_device is made public and
7425         renamed to PIC16_device, the same for variable Pics which is renamed
7426         to Pics16. Updated all references to them.
7427         * src/pic16/glue.c (pic16glue): corrected bug with code
7428         initialization which bypassed the variable initializations block.
7429
7430         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7431         COMPILE_FLAGS and added the --nostdinc option
7432
7433 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7434
7435         * device/include/mc68hc908jb8.h: Register defs for another member
7436         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7437
7438 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7439
7440         Documenting changes from previous commits.
7441         * configure.in (version 1.56),
7442         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7443         when generating output files to configure the pic16 library,
7444         but now I've commented it out, since gputils aren't installed in the
7445         SF compile farm, so library won't compile
7446
7447         * device/lib/Makefile.in (version 1.56): initially I've added in
7448         target 'all' the prerequestive 'model-pic16' so it compiled the
7449         pic16 library, but now I've commented it out for the same reasons
7450         above,
7451         * added targets 'model-pic16' and 'objects-pic16' to compile the
7452         library
7453         * added target 'port-specific-objects-pic16' to handle the
7454         generated libraries and copy them into the build/ directory
7455         * added target 'clean-intermediate-pic16' to clean intermediate
7456         files into pic16 directory
7457         * in target 'installdirs' added line to create directory pic16 in
7458         the installation path
7459
7460         * device/include/Makefile.in (version 1.11): in target 'install'
7461         added lines to copy all header files to installation path,
7462         * in target 'installdirs' added line create directory for pic16
7463         headers in the installation path
7464
7465 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7466
7467         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7468          a function call
7469
7470 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7471
7472         * configure,
7473         * device/lib/configure.in,
7474         * device/lib/configure: fixed for autoconf 2.57
7475
7476 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7477
7478         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7479         option so that it actually works. Made it specific to the z80, since
7480         the gbz80 doesn't have these kinds of I/O ports.
7481
7482 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7483
7484         * device/include/z180.h,
7485         * device/lib/_memcpy.c,
7486         * device/lib/_memmove.c,
7487         * device/lib/_mulint.c,
7488         * device/lib/ser_ir.c,
7489         * device/lib/ser_ir_cts_rts.c,
7490         * device/lib/_strcmp.c,
7491         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7492         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7493         portmode; added deprecation warning for bank= and protmode= forms.
7494         Also, guard against buffer overflow.
7495         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7496
7497 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7498
7499         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7500         changed interrupt vector table generation to only emit declared vectors.
7501         * device/include/Makefile.in: added missing backslash
7502         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7503
7504 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7505
7506         Mainly changes to support compilation of the device libraries
7507         * src/pic16/device.c: stack is allocated via symbol and not
7508         via literal number. The symbol is placed in the corresponding
7509         position of the data ram
7510         * (pic16_dump_section): relocatable and absolute uninitialized
7511         data are now emitted in sorted order to reduce section naming,
7512         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7513         weren't marked as being in the access bank,
7514
7515 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7516
7517         Added portion of GNU PIC Library under the directory
7518         device/include/pic16 and device/lib/pic16. These files
7519         contain the declarations of SFRs for the PIC18Fxx2 devices.
7520         The directory is initialized via configure from toplevel.
7521
7522 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7523
7524         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7525         the spilllocations to be compared correctly
7526
7527 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7528
7529         * src/SDCCast.c (decorateType): fixed bug introduced today
7530
7531 2004-01-12  Borut Razem <borut.razem AT siol.net>
7532
7533         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7534         doc/sdccman.lyx: upper case pragmas are deprecated
7535
7536 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7537
7538         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7539         in simpler and even better code
7540
7541 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7542
7543         * src/SDCCicode.c (operandOperation): fixed bug #874819
7544         * src/SDCCast.c (decorateType): fixed
7545         char foo (unsigned long ul) { return ul > 0; }
7546
7547 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7548
7549         * doc/sdccman.lyx: Moved and added some sections, small changes
7550         all over. Telling LaTeX to be less strict with word spacing
7551         to better keep the right margin. Changed some notes about
7552         maintainance of the ports in section 3.2.1 - is it OK like this?
7553
7554 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7555
7556         SDCC source changes:
7557         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7558         convilong): modified to inform the pic16 port that builtin functions
7559         are external
7560
7561         PIC16 PORT specific changes:
7562         * src/pic16/device.c pic16_dump_equates() added,
7563         processor registers declared internally by the port are emitted in
7564         the translation as equates,
7565         * src/pic16/gen.c: inline code is passed unprocessed to the
7566         translation,
7567         * (pic16_popGetLit2): fnuction modified to take second operand as
7568         pCodeOp pointer and not as literal,
7569         * (popRegFromIdx): prefixed with pic16_,
7570         * (pic16_popCombine2): modified to receive already allocated pCode
7571         operands,
7572         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7573         * (genFunction): initializes local stack frame and pushes on stack
7574         all the registers used by this function,
7575         * (genEndFunction): restores all registers from stack and restores
7576         stack frame,
7577         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7578         improvements,
7579         * (pic16glue): changed the program startup sequence,
7580         * added new dbName code 'A' for functions placed in absolute section
7581         * src/pic16/main.c: added function attribute _naked,
7582         * added pragma 'code' to place a fnuction at an absolute address,
7583         * added command line arguments --debug-ralloc and --pcode-verbose,
7584         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7585         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7586         * (pic16_newpCodeOpLit2): modified to take the second operand as
7587         pCodeOp pointer,
7588         * (pic16_printpBlock): modified to emit each function in a separate
7589         section,
7590         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7591         UPPER for immediate operands,
7592         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7593         instruction,
7594         * src/pic16/peeph.def: all peepholes with movff are commented out,
7595         because there is a problem in the pcode peep optimizer,
7596         * src/pic16/ralloc.c: the register allocator can now reuse local
7597         function symbols for another function. This saves register usage.
7598         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7599
7600         Added file src/pic16/NOTES with information about program writing on
7601         the current port version.
7602
7603 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7604
7605         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7606         and peephole 252 (array access)
7607
7608 2004-01-09  Borut Razem <borut.razem AT siol.net>
7609
7610         * src/SDCCmain.c : fixed #872250: -l command line defined library
7611           files are scanned before standard library files
7612
7613 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7614
7615         * src/SDCCast.c (decorateType): fixed bug #874046
7616
7617 2004-01-09  Borut Razem <borut.razem AT siol.net>
7618
7619         * support/scripts/sdcc.nsi: remove previous installation
7620
7621 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7622
7623         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7624         bytes for last interrupt vector (mcs51)
7625         * sdcc.spec: fixed typo
7626
7627 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7628
7629         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7630         gen51Code): more efficient parameter receive for --model-large
7631         ("bug" #845294)
7632
7633 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7634
7635         * src/ds390/main.c,
7636         * src/z80/main.c: added missed needLinkerScript flags (more than
7637         one port structure defined in these file)
7638         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7639         bug #795325
7640
7641 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7642
7643         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7644         * src/port.h: added flag needLinkerScript in port->linker
7645         structure to inform whether to create a .lnk file or not,
7646         * src/avr/main.c,
7647         * src/ds390/main.c,
7648         * src/hc08/main.c,
7649         * src/mcs51/main.c,
7650         * src/pic/main.c,
7651         * src/pic16/main.c,
7652         * src/xa51/main.c,
7653         * src/z80/main.c: changed appropriately to configure
7654         needLinkerScript flag
7655         * src/pic/gen.c,
7656         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7657         * src/pic/glue.c: added variable udata_section_name to
7658         override default uninitialized data segment definition for
7659         devices only with SHAREBANK memory (reported from Erik Epetrich)
7660         * (pic14emitOverlay): modified to emit a commented overlay segment
7661         directive when no overlay data exist
7662         * (picglue): modified to emit uninitialized data segment
7663         according to udata_section_name
7664         * src/pic/main.c (_pic14_parseOptions): added command line
7665         options --udata-section-name=[name] to override default
7666         udata definition name
7667         * modified _linkCmd and _asmCmd to include compiler passed
7668         arguments via -W option
7669         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7670         object file from '.rel' to '.o' in port->linker structure,
7671         changed size of fptr from 2 to 3 in port structure
7672
7673 2004-01-07  Borut Razem <borut.razem AT siol.net>
7674
7675         * support/scripts/sdcc.nsi: update PATH
7676         * support/scripts/sdcc.ico: craeted
7677
7678 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7679
7680         * device/include/Makefile.in: fix install
7681         * doc/Makefile: fix install
7682
7683 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7684
7685         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7686         in bug #860505
7687         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7688         how the function variable allocation summary is displayed; also
7689         include information about variables allocated to the overlay
7690         segment
7691
7692 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7693
7694         * as/mcs51/lkmain.c: Help about -Y option
7695         * as/mcs51/lkarea.c: Fixed gcc warnings
7696
7697 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7698
7699         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7700         fixed warning
7701         * support/valdiag/tests/overflow.c: added
7702         * src/SDCCast.c (decorateType),
7703         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7704         LEFT_OP (left shift)
7705
7706 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7707
7708         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7709         (default behaviour).
7710
7711 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7712
7713         A python script to validate compiler diagnostic messages. It can be
7714         used to verify that sdcc complains about bad c source code and
7715         gives a good location of the error.
7716         * support/valdiag/Makefile,
7717         * support/valdiag/valdiag.py,
7718         * support/valdiag/tests/*
7719
7720 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7721
7722         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7723         * src/SDCCsymt.c (newEnumType),
7724         * src/SDCCsymt.h
7725         * support/Util/SDCCerr.c,
7726         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7727         enum related bugs.
7728         * support/regression/tests/enum.c: added test for enum values that
7729         require at least 2 bytes of storage.
7730
7731 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7732
7733         * src/common.h: added ifndef/define/endif macros
7734         around the header file.
7735         Bug reported from Jesus Calvino-Fraga
7736
7737 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7738
7739         * sdcc.spec: updated
7740         * device/include/Makefile.in: don't install CVS directories
7741         * device/lib/Makefile.in: added removal of CVS directories after install
7742         * doc/Makefile: fixed install, added local_icons
7743         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7744         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7745         * src/ds390/gen.c (genRightShift): fixed bug #870788
7746         * src/SDCCast.c (decorateType): fixed bug #870781
7747
7748 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7749
7750         PIC16 port related changes:
7751         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7752         added variable stackPos,
7753
7754         * gen.c: genCall, assignResultValue: added support for
7755         pushing/retrieving function parameters to/from stack,
7756         genFunction,genEndFunction: setup stack frame for the
7757         generated function,
7758         genAddrOf: will be changed according to bug 863624
7759
7760         * added files genutils.c and genutils.h which contain gen*
7761         debugged and optimised functions extracted from gen.c
7762
7763         * glue.c: added variable 'externs' which holds extern symbols,
7764         pic16emitRegularMap: is modified to properly handle relocatable
7765          symbols under the new scheme,
7766         pic16createInterruptVect: is modified
7767         pic16printPublics: is modified to emit 'global' assembler directives,
7768         added pic16_printExterns to print extern symbols,
7769         pic16glue: initializes stack/frame pointer in the beginning of
7770         the assembly output. Temporary hack, will be corrected later,
7771         because gplink yet does not support stack and SDCC does not
7772         yet support a type of crt0.o object to create the final binary.
7773
7774         * Removed many lines that contain 8051 legacy code.
7775         * The code is finally placed under a 'code' directive.
7776         * Added port specific options.
7777
7778         * _process_pragma: simplified since now we do not need *special*
7779         include file to define SFR registers. But a separate header
7780         will be needed. This will be developed later.
7781         * _pic16_parseOptions: added, parses port specific options:
7782         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7783         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7784         --preplace-udata-with=
7785
7786         * _pic16_setDefaultOptions: modified to initialize section names,
7787         but hack is temporarly out of order since it needs improvement.
7788         * _pic16_genAssemblerPreamble: configuration words are emitted by
7789         their address instead of their name. This part is incomplete and
7790         supports only the 18Fxx2 devices. Other devices will emit an error
7791         during assembly since they do not contain the same set of config
7792         registers
7793         * _pic16_genIVT: is modified,
7794
7795         * pcode.c: added definitions for some hardware registers that are needed
7796         for stack support
7797         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7798         All PCI entries are updated. Now LFSR is supported.
7799         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7800         * added pic16_newpCodeOpLit2 to support instructions with
7801         two literal arguments
7802         * pic16_pCode2str: corrected code that emits assembler instructions
7803         with two literal operands and those that have an access bit modifier
7804         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7805         this fixes a bug which caused some labels to be lost, when an
7806         assembler directive was added, i.e. banksel,
7807         * pic16_FixRegisterBanking: improved logic that causes the insertion
7808         of bank switching,
7809         * InlineFunction: functions that are called once, are not any more
7810         inlined. This can be a port option in the future,
7811
7812         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7813
7814         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7815         hold the corresponding uninitialized symbols,
7816         * pic16_allocProcessorRegister: registers have explicit marked the
7817         accessBank field,
7818         * pic16_allocInternalRegister: registers are explicit marked as
7819         not used,
7820         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7821         processing list, so bit registers were lost,
7822         *
7823
7824         * ralloc.h: added field 'accessBank' and original symbol operand
7825         in register definition,
7826         * removed the field isMapped from register definition,
7827
7828         ** Several functions have been removed from various sources:
7829         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7830         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7831         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7832         pic16_assignRelocatableRegisters
7833
7834         ** others have been introduced:
7835         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7836         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7837
7838 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7839
7840         * support/scripts/inc2h.pl: changed definition of BIT_AT
7841         to emit 'sbit at' instead of 'bit at'. This was a request.
7842
7843         PIC16 port related preliminary changes:
7844         * gen.c: prefixed function popRegFromString with
7845         pic16_ and all references to it corrected
7846         * pcode.c: all pic16_pc_* hardware registers prefixed
7847         with underscore (_),
7848         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7849         * ralloc.c: newReg(): when register is REG_SFR then
7850         set address to rIdx,
7851         pic16_allocProcessorRegister(): marks register wasUsed=0
7852         pic16_writeUsedRegs(): added a call to assign processor
7853         registers via pic16_assignFixedRegisters
7854
7855 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7856
7857         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7858         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7859         variables in unused register banks.  Also the SSEG is placed
7860         wherever there is enough space for it, and IDATA can be anywhere
7861         in internal RAM.  For now compile using -Wl-Y[stack_size].
7862         The mem file is different for this option as well, since it
7863         makes no sense of talking about DSEG lenght.
7864
7865 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7866
7867         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7868         in certain cases, e.g. when ROM assignment, patch provided
7869         from Albert den Haan.
7870
7871 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7872
7873         Many signedness and type propagation fixes:
7874         * src/SDCCicode.c: made geniCodeCast() static
7875         replaced SPEC_ by IS_ (cosmetic)
7876         (operandOperation): fixed div and mod operation
7877         (usualBinaryConversions): added support for promotion of char
7878         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7879         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7880         (geniCodeAdd): an array index will stay unsigned, even if promoted
7881         from char to int
7882         (geniCodeArray): ditto
7883         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7884         * src/SDCCsymt.c (computeType): added more support for char;
7885         promotion of char is selectable by promoteCharToInt, fixed signedness
7886         for all cases
7887         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7888         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7889         * src/SDCCval (val*): replaced signedness calculation by
7890         computeType()
7891         rearranged if-branches (cosmetic)
7892         (valShift): added warning W_SHIFT_CHANGED
7893         (valCompare): fixed problem with different types
7894         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7895         * support/regression/tests/literalop.c: added many cases
7896         * support/regression/tests/ast_constant_folding.c: changed finally to
7897         'unsigned int'
7898         * .version: new year, new version: 2.3.7
7899         * src/SDCCmain.c (main): applied patch #866468
7900         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7901         provided by Scott Bronson
7902         * doc/sdccman.lyx: updated documentation for sdcdb
7903         updated and added chapter tips
7904
7905 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7906
7907         * src/SDCCsymt.h: missing from yesterday's commits
7908
7909 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7910
7911         * src/SDCC.y (struct_or_union_specifier),
7912         * support/Util/SDCCerr.c,
7913         * support/Util/SDCCerr.h: verify that struct & union tags are used
7914         as declared.
7915
7916 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7917
7918         * src/SDCCglobl.h: missing from yesterday's commits
7919
7920 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7921
7922         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7923         sft_attributes, struct_declaration, parameter_declaration,
7924         type_name, start_block, declaration_list),
7925         * src/SDCC.lex (check_type): support redefinition of typedef names
7926
7927 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7928
7929         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7930         aligned xdata arrays. Erik helped me with the if clause.
7931
7932 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7935         warning
7936
7937 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7938
7939         * src/SDCCast.h,
7940         * src/SDCCast.c (newAst_),
7941         * src/SDCCicode.h,
7942         * src/SDCCicode.c (ast2iCode, newiCode),
7943         * src/SDCCglobl.h,
7944         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7945         expr, statement, expression_statement, selection_statement,
7946         iteration_statement, expr_opt, jump_statement): foundation for tracking
7947         sequence points
7948         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7949         point code too)
7950
7951 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7952
7953         * support/Util/SDCCerr.c,
7954         * src/SDCCast.h,
7955         * src/SDCCast.c (createCase, createDefault, decorateType),
7956         * src/SDCClabel.c (labelUnreach),
7957         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7958         to error messages.
7959         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7960         (with thanks to Stas Sergeev)
7961         * device/include/time.h,
7962         * device/lib/time.c (CheckTime): suppress unreachable code warning
7963
7964 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7965
7966         * src/SDCCast.c (createIvalCharPtr),
7967         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7968         bug #753752)
7969         * support/regression/tests/nullstring.c: tests for these two bugs
7970
7971 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7972
7973         * support/Util/SDCCerr.h,
7974         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7975         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7976         about storage class and 'at' used inside struct or union
7977         * src/SDCCBBlock.c (iCodeFromeBBlock),
7978         * src/SDCCcse.c (ifxOptimize),
7979         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7980         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7981         printIval, emitStaticSeg, emitOverlay),
7982         * src/SDCClabel.c (deleteIfx),
7983         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7984         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7985         gatherAutoInit, processParms),
7986         * support/Util/SDCCerr.h,
7987         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7988         reporting for post-parse errors.
7989
7990 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7991
7992         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7993         implicit casts via union; they don't work on big endian systems
7994         (possible fix for bug #861138)
7995
7996 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7997
7998         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7999         * src/mcs51/main.c: fixed the fix for bug #737001
8000
8001 2003-12-15  Borut Razem <borut.razem AT siol.net>
8002
8003         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
8004
8005 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8006
8007         * support/makebin/makebin.c: put output in binary mode
8008
8009 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8010
8011         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
8012         xdata and data memory on startup. Set the environment variable
8013         SDCC_NOGENRAMCLEAR to disable this.
8014         * src/mcs51/peephole.def,
8015         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
8016         (allows non-interrupt and interrupt code to safely compete for a resource
8017         without the non-interrupt code having to disable interrupts)
8018
8019 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8020
8021         * src/SDCCicode.c (geniCodeAdd),
8022         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
8023         with valFromType if type might be a pointer and host is big endian).
8024         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8025         types, not just integer types.
8026         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8027         multiply defined with mismatching "at" address.
8028
8029 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8030
8031         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8032         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8033         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8034         with embedded nulls (fixed bug #753752)
8035
8036 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8037
8038         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8039         Apparently this did not see much testing (endless loop)
8040
8041 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8042
8043         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8044
8045 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8046
8047         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8048         gracefully handle NULL memmap pointers
8049
8050 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8051
8052         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8053         instead of deleting the iCode when an operand is volatile
8054         * src/z80/gen.c (genDummyRead),
8055         * src/mcs51/gen.c (genDummyRead),
8056         * src/ds390/gen.c (genDummyRead),
8057         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8058         not just IC_RIGHT
8059         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8060         * src/SDCC.y: fixed bug #850420
8061
8062 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8063
8064         Applied z80 i/o port patch from Peter Townson and fixed some operators
8065         to better handle operands in A register.
8066         * device/include/z180.h
8067         * src/SDCC.y
8068         * src/SDCCglue.c
8069         * src/z80/gen.c
8070         * src/z80/gen.h
8071         * src/z80/main.c
8072         * src/z80/peeph-z80.def
8073         * src/z80/peeph.def
8074         * src/z80/z80.h
8075
8076 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8077
8078         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8079
8080 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8081
8082         * device/lib/hc08/_mullong.c: Removed extra #endif
8083
8084 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8085
8086         * sim/ucsim/hc08.src/inst.cc,
8087         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8088         carries from x to h
8089         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8090         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8091         * device/include/stdarg.h: fixed varargs for hc08
8092         * device/lib/Makefile.in,
8093         * device/lib/hc08/Makefile,
8094         * device/lib/hc08/_mulint.c,
8095         * device/lib/hc08/_mullong.c: fixed some endian problems
8096
8097 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8098
8099         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8100         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8101         * device/lib/_gptrget.c,
8102         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8103
8104 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8105
8106         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8107         * src/SDCCast.c (astErrors): fixed bug #846007
8108         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8109
8110 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8111
8112         * src/SDCCast.c (decorateType): disabled a transformation I added in
8113         revision 1.188 (access to fields of a structure at an absolute address);
8114         it breaks with bitfields, extern declarations, and gcse analysis.
8115         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8116         could be assigned through a pointer, so don't complain.
8117         * src/SDCCast.c (astErrors),
8118         * src/SDCCast.h,
8119         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8120
8121 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8122
8123         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8124         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8125         output of __config directives, since gpasm now supports them
8126         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8127         pre-processor macro, i.e. -DMCU=p18f452
8128         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8129         and modified to handle 'cast' icode similarly to '=' icode
8130         * src/pic16/device.h (typedef struct PIC_device): added field
8131         'extMIface' to indicate that chip has external memory interface
8132         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8133         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8134         18F8720
8135
8136 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8137
8138         * src/SDCC.y (pointer): fixed bug #846006
8139         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8140         * src/SDCCast.c (decorateType): fixed bug #846009
8141         * src/ds390/peeph.def,
8142         * src/ds390/gen.c (genAnd, genOr),
8143         * src/mcs51/peeph.def,
8144         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8145
8146 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8147
8148         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8149         * src/SDCCdflow.c
8150         * src/SDCCcse.c
8151         * src/SDCCcse.h
8152         * src/SDCCBBlock.h
8153         * src/SDCCBBlock.c
8154
8155 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8156
8157         fixed bug #845089
8158         * src/SDCCbitv.h,
8159         * src/SDCCbitv.c: added function to free a bitvector
8160         * src/SDCClrange.h,
8161         * src/SDCClrange.c: added function to recompute the liveranges
8162         * src/avr/ralloc.c,
8163         * src/ds390/ralloc.c,
8164         * src/hc08/ralloc.c,
8165         * src/mcs51/ralloc.c,
8166         * src/pic/ralloc.c,
8167         * src/pic16/ralloc.c,
8168         * src/xa51/ralloc.c,
8169         * src/z80/ralloc.c: recompute the liveranges after register packing
8170
8171 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8172
8173         * src/SDCCloop.c (newInduction): fixed bug #845630
8174
8175 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8176
8177         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8178         inadvertantly left behind from my 2003-11-12 change
8179
8180 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8181
8182         Updated headers I neglected to commit yesterday.
8183         * src/SDCClrange.h,
8184         * src/SDCCicode.h
8185
8186 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8187
8188         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8189         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8190         * src/SDCCopt.c (eBBlockFromiCode),
8191         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8192         the creation of the key hash table from the sequencing so it can be used
8193         earlier (for some GCSE bug fixes still pending)
8194
8195 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8196
8197         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8198         * support/regression/tests/addsub.c: testing genPlus shortcut
8199
8200 2003-11-15  Borut Razem <borut.razem AT siol.net>
8201
8202         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8203
8204 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8205
8206         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8207         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8208         ordering is immaterial.
8209         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8210
8211 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8212
8213         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8214         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8215         (SIGSEV) of bug #840381
8216         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8217         unlink new file before rename if new and old filenames are the same)
8218
8219 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8220
8221         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8222         uninitialized variables) for the mcs51. Set environment variable
8223         SDCC_GENRAMCLEAR to test.
8224         xdata initialization slightly shorter
8225
8226 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8227
8228         * src/SDCCsymt.h,
8229         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8230         #838241 & 780691 (basicly the same bug)
8231         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8232         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8233
8234 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8235
8236         * src/SDCCmain.c (linkEdit): "fix" #834252
8237
8238 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8239
8240         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8241         * src/SDCCast.h,
8242         * src/SDCC.y: fixed bug #819403
8243
8244 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8245
8246         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8247         the reentrant attribute.
8248         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8249         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8250         simulation
8251         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8252         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8253         erroneously reduced to a literal.
8254         * src/hc08/ralloc.c (packRegisters, rematStr),
8255         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8256         some cases
8257
8258 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8259
8260         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8261         * doc/sdccman.lyx: changed from 'article' to 'book'
8262         * doc/Makefile: readded test_suite_spec and cdbfileformat
8263
8264 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8265
8266         * device/include/stdlib.h: include malloc.h to comply with ANSI
8267         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8268
8269 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8270
8271         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8272         * doc/clean.mk: also remove *.out files
8273         * doc/sdccman.lyx: some additions, larger top/bottom margins
8274
8275 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8276
8277         * src/SDCC.y: fixed bug #837365
8278         * support/regression/tests/bitopcse.c
8279         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8280         a symbol (might be valop instead)
8281         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8282         * device/lib/clean.mk: added hc08 to the cleaning list
8283
8284 2003-11-04  Borut Razem <borut.razem AT siol.net>
8285
8286         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8287           made 2003-11-04
8288         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8289           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8290           malloc is declared in standard stdlib.h
8291
8292 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8293
8294         * device/lib/hc08/Makefile: need to clean .rel not .o files
8295         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8296
8297 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8298
8299         * src/port.h,
8300         * src/hc08/main.c,
8301         * src/mcs51/main.c,
8302         * src/ds390/main.c,
8303         * src/z80/main.c,
8304         * src/avr/main.c,
8305         * src/pic/main.c,
8306         * src/pic16/main.c,
8307         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8308         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8309         tests (which uses the port's oclsExpense function)
8310         * src/SDCC.y,
8311         * src/SDCCast.c,
8312         * src/SDCCicode.c,
8313         * src/hc08/gen.c,
8314         * src/ds390/gen.c,
8315         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8316
8317 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8318
8319         * src/SDCCcse.c (ifxOptimize),
8320         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8321         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8322         deleting the IFX iCode.
8323         * src/hc08/ralloc.c: reduced unneeded slocs
8324         * src/hc08/gen.c: fixed bug in asmopToBoolean
8325
8326 2003-11-04  Borut Razem <borut.razem AT siol.net>
8327
8328         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8329           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8330           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8331           transferred to configure
8332
8333 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         Use headers defined in the C[++] standards:
8336         * sim/ucsim/gui.src/serio.src/fileio.cc
8337         * sim/ucsim/gui.src/serio.src/frontend.cc
8338         * sim/ucsim/gui.src/serio.src/main.cc
8339         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8340         * support/Util/NewAlloc.c
8341         * as/hc08/lklibr.c
8342         * as/mcs51/lklibr.c
8343         * as/z80/aslist.c
8344         * as/z80/assym.c
8345
8346 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8347
8348         * Added MSVC projects for hc08 assembler and linker:
8349         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8350         /as/hc08/link_hc08.dsp
8351
8352 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8353
8354         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8355
8356 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8359
8360 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8361
8362         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8363
8364 2003-10-31  Borut Razem <borut.razem AT siol.net>
8365
8366         * support/cpp2/cpplib.h,
8367           support/cpp2/cpplib.c,
8368           support/cpp2/cpplex.c,
8369           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8370           to switch _asm block preprocessing on / off. Default is
8371           #pragma preproc_asm +
8372
8373 2003-10-31  Borut Razem <borut.razem AT siol.net>
8374
8375         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8376           when outputting comment blocks (when executed with -C option) and
8377           _asm (SDCPP specific) blocks
8378
8379 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8380
8381         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8382
8383 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8384
8385         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8386
8387 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8388
8389         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8390         * src/SDCCast.c (decorateType): fixed bug #832664
8391
8392 2003-10-31  Borut Razem <borut.razem AT siol.net>
8393
8394         * support\cpp2\cpplex.c: fixed for SDCPP:
8395           comments(when executed with -C option) and _asm blocks
8396           were included even if they where in skipped #if block.
8397           Applied solution from GCC cpp 3.3.2
8398
8399 2003-10-31  Borut Razem <borut.razem AT siol.net>
8400
8401         * src/SDCC.lex: sdcc now understands both formats:
8402           '# <line_number> <file_name>' and
8403           '#line <line_number> <file_name>'
8404         * support/cpp2/cppmain.c: sdcpp now generates the standard
8405           '# <line_number> <file_name>' instead of former
8406           '#line <line_number> <file_name>'
8407
8408 2003-10-30  Borut Razem <borut.razem AT siol.net>
8409
8410         * support/cpp2/cpphash.h,
8411         * support/cpp2/cpplib.h
8412         * support/cpp2/cpplex.c,
8413         * support/cpp2/cppmain.c,
8414         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8415
8416 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8417
8418         Fixed a number of problems revealed by bug #827883.
8419         * src/SDCCloop.c (loopInvariants): Spill location of the
8420         result operand should be recomputed if extracted from
8421         a loop. Also, don't extract assignments of an iTemp
8422         from a literal.
8423         * src/SDCCast.c (isConformingBody): loop reversal should
8424         not occur if the control variable is involved with a
8425         relational operator.
8426
8427 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8428
8429         * .version: bumped to 2.3.6 to reflect the big improvements
8430         made by Erik and Klaus. Thanks!
8431
8432 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8433
8434         Replaced the livrange code.
8435         * src/SDCClrange.c: added new LR code
8436         * src/SDCCloop.c,
8437         * src/SDCCBBlock.h: removed remainig parts from old LR code
8438         * src/ds390/ralloc.c,
8439         * src/ds390/gen.c: minor fixes to make it work with new code
8440
8441 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8442
8443         * as/hc08/asm.h,
8444         * as/hc08/lkrloc.c,
8445         * src/hc08/gen.c,
8446         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8447         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8448         (tweaked fix for bug #818696)
8449
8450 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8451
8452         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8453
8454 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8455
8456         * src/SDCCmain.c,
8457         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8458         * src/mcs51/gen.c (gencjneshort),
8459         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8460         more efficient (per Scott Bronson's suggestion)
8461
8462 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8463
8464         Extended the semantics of the critical keyword to include
8465         individual statements. See RFE #827755 and #799831
8466         * src/SDCC.y
8467         * src/SDCCicode.c
8468         * src/SDCCopt.c
8469         * src/SDCCast.c
8470         * support/Util/SDCCerr.c
8471         * support/Util/SDCCerr.h
8472         * src/mcs51/gen.c
8473         * src/ds390/gen.c
8474         * src/hc08/gen.c
8475
8476 2003-10-19  Borut Razem <borut.razem AT siol.net>
8477
8478         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8479
8480 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8481
8482         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8483         Fixed bug #818696
8484         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8485         and predecrement operand is displayed
8486
8487 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8488
8489         * src/SDCCval.c (valMinus): fixed bug #826041
8490
8491 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8492
8493         Some hc08 related updates that I missed earlier
8494         * sim/ucsim/stypes.h
8495         * support/regression/ports/hc08/spec.mk
8496
8497 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8498
8499         New target "hc08" for the Motorola 68hc08 family of micros
8500
8501         * configure
8502         * configure.in
8503         * Makefile
8504         * src/hc08/*
8505         * src/SDCCmain.c
8506         * src/port.h
8507         * sim/ucsim/hc08.src/*
8508         * sim/ucsim/configure.in
8509         * src/ucsim/configure
8510         * sim/ucsim/packages_in.mk
8511         * as/hc08/*
8512         * as/Makefile
8513         * device/include/mc68hc908qy.h
8514         * device/lib/hc08/*
8515         * device/lib/Makefile.in
8516         * support/regression/ports/hc08/*
8517         * support/regression/Makefile
8518
8519 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8520
8521         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8522         regression test
8523         * src/ds390/gen.c (genCast): fixed bug #821957
8524
8525 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8526
8527         * device/lib/logf.c: "fixed" overlay bug
8528         * support/regression/ports/host/spec.mk: added m library
8529         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8530         * support/regression/tests/float_trans: added (for Eric)
8531
8532 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * src/mcs51/gen.c (genCpl): fixed bug
8535         http://sf.net/mailarchive/message.php?msg_id=6263915
8536
8537 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8538
8539         * src/SDCCast.c (decorateType): added extended constant folding
8540         * src/SDCCsymt.c (computeType): cleanup
8541         * src/SDCCval.c (valShift): minor optimization
8542         * support/regression/tests/ast_constant_folding.c: added
8543
8544 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8545
8546         * src/SDCCmain.c: removed some unintended changes
8547
8548 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8549
8550         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8551         * src/z80/gen.c: fixed part of bug #817589
8552         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8553
8554 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8555
8556         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8557         * src/SDCCcflow.c
8558         * src/SDCCcse.c
8559         * src/SDCCdflow.c
8560         * src/SDCClabel.c
8561         * src/SDCClrange.c
8562         * src/SDCCmem.c
8563         * src/SDCCopt.c
8564         * src/SDCCpeeph.c
8565         * src/SDCCset.c
8566         * src/avr/ralloc.c
8567         * src/ds390/ralloc.c
8568         * src/izt/ralloc.c
8569         * src/mcs51/ralloc.c
8570         * src/pic/ralloc.c
8571         * src/pic16/ralloc.c
8572         * src/xa51/ralloc.c
8573         * src/z80/ralloc.c
8574         * src/z80/gen.c: removed unused label "release:"
8575
8576 2003-10-06  Borut Razem <borut.razem AT siol.net>
8577
8578         * src/SDCC.lex: removed definition of unused variables
8579           save_optimize and save_options
8580
8581 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8582
8583         * clean.mk: removed '=' in "-maxdepth=1"
8584         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8585         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8586
8587 2003-10-06  Borut Razem <borut.razem AT siol.net>
8588
8589         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8590           my_unput() replaced by unput()
8591
8592 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8593
8594         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8595         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8596         type-punned pointer will break strict-aliasing rules"
8597         Old LR behaviour is again default; Klaus' LR can be choosen by
8598         defining the environment variable LRKLAUS
8599         * src/SDCCBBlock.h
8600         * src/SDCCloop.c
8601         * src/SDCClrange.c
8602         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8603         * clean.mk: fixed removal of files in bin/CVS/
8604         * device/lib/clean.mk: fixed removal of directories small and large
8605         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8606         * src/SDCCicode.c,
8607         * src/SDCCval.c: removed superflous test for pedantic
8608
8609 2003-10-05  Borut Razem <borut.razem AT siol.net>
8610
8611         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8612           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8613           message "unmatched #pragma SAVE and #pragma RESTORE"
8614
8615 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8616
8617         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8618           assembly, critical functions, atomic, nojtbound)
8619
8620 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8621
8622         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8623         * src/SDCCBBlock.h
8624         * src/SDCCloop.c
8625         * src/SDCCloop.h
8626         * src/SDCClrange.c
8627
8628 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8629
8630         * src/z80/gen.h,
8631         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8632         * src/mcs51/gen.h
8633         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8634         * src/ds390/gen.h
8635         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8636         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8637         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8638
8639 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8640
8641         * src/z80/gen.c (genRet): fixed bug #524753
8642         * src/z80/gen.c (genCast): fixed internal error on cast from
8643         pointer to long
8644         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8645         fix for bug #477835 to the z80
8646         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8647         for tracking iCodes in the peephole optimizer for z80
8648
8649 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8650
8651         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8652         the other part of bug #814548
8653         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8654
8655 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8656
8657         * src/SDCCcse.c: fixed part of bug #814548
8658
8659 2003-09-28  Borut Razem <borut.razem AT siol.net>
8660
8661         * src/asm.c: rewrite of printILine() to use temporary file instead
8662           a pipe
8663         * src/xa51/main.c: commented out declaration of int rewinds
8664
8665 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8666
8667         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8668
8669 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8670
8671         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8672         * src/asm.c (printILine): Fixed bug #811015
8673
8674 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8675
8676         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8677         freeing.
8678
8679 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8680
8681         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8682         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8683         to correctly handle general case of AOP_PAIRPTR
8684         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8685
8686 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8687
8688         * src/mcs51/ralloc.c (fillGaps),
8689         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8690         register positioning bug)
8691
8692 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8693
8694         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8695
8696 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8697
8698         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8699         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8700         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8701         (ralloc doesn't intentionally do this now, but perhaps later)
8702         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8703         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8704         register positioning bugs (Fixed bug #762602 and #795325)
8705         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8706         (Fixed bug #808779)
8707         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8708         lines that --i-code-in-asm generates
8709
8710 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8711
8712         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8713         trying to fclose a FILE* that was already closed.
8714
8715 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8716
8717         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8718         of const struct should be treated as if const themselves)
8719
8720 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8721
8722         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8723
8724 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8725
8726         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8727         Unix (/n) and DOS (/r/n) line terminations.
8728
8729 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8730
8731         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8732         bug #613775
8733
8734 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8735
8736         * src/mcs51/gen.c (genFunction, genEndFunction),
8737         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8738         and restore of EA so that stack offsets to parameters are
8739         correct when using both critical and reentrant/stack-auto.
8740         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8741         size (can be triggered in error if sloc is shared between
8742         different sized objects)
8743         * device/include/float.h: fixed macros to explicitly use
8744         unsigned long where needed
8745
8746 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8747
8748         Feature req. 799831: added code to allow nesting of critical functions
8749         * src/mcs51/gen.c (genFunction, genEndFunction)
8750         * src/ds390/gen.c (genFunction, genEndFunction)
8751
8752 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8753
8754         * src/SDCCsymt.c (sclsFromPtr),
8755         * src/SDCCsymt.h,
8756         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8757         support for standard C idiom of memory mapped variables; for
8758         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8759         to xdata int at 0x1234 tempvar = 1.
8760         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8761         provided by Akiya ISHIDA
8762
8763 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8764
8765         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8766         * src/SDCCval.c (constVal): added reduction from int to char
8767         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8768         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8769         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8770         to ignore the sign
8771         * support/regression/tests/shifts.c: fixed
8772
8773 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8774
8775         * src/z80/gen.c (genXor): Fixed bug #805445
8776
8777 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8778
8779         Fixed bug #621531 (const & volatile confusion in the type chain).
8780         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8781         refer to the const or volatile state of the pointer itself.
8782
8783         * src/SDCCast.c
8784         * src/SDCCglue.c
8785         * src/SDCCicode.c
8786         * src/SDCCsymt.c
8787         * src/SDCCval.c
8788         * src/SDCC.y
8789         * src/SDCCsymt.h
8790         * src/pic/gen.c
8791         * src/pic/ralloc.c
8792         * src/pic16/gen.c
8793         * src/pic16/ralloc.c
8794         * support/regression/tests/const.c
8795
8796 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8797
8798         When checking for duplicated modules, use absolute paths
8799         instead of relative paths.  Files changed:
8800
8801         * as/mcs51/lklib.c
8802         * link/z80/lklib.c
8803
8804 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8805
8806         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8807
8808 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8809
8810         * device/include/string.h: added size_t typedef, changed
8811         prototypes to use size_t, eliminated separate reentrant and
8812         non-reentrant declarations, added _memmove declaration
8813         * device/lib/_memcpy.c: changed to use size_t instead of int,
8814         changed /4 to >>2 to avoid division library call
8815         * device/lib/_memcmp.c,
8816         * device/lib/_memset.c,
8817         * device/lib/_strncat.c,
8818         * device/lib/_strncpy.c,
8819         * device/lib/_strncmp.c: changed to use size_t instead of int
8820         * device/lib/_memmove.c: new file (fixed bug #772294)
8821         * device/lib/Makefile.in: added _memmove.c
8822         * device/lib/z80/asm_strings.s: fixed bug #772290
8823         * support/regression/tests/bitfields.c: attempt to fix host assertion
8824         failure on amd64-unknown-linux2.2
8825
8826 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8827
8828         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8829         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8830         * as/z80/asmain.c (main): fixed bug #801766
8831
8832 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8833
8834         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8835         compilers
8836
8837 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8838
8839         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8840         reported in bug #800609
8841
8842 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8843
8844         * Top header beautifications in src/pic16 directory:
8845           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8846           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8847           pcoderegs.h, ralloc.c, ralloc.h
8848         * main.c: added top header and GPL license notice
8849         * pcode.c: fixed the if-conditional warning
8850
8851 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8852
8853         * device/lib/_mullong.c: replaced int by short for gcc
8854
8855 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8856
8857         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8858         and JUMPTABLE iCodes properly now (worked by accident before)
8859         * src/mcs51/gen.c (leftRightUseAcc),
8860         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8861         iCode properly now. Use getSize instead of nRegs since a & b
8862         aren't part of the nRegs tally.
8863
8864 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8865
8866         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8867         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8868           before instructions that use the _STATUS register
8869
8870 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8871
8872         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8873         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8874         fetching of the pointer
8875         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8876         copied from genNearPointerSet()
8877         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8878         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8879         If they pop r0/r1 they must be called in the opposite order than aopOp().
8880         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8881         (resp. --stack-auto), prepared for --xstack
8882
8883 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8884
8885         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8886
8887 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8890         these ports have their own __sdcc_external_start()
8891
8892 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8893
8894         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8895         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8896         type for bits was changed. It resulted in bit variables becoming
8897         global, which is not permitted in PIC 14 assembly output.
8898
8899 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8900
8901         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8902
8903 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8904
8905         Z80 and MCS51 linkers complaint if a public symbol is defined
8906         in more than one library module:
8907
8908         * as/mcs51/lklib.c
8909         * link/z80/lklib.c
8910         * as/mcs51/Makefile.in
8911
8912 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8913
8914         A few small changes that speed up the peephole optimizer.
8915
8916         * src/SDCCpeeph.c
8917
8918 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8919
8920         Try to make the peephole optimizer smarter by maintaining
8921         an association between the assembly source code and the
8922         iCodes that originated them. Put this information to use
8923         with a new peephole rule condition "notVolatile" so that
8924         the rules can be aggressive yet still safe.
8925
8926         * src/SDCCpeeph.c
8927         * src/SDCCpeeph.h
8928         * src/mcs51/gen.c
8929         * src/mcs51/peeph.def
8930
8931 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8932
8933         Fixed bug #741761
8934
8935         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8936         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8937         if the left or right operand symbols have the accuse flag set.
8938
8939 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8940
8941         Changed the type of the result of the ! (NOT) operator to char;
8942         previously it returned the same type as the source. This allows
8943         us to eliminate all the genFloatNot functions (all of its target
8944         implementations were very buggy) since !float can use the same
8945         code as !long now.
8946
8947         * src/SDCCicode.c (ast2iCode): ! returns char
8948         * src/mcs51/gen.c (genNot, genNotFloat),
8949         * src/ds390/gen.c (genNot, genNotFloat),
8950         * src/z80/gen.c (genNot, genNotFloat),
8951         * src/pic/gen.c (genNot, genNotFloat),
8952         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8953
8954 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8955
8956         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8957         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8958            during interrupts. Ensure WSAVE is located at a shared bank address.
8959         2. Fixed page selection in some places
8960         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8961            the registers name strings.
8962         4. Fixed "signed / unsigned compare" compiler warnings.
8963         5. The PIC port manages its own allocation of the general purpose
8964            registers, but makes no attempt to reuse them. As a result when
8965            compiling it soon runs out of general purpose registers. Some
8966            additional code was added to the files pcode.c and device.c to walk
8967            through the function call tree and rename the registers so that they
8968            get reused.
8969
8970         * src/pic/device.c
8971         * src/pic/gen.c
8972         * src/pic/glue.c
8973         * src/pic/pcode.c
8974         * src/pic/pcode.h
8975         * src/pic/ralloc.c
8976         * src/pic/ralloc.h
8977         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8978         genPlus() & genMinus() when the result is the same as left or right
8979
8980 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8981
8982         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8983
8984 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8985
8986         Made bitfield a distinct type from bit so that bitfields
8987         convert as per ANSI C and bits retain their traditional
8988         boolean style behaviour. Implemented bitfield support in
8989         the z80 port.
8990
8991         * src/SDCCsymt.h,
8992         * src/SDCCsymt.c,
8993         * src/SDCCast.c,
8994         * src/cdbFile.c,
8995         * src/mcs51/gen.c,
8996         * src/ds390/gen.c: bit v bitfield split
8997         * src/z80/gen.c: New support for bitfields
8998         * support/regression/tests/bitfields.c: reenabled z80,
8999         added more tests
9000
9001 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9002
9003         Rules 246.x, 247.x relate to bitfields, the others speed up
9004         access to xdata mapped I/O devices.
9005
9006         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
9007
9008 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9009
9010         Cleaned up genPackBits and genUnpackBits and added two helper
9011         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
9012         for literal assignments in genPackBits (thanks to Frieder for
9013         reminding me).
9014
9015         * src/mcs51/gen.c
9016         * src/ds390/gen.c
9017
9018 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9019
9020         Fixed bug #748310 (pointer to function type mishandled when the
9021         function name is omitted). Also fixed a SIGSEGV when a function
9022         attribute (reentrant, etc) is used on a non-function or on a
9023         function but misplaced before the parameter list.
9024
9025         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9026         bug #748310
9027         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9028         * support/Util/SDCCerr.h,
9029         * support/Util/SDCCerr.c: Added func attr misuse error msg
9030
9031 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9032
9033         Fixed bug #787649 by anonymous
9034         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9035         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9036
9037 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9038
9039         Fixed numerous bitfield problems.
9040
9041         * src/SDCC.y: More bitfield related error checking
9042         * src/SDCCsymt.h,
9043         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9044         * support/Util/SDCCerr.h,
9045         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9046         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9047         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9048         * support/regression/tests/bitfields.c: tests added
9049
9050 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9051
9052         Made the constant following the "interrupt" keyword optional. If
9053         omitted, the function will not automatically be given an entry
9054         in the interrupt vector table (similar to #pragma NOIV, but
9055         less syntacticly kludgy). The interrupt number is also now
9056         range checked. Also fixed a bug in the high order bit example
9057         in the manual.
9058
9059         * src/SDCC.y
9060         * src/SDCCmem.c
9061         * src/SDCCglue.c
9062         * src/SDCCsymt.h
9063         * support/Util/SDCCerr.c
9064         * support/Util/SDCCerr.h
9065         * doc/sdccman.lyx
9066
9067 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9068
9069         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9070         * src/SDCCicode.c (operandOperation): rewritten some ops
9071         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9072         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9073         other type
9074         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9075         be re-activated by defining REDUCE_LITERALS)
9076         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9077         unsigned, but are signed by default
9078         * src/SDCCval.c (constVal): rearranged
9079         * src/SDCCval.c (valMod): preliminary fix
9080         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9081         * support/regression/literalop.c: added, work in progress
9082
9083 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9084
9085         Generate warnings for useless declarations like "char data;"
9086         that don't do what new users expect.
9087
9088         * src/SDCC.y
9089         * support/Util/SDCCerr.h
9090         * support/Util/SDCCerr.c
9091
9092 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9093
9094         * src/SDCCval.c (valMult): fix overflow detection of negative int
9095
9096 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9097
9098         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9099
9100         Changes to support big endian targets:
9101
9102         * src/ports.h
9103         * src/SDCCglue.c
9104         * src/avr/main.c
9105         * src/ds390/main.c
9106         * src/izt/i186.c
9107         * src/mcs51/main.c
9108         * src/pic/main.c
9109         * src/pic16/main.c
9110         * src/xa51/main.c
9111         * src/z80/main.c
9112
9113 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9114
9115         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9116         * device/lib/time.c: fixed warning "integer overflow in expression"
9117
9118 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9119
9120         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9121         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9122         constants are unsigned; added recognition of "u" flag for unsigned
9123         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9124         * src/SDCCval.c (valDiv, valMod): fixed signdness
9125         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9126         signedness of modulo, left and right shift
9127         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9128         * support/Util/SDCCerr.h: added warning W_INT_OVL
9129         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9130         * src/SDCCast.c (ast_print): improved output of constants
9131
9132 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9133
9134         Fixed some warnings when building with MSVC:
9135
9136         * as\mcs51\asdata.c
9137         * as\z80\asdata.c
9138         * as\mcs51\asm.h
9139         * as\z80\asm.h
9140         * link\z80\aslink.h
9141         * link\z80\lkdata.c
9142         * link\z80\lkeval.c
9143         * link\z80\lkgb.c
9144         * link\z80\lkihx.c
9145         * link\z80\lks19.c
9146         * link\z80\lksym.c
9147         * support\cpp2\cpplib.c
9148         * src\ds390\gen.c
9149         * src\mcs51\gen.c
9150
9151 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9152
9153         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9154
9155 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9156
9157         * support\librarian\clean.mk: Do not remove Makefile.
9158         * support\librarian\Makefile: added.
9159
9160 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9161
9162         Added librarian to MSVC build:
9163         * all.dsp
9164         * sdcc.dsw
9165         * support\librarian\librarian.dsp
9166
9167         'configure' not needed for librarian, removed:
9168         * support\librarian\configure
9169         * support\librarian\configure.in
9170         * support\librarian\config_in.h
9171         * support\librarian\Makefile.in
9172
9173         Hopefully these ones built the librarian and the rest of sdcc properly:
9174         * Makefile
9175         * Makefile.common.in
9176
9177         Messed up 'configure', so revert to previous version:
9178         * configure
9179         * configure.in
9180
9181 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9182
9183         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9184         there, while the mantissa of a double is "only" 53 bits wide.
9185
9186 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9187
9188         Adding sdcclib to the build.  MSVC project coming soon.
9189         Files added/changed:
9190
9191         * support\librarian\clean.mk
9192         * support\librarian\configure
9193         * support\librarian\configure.in
9194         * support\librarian\config_in.h
9195         * support\librarian\Makefile.bcc
9196         * support\librarian\Makefile.in
9197         * support\librarian\sdcclib.c
9198         * Makefile.bcc
9199         * Makefile
9200         * Makefile.common.in
9201         * configure
9202         * configure.in
9203
9204 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9205
9206         Linker now complaints if linked modules have conflicting options, for
9207         example, one compiled using --model-large and another one compiled with
9208         --model-small.  The following files were modified:
9209
9210         * as\mcs51\asdata.c
9211         * as\mcs51\aslink.h
9212         * as\mcs51\asm.h
9213         * as\mcs51\asmain.c
9214         * as\mcs51\asout.c
9215         * as\mcs51\i51pst.c
9216         * as\mcs51\lkdata.c
9217         * as\mcs51\lklibr.c
9218         * as\mcs51\lkmain.c
9219         * as\z80\asdata.c
9220         * as\z80\asm.h
9221         * as\z80\asmain.c
9222         * as\z80\asout.c
9223         * as\z80\z80pst.c
9224         * link\z80\aslink.h
9225         * link\z80\lkdata.c
9226         * link\z80\lklibr.c
9227         * link\z80\lkmain.c
9228         * src\SDCCglue.c
9229
9230 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9231
9232         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9233         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9234
9235 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9236
9237         * src/z80/mappings.i: fix _mul[us][int,long] entries
9238
9239 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9240
9241         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9242
9243 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9244
9245         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9246         * support/regression/tests/bitopcse.c: added
9247         fixed warning:
9248         * src/avr/gen.c:
9249         * src/pic/gen.c:
9250         * src/pic16/gen.c:
9251         * src/z80/gen.c:
9252         * src/xa51/gen.c:
9253
9254 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9255
9256         added support for new library format to z80, gbz80 linkers:
9257         *link/z80/aslink.h
9258         *link/z80/lklex.c
9259         *link/z80/lklib.c
9260         *link/z80/lklist.c
9261
9262 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9263
9264         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9265         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9266
9267 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9268
9269         added DUMMY_READ_VOLATILE:
9270         * src/SDCC.y:
9271         * src/avr/gen.c:
9272         * src/xa51/gen.c:
9273         * src/z80/gen.c:
9274         * src/pic/gen.c:
9275         * src/pic16/gen.c:
9276         * src/mcs51/gen.c:
9277         * src/ds390/gen.c:
9278         * src/SDCCcse.c (algebraicOpts): many improvements
9279         * src/SDCCcse.h: removed algebraicOpts()
9280         * src/SDCCicode.c (picDummyRead): added
9281
9282 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9283
9284         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9285         "Insufficient space in data memory".
9286
9287 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9288
9289         * src/mcs51/gen.c: fixed bug #771358
9290         * src/z80/gen.c: fixed bug #759087
9291
9292 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9293
9294         * src/pic16/glue.c: minor cleanup by Vangelis
9295
9296 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9297
9298         * device/include/regc515c.h: fixed #758477
9299         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9300         * device/lib/_gptrput.c: saved a few bytes
9301         * my tab spacing is 8, yours too?)
9302         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9303         * device/lib/serial.c: process RX bytes earlier than TX bytes
9304         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9305
9306 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9307
9308         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9309
9310 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9311
9312     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9313
9314 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9315
9316         * device/lib/Makefile.in: bad fix, reverted to 1.43
9317
9318 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9319
9320         * device/lib/Makefile.in: added missing z80 object files
9321
9322 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9323
9324         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9325         pic16 progress by Vangelis:
9326         * src/SDCCglobl.h:
9327         * src/SDCCmain.c:
9328         * src/pic/Makefile:
9329         * src/pic:
9330         * pic/Makefile:
9331         * pic16/device.c:
9332         * pic16/device.h:
9333         * pic16/gen.c:
9334         * pic16/gen.h:
9335         * pic16/genarith.c:
9336         * pic16/glue.c:
9337         * pic16/main.c:
9338         * pic16/pcode.c:
9339         * pic16/pcode.h:
9340         * pic16/pcodepeep.c:
9341         * pic16/peeph.def:
9342
9343 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9344
9345     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9346
9347 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9348
9349     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9350     added gbz80 build to MSVC project.
9351     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9352     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9353     from 8051 stuff and setup so it links using a .lnk file.
9354
9355 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9356
9357     * support/librarian/sdcclib.c: sdcc librarian.
9358     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9359     with sdcclib.
9360
9361 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9362
9363     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9364
9365 2003-07-02  Borut Razem <borut.razem AT siol.net>
9366
9367         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9368         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9369         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9370         src/xa51/main.c, src/z80/main.c:
9371         virtualization of glue() function: each port has it's own glue function,
9372         which is accessed by do_glue function pointer in PORT.general structure
9373
9374 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9375
9376         * DS800C400 fun, improved ROM interface and tinibios.
9377
9378 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9379
9380         * More support for DS80C400. Now includes beginning of interface to ROM.
9381
9382 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9383
9384         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9385
9386 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9387
9388         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9389
9390 2003-06-19  Borut Razem <borut.razem AT siol.net>
9391
9392         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9393
9394 2003-06-19  Borut Razem <borut.razem AT siol.net>
9395
9396         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9397         fixed Z80 port - crt0.o: cannot open.
9398
9399 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9400
9401         * support/Util/MySystem.c (merge_command): revert bad fix
9402
9403 2003-06-18  Borut Razem <borut.razem AT siol.net>
9404
9405         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9406
9407 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9408
9409         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9410         option --use-stdout sends errors to stdout instead of stderr.
9411
9412 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9413
9414         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9415
9416 2003-06-15  Borut Razem <borut.razem AT siol.net>
9417
9418         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9419         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9420         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9421         fixed width array of pointers replaced with sets;
9422         multiple include and lib paths ared transferred to preprocessor and linker
9423         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9424         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9425         fixed width array of pointers
9426         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9427         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9428         fixupPath(), getPathDifference()
9429         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9430         fixed width array of pointers
9431
9432 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9433
9434         * src/pic16/ralloc.c: fix warnings
9435         * src/pic16/pcode.c: fix warning
9436
9437 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9438
9439          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9440         know all the details, but essentially this set of changes enable
9441         the pic16 port to generate movff instructions and generate assembler
9442         directives,
9443         * src/SDCCmain.c:
9444         * src/pic16/gen.c:
9445         * src/pic16/glue.c:
9446         * src/pic16/pcode.c:
9447         * src/pic16/device.c:
9448         * src/pic16/main.c:
9449         * src/pic16/pcode.h:
9450         * src/pic16/pcoderegs.c:
9451         * src/pic16/ralloc.c:
9452         * src/pic16/ralloc.h:
9453
9454 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9455
9456         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9457         added option --vc, so sdcc errors and warnings are compatible with
9458         Microsoft Visual Studio.
9459
9460 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9461
9462         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9463           device/lib/libfloat.lib: added atof function.
9464
9465 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9466
9467         * doc/sdccman.lyx: updated to Lyx 1.3
9468         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9469         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9470         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9471
9472 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9473
9474         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9475
9476 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9477
9478         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9479           additions to the "related tools/documentation" section
9480
9481 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9482
9483         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9484
9485 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9486
9487         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9488         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9489
9490 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9491
9492         * doc/sdccman.lyx: fix double dash and other minor things
9493         * doc/Makefile: fix double dash
9494
9495 2003-05-28  Karl Bongers(patches from Martin Helmling)
9496         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9497           condition and ignore commands.
9498
9499 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9500
9501         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9502           is in parts still quite out of date, I did changes as far as I felt makes sense
9503           for a non-native english speaker.
9504           Please feel free to add to the manual or to correct my changes.
9505         * doc/Makefile: undid touching the date of intermediate tex files.
9506
9507 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9508
9509         * doc/sdccman.lyx: Manual has an index now
9510
9511 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9512
9513         Finalize muluint/mulsint and mululong/mulslong merging:
9514         * device/lib/_mulint.c
9515         * device/lib/_mullong.c
9516         * device/lib/gbz80/mul.s
9517         * device/lib/gbz80/stubs.s
9518         * device/lib/z80/mul.s
9519         * device/lib/z80/stubs.s
9520         * src/SDCCsymt.c (initCSupport)
9521
9522 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9523
9524         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9525         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9526           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9527           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9528           instead of /Zm500.
9529
9530 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9531
9532         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9533           the regression tests I'm not brave enough to enable 245.b, 245.c
9534         * doc/sdccman.lyx: added latex preamble for hyperref package.
9535           Using pdflatex this will give you a hyperlinked pdf file with
9536           bookmarks. (prepend '%' before /usepackage if this breaks something)
9537
9538 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9539
9540          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9541
9542 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9543
9544         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9545
9546 2003-05-21    <johan AT balder>
9547
9548         * src/SDCCglue.c (printIval): fixed bug #739934
9549
9550 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9551
9552         Applied patch from bug 737905 (renamed yylineo to mylineno):
9553         * src/altlex.c
9554         * src/SDCCast.c
9555         * src/SDCglobl.h
9556         * src/SDCC.lex
9557         * src/SDCCsymt.c
9558         * src/SDCCval.c
9559         * src/pic16/pcode.c: Cleaned warnings
9560         * src/pic16/pcodeflow.c: Cleaned warnings
9561         * src/pic16/pcoderegs.c: Cleaned warnings
9562
9563 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9564
9565         * src/pic16/pcode.c: Cleaned warnings
9566         * src/pic16/pcodepeep.c: Cleaned warnings
9567         * src/pic16/ralloc.c: Cleaned warnings
9568
9569 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9570
9571         * doc/sdccman.lyx: fixed bug 739745
9572         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9573
9574 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9575
9576         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9577         it can be defined with CFLAGS when running configure
9578         * src/SDCCmain.c: fixed compiling + linking with object files
9579
9580 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9581
9582         * configure.in: configure for pic16 port,
9583             added --disable-pic16-port
9584         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9585         * src/SDCCmain.c: linkOptions is changed to set *,
9586             added if/endif conditional macros to remove options help
9587             messages from optionsTable when a port is not configured, added
9588             support for the PIc16 port in the ports table, when executing
9589             the compiler with no port specified on command line, a default
9590             port is selected with the new macro DEFAULT_PORT which is
9591             defined in port.h, in setDefaultOptions() linkOptions is removed
9592             from initialization assignment, since now it is a set,
9593             parseCmdLine uses setParseWithComma for linkOptions, in
9594             linkEdit() linkOptions are accessed with new function indexSet()
9595             which returns the i'th item of a set variable. See SDCCset.c, in
9596             linkEdit() when calling buildCmdLine(), added linkOptions as
9597             last argument. Now users can pass arguments to gplink via the
9598             -Wl option, main() uses pic16glue() to glue up pic16 programs
9599         * src/SDCCpeeph.c: various changes to support pic16
9600         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9601             return the i'th item of the set
9602         * src/SDCCset.h: added function prototype for indexSet()
9603         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9604         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9605         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9606             added macro DEFAULT_PORT
9607         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9608         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9609             generated
9610         * src/pic16/glue.c: commented out some error producing lines
9611         * src/pic16/main.c: __config directives are commented out to stop
9612             gpasm complaining and test the linkage with gplink, _linkCmd and
9613             _asmCmd changed to be more gplink and gpasm friendly
9614         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9615             produced an error when parsed, peep rule 12 is added to utilize
9616             movff, but it is commented out since the pCode does not support
9617             yet a command with 2 address arguments
9618
9619 2003-05-18    <johan AT balder>
9620
9621         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9622         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9623 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9624
9625         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9626   Added feature to script commands from file.
9627
9628 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9629
9630         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9631         * src/SDCCutil.c: include ctype.h for win32
9632
9633 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9634
9635         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9636
9637 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9638
9639         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9640   Fixed so you can set breakpoints prior to run, run does not stop
9641   on entry now.  Add tbreak.  Other enhancements and fixes for use
9642   with ddd.
9643
9644 2003-05-12  Borut Razem <borut.razem AT siol.net>
9645
9646         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9647
9648 2003-05-11  Borut Razem <borut.razem AT siol.net>
9649
9650         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9651         the path of bin directory, so that PATH is the only env. variable, which has to be set
9652         in case of standard installation.
9653         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9654         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9655         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9656
9657 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9658
9659         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9660         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9661         temp files are in the port dir; clean the gen/test directory when
9662         generating new test.c
9663         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9664         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9665         * support/regression/tests/zeropad.c: added
9666
9667 2003-05-09    <johan AT balder>
9668
9669         * src/SDCCglue.c: fixed bug #597940
9670
9671 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9672
9673         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9674   cache sfr, optimize next,step, fix off by one sourceline,
9675   support ddd list function.
9676         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9677
9678 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9679
9680         * support/regression/HTMLgen.py: added compare_s2f()
9681         * support/regression/Makefile: redo 1.27
9682         * support/regression/generate-cases.py: redo 1.5
9683
9684 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9685
9686         * support/regression/tests/float.c: workaround 33 bit hex constant
9687         * support/regression/tests/simplefloat.c: fix division for host
9688
9689 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9690
9691         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9692         that tame's the PIC's over-aggressive optimizer.
9693
9694 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9695
9696          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9697          support for MSVC.
9698
9699 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9700
9701         Initial support for DS80C400. "Hello world" runs on TINIm400
9702         (with polled I/O).
9703
9704 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9705
9706          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9707          * Some notes on ddd usage added in debugger/README
9708          Martin Helmling adding more features and fixes for ddd GUI debugger.
9709          Code added for nexti, stepi, up, down, and other adjustments.
9710
9711 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9712
9713         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9714         * src/pic/peeph.def Added two rules to optimize carry manipulation
9715         * src/pic/* removed debug printfs
9716
9717 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9718
9719         * debugger/mcs51/cmd.c: added header newalloc.h
9720
9721 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9722
9723         * as/Makefile: new EXEEXT
9724         * as/z80/Makefile: remove trailing slash of BUILDIR
9725         * as/z80/clean.mk: new EXEEXT
9726         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9727         * support/cpp2/Makefile.in: new EXEEXT
9728         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9729
9730 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9731
9732         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9733         EXEEXT was introduced to fix all related problems with targets
9734         "clean", "install" and "uninstall"; a couple of further flaws
9735         especially with "clean" have been fixed too
9736         * as/mcs51/Makefile.in
9737         * as/mcs51/clean.mk
9738         * as/z80/Makefile
9739         * Makefile
9740         * clean.mk
9741         * debugger/mcs51/Makefile.in
9742         * debugger/mcs51/clean.mk
9743         * link/z80/Makefile
9744         * link/z80/Makefile.in
9745         * link/z80/clean.mk
9746         * link/Makefile
9747         * packihx/Makefile.in
9748         * packihx/clean.mk
9749         * sim/ucsim/Makefile
9750         * sim/ucsim/clean.mk
9751         * sim/ucsim/avr.src/Makefile.in
9752         * sim/ucsim/avr.src/clean.mk
9753         * sim/ucsim/s51.src/Makefile.in
9754         * sim/ucsim/s51.src/clean.mk
9755         * sim/ucsim/xa.src/Makefile.in
9756         * sim/ucsim/xa.src/clean.mk
9757         * sim/ucsim/z80.src/Makefile.in
9758         * sim/ucsim/z80.src/clean.mk
9759         * sim/ucsim/main_in.mk
9760         * sim/ucsim/packages_in.mk
9761         * sim/ucsim/gui.src/Makefile.in
9762         * sim/ucsim/gui.src/serio.src/Makefile.in
9763         * sim/ucsim/gui.src/serio.src/clean.mk
9764         * src/Makefile.in
9765         * src/clean.mk
9766         * support/cpp2/Makefile.in
9767         * support/cpp2/clean.mk
9768         * support/makebin/Makefile
9769         * support/makebin/clean.mk
9770         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9771         * doc/sdccman.lyx: --program-suffix no longer needed
9772
9773 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9774
9775          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9776          Martin Helmling added support for ddd GUI debugger.
9777          Code added to display assembly, set variables, and other commands
9778          to interface to ddd.
9779
9780 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9781
9782         * as/Makefile: fix target clean
9783         * as/clean.mk: fix target clean
9784         * as/z80/clean.mk: fix target clean
9785
9786 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9787
9788         * Makefile.common.in: added  AT EXEEXT AT
9789         * configure.in: removed all mingw32 stuff
9790         * configure: rebuilt from configure.in
9791         * doc/sdccman.lyx: updated section "installation"
9792         * support/scripts/sdcc_mingw32: adapted to configure
9793         * support/scripts/sdcc_cygwin_mingw32: added
9794
9795 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9796
9797         * src/pic Added object file support for the PIC port
9798         * src/pic Applied patch from Craig Franklin (this started the object file support)
9799         * src/regression Updated the PIC regression tests for object files
9800
9801 2003-04-20  Borut Razem <borut.razem AT siol.net>
9802
9803         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9804           lklex.c: In function `getfid':
9805           lklex.c:203: warning: array subscript has type `char'
9806         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9807           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9808         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9809           stack handling macros
9810
9811 2003-04-19  Borut Razem <borut.razem AT siol.net>
9812
9813         * "handling space characters in file path" task:
9814         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9815         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9816         * support/Util/MySystem.h: make it self-sufficient
9817         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9818           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9819           handling space characters in file path
9820         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9821           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9822         * support/Util/MySystem.c: handling space characters in executable's path
9823
9824 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9825
9826         * as/z80/Makefile: fix permanent rebuild of z80
9827         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9828         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9829
9830 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9831
9832         * src/SDCCopt.c: add special case optimization to replace modulo by
9833           a power of two with a bitwise AND.
9834
9835 2003-04-18    <johan AT balder>
9836
9837         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9838
9839 2003-04-17    <johan AT balder>
9840
9841         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9842         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9843
9844 2003-04-13  Borut Razem <borut.razem AT siol.net>
9845
9846         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9847         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9848           fixed mingw problem in adl_NORMALIZE_PATH
9849
9850 2003-04-12  Borut Razem <borut.razem AT siol.net>
9851
9852         * fixed "#pragma SAVE/RESTORE can not be nested":
9853         * src/SDCC.lex: reworked pragma handling functions
9854         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9855         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9856
9857 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9858
9859         * src/SDCCutil.c (pathEquivalent): defined but not used
9860         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9861         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9862         * configure: rebuilt from configure.in
9863         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9864         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9865         * device/include/Makefile.in: replace sdcc_datadir
9866         * device/lib/Makefile.in: replace sdcc_datadir
9867         * Makefile.common.in: add LDFLAGS from configure
9868         * packihx/Makefile.in: use LDFLAGS
9869         * src/Makefile.in: use LDFLAGS
9870         * support/cpp2/Makefile.in: add LDFLAGS from configure
9871         * support/makebin/Makefile: use LDFLAGS
9872         * .version: bumped version number to 2.3.5
9873
9874 2003-04-12  Borut Razem <borut.razem AT siol.net>
9875
9876         * completed "different paths" task:
9877         * src/SDCCmacro.c: fixed bug in handling quotes
9878         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9879         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9880
9881 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9882
9883         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9884
9885 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9886
9887         * ds390/gen.c ds390/peeph.def: fix bug 706781
9888
9889 2003-04-11  Borut Razem <borut.razem AT siol.net>
9890
9891         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9892
9893 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9894
9895         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9896         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9897          set - this bit used to not be set...).
9898         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9899           bad code in PIC Port
9900         * src/regression/and2.c added to test bug 609268
9901         * src/regression/Makefile added and2.c to regression test
9902
9903
9904 2003-04-08    <johan AT CP255758-A>
9905
9906         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9907         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9908         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9909
9910 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9911
9912         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9913         fix bug #487815
9914         * support/cpp2/Makefile.in: fix bug #487815
9915         * configure: rebuilt from configure.in
9916         * Makefile.common.in: docdir changed, new path suffixes
9917         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9918         * sdcc_vc_in.h: reflect changes from sdccconf.h
9919         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9920         * src/SDCCutil.h: remove BINDIR hack
9921         * doc/sdccman.lyx: update new path hierarchy
9922
9923 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9924
9925         * src/SDCCpeeph.c: added okToRemoveSLOC test
9926
9927 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9928
9929         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9930
9931 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9932
9933         * src/SDCCpeeph.c: added labelIsReturnOnly test
9934         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9935
9936 2003-04-05    <johan AT balder>
9937
9938         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9939         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9940         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9941         * src/SDCCast.c: fixed a warning
9942         * src/SDCCast.h: fixed a warning
9943         * src/SDCCicode.c (operandFromAst): fixed a warning
9944
9945 2003-04-04    <johan AT balder>
9946
9947         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9948         * src/SDCCast.c (decorateType): fixed bug #715076
9949         * src/SDCC.y: fixed bug #702907
9950
9951 2003-04-03    <johan AT balder>
9952
9953         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9954         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9955         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9956         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9957         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9958
9959 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9960
9961         * _decdptr.c: fix return values
9962         * _gptrget.c: fix return values
9963         * _gptrgetc.c: fix return values
9964         * _gptrput.c: fix return values
9965         * _mulint.c: fix return values
9966         * as/z80/Makefile: fix 'make -j' problem
9967
9968 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9969
9970         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9971         * configure.in: big cleanup, updated to autoconf 2.5x
9972         * configure: rebuilt from configure.in
9973         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9974         * sdcc_vc_in.h: reflect changes from sdccconf.h
9975         * doc/Makefile: fixed a flaw in "make install"
9976
9977 2003-04-02    <johan AT balder>
9978
9979         * src/ds390/gen.c (genCmp): no comments
9980         * src/mcs51/gen.c (genCmp): no comments
9981         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9982         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9983
9984 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9985
9986         * support/regression/generate-cases.py: place generated file in given sub directory
9987         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9988         * support/regression/Makefile: improvements for 'make -j';
9989         side effect: it's simpler and faster now
9990
9991 2003-03-31  Borut Razem <borut.razem AT siol.net>
9992
9993         * src/z80/main.c: link-{port} and as-{port} defined without path
9994         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9995
9996 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9997
9998         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9999
10000 2003-03-30  Borut Razem <borut.razem AT siol.net>
10001
10002         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
10003           changed type of list parameter to set
10004         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
10005         * src/port.h: changed type of do_assemble() parameter to set
10006         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
10007           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
10008           definition of "cppoutfilename" macro with NULL value in preProcess()
10009         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
10010         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
10011         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
10012           replaced with set *binPathSet
10013         * shash_add() deallocates the item, if allready exsists, before adding the new one
10014         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
10015
10016 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
10017
10018         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
10019           a nested for loop bug in the PIC port
10020         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
10021           for loops
10022
10023 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
10024
10025         * support/Util/dbuf.h: remove C++ stuff to make it portable
10026
10027 2003-03-28  Borut Razem <borut.razem AT siol.net>
10028
10029         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10030           literal strings in stringLiteral()
10031         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10032         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
10033           to the project
10034
10035 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10036
10037         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10038
10039 2003-03-26    <johan AT balder>
10040
10041         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10042         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10043         * src/SDCCast.c (decorateType): fixed " -v < 3"
10044
10045 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10046
10047         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10048         Added Lenny Story's debug infrastructure changes:
10049         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10050         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10051         * src/cdbFile.c: added
10052         * src/SDCCdebug.c: added
10053         * src/SDCCdebug.h: added
10054         * src/SDCCast.c (createFunction)
10055         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10056         * src/SDCCmain.c (parseCmdLine, main)
10057         * src/SDCCmem.c (redoStackOffsets)
10058         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10059         * src/SDCCsymt.h
10060         * src/common.h
10061         * src/avr/gen.c (genAVRCode)
10062         * src/ds390/gen.c (gen390Code)
10063         * src/mcs51/gen.c (gen51Code)
10064         * src/pic/gen.c (genpic14Code)
10065         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10066         * src/xa51/gen.c (genXA51Code)
10067         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10068
10069 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10070
10071         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10072         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10073
10074 2003-03-22    <johan AT balder>
10075
10076         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10077
10078 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10079
10080         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10081         * doc/cdbfileformat.lyx: added, written by Lenny Story
10082         * doc/Makefile: added cdbfileformat.lyx
10083         * doc/clean.mk: added cdbfileformat.lyx
10084
10085 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10086
10087         * src/mcs51/peeph.def: fix bug #705773
10088
10089 2003-03-20    <johan AT balder>
10090
10091         An sfr/sbit can have an "at #" AND an initializer
10092         * src/SDCCsymt.c (checkSClass):
10093         * src/SDCCmem.c (allocGlobal):
10094         * src/SDCCmem.c (allocLocal):
10095         * src/SDCCast.c (createBlock):
10096
10097 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10098
10099         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10100
10101 2003-03-16    <johan AT balder>
10102
10103         Undid the hackup of const and volatile, the problem is much bigger
10104         * src/SDCC.y:1.65
10105         * src/SDCCast.c:1.171
10106         * src/SDCCglue.c:1.138
10107         * src/SDCCicode.c:1.146
10108         * src/SDCCsymt.c:1.150
10109         * src/SDCCval.c:1.65
10110
10111 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10112
10113         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10114         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10115
10116 2003-03-13    <johan AT balder>
10117
10118         Hackup const and volatile modifiers in type chains a bit:
10119         * src/SDCC.y:1.63
10120         * src/SDCCast.c:1.169
10121         * src/SDCCglue.c:1.136
10122         * src/SDCCicode.c:1.143
10123         * src/SDCCsymt.c1.146
10124         * src/SDCCsymt.h1.59
10125         * src/SDCCval.c:1.63
10126
10127 2003-03-12    <johan AT balder>
10128
10129         * src/SDCCBBlock.h: more LRH debugging junk
10130         * src/SDCCcflow.h: more LRH debugging junk
10131         * src/SDCCloop.c: more LRH debugging junk
10132         * src/SDCC.y (struct_declaration): fixed bug #697590
10133         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10134         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10135         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10136
10137 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10138         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10139         test function names must now match exactly).
10140         * src/SDCCcse.c: added special case in findCheaperOp to allow
10141         extending a short integer. Makes less awful code for bug 700121 test case.
10142
10143 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10144
10145         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10146         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10147
10148 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10149
10150         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10151         actually called (operandsNotEqual() was called for all
10152         operandsNotEqualX tests).
10153
10154 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10155
10156         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10157         with shorter literals. Fixes bug 700121.
10158
10159 2003-03-11    <johan AT balder>
10160
10161         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10162
10163 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10164
10165         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10166         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10167
10168 2003-03-10  Borut Razem <borut.razem AT siol.net>
10169
10170         * src/SDCCmain.c: pipe preprocessor's output
10171         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10172         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10173         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10174         which closes all pipes in pipeSet set
10175         * src/SDCCset.c: free deleted item in function deleteSetItem()
10176         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10177         moved from z80 to src subproject
10178         * .version: increased version number to 2.3.4
10179
10180 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10181
10182         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10183         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10184         * support/regression/ports/xa51/spec.mk: fix typo
10185
10186 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10187
10188         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10189
10190 2003-03-09  Borut Razem <borut.razem AT siol.net>
10191
10192         * src/SDCCmain.c: pipe preprocessor's output
10193         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10194         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10195         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10196         which closes all pipes in pipeSet set
10197         * src/SDCCset.c: free deleted item in function deleteSetItem()
10198         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10199         moved from z80 to src subproject
10200
10201 2003-03-09  Borut Razem <borut.razem AT siol.net>
10202
10203         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10204         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10205         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10206         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10207         * src/SDCCglobl.h: unification of WIN32 native definitions
10208
10209 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10210
10211         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10212
10213 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10214
10215         * src/configure.in:   check for endianess (even while cross-compiling)
10216         * src/configure:      check for endianess (even while cross-compiling)
10217         * src/configure_in.h: check for endianess (even while cross-compiling)
10218         * src/avr/gen.c:        remove old endianess stuff
10219         * src/mcs51/gen.c:      remove old endianess stuff
10220         * src/ds390/gen.c:      remove old endianess stuff
10221         * src/pic/gen.c:        remove old endianess stuff
10222         * src/pic/genarith.c:   remove old endianess stuff
10223         * src/pic/glue.c:       fix endianess check
10224         * src/pic16/gen.c:      remove old endianess stuff
10225         * src/pic16/genarith.c: remove old endianess stuff
10226         * src/pic16/glue.c:     fix endianess check
10227         * src/xa51/gen.c:       remove old endianess stuff
10228         * src/z80/gen.c:        fix endianess check
10229         * src/SDCCglue.c:       fix endianess check
10230         * src/ds390/peeph.def: fix bug 700036
10231
10232 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10233
10234         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10235         * src/configure: find appropriate data-types on host for SDCC's int and long
10236         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10237         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10238         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10239
10240 2003-03-07    <johan AT balder>
10241
10242         Just a big NOOP:
10243                 some minor cleanups before the big shot
10244                 OP_DEFS and OP_USES now use Kevin's protection
10245                 new option --nolabelopt
10246
10247         * src/SDCCBBlock.c:
10248         * src/SDCCast.c,:
10249         * src/SDCCcflow.c:
10250         * src/SDCCcse.c:
10251         * src/SDCCicode.c:
10252         * src/SDCCicode.h:
10253         * src/SDCClabel.c:
10254         * src/SDCCloop.c:
10255         * src/SDCCmain.c:
10256         * src/ds390/ralloc.c:
10257         * src/mcs51/ralloc.c:
10258         * src/pic/ralloc.c:
10259         * src/xa51/ralloc.c:
10260         * src/z80/ralloc.c:
10261
10262 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10263
10264         * src/pic/pcode.c (get_op): fix 64 bit warnings
10265         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10266         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10267         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10268         * support/regression/tests/malloc.c: fix 64 bit warnings
10269
10270 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10271
10272         * src/mcs51/gen.c (genMinus): fixed bug 696436
10273
10274 2003-03-02  Borut Razem <borut.razem AT siol.net>
10275
10276         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10277
10278 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10279
10280         * configure.in: test for mkstemp
10281         * sdccconf_in.h: add HAVE_MKSTEMP
10282
10283 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10284
10285         * device/include/ctype.h: removed warning while using --stack-auto
10286         * device/include/malloc.h: removed warning while using --stack-auto
10287         * device/include/string.h: removed warning while using --stack-auto
10288
10289 2003-02-23  Borut Razem <borut.razem AT siol.net>
10290
10291         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10292         because NDEBUG is defined (see man assert)
10293         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10294
10295 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10296
10297         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10298         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10299
10300 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10301
10302         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10303         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10304
10305 2003-02-18    <johan AT balder>
10306
10307         * as/mcs51/asmain.c (asmbl): module can start with a digit
10308         * as/z80/asmain.c (asmbl): module can start with a digit
10309
10310 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10311
10312         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10313         * src/asm.c: fix pipe() for Mingw32
10314
10315 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10316
10317         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10318         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10319         make -V work again; --c1mode reads now from stdin
10320         * doc/sdccman.lyx: added --c1mode
10321         * support/Util/SDCCerr.c: new messages for c1 mode
10322         * support/Util/SDCCerr.h: new messages for c1 mode
10323         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10324
10325 2003-02-15    <johan AT balder>
10326
10327         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10328
10329 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10330
10331         * doc/sdccman.lyx: Environment variables, -o and other minor things
10332
10333 2003-02-14    <johan AT balder>
10334
10335         * src/xa51/main.c: before anyone really tries to use it :)
10336
10337         * Install doc's in share/sdcc/doc
10338         * removed some obsolete files
10339         * Do a proper make distclean and uninstall
10340         M Makefile.common.in
10341         R sdccbuild.sh
10342         M as/Makefile
10343         M device/include/Makefile.in
10344         M device/lib/Makefile.in
10345         M doc/sdccman.lyx
10346         M link/Makefile
10347         M sim/ucsim/doc/Makefile.in
10348         M src/clean.mk
10349         R src/avr/peeph.rul
10350         R src/xa51/peeph.rul
10351         M support/cpp2/Makefile.in
10352         M support/makebin/Makefile
10353
10354
10355 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10356
10357         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10358
10359 2003-02-10  Borut Razem <borut.razem AT siol.net>
10360
10361         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10362         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10363         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10364         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10365         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10366         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10367         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10368         src/z80/Makefile.bcc: Borland Makefile cleanup
10369         * as/z80/Makefile.bcc: Added Borland Makefile
10370         * support/cpp2/borland.h: Removed
10371
10372 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10373
10374         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10375         * src/SDCC.lex: new pragma NOIV
10376         * src/SDCCglobl.h: new pragma NOIV
10377         * src/SDCCmem.c: new pragma NOIV
10378
10379 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10380
10381         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10382
10383 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10384
10385         * src/SDCCmain.c: signal handling is switched off by --debug
10386         * doc/Makefile: small fix for install; use clean.mk again
10387         * doc/clean.mk: clean *.pdf and *.html too
10388
10389 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10390
10391         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10392         * device/lib/printfl.c: fix a ds390 bug by making it portable
10393         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10394         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10395         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10396         * debugger/mcs51/cmd.c: converted multi-line string literals
10397         * sim/ucsim/globals.cc: converted multi-line string literals
10398         * src/SDCCmain.c: introduced signal handler to remove temp files
10399         * doc/Makefile: small tweaks, implement clean
10400         * doc: removed generated files
10401
10402 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10403
10404         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10405         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10406         Address Record is not correctly generated for DS390."
10407
10408 2003-02-02  Borut Razem <borut.razem AT siol.net>
10409
10410         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10411         * as/mcs51/asm.h: fixed compilation with Borland C
10412         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10413         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10414         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10415         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10416         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10417         src/z80/Makefile.bcc: delete $(LIB) only if exist
10418         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10419
10420 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10421
10422         * device/include/malloc.h: introduced NULL
10423         * device/include/string.h: introduced NULL
10424         * device/include/stdlib.h: introduced NULL
10425         * device/lib/_memcpy.c: removed NULL
10426         * device/lib/_strcat.c: removed NULL
10427         * device/lib/_strchr.c: removed NULL
10428         * device/lib/_strcmp.c: removed NULL
10429         * device/lib/_strcpy.c: removed NULL
10430         * device/lib/_strcspn.c: removed NULL
10431         * device/lib/_strlen.c: removed NULL
10432         * device/lib/_strncat.c: removed NULL
10433         * device/lib/_strncmp.c: removed NULL
10434         * device/lib/_strncpy.c: removed NULL
10435         * device/lib/_strpbrk.c: removed NULL
10436         * device/lib/_strrchr.c: removed NULL
10437         * device/lib/_strspn.c: removed NULL
10438         * device/lib/_strstr.c: removed NULL
10439         * device/lib/_strtok.c: removed NULL
10440         * device/lib/malloc.c: removed NULL, include own header
10441
10442 2003-02-02    <johan AT balder>
10443
10444         * 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
10445         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10446         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10447         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10448         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10449         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10450
10451 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10452
10453         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10454         area 'DATA'"
10455
10456 2003-02-01    <johan AT balder>
10457
10458         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10459
10460 2003-01-31    <johan AT CP255758-A>
10461
10462         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10463
10464 2003-01-30    <johan AT balder>
10465
10466         * src/SDCCBBlock.c: automatic bug detection
10467         * src/SDCCicode.c: automatic bug detection
10468
10469 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10470
10471         * src/SDCCglobl.h:   now --xram-size 0 works
10472         * src/SDCCmain.c:    now --xram-size 0 works
10473
10474 2003-01-29    <johan AT balder>
10475
10476         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10477
10478 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10479
10480         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10481         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10482         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10483         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10484         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10485         * src/SDCCmain.c:    Added options --xram-size and --code-size
10486
10487 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10488
10489         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10490         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10491
10492 2003-01-27    <johan AT balder>
10493
10494         * src/SDCC.y: fixed bug #613764
10495
10496 2003-01-26    <johan AT balder>
10497
10498         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10499         * src/SDCCsymt.h: fixed bug #673374
10500         * src/SDCCglue.c: fixed bug #661910
10501         * src/SDCCast.c: fixed bug #458099 and 673374
10502
10503 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10504
10505         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10506         * as/mcs51/strcmpi.h: added
10507         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10508         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10509         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10510         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10511         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10512         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10513         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10514         * as/mcs51/Makefile.aslink: new module strcmpi
10515         * as/mcs51/Makefile.asx8051: new module strcmpi
10516         * as/mcs51/Makefil.bcc: new module strcmpi
10517         * as/mcs51/Makefile.in: new module strcmpi
10518         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10519
10520 2003-01-26    <johan AT balder>
10521
10522         * src/SDCCglue.c: reverted back to 1.124
10523         * src/SDCCast.c: reverted back to 1.156
10524         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10525
10526 2003-01-25    <johan AT balder>
10527
10528         * src/SDCCglue.c: A better fix for bug #661910
10529         * src/SDCCast.c: A better fix for bug #661910
10530         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10531
10532 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10533
10534         * src/Makefile.in: remove spawn.o
10535         * src/SDCCmain.c: remove spawn.h
10536         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10537         * src/spawn.c: removed
10538         * src/spawn.h: removed
10539         * support/regression/ports/ds390/spec.mk: link with -r
10540
10541 2003-01-24    <johan AT CP255758-A>
10542
10543         * src/ds390/gen.c (aopOp): fixed bug #667458
10544         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10545         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10546         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10547
10548 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10549
10550         * src/mcs51/peeph.def: better assembler identation by Frieder
10551         * src/mcs51/gen.c: better assembler identation by Frieder
10552
10553 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10554
10555         * as/z80/string.h: removed for gcc 3.2
10556         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10557         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10558
10559 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10560
10561         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10562         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10563         * support/regression/Makefile: separate temp files for ports
10564         * support/regression/generate-cases.py: separate temp files for ports
10565         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10566         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10567
10568 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10569
10570         * moved tinitalk to device/examples/ds390
10571
10572 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10573
10574         * as/mcs51/lkmem.c: rflag is for DS390
10575         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10576         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10577                          (linkEdit): move mem- and map-files the same way as ihx-files
10578         * src/z80/main.c (_setDefaultOptions): removed --generic
10579         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10580         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10581         * src/pic/glue.c (picglue): --c1mode works again
10582         * src/pic16/glue.c (pic16glue): --c1mode works again
10583         * src/asm.c (printCLine): fix #660034
10584
10585 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10586
10587         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10588         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10589         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10590         * as/mcs51/lkmem (summary): better fix for sp problem
10591         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10592         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10593         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10594                                               remove --stack-after-data
10595
10596 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10597
10598         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10599         * src/SDCCutil.c (join): ugly bug: missing '\0'
10600         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10601
10602 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10603
10604         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10605         * src/port.h: typo
10606         * src/pic/main.c (_asmCmd): gpasm supports -o
10607         * src/z80/main.c: more general macros
10608         * device/lib/Makefile.in: remove intermediate files
10609
10610 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10611
10612         * .version: Bumped version number to 2.3.3
10613         * src/SDCCBBlock.c: new option -o
10614         * src/SDCCglobl.h: new option -o
10615         * src/SDCCglue.c: new option -o
10616         * src/SDCCmain.c: new option -o
10617         * src/asm.c: new option -o
10618         * src/ds390/main.c: new option -o
10619         * src/pic/glue.c: new option -o
10620         * src/pic/pcode.c: new option -o
10621         * src/pic/ralloc.c: new option -o
10622         * src/pic16/glue.c: new option -o
10623         * src/pic16/pcode.c: new option -o
10624         * src/pic16/ralloc.c: new option -o
10625         * src/z80/main.c: new option -o
10626         * device/lib/Makefile.in: use -o
10627         * support/regression/ports/ds390/spec.mk: use -o
10628         * support/regression/ports/gbz80/spec.mk: use -o
10629         * support/regression/ports/mcs51/spec.mk: use -o
10630         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10631         * support/regression/ports/z80/spec.mk: use -o
10632         * support/regression/ports/ucz80/spec.mk: use -o
10633         * support/regression/ports/xa51/spec.mk: use -o
10634         * support/regression/fwk/lib/timeout.c: fix usage string
10635
10636 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10637         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10638
10639 2003-01-07    <johan AT balder>
10640
10641         * src/SDCCast.c (decorateType): fixed bug #600035
10642
10643 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10644         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10645         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10646         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10647         * src/pic/pcode.c: outcommented unused variable to remove warnings
10648         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10649
10650 2003-01-06    <karl AT turbobit.com>
10651         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10652    regression tests.
10653
10654 2003-01-06    <johan AT balder>
10655
10656         * src/SDCCicode.c: fixed array add
10657
10658 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10659         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10660         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10661
10662 2003-01-04    <johan AT balder>
10663
10664         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10665
10666 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10667         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10668
10669 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10670         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10671         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10672
10673 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10674         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10675
10676 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10677         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10678
10679 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10680         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10681
10682 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10683
10684     * in \sdcc\as\mcs51\ changed these files in order to create an
10685     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10686     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10687     following files to include the previous two files: aslink.dsp,
10688     Makefile.aslink, Makefile.bcc, and Makefile.in.
10689
10690     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10691     .adb instead of .cdb
10692
10693 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10694
10695         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10696         value from option --iram-size.
10697
10698 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10699
10700         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10701         dram[] array.
10702
10703 2002-09-18    <wiml AT hhhh.org>
10704
10705         * SDCClrange.h: exposed setFromRange() and setToRange()
10706         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10707           packRegsForAccUse() (bug 542397)
10708         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10709           multiple times and emitting the fetch operations more than once
10710           added aopGetUsesAcc() function to allow binary operators to
10711           fetch their operands in the correct order; made genMinus() emit
10712           compact code for X = LITERAL - Y
10713
10714 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10715         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10716         sprintf() in line 1267.
10717
10718 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10719         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10720         like ports.
10721
10722 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10723         Changes to aslink (All the changes are marked with 'JCF'):
10724
10725         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10726         summary().
10727
10728         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10729         area BSEG.  Also moves, if possible, the DATA area down into the internal
10730         ram so more space is available.
10731
10732         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10733         sflag.
10734
10735         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10736         not bytes.  Function summary() which creates a memory usage summary
10737         file with extension .mem.  Reports of overlaping stack and small stack
10738         size.  If the space for the stack is less than 16 bytes aslink trows a
10739         warning.
10740
10741         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10742         the 8051.  Option 'y' for memory summary output file.
10743
10744         Changes to sdcc (All the changes are marked with 'JCF'):
10745
10746         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10747
10748         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10749         overlaying area for it (uses RegBankUsed[4]).
10750
10751         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10752         bank zero as used by default.  By default aslink locates the stack
10753         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10754         the creation of the .mem file.  Delegates the allocation of data area
10755         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10756         the begining of the stack area to aslink.
10757
10758         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10759         glue() in SDCCglue.c creates an area for it.
10760
10761 2002-09-03  Borut Razem <borut.razem AT siol.net>
10762         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10763         sdcc/src/pic/glue.c:
10764         introduced atexit() handler for teporay files removal in case of
10765         errors, assertions, ...
10766
10767 2002-08-29  Borut Razem <borut.razem AT siol.net>
10768         * sdcc/support/cpp2/auto-host_vc_in.h:
10769         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10770         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10771         Maybe there is a similar problem with BORLANDC? It should be checked!
10772
10773         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10774         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10775         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10776         was not executed, and the compiler (cl) launched a warning:
10777         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10778
10779 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10780         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10781
10782 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10783         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10784
10785         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10786           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10787           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10788           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10789           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10790           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10791           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10792         - added Release configuration in VS projects
10793         - review of compiler an linker options
10794         - VC .exe files are generated in bin_vc directory, not to interfere
10795           with binaries generated from other projects (cygwin, mingw, bcc ...)
10796
10797         * sdcc/src/yacc.dsp: added
10798
10799         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10800         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10801         and insert the version number definitions from .version
10802
10803         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10804
10805         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10806         added - genarate auto-host.h using auto-host_vc_in.h as template
10807
10808         * sdcc/sdcc_vc.h,
10809         removed from CVS, generated automatically
10810
10811 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10812         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10813
10814 2002-08-11  Borut Razem <borut.razem AT siol.net>
10815         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10816
10817 2002-08-10  Borut Razem <borut.razem AT siol.net>
10818         * src/SDCCmain.c (main):
10819         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10820         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10821         The consequence was that some temporary files were not removed.
10822
10823         * src/SDCCglue.c:
10824         unification of code in functions tempfilename() and tempfile():
10825         function tempnam() is defined in Visual Studio 6.0 and .NET
10826
10827         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10828
10829         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10830           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10831         - removed compiler command line option /WX: Treats all warnings as errors
10832         - update a list of source files, included into the project
10833
10834         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10835           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10836         changed project type to Generic Project so that can be correcly converted to VS.NET project
10837
10838         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10839
10840         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10841
10842         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10843
10844         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10845         added return 0 statements after assert() to make compiler happy
10846
10847         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10848         added newline in the def file to keep MSC compiler satisfied
10849
10850         * sdcc/src/z80/gen.c:
10851         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10852           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10853         - solved MSC error in function aopDump()
10854
10855         * sdcc_vc.h: define PREFIX as "\\sdcc"
10856
10857 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10858         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10859
10860 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10861         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10862         - Rewrote the register banking algorithm.
10863         - Added pCode live-range analysis to registers (for now, only non-used and
10864         singly-used registers optimized away)
10865
10866         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10867
10868         * 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.
10869
10870 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10871         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10872
10873 2002-04-22  Michael Hope  <michaelh AT vroom>
10874
10875         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10876
10877         * configure.in (DD_COPT): Added include support required for gbdk.
10878
10879         * .version: Bumped version number just to increase it.
10880
10881         * src/SDCCmain.c: Added -nostdinc to the default options.
10882
10883 2002-04-15  Michael Hope  <michaelh AT vroom>
10884
10885         * device/lib/z80/printf.c (sprintf): Added.
10886
10887         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10888
10889         * src/z80/peeph.def: Added transpose redundent load rule.
10890
10891         * src/z80/main.c: Added force callee saves for jaune.
10892
10893         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10894
10895         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10896
10897 2002-03-28  Johan Knol  <johan AT balder>
10898
10899         * src/SDCCval.c: fixed bug #532436
10900
10901 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10902         * /src/port.h:
10903         Added "char *Processor" field to the port structure.
10904
10905         * /src/SDCCmain.c:
10906         Added -p option. Allows port dependent processor to be specified.
10907
10908         * all ports:
10909         Initialized the new field char *Processor field to NULL in all ports
10910
10911         * /src/pic/*:
10912         Compiler generated registers for interrupt context saving
10913         were not getting allocated.
10914
10915 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10916
10917         * /src/SDCCast.c:
10918         Fixed left shift. Will promote the left side of a left shift
10919         if a) left shifting more than size of operand or b) when assigned
10920         to something size > size of left side
10921
10922 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10923         * src/pic/*
10924         tons of changes. Register allocation has been
10925         rewritten. Added customization for the various PICs. Flow
10926         analysis is restructured. ...
10927
10928         * src/pic/device.h:
10929         Added
10930
10931         * src/pic/device.c:
10932         Added. device.c is a PIC port hack to accomodate variations
10933         in PIC devices.
10934
10935 2002-03-13  Michael Hope  <michaelh AT vroom>
10936
10937         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10938
10939 2002-03-04  johanknol  <johanknol AT manik>
10940
10941         * /src/SDCCval.c: fixed
10942
10943         const unsigned char arr[][2] = { { 0, 1 } };
10944         t18.c:1: error: Initializer element is not constant
10945
10946 2002-03-04  bela  <bela AT manik>
10947
10948         * /device/include/mcs51reg.h:
10949         ds89c420 register definition update
10950
10951 2002-03-03    <johan AT FRIJA>
10952
10953         * support/Util/SDCCerr.c: did something, but don't no why anymore
10954
10955         * support/regression/tests/bug-524691.c: made it a little less shy
10956
10957         * src/SDCCast.c (decorateType): fixed bug #524697
10958
10959         * src/SDCCast.c: made some lineno improvements
10960
10961         * src/SDCCval.c (getNelements): changed warning to error
10962
10963         * src/SDCCglue.c (printIvalArray): changed warning to error
10964
10965         * src/SDCCicode.c: fixed a warning for mingw
10966
10967         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10968
10969         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10970
10971 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10972
10973         * src/ds390/peeph.def:
10974         Added some more peephole rules
10975
10976         * src/ds390/gen.c: Various fixes & enhancements
10977
10978         * src/SDCClrange.c, src/SDCClrange.h:
10979         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10980
10981         * src/ds390/ralloc.c:
10982         various fixes & enhancements (ds390) specific
10983
10984         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10985         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10986         from rallocs.
10987
10988         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10989
10990 2002-03-02    <johan AT FRIJA>
10991
10992         * src/SDCCast.c (decorateType): fixed bug #524708
10993
10994         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10995
10996         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10997
10998 2002-03-01  Michael Hope  <michaelh AT vroom>
10999
11000         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
11001
11002         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
11003
11004 2002-03-01    <johan AT FRIJA>
11005
11006         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
11007
11008         * src/SDCCast.c (decorateType): fixed bug #524209
11009
11010         * src/SDCCval.c (valNot): fixed bug #524195
11011
11012 2002-02-26    <johan AT balder>
11013
11014         * src/xa51/gen.c: fixed a warning
11015
11016         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
11017
11018         * src/SDCCast.c (decorateType): fixed bug #522534
11019
11020 2002-02-23    <johan AT balder>
11021
11022         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
11023
11024 2002-02-22    <johan AT balder>
11025
11026         * src/SDCCast.c: fixed bug #514865
11027
11028         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11029
11030 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11031
11032         * sdcc/src/SDCCloop.c:
11033         Previous fix was not good. basic blocks that have "break" or "return" are
11034         not really partof a loop , but live ranges used in these blocks should
11035         be live thru the entire loop, so set partOfLoop but don't add them to
11036         loop region
11037
11038 2002-02-21    <johan AT FRIJA>
11039
11040         * src/SDCCcse.c: fixed bug #514308
11041
11042 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11043
11044         * src/SDCCloop.c:
11045         Fixed BUG #519583. If a conditional block ended in a return/break
11046         statement inside a loop, it was not being considered part of the loop.
11047
11048         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11049
11050 2002-02-10  Karl Bongers <karl AT turbobit.com>
11051
11052         * debugger/*:
11053         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11054         with lots of comments and notes.
11055
11056         * device/examples/test2.c:
11057         Fix bug, "red" variable not being initialized(compiler complained).
11058
11059         * device/examples/Makefile, examples/test3.c:
11060         Add Makefile in device/examples folder, compiles test3.c
11061         for use as a multiple module SDCDB test case.
11062
11063         * sim/ucsim/cmd.src/cmdset.cc:
11064         Took out debug printfs in ucsim "next" command.
11065
11066         * sim/ucsim/xa.src:
11067         Karl and Johan start ucsim XA support.  Most dissassembly working,
11068         about 75% emulation done(plenty of work remaining).
11069
11070         * sim/ucsim/z80.src:
11071         Add Z80 support to ucsim, add test-ucz80 regression test,
11072         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11073         Notice z80 compiler fails on examples/test3.c/crc code.
11074
11075 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11076
11077         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11078         Added support for --parms-in-bank1
11079
11080         * src/ds390/peeph.def:
11081         added a few more peephole optimzations
11082
11083         * src/ds390/main.c:
11084         1) added __builtin_inp & __builtin_outp used to read in data of given length
11085            from a memory mapped port
11086         2) added __builtin_memcmp
11087         3) added __builtin_swapw swap bytes of a short
11088
11089         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11090         1) handle multiple send & receives from register bank1
11091         2) ralloc can now allocate DPTR1 to some liveRanges
11092
11093         * src/SDCCsymt.c, src/SDCCsymt.h:
11094         changes to handle multiple sends & receives
11095
11096         * src/SDCCptropt.h:
11097         added some pointer arithmetic optimization
11098
11099         * src/SDCCptropt.c:
11100         added some pointer arithmetic optimizations but not stable yet so not
11101         called from anywhere (will get this working shortly)
11102
11103         * src/SDCCopt.c: fixed for multiple sends & receives
11104
11105         * src/SDCCmain.c:
11106         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11107         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11108            set preprocessor defines (depending on options)
11109
11110         * src/SDCCicode.c, src/SDCCicode.h:
11111         changes made to handle multiple sends & receives
11112
11113         * src/SDCCglobl.h:
11114         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11115
11116         * src/SDCCcse.c, src/SDCCcse.h:
11117         added function findbackward def (to be used in upcoming optimization)
11118
11119         * src/SDCCcflow.c, src/SDCCcflow.h:
11120         added function returnAtEnd - to determine if a basic block terminates with
11121         a RETURN iCode
11122
11123         * src/SDCCast.c, src/SDCCast.h:
11124         added option parms-in-bank1
11125
11126         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11127         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11128         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11129         adjusted for --parms-in-bank1 option
11130
11131         * device/include/string.h:
11132         donot redefine "reentrant" keyword
11133
11134         * device/include/ds80c390.h: Added some more SFRs
11135
11136 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11137
11138         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11139
11140 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11141
11142         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11143
11144 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11145
11146         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11147
11148 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11149
11150         * Added --xram-movc option
11151
11152 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11153
11154         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11155
11156 2002-01-11  Johan Knol
11157
11158         * Added math lib of Jesus Calvino-Fraga
11159
11160 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11161
11162         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11163         * support/regression/Makefile: new target test-mcs51-stack-auto
11164         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11165
11166 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11167
11168         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11169
11170 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11171
11172         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11173
11174 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11175
11176         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11177
11178         * src/SDCCglue.h: add definition for printIvalChar()
11179
11180 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11181
11182         * src/SDCCast.c: fix #498138 by Johan
11183
11184         * src/SDCCglue.c: fix #498138 by Johan
11185
11186 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11187
11188         * support/regression/Makefile: fix clean
11189
11190         * support/regression/ports/ds390/support.c: fix transmission of last character
11191
11192 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11193
11194         * /sdcc/src/ds390/gen.c:
11195         a) improved computing address of stack variable
11196         b) took out some #if 0 code
11197         c) improved parmBytes adjustment
11198         d) improved genPlusIncr & genMinusIncr
11199         e) genCmp could generate bad code (when left assigned to DPTR)
11200         f) Fixed bug in hasInc
11201
11202         * /sdcc/src/ds390/ralloc.c:
11203         a) packRegsForSupport could mess up live information (Fixed)
11204         b) packRegsDPTRuse could be incorrect for left & right shift
11205
11206         * /sdcc/src/mcs51/ralloc.c:
11207         packRegsForSupport could mess up the live information (Fixed)
11208
11209         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11210
11211         * /sdcc/src/SDCCast.c:
11212         can reverse a loop even if function call is present as long
11213         as the loop control variable is local & is not passed as parameter
11214
11215 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11216
11217         * /sdcc/ChangeLog: *** empty log message ***
11218
11219         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11220         More builtin function additions for TININative
11221
11222         * /sdcc/src/ds390/ralloc.c:
11223         Had broken the regression testsuite
11224
11225         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11226
11227         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11228         Added funcattr hasStackParms will be set for reentrant functions when there
11229         are paramteres on the stack, this helps in minimizing frame pointer generation
11230         typeFromStr can handle function pointers now
11231
11232         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11233         *** empty log message ***
11234
11235 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11236
11237         * /src/ds390/gen.c, /src/ds390/main.c:
11238         More builtin function additions for TININative
11239
11240         * /src/ds390/ralloc.c:
11241         Had broken the regression testsuite
11242
11243         * /src/SDCCast.c: Fixed a bug in dumptree
11244
11245         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11246         Added funcattr hasStackParms will be set for reentrant functions when there
11247         are paramteres on the stack, this helps in minimizing frame pointer generation
11248         typeFromStr can handle function pointers now
11249
11250         * /doc/builtins.txt, /doc/TININative.txt:
11251         *** empty log message ***
11252
11253
11254 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11255
11256         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11257         ALPHA version for -mTININative
11258
11259         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11260         updated to reflect changes in the port structure
11261
11262         * /src/port.h:
11263         added function do_assemble (similar to do_link) if non-null this function
11264         will be called to do assembly (-mTININative) requires a multi command
11265         assembly
11266         added function genAssemblerEnd will be called to generate assembler Epilogue
11267
11268         * /src/SDCCsymt.c:
11269         added _JavaNative to debug info printing
11270
11271         * /src/SDCCmain.c: added option --tini-libid
11272         added port->do_assemble function (-mTININative) has a multi command assemble
11273
11274         * /src/SDCCglue.c: Disabled "constExpr" check
11275         added port->genAssemblerEnd function
11276
11277         * /src/SDCCglobl.h: Added option --tini-libid value
11278
11279         * /src/SDCCast.h:
11280         tookout optimizeCompare from the header (has no external references)
11281
11282         * /src/SDCCast.c: made one more function "static"
11283
11284 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11285
11286         * src/z80/mappings.i: Added z80asm support.
11287
11288         * src/z80/main.c: Added z80asm support on --asm=z80asm
11289
11290         * src/z80/gen.c: Fixed asm portability issues.
11291
11292         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11293
11294         * src/SDCCglue.c (printExterns): Added global/extern split.
11295
11296 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11297
11298         * support/regression/Makefile: added test for mcs51 model large
11299
11300         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11301
11302         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11303
11304 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11305
11306         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11307
11308 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11309
11310         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11311
11312         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11313
11314 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11315
11316         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11317
11318         * support/regression/tests/simplefloat.c: Port to mcs51.
11319
11320 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11321         * support/regression/tests/bug-485362.c: Added.
11322
11323         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11324
11325         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11326
11327         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11328
11329         * src/z80/gen.c (aopDump): Added a dump function.
11330
11331 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11332         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11333
11334         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11335
11336         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11337
11338         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11339
11340         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11341
11342         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11343
11344         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11345
11346         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11347
11348         * support/regression/ports/ds390/support.c: Use tinibios.
11349
11350         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11351
11352 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11353
11354         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11355         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11356
11357         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11358
11359         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11360
11361 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11362
11363         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11364
11365         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11366         (packRegsForIYUse): Created and optimised.
11367
11368 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11369
11370         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11371 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11372
11373         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11374
11375         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11376
11377         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11378
11379 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11380
11381         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11382
11383         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11384
11385 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11386
11387         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11388
11389         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11390
11391         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11392
11393 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11394
11395         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11396         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11397         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11398
11399         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11400
11401         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11402         (genNotFloat): Added.
11403         (genUminusFloat): Added.
11404
11405         * device/lib/z80/Makefile: Added floating pt stubs.
11406
11407         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11408
11409         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11410
11411         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11412
11413 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11414
11415         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11416
11417         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11418
11419         * sdcc/support/regression/Makefile: Add port ds390.
11420
11421         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11422
11423         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11424
11425         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11426
11427         * sdcc/support/regression/ports/ds390/support.c: Added.
11428
11429         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11430
11431         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11432
11433         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11434
11435 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11436
11437         * device/include/malloc.h: Added z80 and gbz80 support.
11438
11439         * device/lib/gbz80/heap.s: Added.
11440
11441         * device/lib/z80/heap.s: Added.
11442
11443         * device/lib/malloc.c: Added z80 and gbz80 support.
11444
11445         * support/regression/tests/malloc.c (testMalloc): Added.
11446
11447         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11448
11449         * support/regression/tests/bug-478094.c: Added.
11450
11451         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11452
11453 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11454
11455         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11456
11457         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11458
11459         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11460
11461         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11462
11463         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11464
11465 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11466
11467         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11468
11469 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11470
11471         * support/regression/tests/bug-477927.c: Added.
11472
11473         * src/z80/peeph.def: Added minor rules.
11474
11475         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11476
11477         * src/z80/peeph.def: Added jump optimisation modification.
11478
11479 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11480
11481         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11482
11483 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11484
11485         * support/regression/tests/funptrs.c: Added.
11486
11487 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11488
11489         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11490
11491 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11492
11493         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11494
11495         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11496
11497         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11498         (movLeft2ResultLong): Created.
11499
11500         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11501         (joinPushes): Added.  Joins two char pushes into a word push.
11502
11503 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11504
11505         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11506
11507         * support/makebin/Makefile (install): Added creation of dest dir.
11508
11509 2001-10-24 Karl Bongers <karl AT turbobit.com>
11510
11511         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11512
11513 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11514
11515         * src/z80/ralloc.c: Turned off faulty pack for one use.
11516
11517         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11518
11519         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11520
11521 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11522
11523         * support/regression/Makefile: Improved clean
11524
11525         * support/regression/ports/gbz80/spec.mk: Added clean
11526
11527         * support/regression/ports/host/spec.mk: Added clean
11528
11529         * support/regression/ports/z80/spec.mk: Added clean
11530
11531         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11532
11533         * support/regression/ports/mcs51/timeout.c: little improvements
11534
11535 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11536
11537         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11538
11539         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11540
11541         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11542
11543 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11544
11545         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11546
11547         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11548
11549 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11550         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11551
11552         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11553
11554         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11555
11556         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11557
11558         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11559
11560         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11561
11562         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11563
11564         * support/regression/tests/longor.c: Added.
11565
11566 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11567
11568         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11569
11570         * as/mcs51/aslink.h: define PATH_MAX
11571
11572         * as/mcs51/asm.h: define PATH_MAX
11573
11574         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11575
11576         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11577
11578         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11579
11580         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11581
11582         * src/SDCCglobl.h: define PATH_MAX
11583
11584         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11585
11586         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11587
11588 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11589
11590         * src/z80/gen.c (gencjneshort): Fixed
11591
11592         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11593
11594 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11595
11596         * support/regression/tests/bug-469671.c: Added.
11597
11598         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11599
11600 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11601
11602         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11603
11604         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11605
11606 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11607
11608         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11609
11610         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11611
11612         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11613
11614         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11615
11616         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11617
11618         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11619
11620         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11621
11622 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11623
11624         * 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.
11625
11626         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11627
11628         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11629
11630 2001-10-07    <johan AT FRIJA>
11631
11632         * device/lib/gets.c (gets): fixed the return value.
11633
11634 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11635         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11636
11637         * 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.
11638
11639         * 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.
11640
11641         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11642
11643         * src/pic/gen.c: Removed Safe_strdup.
11644
11645         * configure.in: Added option to enable libgc support.
11646
11647         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11648         (bitVectUnion): Optimised.
11649         (bitVectIntersect): Optimised.
11650         (bitVectBitsInCommon): Optimised.
11651         (bitVectCplAnd): Optimised.
11652
11653         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11654
11655 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11656
11657         * src/SDCCmain.c: distinguish between assembler debug and plain options
11658
11659         * src/avr/main.c:   remove standard assembler options
11660
11661         * src/ds390/main.c: remove standard assembler options
11662
11663         * src/mcs51/main.c: remove standard assembler options
11664
11665         * src/port.h: removed "PENDING" comment
11666
11667 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11668
11669         * src/device/lib/_mulint.c  : new, with assember functions
11670
11671         * src/device/lib/_mullong.c : new, with assember functions
11672
11673         * src/device/lib/_divuint.c : with assember functions
11674
11675         * src/device/lib/_divsint.c : with assember functions
11676
11677         * src/device/lib/_divulong.c: with assember functions
11678
11679         * src/device/lib/_divslong.c: with assember functions
11680
11681         * src/device/lib/_moduint.c : with assember functions
11682
11683         * src/device/lib/_modsint.c : with assember functions
11684
11685         * src/device/lib/_modulong.c: with assember functions
11686
11687         * src/device/lib/_modslong.c: with assember functions
11688
11689         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11690
11691         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11692
11693         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11694                                       replaced _mululong.c and _mulslong.c by _mullong.c
11695
11696 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11697
11698         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11699
11700 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11701
11702         * src/SDCCglue.c: test, if win32api is available for MINGW
11703
11704 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11705
11706         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11707         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11708         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11709         * support/regression/ports/host/spec.mk: removed GENERIC
11710         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11711         * support/regression/ports/z80/spec.mk: removed GENERIC
11712
11713 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11714
11715         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11716
11717         * support/regression/tests/bug-467035.c: Created.
11718
11719 2001-10-01    <johan AT FRIJA>
11720
11721         * src/SDCC.y: fixed bug #466586 part 1
11722
11723 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11724
11725         * SDCCicode.c: z80 has no generic pointers
11726         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11727
11728 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11729
11730         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11731
11732 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11733
11734         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11735
11736         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11737
11738 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11739
11740         * configure.in: Fixed up so that ucsim is only configured once.
11741
11742         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11743
11744         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11745         (getPathDifference): As above.
11746
11747         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11748
11749         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11750
11751 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11752         * .version: Updated to 2.3.1
11753
11754         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11755         Added copyright header.
11756
11757         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11758         (assemble): Added support for macro based assembler commands.
11759         (linkEdit): Added support for macro based linker commands.
11760         (preProcess): Changed the pre-processor to use macros.
11761         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11762         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11763
11764         * device/lib/z80/crt0.s: Added module name for debugging.
11765
11766 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11767
11768         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11769
11770         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11771
11772         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11773
11774         * src/Makefile.in: Added SDCCmacro and SDCCutil
11775
11776 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11777
11778         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11779
11780 2001-09-16    <johan AT FRIJA>
11781
11782         * 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.
11783
11784 2001-09-15    <johan AT FRIJA>
11785
11786         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11787         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11788
11789 2001-09-11    <johan AT FRIJA>
11790
11791         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11792
11793 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11794
11795         * support/regression/tests/bug-460444.c: Added test case.
11796
11797         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11798         (genCast): Added justification for all of the asserts.
11799
11800 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11801
11802         * support/regression/support.c: _xdata replaced by xdata
11803
11804         * support/regression/spec.mk: removed _generic
11805
11806 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11807
11808         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11809
11810         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11811         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11812
11813         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11814
11815         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11816
11817         * support/regression/tests/bug-460010.c: Added test case.
11818
11819         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11820
11821 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11822
11823         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11824
11825         * support/regression/testfwk.c: removed workaround for bug #436344
11826
11827         * support/regression/tests/bp.c: use less memory with mcs51
11828
11829         * support/regression/tests/bug-441448.c: use less memory
11830
11831         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11832
11833         * support/regression/collate-results.py: typo
11834
11835 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11836
11837         * support/regression/tests/fetchoverlap.c: Added new test case.
11838
11839         * support/regression/tests/bp.c: Added new test case.
11840
11841         * support/regression/tests/bug-448984.c: Added new test case.
11842
11843         * support/regression/tests/pow2shifts.c: Added new test case.
11844
11845         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11846         (genlshTwo): Fixed right shift for count > 8.
11847
11848         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11849
11850 2001-09-08    <johan AT FRIJA>
11851
11852         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11853
11854 2001-09-07    <johan AT FRIJA>
11855
11856         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11857
11858         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11859
11860 2001-09-06    <johan AT FRIJA>
11861
11862         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11863         * bernhard noted me at this: "() equals to (void)" (1.38)
11864
11865 2001-09-05    <johan AT FRIJA>
11866
11867         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11868
11869 2001-09-04    <johan AT FRIJA>
11870
11871         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11872
11873
11874 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11875
11876         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11877
11878 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11879
11880         * link/z80/aslink.h: Fixed path for PATH_MAX
11881
11882 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11883
11884         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11885
11886         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11887
11888         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11889
11890         * 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.
11891
11892 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11893
11894         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11895         (genCmp): Fixed up genCmp for the GB with longs.
11896
11897         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11898
11899         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11900
11901         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11902
11903         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11904
11905 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11906
11907         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11908
11909 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11910
11911         * 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.
11912
11913         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11914
11915 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11916
11917         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11918
11919         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11920
11921 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11922
11923   * sim/ucsim/configure:    little improvement of Cygwin-detection
11924   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11925   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11926   * support/regression/tests/bug-221100.c: small changes for mcs51
11927   * support/regression/tests/bug-221168.c: small changes for mcs51
11928   * support/regression/tests/bug-227710.c: small changes for mcs51
11929   * support/regression/tests/staticinit.c: small changes for mcs51
11930   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11931   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11932   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11933
11934 $Revision$