* support/regression/valdiag/tests/switch.c,
[fw/sdcc] / ChangeLog
1 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
2
3         * support/regression/valdiag/tests/switch.c,
4         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
5         * support/regression/tests/libmullong.c: fixed for host
6         * support/regression/ports/host/spec.mk: disable all warnings for host,
7         SDCC runs with --less-pedantic too
8
9 2006-07-03 Borut Razem <borut.razem AT siol.net>
10
11         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
12           defined CPPFLAGS
13         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
14         * src/avr/Makefile.in, rc/ds390/Makefile.in, src/ds400/Makefile.in,
15           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
16           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
17           include ../port.mk
18         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
19           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
20           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
21           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
22
23 2006-07-02 Raphael Neider <rneider AT web.de>
24
25         * src/pic16/devices.inc,
26         * device/include/pic16/pic18fregs.h,
27         * device/include/pic16/pic18f4550.h,
28         * device/lib/pic16/pics.all,
29         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
30
31 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
32
33         * as/hc08/lkaomf51.c (OutputName),
34         * as/mcs51/lkaomf51.c (OutputName),
35         * as/z80/asmain.c (asmbl),
36         * src/ds390/main.c (asmLineNodeFromLineNode),
37         * src/hc08/ralloc.c (hc08_assignRegisters),
38         * src/mcs51/main.c (asmLineNodeFromLineNode),
39         * src/xa51/ralloc.c (checkRegMask),
40         * src/xa51/gen.c (emitcode),
41         * src/z80/gen.c (_emit2),
42         * src/SDCCast.c (searchLitOp),
43         * src/SDCCglobl.h,
44         * support/packihx/packihx.c,
45         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
46         * src/ds390/gen.c (aopPutUsesAcc),
47         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
48         * support/regression/tests/libmullong.c (mullong_wrapper),
49         * src/SDCCsymt.c (powof2),
50         * src/SDCCast.c,
51         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
52         * src/SDCCsymt.h: added TYPE_TARGET_*
53         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
54         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
55         SDCCast because 1) header problems 2) this is the right place
56         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
57         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
58         prototype
59
60 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
61
62         * src/SDCCicode.h: removed buggy semicolon in unused macro
63         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
64         search for previous definiton of auto symbols too,
65         (findPrevUse): fixed logic of emitWarnings
66
67 2006-06-26 Raphael Neider <rneider AT web.de>
68
69         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
70           PCLATH and PCLATU on interrupts, potentially fixes #1505141
71
72 2006-06-25 Raphael Neider <rneider AT web.de>
73
74         * device/lib/pic/libm: NEW, added math library functions
75         * device/lib/pic/libsdcc: NEW; added float support functions
76         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
77         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
78           NEW, added math related headers
79         * device/include/asm/pic/features.h: NEW
80         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
81           (popGet): allow larger offsets for AOP_PCODE,
82           (genDataPointerSet): handle literals explicitly, more debug output,
83           (genAssign): fixed for float using aopLiteral ;-)
84         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
85           GOTO initialisation routine
86         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
87           flag on registers, fixes #1469043 (local variables do not work)
88         * src/pic/main.c (_pic14_do_link),
89         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
90           available
91
92 2006-06-25 Borut Razem <borut.razem AT siol.net>
93
94         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
95           characters printed (not including the trailing '\0' used to end
96           output to strings). Problem detected in regression test bug-927659.c.
97           NOTE: printf() family functions should return int instead
98           unsigned int!
99         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
100           specifier are printed as themselves
101         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
102           support flags, width and precision specifiers
103
104 2006-06-24 Borut Razem <borut.razem AT siol.net>
105
106         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
107           to the list of sdcc tagrets not supporting bit type
108         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
109           testfor pic16 due to bug:
110           [ 1511794 ] pic16: regression test bug-895992.c fails
111
112 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
113
114         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
115         * src/SDCCglue.c (initPointer), fixed bug 1496419
116         * support/regression/tests/bug1496419.c: new, added
117
118 2006-06-22 Borut Razem <borut.razem AT siol.net>
119
120         * support/regression/ports/pic16/support.c: use gpsim usart module from
121           libgpsim_modules library
122
123 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
124
125         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
126         IP0H to IPH0.
127
128 2006-06-19 Raphael Neider <rneider AT web.de>
129
130         * src/pic/glue.h,src/pic16/glue.h: added prototypes
131         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
132           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
133           (pic14printExterns,pic14printPublics,pic16printPublics,
134           pic16_printExterns): use new functions to emit symbols
135           (picglue,pic16glue): emit publics before emitting externs
136         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
137           locally defined functions to avoid bug #1443651
138         * support/regression/tests/bug-716242.c: removed pic16 workaround
139         * support/regression/ports/pic16/spec.mk: ignore errors during build
140
141 2006-06-19 Raphael Neider <rneider AT web.de>
142
143         * src/pic/glue.h: added pic14aopLiteral prototype
144         * src/pic/glue.c (pic14aopLiteral): return unsigned int
145         * src/pic/gen.c: removed stdint.h dependency
146           (aopGet): use Safe_strdup()
147           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
148           (genDataPointerSet): use pic14aopLiteral()
149         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
150           for pic16; thanks to Bernhard and Maarten
151
152 2006-06-18 Borut Razem <borut.razem AT siol.net>
153
154         * support/regression/tests/structflexarray.c: flexible array members
155           not supported by gcc < 3
156         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
157           GUI tool by default
158         * src/pic/gen.c: don't include [p]strdin.h on solaris
159         * support/Util/pstdint.h: addad svn attributes
160         * support/regression/tests/constantRange.c,
161           support/regression/tests/rotate.c: include inttypes.h instead
162           stdint.h on solaris, addad svn attributes
163
164 2006-06-18 Raphael Neider <rneider AT web.de>
165
166         * src/SDCCsymt.c (initCSupport): change return type of divschar to
167           int for PIC16
168         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
169           (pic16_genMinusBits): simplified sign-extension
170           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
171             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
172             adjusted to correctly handle mixed-signed operands, disabled
173             now unused multiplciation routines
174         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
175           (assignResultValue): added argument denoting the size of the result
176             as returned by the function (fixes upcasts in assigning from
177             function calls: char foo(); int i = foo();)
178           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
179             function result to assignResultValue
180           (genMult): disabled inlined multiplication code
181           (genDiv): augmented to also handle the modulus operator, fixed to
182             handle mixed-signed operands correctly
183           (genMod): simply call genDiv, disabled unused code
184           (genAssign): fixed missing (sign-)extension on result
185         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
186             valid char operands, allow signed operands for native code, added
187             division and modulo operator handling
188         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
189
190         As a consequence, onebyte.c (if split into two files) and muldiv.c
191         pass regression tests.
192
193 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
194
195         * doc/Makefile.in: two runs of makeindex seem needed to get
196         correct page references in the index of sdccman.pdf
197         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
198
199 2006-06-17 Borut Razem <borut.razem AT siol.net>
200
201         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
202
203 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
204
205         * doc/sdccman.lyx: updated, added (porting source code, debugging),
206         mentioned ec2drv and paulmon
207
208 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
209
210         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
211           consecutive abs areas
212           (find_empty_space, allocate_space): added map to handle codemap or
213            xdatamap,
214           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
215            absolute idata and xdata
216         * as/mcs51/lkmem.c (summary2): updated legend
217
218 2006-06-16 Raphael Neider <rneider AT web.de>
219
220         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
221
222 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
223
224         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
225           1208515
226         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
227
228 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
229
230         * src/port.h (struct PORT): added field gp_tags, to hold the tag
231         value of generic pointers,
232         * src/avr/main.c,
233           src/ds390/main.c,
234           src/hc08/main.c,
235           src/izt/i186.c,
236           src/izt/tlcs900h.c,
237           src/mcs51/main.c,
238           src/pic/main.c,
239           src/pic16/main.c,
240           src/xa51/main.c,
241           src/z80/main.c: PORT structure, added elements for gp_tags field,
242         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
243         fields in the PORT structure of each port,
244         * src/SDCCast.c (decorateType): allow processing of generic pointers
245         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
246         S_FIXED symbols
247
248 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
249
250         * link/z80/lkgb.c,
251         * link/z80/lkgg.c,
252         * src/pic16/gen.c,
253         * src/pic16/main.c,
254         * src/pic16/pcode.c,
255         * src/pic/main.c,
256         * src/pic/pcoderegs.c,
257         * src/SDCCicode.c,
258         * src/SDCCmain.c,
259         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
260           bug 1504689 on minGW
261
262 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
263
264         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
265
266 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
267
268         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
269
270 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
271
272         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
273           for optimization
274
275 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
276
277         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
278         to a char variable. Fixed bug #1504211
279         * device/include/pic16/adc.h,
280         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
281         and fixed bug #1364390
282
283 2006-06-10 Borut Razem <borut.razem AT siol.net>
284
285         * CVSROOT: removed the CVS left-over
286
287 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
288
289         * as/hc08/asmain.c (asexit),
290         * as/hc08/lkmain.c (lkexit),
291         * as/mcs51/asmain.c (asexit),
292         * as/mcs51/lkmain.c (lkexit),
293         * src/SDCCglue.c (DEFSETFUNC),
294         * src/SDCCmain.c (linkEdit, assemble),
295         * support/librarian/sdcclib.c (AddRel),
296           replaced unlink() by standard C remove()
297         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
298         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
299           gatherImplicitVariables): new, added to fix bug 608752,
300           (createFunction): added gatherImplicitVariables()
301         * src/SDCCast.h: added createRMW prototype
302         * src/SDCCsymt.h (struct symbol): added infertype
303         * support/regression/tests/bug608752.c: new, added
304
305 2006-06-10 Raphael Neider <rneider AT web.de>
306
307         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
308           multibyte dummy reads (fixes #1503234)
309
310 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
311
312         * device/include/mcs51/compiler.h: new, added header file to enable
313           creating common sfr definition header files for different compilers
314
315 2006-06-05 Raphael Neider <rneider AT web.de>
316
317         * src/pic16/{pcode.h,genarith.c}:
318           introduced pCodeOp combining any two pCodeOps (previously only
319           two register operands could be combined), removed pcop2 from
320           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
321         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
322         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
323           rewritten to use new PO_TWO_OPS
324         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
325         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
326           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
327           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
328           (pic16_get_op): embraced return arg to allow #define return(x),
329             added new case for combined opcodes
330           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
331           (pic16_pCode2str,pic16_getRegFrompCodeOp,
332            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
333
334 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
335
336         * src/SDCCval.c (checkConstantRange): added
337         * src/SDCCval.h: added checkConstantRange
338         * support/Util/SDCCerr.c,
339         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
340         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
341         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
342         * src/SDCCast.c (decorateType): added checkConstantRange,
343         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
344         can be emitted with the correct always true/false warning,
345         added optimization for double '!';
346         result of decorateType() must be assigned back to the tree, because
347         decorateType() can change the tree
348         * src/SDCCicode.c (geniCodeLogic),
349         (geniCodeAssign): replaced new checkConstantRange, added warnings,
350         (checkConstantRange): removed, it was only a fragment which never
351         emitted a warning
352         * src/SDCCsymt.c (computeType): fixed promotion for
353         "-1 < (unsigned bit) b"
354         * src/pic/ralloc.c (packRegsForAssign),
355         * src/pic16/ralloc.c (packRegsForAssign),
356         * src/hc08/ralloc.c (packRegsForAssign),
357         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
358         from mcs51
359         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
360         * support/regression/tests/constantRange.c: added
361         * support/valdiag/tests/constantRange.c: added
362         * support/valdiag/valdiag.py: added -DPORT_HOST=1
363
364 2006-06-02 Borut Razem <borut.razem AT siol.net>
365
366         * support/regression/ports/pic16/support.c: increase stack size
367           to 255 bytes
368         * support/regression/Makefile.in: sort tests by name so that the
369           resutlts can be compared on different machines / platforms
370
371 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
372
373         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
374         * src/ds390/gen.c (emitLabel): new, added,
375           (genDjnz): fixed stack overflow bug,
376           (throughout): cosmetic changes to sync with mcs51/gen.c,
377           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
378         * src/mcs51/gen.c (genEndFunction): small optimization,
379           (throughout): cosmetic changes to sync with ds390/gen.c
380
381 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
382
383         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
384           (_print_format): fixed printing pointers
385         * src/mcs51/gen.c (emitLabel, movb): new, added,
386           (genAssign): small optimization,
387           (genDjnz): fixed stack overflow bug,
388           (throughout): replaced sprintf with SNPRINTF,
389           replaced mcs51_regWithIdx with REG_WITH_INDEX,
390           replaced emitcode("mov", "b,...") with MOVB(...),
391           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
392           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
393         * src/mcs51/peeph.def: added rules 140 and 264
394         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
395           so they may get optimized into registers
396
397 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
398
399         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
400           immediately when encountered,
401           (printUsage): always use stderr even on windows
402
403 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
404
405         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
406         (processParms): fixed bug #1247551
407         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
408         parseCmdLine, main): print '--version' to stdout,
409         print 'help' to stdout if --help is given,
410         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
411         arguments are given; fixed --help
412
413 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
414
415         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
416         * support/regression/tests/bug-1493710.c: added
417
418 2006-05-27 Borut Razem <borut.razem AT siol.net>
419
420         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
421           static instead auto
422         * support/regression/ports/pic16/support.c: increase stack size
423           from default 64 bytes to 128 bytes
424         * support/regression/tests/staticinit.c,
425           support/regression/tests/float.c: regression tests fully enabled
426           for pic16 port by putting the initialized data arrays into the code
427           section
428         * support/regression/ports/pic16/spec.mk: don't link default libraries.
429           This was changed by mistake in the previous version.
430
431 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
432
433         * src/pic16/gen.c (genFunction, genEndFunction): some
434         beautifications, fixed bug with falsely restoring FSR2 in large
435         stack model, thanks to Beau E. Cox for reporting the bug
436
437 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
438
439         * debugger/mcs51/break.c,
440         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
441           use %p to print pointers, made address variables unsigned
442         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
443         * debugger/mcs51/symtab.c (parseSymbol): must return something
444         * src/mcs51/gen.c (aopForSym): small optimization,
445            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
446           (freeAsmop): added missing break,
447           (aopPut): removed parameter bvolatile, determine it inside the function,
448           (saveRegisters, unsaveRegisters): small optimization,
449           (genIpush): removed pointless check,
450           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
451           replaced sprintf with SNPRINTF,
452           replaced strcpy with strncpyz,
453           updated aopPut calls,
454           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
455         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
456
457 2006-05-24 Borut Razem <borut.razem AT siol.net>
458
459         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
460           modification of test for the pic16 port, put the array to the code
461           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
462
463 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
464
465         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
466         * support/Util/pstdint.h: added
467
468 2006-05-22 Borut Razem <borut.razem AT siol.net>
469
470         * src/regression/Makefile: removed bool2.c test, added -q linker option
471         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
472           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
473           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
474           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
475           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
476           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
477           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
478           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
479           define SUPPORT_BIT_TYPES 0, removed unused bit variables
480
481 2006-05-22 Raphael Neider <rneider AT web.de>
482
483         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
484           bug #1492360 (problematic due to generic pointers, see code)
485
486 2006-05-22 Borut Razem <borut.razem AT siol.net>
487
488         * support/regression/ports/pic16/specs.mk: removed stack size linker
489           directive
490         * support/regression/tests/array.c,
491           support/regression/tests/bitopcse.c,
492           support/regression/tests/bug-908454.c,
493           support/regression/tests/malloc.c: modified for pic16 regression test
494         * support/regression/tests/bitfields.c:
495           pic16 - excluded bitfileds of size > 8
496         * support/regression/tests/bp.c: pic16 - reduced data size
497         * support/regression/tests/bug-221100.c: pic16 - reduced data size
498         * support/regression/tests/bug-460010.c:
499           pic16 - used the absolute address the fits in memory
500         * support/regression/tests/bug-716242.c:
501           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
502         * support/regression/tests/float.c:
503           pic16 - excluded - data size too big
504         * support/regression/tests/onebyte.c:
505           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
506         * support/regression/tests/shifts.c:
507           pic16 - function names probably have to differ in first X characters
508           (gpasm limitation?)
509         * support/regression/tests/staticinit.c:
510           pic16 - excluded some tests due error: no target memory available for
511           section ".idata"
512
513 2006-05-22 Borut Razem <borut.razem AT siol.net>
514
515         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
516           second try. Thanks Stas Sergeev once more.
517
518 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
519
520         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
521           (genLeftShift, genRightShift): fixed bug 1491627
522         * src/hc08/peeph.def (rules 7, 8.x): added
523         * support/regression/tests/shifts.c (ShiftLeftByParam,
524           ShiftRightByParam, testShiftByParam): added to test variable shifting
525
526 2006-05-20 Raphael Neider <rneider AT web.de>
527
528         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
529         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
530           (allocReg): add only new registers to dynAllocRegs,
531           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
532             #1489055, #1445850, and probably #1483693
533
534 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
535
536         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
537         bug in for-loop that didn't emit the last of CONFIG and ID registers
538
539 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
540
541         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
542           with offset
543         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
544           1489016, 1434401 and 1490124
545         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
546           1489016, 1434401 and 1490124
547
548 2006-05-17 Borut Razem <borut.razem AT siol.net>
549
550         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
551           thanks Stas Sergeev
552
553 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
554
555         * device/include/mcs51/P89c51RD2.h,
556         * device/include/mcs51/P89LPC901.h,
557         * device/include/mcs51/P89LPC922.h,
558         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
559
560 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
561
562         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
563         to fix missing stack pragma in compiled binary object file,
564
565 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
566
567         * support/packihx/configure.in,
568         * support/packihx/configure: removed warning, autoconf >= 2.5x can
569         determine sizeof basic types even while cross compiling
570
571 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
572
573         * src/avr/gen.c (aopop),
574         * src/ds390/gen.c (aopOp),
575         * src/hc08/gen.c (aopOp),
576         * src/mcs51/gen.c (aopop),
577         * src/pic16/gen.c (pic16_aopOp),
578         * src/pic/gen.c (aopOp),
579         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
580         if size of operand is smaller than spill location
581
582 2006-05-12 Borut Razem <borut.razem AT siol.net>
583
584         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
585           have to have CR/LF line endings even if they are checked out on *nix
586           or on WIN32 in cygwin binmode
587
588 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
589
590         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
591         * device/include/ds80c390.h: added sfr16 definitions
592         * src/ds390/gen.c,
593         * src/ds390/gen.h,
594         * src/ds390/main.c,
595         * src/ds390/ralloc.c,
596         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
597           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
598           bit returning functions
599         * support/regression/tests/sfr16.c: enabled test on ds390
600
601 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
602
603         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
604         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
605
606 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
607
608         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
609         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
610           (cl_address_space constructor): removed expensive initialization,
611           (cl_address_space::get_cell): extended for late initialization,
612           (cl_address_space::*): use late initialization,
613           (cl_address_decoder::activate): removed expensive initialization,
614           This reduced regression test running time by 25%
615
616 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
617
618         * packihx/,
619         * configure.in,
620         * configure,
621         * sdcc.dsw,
622         * Makefile.bcc,
623         * Makefile.in,
624         * support/packihx/Makefile.in,
625         * support/packihx/clean.mk,
626         * support/packihx/Makefile.bcc,
627         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
628
629 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
630
631         * src/SDCCval.c (valNot): fix for regression test failure
632           of not.c on big endian hosts
633
634 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
635
636         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
637
638 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
639
640         * device/lib/mcs51/Makefile.in: changed string comparison operator
641           to = for POSIX compliance; == is bash extension
642
643 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
644
645         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
646           kosmonaut_pirx
647
648 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
649
650         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
651         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
652         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
653         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
654         bug report #1478657,
655
656 2006-05-05 Borut Razem <borut.razem AT siol.net>
657
658         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
659           making the html
660
661 2006-05-02 Borut Razem <borut.razem AT siol.net>
662
663         * doc/Makefile.in: removed *.ind dependency since there is no rule to
664           create *.ind, which made make to fail if invoked with -j 2
665
666 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
667
668         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
669           Hubert Sack for patch 1479782
670
671 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
672
673         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
674
675 2006-05-01 Raphael Neider <rneider AT web.de>
676
677         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
678           (create_pic): store only prefix-free device name,
679           (init_pic): check for device names with "16" prefix,
680           (list_valid_pics),
681         * src/pic/device.h (struct PIC_device),
682         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
683             stored device name,
684         * device/include/pic/pic12f{635,675,629,683}.h,
685         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
686         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
687         * device/include/pic/pic16f505.h,
688         * device/lib/pic/libdev/pic16f505.c: removed
689         * device/include/pic/pic14devices.txt: added support for pic12f
690             devices, removed unsupported non 16-bit devices
691             [above changes provided by patch from Zik Saleeba]
692         * src/pic/*, src/pic16/*, device/include/pic16/*,
693           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
694
695 2006-05-01 Borut Razem <borut.razem AT siol.net>
696
697         * configure.in, configure, doc/Makefile.in:
698           sync with nightly build makefile - latex, dvipdf and dvips
699           not needed any more
700
701 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
702
703         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
704         in the library source
705
706 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
707
708         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
709
710 2006-04-28 Raphael Neider <rneider AT web.de>
711
712         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
713         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
714           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
715         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
716
717 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
718
719         * device/lib/pic/libdev/Makefile.in,
720         * device/lib/hc08/Makefile.in,
721         * device/lib/gbz80/Makefile.in,
722         * device/lib/z80/Makefile.in,
723         * device/lib/ds390/Makefile.in,
724         * device/lib/ds400/Makefile.in: added srcdir to include search path,
725         thanks to Borut for the bug report
726         * configure.in,
727         * configure: always create doc/Makefile independent from --enable-doc
728         * Makefile.in: always install from directory doc independent from
729         --enable-doc
730         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
731         removed
732         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
733         * doc/Makefile.in: install *.txt if present
734         * device/include/Makefile.in (install): added installation of pic/*.inc
735         and pic/*.txt files again, they were erroneously removed
736
737 2006-04-28 Raphael Neider <rneider AT web.de>
738
739         * src/pic/{gen.c,main.h,pcode.c},
740         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
741             concerning signedness with casts
742
743 2006-04-28 Raphael Neider <rneider AT web.de>
744
745         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
746             definition of an interrupt handler,
747         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
748             interrupt handler stuff from picglue() to separate routine,
749           (picglue): enabled definition of intr handlers in files w/o main()
750
751 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
752
753         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
754           compilation with MSVC 2005 Express Edition (VC8)
755
756 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
757
758         * device/lib/Makefile: fixed build of gbz80 lib
759
760 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
761
762         * support/regression/tests/bug-460010.c,
763         * support/regression/tests/bug-524691.c,
764         * support/regression/tests/bug-716242.c: removed conditional defines
765           that are already in testfwk.h
766
767 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
768
769         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
770           (AccAXRsh1): added, shift right by 1,
771           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
772            AccAXLrl1
773         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
774
775 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
776
777         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
778         remove cast to same type
779         * src/SDCCast.c (decorateType): fix for RFE 1475742,
780         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
781         * as/z80/Makefile,
782         * link/z80/Makefile: removed, they have moved to
783         Makefile.in files
784         * configure,
785         * configure.in: replaced duplicate message about ucsim by missing sdcpp
786         * install-sh: fix bug #1204398 by setting umask 0022
787         * device/lib/Makefile: separate build of z80 and gbz80 lib
788
789 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
790
791         Enabled VPATH feature: changed nearly all Makefiles (149 files).
792         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
793
794         One basic decision: e.g. src/clean.mk includes further files. In order
795         to make this work there are two solutions:
796         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
797           run configure on them. This way they can use
798           'include $(srcdir)/port-clean.mk'
799         - always include clean.mk by the Makefile at the same level. To avoid
800           that `make clean` tries to include and build Makefile.dep the
801           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
802           implemented, because now even `make uninstall` doesn't create
803           Makefile.in. clean.mk could be eliminated by pasting it in
804           Makefile.in.
805
806         * debugger/mcs51/Makefile.in: build own objects from library sources
807         (SLIB, SDCC) in current directory
808
809         * configure, configure.in: renamed --disable-device-lib-build in
810         --disable-device-lib; added --enable-doc, the required tools are
811         searched by configure; added result message; the toolchain for the
812         belonging ports are now only built, if the port is enabled.
813
814         * support/regression/*: all output is written in directory gen, because
815         the fwk and ports directories don't livet in the build tree using vpath
816
817         * doc/sdccman.lyx: renamed --disable-device-lib-build to
818         --disable-device-lib, added --enable-doc, added section VPATH
819
820         * sim/ucsim/configure.in,
821         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
822         z80 are enabled by default
823
824 2006-04-24 Raphael Neider <rneider AT web.de>
825
826         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
827             to config word, "pic14_"-prefixed some extern functions
828           (pic14_emitConfigWord): emit __config directive(s) if assignment to
829             config word has been found
830         * src/pic/device.h: added prototypes
831         * src/pic/pcode.c: added "pic14_"-prefix where needed
832         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
833             fixup
834         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
835             words,
836           (pic14emitRegularMap): ignore config words,
837           (pic14createInterruptVect): moved generating __config directives away
838           (picglue): have __config directives emitted
839
840 2006-04-24 Borut Razem <borut.razem AT siol.net>
841
842         * doc/Makefile: sync with nightly build makefile
843
844 2006-04-24 Raphael Neider <rneider AT web.de>
845
846         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
847             registers that have not been assigned proper liveranges,
848             fixes #1469504 and #1474602,
849           (pCodeRegOptimizeRegUsage): fixed typo in comment
850
851 2006-04-24 Borut Razem <borut.razem AT siol.net>
852
853         * device/examples/main8051.c: deleted - it was removed from CVS
854           24.mar.2000 and after that modified 18.feb.2001, so it reappered
855           after the transition to Subversion
856         * src/SDCCalloc.h: deleted - it was removed  from CVS
857           3.feb.2001 and after that modified 18.feb.2001, so it reappered
858           after the transition to Subversion
859         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
860           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
861           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
862           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
863
864 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
865
866         * as/asx8051.dsp: added mcs51/strcmpi.h
867         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
868         * as/hc08/aslink.h: updated lnksect prototype
869         * as/hc08/asm.h,
870         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
871         * as/hc08/asmain.c,
872         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
873           (newdot): handle A_ABS
874         * as/hc08/asout.c,
875         * as/mcs51/asout.c (outarea): output address
876         * as/hc08/lkaomf51.c,
877         * as/mcs51/lkaomf51.c: disabled unused array UsageType
878         * as/hc08/m08pst.c,
879         * as/mcs51/i51pst.c,
880         * as/z80/z80pst.c: "ABS" is not A_OVR
881         * as/hc08/lkarea.c (newarea): read a_addr,
882           (lnkarea): added codemap array, sort absolute areas to the front,
883            combine all GSINITx/GSFINAL,
884           (find_empty_space, allocate_space): new functions,
885           (lnksect): return next address, handle absolute sections
886         * as/mcs51/lkarea.c (newarea): read a_addr,
887           lnksect2 prototype changed,
888           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
889           (find_empty_space, allocate_space): new, factored out of lnksect2,
890           (lnksect2): return next address, handle absolute sections
891         * as/hc08/lkhead.c,
892         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
893         * as/hc08/lklibr.c (addfile, fndsym),
894         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
895           index out of range and detect both '\' and '/'
896         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
897         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
898           regression tests (ds390 cannot return bool yet)
899         * doc/sdccman.lyx: changed version number, document changed --no-peep,
900           document critical interrupts on z80, document changed SDCC define
901         * src/asm.c (_asxxxx_mapping): fixed .org directive,
902           (_a390_mapping): added .org directive
903         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
904           (genMultOneByte): fixed warnings
905         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
906           ones
907         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
908         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
909           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
910         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
911         * src/pic16/main.c: removed newReg prototype
912         * src/pic16/pcode.c,
913         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
914           warnings
915         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
916           ones
917         * src/pic16/ralloc.c
918         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
919           to fix warnings
920         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
921           from short to PIC_OPTYPE
922         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
923         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
924           optype from short to PIC_OPTYPE
925         * src/port.h: made int_size unsigned to fix warnings
926         * src/SDCC.y: fixed warning on MSVC
927         * src/SDCCicode.c (getArraySizePtr): return unsigned int
928         * src/SDCCopt.c (convertToFcall): fixed warnings
929         * src/SDCCsymt.h: removed double prototype for genSymName
930         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
931           offset int to fix warnings
932
933 2006-04-22 Borut Razem <borut.razem AT siol.net>
934
935         * doc/sdccman.lyx, */Makefile, */Makefile.in:
936           references to CVS replaced with Subversion
937
938 2006-04-21 Borut Razem <borut.razem AT siol.net>
939
940         * doc/sdccman.lyx, */Makefile, */Makefile.in:
941           references to CVS replaced with Subversion
942
943 2006-04-19 Borut Razem <borut.razem AT siol.net>
944
945         * src/version.awk: adapted for svn
946         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
947           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
948           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
949           /binutils-avr/etc/*.vi, *.jin: removed all properties
950           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
951
952 2006-04-19 Borut Razem <borut.razem AT siol.net>
953
954         * CVS to Subversion migration completed
955
956 2006-04-18 Borut Razem <borut.razem AT siol.net>
957
958         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
959           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
960
961 2006-04-17 Borut Razem <borut.razem AT siol.net>
962
963         * device/include/Makefile.in: added pic/*.inc to the installation
964
965 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
966
967         * support/regression/collate-results.py: fixed output in case of
968         a valdiag error
969         * support/regression/generate-cases.py: fixed splitting of pathnames
970         with dots
971         * as/hc08/lklibr.c (addfile),
972         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
973
974 2006-04-11 Raphael Neider <rneider AT web.de>
975
976         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
977         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
978         * src/pic16/pcode.c (assignValnums): fixed #1460578
979
980 2006-04-11 Raphael Neider <rneider AT web.de>
981
982         * device/lib/pic/libdev/*.c,
983         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
984           fixes #1468739, enables compilation in --std-c99 mode
985         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
986
987 2006-04-11 Raphael Neider <rneider AT web.de>
988
989         * src/pic/device.c (find_device): removed debug output
990           (list_valid_pics): enabled verbose listing of supported devices
991         * device/include/stdbool.h: define bool as char for pic14/16 as well
992
993 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
994
995         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
996
997 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * .version: bumped version to 2.5.6
1000         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
1001
1002 2006-04-06 Raphael Neider <rneider AT web.de>
1003
1004         * .version: bumped version to 2.5.6 (pic14 ABI changed)
1005         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
1006         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
1007           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1008             pic14_constructAbsMap
1009           (pic14printPublics): declare absolute global symbols as global
1010           (pic14createInterruptVect),
1011         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1012           (newReg): assume new registers unused, use correct name in
1013             hashtable (reg->name instead of name), more debugLog output
1014         * src/pic/device.h (PIC_device): added fields for verbose output
1015         * src/pic/device.c: moved device definition to pic14devices.txt,
1016             added routines for runtime parsing of pic14devices.txt,
1017             added support for second config word
1018         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1019           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1020           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1021           (_pic14_parseOptions): moved pCodeInitRegisters here
1022           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1023         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1024           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1025             handling the pseudo stack
1026         * device/lib/Makefile.in: ignore failures in objects-pic16,
1027         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1028         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1029         * device/lib/pic/Makefile.subdir,
1030         * device/lib/pic16/Makefile.subdir: improved clean rules
1031         * device/lib/pic/libdev/: NEW, pic14 device libraries
1032         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1033         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1034         * device/include/Makefile.in: create subdir and install pic14 headers
1035         * device/include/pic/p16f_common.inc: removed unused declarations
1036         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1037             PICs from inc2h.pl v1.6,
1038             replaced BIT_AT macros with struct declarations
1039         * device/include/pic/pic14devices.txt: definition of supported devices,
1040             all above improvements contributed by Zik Saleeba, thanks
1041         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1042         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1043             headers
1044
1045 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1046
1047         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1048         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1049           thanks to Charles Olds
1050
1051 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1052
1053         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1054
1055 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1056
1057         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1058         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1059         * support/regression/bug1464657.c: added, new test
1060
1061 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1062
1063         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1064           version number
1065
1066 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1067
1068         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1069           --no-peep and --peep-file <file> are used don't use default rules but
1070           do use the <file>
1071
1072 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1073
1074         * src/mcs51/gen.c (genCall): fixed bug 1457608
1075
1076 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1077
1078         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1079         changes seem to cause (trigger?) problems with the build system.
1080
1081 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * src/SDCCpeeph.c (operandsLiteral): new, added,
1084           (callFuncByName): inserted operandsLiteral
1085         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1086
1087 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1088
1089         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1090         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1091
1092 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1093
1094         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1095           implemented patch 1120823 Thanks to Willy De la Court (normal
1096           interrupts need an interrupt number now if they are made critical),
1097           and enabled nesting of critical functions though not for gbz80
1098           (genCritical, genEndCritical): added functions
1099           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1100         * src/z80/mappings.i: added "ei" to all mappings
1101
1102 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1103
1104         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1105         submitted by the Debian SDCC maintainer Aurelien Jarno:
1106         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1107         archive with gcc 4.1 on mips and wrote the patch"
1108
1109 2006-03-16 Raphael Neider <rneider AT web.de>
1110
1111         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1112           the left operand is shorter than the result (c* = lit-c* + int),
1113           fixes bug #1450796
1114         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1115           OP_SYMBOL
1116
1117 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1118
1119         * src/.version: increased version number to 2.5.5
1120         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1121         linking is done manually in pic16 port's _linkEdit,
1122         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1123         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1124         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1125         allocate asmop as AOP_ACC,
1126         (aopForRemat): added parameter 'bool result' in function declaration,
1127         (pic16_aopGet): return AOP_ACC when accessing WREG,
1128         (pic16_popGetTempReg): minor modification,
1129         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1130         'pic16_allocWithIdx',
1131         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1132         calling function in absolute addresses,
1133         (genAssign): take into account AOP_ACC asmop,
1134         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1135         * src/pic16/pcoderegs.c: some debug functions and lines added,
1136         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1137         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1138         register too,
1139         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1140         call to allocReg, not by manually allocating a new one,
1141         (pic16_assignRegisters): now before going through the register
1142         allocating functions mark all registers as free. This eliminates some
1143         side effects resulting from peephole parser done earlier in the backbone
1144
1145 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1146
1147         * src/SDCCicode.c (geniCodeLogic),
1148         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1149
1150 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1151
1152         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1153           (genSend): bugfix, do not allocate and free twice,
1154           (shiftRLong): handle partially overlapping aops
1155         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1156
1157 2006-03-08 Borut Razem <borut.razem AT siol.net>
1158
1159         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1160           for pic16
1161
1162 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1163
1164         * support/regression/tests/bug1409955.c: new, added
1165         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1166         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1167           (aopForSym, aopOp): increment asmop.allocated if reused,
1168           (freeAsmop): decrement asmop.allocated and check for zero instead of
1169           using asmop.freed,
1170           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1171           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1172            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1173            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1174            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1175            genSignedRightShift, genRightShift, genDataPointerGet,
1176            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1177            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1178             in reverse order from allocation,
1179           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1180             added swappedLR to keep track
1181         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1182           pdata & code for GCC, z80, gbz80 & hc08
1183         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1184
1185 2006-03-08 Raphael Neider <rneider AT web.de>
1186
1187         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1188
1189 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1190
1191         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1192         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1193         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1194
1195 2006-03-06 Borut Razem <borut.razem AT siol.net>
1196
1197         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1198           made the linker quiet
1199
1200 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1201
1202         * src/pic16/gen.c (genPcall): fixed bug #1443644
1203         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1204         which dumps before the function entry point a data byte which represents
1205         the number of the local variables used by the specified function, added
1206         'xinst' for initial support for Extended Instruction Support,
1207         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1208         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1209         port->fun_prefix anymore (may change later),
1210         (genFunction, genEndFunction): do not store/restore local registers for
1211         _main (this should take care the --main-return command line option in
1212         the future),
1213         (genOr): removed some legacy pic-port instructions,
1214         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1215         performing operations with SFR's causes data to be written more than
1216         once to each SFR. Perhaps SFRs should be handled in special cases...
1217         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1218         pcode.h
1219         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1220         into account for stack starting position,
1221         (struct OPTIONS pic16_optionsTable): added command line argument
1222         --extended or -y for Extended Instruction Support,
1223         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1224         (deassignLRs): *** perhaps the most important change, old 'for' code
1225         (commented out for reference), didn't account for some registers which
1226         were left marked 'not free' after a pointer operation. The change
1227         reduces register usage a lot in some cases
1228
1229 2006-03-04 Borut Razem <borut.razem AT siol.net>
1230
1231         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1232           _clean
1233         * support/regression/tests/bug-524697.c: decreased array size for
1234           mcs51 to fit into the internal RAM
1235         * support/regression/Makefile.in: a little bit more verbose
1236
1237 2006-03-03 Borut Razem <borut.razem AT siol.net>
1238
1239         * support/regression/fwk/lib/testfwk.c,
1240           support/regression/fwk/include/testfwk.h: introduced function
1241           _prints(), nonrecursive _printn(), call _initEmu() from main()
1242         * support/regression/ports/gbz80/support.asm,
1243           support/regression/ports/ucz80/support.asm,
1244           support/regression/ports/z80/support.asm,
1245           support/regression/ports/ds390/support.c,
1246           support/regression/ports/hc08/support.c,
1247           support/regression/ports/host/support.c,
1248           support/regression/ports/mcs51/support.c,
1249           support/regression/ports/xa51/support.c: added empty _initEmu()
1250           function
1251         * support/regression/ports/pic16/gpsim.cmd,
1252           support/regression/ports/pic16/spec.mk,
1253           support/regression/ports/pic16/support.c,
1254           support/regression/Makefile.in: added pic16 regression test
1255
1256 2006-03-01 Raphael Neider <rneider AT web.de>
1257
1258         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1259           genConstPointerGet): use safe way of generating MOVFF to cover
1260             literals as well as registers, fixes bug #1440527
1261         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1262             dereference
1263           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1264             more correctly, fixes bug #1232186
1265           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1266         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1267             gplink guess the correct processor in more cases, applied patch
1268             from Till Riedel attached to and fixing bug #1436552
1269
1270 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1271
1272         * support/regression/tests/array.c: added, contains check for #1434401
1273         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1274
1275 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1276
1277         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1278         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1279         * device/include/mcs51/c8051f326.h,
1280         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1281         * device/include/mcs51/c8051f000.h,
1282         * device/include/mcs51/c8051f018.h,
1283         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1284           PCON_IDLE,PCON_STOP and added sfr16 definitions
1285
1286 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1287
1288         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1289           genGetWord): fixed bug 1409955
1290
1291 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1292
1293         * device/include/hc08/mc68hc908gp32.h,
1294         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1295
1296 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1297
1298         * src/SDCCast.c (constExprValue): return NULL if not a value
1299         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1300         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1301         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1302
1303 2006-02-13 Borut Razem <borut.razem AT siol.net>
1304
1305         * src/regression/ptrarg.c: added, fails due to bug #1430967
1306         * src/regression/Makefile: ptrarg.c added, ...
1307
1308 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1309
1310         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1311         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1312
1313 2006-02-11 Borut Razem <borut.razem AT siol.net>
1314
1315         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1316           print "Processor: xxx" message to stdout only if --verbose
1317
1318 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1319
1320         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1321         * support/regression/tests/bug1426356.c: added
1322         * support/regression/tests/bitfields.c: removed 2 tests
1323
1324 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1325
1326         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1327         * device/include/mcs51/c8051f330.h,
1328         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1329           PCON_IDLE,PCON_STOP and added sfr16 definitions
1330         * device/lib/_divsint.c,
1331         * device/lib/_divuint.c,
1332         * device/lib/_divulong.c,
1333         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1334           register bank bug for small stackauto
1335
1336 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1337
1338         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1339
1340 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1341
1342         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1343         * all.dsp: corrected several bin paths
1344         * device/include/mcs51/c8051f120.h,
1345         * device/include/mcs51/c8051f300.h,
1346         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1347           to PCON_IDLE,PCON_STOP
1348         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1349         * device/lib/printf_large.c (output_float): fixed bug 1388703
1350         * support/regression/tests/bug1057979.c: added test for bug 1388703
1351
1352 2006-02-08 Raphael Neider <rneider AT web.de>
1353
1354         * src/pic/pcode.c (pciTRIS): fixed typo,
1355           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1356           (LinkFlow): fixed handling of flows that end in a call,
1357           (ReuseReg): perform safety check earlier
1358         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1359             to work with flows at the beginning of a pBlock,
1360             fixes #1426557 (Symbol not previously defined),
1361           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1362             usage information
1363           (RemoveUnusedRegisters): update register usage info
1364         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1365             created, reuse existing ones instead
1366         * src/pic/gen.c (genPcall): fixed #1424719
1367
1368 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1369
1370         * link/z80/lkmain.c,
1371         * link/z80/lklex.c,
1372         * link/z80/lkdata.c,
1373         * link/z80/aslink.h: fixed build on current cygwin:
1374         replaced getline() by lk_getline()
1375
1376 2006-02-01 Borut Razem <borut.razem AT siol.net>
1377
1378         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1379           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1380           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1381           src/regression/bool1.c, src/regression/bool2.c,
1382           src/regression/bool3.c, src/regression/call1.c,
1383           src/regression/compare.c, src/regression/compare10.c,
1384           src/regression/compare2.c, src/regression/compare3.c,
1385           src/regression/compare4.c, src/regression/compare5.c,
1386           src/regression/compare6.c, src/regression/compare7.c,
1387           src/regression/compare8.c, src/regression/compare9.c,
1388           src/regression/configword.c, src/regression/for.c,
1389           src/regression/inline.c, src/regression/mult1.c,
1390           src/regression/nestfor.c, src/regression/or1.c,
1391           src/regression/pointer1.c, src/regression/ptrfunc.c,
1392           src/regression/rotate1.c, src/regression/rotate2.c,
1393           src/regression/rotate3.c, src/regression/rotate4.c,
1394           src/regression/rotate5.c, src/regression/rotate6.c,
1395           src/regression/rotate7.c, src/regression/string1.c,
1396           src/regression/struct1.c, src/regression/sub.c,
1397           src/regression/sub2.c, src/regression/switch1.c,
1398           src/regression/while.c, src/regression/xor.c,
1399           src/regression/create_stc, src/regression/simulate,
1400           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1401           regression tests
1402         * src/regression/gpsim_assert.h: added
1403
1404 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1405
1406         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1407         ((void (code *) (void)) 0) ();
1408         * as/hc08/aslex.c,
1409         * as/hc08/aslink.h,
1410         * as/hc08/asm.h,
1411         * as/hc08/asmain.c,
1412         * as/hc08/lkdata.c,
1413         * as/hc08/lklex.c,
1414         * as/hc08/lkmain.c,
1415         * as/mcs51/aslex.c,
1416         * as/mcs51/aslink.h,
1417         * as/mcs51/asm.h,
1418         * as/mcs51/asmain.c,
1419         * as/mcs51/lkdata.c,
1420         * as/mcs51/lklex.c,
1421         * as/mcs51/lkmain.c,
1422         * as/z80/aslex.c,
1423         * as/z80/asm.h,
1424         * as/z80/asmain.c: fixed build on current cygwin:
1425         replaced getline() by as_getline()
1426
1427 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1428
1429         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1430         declarator in the symbol chain
1431         * src/SDCCsymt.h,
1432         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1433         parameter list for function pointers
1434         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1435         * support/regression/tests/bug-716242.c: added
1436
1437 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1438
1439         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1440         offset if possible
1441         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1442
1443 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1444
1445         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1446         inifinitely recurseable, added static
1447         * support/regression/tests/bug-1408066.c: added
1448
1449 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1450
1451         * src/SDCCicode.h,
1452         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1453         renamed, added possibility to create "postLoopLbl"-labels
1454         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1455         newiTempLoopHeaderLabel
1456         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1457         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1458         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1459         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1460         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1461         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1462         (basicInduction): fixed bug #136564, made static,
1463         (loopInduction): changed parameter of basicInduction, made static,
1464         (addPostLoopBlock): added
1465         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1466         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1467         findLoopEndSeq
1468         * support/regression/tests/bug-136564.c: added
1469         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1470         --std-sdcc99 to LIBSDCCFLAGS
1471
1472 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1473
1474         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1475         while loop
1476         * support/regression/tests/bug-1406131.c: added
1477
1478 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1479
1480         * src/SDCCast.c (decorateType): fix promotion of unary minus
1481         * src/SDCCsymt.c (computeType): beautified
1482         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1483         (valUnaryPM, valComplement): fix sign and promotion,
1484         (valNot): ANSI: result type is int (SDCC: unsigned char)
1485         * support/regression/tests/uminus.c: speedup by removing superflous
1486         test case 'int'
1487         * support/regression/tests/onebyte.c: added promotion and signedness
1488         tests for unary minus
1489         * support/regressions/tests/bug-477927.c: disable warning about
1490         uninitialized variables
1491         * support/regression/tests/not.c: added
1492
1493 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1494
1495         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1496         * src/mcs51/gen.c (gen51Code): show final register usage after
1497         fillGaps in asm with --i-code-in-asm
1498         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1499         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1500         incUsed, rliveClear, adjustIChain): made static,
1501         (setFromRange): excluded because it's unused,
1502         (findPrevUseSym, markWholeLoop): added,
1503         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1504         through all branches of predecessors enables sdcc to emit the warning
1505         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1506         (rlivePoint): made static, added parameter emitWarnings which is only
1507         true during the first run out of two,
1508         (findRecursiveSucc, findRecursivePred): removed,
1509         (computeLiveRanges): made static, added parameter emitWarnings,
1510         (dumpIcRlive): added for debugging only
1511         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1512         removed prototype of setFromRange()
1513         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1514         in call of computeLiveRanges()
1515         * support/regression/tests/bug-895992.c: added
1516         * support/regression/tests/bug-971834.c: added
1517         * support/valdiag/tests/bug-895992.c: added
1518         * support/valdiag/tests/bug-971834.c: added
1519
1520 2005-12-18 Raphael Neider <rneider AT web.de>
1521
1522         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1523           (genUnpackBits): improved code for direct operands,
1524           (genPackBits): improved code for literal assignment to bitfields
1525             and for direct destination operands (no FSR indirection),
1526             prevented redundant AND, fixes #1362800,
1527           (AccLsh): added parameter to disable masking of the result
1528         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1529           skip instructions with side-effects (like incfsz),
1530           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1531         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1532         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1533           fixes #1375263
1534
1535 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1536
1537         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1538         volatile variables as spill location
1539
1540 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1541
1542         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1543         replacing literals
1544         * support/regression/tests/bug-1376320.c: added
1545
1546 2005-12-08 Raphael Neider <rneider AT web.de>
1547
1548         * src/pic/device.c: renamed is_shared to pic14_is_shared
1549         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1550         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1551           (is_valid_identifier): added for above workaround
1552
1553 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1554
1555         * device/lib/Makefile.in: fixed to enable port-specific-objects
1556         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1557           char, thanks Hubert Sack
1558         * doc/sdccman.lyx: documented --xstack-loc,
1559           elaborated a bit more on interrupts and pitfalls,
1560           removed "setjmp/longjmp unsupported",
1561           documented some unsupported C99 features
1562         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1563         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1564           if, thanks Hubert Sack
1565         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1566         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1567           make make_library
1568         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1569           regression tests can report resource usage (rfe 700441)
1570         * support/regression/collate-results.py: report resource usage
1571         * support/regression/ports/ds390/spec.mk,
1572         * support/regression/ports/hc08/spec.mk,
1573         * support/regression/ports/mcs51/spec.mk,
1574         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1575         * support/regression/ports/ds390/uCsim.cmd,
1576         * support/regression/ports/hc08/uCsim.cmd,
1577         * support/regression/ports/mcs51/uCsim.cmd,
1578         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1579         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1580           library, use the default one
1581         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1582           building the library
1583
1584 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1585
1586         * config.dsp: added dependency on .version and configure_vc.awk
1587         * device/include/setjmp.h: updated for --stack-auto and --xstack
1588         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1589         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1590         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1591         * device/lib/libsdcc.lib: added _setjmp
1592         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1593           (decorateType): fixed bug 1372851,
1594           (optimizeGetHbit): fixed warning
1595         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1596           array initialisation
1597         * support/regression/tests/bug1057979.c: added test for bug 1358192
1598         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1599
1600 2005-12-03 Borut Razem <borut.razem AT siol.net>
1601
1602         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1603           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1604
1605 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1606
1607         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1608         createIval): implement symbol independant "flexible array member",
1609         (createIvalCharPtr): implemented flexible array initialisation with a
1610         string
1611         * src/SDCCsymt.c (copyStruct): removed,
1612         (getSize): fixed misleading comment,
1613         (getAllocSize): removed, the additional allocation size is now in
1614         sym->flexArrayLength,
1615         (checkStructFlexArray): new, syntax checks for flexible array members,
1616         (compStructSize): added syntax checks for "flexible array members"
1617         (copyStruct): removed,
1618         (copyLinkChain): removed inefficient fix for bug 770487
1619         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1620         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1621         symbol->flexArrayLength
1622         * src/SDCCerr.c,
1623         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1624         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1625         * support/regression/tests/structflexarray.c: added
1626         * support/valdiag/tests/structflexiblearray.c: added
1627
1628 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1629
1630         * src/SDCCast.c (decorateType): fixed bug 1368489
1631         * support/Util/SDCCerr.c,
1632         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1633
1634 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1635
1636         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1637           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1638
1639 2005-11-27 Borut Razem <borut.razem AT siol.net>
1640
1641         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1642           support/cpp2/mkdeps.h: added command line option
1643           -obj-ext=<extension> to SDCPP to define object file externion, used
1644           for generation of make dependencies (-M)
1645         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1646
1647 2005-11-26 Borut Razem <borut.razem AT siol.net>
1648
1649         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1650           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1651           added pic and pic16 libraries
1652
1653 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1654
1655         * device/include/float.h: Corrected typo in prototype of __fsgt
1656
1657 2005-11-25 Borut Razem <borut.razem AT siol.net>
1658
1659         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1660           added creation of model-mcs51-stack-auto libraries
1661
1662 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1663
1664         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1665         and fields-list too
1666         * src/SDCCast.c (createIvalArray): removed obsolete comment
1667
1668 2005-11-24 Borut Razem <borut.razem AT siol.net>
1669
1670         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1671           added missing device/lib/mcs51/crt*.asm sources
1672
1673 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1674
1675         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1676
1677 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1678
1679         * device/lib/_fs2schar.c,
1680         * device/lib/_fs2sint.c,
1681         * device/lib/_fs2slong.c: optimized inline asm
1682
1683 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1684
1685         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1686           Better handling of floats between -1.0 and 0.0.
1687
1688 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1689
1690         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1691           (the missing "if"s prohibited removal of redundant labels)
1692
1693 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1694
1695         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1696           Properly convert floats between -1.0 and 0.0 to long, int, and char
1697           types (max integer value of negative floats tends to zero).
1698         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1699           Removed changes made so to work properly with floats between
1700           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1701           and _fs2char.c
1702
1703 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1704
1705         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1706         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1707         (genCast) cosmetic change
1708         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1709         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1710         from mcs51
1711         * support/regression/tests/bitfields (testSignedBitfields): added
1712
1713 2005-11-18 Borut Razem <borut.razem AT siol.net>
1714
1715         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1716         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1717           introduced SILENT option to make building of pic16 libraries less
1718
1719 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1720
1721         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1722           Now they work properly with floats between -1.0 and 0.0
1723         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1724
1725 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1726
1727         * src/SDCCicode.c (printOperand): added missing else
1728
1729 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1730
1731         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1732         reformatted for better readability
1733         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1734         signed bitfields
1735
1736 2005-11-17 Borut Razem <borut.razem AT siol.net>
1737
1738         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1739           introduced SILENT option to make building of pic16 libraries less
1740           verbose - used for nightly snapshot build
1741         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1742           available on Win32 platforms.
1743         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1744           medium, large, pic and pic16
1745
1746 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1747
1748         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1749           printf("%f"...) sets fraction to zero.
1750
1751 2005-11-16 Raphael Neider <rneider AT web.de>
1752
1753         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1754           fixes #1357221
1755         * src/pic/gen.c (genIfx): implemented for CARRY bit
1756         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1757           to generic pointers, fixes #1357332,
1758           (pic16_movLit2f): NEW,
1759           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1760
1761 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1762
1763         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1764
1765 2005-11-11 Raphael Neider <rneider AT web.de>
1766
1767         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1768         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1769           compute pointer's type from operand,
1770           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1771           improved single bit reads, fixes bug #1353379
1772
1773 2005-11-09 Borut Razem <borut.razem AT siol.net>
1774
1775         * support/scripts/sdcc.nsi: added lib/pic to the package
1776
1777 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1778
1779         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1780
1781 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1782
1783         * support/regression/tests/bug1348008.c: added
1784         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1785         * support/regression/tests/bug1337835.c: updated comment
1786
1787 2005-11-06 Borut Razem <borut.razem AT siol.net>
1788
1789         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1790           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1791           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1792           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1793           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1794           dynamic construction of cl_error_class and derivates - 2.nd try
1795
1796 2005-11-05 Borut Razem <borut.razem AT siol.net>
1797
1798         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1799           bug, which caused Bus Errors on sparc solaris
1800
1801 2005-11-04 Borut Razem <borut.razem AT siol.net>
1802
1803         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1804           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1805           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1806           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1807           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1808           and derivates to resolve the initialization problem on OSX
1809
1810 2005-11-02 Borut Razem <borut.razem AT siol.net>
1811
1812         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1813           corrected typo - #include <winsock2.h>
1814
1815 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1816
1817         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1818           (_asxxxx_mapping): added org directive for future enhancements
1819
1820 2005-11-01 Borut Razem <borut.razem AT siol.net>
1821
1822         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1823           enabled sockets on WIN32
1824         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1825
1826 2005-10-31 Borut Razem <borut.razem AT siol.net>
1827
1828         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1829           WIN32 backslash path delimiters should be escaped when used in C strings
1830         * support/regression/tests/bitfields.c: exclude failing assertions for
1831           __CYGWIN32__ and __MINGW32__ hosts
1832
1833 2005-10-30 Borut Razem <borut.razem AT siol.net>
1834
1835         * src/SDCCutil.c: corrected double comparison typo
1836
1837 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1838
1839         * device/lib/medium/Makefile: added for new memory model medium
1840         * device/include/asm/mcs51/features.h: updated for medium/pdata
1841         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1842           added Multiply & Accumulate sbit's and MAC0_PAGE define
1843         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1844         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1845         * device/lib/_mullong.c: update for medium model
1846         * device/lib/incl.mk: added medium model
1847         * doc/sdccman.lyx: documented medium model
1848         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1849         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1850         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1851         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1852           (allocParms): set SCLS and OCLS to pdata for medium model
1853         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1854           for pdata,
1855           (powof2): return <0 if not power of 2
1856         * src/avr/gen.c (genBitWise): use updated powof2
1857         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1858           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1859           (shiftLLeftOrResult): use B if necessary
1860         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1861         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1862         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1863         * support/regression/Makefile.in: added test-mcs51-medium
1864         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1865
1866 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1867
1868         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1869         specifier unsigned
1870         * device/lib/time.c (mktime): fixed bug 1334315
1871
1872 2005-10-28 Raphael Neider <rneider AT web.de>
1873
1874         * device/include/pic/p16f_common.inc: added common declarations
1875         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1876
1877 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1878
1879         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1880           (aopPutUsesAcc): added to predict accumulator use,
1881           (assignResultValue): save acc if necessary,
1882           (genMinusDec): store result if indirectly addressed,
1883           (genDivOneByte):  save acc if necessary,
1884           (movLeft2Result): bugfix if left already in acc,
1885           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1886             attention to accumulator use (esp. pdata),
1887           (genReceive): receive pdata correctly
1888         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1889         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1890
1891 2005-10-27 Raphael Neider <rneider AT web.de>
1892
1893         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1894
1895 2005-10-27 Raphael Neider <rneider AT web.de>
1896
1897         * .version: changed version to 2.5.4
1898         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1899         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1900           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1901             arithmetics support routines
1902         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1903         * device/lib/Makefile.in: also create installdir for pic
1904
1905         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1906           pic14 port as well
1907         * src/pic/device.c (dump_sfr): rewritten to delegate register
1908           placement to the linker (use `extern sym' rather than sym EQU addr),
1909           (validAddress): fixed to check last specified address
1910         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1911           (popGetLit): truncate literal value to 8 bit,
1912           (popGet): moved assert to more appropriate place
1913           (popGetExternal): create pCode operand from and mark the according
1914             symbol as being `extern'
1915           (popGetAddr): added sanity check on immediate's offset, provide
1916             GPOINTER tag on demand
1917           (aopPut): fixed for immediates,
1918           (mov2w_op): move operand's address or contents to WREG (depending on
1919             operand type), safer variant of mov2w,
1920           (movwf,call_libraryfunc): NEW, handy abbreviations,
1921           (get_argument_pcop,get_return_val_pcop,pass_argument,
1922           get_returnvalue): interface for accessing function parameters and
1923             return values,
1924           (assignResultValuei,genRet): use new parameter/return value interface
1925           (pic14_getDataSize): back to old version handling generic pointers,
1926           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1927             provided implementation and/or fixed old one,
1928           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1929             calls, removed legacy 8051 reference code
1930           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1931           (loadSignToC): NEW, move the operands sign bit to CARRY,
1932           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1933             genRightShiftSigned, accepts negative shift counts,
1934           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1935           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1936             generic pointers, __data pointers and __code pointers,
1937           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1938             and signed bitfields, limit bitfields to 8 bit,
1939           (genDataPointerGet): fixed number of bytes read,
1940           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1941           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1942             pointers to constant data are no longer assumed to point to __code
1943             space, removed invalid pointer types,
1944           (bitpatternFromVal): retrieve the PICs representation of an integer
1945             or float literal,
1946           (genDataPointerSet): fixed assigning to po_immediate operands,
1947           (genGenPointerSet): implemented as library call,
1948           (genIfx): fixed incorrect condition,
1949           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1950             provide GPOINTER tag according to destination's storage class,
1951           (genCast): added code to handle casting to generic pointers, added
1952             sign-/zero extension of the result
1953           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1954         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1955         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1956           extend the result
1957         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1958           address/register resides in the shared banks
1959           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1960             put all variables into separate sections (have the linker arrange
1961             them)
1962           (picglue): put init code and interrupt handlers in separate sections
1963         * src/pic/main.c: added port specific options table, modified to PORT
1964           structure to make GPOINTERs 3 byte, added pic14_options
1965           (_pic14_do_link): private linking routine (update paths to libraries,
1966             add libsdcc.lib by default)
1967         * src/pic/main.h: declare pic14_options
1968         * src/pic/pcode.c: fixed instructions i/o relations,
1969           (RegCond): reverted to correct version,
1970           (newpCodeOpLit): truncate literals to 8 bit,
1971           (genericPrint): added debug output,
1972           (getRegFromInstruction): fixed for various operand types, simplified
1973           (BuildFlow): fixed broken handling of isntructions with labels
1974           (LinkFlow): start at last instruction in flow (skip trailing comments),
1975             pass the flow on to the next instruction after CALL
1976           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1977           (insertPCodeInstruction): fixed inserting after a skip instruction,
1978           (DoBankSelect): fixed for labeled instructions
1979           (OptimizepBlock): honor --nopeep switch
1980           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1981         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1982         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1983           (pCodeOptime2pCodes): allow disabling this optimization via
1984             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1985             but is still buggy), started implementation of a dataflow based
1986             pCode optimization (CSE + dead code elimination)
1987           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
1988         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
1989           names are independant of the stack location and therefore portable across
1990           devices
1991
1992 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
1995           (selectSpil): fixed bug 1337835 by not spilling bit variables
1996         * support/regression/tests/bug1337835.c: added test for this bug
1997         * src/mcs51/peeph.def: restart after rule 3.c,
1998           addded rules 263.x to optimize loading constants
1999
2000 2005-10-26 Raphael Neider <rneider AT web.de>
2001
2002         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
2003         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
2004           (genAssign): emit warning when casting literals to generic pointer
2005             type, also applies when taking the address of a fixed variable,
2006           (genCast): improved casting to generic pointers
2007         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2008           extern variables, added verbose error message
2009         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2010
2011 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2012
2013         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2014         carry must be complemented too
2015         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2016         could be emitted by genMinus
2017         * src/SDCCval.c (constVal): fixed bug 1305065
2018
2019 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2020
2021         * src/SDCCast.c (addCast): added promotion for bit variables
2022         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2023         promotion casts + optimisation
2024         (optimizeGetWord): fix warning 'i' might be used uninitialized
2025         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2026         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2027
2028 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2029
2030         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2031         all chars are promoted to int; promotion should be handled in SDCCast.c
2032
2033 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2034
2035         * device/lib/_strcmp.c: Fixed bug 1326457
2036
2037 2005-10-11 Raphael Neider <rneider AT web.de>
2038
2039         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2040         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2041
2042 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2043
2044         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2045         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2046
2047 2005-10-04 Raphael Neider <rneider AT web.de>
2048
2049         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2050           device/lib/pic16/pics.all: added pic18f1320
2051         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2052
2053 2005-09-30 Raphael Neider <rneider AT web.de>
2054
2055         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2056         * src/pic16/devices.inc: NEW, provides device descriptions
2057         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2058
2059 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2060
2061         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2062           GETHBIT
2063
2064 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2065
2066         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2067           documented Any Order Bit, Higher Order Byte and Higher Order Word
2068         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2069         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2070           (optimizeGetAbit): new, to get any bit, not only the high bit,
2071           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2072           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2073           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2074           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2075             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2076             GETABIT, GETBYTE, GETWORD: decorate them,
2077           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2078           (ast_print): added GETABIT, GETBYTE, GETWORD
2079         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2080         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2081           (geniCodeBinary): new generic binary icode,
2082           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2083         * src/port.h: updated comment for PORT.hasExtBitOp
2084         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2085           (genGetByte): new, to get a single byte,
2086           (genGetWord): new, to get a word from a long,
2087           (gen51Code): added GETABIT, GETBYTE, GETWORD
2088         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2089
2090 2005-09-23 Raphael Neider <rneider AT web.de>
2091
2092         * configure.in, configure: have device/lib/pic configured
2093         * device/lib/Makefile.in: added model-pic14
2094         * device/lib/clean.mk: added pic/ to clean rule
2095         * device/lib/pic: added rudimentary pic14 library providing support
2096           functions for multiplication/division/generic pointer access
2097         * src/SDCCopt.c (convilong): mark support functions as extern
2098           for pic14 port as well
2099         * src/pic/gen.c (genMult): added assertions,
2100           (genpic14Code): emit warning on unhandled iCodes
2101         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2102         * src/pic/pcode.c (pCodeOpCopy),
2103         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2104           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2105           SFR_REGISTER}), made safe for future extensions
2106         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2107           instructions even if preceeded by SKIP instructions (also remove
2108           them); removed unused code
2109         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2110           prevents leaving parts of the structure uninitialized after copying
2111
2112 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2113
2114         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2115           ago by me
2116         * support/regression/tests/addsub.c: added test for the bug
2117
2118 2005-09-21 Raphael Neider <rneider AT web.de>
2119
2120         * device/include/pic16/pic18f1220.h,
2121           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2122         * device/lib/pic16/Makefile.rules: added missing opening paren
2123         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2124           are provided in genutils.c,
2125           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2126           operand/result sizes,
2127           (genCmp): assert on NULL pointers first, then check deref'ed values
2128         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2129           result size
2130
2131 2005-09-18 Raphael Neider <rneider AT web.de>
2132
2133         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2134           as these are now unused,
2135           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2136         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2137           local, avoids uninitialized pointer dereference on r->name
2138         * src/pic16/ralloc.c (newReg): fixed indentation
2139
2140 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2141
2142         * src/SDCCval.c (constVal): fixed bug 730366
2143         * support/Util/SDCCerr.c,
2144         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2145
2146 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2147
2148         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2149
2150 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2151
2152         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2153
2154 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2155
2156         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2157           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2158         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2159           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2160         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2161         * packihx/packihx.c (hexDigit): made c unsigned char
2162         * as/mcs51/lklibr.c (fndsym),
2163         * link/z80/lkgb.c (gb),
2164         * link/z80/lklibr.c (fndsym),
2165         * link/z80/lkrloc.c (relr),
2166         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2167         * src/SDCC.lex (checkCurrFile, process_pragma),
2168         * src/SDCCglue.c (spacesToUnderscores),
2169         * src/SDCCmain.c (setParseWithComma, processFile),
2170         * src/asm.c (tvsprintf, printCLine),
2171         * src/avr/gen.c (emitcode, aopPut),
2172         * src/ds390/gen.c (emitcode),
2173         * src/hc08/gen.c (emitcode, emitinline),
2174         * src/mcs51/gen.c (emitcode, genInline),
2175         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2176           tokenizeLineNode),
2177         * src/pic/ralloc.c (debugLog),
2178         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2179           tokenizeLineNode),
2180         * src/pic16/ralloc.c (debugLog),
2181         * src/z80/main.c (_process_pragma):
2182            made all ctype.h function calls safe
2183         * src/SDCCopt.c: include math.h for fabs
2184         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2185           and used them throughout the code to make ctype.h function calls safe
2186         * src/ds390/main.c (asmLineNodeFromLineNode),
2187         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2188         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2189            unsigned char*
2190         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2191           (newpCodeAsmDir): made ctype.h function calls safe
2192         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2193           pic16_emitcode):  made lbp unsigned char*
2194         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2195           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2196         * src/xa51/gen.c (emitcode),
2197         * src/z80/gen.c (_emit2): made lbp unsigned char*
2198         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2199            char*
2200
2201 2005-09-05 Raphael Neider <rneider AT web.de>
2202
2203         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2204           access bank splitpoint
2205
2206 2005-09-05 Raphael Neider <rneider AT web.de>
2207
2208         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2209
2210 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2211
2212         * .version: changed to version 2.5.3
2213         * doc/sdccman.lyx: changed version to 2.5.3,
2214           documented --codeseg and --constseg and pragma codeseg and constseg,
2215           documented bit parameters (reentrant) and bit returning
2216         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2217            currFunc->recvSize, but is this ok for all ports?
2218           (ast2iCode): result of ~ on unsigned char must be cast to int for
2219            bool to work
2220         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2221           function pointers in bit space
2222         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2223           (processFuncArgs): call port.reg_parm() with reentrancy info
2224         * src/port.h,
2225         * src/avr/main.c,
2226         * src/ds390/main.c,
2227         * src/hc08/main.c,
2228         * src/pic/main.c,
2229         * src/pic16/main.c,
2230         * src/xa51/main.c,
2231         * src/z80/main.c: port.reg_parm prototype extended with
2232           "bool reentrant" parameter
2233         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2234           options.stackAuto for allocating bit register parameters
2235         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2236           (genSend): set BitBankUsed if it is,
2237           (selectRegBank): factored out of genCall for use in genPcall,
2238           (genCall): removed redundant dtype assignmen, use selectRegBank,
2239           (genPcall): handle returning in Carry properly, save in F0 if needed,
2240           (genReceive): handle bit register parameters
2241         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2242           (mcs51_assignRegisters): enable bit registers for all reentrant
2243            functions and don't set BitBankUsed unconditionally
2244         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2245         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2246         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2247
2248 2005-08-27 Borut Razem <borut.razem AT siol.net>
2249
2250         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2251         ppc-osx (Darwin) does not support -u option. It seems that it is
2252         supported only on Linux - GNU cp
2253
2254 2005-08-25 Borut Razem <borut.razem AT siol.net>
2255
2256         * sim/ucsim/gui.src/serio.src/Makefile.in,
2257           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2258           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2259           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2260           install and strip, since the strip at /usr/ccs/bin should be used
2261           on solaris
2262
2263 2005-08-24 Borut Razem <borut.razem AT siol.net>
2264
2265         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2266
2267 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2268
2269         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2270         ffffffffu
2271
2272 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2273
2274         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2275         * as/mcs51/lkmain.c (link_main): fixed warning
2276         * device/include/stdbool.h: ds390 has no advanced bit support yet
2277         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2278         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2279         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2280           and updated their macros
2281         * src/SDCCval.c (constVal): updated comment for renamed b_long
2282
2283 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2284
2285         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2286         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2287           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2288           (oprio): set priority for '['
2289         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2290            and adb_24_bit
2291         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2292         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2293         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2294         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2295           added overlayable BIT_BANK area
2296         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2297           (summary2): explain 'T' in legenda
2298         * as/mcs51/lkrloc.c: replaced old K&R style,
2299           (relr): added R_BIT processing,
2300           (errmsg): added "Bit-addressable relocation error",
2301           (adb_bit): added for converting from byte- to bit-addressable space,
2302           (adb_24_bit): added for converting from byte- to bit-addressable space
2303         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2304            used in reentrant functions now even as return value
2305         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2306         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2307           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2308         * src/SDCCglobl.h: added indicator BitBankUsed
2309         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2310            the bit registers b0-b7
2311         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2312           (geniCodeCast): fixed bug 1263853,
2313           (geniCodeLogicAndOr): put result in bool or char,
2314           (geniCodeReceive): added parameter func for accessing the return type,
2315           (geniCodeFunctionBody): pass func to geniCodeReceive
2316         * src/SDCCmain.c: added indicator BitBankUsed
2317         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2318         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2319           (checkSClass): don't put automatic bool/bit on stack,
2320           (checkFunction): removed check on function cannot return bit
2321         * src/SDCCsymt.h: added newBoolLink prototype
2322         * src/mcs51/gen.c (rb1regs): added bit registers,
2323           (movc): created for assigning to carry,
2324           (pushReg, popReg): created for pushing registers,
2325           (sameRegs): check both AOP_REG and AOP_CRY types,
2326           (aopOp): handle bit registers,
2327           (aopPut): optimization no self-assign,
2328           (saveRegisters): push reg->base (bits) only once for bit registers,
2329            and use pushReg,
2330           (unsaveRegisters): pop reg->base only once and use popReg,
2331           (assignResultValue): added parameter func and return in carry for bits,
2332           (genIpush): optimization no reload in A if not changed,
2333           (genSend): bit parameters in reentrant functions are passed in bit
2334            registers by first assigning to bits in B, then save registers and
2335            copy B to bits,
2336           (genCall): handle returning in Carry properly, save it in F0 if needed,
2337           (genPcall): updated assignResultValue call, this is not safe yet for bit
2338            returning function !!!
2339           (genFunction): don't generate equ's for bit registers and use pushReg,
2340           (genEndFunction): take care of bit returning functions and use popReg,
2341           (genRet): return bit in Carry,
2342           (genIfx): optimize bit registers and other directly addressable bits,
2343           (genReceive): updated assignResultValue call
2344         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2345           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2346            registers when using stack-auto
2347         * src/mcs51/ralloc.c (_G): added allBitregs,
2348           (regs8051): added the bit registers,
2349           (createStackSpil): use macro IS_BIT,
2350           (getRegBit): added to allocate a bit register, else spill,
2351           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2352           (updateRegUsage): factored out to ease stepping while debugging,
2353           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2354            also allocate bit registers,
2355           (fillGaps): handle bit registers,
2356           (findAllBitregs): added to create bit vector with all bit registers,
2357           (mcs51_allBitregs): returns this bit vector,
2358           (mcs51_assignRegisters): when using stack-auto use bit registers for
2359            passing parameters and creating local variables
2360         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2361
2362 2005-08-22 Borut Razem <borut.razem AT siol.net>
2363
2364         * device/lib/Makefile.in: replaced find option -or with -o
2365           to make it run on solaris
2366
2367 2005-08-22 Raphael Neider <rneider AT web.de>
2368
2369         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2370           fixes #1265442 (crash on Solaris)
2371
2372 2005-08-20 Borut Razem <borut.razem AT siol.net>
2373
2374         * configure, configure.in: added tests for libsocket and libnsl libraries,
2375           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2376           from support/regression/Makefile.in
2377         * support/regression/Makefile.in: added
2378         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2379         * sim/ucsim/libtool: regenerated on sparc-solaris
2380         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2381           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2382           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2383           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2384           sparc-solaris, which doesn't use GNU ld linker
2385         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2386         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2387
2388 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2389
2390         * src/mcs51/peeph.def: updated comments
2391
2392 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2393
2394         * device/lib/_gptrget.c,
2395         * device/lib/_gptrput.c: slightly shorter
2396         * doc/sdccman.lyx: incremented version
2397         * src/mcs51/peeph.def: moved peephole comments to the line of first
2398           change to better keep line correlation, reanimated 186.e
2399         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2400
2401 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2402
2403         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2404           David Saxton with quotes around file name.
2405
2406 2005-08-15 Borut Razem <borut.razem AT siol.net>
2407
2408         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2409           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2410           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2411           make tests run on x86_64 platform
2412
2413 2005-08-13 Raphael Neider <rneider AT web.de>
2414
2415         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2416           as it might be executed DURING a build (parallel make is wonderful)
2417
2418 2005-08-13 Raphael Neider <rneider AT web.de>
2419
2420         * device/lib/Makefile.in (port-specific-objects-pic16):
2421           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2422         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2423           dependency
2424         * device/lib/pic16/Makefile.rules: build subdirs before creating
2425           the library, removed builddir rule, create $(builddir) early in
2426           recurse rule, use empty recurse rule for leaf directories
2427         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2428           mkdir errors (race condition), removed duplicate suffix "hex"
2429           from clean rules
2430         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2431         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2432           prevents mkdir -p from aborting on Alpha
2433
2434 2005-08-12 Raphael Neider <rneider AT web.de>
2435
2436         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2437           db-statements in order to allow for arrays of pointers in code
2438           sections to be placed without interspersed 0-padding, fixes
2439           bug #1256215
2440         * (emitStatistics): fixed division by zero for pic18f1220
2441         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2442           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2443         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2444         * (pic16_pCodeConstString): keep track of already emitted string
2445           literals to prevent "duplicate definitions of symbol _str_NR"
2446         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2447           debug message
2448         * device/lib/Makefile.in: ignore failing PIC16 library builds
2449         * device/lib/pic16/Makefile: do not build if gputils are missing
2450         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2451
2452 2005-08-10 Raphael Neider <rneider AT web.de>
2453
2454         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2455           my last commit)
2456
2457 2005-08-10 Raphael Neider <rneider AT web.de>
2458
2459         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2460           Rokas' patch to add the new fixed point type "__fixed16x16"
2461         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2462           functions for __fixed16x16 arithmetics
2463         * device/lib/pic16: reimplemented the build system to support
2464           a separate build directory, better handling of libio (create
2465           the library in a separate subdir for each architecture) and
2466           easier configuration (centralized in Makefile.common)
2467
2468 2005-08-07 Raphael Neider <rneider AT web.de>
2469
2470         * src/pic16/gen.c (genrshTwo): fixed sign extension
2471         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2472         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2473           added T0CONbits
2474         * device/include/pic16/pic18f4220.h: NEW, header for
2475           pic18f4220 and pic18f4320
2476         * device/include/pic16/pic18fregs.h: added new devices,
2477           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2478         * device/include/pic16/signal.h: resolved name clashes
2479           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2480           to also allow testing for interrupt enable bits, added
2481           comments on how to use the macros
2482         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2483         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2484           register definitions for the devices
2485         * device/lib/pic16/pics.all: added new devices
2486         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2487           allocated memory
2488         * device/lib/pic16/libc/stdlib/memfree: do not count
2489           the block header as free memory
2490         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2491           simplified and added missing end-of-blocklist-marker
2492           (reported by Peter Onion, fixes #1252814)
2493         * (_mergeHeapBlock): fixed loop condition
2494         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2495           len==0, restructured code
2496         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2497           up a bit, reduced bitfield accesses, prevent endless loops
2498           in case of heap corruption
2499         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2500           "unreferenced arguments/must return a value" warnings
2501         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2502           replaced BAUDREG with SPBRG
2503         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2504           device/lib/pic16/debug/gstack/gstack.c: replaced
2505           _naked, _asm, _endasm with __naked, __asm, __endasm
2506
2507 2005-08-05 Raphael Neider <rneider AT web.de>
2508
2509         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2510           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2511
2512 2005-08-05 Borut Razem <borut.razem AT siol.net>
2513
2514         * device/lib/Makefile.in: added missing ';'
2515         * configure: removed ^M characters
2516
2517 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2518
2519         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2520           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2521           License
2522
2523 2005-08-04 Borut Razem <borut.razem AT siol.net>
2524
2525         * configure.in: pic16 libraries build 2nd try - enable running
2526           configure in device/lib/pic16
2527         * configure: regenerated from configure.in
2528         * device/lib/Makefile.in: create $(PORT)/bin directory
2529
2530 2005-08-03 Raphael Neider <rneider AT web.de>
2531
2532         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2533           to get/set values via pointers
2534         * (genUnpackBits,genPackBits): changed detection of
2535           ptr->bitfield vs. sym.bitfield, fixed access via generic
2536           pointers, removed dead (wrong) code for multibyte bitfields
2537         * (genNearPointerGet, genGenPointerGet): removed useless code,
2538           fixed bitfield detection, fixes #1250594
2539         * (genNearPointerSet): removed useless code
2540         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2541           and introduced macro pic16_emitpcode that conditionally emits
2542           the origin of the following pCode (useful for debugging SDCC)
2543         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2544         * (createDefmap): fixed handling of LFSR for --optimize-df
2545
2546 2005-08-02 Borut Razem <borut.razem AT siol.net>
2547
2548         * device/lib/Makefile.in: pic16 libraries build enabled since
2549           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2550
2551 2005-08-02 Raphael Neider <rneider AT web.de>
2552
2553         * src/pic16/gen.c (genPackBits): removed deprecated warning
2554         * (genGenPointerSet): fixed bitfield detection
2555
2556 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2557
2558         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2559
2560 2005-07-31 Raphael Neider <rneider AT web.de>
2561
2562         * device/lib/pic16/libdev/pic18f458.c,
2563           device/include/pic16/pic18f458.h: added missing T0CONbits
2564
2565 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2566
2567         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2568
2569 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2570
2571         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2572
2573 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2574
2575         * device/include/mcs51/at89c51ed2.h: added.
2576
2577 2005-07-23 Raphael Neider <rneider AT web.de>
2578
2579         * src/pic/gen.h: added emitpcode macro for debugging
2580         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2581           and replace by macro adding debug information on demand
2582         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2583         * (gencjne): tried to fix; replaced with correct (slower) code
2584         * (gen{Unp,P}ackBits): fixed single bit access
2585         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2586         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2587           previous instruction
2588         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2589           register has to be handled with care (forbidding movement
2590           of assignments/uses, removing assignments completely, ...)
2591         * (pCodeOptime2pCodes): make use of regIsSpecial
2592         * added lots of debugging output (commented out)
2593         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2594           from being reused as result UNLESS it is known to work
2595
2596 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2597
2598         * support/Util/dbuf.h: include <stddef.h> for size_t
2599         * .version: changed to version 2.5.2
2600
2601 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2602
2603         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2604
2605 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2606
2607         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2608           (genModOneByte): removed needless psha/pula
2609
2610 2005-07-22 Raphael Neider <rneider AT web.de>
2611
2612         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2613           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2614         * src/pic/gen.c (resolveIfx): do not "invent" labels
2615         * (genSkipc): changed to positive logic
2616         * (genSkipCond): removed as no longer needed
2617         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2618           backport from PIC16
2619         * (genLeftShift): check operands are in different registers
2620         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2621           INCF does not update CARRY...
2622         * src/pic/main.c: fixed _linkCmd
2623         * src/pic/pcode.c (unlinkpCode): added inactive code
2624         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2625           alive (do not assign result and operand overlapping registers)
2626
2627 2005-07-22 Raphael Neider <rneider AT web.de>
2628
2629         * src/pic/device.c (dump_sfr): replaced register declaration with
2630           call to emitSymbolToFile() to avoid duplicate symbols
2631         * (assignRelocatableRegisters): do not declare external symbols
2632         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2633           right (take size of type, not etype)
2634         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2635         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2636         * (packRegsForAccUse): disabled assignment of WREG as
2637           the result reg to prevent occurence of just fixed #1235003,
2638           fixes #1242954
2639         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2640           symbols (avoids duplicate symbols in .asm file)
2641         * (pic14emitRegularMap): use emitSymbolToFile()
2642         * src/pic/gen.c (aopOp): fixed spillLocation handling
2643         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2644         * (genDataPointerSet): removed unneccessary variables/output
2645
2646 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2647
2648         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2649         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2650
2651 2005-07-21 Raphael Neider <rneider AT web.de>
2652
2653         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2654           architecture cannot handle them efficiently, fixes bug #1235003
2655         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2656           check for empty sets before using them (fixes bug #1232190)
2657
2658 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2659
2660         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2661           (lnksect2): generate warnings for memory overlap
2662         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2663           constseg to set the name of these segments so you can instruct the linker
2664           to place them in banks
2665         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2666         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2667           added code_seg and const_seg to options
2668         * src/SDCCglue.c (emitMaps): use options.const_seg,
2669           (createInterruptVect): put interrupt vectors in segment HOME,
2670           (glue): put HOME before static segment and put the main glue in HOME,
2671           (glue): use options.code_seg
2672         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2673         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2674           these segments so you can instruct the linker to place them in banks
2675           (linkEdit): use code_loc for HOME segment which should be the first
2676           segment in code memory now
2677         * src/SDCCmem.c: fixed more stuff like bug 1238386
2678         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2679           (changePointer): don't change function pointers to code pointers for
2680           banked functions,
2681           (compareType): added exceptional check for banked function pointers
2682         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2683         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2684           after static in code memory
2685         * src/mcs51/gen.c: added aopLiteralLong prototype,
2686           (aopForSym): use getSize for functions,
2687           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2688           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2689           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2690           the segment,
2691           (genPcall): use call for literal function pointers and generate banked
2692           calls over the one trampoline so there's only one place for the user to
2693           modify according to his/hers hardware,
2694           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2695           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2696         * src/mcs51/main.c: added keyword banked,
2697           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2698         * support/Util/SDCCerr.c,
2699         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2700           needed for passing the bank and address to the trampoline
2701         * device/lib/mcs51/crtbank.asm: added for bankswitching
2702         * device/lib/mcs51/Makefile: added crtbank
2703
2704 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2705
2706         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2707           for fields at offset 0 of a struct or union as reported
2708           on 2005-07-07 in the developer mailing list.
2709
2710 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2711
2712         * src/SDCCmem.c: fixed bug 1238386
2713
2714 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2715
2716         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2717           (patch #1144962), added peephole 300, enabled 259.x
2718         * doc/sdccman.lyx: removed screenshot and provided link instead
2719
2720 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2721
2722         * doc/sdccman.lyx: added section about debugging with ddd
2723         * doc/figures/ddd_example.eps: screenshot of debugging session
2724
2725 2005-07-04 Raphael Neider <rneider AT web.de>
2726
2727         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2728           like CODE pointers, fixes #1115683
2729         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2730           call, fixes bugs #1232211, #1228110,
2731           fixed wrong casts to pCodeFlow from pCodeInstructions
2732
2733 2005-07-04 Raphael Neider <rneider AT web.de>
2734
2735         * src/pic/gen.c (popGet): changed assert to allow for
2736           bit operands
2737         * (popGetAddr): changed signature to provide
2738           an additional index, patched all call sites
2739         * (genCmpEq): handle literal-like operands correctly
2740         * (genAddrOf): added sanity checks on __code/__data pointers
2741         * (genAssign): added handling of symbols from __code section
2742         * (gencjne): do not generate code for comparisons whose result
2743           is neither stored nor used, fixes bug #1171114
2744         * (AccLsh, AccRsh): operate on operand instead of WREG
2745         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2746           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2747           by known count
2748         * rewrote complete shift-by-literal logic, commented unused
2749           functions out
2750         * (genConstPointerGet): get multiple bytes (if result size > 1),
2751           fixed handling of non-immediate addresses
2752         * (genPointerGet): handle CODE pointers like CONST pointers
2753         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2754         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2755           operand is to be treated as a literal or not
2756         * (mov2w,genPcall,genCmpEq),
2757           src/pic/genarith.c: use aop_isLitLike() to decide between
2758           literal/register contents
2759         * (addSign): added missing offset
2760         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2761           only emit comment in debug-mode,
2762           use {aop,op}_isLitLike throughout the file
2763         * src/pic/glue.c: fix initializers for pointers (work in progress)
2764         * src/pic/pcode.c (get_op): honor index on _const symbols
2765         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2766         * (dumppBlock): added pCode size estimation
2767         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2768           check for IS_SYMOP before OP_SYMBOL'ing
2769         * fixed indentation, compacted switch-statements
2770         * (allocReg): find free register and allocate it instead of
2771           allocating new registers all the time
2772         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2773           registers as its operands (necessary only for multibyte GETs)
2774
2775 2005-07-01 Raphael Neider <rneider AT web.de>
2776
2777         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2778           debugging .asm-output macros FENTRY + FEXIT
2779         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2780           way... I wonder...
2781         * (emitpComment): NEW, printf to pCode
2782         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2783           offset handling
2784         * (popGetAddr): NEW, variant of popGet to access an immediates
2785           high(er) bytes instead of the n'th byte of memory they reference,
2786           replaced popGet with popGetAddr where neccessary
2787         * (genDataPointerGet): reactivated and fixed implementation
2788         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2789           accesses
2790         * (genDataPointerSet): fixed multibyte assignments
2791         * (genpic14Code): fixed --i-code-in-asm handling
2792         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2793         * (genPlus): fixed index-out-of-bounds error
2794         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2795         * src/pic/ralloc.c: added debugging output macro FENTRY2
2796         * (spillThis): fixed indentation, enbraced for-body for clarity
2797         * (rematStr): commented out as now unused
2798         * (regTypeNum): commented out special spill case (overwrites
2799           arbitrary values)
2800         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2801
2802 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2803
2804         * doc/sdccman.lyx: documented sfr16/sfr32,
2805           added example for using storage class with function pointers
2806         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2807
2808 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2809
2810         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2811         * device/lib/_itoa.c,
2812         * device/lib/_ltoa.c: optimized codesize
2813         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2814           but don't know how to suppress the double warning.
2815         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2816         * support/Util/SDCCerr.c,
2817         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2818
2819 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2820
2821         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2822           fixed old K&R prototypes
2823         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2824         * device/lib/_gptrget.c,
2825         * device/lib/_gptrgetc.c,
2826         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2827           also new versions for small generic pointers and banked generic pointers
2828         * src/port.h: added const_name
2829         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2830         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2831         * src/SDCCcse.c (findPrevIc): check all associative operators
2832         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2833         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2834         * src/SDCCmem.c: updated comments,
2835           set far-space to 0 for pdata, results in optimized code
2836         * src/SDCCmem.h: added macro CONST_NAME
2837         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2838           moving the info into the highest bits, see also gptrget/gptrput
2839         * src/src.dsp: added sdcc.ico to project files
2840         * src/avr/gen.c (genCast): fixed bug 0x%d
2841         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2842         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2843           relation between ptr_type and DCL_TYPE,
2844           (genCast): fixed bug 0x%d
2845         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2846           (CODE)" for const_name
2847         * src/hc08/gen.c (genCast): fixed bug 0x%d
2848         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2849           (hc08_port): added "CONST (CODE)" for const_name
2850         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2851           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2852           between ptr_type and DCL_TYPE,
2853           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2854           operand* and took AOP() inside function so sfr-ness can be checked,
2855           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2856           new prototype,
2857           (genFunction, genEndFunction): optimized stack setup,
2858           (genMinus): optimized for literals with ending zeroes (in bytes),
2859           (genCast): fixed bug 0x%d
2860         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2861           (mcs51_port): added "CONST (CODE)" for const_name
2862         * src/mcs51/peeph.def: made rule 226 more generic
2863         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2864         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2865         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2866         * src/z80/main.c (z80_port): added NULL for const_name,
2867           (gbz80_port): added NULL for const_name
2868         * support/regression/tests/bug663539.c,
2869         * support/regression/tests/sfr16.c: new tests
2870
2871 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2872
2873         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2874
2875 2005-06-24 Raphael Neider <rneider AT web.de>
2876
2877         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2878           corrected typos...
2879         * device/include/pic16/signal.h: added USBIF
2880           and SIG_USB
2881
2882 2005-06-24 Raphael Neider <rneider AT web.de>
2883
2884         * device/lib/pic16/libdev/pic18f2455.c,
2885           device/include/pic16/pic18f2455.h: NEW
2886         * device/include/pic16/pic18fregs.h,
2887           device/lib/pic16/pics.all,
2888           src/pic16/device.c: added 18f2455
2889         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2890           device/include/pic16/{pic18f[68][567].h,usart.h}:
2891           replaced MULTIPLE_USARTS define with more relaible
2892           compatibility sfrs (for USART access)
2893
2894 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2895
2896         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2897           and the output asm file line is printed on two lines.
2898
2899 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2900
2901         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2902           BGT, BLE, BHI, and BLS instructions
2903         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2904           genCmpEq): removed
2905         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2906           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2907           fixes bug #1216342
2908         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2909
2910 2005-06-15 Raphael Neider <rneider AT web.de>
2911
2912         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2913         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2914         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2915           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2916           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2917
2918 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2919
2920         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2921           Marcel Telka in bug #1215704
2922
2923 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2924
2925         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2926           located in shared memory bank.
2927
2928 2005-05-31 Raphael Neider <rneider AT web.de>
2929
2930         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2931           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2932           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2933
2934 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2935
2936         * device/lib/_strncpy.c: fixed the fix
2937
2938 2005-05-26 Raphael Neider <rneider AT web.de>
2939
2940         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2941           initializers with \0, bug #1208187
2942         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2943           intializers with \0, bug #1208187
2944
2945 2005-05-26 Raphael Neider <rneider AT web.de>
2946
2947         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2948           initializers with \0, bug #1208187
2949         * src/pic16/main.c (_process_pragma): added sanity checks
2950           for stack position and size, emit warnings when appropriate
2951
2952 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2953
2954         * device/lib/_strncpy.c: fixed not filling with \0
2955
2956 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2957
2958         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2959           createFunction),
2960         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2961           compound_statement),
2962         * src/SDCCsymt.h,
2963         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2964
2965 2005-05-24 Raphael Neider <rneider AT web.de>
2966
2967         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2968
2969 2005-05-24 Raphael Neider <rneider AT web.de>
2970
2971         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2972           TRISE definitions, closes bug #1162453
2973
2974 2005-05-22 Raphael Neider <rneider AT web.de>
2975
2976         * src/pic16/main.c (_process_pragma): check for missing
2977           arguments to pragmas code and udata
2978         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2979           consistency fixes to match other headers (thanks to Jim Paris)
2980         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2981
2982 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2983
2984         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2985
2986 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2987
2988         * support/regression/tests/bug1198642.c: new test
2989         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
2990         * src/SDCCcse.c (findPrevIc): added comment, please have a look
2991         * support/scripts/resource.h,
2992         * support/scripts/resource.rc,
2993         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
2994         * support/scripts/sdcc.ico: added 32x32 icon
2995
2996 2005-05-18 Raphael Neider <rneider AT web.de>
2997
2998         * device/lib/pic16/libdev/pic18f*.c,
2999         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
3000           keywords to "__sfr" and "__at (X)"
3001         * device/include/pic16/pic18fregs.h: added pic18f4520
3002         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
3003           #1203088 (MPLAB compatibility)
3004
3005 2005-05-17 Raphael Neider <rneider AT web.de>
3006
3007         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3008         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3009         * device/lib/pic16/pics.all: added new devices
3010         * src/pic16/device.c: added support for pic18f4520
3011
3012 2005-05-16 Raphael Neider <rneider AT web.de>
3013         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3014         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3015         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3016           convenience function for bit access
3017
3018 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3019
3020         * device/lib/printf_large.c: fixed bug 1193299
3021         * support/regression/tests/bug1057979.c: added test %3.3s
3022
3023 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3024
3025         * device/include/mcs51/8051.h,
3026         * device/include/mcs51/8052.h: made parseable with lint
3027         * device/include/mcs51/lint.h: added include file for (sp)lint
3028         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3029         * doc/cdbfileformat.lyx,
3030         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3031
3032 2005-05-14 Raphael Neider <rneider AT web.de>
3033
3034         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3035         * device/lib/pic16/libc/stdlib/itoa.c (new)
3036         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3037         * device/lib/pic16/libio/Makefile: exclude subdir according to
3038           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3039         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3040         * src/pic16/gen.c (genFunction): prevent annoying warning
3041         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3042           nameclashes on BeOS
3043         * support/cpp2/cppmain.c (cpp_output_string): new
3044         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3045           fixes bug 1116802
3046
3047 2005-05-13 Borut Razem <borut.razem AT siol.net>
3048
3049         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3050
3051 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3052
3053         * .version: changed to version 2.5.1; back to bleeding edge development
3054
3055 2005-05-11 Borut Razem <borut.razem AT siol.net>
3056
3057         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3058           generate PDF version 1.3 documents
3059
3060 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3061
3062         * .version: changed to version 2.5.0
3063
3064 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3065
3066         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3067
3068 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3069
3070         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3071         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3072         well as many smaller updates.
3073         * .version: changed to version 2.5.0-pre1
3074
3075 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3076
3077         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3078
3079 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3080
3081         * support/regression/tests/bug1185672.c: added
3082         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3083           bug 1185672
3084         * src/mcs51/gen.c (genCall): added comments, made it look safer
3085         * src/mcs51/gen.c (genEndFunction): simplified
3086
3087 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3088
3089         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3090
3091 2005-04-14 Borut Razem <borut.razem AT siol.net>
3092
3093         * fixed bug 1045046 - SIGSEGV with really simple code?:
3094           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3095           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3096
3097 2005-04-14 Borut Razem <borut.razem AT siol.net>
3098
3099         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3100           src/pic16/device.h: temporarily disabled experimental #inline pragma
3101           for 2.5.0 release
3102
3103 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3104
3105         * device/include/z80/stdio.h,
3106         * device/include/z80/string.h: removed these highly incomplete files so
3107           SDCC can use the default ones in device/include/
3108
3109 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3110
3111         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3112         gcc warning.
3113         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3114         fix sdcpp warnings.
3115
3116 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3117
3118         * device/include/malloc.h: removed redundant __reentrant prototypes
3119         * device/lib/_mullong.c: added working xstack variant in asm (C version
3120           doesn't pass regression tests)
3121         * device/lib/bpx.c: used __data and made bpx char for mcs51
3122         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3123           (createFunction): fixed bug with xstackPtr
3124         * src/SDCCcse.c: corrected comments
3125         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3126           (killDeadCode, eBBlockFromiCode): removed unused code
3127         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3128           corrected comments
3129         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3130           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3131           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3132           (genModOneByte): fixed warning in MSVC
3133         * src/mcs51/main.c (): added comments
3134         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3135
3136 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3137
3138         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3139
3140 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3141
3142         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3143
3144 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3145
3146         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3147         characters arrays of larger size than the declared one.
3148
3149 2005-04-10 Borut Razem <borut.razem AT siol.net>
3150
3151         * src/pic/gen.c (genInline),
3152           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3153           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3154           (findNextInstruction), (findPrevInstruction),
3155           (findInstructionUsingLabel),
3156           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3157         * src/pic/pcode.c (findLabel): added missing '\n'
3158         * src/src.dsp: added SDCCdwarf2.c to the project
3159
3160 2005-04-09 Borut Razem <borut.razem AT siol.net>
3161
3162         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3163
3164 2005-04-08 Raphael Neider <rneider AT web.de>
3165
3166         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3167           into the chain after a given one) and mergeDefmapSymbols (combine
3168           defmap entries for each symbol per pcode)
3169         * (createDefmap): have defmap entries merged in the end
3170         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3171           a symbol before replacing one access type's symbol, merge symbols in
3172           the end (replacement symbol might already have an entry)
3173         * (assignValnums): keep reference to written WREG intact
3174
3175 2005-04-08 Raphael Neider <rneider AT web.de>
3176
3177         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3178           Alpha)
3179
3180 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3181
3182         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3183         bytes
3184
3185 2005-04-07 Raphael Neider <rneider AT web.de>
3186
3187         * device/include/pic16/usart.h: added compatibility defines for
3188           devices with more than one USART
3189         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3190
3191 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3192
3193         * device/lib/Makefile.in: updated for port specific include
3194
3195 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3196
3197         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3198
3199 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3200
3201         * device/include/8051.h,
3202         * device/include/8052.h,
3203         * device/include/at89S8252.h,
3204         * device/include/at89c55.h,
3205         * device/include/at89x051.h,
3206         * device/include/at89x51.h,
3207         * device/include/at89x52.h,
3208         * device/include/mcs51reg.h,
3209         * device/include/reg51.h,
3210         * device/include/reg764.h,
3211         * device/include/regc515c.h,
3212         * device/include/sab80515.h: (re)moved these 12 files
3213         * device/include/mcs51/8051.h,
3214         * device/include/mcs51/8052.h,
3215         * device/include/mcs51/at89S8252.h,
3216         * device/include/mcs51/at89c55.h,
3217         * device/include/mcs51/at89x051.h,
3218         * device/include/mcs51/at89x51.h,
3219         * device/include/mcs51/at89x52.h,
3220         * device/include/mcs51/mcs51reg.h,
3221         * device/include/mcs51/reg51.h,
3222         * device/include/mcs51/reg764.h,
3223         * device/include/mcs51/regc515c.h,
3224         * device/include/mcs51/sab80515.h: and added them here
3225
3226 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3227
3228         * device/include/stdarg.h: changed SDCC specific keywords to double
3229           underlined form.
3230         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3231           mcs51 and ds390.
3232         * device/include/hc08/mc68hc908gp32.h,
3233         * device/include/hc08/mc68hc908jb8.h,
3234         * device/include/hc08/mc68hc908jkjl.h,
3235         * device/include/hc08/mc68hc908qy.h: fixed comments
3236         * device/include/mcs51/README: updated
3237         * device/include/mcs51/c8051f120.h: added PINRSF
3238         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3239         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3240           amidst code. Also inline is not supported.
3241
3242 2005-04-06 Raphael Neider <rneider AT web.de>
3243
3244         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3245         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3246           callers stack/frame pointers
3247
3248 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3249
3250         * device/include/pic16/usart.h: added, missing in previous commit,
3251         * device/include/pic16/adc.h: fixed typo,
3252         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3253         commit,
3254         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3255         <p18fxxx.inc>
3256         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3257         uninitialized because a bug appears with gplink
3258         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3259         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3260         complains for unrecognised option
3261
3262 2005-04-05 Raphael Neider <rneider AT web.de>
3263
3264         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3265           structs as well (using memcpy)
3266         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3267           on ISRs (GOTO has no label)
3268         * src/pic16/device.h: added OF_OPTIMIZE_DF
3269         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3270           new data flow analysis/optimization
3271         * src/pic16/pcode.c: added (prototypes for and implementation of)
3272           dataflow analysis functions, fixed pCodeInstructions' inCond and
3273           outCond values, made RCALL a branch instruction
3274         * (pic16_unlinkpCode): keep C line if possible
3275         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3276           C line moved if possible
3277         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3278         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3279           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3280         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3281           new flow)
3282         * (pic16_getJumptabpCode): NEW, needed in...
3283         * (LinkFlow): fixed handling of jumptables, calls and conditional
3284           branches
3285         * (pic16_InsertCommentAfter): NEW
3286         * (pic16_pCodeReplace): made verbose and flow preserving
3287         * (AnalyzeFlow): added call to data flow analysis
3288         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3289         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3290         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3291
3292 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3293
3294         * src/SDCCast.c (decorateType): fixed bug #1105626
3295
3296 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3297
3298         * device/include/asm/pic16/features.h,
3299         * pic18f*.h headers,
3300         * device/include/pic16/adc.h,
3301         * device/include/pic16/delay.h,
3302         * device/include/pic16/i2c.h,
3303         * device/include/pic16/malloc.h,
3304         * device/include/pic16/stdio.h,
3305         * device/include/pic16/stdlib.h,
3306         * device/include/pic16/string.h,
3307         * device/lib/pic16/libc/stdio/printf_tiny.c,
3308         * device/lib/pic16/libc/stdio/printf_small.c,
3309         * device/lib/pic16/libc/stdio/strmgpsim.c,
3310         * device/lib/pic16/libc/stdio/strmmssp.c,
3311         * device/lib/pic16/libc/stdio/strmusart.c,
3312         * device/lib/pic16/libc/stdio/vfprintf.c,
3313         * device/lib/pic16/libc/stdlib/ltoa.c,
3314         * device/lib/pic16/libc/stdlib/putchar.c,
3315         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3316         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3317         * device/lib/pic16/libc/stdlib/memchrram.c,
3318         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3319         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3320         * device/lib/pic16/libio/adc/adcbusy.c,
3321         * device/lib/pic16/libio/adc/adcread.c,
3322         * device/lib/pic16/libio/adc/adcsetch.c,
3323         * device/lib/pic16/libio/usart/ubaud.c,
3324         * device/lib/pic16/libio/usart/ubusy.c,
3325         * device/lib/pic16/libio/usart/udrdy.c,
3326         * device/lib/pic16/libio/usart/uopen.c,
3327         * device/lib/pic16/libio/usart/uputc.c,
3328         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3329         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3330         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3331         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3332         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3333         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3334         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3335         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3336         specific keywords to double underlined form,
3337         * device/lib/pic16/libc/Makefile.rules,
3338         * device/lib/pic16/libsdcc/Makefile.rules,
3339         * device/lib/pic16/libm/Makefile,
3340         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3341         to compile with C standard set in Makefile.common
3342         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3343         rand.c and crc.c in compilation process,
3344         * device/lib/pic16/libsdcc/int/divuint.c,
3345         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3346         `c' from signed to unsigned,
3347         * device/lib/pic16/startup/crt0.c,
3348         * device/lib/pic16/startup/crt0i.c,
3349         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3350         keywords to double underlined form, bug fixes in _do_cinit function
3351         which prevented the correct initialization of the .idata segment,
3352         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3353         core to enter a infinite loop
3354         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3355
3356 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3357
3358         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3359
3360 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3361
3362         * device/include/Makefile.in: add support for hc08 subdirectory
3363         * device/include/hc08/: new subdirectory
3364         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3365         Lucas Loizaga, thanks!
3366         * device/include/hc08/mc68hc908qy.h,
3367         * device/include/hc08/mc68hc908gp32.h,
3368         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3369         their own directory. Changed internal macro names to use the compiler
3370         reserved namespace. Changed SDCC specific keywords to double
3371         underlined form.
3372         * device/include/math.h,
3373         * device/include/malloc.h,
3374         * device/include/stdarg.h,
3375         * device/include/stdbool.h
3376         * device/include/string.h,
3377         * device/include/tinibios.h,
3378         * device/include/ds400rom.h,
3379         * device/include/8051.h,
3380         * device/include/8052.h,
3381         * device/include/80c51xa.h,
3382         * device/include/at89c55.h,
3383         * device/include/at89S8252.h,
3384         * device/include/at89x51.h,
3385         * device/include/at89x52.h,
3386         * device/include/ds80c390.h,
3387         * device/include/reg764.h,
3388         * device/include/regc515c.h,
3389         * device/include/sab80515.h,
3390         * device/include/mcs51/c8051f000.h,
3391         * device/include/mcs51/c8051f018.h,
3392         * device/include/mcs51/c8051f020.h,
3393         * device/include/mcs51/c8051f040.h,
3394         * device/include/mcs51/c8051f060.h,
3395         * device/include/mcs51/c8051f120.h,
3396         * device/include/mcs51/c8051f300.h,
3397         * device/include/mcs51/c8051f310.h,
3398         * device/include/mcs51/c8051f320.h,
3399         * device/include/mcs51/c8051f330.h,
3400         * device/include/mcs51/c8051f350.h,
3401         * device/include/z180.h: Changed SDCC specific keywords to double
3402         underlined form.
3403
3404 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3405
3406         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3407         18F4455,
3408         * (pic16_assignConfigWordValue): disable testing of configuration
3409         register value with config mask,
3410         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3411         function with port->fun_prefix,
3412         * (genFunction): when generating a naked interrupt function never
3413         create an absolute segment placed in interrupt vector address, place
3414         the actual interrupt function at IVA instead, when an interrupt
3415         function is generated with unspecified interrupt then do not create
3416         the absolute section,
3417         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3418         code for generating a call to generic pointer get/put function with
3419         a call to function pic16_callGenericPointer(),
3420         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3421         the call to the generic pointer get/put functions with prefixing the
3422         function name with port->fun_prefix,
3423         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3424         * src/pic16/main.c (_process_pragma): prefix function with
3425         port->fun_prefix,
3426         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3427         calling assembler, old 18Fxxxx macro is deprecated,
3428         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3429         PC_ASMDIR in while condition,
3430         * (findInstruction): add PC_ASMDIR in while condition,
3431         * (buildCallTree): prefix main with port->fun_prefix,
3432         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3433         identifier for variable with banked access in instructions BTFSS,
3434         BTFSC, BCF, BSF, BTG
3435         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3436         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3437         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3438         perform optimization when enviroment variable NO_REG_OPT is set,
3439         * (insideLRBlock): NEW, return 1 if register is inside an
3440         INF_LOCALREGS block,
3441         * (RemoveRegFromLRBlock): remove a register that is completely
3442         eliminated by register optimization, but it is still left in local
3443         register store/restore in/from stack block,
3444         * (Remove2pcodes): after removing register, check to see if it
3445         should be removed from local register store/restore in/from stack
3446         block,
3447         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3448         DUMMY_READ_VOLATILE,
3449
3450         * device/include/pic16/adc.h: minor prototype modifications and
3451         update,
3452         * device/include/pic16/malloc.h: added GPL notice various
3453         modifications,
3454         * device/include/pic16/stdint.h: NEW, standard header for ints
3455         * device/include/pic16/delay.h: NEW, header for delay functions,
3456         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3457         delay1mtcy,
3458         * device/include/pic16/signal.h: NEW, header providing helper macros
3459         for implementing signal handlers,
3460         * device/include/pic16/stdio.h: added prototypes for functions,
3461         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3462         prototypes for stdin and stdout, added macro PUTCHAR to
3463         automatically implement putchar function prototype,
3464         * device/include/pic16/usart.h: modified and updated USART library,
3465         * device/lib/pic16/libio/adc/,
3466         * device/lib/pic16/libio/i2c: some modifications to improve library
3467         performance,
3468         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3469         family of functions,
3470         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3471         family of functions and other sources,
3472         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3473         of the PIC18Fxx[28] devices,
3474         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3475         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3476         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3477         _do_cinit function, because the previous failed when local variables
3478         where not placed in the same memory bank,
3479         * device/lib/pic16/libsdcc/char/: various modifications to improve
3480         library performance,
3481         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3482         information on the new functions of the c library and more...
3483
3484 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3485
3486         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3487
3488 2005-03-26 Raphael Neider <rneider AT web.de>
3489
3490         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3491           if condition == CARRY)
3492         * (genCmp): adapted to new genSkipc semantics
3493         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3494           on rIfx (genCmp was broken)
3495
3496 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3497
3498         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3499         * src/z80/main.c (_keywords[]),
3500         * src/SDCCglobal.h (struct options),
3501         * src/SDCC.y,
3502         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3503         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3504         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3505         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3506         always available in leading double underscore form. The C99 support is
3507         mostly missing, but it's a start.
3508         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3509         reserved identifier "__data".
3510
3511 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3512
3513         * src/mcs51/peeph.def: fixed bug 1170013
3514
3515 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3516
3517         * device/include/mcs51reg.h: fixed bug 842007
3518
3519 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3520
3521         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3522         last time.
3523
3524 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3525
3526         * src/port.h (struct PORT),
3527         * src/avr/ralloc.c (avr_assignRegisters),
3528         * src/avr/main.c,
3529         * src/ds390/ralloc.c (ds390_assignRegisters),
3530         * src/ds390/main.c,
3531         * src/hc08/ralloc.c (hc08_assignRegisters),
3532         * src/hc08/main.c,
3533         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3534         * src/mcs51/main.c,
3535         * src/pic/ralloc.c (pic14_assignRegisters),
3536         * src/pic/main.c,
3537         * src/pic16/ralloc.c (pic16_assignRegisters),
3538         * src/pic16/main.c,
3539         * src/xa51/ralloc.c (xa51_assignRegisters),
3540         * src/xa51/main.c,
3541         * src/z80/ralloc.c (z80_assignRegisters),
3542         * src/z80/ralloc.h,
3543         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3544         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3545         * src/SDCCcse.h,
3546         * src/SDCCdflow.c (computeDataFlow),
3547         * src/SDCCdflow.h,
3548         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3549         * src/SDCCloop.h,
3550         * src/SDCCcflow.c (*),
3551         * src/SDCCcflow.h,
3552         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3553         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3554         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3555         immedDom() returning wrong block; probably fixes bug #1160833)
3556
3557 2005-03-20 Borut Razem <borut.razem AT siol.net>
3558
3559         * support/scripts/inc2h.pl: WIN32 port
3560
3561 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3562
3563         * device/lib/makefile.in: added abs.c and labs.c
3564
3565 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3566
3567         * device/include/stdint.h: added
3568         * device/lib/abs.c: added
3569         * device/lib/labs.c: added
3570         * device/include/stdlib.h: added abs() and labs() prototypes
3571         * device/lib/libsdcc.lib: added abs and labs
3572         * device/include/float.h,
3573         * device/lib/_fsmul.c,
3574         * device/lib/printf_fast.c,
3575         * device/lib/printf_tiny.c: updated comments
3576
3577 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3578
3579         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3580         bug #1164313
3581
3582 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3583
3584         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3585         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3586
3587 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3588
3589         * device/lib/printf_large.c: removed inline assembly for portability and
3590           readability. Use printf_fast if speed or size are more important.
3591         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3592         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3593
3594 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3595
3596         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3597         prevent compiler warning
3598
3599 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3600
3601         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3602         moved to level 0 and declared as static. Also they are explicit
3603         placed in access bank. This was necessery because some times they
3604         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3605         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3606         optimizations. Currently only compare to unsigned char is implemented,
3607         * src/pic16/gen.c: added fReturnIdx array,
3608         * (struct resolvedIfx) is moved to gen.h and made public,
3609         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3610         * (aopForSym): added an optimization to directly store in stack of
3611         the operand of a SEND iCode,
3612         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3613         but as registers instead (AOP_REG) using the fReturnIdx array,
3614         * (pic16_freeAsmop): remove the freed register from the
3615         _G.sregsAlloc field,
3616         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3617         a compare of 'WREG',
3618         * (pic16_popGetTempRegCond): changed function prototype, now
3619         function takes also a bitVector argument v which holds the current
3620         set of registers that are allocated for stack access by aopForSym,
3621         registers allocated in aopForSym for accessing stack symbols are not
3622         any more part of the functions usedRegs field,
3623         * (genCall): some times aopOp is called for a stack variable to be
3624         send, aopForSym might perform the push, if this is true make sure
3625         that genCall doesn't push the variable twice by testing _G.resDirect,
3626         * (genFunction): changed testing for unspecified interrupt number
3627         from 256 to INTNO_UNSPEC,
3628         * modified selection scheme of frame pointer generation. Previously
3629         if function did use local registers a frame pointer was generated,
3630         now a frame pointer is generated only if function has arguments
3631         (that need PLUSW2 register access), or has stack arguments, or the
3632         compiler is not instructed to omit the frame pointer,
3633         * (genEndFunction): before restoring local registers that were saved
3634         in the function preamble, also restore the registers that *might*
3635         have been allocated for stack access,
3636         * (genRet): removed some old comments,
3637         * (genCmp, the active (RN's) version): added a call to the
3638         pic16_genCmp_special function to perform the compare with a more
3639         robust and optimized way,
3640         * (genInline): a feature has been added in inline code generation,
3641         which allows a wildcard variable substitution when writing inline
3642         assembly. Code is incomplete and experimental therefore undocumented,
3643         * (genCast): changed order of aopOp for result and right to allow
3644         aopForSym to directly load the result if possible,
3645         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3646         perform an optimized compare on some selected special occasions,
3647         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3648         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3649         generate an IVT any more,
3650         * src/pic16/main.c (pic16_optionsTable): added command line option
3651         --optimize-cmp,
3652         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3653         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3654         macros,
3655         * src/pic16/NOTES: Raphael Neider added in list of active developers
3656         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3657         jumptable_end to prevent bug #,
3658         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3659         inCond and outCond fields,
3660         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3661         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3662         turn off register spilling,
3663         * (packRegsForOneUse): synced with other ports' versions although it
3664         is not used currently,
3665         * (pic16_packRegisters): added an optimization while reading
3666         structure bitfields, some registers may be saved (malloc code is
3667         decreased by 80 bytes)
3668
3669 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3670
3671         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3672         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3673         this can be optimized more?
3674
3675 2005-03-10 Raphael Neider <rneider AT web.de>
3676
3677         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3678           genNearPointerGet): (hopefully) fixed access to bitfields via
3679           pointers (p->bitN = x; and x = p->bitN; failed)
3680
3681 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3682
3683         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3684
3685 2005-03-09 Raphael Neider <rneider AT web.de>
3686
3687         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3688
3689 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3690
3691         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3692         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3693           (regTypeNum): set REG_BIT type if necessary
3694         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3695         * support/regression/tests/critical.c: check bug 1144613
3696
3697 2005-03-02 Raphael Neider <rneider AT web.de>
3698
3699         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3700
3701 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3702
3703         * src/avr/ralloc.c (serialRegAssign),
3704         * src/ds390/ralloc.c (serialRegAssign),
3705         * src/hc08/ralloc.c (serialRegAssign),
3706         * src/mcs51/ralloc.c (serialRegAssign),
3707         * src/pic/ralloc.c (serialRegAssign),
3708         * src/pic16/ralloc.c (serialRegAssign),
3709         * src/xa51/ralloc.c (serialRegAssign),
3710         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3711
3712 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3713
3714         * src/SDCCast.c (decorateType): fixed bug 1124787
3715
3716 2005-02-20 Hubert Sack <sack AT digiplan.de>
3717         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3718
3719         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3720         patch #1121755
3721
3722 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3723
3724         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3725         to keep the correct label reference count when adding/removing references
3726         to labels. A peephole file using this is appended to patch #1144962.
3727
3728 2005-02-14 Raphael Neider <rneider AT web.de>
3729
3730         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3731         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3732         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3733           retrievals of result operand's value on assignment
3734
3735 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3736
3737         * device/include/pic16/string.h: modified prototype for memccpy()
3738         to memccpy(void *, void *, char, size_t)
3739         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3740         check whether to omit frame pointer or not,
3741         * (genInline): convert all occurences of "\n" to LF in inline
3742         assembler blocks, this helps formatting the inline text,
3743         * (pic16_loadFSR0): modified prototype,
3744         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3745         removed some 8051 legacy code,
3746         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3747         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3748         before allocating temporary registers in functions,
3749
3750 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3751
3752         * support/regression/tests/bitvars.c: corrected the "fix"
3753
3754 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3755
3756         * support/regression/tests/bitvars.c,
3757         * support/regression/tests/bitwise.c,
3758         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3759
3760 2005-02-10 Raphael Neider <rneider AT web.de>
3761
3762         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3763           different size for Alpha
3764         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3765
3766 2005-02-09 Raphael Neider <rneider AT web.de>
3767
3768         * src/SDCC.lex(doPragma) : save and restore warning options as well
3769           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3770         * have #pragma less_pedantic set the errorlevel to WARNING
3771           (fixes #1117001)
3772         * (cloneOptimize) : fixed wrong malloc's size
3773         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3774           facilitate correct handling of #pragma (save|restore)
3775
3776 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3777
3778         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3779
3780 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3781
3782         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3783
3784 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3785
3786         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3787
3788 2005-02-02 Raphael Neider <rneider AT web.de>
3789
3790         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3791         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3792         * (pic16_storeForReturn): fixed to allow returning function pointers
3793         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3794         * device/include/pic16/{stddef.h,stdbool.h}: added
3795
3796 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3797
3798         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3799
3800 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3801
3802         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3803         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3804          appeared to be required
3805
3806 2005-01-31 Borut Razem <borut.razem AT siol.net>
3807
3808         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3809           include/mcs51 and include/z80 directories to the package
3810
3811 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3812
3813         * src/hc08/gen.c (genFunction): fixed bug #1112752
3814
3815 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3816
3817         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3818
3819 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3820
3821         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3822
3823 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3824
3825         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3826
3827 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3828
3829         * device/include/c8051fxxx.h: removed these 6 files
3830         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3831
3832 2005-01-26 Raphael Neider <rneider AT web.de>
3833
3834         * src/pic16/gen.c (genAssign): fixed assignment from longs
3835           in codespace (were cut to three bytes)
3836         * (genDummyRead): implemented (except for CODESPACE...),
3837           fixed bug #1108575
3838         * src/pic16/glue.c (emitStatistics): beautified
3839         * device/lib/pic16/libm/Makefile: added include path
3840
3841 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3842
3843         * src/z80/gen.c (aopPut): fixed bug #1103902
3844
3845 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3846
3847         * device/lib/expf.c: fixed bug #1095792
3848
3849 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3850
3851         * device/lib/pic16/libm: added Math library sources
3852
3853 2005-01-24 Raphael Neider <rneider AT web.de>
3854
3855         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3856           to enable upcast to pCodeOpReg2 (there is no type tag to
3857           differenciate the two and pic16_popGet2p cast into PCOR2)
3858         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3859           (sizeof(sectNames) changed to sizeof(sectName))
3860           Both patches fix segfaults under MinGW.
3861
3862 2005-01-23 Raphael Neider <rneider AT web.de>
3863
3864         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3865           Safe_[mc]?alloc()'ed variables
3866         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3867           of (byte sized) temporaries (assign them to WREG for now)
3868         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3869           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3870           this might fix SIGSEGVs on MinGW...
3871         * src/SDCCopt.c (killDeadCode): restored original behaviour
3872           (volatile operands might get thrown away though)
3873
3874 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3875
3876         * src/pic16/gen.c: fixed bug #1106975,
3877         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3878         pointer update, INTCON is saved, global interrupts are disabled and
3879         restored after updateing TOS.
3880         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3881         * added function attribute 'shadowregs' to take advantage of shadow
3882         registers,
3883         * added function attribute 'wparam' as an alternative to the wparam
3884         pragma,
3885         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3886         user declares a non-ISR function as 'shadowregs',
3887         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3888
3889 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3890
3891         * .version: bumped version number to 2.4.8
3892         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3893         pic16 port,
3894         * device/lib/pic16/libio/i2c/: I2C module support library,
3895         * device/include/pic16/i2c.h: I2C support library header,
3896         * device/lib/pic16/libc/stdio/: standard IO support sources,
3897         * (printf_small.c): printf_small() source, supports float print,
3898         * (printf_tiny.c): printf_tiny() source, does not support floats,
3899         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3900         enable global optimizations for entire library source, other
3901         Makefiles in the source tree are also modified to reflect this,
3902         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3903         function,
3904         * doc/sdccman.lyx: updated to reflect new changes,
3905         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3906         sym->onStack if-case,
3907         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3908         sbit, idata, _idata, xdata, _xdata,
3909         * added pragma library, to link an external library, (see doc),
3910         * removed command line options, --pomit-config-words, --pomit-ivt,
3911         --pleave-reset-vector,
3912         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3913         when calling assembler to reflect memory model used, also define
3914         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3915         reflect stack model used,
3916         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3917         on stack return NULL,
3918
3919 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3920
3921         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3922           of the operands is volatile. Fixes #1020220
3923
3924 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3925
3926         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3927         * (OptimizeRegUsage): make sure that there is really no other flow where
3928           the first pCode is used
3929
3930 2005-01-22 Raphael Neider <rneider AT web.de>
3931
3932         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3933           to fix #1106967 (pCode->seq are not set up correctly)
3934
3935 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3936
3937         * src/SDCCglue.c (glue): make sure code area is declared before the
3938         static initialization area.
3939
3940 2005-01-21 Raphael Neider <rneider AT web.de>
3941
3942         * device/lib/Makefile.in: fixed test for pic16 install dir
3943         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3944           optimizations
3945         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3946           added --optimize-goto compiler switch and pragma wparam documentation
3947         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3948         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3949           and PRODH closing bug #1071770 (peephole optimizer)
3950
3951 2005-01-19 Raphael Neider <rneider AT web.de>
3952
3953         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3954           cmdLine buffers (used when calling sdcpp...) are large enough
3955           (MAX_PATH=256 truncates arguments leading to system halts when
3956           used in MinGW...)
3957         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3958         * (genUminus): rewritten to for efficiency
3959         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3960           used uninitialized in some cases)
3961         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3962           copy the third byte from the int -- now assumes 0x80 (data memory)
3963         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3964           operands (genAddLit expects the iCode's operands to swapped as
3965           well), fixed leftover bytes (crashed for short left operands)
3966         * (pic16_genMinusDec): performance improvements, removed false
3967           PIC14 emitSKPNCs
3968         * (pic16_genMinus): fixed to cope with differently sized operands
3969         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3970           for --obanksel > 1
3971         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3972         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3973           new banksel optimization
3974         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3975           analysis for temporary registers (segfaults...)
3976         * src/pic16/peeph.def: added rule
3977
3978 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3979
3980         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3981         which converts a float number to its ASCII representation
3982         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3983         functions to convert the fractional and integer part of a float to ASCII,
3984         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3985         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3986         ram
3987         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
3988         _STATMEM macros,
3989         * device/include/pic16/adc.h: added GPL info,
3990         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
3991         a pCodeOp as tested operand,
3992         * (genNearPointerGet): optimized bit testing, does not use
3993         intermediate register for bit value, test directly instead with
3994         BTFSS, BTFSC, works only for single bits,
3995         * (genpic16Code): dump the name of the iCode in the asm,
3996         * src/pic16/ralloc.c (decodeOp): removed static declaration and
3997         renamed to pic16_decodeOp,
3998         * (serialRegAssign): do not allocate a temporary register for iCode
3999         sequences that test a single bit for 1/0
4000
4001 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
4002
4003         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
4004         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
4005         access stack and frame pointers. They are initially assigned to
4006         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
4007         accessing SFRs. Updated all occurences of modification of stack or
4008         frame pointer in gen.c and pcode.c,
4009         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4010         assigning of a literal value to pointers,
4011         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4012         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4013         selected
4014
4015 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4016
4017         * doc/sdccman.lyx: update documentation about stack pragma, added
4018         some info for stack memory models
4019
4020 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4021
4022         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4023
4024 2005-01-08 Raphael Neider <rneider AT web.de>
4025
4026         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4027           udata sections to fix bug #1097823
4028
4029 2005-01-05 Raphael Neider <rneider AT web.de>
4030
4031         * src/pic16/gen.c (genGenericShift): added handling of differently
4032           sized left operand and result
4033
4034 2005-01-04 Raphael Neider <rneider AT web.de>
4035
4036         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4037         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4038           to hold the condition bit)
4039         * added new version of genCmp (old code available via #define)
4040         * added new version of genShiftLeft/genShiftRight in a generic
4041           way, now supports shifting by negative values
4042         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4043           shiftCount (expected by genGenericShift)
4044         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4045         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4046           dump
4047         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4048           is an invalid literal too...)
4049
4050 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4051
4052         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4053         from Raphael Neider,
4054         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4055         for 8-bit literals. This fixes some literal operands which are sign
4056         extended to 16-bits ints when instruction needs only 8-bits.
4057
4058 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4059
4060         * device/lib/logf.c: added mcs51 assembly version
4061         * device/lib/expf.c: added mcs51 assembly version
4062         * device/lib/_logexpf.c: new shared asm code for expf and logf
4063         * device/include/math.h: add defines for assembly math library
4064         * device/lib/Makefile.in: build new _logexpf.c
4065         * device/lib/libfloat.lib: use new _logexpf.c
4066
4067 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4068
4069         * src/pic/device.c
4070         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4071           device types which have less than 0x7f registers.
4072
4073 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4074
4075         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4076
4077 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4078
4079         * device/lib/printf_fast.c: only build on supported arch.
4080         * device/lib/printf_tiny.c: only build on supported arch.
4081         * device/lib/printf_fast_f.c: only build if asm float lib
4082         * device/lib/_fsget1arg.c: only build if asm float lib
4083         * device/lib/_fsget2args.c: only build if asm float lib
4084         * device/lib/_fsnormalize.c: only build if asm float lib
4085         * device/lib/_fsreturnval.c: only build if asm float lib
4086         * device/lib/_fsrshift.c: only build if asm float lib
4087         * device/lib/_fsswapargs.c: only build if asm float lib
4088         * device/include/stdio.h: don't provide print_fast,
4089           print_fast_f, print_tiny prototypes if --xstack used
4090
4091 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4092
4093         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4094         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4095           to the SOURCES
4096
4097 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4098
4099         * device/lib/printf_fast_f.c: same as printf_fast, but
4100           with floating point enabled
4101         * device/lib/printf_fast.c: minor tweaks
4102         * device/include/stdio.h: add printf_fast_f
4103
4104 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4105
4106         * src/SDCCmain.c: make --float-reent default for mcs51
4107         * device/lib/_fsadd.c: added mcs51 assembly version
4108         * device/lib/_fssub.c: added mcs51 assembly version
4109         * device/lib/_fsmul.c: added mcs51 assembly version
4110         * device/lib/_fsdiv.c: added mcs51 assembly version
4111         * device/lib/_fseq.c: added mcs51 assembly version
4112         * device/lib/_fsneq.c: added mcs51 assembly version
4113         * device/lib/_fsgt.c: added mcs51 assembly version
4114         * device/lib/_fslt.c: added mcs51 assembly version
4115         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4116         * device/lib/Makefile.in: add _fscmp to build
4117         * device/lib/libfloat.lib: add _fscmp to build
4118
4119 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4120
4121         * device/lib/_fs2slong.c: added mcs51 assembly version
4122         * device/lib/_fs2sint.c: added mcs51 assembly version
4123         * device/lib/_fs2schar.c: added mcs51 assembly version
4124         * device/lib/_fs2ulong.c: added mcs51 assembly version
4125         * device/lib/_fs2uint.c: added mcs51 assembly version
4126         * device/lib/_fs2uchar.c: added mcs51 assembly version
4127         * device/lib/_slong2fs.c: added mcs51 assembly version
4128         * device/lib/_sint2fs.c: added mcs51 assembly version
4129         * device/lib/_schar2fs.c: added mcs51 assembly version
4130         * device/lib/_ulong2fs.c: added mcs51 assembly version
4131         * device/lib/_uint2fs.c: added mcs51 assembly version
4132         * device/lib/_uchar2fs.c: added mcs51 assembly version
4133         * device/include/float.h: added #define to select asm vs c
4134
4135 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4136
4137         * device/lib/printf_fast.c: improvements to float output
4138         * device/include/float.h: add defines for assembly float library
4139         * device/lib/_fsget1arg.c: receive 1 float arg
4140         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4141         * device/lib/_fsnormalize.c: normalize a float
4142         * device/lib/_fsreturnval.c: return float, various helper routines
4143         * device/lib/_fsrshift.c: right shift a float's mantissa
4144         * device/lib/_fsswapargs.c: swap 2 floats
4145         * device/lib/Makefile.in: build these 6 new files for mcs51
4146         * device/lib/libfloat.lib: add these 6 files to the library
4147
4148 2004-12-26 Borut Razem <borut.razem AT siol.net>
4149
4150         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4151           built by gcc 3.4.2
4152
4153 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4154
4155         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4156           and fully reentrant and register bank neutral.
4157         * device/lib/printf_fast.c: added float (not enabled by default),
4158           added compact/slower integer (also not enabled by default),
4159           improved size/speed of fast integer code, other minor changes
4160         * device/include/stdio.h, device/lib/Makefile.in,
4161           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4162
4163 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4164
4165         * src/pic16/pcode.c: declaring variables other than at the start of a
4166           block is not supported in C by VC6.
4167
4168 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4169
4170         * applied a previous patch from Raphael Neider that wasn't included
4171         in the previous commits, which fixes infinite loops within jumptable
4172         improvements,
4173         * made some fixes that previous patches introduced
4174
4175 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4176
4177         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4178         that fixes an issue with AOP_PCODE asmop's offset,
4179         * (pic16_popCopyReg): update instance field too,
4180         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4181         function of pic port,
4182         * (genCmp, genAnd, genAssign),
4183         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4184
4185 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4186
4187         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4188         variables initial values to idata section,
4189         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4190         variables in some functions. This utilizes parmBytes field of iCode
4191         structure to hold the offset of the variable in stack. (might be
4192         able to use the stack field too?)
4193         * applied patch from Raphael Neider # ### , # ###
4194         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4195         variable initial values in idata section,
4196         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4197         for static variables with initial value
4198         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4199         applied fix in while loop from Raphael Neider.
4200
4201 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4202
4203         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4204         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4205         * src/ds390/ralloc.c (serialRegAssign): spill bits
4206         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4207         * support/Util/SDCCerr.c,
4208         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4209         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4210         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4211
4212 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4213
4214         * device/include/sdcc-lib.h: inserted LGPL, added includes
4215           asm/ds390/features.h and asm/mcs51/features.h
4216         * device/include/asm/default/features.h,
4217         * device/include/asm/gbz80/features.h,
4218         * device/include/asm/z80/features.h: added empty _AUTOMEM
4219           and _STATMEM
4220         * device/include/asm/ds390/features.h,
4221         * device/include/asm/mcs51/features.h: added files with defines for
4222           _AUTOMEM and _STATMEM indicating automatic and static storage class
4223         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4224         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4225         * src/SDCCicode.c (geniCodeCast),
4226         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4227         * src/SDCCloop.c (loopInduction): removed unused variable lr
4228         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4229           to convertToFcall to include char modulo (RFE 1065037), added check
4230           if left operand is unsigned and use abs of literal value
4231         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4232           as it doesn't work after conversion from peephole.def to peephole.rul
4233         * src/mcs51/gen.c (toBoolean): added check for size,
4234           (genModOneByte): optimized code for signed char modulo a literal
4235           power of 2 (thanks to Hubert Sack),
4236           (genRRC): removed unnecessary "clr c",
4237           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4238         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4239           jump optimization,
4240           swapped rules 256.c and 256.d,
4241           extended 256.d by using new multiple checks (thanks Erik),
4242           added rules 256.e and 256.f,
4243           updated rule 261.a and 261.b to new generated code
4244         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4245
4246 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4247
4248         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4249           induction related bugs, including first part of bug #1074377
4250
4251 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4252
4253         * applied patch from bug-report #1076292,
4254         * applied patches for genAnd and Goto-optimizations for Raphael
4255         Neider,
4256         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4257         dump a less iCode information,
4258         * src/pic16/device.h (pic16_options_t): added field debgen,
4259         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4260         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4261         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4262         puclic,
4263         * (various functions): added macros FENTRY and FENTRY2 to functions,
4264         to emit function prologue,
4265         * (various functions): fixed indentation,
4266         * (genNearPointerGet): fixed loading of FSR0,
4267         * (genPackBits): applied patch from Raphael Neider to fix updating
4268         of FSR0 and touching only the modified bits,
4269         * src/pic16/genarith.c (various functions): added macros FENTRY to
4270         emit function prologue in comments,
4271         * src/pic16/pcode.h: added functions debugf2, debugf3,
4272         * src/pic16/ralloc.c: partial fix for packForPush caused
4273         segmentation fault,
4274
4275 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4276
4277         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4278           <stsp AT users.sourceforge.net> with reversed byte order
4279         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4280
4281 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4282
4283         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4284           bug #1074377
4285         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4286         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4287
4288 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4289
4290         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4291
4292 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4293
4294         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4295           conditions,
4296           (setFromConditionArgs): friendly operand parser for peephole rules,
4297           (operandBaseName, operandsNotRelated): new peephole condition
4298           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4299           architecture specific register naming into account, handles n-way
4300           comparisons, and supports quoted literals
4301         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4302
4303 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4304
4305         * src/mcs51/peeph.def: fixed bug #1076940
4306
4307 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4308
4309         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4310
4311 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4312
4313         Adding support for replacing ljmps with sjmps in jumptables
4314         generated for switch statements. For now you need to set the
4315         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4316         Now 4 algorithms for mcs51 jumptable generation are used:
4317         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4318         addresses loaded pc-relative for up to 112 cases and stack-pushing
4319         target addresses loaded with offset from dptr for up to 256 cases.
4320
4321         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4322         * src/mcs51/main.c: adapted constants for switch table generation
4323         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4324
4325 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4326
4327         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4328         * support/regression/tests/bug1057979.c: added test for bug 1073386
4329
4330 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4331
4332         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4333         compilers
4334
4335 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4336
4337         * src/pic16/device.h,
4338         * src/pic16/genarith.c,
4339         * src/pic16/glue.c,
4340         * src/pic16/main.c,
4341         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4342
4343 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4344
4345         Large cummulative patch for pic16 port.
4346         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4347         to call when a stack overflow occurs,
4348         * (malloc.h): added CVS Id tag,
4349         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4350         variable,
4351         * added libc directory. The current version of LibC contains string
4352         functions, ctype functions and macros and some functions of the
4353         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4354         be extensively tested in the future. Standard disclaimer here.
4355         Library is not automatically build yet. But one can build it by
4356         invoking 'make' inside the libc directory.
4357         * added ADC library under libio. Preliminary version yet.
4358
4359         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4360         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4361         aopForRemat() now and not by pic16_aopOp(),
4362         * (pic16_popGetTempReg): removed warning messgae when allocating
4363         temporary registers, its a buggy feature and will be removed,
4364         * (pic16_popGet): set register instance field in AOP_CRY,
4365         * (pic16_outBitC): fixed for results in size greater than 1,
4366         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4367         * (pic16_storeForReturn): optimized return of 0,
4368         * (genCmp): experimental code for new genCmp which uses PIC18's
4369         special compare&skip instructions. Initial tests fail some times
4370         with variables grater than 1 byte in size, so new code is disabled,
4371         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4372         a single bit,
4373         * (genCast): began a fix to optimize the casting of a bit to another
4374         bit, now assigning a bitfield to another bitfield will fail, sorry,
4375         * src/pic16/main.c: disabled the use of lr-support feature,
4376         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4377         * added some function prototypes, added function _debugf prototype,
4378         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4379         bits with offset (case PO_GPR_BIT),
4380         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4381         command line,
4382         * (isBankInstruction): modified to return 0 for no banking instruction,
4383         and 1 for banking instruction,
4384         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4385         caused stop processing pCodes after a inline assembly block,
4386         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4387         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4388         registers when it shouldn't,
4389         * src/pic16/ralloc.c (allocReg): add preliminary support for
4390         supporting a limited set of temporary registers,
4391
4392 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4393
4394         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4395           genDataPointerSet): ensure assignments always copy in MSB to LSB
4396           order,
4397           (loadRegFromAop): recognize CLRH optimization,
4398           (genFunction): optimize RECEIVE iCodes in reentrant functions
4399
4400 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4401
4402         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4403           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4404           selected.
4405         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4406         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4407           contiguous with data
4408
4409 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4410
4411         * device/lib/_gptrget.c (_gptrget),
4412         * device/lib/_gptrgetc.c (_gptrgetc),
4413         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4414           instead of sjmp to ret
4415         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4416           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4417
4418 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4419
4420         * .version: bumped version to 2.4.7
4421         * device/lib/_gptrget.c (_gptrget): is now _naked
4422         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4423         * device/lib/_gptrput.c (_gptrput): is now _naked
4424         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4425           (createFunction): fixed xstack
4426         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4427         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4428           or bit either,
4429           (geniCodeCritical): store original interrupt state in an iTemp bit
4430           var unless stack-auto
4431         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4432         * src/SDCCmain.c (setIncludePath): added include/target to search path
4433         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4434         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4435           prototype,
4436           (processFuncArgs): put bit vars in bit area
4437         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4438           unsaveRBank): fixed xstack,
4439           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4440           (genFunction, genEndFunction): fixed xstack,
4441           (genAssign): optimization don't walk backwards through mem
4442         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4443         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4444         * support/regression/Makefile: also make library (for stack-auto) when
4445           making "all" and added "test-mcs51-xstack-auto"
4446         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4447         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4448         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4449         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4450         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4451           make-library by MAKE_LIBRARY
4452         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4453           regression tests for xstack
4454         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4455         * support/regression/tests/critical.c: test for critical on mcs51
4456
4457 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4458
4459         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4460           built version of sdcc instead of installed version
4461
4462 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4463
4464         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4465         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4466           vprintf.c now
4467         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4468         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4469           WARNING: remove device/lib/build/z80/printf.o by hand when
4470           updating from previous build!
4471         * device/lib/z80/printf.c: updated comment
4472         * support/regression/tests/bug1057979.c: test all ports now
4473         * support/regression/tests/bug1065458.c: file added
4474
4475 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4476
4477         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4478           *_start and *_end symbols for static functions
4479
4480 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4481
4482         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4483           and search crt0.o in all library paths,
4484           (setIncludePath): proper handling of --nostdinc,
4485           (setLibPath): proper handling of --nostdlib
4486         * support/regression/Makefile,
4487         * support/regression/ports/ds390/spec.mk,
4488         * support/regression/ports/gbz80/spec.mk,
4489         * support/regression/ports/hc08/spec.mk,
4490         * support/regression/ports/mcs51/spec.mk,
4491         * support/regression/ports/mcs51-large/spec.mk,
4492         * support/regression/ports/mcs51-stack-auto/spec.mk,
4493         * support/regression/ports/z80/spec.mk: use include and lib files from
4494           built version of sdcc instead of installed version
4495         * doc/sdccman.lyx: fixed typo in --nostdinc
4496
4497 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4498
4499         * src/pic/pcode.c,
4500         * src/pic/device.c,
4501         * src/pic/ralloc.c,
4502         * src/pic/gen.c : added support to generate code for struct bit fields.
4503
4504 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4505
4506         * as/xa51/xa_version.h,
4507         * device/include/errno.h,
4508         * device/include/regc515c.h,
4509         * device/lib/_itoa.c,
4510         * device/lib/_ltoa.c,
4511         * device/lib/ser_ir_cts_rts.c,
4512         * sim/ucsim/xa.src/glob.cc,
4513         * sim/ucsim/xa.src/inst_gen.cc,
4514         * sim/ucsim/xa.src/xa_bit.cc,
4515         * sim/ucsim/xa.src/xa_sfr.cc,
4516         * sim/ucsim/z80.src/inst_dd.cc,
4517         * sim/ucsim/z80.src/inst_fdcb.cc,
4518         * support/scripts/keil2sdcc.pl,
4519         * src/pic16/pic16.dsp,
4520         * src/pic16/pic16a.dsp: corrected cvs line endings
4521         * device/lib/printf_large.c: fixed bug 1057979
4522         * src/pic16/gen.c: fixed non-C standard code
4523         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4524         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4525         * support/regression/ports/mcs51/support.c: reload T1 asap
4526         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4527           pdata use and clear idata startup behaviour
4528         * support/regression/tests/bug1057979.c: added
4529
4530 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4531
4532         * device/examples/ds390/ow390/ad26.h,
4533         * device/examples/ds390/ow390/cnt1d.h,
4534         * device/examples/ds390/ow390/crcutil.c,
4535         * device/examples/ds390/ow390/ownet.h,
4536         * device/examples/ds390/ow390/owsesu.c,
4537         * device/examples/ds390/ow390/swt12.h,
4538         * device/examples/ds390/ow390/swtoper.c,
4539         * device/examples/ds390/ow390/temp10.h,
4540         * device/examples/ds390/ow390/thermodl.c,
4541         * device/examples/ds390/tinitalk/tinitalk.dsp,
4542         * device/examples/ds390/tinitalk/tinitalk.dsw,
4543         * device/examples/mcs51/clock/hw.h,
4544         * device/examples/mcs51/simple2/go.bat,
4545         * device/examples/serialcomm/windows/serial.h,
4546         * device/examples/xa51/dummy.c,
4547         * device/examples/xa51/hello.c,
4548         * device/include/80c51xa.h,
4549         * device/include/at89x051.h: corrected cvs line endings
4550
4551 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4552
4553         * src/pic16/main.c (options): added command line --gstack, to trace
4554         stack over/under flows,
4555         * added pragma 'wparam' to allow passing first byte of function
4556         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4557         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4558         call to __gstack_test function and sets up the symbol as extern,
4559         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4560         * popaop): added call to pic16_testStackOverflow,
4561         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4562         wparamList list,
4563         * (genCall, genPcall): now all parameters are passed via stack
4564         except in functions that are pass to wparam pragma in which WREG is
4565         used too,
4566         * (genPcall): REENTRANT flag is checked to see if variable prototype
4567         contains reentrant keyword, don't call a non-reentrant function, via
4568         a reentrant function pointer or vice versa, functions are never
4569         passed via WREG,
4570         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4571         D.Winkler,
4572         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4573         SIGSEGV when accessing a NULL register stucture,
4574         * (pic16_printGPointerType): modified to handle UPPER modifier for
4575         function initializers, changed prototype of function to simpler one,
4576         * (pic16_printIvalFuncPtr): check to see if function is already
4577         added in externs list,
4578         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4579         optimized a move from W to SFR with a move to the same register
4580         later after a CALL,
4581         * device/lib/pic16/debug: NEW directory, contains debug features
4582         which are enabled when linking with libdebug.lib, currently command
4583         line option --gstack enables stack pointer tracing for over/under
4584         flow, corresponding sources are in debug/gstack
4585
4586 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4587
4588         * doc/sdccman.lyx: updated SDCC version,
4589         * (PIC16 port): update list of command line options,
4590         * src/pic16/device.h (structure pic16_options_t): added field gstack
4591         to enable stack overflow tracing on push/pops,
4592         * src/pic16/device.c (statistics structure): added statistics
4593         structure,
4594         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4595         pic16_dump_int_registers): increase statistics counters for each
4596         * variable which is encountered
4597         * (pic16_dump_usection): emit each .udata variable to its own udata
4598         section,
4599         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4600         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4601         parameters via stack, otherwise use old scheme,
4602         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4603         assembler output file,
4604         * src/pic16/main.c: added command line options --gstack to enable
4605         push/pop tracing for stack overflow,
4606         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4607         instructions): added size of each instruction,
4608         * (pic16_countInstruction): estimate size of instructions in
4609         the_pFile list, inline assembly blocks are not counted,
4610         * (pic16_FixRegisterBanking): trace previous register usage, when
4611         banksel optimizations is greater than 0, don't emit a redudant
4612         banksel directive,
4613
4614 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4615
4616         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4617         * src/pic16/ralloc.c : applied same fix for pic16.
4618         * src/pic/gen.c : tidied it up a little.
4619
4620 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4621
4622         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4623         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4624
4625 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4626
4627         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4628
4629 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4630
4631         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4632         non-reentrant function __modsint in the interrupt function (thus
4633         corrupting math operations during serial I/O)
4634         * device/lib/ser_ir.c: as above, changed buffersize
4635         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4636         256.c,d for zeroing
4637         * doc/Makefile: added option -t for rsync
4638
4639 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4640
4641         * src/SDCCast.h (struct ast),
4642         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4643
4644 2004-10-20 Borut Razem <borut.razem AT siol.net>
4645
4646         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4647         package
4648
4649 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4650
4651         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4652         makefile targets,
4653         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4654         support functions to replace long sequences of MOVFF's from access
4655         bank registers to stack and vice versa,
4656         * src/pic16/device.h: added new field opt_flags, where optimization
4657         flags can be set to enable certain features,
4658         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4659         * pBlock, (genFunction, genEndFunction): surroung loop for
4660         saving/loading used registers in stack with PC_INFO pCodes,
4661         INF_LREGS. Code in between can then be optimized by pCode optimizer
4662         to support function calls,
4663         * (genDataPointerSet): fixed bug which loaded float fields in
4664         structures with corrupt data,
4665         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4666         in a standard way debug info on stderr. Feature used for developing
4667         and debugging only,
4668         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4669         obsolete chunks of code,
4670         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4671         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4672         * pic16/src/pcode.c (pic16_newpCodeInfo,
4673         * (pic16_newpCodeOpLocalRegs),
4674         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4675         feature,
4676         * (pic16_pCodeConstString): printing of the initial value of a
4677         symbol as a comment is inhibited since parsing was already done by
4678         copyStr and output is corrupt,
4679         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4680
4681 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4682
4683         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4684
4685 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4686
4687         * as/mcs51/lkarea.c: removed old K&R style,
4688           (lnksect): changed check on boundary error,
4689           (lnksect2): changed check on boundary error,
4690           (lnksect2): extend XSTK to end of page if size = 1
4691         * as/mcs51/lkmain.c: removed old K&R style,
4692           (Areas51): create l_IRAM symbol
4693         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4694         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4695           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4696         * device/lib/_mullong.c: added version to be compiled with xstack
4697         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4698         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4699         * device/lib/mcs51/crtxstack.asm: fixed comment
4700         * src/SDCCglue.c: maxInterrupts defaults to 0,
4701           (emitMaps): added pdata,
4702           (createInterruptVect): (re)moved default,
4703           (glue): added pdata,
4704           (glue): moved __start__xstack to XSTK with default size 1
4705         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4706           and options.float_rent when options.stackAuto is set,
4707           (linkEdit): only write XDATA_NAME if provided on command line
4708         * src/SDCCmem.h,
4709         * src/SDCCmem.c: added pdata
4710         * src/port.h: added pdata_name to PORT
4711         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4712           (saveRegisters, unsaveRegisters): removed usage of B,
4713           (genMinus): fixed accumulator clash,
4714           (genJumpTab): added comment, this needs another look
4715         * src/mcs51/gen.c: added check for "B in use" paranoia,
4716           added pushB() and popB()
4717         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4718           chance
4719         * src/avr/main.c,
4720         * src/ds390/main.c,
4721         * src/hc08/main.c,
4722         * src/mcs51/main.c,
4723         * src/pic/main.c,
4724         * src/pic16/main.c,
4725         * src/xa51/main.c,
4726         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4727           added PSEG (PAG,XDATA) or NULL to port specifier
4728         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4729         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4730           (_mcs51_genInitStartup): removed __start__xstack equ,
4731           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4732         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4733         * src/z80/gen.c (_rleAppend): fixed warnings
4734         * support/regression/tests/zeropad.c: added pdata test
4735         * .version: bumped to 2.4.6
4736
4737 2004-10-17 Borut Razem <borut.razem AT siol.net>
4738
4739         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4740         as a part of nightly build
4741
4742 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4743
4744         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4745         WREG holds the first byte function parameters,
4746         * (aopForSym): take special case for symbols which are in FARSPACE
4747         but in CODESPACE too,
4748         * (assignResultValue): modified to take into account _G.useWreg,
4749         * (genCall): don't use wreg for parameter passing when function is
4750         declared as reentrant, too, added optimization INCF to stack
4751         pointer when stack parameter count is 1,
4752         * (genFunction, genEndFunction): refurnished and fixed to not using
4753         wreg for passing parameters when function has varargs or is
4754         reentrant, fixed bug with symbol name compare for generating
4755         functions in absolute address,
4756         * (pic16_storeForReturn): refurnished,
4757         * (genCmp): began writing a new version of the function, not ready
4758         yet, therefore it is disabled,
4759         * (genAssign): do not read code memory when assigning a function to
4760         a pointer function,
4761         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4762         array of characters, not pointer,
4763         * (pic16initialComments): in debug mode emit an .ident directive for
4764         the assembler,
4765         * (_process_pragma): emit a new warning type (internal to pic16)
4766         when setting stack to default length, emit a similar warning when
4767         placing a function at absolute address and address is not word aligned
4768         * (_pic16_parseOptions): added 'return TRUE' statement,
4769         * (_pic16_linkEdit): if compiling a source, then add the source's
4770         file object, first in the list of objects to link,
4771
4772 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4773
4774         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4775         * src/pic/main.c : removed VC warning.
4776         * src/pic/gen.c : changed comment.
4777
4778 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4779
4780         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4781         reference to a deprecated symbol _GPTRREG was causing failure to
4782         link. Thanks G. M. Gallant for the info.
4783
4784 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4785
4786         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4787         comments for Bugs item #954788.
4788
4789 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4790
4791         * src/pic16/device.c (pic16_dump_gsection,
4792         * pic16_groupRegistersInSection): handle symbols declared to be in
4793         access bank differently,
4794         * src/pic16/gen.c (struct _G): added field resDirect,
4795         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4796         send values read from stack directly to result and don't allocate
4797         temporary values,
4798         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4799         same registers,
4800         * (pic16_sameRegsOfs): NEW,
4801         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4802         free because they were not allocated from temporary pool,
4803         * pic16_popRegFromString): workaround to fix a problem with
4804         allocating variables twice or never,
4805         * (genGenPointerGet): using PRODL instead of FSR0H,
4806         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4807         instead of FSR0H,
4808         * (genAssign): take advantage of the _G.resDirect flag,
4809         * (genCast): around line 11844, use mov2f instead of directly
4810         MOVFF'ing between operands to account for literal values,
4811         * src/pic16/genutils.c: some new debug functions for gpsim have been
4812         added,
4813         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4814         float with integer part only,
4815         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4816         place variables in access bank
4817         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4818         updated sources to reflect recent changes in gen.c
4819
4820 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4821
4822         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4823         sources that searched for headers in installation path, now the
4824         device/include/pic16 is used,
4825         * src/pic16/glue.c (pic16glue),
4826         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4827         .line directives if not in debug mode, this suppresses assembler's
4828         warnings for ignored directives
4829
4830 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4831
4832         * src/port.h: made reset_regparms prototype void parameter explicit.
4833         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4834         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4835         * doc/sdccman.lyx: documented warning disabling and how to use
4836           printf_large to make it print floats.
4837         * device/include/stdbool.h: NEW
4838         * device/lib/_atof.c,
4839         * device/lib/_divuint.c,
4840         * device/lib/_divulong.c,
4841         * device/lib/expf.c,
4842         * device/lib/printf_large.c,
4843         * device/lib/sincosf.c,
4844         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4845         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4846           a completely reentrant lib.
4847
4848 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4849
4850         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4851         * device/include/pic16/stdio.h: fixed bug with colon
4852
4853 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4854
4855         * device/include/pic16/stdio.h,
4856         * device/include/pic16/stdlib.h,
4857         * device/include/pic16/math.h: NEW
4858         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4859         declared as _naked to reduce overhead
4860         * device/lib/Makefile.in (target port-specific-objects-pic16):
4861         changed * to *.* so to ignore the CVS directory,
4862         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4863         stacked variables back in stack,
4864         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4865         corruption
4866
4867 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4868
4869         * .version: bumped version number to 2.4.5
4870         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4871         * support/Util/SDCCerr.c (messages structure): added entry for
4872         W_POSSBUG2
4873
4874         Large cumulative patch for pic16 port and libraries.
4875         * device/include/pic16/sdcc-lib.h,
4876         * device/include/pic16/stdarg.h,
4877         * device/include/asm/pic16/features.h,
4878         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4879         * device/include/pic16/float.h: changes reentrant keyword with
4880         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4881         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4882         updated target build-libraries to include objects from gptr,
4883         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4884         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4885         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4886         all function headings,
4887         * src/SDCCmain.c: added global parameter userIncDirsSet,
4888         * (parseCmdLine): when option -I is encountered add directory to
4889         userIncDirsSet too,
4890         * src/version.awk: added space between control and long,
4891         * src/pic16/NOTES: added some notes for the port,
4892         * src/pic16/gen.c: added prototype for mov2fp function,
4893         * (fReturnpic16[]): properly named return value registers,
4894         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4895         * (aopForSym): added code to handle symbols with onStack flag set,
4896         symbols onStack are allocated PTRSIZE bytes,
4897         * (aopFreeAsmop): handles special case where asmops are stack objects,
4898         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4899         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4900         added argument lock to trace flaws in allocating temporary registers
4901         when developing port,
4902         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4903         * (pic16_popRegFromString): reenabled allocating a direct register
4904         from string,
4905         * (assignResultValue): various beautifications,
4906         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4907         referenced function argument,
4908         * (genIpush): reenabled to allow stacked arguments, handles only
4909         ic->parmPush iCodes,
4910         * (genCall, genPcall): major changes to allow for variable argument
4911         functions, fixed a bug with falsely restoring stack pointer after
4912         returning from call,
4913         * (genFunction): pending code for critical function,
4914         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4915         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4916         * (genNearPointerGet): fixed bug with indirect reading, was always
4917         reading from INDF0
4918         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4919         pointers,
4920         * (genAddrOf): rewrote code to take address of a stacked function parameter
4921         * (genCast): fixed casting to generic pointer type,
4922         * src/pic16/gen.h: added AOP_STA,
4923         * (struct asmop): added field stk,
4924         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4925         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4926         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4927         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4928         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4929         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4930         generic pointers,
4931         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4932         and library paths,
4933         * (pic16_port structure): generic pointer size is set to 3,
4934         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4935         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4936         compiler warning,
4937         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4938         operand is an iTemp,
4939
4940 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4941
4942         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4943         * debugger/mcs51/simi.c: addapt new syntax of s51
4944
4945 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4946
4947         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4948         * src/pic16/pcode.c: commented out some calls to free() in order to
4949         fix bug #989576,
4950
4951 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4952
4953         * src/SDCCicode.h,
4954         * src/SDCCicode.c (isiCodeInFunctionCall),
4955         * src/avr/ralloc.c (selectSpil),
4956         * src/pic/ralloc.c (selectSpil),
4957         * src/pic16/ralloc.c (selectSpil),
4958         * src/ds390/ralloc.c (selectSpil),
4959         * src/hc08/ralloc.c (selectSpil),
4960         * src/xa51/ralloc.c (selectSpil),
4961         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4962         stack in the middle of a function call sequence (fixes bug #1020268)
4963         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4964         costs associated with the minimum switch case.
4965
4966 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4967
4968         * src/SDCC.lex: fixed bug #1030549
4969
4970 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4971
4972         * src/SDCCcse.h (struct cseDef),
4973         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4974         over a function call if the CSE is derived from a symbol whose
4975         address has been taken (fixes bug #1029883)
4976         * support/regression/tests/bug-1029883: a new regression test for
4977         this bug
4978
4979 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4980
4981         * src/hc08/gen.c (emitinline): fixed bug #1029778
4982         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4983         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4984         and starts toward RFE #905167)
4985
4986 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4987
4988         * src/pic16/gen.c (mov2f): New function to move an operand to
4989         another without considering if it is a literal or a register,
4990         * (pic16_sameRegs): don't check if they are both AOP_REG,
4991         * (AccRsh): removed andmask=0 lines,
4992         * (genLeftShift): duplicated to be improved in future versions,
4993         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
4994         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
4995         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
4996         * (pic16initMnemonics): added initialization for POC_INFSNZW,
4997         * (insertBankSwitch): fixed inserting banksel directives algorithm
4998         for instructions that follow a skip instruction, this fixes a report
4999         for broken subtraction code generation,
5000         * src/pic16/ralloc.c (deassignLRs): do not free register if current
5001         iCode is a left op, just in case result and right share the same
5002         registers
5003
5004 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5005
5006         * src/hc08/main.c,
5007         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5008         preservation of HX
5009         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5010         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5011         on 2004-09-12; it was buggy
5012
5013 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5014
5015         * src/SDCCsymt.h: removed RESULT_CHECK
5016         * src/SDCCast.c,
5017         * src/SDCCglue.c,
5018         * src/SDCCval.c,
5019         * src/pic/glue.c,
5020         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5021
5022 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5023
5024         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5025         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5026         configuration values no more rejected by compiler, they are assigned
5027         to configuration registers with a warning message instead,
5028         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5029         the for-loop so last conf register is emitted too,
5030         * (_pic16_initPaths): link library libsdcc.lib by default,
5031         * (_hasNativeMulFor): modified test for multiplication according to
5032         Raphael Neider's remarks. Integer multiplication is also done with
5033         support functions,
5034         * device/include/pic16/pic18fregs.h: corrected type error in while
5035         testing and including 18f6720 header file
5036
5037 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5038
5039         * src/pic16/device.h (pic16_options): removed field use_crt,
5040         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5041         until an optimization to handle single bits is added,
5042         * (pic16_loadFSR0): moved before genUnpackBits,
5043         * (genAnd): some white lines removed,
5044         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5045         leave_reset flags in pic16_options when using crt modules,
5046
5047 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5048
5049         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5050           for bugs 898889 & 979599. Also used some safer print instructions.
5051
5052 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5053
5054         * src/pic16/device.h (pic16_options_t): added field use_crt,
5055         crt_name, no_crt,
5056         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5057         catch a probable future bug,
5058         * src/pic16/gen.c: aopIdx function commented out,
5059         * (genAssign): commented out old code which used aopIdx,
5060         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5061         code, added if conditionals to take into account the --use-crt
5062         command line options,
5063         * src/pic16/main.c (pic16_optionsTable): added new command line
5064         options, --use-crt= and --no-crt,
5065         * (_pic16_linkEdit): now the proper crt object is added in the
5066         linker command line except than when --no-crt is specified,
5067         * src/pic16/pcode.c,
5068         * src/pic16/pcode.h: added some structures and functions for a new
5069         optimization scheme to compansate for instruction overhead between
5070         same iCodes, this scheme is currently under development and is not
5071         working in any way,
5072         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5073         to && operator,
5074         * device/lib/pic16/startup/crt0i.c,
5075         * device/lib/pic16/startup/crt0iz.c: added global char variable
5076         __uflags to force the generation of an idata section
5077
5078 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5079
5080         * doc/Makefile,
5081         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5082         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5083
5084 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5085
5086         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5087         Frieder) and clarified the default code optimization mode
5088
5089 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5090
5091         * src/SDCC.lex (doPragma, process_pragma),
5092         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5093         "opt_code_size", and "opt_code_balanced"
5094         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5095         regrouped options by category, added support for category headers
5096         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5097         and "--opt-code-size"
5098         * doc/sdccman.lyx: documented these new options and pragmas
5099         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5100         preference into account
5101
5102 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5103
5104         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5105           geniCodePreDec): Fixed bug 904237 by generating a warning
5106         * src/SDCCerr.h,
5107         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5108
5109 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5110
5111         * src/pic/device.c : When no max ram set validate full memory range.
5112         * src/pic/pcode.c,
5113         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5114
5115 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5116
5117         * device/lib/_gptrget.c,
5118         * device/lib/_gptrput.c: updated comment
5119         * device/lib/calloc.c,
5120         * device/lib/free.c,
5121         * device/lib/malloc.c,
5122         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5123         * src/SDCCcse.c (cseBBlock),
5124         * src/SDCCicode.c (printOperand, geniCodeArray),
5125         * src/SDCCicode.h (struct operand): fixed bug 868103
5126         * support/regression/tests/bug-868103.c: added
5127         * src/SDCCast.c (searchLitOp),
5128         * src/SDCCcse.h (struct cseDef),
5129         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5130         * src/SDCCicode.h (struct operand),
5131         * src/SDCCsymt.h (struct sym_link),
5132         * src/avr/gen.c (hasInc),
5133         * src/ds390/gen.c (hasInc),
5134         * src/hc08/gen.c (genPlusIncr, hasInc),
5135         * src/mcs51/gen.c (hasInc),
5136         * src/pic16/glue.c (pic16_printIvalChar),
5137         * src/pic16/ralloc.c (regWithIdx),
5138         * src/xa51/gen.c (hasInc) : removed warnings
5139         * src/SDCCast.c (createBlock): added comment ???
5140         * src/hc08/ralloc.c: updated comments
5141
5142 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5143
5144         * doc/sdccman.lyx: updated section on switch statements, added
5145         section about semaphore locking
5146         * doc/Makefile: added option -info for latex2html
5147         * device/lib/_gptrget.c,
5148         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5149
5150 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5151
5152         * src/pic/device.h,
5153         * src/pic/device.c,
5154         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5155          maxram is less than 0x100.
5156
5157 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5158
5159         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5160
5161 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5162
5163         * src/port.h,
5164         * src/mcs51/main.c,
5165         * src/ds390/main.c,
5166         * src/z80/main.c,
5167         * src/hc08/main.c,
5168         * src/pic/main.c,
5169         * src/pic16/main.c,
5170         * src/avr/main.c,
5171         * src/xa51/main.c
5172         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5173         a jump table is the best form for a switch statement, including
5174         automatic insertion of missing cases to make the case range
5175         continuous. Developed in collaboration with Frieder Ferlemann.
5176
5177 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5178
5179         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5180         accumulator result if it needs sign extension
5181
5182 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5183
5184         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5185
5186 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5187
5188         * device/lib/gbz80/printf.c,
5189         * device/lib/z80/printf.c: removed define for NULL
5190
5191 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5192
5193         * as/xa51/xa_link.c,
5194         * device/examples/ds390/ow390/ad26.c,
5195         * device/examples/ds390/ow390/cnt1d.c,
5196         * device/examples/ds390/ow390/counter.c,
5197         * device/examples/ds390/ow390/ds2480.h,
5198         * device/examples/ds390/ow390/ds2480ut.c,
5199         * device/examples/ds390/ow390/findtype.c,
5200         * device/examples/ds390/ow390/gethumd.c,
5201         * device/examples/ds390/ow390/owllu.c,
5202         * device/examples/ds390/ow390/ownetu.c,
5203         * device/examples/ds390/ow390/swt12.c,
5204         * device/examples/ds390/ow390/swtloop.c,
5205         * device/examples/ds390/ow390/temp.c,
5206         * device/examples/ds390/ow390/temp10.c,
5207         * device/examples/ds390/ow390/thermo21.c,
5208         * device/examples/ds390/ow390/tinilnk.c,
5209         * device/examples/ds390/ow390/tstfind.c,
5210         * device/examples/serialcomm/windows/serial.cpp,
5211         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5212         * device/include/reg51.h: fixed line endings for cvs
5213
5214 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5215
5216         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5217         packRegsForAccUse, packRegisters): new accumulator register
5218         packing algorithm
5219         * support/regression/ports/hc08/support.c (_putchar): suppress
5220         warning of unused variable
5221         * src/SDCCicode.c: added SWAP entry to codeTable
5222
5223 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5224
5225         * device/lib/sprintf.c: forgot to add this file before previous commit
5226
5227 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5228
5229         * src/pic16/gen.c (genPackBits): added operand right in function
5230         parameters, load result directly if p_type is POINTER (that is
5231         called by genNearPointerSet)
5232         * (genUnPackBits): added operand left in function parameters,
5233         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5234         FSR0 if accessing bitfields,
5235
5236 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5237
5238         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5239           _print_format; updated printf, sprintf, vsprintf
5240         * device/include/asm/default/features.h: corrected comment/define
5241         * device/lib/Makefile.in: added sprintf.c
5242         * device/lib/libsdcc.lib: added sprintf module
5243         * device/lib/printf_large.c,
5244         * device/lib/vprintf.c,
5245         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5246           into these 3 files
5247         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5248         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5249         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5250           hc08 test
5251         * support/regression/tests/zeropad.c: define idata as data for hc08
5252
5253 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5254
5255         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5256         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5257         labels are referenced at least once (even if a reference is not found)
5258         * src/hc08/gen.c (emitcode): set isComment flag for comments
5259         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5260         loads), rules 6a..6b (optimize jumps to return)
5261
5262 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5263
5264         * device/lib/acosf.c (acosf),
5265         * device/lib/asinf.c (asinf),
5266         * device/lib/atanf.c (atanf),
5267         * device/lib/ceilf.c (ceilf),
5268         * device/lib/cosf.c (cosf),
5269         * device/lib/coshf.c (coshf),
5270         * device/lib/cotf.c (cotf),
5271         * device/lib/fabsf.c (fabsf),
5272         * device/lib/floorf.c (floorf),
5273         * device/lib/log10f.c (log10f),
5274         * device/lib/logf.c (logf),
5275         * device/lib/sinf.c (sinf),
5276         * device/lib/sinhf.c (sinhf),
5277         * device/lib/sqrtf.c (sqrtf),
5278         * device/lib/tanf.c (tanf),
5279         * device/lib/tanhf.c (tanhf),
5280         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5281         replaced all instances of "reentrant" in the library functions
5282         defined in math.h with this macro.
5283         * support/regression/tests/float_trans.c: reenabled test for hc08
5284
5285 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5286
5287         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5288         erroneously deleted
5289
5290 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5291
5292         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5293         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5294         multi-byte volatile operands are used
5295         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5296         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5297         initialization to area GSINIT0 so that it would always precede
5298         any static initializers in GSINIT
5299         * support/regression/tests/zeropad.c: fixed idata define for hc08
5300         * support/regression/tests/bug-927659.c,
5301         * support/regression/tests/float_trans.c: disabled tests for hc08
5302         pending missing library routines
5303         * .version: increased version number to 2.4.4 - hc08 port now passes
5304         regression tests
5305
5306
5307 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5308
5309         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5310         * Makefile.common.in,
5311         * as/Makefile,
5312         * as/hc08/Makefile.in,
5313         * as/mcs51/Makefile.in,
5314         * as/z80/Makefile.in,
5315         * debugger/mcs51/Makefile.in,
5316         * device/include/Makefile.in,
5317         * device/lib/Makefile.in,
5318         * doc/Makefile,
5319         * link/Makefile,
5320         * link/z80/Makefile.in,
5321         * packihx/Makefile.in,
5322         * sim/ucsim/main_in.mk,
5323         * sim/ucsim/avr.src/Makefile.in,
5324         * sim/ucsim/doc/Makefile.in,
5325         * sim/ucsim/gui.src/serio.src/Makefile.in,
5326         * sim/ucsim/hc08.src/Makefile.in,
5327         * sim/ucsim/s51.src/Makefile.in,
5328         * sim/ucsim/xa.src/Makefile.in,
5329         * sim/ucsim/z80.src/Makefile.in,
5330         * src/Makefile.in,
5331         * support/cpp2/Makefile.in,
5332         * support/librarian/Makefile,
5333         * support/makebin/Makefile: added DESTDIR to the install path proposed
5334         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5335         * doc/sdccman.lyx: added DESTDIR documentation
5336
5337 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5338
5339         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5340         instruction for interrupt handlers, use fast returns when returning
5341         from high priority interrupts
5342
5343 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5346         code generation
5347         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5348         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5349         bugs, ported much of Bernhard's code from mcs51
5350         * src/mcs51/gen.c (genSend),
5351         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5352         than one when calling a reentrant function
5353         * device/lib/_mullong.c: defined an alternate struct layout for big
5354         endian ports (hc08)
5355
5356 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5357
5358         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5359         test
5360
5361 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5362
5363         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5364         are sane and complete before asking the port its prefered parameter
5365         passing method (fixes bug #1017633)
5366         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5367         and _ret3
5368
5369 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5370
5371         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5372         problem in bitfields >= 8 bits.
5373
5374 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5375
5376         * src/SDCCsymt.c: undid changes that were not meant to be committed
5377
5378 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5379
5380         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5381
5382 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5383
5384         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5385           copied and wrong bit got inverted
5386
5387 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5390         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5391         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5392         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5393         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5394         assignments to bitfields at known addresses
5395         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5396         reads from bitfields at known addresses
5397         * src/hc08/ralloc.c (packRegisters),
5398         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5399         genhc08Code): optimize pointer get values used as conditionals
5400         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5401         and branch
5402
5403 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5404
5405         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5406         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5407         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5408         as conditionals
5409
5410 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5411
5412         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5413
5414 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5415
5416         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5417         related problems
5418
5419 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5420
5421         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5422
5423 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5424
5425         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5426         mcs51 port
5427
5428 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5429
5430         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5431
5432 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5433
5434         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5435         cases use more compact code.
5436
5437 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5438
5439         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5440
5441 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5442
5443         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5444
5445 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5446
5447         * src/SDCCsymt.h,
5448         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5449         parameter of changePointer() from symbol* to sym_link*
5450         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5451         * src/SDCCsymt.c (compareType): void* type is castable to other
5452         pointers, but not necesarily an exact match.
5453         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5454         is no longer blindly treated as an exact match.
5455         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5456
5457 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5458
5459         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5460
5461 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5462
5463         * src/pic/gen.c,
5464         * src/pic/pcode.c,
5465         * src/pic/ralloc.h,
5466         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5467
5468 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5469
5470         * src/pic/device.c,
5471         * src/pic/device.h,
5472         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5473
5474 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5475
5476         * src/mcs51/gen.c (emitcode): fixed bug #992819
5477
5478 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5479
5480         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5481           there's no need to make it worse
5482
5483 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5484
5485         * src/mcs51/ralloc.c (deassignLR),
5486         * src/ds390/ralloc.c (deassignLR),
5487         * src/hc08/ralloc.c (deassignLR),
5488         * src/z80/ralloc.c (deassignLR),
5489         * src/pic/ralloc.c (deassignLR),
5490         * src/pic16/ralloc.c (deassignLR),
5491         * src/avr/ralloc.c (deassignLR),
5492         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5493         rlivePoint): fixed another part of bug #971834
5494
5495 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * src/z80/main.c: enabled "critical" keyword
5498         * src/z80/mappings.i,
5499         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5500         functions (fixes bug #979646)
5501         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5502
5503 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5504
5505         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5506           such as c:\mydir.
5507
5508 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5509
5510         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5511           doesn't disable too much optimizations
5512
5513 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5514
5515         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5516
5517 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5518
5519         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5520
5521 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5522
5523         * src/pic/gen.c tidied up tabs
5524         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5525         * src/pic/main.c tidied up tabs
5526         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5527         * src/pic/pcoderegs.c tidied up tabs
5528         * src/pic/ralloc.c tidied up tabs
5529
5530 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5531
5532         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5533         to S_FIXED for pic16 port and when symbol is not in level 0,
5534         allocate for S_REGISTER storage class and pic16 port, too,
5535         * src/pic16/device.h: prototype for checkSym,
5536         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5537         * (pic16_assignConfigWordValue): test the value and the mask to
5538         validate that the value is suitable for the configuration word,
5539         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5540         collect extern declared symbols, don't emit symbol twice, check
5541         first if symbol is in publics set first,
5542         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5543         * added command line '--fstack' which enables an experimental
5544         feature for stack access, too buggy to be used yet...
5545         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5546         * (pic16_allocDirReg): when register has storage class S_REGISTER
5547         allocate in pic16_dynAccessRegs,
5548         * device/include/pic16/pic18f????.h: modified configuration word
5549         naming convention, words started as CONFIG0H but should be CONFIG1H
5550
5551 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5552
5553         * device/include/mcs51reg.h: fixed bug 970993
5554
5555 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5556
5557         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5558         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5559         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5560         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5561         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5562         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5563           error/warning numbers,
5564           added function setWarningDisabled()
5565         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5566         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5567           _memcmp.c _memmove.c calloc.c realloc.c free.c
5568         * support/regression/tests/malloc.c: added tests for new functionality
5569         * support/regression/tests/zeropad.c: added tests for truncated initializers
5570           and initialized char arrays starting with '\x0'
5571         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5572
5573 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5574
5575         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5576
5577 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5578
5579         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5580         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5581         peephole 177.e. Thanks to anonymous
5582
5583 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5584
5585         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5586         function isn't used in the source but referenced as a
5587         variable initializer then declare it as extern in .asm file
5588
5589 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5590
5591         * .version: increased version number to 2.4.3
5592
5593         Adding version extension according to ChangeLog CVS revision
5594         * src/Makefile.in (target all): added dependency 'version.h'
5595         * (rule version.h): added rule to create version.h from ChangeLog,
5596         * (rule dep): added dependency version.h,
5597         * src/version.awk: AWK script to create version.h
5598         * src/SDCCdwarf2.c (dwWriteModule),
5599         * src/SDCCglue.c (initialComments),
5600         * src/SDCCmain.c (printVersionInfo): modified to write after
5601         version string the version extension number,
5602         * src/SDCCutil.c: included "version.h"
5603         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5604         number,
5605         * src/SDCCutil.h: added prototype for getBuildNumber
5606
5607         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5608         includeDirsSet, too,
5609         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5610         const char [] is found in function prototype...
5611
5612         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5613         moving to WREG with source is already in WREG,
5614         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5615         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5616         * (aopForSym): stack'ed symbols are partially supported, added
5617         if-clause to support symbols in FARSPACE,
5618         * (sameRegs): added test for AOP_ACC to see if registers are same,
5619         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5620         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5621         * (pic16_popRegFromString): will not allocate a new register if it
5622         doesn't find one by name, bug may have introduced...
5623         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5624         * (genIpush): revived to use pic16 port's stack,
5625         * (genAddrOf): added incomplete case for stack'ed operand,
5626         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5627         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5628         can handle multibyte operands,
5629         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5630         * (pic16initialComments): added message for MPLAB compatibility
5631         mode enabled,
5632         * src/pic16/main.h: prototype for pic16_mplab_comp,
5633         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5634         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5635         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5636         because of increased complexity of procedure,
5637         * (_process_pragma): stack pragma changed to format 'stack pos len',
5638         emit symbol '_stack_end' to conform with gplink,
5639         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5640         to search for register,
5641         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5642         PO_GPR_REGISTER,
5643         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5644         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5645         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5646         case for PO_GPR_REGISTER,
5647         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5648         dies, the new era is ahead !...
5649         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5650         pic16_dynInternalRegs,
5651         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5652         * (pic16_allocDirReg): minor optimizations and bug fixes,
5653         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5654
5655         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5656         load stack and frame pointer with address of 'stack_end' symbol
5657
5658 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5659
5660         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5661         without source code but only variable initializers
5662
5663 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5664
5665         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5666         external are not declared as extern to reduce overhead while linking
5667
5668 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5669
5670         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5671
5672 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5673
5674         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5675           Yee Keat for the patch
5676         * src/SDCCast.c (decorateType): fixed bug #979599
5677         * src/ds390/gen.h: removed local fReturnSizeDS390
5678         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5679         * src/ds390/gen.c (genAnd, genOr, genXor),
5680         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5681
5682 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5683
5684         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5685         add relFilesSet to $3, manipulate $2 to handle linking of object
5686         files without source files in command line,
5687         * device/include/pic16 (all headers): added ID location macros,
5688         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5689         entries for ID location bytes,
5690         * (pic16_assignIdByteValue): NEW,
5691         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5692         added field dumpcalltree to pic16_options_t,
5693         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5694         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5695         emitting rFalseIfx label after check_carry label,
5696         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5697         pic16_emitDIRegs), NEW
5698         * (pic16glue): dump .calltree file when option --calltree found,
5699         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5700         * (_pic16_genAssemblerPreamble): emit ID locations after
5701         configuration registers,
5702         * (pic16_linkCmd): modifications of the link command,
5703         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5704         * (pic16_pCodeInitRegisters): don't init stack registers,
5705         * (pic16_findPrevInstruction): fixed bug,
5706         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5707         bug with immediate registers,
5708         * (buildCallTree): traces stack push and pop,
5709         * (pct2): dump also stack usage for each function,
5710         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5711         * (pic16_allocDirReg): various modifications,
5712         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5713         fixed to 1,
5714
5715 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5716
5717         * src/pic16/pcode.c: removed buggy double colon
5718
5719 2004-07-01 Borut Razem <borut.razem AT siol.net>
5720
5721         * support/scripts/sdcc.nsi: added include/pic16 to setup
5722
5723 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5724
5725         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5726         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5727         target 'clean',
5728         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5729         specific command line arguments. Also added sample lkr script
5730         for placing a variable at a specific memory bank.
5731         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5732         at a specific memory bank,
5733         * (pic16_dump_isection): fixed bug which caused string literals to
5734         be omitted when dumping idata section,
5735         * (pic16_groupRegistersInSection): added code to handle registers
5736         in specific memory banks,
5737         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5738         public, all references are renamed too,
5739         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5740         AOP_DPTR2,
5741         * (pic16_storeForReturn): added case to handle when dest is WREG,
5742         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5743         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5744         pic16_rel_udata, check to see if that register is marked as being
5745         a member of a specific memory bank,
5746         * (pic16_printIvalCharPtr): added code to add string literals either
5747         to code or the idata sections,
5748         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5749         also accept the 'udata' pragma,
5750         * src/pic16/main.h: new structure types sectName and sectSym
5751         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5752         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5753         * (pic16_findPrevInstruction): fixed, it returned nothing,
5754         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5755         instruction combinations,
5756         * (pic16_FixRegisterBanking): heavily reorganised,
5757         * (pic16_AnalyzeBanking): if generating banksel directives is
5758         disabled, then don't call FixRegisterBanking at all,
5759         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5760         completely removed,
5761         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5762
5763 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5764
5765         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5766         Phuah Yee Keat <yk.phuah AT nestac.com>
5767
5768 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5769
5770         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5771         correctly the IVT even if it is relocated to some other location
5772
5773 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5774
5775         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5776         * device/include/pic16/pic18f2220.h: NEW,
5777         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5778         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5779         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5780         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5781         nodefaultlibs, ivt_loc is the location of the interrupt vector
5782         table, and nodefaultlibs signs that default libraries should not be
5783         linked in link stage,
5784         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5785         according to --ivt-loc argument,
5786         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5787         when pragma stack is found,
5788
5789 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5790
5791         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5792         256 (range check), 257 (do while), 258.a-f (bit banging
5793         f.e. on 3-wire SPI bus)
5794
5795 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5796
5797         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5798         variables used exclusively within a loop
5799
5800 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5801
5802         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5803
5804 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5805
5806         * src/SDCClrange.c (computeClash): fixed bug #971834
5807
5808 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5809
5810         * src/mcs51/gen.c (genCmp): fixed bug #975903
5811         * src/hc08/gen.c (operandsEqu),
5812         * src/ds390/gen.c (operandsEqu),
5813         * src/z80/gen.c (operandsEqu),
5814         * src/pic/gen.c (operandsEqu),
5815         * src/pic16/gen.c (operandsEqu),
5816         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5817         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5818
5819 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5820
5821         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5822
5823 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5824
5825         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5826         default case in switch statement,
5827         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5828         to eliminate problem with initialisation of pointers, but problem
5829         still exists,
5830         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5831         * (emitStaticSegment): removed various lines emitting debug info,
5832         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5833         added processor registers for utilizing EEPROM,
5834         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5835         configurable and set 8
5836
5837 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5838
5839         * .version: increased version number to 2.4.2,
5840
5841         Cumulative patch for pic16 port
5842         * src/pic16/device.c: changed scheme to dump initial values for
5843         variables in idata segment, all print_idata* functions were removed,
5844         now the pic16_printIval* will be called,
5845         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5846         * _pic16_printPointerType, pic16_printPointerType,
5847         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5848         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5849         NEW, similar to the respective functions in SDCCglue.c,
5850         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5851         way, emitting hex bytes,
5852         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5853
5854 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5855
5856         * src/avr/ralloc.c (serialRegAssign),
5857         * src/xa51/ralloc.c (serialRegAssign),
5858         * src/pic/ralloc.c (serialRegAssign),
5859         * src/pic16/ralloc.c (serialRegAssign),
5860         * src/hc08/ralloc.c (serialRegAssign),
5861         * src/z80/ralloc.c (serialRegAssign),
5862         * src/ds390/ralloc.c (serialRegAssign),
5863         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5864
5865 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5868         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5869
5870 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5871
5872         Cumulative patch for pic16 port:
5873         * src/pic16/device.h (typedef PIC16_device) modified fields for
5874         defining microcontrollers,
5875         * src/pic16/device.c: added new info for all devices in Pics16 array,
5876         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5877         to be optimised out by the pCode optimiser,
5878         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5879         specially, bug reported by G.M. Gallant,
5880         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5881         as force'd so that cannot be optimised out by pCode optimiser,
5882         * src/pic16/pcode.c,
5883         * src/pic16/pcodepeeph.c,
5884         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5885         they are disabled by default, but can be enabled explicit with
5886         command argument --denable-peeps, for testing,
5887         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5888         --pomit-ivt in COMPILE_FLAGS
5889
5890 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5891
5892         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5893           compilation on MSVC
5894
5895 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5896
5897         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5898
5899 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5900
5901         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5902         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5903
5904 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5907         would only assign 0x300001 register.
5908
5909 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5910
5911         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5912         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5913
5914 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5915
5916         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5917         for ds80c400
5918         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5919         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5920         added peephole 254 (left shift), 255 (jump table)
5921
5922 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5923
5924         * device/lib/Makefile.in: removed comment line with model-pic16,
5925         * (target port-specific-objects-pic16): the libraries and objects
5926         are copied to the build directory form the device/lib/pic16/bin
5927         directory
5928
5929         Cumulative patch concerning pic16 port:
5930         * library directory has been re-organized,
5931         * added support for PIC18F1220,
5932         * added headers and library sources for chips 18f1220,18f6520,
5933         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5934
5935         * configuration registers setting has changed, now each supported
5936         device has a complete description of the registers it uses,
5937         * all initialisations are moved to idata sections, these section
5938         can be absolute or relocatable,
5939         * fixed initialisation of codespace variables,
5940         * fixed warning about PCLATU and gpsim,
5941         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5942         * (genAssign): use table reads when assigning from variables in codespace,
5943         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5944         char/int variables placed in codespace,
5945         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5946         registers set in .asm file, no need for --pomit-config-words anymore,
5947         * (pic16glue): some 8051 legacy segments are commented out
5948         (to be removed completely),
5949         * added support for alternative assembler and linker with --asm=
5950         and --link= command line arguments,
5951         * peepholes are disabled automatically in the port, no need to
5952         specify on command line,
5953         * port supports natively char/int/long multiplication, but converts
5954         all divisions to support functions,
5955         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5956         to the file set in variable $2,
5957         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5958         strings in ASCII format and not in hex,
5959         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5960         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5961         allocate proper register if iCodes aren't temporary,
5962
5963 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5964
5965         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5966
5967 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5968
5969         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5970         is commented out
5971
5972 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5973
5974         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5975         computed address is reused
5976         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5977         multi-byte bitfields
5978
5979 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5980
5981         * src/z80/gen.c: (genArrayInit): must check for pointers too
5982
5983 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5984
5985         * support/regression/tests/zeropad.c: never meant to commit the
5986           nestedstruct test: removed, added check for GCC version
5987
5988 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
5989
5990         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
5991         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
5992         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
5993           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
5994           bugs 928906 and 954082 half-empty initializers
5995         * src/SDCCsymt.h,
5996         * src/SDCCsymt.c (getAllocSize): added for above fix
5997         * src/z80/gen.c (genArrayInit): fixed bug 741044
5998         * support/regression/tests/zeropad.c: added tests
5999
6000 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
6001
6002         * src/pic16/device.c (pic16_dump_section): corrected bug which
6003         caused some symbols of the libraries to be misplaced
6004
6005 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6006
6007         * src/pic16/glue.c,
6008         * src/pic16/ralloc.h,
6009         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6010         to fix conflict with pic port
6011
6012 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6015         externs configuration variables,
6016         * src/pic16/ralloc.h,
6017         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6018         prototype in header, commented out some debug messages
6019
6020 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6021
6022         * src/pic16/glue.c,
6023         * src/pic16/main.c,
6024         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6025         for gpasm COFF object generation. Thanks to D. Hawkins for
6026         his patch info
6027
6028 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6029
6030         * src/ds390/main.c,
6031         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6032         Brock for spotting this)
6033         * src/ds390/gen.c (genEndFunction),
6034         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6035         interrupt handler and critical. Disable push/pop optimizations when
6036         peephole optimizations disabled.
6037
6038 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6039
6040         Updated pic16 library sources and headers.
6041         * device/lib/pic16/pic18f*/ ,
6042         * device/include/pic16/*.h: modified to handle structured SFR
6043         definitions
6044
6045 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6046
6047         * src/port.h (PORT structure): added hook initPaths, now each
6048         port can declare its own default search paths,
6049         which can been seen with the --print-search-dirs option,
6050         see pic16 port for example,
6051         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6052         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6053         * (doPrintSearchDirs): NEW, replaces in a central manner the
6054         printing of search dirs which was split in set*Paths functions,
6055         * (main): added call to port->initPaths and doPrintSearchDirs,
6056         * src/avr/main.c,
6057         * src/ds390/main.c,
6058         * src/hc08/main.c,
6059         * src/izt/i186.c,
6060         * src/izt/tlcs900h.c,
6061         * src/mcs51/main.c,
6062         * src/pic/main.c,
6063         * src/pic16/main.c: modified port structures to reflect addition of
6064         initPaths hook,
6065
6066         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6067         * (pic16_dump_section): for registers in same address reserve memory once,
6068         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6069         to no_banksel,
6070         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6071         result is greater in size than right or left,
6072         * (pic16_genUMult8X8_8): there are some cases where the result can
6073         be 16 bits size, so handle these,
6074         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6075         * (pic16_outBitC): modified to emit pcodes,
6076         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6077         or not,
6078         * (genDivOneByte): implemented algorithm to divide 8-bits,
6079         * (genCmp): uncommented goto, but issues still exist,
6080         * (genAnd): fixed a bug with variables >8bits,
6081         * (genPackBits): optimization added that uses BCF/BSF to change a
6082         single bit,
6083         * (genAssign): fixed bug when assigning floating point literals,
6084         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6085         __sdcc_gsinit_startup label,
6086         * src/pic16/main.c (_pic16_init): removed search directory
6087         initialisations,
6088         * (_pic16_initPaths): NEW, used to initialise search directories,
6089         * (_hasNativeMulFor): support functions for all except char/int
6090         multiplication, and char division,
6091         * (PIC16_port struct): modified entry for native mul support,
6092         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6093         no_banksel option,
6094         * (buildCallTree): call to register_usage is ifdef'ed out,
6095
6096 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6097
6098         * device/include/string.h: applied Stas Sergeev's patch to make this
6099         header file compatible with the preprocessor -Wundef option
6100         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6101         failure (fixes bug #941458)
6102
6103 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6104
6105         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6106         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6107         that the variable, not the function, should be static
6108         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6109         to be consistent with non-literal case
6110
6111 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         * src/SDCCast.c (isConformingBody): fixed bug #949967
6114         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6115         convilong): fixed bug #952086
6116
6117 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6118
6119         * src/SDCCmem.c (allocVariables): fixed bug #955321
6120
6121 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6122
6123         * src/hc08/main.c (_hc08_genAssemblerEnd),
6124         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6125         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6126         completely eliminated the use of a temporary file
6127         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6128         when more than one file linked
6129         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6130
6131 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6132
6133         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6134         which fixes bug #543481
6135         * support/regression/tests/bug-751703.c: fixed comments left from a
6136         cut and paste error
6137         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6138         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6139         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6140         scopes
6141         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6142         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6143         are now changed to underscores in moduleName
6144
6145 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6146
6147         * as/mcs51/lkmem.c: better fix for bug #954173
6148
6149 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6150         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6151
6152         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6153         * device/include/c8051f000.h,
6154         * device/include/c8051f120.h,
6155         * device/include/c8051f300.h,
6156         * device/include/c8051f310.h,
6157         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6158         PWM16) and detab'ed
6159
6160 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6161
6162         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6163         and mailing lists, doc'ed --no-peep-comments, removed reference
6164         to knoppix (newest version has no LyX/LaTeX), other minor changes
6165         * src/SDCCglue.c (glue): save 2 bytes stack space with
6166         option --main-return. The ljmp could probably be avoided too
6167
6168 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6169
6170         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6171
6172 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6173
6174         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6175         * src/SDCCopt.c (isLocalWithoutDef),
6176         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6177         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6178         (credit to Maarten Brock for patch #949363, on which this is based)
6179         * support/regression/tests/bug-751703.c: some test cases of extern used
6180         within inner scopes.
6181
6182 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6183
6184         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6185         SPEC_STRUCT
6186         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6187         struct definitions
6188         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6189         dwWriteLabel): fix to create valid debugger symbols even when
6190         the module name has non-alphanumeric symbols in it
6191         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6192         when a variable's allocation has been optimized away
6193
6194
6195 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6196
6197         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6198         * src/hc08/main.c,
6199         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6200         * src/mcs51/main.c,
6201         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6202         * src/ds390/main.c,
6203         * src/z80/gen.c (z80_emitDebuggerSymbol),
6204         * src/z80/main.c,
6205         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6206         * src/pic/main.c,
6207         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6208         * src/pic16/main.c,
6209         * src/avr/gen.c (avr_emitDebuggerSymbol),
6210         * src/avr/main.c,
6211         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6212         * src/xa51/main.c,
6213         * src/SDCCdebug.c (emitDebuggerSymbol),
6214         * src/SDCCdebug.h,
6215         * src/port.h: added a debugger struct to the port struct. Added a
6216         callback for defining debugger symbols
6217
6218         * src/SDCCast.c (createLabel),
6219         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6220         with isitmp = 1
6221         * src/SDCCicode.h,
6222         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6223         iCode back to the ast for the function
6224
6225         * src/hc08/ralloc.c (hc08_assignRegisters),
6226         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6227         unneeded fields from the regs struct.
6228         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6229         pushReg() & pullReg() functions instead of emitcode()
6230
6231         * src/hc08/gen.c (genLabel, genhc08Code),
6232         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6233
6234         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6235         debugger hooks
6236
6237         * src/hc08/gen.c (genEndFunction, genhc08Code),
6238         * src/hc08/gen.h,
6239         * src/mcs51/gen.c (genEndFunction, gen51Code),
6240         * src/mcs51/gen.h,
6241         * src/ds390/gen.c (genEndFunction, gen390Code),
6242         * src/ds390/gen.h,
6243         * src/z80/gen.c (genEndFunction, genZ80Code),
6244         * src/z80/gen.h,
6245         * src/z80/z80.h,
6246         * src/pic/gen.c (genEndFunction, genpic14Code),
6247         * src/pic/gen.h,
6248         * src/pic16/gen.c (genEndFunction, genpic16Code),
6249         * src/pic16/gen.h,
6250         * src/avr/gen.c (genEndFunction, genAVRCode),
6251         * src/avr/gen.h,
6252         * src/xa51/gen.c (genEndFunction, genXA51Code),
6253         * src/xa51/gen.h,
6254         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6255         specific code to cdbFile.c and out of the backend code generators
6256
6257         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6258         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6259         starting address is now 0
6260
6261         * as/hc08/asm.h,
6262         * as/hc08/m08pst.c,
6263         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6264         assembler directive for DWARF support
6265         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6266
6267         * src/src.dsp,
6268         * src/Makefile.in,
6269         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6270
6271 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6274         and inappropriate peephole optimization in jump tables
6275
6276 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6277
6278         * as/hc08/m08pst.c,
6279         * src/SDCCglue.c: sdccopt works for the hc08 port now
6280
6281 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6282
6283         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6284
6285 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6286
6287         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6288
6289 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6290
6291         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6292         rules
6293         * src/SDCCmain.c,
6294         * src/SDCCglobl.h,
6295         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6296         comments from the peephole optimizer replacement rules
6297         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6298         symbols
6299         * src/SDCCcse.c (updateSpillLocation),
6300         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6301         equivalents
6302         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6303         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6304         objects far pointers
6305
6306 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6307
6308         * src/SDCCsymt.h: a missing part of my last change
6309         * src/pic/ralloc.c (regTypeNum),
6310         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6311
6312 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6313
6314         * src/SDCCicode.h,
6315         * src/SDCCicode.c (aggrToPtrDclType),
6316         * src/SDCCptropt.h,
6317         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6318         ptrPseudoSymConvert),
6319         * src/pic/ralloc.c (regTypeNum),
6320         * src/pic16/ralloc.c (regTypeNum),
6321         * src/hc08/ralloc.c (regTypeNum),
6322         * src/ds390/ralloc.c (regTypeNum),
6323         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6324         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6325
6326 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6327
6328         * link/z80/lkmain.c (afile),
6329         * as/hc08/lkmain.c (afile),
6330         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6331         prevent a pointer problem when a filename has no directory and
6332         no extension specified.
6333
6334 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6335
6336         * link/z80/lkmain.c (afile): allow periods in directory names
6337         * link/z80/lkmain.c (afile),
6338         * as/mcs51/lkmain.c (afile),
6339         * as/hc08/lkmain.c (afile): allow linker script file to have an
6340         extension other than ".lnk"
6341         * link/z80/lklex.c (getfid),
6342         * link/z80/lkmain.c (parse),
6343         * as/mcs51/lklex.c (getfid),
6344         * as/mcs51/lkmain.c (parse),
6345         * as/hc08/lklex.c (getfid),
6346         * as/hc08/lkmain.c (parse): Support comments in the linker script
6347         file on lines by themselves and after filenames
6348
6349 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6350
6351         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6352
6353 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6354
6355         * src/z80/peeph-z80.def: removed some peephole rules that don't
6356         work with multibyte arithmetic (fixed bug #937126)
6357         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6358         to registers and not global variables
6359         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6360         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6361         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6362         checking for assignments not internally generated (fixed bug #931895)
6363         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6364         structure member (fixed bug #930072)
6365
6366 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6367
6368         * src/SDCCmain.c (linkEdit),
6369         * src/hc08/main.c (_hc08_parseOptions),
6370         * as/hc08/Makefile.in,
6371         * as/hc08/aslink.h,
6372         * as/hc08/asm.h,
6373         * as/hc08/m08pst.c,
6374         * as/hc08/lkrloc.c (relr, rele),
6375         * as/hc08/lkarea.c (lnkarea)
6376         * as/hc08/lkmain.c (afile, parse),
6377         * as/hc08/lkelf.c: support for ELF output
6378         * as/hc08/lks19.c (s19),
6379         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6380
6381 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6382
6383         * as/mcs51/lkihx.c: Fixed bug #899105.
6384
6385 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6386
6387         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6388         .dsp files from Unix to DOS.
6389
6390 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6391
6392         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6393         function pointers; we have been compliant for several months now.
6394         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6395         change that was accidently commented out
6396         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6397         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6398         bug #922319
6399
6400 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6401
6402         * src/hc08/gen.c: output of all of the internal debugging information
6403         is now controlled by the D() macro; it is disabled by default
6404
6405 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6406
6407         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6408         harder to keep the same registers during a CAST iCode
6409         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6410         long via int can be done in a single cast, if the signedness is
6411         correct.
6412         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6413         putchar() in tinibios.c in ds390's library
6414
6415 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6416
6417         * src/SDCCast.c (decorateType): fixed bug #898889,
6418         cast result of a literal complement too
6419         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6420         fixed check for bitfields
6421
6422 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6423
6424         * src/SDCCicode.c (geniCodeLogic): made it static,
6425         (geniCodeLogicAndOr): added in order to fix bug #905492,
6426         (ast2iCode): fixed bug #905492
6427         * support/regression/tests/bug-905492.c: added
6428         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6429         (processParms): fixed bug #927659: don't copy parms, this will clear
6430         decorated flag
6431         * support/regression/tests/bug-927659.c: added
6432
6433 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6434
6435         * src/SDCCast.c (addCast): don't cast float to char
6436         * device/lib/libsdcc.lib: added _memmove
6437
6438 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6439
6440         * device/lib/large/Makefile: fixed parallel execution by
6441         replacing `make` by `$(MAKE)`
6442
6443 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6444
6445         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6446         offsets (fixes bug #923936)
6447
6448 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6449
6450         * device/lib/small/Makefile: fixed parallel execution by
6451         replacing `make` by `$(MAKE)`
6452
6453 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6454
6455         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6456
6457 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6458
6459         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6460         * src/regression/Makefile: Regression test was not running.
6461
6462 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6463
6464         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6465         complement if possible
6466         * src/SDCCval.c (valComplement),
6467         * src/SDCCicode.c (operandOperation): fixed complement of literal
6468         * support/regression/tests/onebyte.c (testComplement): added
6469
6470 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6471
6472         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6473         return an optimized tree; actually replace actParm with the new tree
6474         * src/SDCCast.h: added some parantheses to remove side effects
6475         * support/regression/tests/bug-920866.c
6476
6477 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6478         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6479         Bit operands were not being handled properly in the pic14 port.
6480         (now src/regression/add.c passes again).
6481
6482 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6483
6484         * src/SDCC.y (labeled_statement): case and default no longer require
6485         a following statement (RFE #893037)
6486
6487 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6488
6489         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6490         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6491         disabled (fixes bug #916294)
6492         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6493         "mov a,acc"; patch provided by Lenny Story
6494         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6495
6496 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6497
6498         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6499         functions
6500         * src/ds390/gen.c (genFunction, genEndFunction),
6501         * src/ds390/ralloc.c (ds390_assignRegisters),
6502         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6503         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6504         pushed if there are parameters passed on the stack. Also, a cleaner
6505         way to decide if r0/r1 should be pushed/popped. (Together they fix
6506         bug #918693)
6507
6508 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * doc/sdccman.lyx,
6511         * device/lib/mcs51/crtpagesfr.asm,
6512         * device/lib/mcs51/crtxinit.asm,
6513         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6514         to avoid confusion with Si Lab's SFRPAGE register.
6515
6516 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6517
6518         * src/SDCCglue.c (emitMaps): allow public sfr variables
6519         * src/SDCCglue.c (initialComments): include compiler build date
6520         with compiler version and put the timestamp of the generated
6521         assembly file on a serperate line to be less confusing.
6522         * src/port.h: added genInitStartup hook
6523         * src/avr/main.c,
6524         * src/ds390/main.c,
6525         * src/hc08/main.c,
6526         * src/pic/main.c,
6527         * src/pic16/main.c,
6528         * src/xa51/main.c,
6529         * src/z80/main.c: genInitStartup initialize as NULL (default to
6530         historical behaviour)
6531         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6532         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6533         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6534         library instead of hard coding it into the compiler.
6535         * support/regression/ports/mcs51-stack-auto/spec.mk,
6536         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6537         * device/lib/mcs51/Makefile,
6538         * device/lib/small/Makefile,
6539         * device/lib/large/Makefile,
6540         * device/lib/mcs51/crtpagesfr.asm,
6541         * device/lib/mcs51/crtstart.asm,
6542         * device/lib/mcs51/crtxclear.asm,
6543         * device/lib/mcs51/crtxinit.asm,
6544         * device/lib/mcs51/crtclear.asm,
6545         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6546         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6547         and into user configurable files.
6548         * device/lib/clean.mk: clean mcs51 directory too
6549         * support/regression/tests/longlit.c: added static to T1 declaration
6550         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6551         accesses in the initialization code
6552
6553 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6554
6555         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6556         OSCTRIMVAL as noted in bug #916008
6557
6558 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6559
6560         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6561         in loops with multiple exits (reported as incorrect registers
6562         used by Martin Helmling in Sdcc-user list)
6563
6564 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6565
6566         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6567         made ds390 register extensions look less like error messages
6568
6569 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6570
6571         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6572         reported by Adam Wozniak in Sdcc-user list
6573
6574 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6575
6576         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6577         arithmetic optimizations, added debug output
6578
6579 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6580
6581         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6582         * sdcc.spec: updated and split sdcc into 3 rpms
6583         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6584         needed for literals of LEFT_OP and '+'
6585         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6586         introduced RESULT_TYPE_NOPROM
6587         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6588         left shift
6589         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6590         limited promotion to int only for '*'
6591         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6592
6593 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6594
6595         * src/pic16/gen.c (genSkip),
6596         (genc16bit2lit), (gencjneshort): commented out
6597         (is_LitOp): new helper function, checks operand type
6598         (genCmpEq): rewritten
6599
6600 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * support/regression/tests/bug-908454.c: added
6603
6604 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6605
6606         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6607         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6608         (geniCodeCast): cosmetic, don't preserve bit storage class
6609         (geniCodeLeftShift): added promotion
6610         (geniCodeLogic): fixed regression
6611         * src/SDCCsymt.c (computeTypeOr): accept bits too
6612         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6613
6614 2004-03-07  Borut Razem <borut.razem AT siol.net>
6615
6616         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6617
6618 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6619
6620         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6621         version of pic16_genPackRegisters which does not check if ic is a
6622         CAST operator,
6623         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6624         function cause string1.c regression test fails
6625
6626 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6627
6628         * sim/ucsim/configure.in,
6629         * sim/ucsim/configure,
6630         * sim/ucsim/doc/Makefile.in: use docdir
6631         * src/SDCC.y: fixed sbit atrributes
6632         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6633         * src/SDCCast.c (decorateType): |^& need special promotion handling
6634         * src/SDCCast.h,
6635         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6636         * src/SDCCsymt.h (computeType),
6637         * src/SDCCicode.c: computeType() needs op
6638         * src/SDCCsymt.c (checkTypeSanity),
6639         * doc/sddman.lyx: "plain" bitfields are unsigned
6640         * src/SDCCsymt.c (computeTypeOr): added
6641         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6642         |^& ops
6643         * src/SDCCval.c (val*): computeType() needs op
6644         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6645         * support/regression/tests/onebyte.c: added tests for |^&
6646
6647 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6648
6649         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6650         for writing icode into asm output.
6651
6652 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6653
6654         * src/pic16/device.c: added some debug lines enabled
6655         with macro DEBUG_CHECK,
6656         * src/pic16/genarith.c: more debug in genPlus,
6657         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6658         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6659         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6660         * (aopForSym): onStack symbols are re-placed in data memspace,
6661         and onStack flag is cleared,
6662         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6663         copy temporary pcodeop,
6664         * (genPcall): added warning for not updating PCLATU,
6665         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6666         always true for pic16 port,
6667         * (genMultOneWord): NEW, supports integer multiplication,
6668         * (genMult): modified to call genMultOneWord,
6669         * (ifxForOp): added warning when return NULL,
6670         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6671         flag is set before call to operandFromSymbol for implicit
6672         added structures,
6673         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6674         options.intlong_rent are set by default,
6675         * (_hasNativeMulFor): modified to allow port generation of integer
6676         multiplication,
6677         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6678         set regtype to REG_SFR for all registers, restricting seting the
6679         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6680
6681 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6682
6683         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6684         more than 500 times in the regression tests
6685
6686 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6687
6688         * support/Util/SDCCerr.h,
6689         * support/Util/SDCCerr.c,
6690         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6691         enumerator_list),
6692         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6693         for symbol conflicts.
6694         * support/valdiags/tests/enum.c,
6695         * support/valdiags/tests/tentdecl.c,
6696         * support/valdiags/tests/struct.c: expect possible error messages
6697         referring to original symbol definitions.
6698         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6699         * src/SDCCsymt.h,
6700         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6701
6702 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6703
6704         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6705
6706 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6707
6708         * src/pic16/ralloc.c (newReg): fixed bug #908929
6709
6710 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6711
6712         * src/ds390/gen.c: added missing #include "main.h"
6713
6714 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6715
6716         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6717         checking if symbol is already in set,
6718         * src/pic16/device.h: prototype for checkAddSym,
6719         * src/pic16/gen.c: (_G): added entry interruptvector,
6720         * (assignResultValue): removed some commented out lines,
6721         * (genFunction): check for ISR via sym->type, absolute section for
6722         interrupt code is created via a new pBlock, the goto instruction is
6723         placed now correctly at the interrupt vector position, changed all
6724         references from ivec to _G.interruptvector,
6725         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6726         is the interrupt is a high priority one, same for return from ISR,
6727         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6728         externs to calls of checkAddSym,
6729         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6730         pic16_pcode_verbose flag is set,
6731         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6732         * src/pic16/pcoderegs.c: message about how many registers are saved
6733         will only be emitted if pic16_pcode_verbose flag is set,
6734
6735 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6736
6737         * src/ds390/ralloc.h,
6738         * src/ds390/ralloc.c (ds390_regWithIdx),
6739         * src/ds390/gen.c (emitcode),
6740         * src/ds390/main.h,
6741         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6742         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6743         ds390operandCompare, getRegsRead, getRegsWritten,
6744         initializeAsmLineNode): customized instruction size calculation for
6745         ds390, started basis for some register optimizations
6746         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6747         corresponding assembly output
6748         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6749         missing push/pop of r0/r1. Optimized push/pops
6750
6751 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6752
6753         * src/mcs51/main.c (instructionSize): fixed ACALL size
6754         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6755
6756 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6757
6758         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6759         the sorting of rlist with NULL elements
6760         * (print_idataType, print_idata): NEW to create idata sections
6761         * src/pic16/device.h: idataSymSet new variable
6762         * src/pic16/gen.c (genFunction): fixed some bugs in string
6763         comparing, improved the absolute section creation for ISRs,
6764         added FSR0L/FSR0H in registers that are saved in an ISR,
6765         * (genInline): fixed the processing of inline snippets,
6766         now they undergo no process by the peephole optimizer
6767         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6768         are placed in idataSymSet,
6769         * (pic16emitStaticSeg): extern symbols are added in externs,
6770         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6771         switching when aboslute variables are placed in access bank memory
6772         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6773         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6774         commented out with #if,
6775         * (pic16_packRegisters): reintroduce the check for CAST because some
6776         symbols are not correctly handled,
6777         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6778         pCodeInstruction instead of pCode,
6779         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6780         pCodeAsmDir definition,
6781         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6782         directive, then the argument directive is emitted without the leading
6783         tab, hack for inline labels which must be in the first column,
6784         * (compareLabel,pic16_findNextInstruction),
6785         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6786         * (insertBankSwitch): modified for the new pCodeAsmDir,
6787
6788 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6789         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6790
6791         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6792         instance,
6793         * (pushSide): commented out with #if,
6794         * (assignResultValue): fixed some typos in saving
6795         registers,
6796         * (genPcall): FIXED and sync'ed with genCall,
6797         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6798         * (genNearPointerGet): fixed to handle some more cases,
6799         implementation scheme via table reads,
6800         * (genConstPointerGet): modified to access code memory correct,
6801         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6802         and improved to handle some cases
6803         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6804         instead of "RETLW" for init data
6805         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6806         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6807         variables are placed in access bank memory (<0x80 and >=0xf80),
6808         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6809         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6810         TBLWT_POSTDEC,TBLWT_PREINC
6811         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6812         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6813         directives
6814         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6815         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6816         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6817         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6818
6819 2004-02-29  Borut Razem <borut.razem AT siol.net>
6820
6821         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6822         support/Util/findme.h, support/Util/system.h: enhance binary relative
6823         search for lib and include by using findProgramPath()
6824
6825 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6826
6827         * src/SDCCpeeph.h,
6828         * src/SDCCpeeph.c (pcDistance),
6829         * src/port.h,
6830         * src/mcs51/ralloc.h,
6831         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6832         * src/mcs51/main.h,
6833         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6834         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6835         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6836         size calculation port specific, started basis for some register
6837         optimizations
6838         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6839         missing push/pop of r0/r1. Optimized push/pops
6840         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6841         * device/lib/_modsint.c (_modsint),
6842         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6843         and stack version so regression tests pass
6844
6845 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6846
6847         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6848         * src/SDCCast.c (decorateType): catch another small optimization
6849         with '?' operator
6850         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6851         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6852         modified to finally use computeType() all over SDCC,
6853         see Feature Request #877103
6854         * src/SDCCval.h: cosmetic
6855         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6856         valCompare(); regression tested in muldiv.c
6857         * support/regression/tests/muldiv.c (testMod): mod sign follows
6858         dividend only
6859
6860 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6861
6862         * src/SDCCast.c (decorateType): fixed bug #902362
6863         * doc/INSTALL.txt: fixed install instructions for win32
6864
6865 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6866
6867         * device/include/Makefile.in (install): fixed by replacing spaces
6868         by tabs
6869         * doc/README.txt,
6870         * doc/INSTALL.txt: updated for release
6871         * doc/sdccman.lyx: added warning for --xstack being buggy
6872
6873 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6874
6875         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6876         to eliminate build warnings.
6877         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6878
6879 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6880            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6881
6882         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6883         removed -penable-stack, added comment for stack pragma, added
6884         warning for not initializing the stack/frame registers, removed
6885         comment at interrupts section
6886
6887         Stack is made permanent, there is no ability to disable stack usage.
6888         * src/pic16/device.h,
6889         * src/pic16/device.c: removed all references to USE_STACK macro,
6890         * src/pic16/device.c (pic16_dump_section): when no elements in
6891         rlist, free rlist before return,
6892         * (pic16_dump_int_registers): NEW, internal registers are a new set
6893         of general purpose registers reused by each function,
6894         * (checkAddReg): returns 1 if registers is added to set,
6895         * (pic16_groupRegistersInSection): when a registers is of type
6896         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6897         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6898         SRCASECMP macro is moved here from device.c
6899         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6900         PO_PCLATU, PO_PRODL, PO_PRODH,
6901         * (pic16_pCodeOpType, genMinus,
6902         changed compares to "a" register, with AOP_ACC,
6903         * (pic16_genPlus): fixed some bugs and indented properly,
6904         * (pic16_addSign): changed size to size+offset in the MOVWF
6905         instruction,
6906         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6907         multiply 8-bit operand by literal, result is 8-bit,
6908         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6909         multiply 2 8-bit operand, result is 8-bit,
6910         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6911         genUMult8X*_16,
6912         * src/pic16/gen.c: changed accUse to contain WREG only,
6913         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6914         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6915         true, do not use immediate addressing any more unless sym is a
6916         pointer in codespace,
6917         * (aopForRemat): do not use immediate addressing when symbol not in
6918         codespace and when symbol's address is requested,
6919         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6920         accUse size (= 1),
6921         * (aopGet): added case for AOP_ACC and don't return "accumulator
6922         bug" but WREG instead,
6923         * (popGetTempReg): pushes contents of temporary register in stack,
6924         * (popReleaseTempReg): pops contents of temporary register from
6925         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6926         * (pic16_popGet): separated case AOP_ACC to return register WREG
6927         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6928         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6929         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6930         the use of immediate pointers to certain cases only.
6931
6932         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6933         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6934         * (assignResultValue, genCall, genRet): modified to use the new
6935         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6936         genPcall is still broken,
6937         * (genFunction): added code to create 'A' type pBlocks when
6938         interrupt functions are generated, code not extensively tested yet,
6939         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6940         * (genEndFunction): modified so ISRs pop stored registers from stack,
6941         * (genMultOneByte): cleanup,
6942         * (AccRsh): added flag andmask, to and result with appropriate mask,
6943         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6944         * (genDataPointerGet): fixed and reenabled its use,
6945         * (genNearDataPointerGet): bugs fixed,
6946         * (genDataPointerSet): bugs fixed,
6947         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6948         pic16_DumpSymbol, pic16_DumpOp,
6949         * src/pic16/genutils.h: function prototypes for the above functions,
6950         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6951         pointers,
6952         * (pic16emitRegularMap): many many many improvements, but needs a
6953         major cleanup,
6954         * src/pic16/main.c: enable_stack in pic16_options is removed,
6955         * (_pic16_parseOptions): removed command line options -penable-stack,
6956         * (_process_pragma): emit stack symbol only when stack pragma is
6957         processed,
6958         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6959         redirected to FSR0L/FSR0H pair,
6960         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6961         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6962         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6963         for immediates,
6964         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6965         * (dumpPicOptype): NEW,
6966         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6967         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6968         with movff instruction,
6969         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6970         added pic16_int_regs, some packRegsFor* functions are commented out,
6971         because produce errors,
6972         * src/pic16/NOTES: minor modifications
6973
6974 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6975
6976         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6977         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6978         --pack-iram.
6979         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6980         * as/mcs51/lkaomf51.c: fixed bug #895763
6981
6982 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6983
6984         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6985
6986 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6987
6988         * doc/sdccman.lyx: added details about the HC08 storage classes and
6989         interrupts, fixed the register usage info for z80 & gbz80
6990
6991 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
6992
6993         * doc/sdccman.lyx: added more pic16 port documentation
6994         * device/include/pic16/: added header pic18fregs.h
6995
6996 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         * doc/sdccman.lyx: added Vangelis' contribution
6999
7000 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7001
7002         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
7003         extend to the next CALL or PCALL, not just to the next CALL.
7004
7005 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
7006
7007         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7008
7009 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7010
7011         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7012         bug #895752 and a better fix for bug #716790
7013
7014 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7015
7016         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7017
7018 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7019
7020         * doc/sdccman.lyx: minor changes, minor changed
7021
7022 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7023
7024         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7025         which can't handle SDCC_NEWONEBYTEOPS,
7026         (geniCodeMultiply): removed conversion from mult to shift for pic14
7027         and pic16
7028
7029 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7030
7031         * src/hc08/gen.h,
7032         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7033         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7034         thus fixing bug #895406
7035
7036 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7037
7038         * device/lib/_modsint.c,
7039         * device/lib/_modslong.c: sign follows divisor only
7040         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7041         signs or signedness can be ignored
7042         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7043         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7044         added optimization for IFX,
7045         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7046         arguments;
7047         reenabled optimization for IFX, which was removed on 2004-01-11
7048         * src/SDCCast.h: added return type IFX
7049         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7050         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7051         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7052         SDCC_OLDONEBYTEOPS selects the old behaviour
7053         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7054         changed again and commented promotion rule
7055         * src/SDCCval.c (valDiv): promotion no longer necessary
7056         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7057         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7058         rewritten
7059         * support/regression/tests/onebyte.c: added
7060
7061 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7062
7063         * gen.c (genInline): reverted to old code for assemnling inline
7064         code because of bug reported James Chadd
7065
7066 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7067
7068         * ralloc.h: missing declarations from previous patch,
7069         seems that patch for ralloc.h was never applied, fixed
7070
7071 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7072            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7073
7074         * pcode.c,
7075         * pcode.h,
7076         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7077         indirect addressing. Marked FSR0 as deprecated
7078         * gen.c (pointerCode): commented out, not needed now
7079         (pic16_popGet2p): new MOVFF helper function
7080         (genGenPointerGet),
7081         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7082         (shiftRLong): removed duplicate debugging info
7083
7084 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7085
7086         * src/ds390/gen.c (genNearPointerGet),
7087         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7088         optimization with bits, but not bitfields.
7089         * src/ds390/ralloc.c (packRegisters),
7090         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7091
7092 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7093
7094         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7095
7096 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/SDCCsymt.h,
7099         * src/SDCCicode.c (operandFromSymbol),
7100         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7101         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7102         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7103         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7104         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7105         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7106         bug #892038
7107         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7108         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7109         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7110         * src/SDCCsymt.c (newSymbol),
7111         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7112         enumerator_list),
7113         * src/SDCCval.h,
7114         * src/SDCCval.c (newiList): fixed bug #885705
7115
7116 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7117
7118         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7119         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7120
7121 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7122
7123         * device/include/c8051f120.h,
7124         * device/include/c8051f300.h,
7125         * device/include/c8051f310.h: added/updated header files for Silicon
7126         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7127         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7128         in new section Submitting patches
7129
7130 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7131
7132         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7133         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7134         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7135         genGenPointerSet),
7136         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7137         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7138         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7139         genGenPointerSet),
7140         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7141         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7142         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7143         genGenPointerSet),
7144         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7145         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7146         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7147         genGenPointerSet): fixed bug #892400
7148         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7149         to eliminate build warnings.
7150         * src/SDCCast.c (processParms),
7151         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7152         fixed bug 751859
7153         * support/valdiag/valdiag.py: added GCC to the list of defines active
7154         when compiling with gcc
7155
7156 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7157
7158         * support/Util/SDCCerr.h,
7159         * support/Util/SDCCerr.c,
7160         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7161         with an incomplete type (fixed bug #883734)
7162         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7163
7164 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7165
7166         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7167
7168 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7169
7170         * src/SDCCast.c (decorateType),
7171         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7172         function pointer implementation
7173         * support/regression/tests/funptrs.c: added tests to verify both forms
7174         of function pointers work correctly. Added tests to verify parameters
7175         are passed in the correct order.
7176
7177 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7178
7179         * device.c (regCompare): registers are sorted by ascending
7180         address and increasing size,
7181         * main.c (_pic16_finaliseOptions): removed the declaration
7182         of compiler macro MCU. Now a macro of the format pic18fxxxx
7183         will be defined from the command line
7184
7185 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7186             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7187
7188         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7189         PCOP_RLCF was overwritten!
7190         * gen.c (genSkip): commented out calls to pic16_emitcode,
7191         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7192         * (genlshTwo),
7193         * (genRRC): added debugging info,
7194         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7195         overwritten while shifting,
7196         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7197         overwritten while shifting,
7198         * (AccLsh),
7199         * (AccRsh),
7200         * (shiftLLeftOrResult),
7201         * (shiftRLeftOrResult),
7202         * (shiftRLong),
7203         * (shiftLLong): Implemented with pic16_emitpcode
7204         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7205         * (genLeftShift): Fixed bug, operand for shift by variable always
7206         was "and"ed with 0x0f,
7207         * (genLeftShiftLiteral),
7208         * (genrshTwo),
7209         * (genRightShiftLiteral): added debugging info,
7210         * (genrshFour): added comment,
7211         * (genRightShift): determined signedness from operand "left"
7212         instead of "result"
7213
7214 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7215
7216         * src/SDCCicode.c (geniCodeParms),
7217         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7218         function pointers, fixed function pointer bugs #861242 and #861896
7219
7220 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7221
7222         * device/include/c8051f000.h,
7223         * device/include/c8051f120.h,
7224         * device/include/c8051f300.h: added header files for Silicon
7225         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7226
7227 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7228
7229         * src/SDCCast.c (processParams): added new type flow and restructured
7230         (gatherAutoInit): added new type flow
7231         (addCast): cosmetic changes
7232         (getLeftResultType): added new type flow for array indices, patch
7233         provided by Stas, see FR #877103
7234         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7235         array index patch by Stas
7236         * src/SDCCast.h: added prototype getResultTypeFromType()
7237         * src/SDCCval.h,
7238         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7239         * src/pic/glue.c (pic14emitStaticSeg),
7240         * src/pic16/glue.c (pic16emitStaticSeg),
7241         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7242         for initialization of symbols
7243         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7244         * support/Util/SDCCerr.h:
7245         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7246         * .version: bumped version number to 2.3.8
7247         * device/include/Makefile.in (install),
7248         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7249         avoid warnings
7250
7251 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7252
7253         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7254         Slade Rich fixed an optimization bug
7255         * src/pic/pcodepeep.c,
7256         * src/pic/pcoderegs.c
7257         * doc/Makefile (install): added test for directory
7258
7259 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7260
7261         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7262         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7263         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7264         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7265         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7266         * as/mcs51/asexpr.c (term),
7267         * as/hc08/asexpr.c (term): fixed bug #887146
7268
7269 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7270
7271         * src/z80/gen.c (genMult): handle single byte result product
7272         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7273         DUMMY_READ_VOLATILE (fixed bug #886367)
7274
7275 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7276
7277         * support/regression/tests/libmullong.c: fixed logic, on little endian
7278         hosts we ended without a mullong_wrapper()
7279
7280 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7281
7282         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7283         virus/worm forged address usage.
7284
7285 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7286
7287         Fixed promotion, it should be done on AST level:
7288         * src/SDCCast.c (addCast): added promotion to int
7289         (decorateType): updated call to upCast()
7290         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7291         usualUnaryConversions()
7292
7293 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7294
7295         * support/regression/tests/literalop.c (mulWrapper): Added a
7296         wrapper to remove integer overflow warnings.
7297
7298         * support/regression/tests/float_trans.c: Made work on host.
7299
7300         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7301         location of sz80.
7302
7303         * support/regression/generate-cases.py (main): Changed from inline
7304         to a main method.
7305
7306         * doc/Makefile (install): Changed to depth first to get rid of
7307         missing directory install warning.
7308
7309         * as/Makefile (install-doc): Made work on Mac.
7310
7311 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7312
7313         * src/SDCCast.c: added an additional type flow in decorateType() of
7314         opposite direction, see feature request #860006; it's enabled at runtime
7315         by setting the environment variable SDCC_NEWTYPEFLOW
7316         * src/SDCCast.h: changed prototype of decorateType()
7317         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7318         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7319         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7320         see feature request #877103
7321         * src/SDCCval.c: updated call of decorateType()
7322         (valBitwise): fixed bug #882876
7323         (valMinus): added promotion
7324         (valLogicAndOr): result is unsigned
7325         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7326         * src/SDCCsymt.c (computeType),
7327         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7328         must not cause an unsigned operation
7329         * src/pic/glue (pic14emitRegularMap),
7330         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7331
7332 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7333
7334         * src/pic/pcode.c (PCodeID): commented out left over debug code
7335
7336 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7337
7338         * support/valdiag/tests/overflow.c: added shift tests
7339         * src/pic/device.c,
7340         * src/pic/gen.c,
7341         * src/pic/gen.h,
7342         * src/pic/glue.c,
7343         * src/pic/main.c,
7344         * src/pic/pcode.c,
7345         * src/pic/pcode.h,
7346         * src/pic/pcodepeep.c,
7347         * src/pic/pcoderegs.c,
7348         * src/pic/ralloc.c,
7349         * src/pic/ralloc.h: applied patch from Slade Rich;
7350         added support for multiple code pages and multiple RAM banks on the
7351         PIC 14 port. The ASM files now no longer simply assume all the
7352         code / RAM are in the same page / bank. This means the linker can
7353         safely allocate code/RAM of separate ASM files to different pages/banks.
7354         * doc/sdccman.lyx: added Slade's tips
7355         * src/mcs51/peeph.def: fixed bug #880768
7356
7357 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7358
7359         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7360         * src/SDCCast.c (decorateType): fixed bug #880197
7361
7362 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7363
7364         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7365         getopt.h.
7366
7367         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7368         strtof is not part of C89 and isn't included with Mac OS X.
7369
7370 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7371
7372         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7373         shiftL2Left2Result): fixed bug #879326
7374         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7375         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7376         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7377         address fetch for clr instruction
7378         * device/lib/hc08/_mulint.c: created optimized assembly version
7379         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7380
7381 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7382
7383         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7384         proposed in FR #877103
7385
7386 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7387
7388         * src/SDCCval.c (cheapestVal): added missing checks
7389         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7390         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7391
7392 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7393
7394         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7395         equal operands
7396
7397 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7398
7399         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7400         loaded with the linker search paths (-L arguments) and the libraries
7401         to be linked with the current source (-l arguments). Changes
7402         currently will affect only the pic16 port.
7403         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7404         include path the port specific paths and port specific libraries,
7405         * gplink command now contains the $3 argument,
7406         * src/pic16/device.h,
7407         * src/pic16/device.c,: structure PIC_device is made public and
7408         renamed to PIC16_device, the same for variable Pics which is renamed
7409         to Pics16. Updated all references to them.
7410         * src/pic16/glue.c (pic16glue): corrected bug with code
7411         initialization which bypassed the variable initializations block.
7412
7413         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7414         COMPILE_FLAGS and added the --nostdinc option
7415
7416 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7417
7418         * device/include/mc68hc908jb8.h: Register defs for another member
7419         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7420
7421 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7422
7423         Documenting changes from previous commits.
7424         * configure.in (version 1.56),
7425         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7426         when generating output files to configure the pic16 library,
7427         but now I've commented it out, since gputils aren't installed in the
7428         SF compile farm, so library won't compile
7429
7430         * device/lib/Makefile.in (version 1.56): initially I've added in
7431         target 'all' the prerequestive 'model-pic16' so it compiled the
7432         pic16 library, but now I've commented it out for the same reasons
7433         above,
7434         * added targets 'model-pic16' and 'objects-pic16' to compile the
7435         library
7436         * added target 'port-specific-objects-pic16' to handle the
7437         generated libraries and copy them into the build/ directory
7438         * added target 'clean-intermediate-pic16' to clean intermediate
7439         files into pic16 directory
7440         * in target 'installdirs' added line to create directory pic16 in
7441         the installation path
7442
7443         * device/include/Makefile.in (version 1.11): in target 'install'
7444         added lines to copy all header files to installation path,
7445         * in target 'installdirs' added line create directory for pic16
7446         headers in the installation path
7447
7448 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7449
7450         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7451          a function call
7452
7453 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7454
7455         * configure,
7456         * device/lib/configure.in,
7457         * device/lib/configure: fixed for autoconf 2.57
7458
7459 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7460
7461         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7462         option so that it actually works. Made it specific to the z80, since
7463         the gbz80 doesn't have these kinds of I/O ports.
7464
7465 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7466
7467         * device/include/z180.h,
7468         * device/lib/_memcpy.c,
7469         * device/lib/_memmove.c,
7470         * device/lib/_mulint.c,
7471         * device/lib/ser_ir.c,
7472         * device/lib/ser_ir_cts_rts.c,
7473         * device/lib/_strcmp.c,
7474         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7475         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7476         portmode; added deprecation warning for bank= and protmode= forms.
7477         Also, guard against buffer overflow.
7478         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7479
7480 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7481
7482         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7483         changed interrupt vector table generation to only emit declared vectors.
7484         * device/include/Makefile.in: added missing backslash
7485         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7486
7487 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7488
7489         Mainly changes to support compilation of the device libraries
7490         * src/pic16/device.c: stack is allocated via symbol and not
7491         via literal number. The symbol is placed in the corresponding
7492         position of the data ram
7493         * (pic16_dump_section): relocatable and absolute uninitialized
7494         data are now emitted in sorted order to reduce section naming,
7495         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7496         weren't marked as being in the access bank,
7497
7498 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7499
7500         Added portion of GNU PIC Library under the directory
7501         device/include/pic16 and device/lib/pic16. These files
7502         contain the declarations of SFRs for the PIC18Fxx2 devices.
7503         The directory is initialized via configure from toplevel.
7504
7505 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7506
7507         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7508         the spilllocations to be compared correctly
7509
7510 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7511
7512         * src/SDCCast.c (decorateType): fixed bug introduced today
7513
7514 2004-01-12  Borut Razem <borut.razem AT siol.net>
7515
7516         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7517         doc/sdccman.lyx: upper case pragmas are deprecated
7518
7519 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7520
7521         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7522         in simpler and even better code
7523
7524 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7525
7526         * src/SDCCicode.c (operandOperation): fixed bug #874819
7527         * src/SDCCast.c (decorateType): fixed
7528         char foo (unsigned long ul) { return ul > 0; }
7529
7530 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7531
7532         * doc/sdccman.lyx: Moved and added some sections, small changes
7533         all over. Telling LaTeX to be less strict with word spacing
7534         to better keep the right margin. Changed some notes about
7535         maintainance of the ports in section 3.2.1 - is it OK like this?
7536
7537 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7538
7539         SDCC source changes:
7540         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7541         convilong): modified to inform the pic16 port that builtin functions
7542         are external
7543
7544         PIC16 PORT specific changes:
7545         * src/pic16/device.c pic16_dump_equates() added,
7546         processor registers declared internally by the port are emitted in
7547         the translation as equates,
7548         * src/pic16/gen.c: inline code is passed unprocessed to the
7549         translation,
7550         * (pic16_popGetLit2): fnuction modified to take second operand as
7551         pCodeOp pointer and not as literal,
7552         * (popRegFromIdx): prefixed with pic16_,
7553         * (pic16_popCombine2): modified to receive already allocated pCode
7554         operands,
7555         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7556         * (genFunction): initializes local stack frame and pushes on stack
7557         all the registers used by this function,
7558         * (genEndFunction): restores all registers from stack and restores
7559         stack frame,
7560         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7561         improvements,
7562         * (pic16glue): changed the program startup sequence,
7563         * added new dbName code 'A' for functions placed in absolute section
7564         * src/pic16/main.c: added function attribute _naked,
7565         * added pragma 'code' to place a fnuction at an absolute address,
7566         * added command line arguments --debug-ralloc and --pcode-verbose,
7567         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7568         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7569         * (pic16_newpCodeOpLit2): modified to take the second operand as
7570         pCodeOp pointer,
7571         * (pic16_printpBlock): modified to emit each function in a separate
7572         section,
7573         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7574         UPPER for immediate operands,
7575         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7576         instruction,
7577         * src/pic16/peeph.def: all peepholes with movff are commented out,
7578         because there is a problem in the pcode peep optimizer,
7579         * src/pic16/ralloc.c: the register allocator can now reuse local
7580         function symbols for another function. This saves register usage.
7581         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7582
7583         Added file src/pic16/NOTES with information about program writing on
7584         the current port version.
7585
7586 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7587
7588         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7589         and peephole 252 (array access)
7590
7591 2004-01-09  Borut Razem <borut.razem AT siol.net>
7592
7593         * src/SDCCmain.c : fixed #872250: -l command line defined library
7594           files are scanned before standard library files
7595
7596 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7597
7598         * src/SDCCast.c (decorateType): fixed bug #874046
7599
7600 2004-01-09  Borut Razem <borut.razem AT siol.net>
7601
7602         * support/scripts/sdcc.nsi: remove previous installation
7603
7604 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7605
7606         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7607         bytes for last interrupt vector (mcs51)
7608         * sdcc.spec: fixed typo
7609
7610 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7611
7612         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7613         gen51Code): more efficient parameter receive for --model-large
7614         ("bug" #845294)
7615
7616 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         * src/ds390/main.c,
7619         * src/z80/main.c: added missed needLinkerScript flags (more than
7620         one port structure defined in these file)
7621         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7622         bug #795325
7623
7624 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7625
7626         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7627         * src/port.h: added flag needLinkerScript in port->linker
7628         structure to inform whether to create a .lnk file or not,
7629         * src/avr/main.c,
7630         * src/ds390/main.c,
7631         * src/hc08/main.c,
7632         * src/mcs51/main.c,
7633         * src/pic/main.c,
7634         * src/pic16/main.c,
7635         * src/xa51/main.c,
7636         * src/z80/main.c: changed appropriately to configure
7637         needLinkerScript flag
7638         * src/pic/gen.c,
7639         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7640         * src/pic/glue.c: added variable udata_section_name to
7641         override default uninitialized data segment definition for
7642         devices only with SHAREBANK memory (reported from Erik Epetrich)
7643         * (pic14emitOverlay): modified to emit a commented overlay segment
7644         directive when no overlay data exist
7645         * (picglue): modified to emit uninitialized data segment
7646         according to udata_section_name
7647         * src/pic/main.c (_pic14_parseOptions): added command line
7648         options --udata-section-name=[name] to override default
7649         udata definition name
7650         * modified _linkCmd and _asmCmd to include compiler passed
7651         arguments via -W option
7652         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7653         object file from '.rel' to '.o' in port->linker structure,
7654         changed size of fptr from 2 to 3 in port structure
7655
7656 2004-01-07  Borut Razem <borut.razem AT siol.net>
7657
7658         * support/scripts/sdcc.nsi: update PATH
7659         * support/scripts/sdcc.ico: craeted
7660
7661 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         * device/include/Makefile.in: fix install
7664         * doc/Makefile: fix install
7665
7666 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7667
7668         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7669         in bug #860505
7670         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7671         how the function variable allocation summary is displayed; also
7672         include information about variables allocated to the overlay
7673         segment
7674
7675 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7676
7677         * as/mcs51/lkmain.c: Help about -Y option
7678         * as/mcs51/lkarea.c: Fixed gcc warnings
7679
7680 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7681
7682         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7683         fixed warning
7684         * support/valdiag/tests/overflow.c: added
7685         * src/SDCCast.c (decorateType),
7686         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7687         LEFT_OP (left shift)
7688
7689 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7690
7691         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7692         (default behaviour).
7693
7694 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7695
7696         A python script to validate compiler diagnostic messages. It can be
7697         used to verify that sdcc complains about bad c source code and
7698         gives a good location of the error.
7699         * support/valdiag/Makefile,
7700         * support/valdiag/valdiag.py,
7701         * support/valdiag/tests/*
7702
7703 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7704
7705         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7706         * src/SDCCsymt.c (newEnumType),
7707         * src/SDCCsymt.h
7708         * support/Util/SDCCerr.c,
7709         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7710         enum related bugs.
7711         * support/regression/tests/enum.c: added test for enum values that
7712         require at least 2 bytes of storage.
7713
7714 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7715
7716         * src/common.h: added ifndef/define/endif macros
7717         around the header file.
7718         Bug reported from Jesus Calvino-Fraga
7719
7720 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7721
7722         * sdcc.spec: updated
7723         * device/include/Makefile.in: don't install CVS directories
7724         * device/lib/Makefile.in: added removal of CVS directories after install
7725         * doc/Makefile: fixed install, added local_icons
7726         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7727         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7728         * src/ds390/gen.c (genRightShift): fixed bug #870788
7729         * src/SDCCast.c (decorateType): fixed bug #870781
7730
7731 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7732
7733         PIC16 port related changes:
7734         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7735         added variable stackPos,
7736
7737         * gen.c: genCall, assignResultValue: added support for
7738         pushing/retrieving function parameters to/from stack,
7739         genFunction,genEndFunction: setup stack frame for the
7740         generated function,
7741         genAddrOf: will be changed according to bug 863624
7742
7743         * added files genutils.c and genutils.h which contain gen*
7744         debugged and optimised functions extracted from gen.c
7745
7746         * glue.c: added variable 'externs' which holds extern symbols,
7747         pic16emitRegularMap: is modified to properly handle relocatable
7748          symbols under the new scheme,
7749         pic16createInterruptVect: is modified
7750         pic16printPublics: is modified to emit 'global' assembler directives,
7751         added pic16_printExterns to print extern symbols,
7752         pic16glue: initializes stack/frame pointer in the beginning of
7753         the assembly output. Temporary hack, will be corrected later,
7754         because gplink yet does not support stack and SDCC does not
7755         yet support a type of crt0.o object to create the final binary.
7756
7757         * Removed many lines that contain 8051 legacy code.
7758         * The code is finally placed under a 'code' directive.
7759         * Added port specific options.
7760
7761         * _process_pragma: simplified since now we do not need *special*
7762         include file to define SFR registers. But a separate header
7763         will be needed. This will be developed later.
7764         * _pic16_parseOptions: added, parses port specific options:
7765         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7766         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7767         --preplace-udata-with=
7768
7769         * _pic16_setDefaultOptions: modified to initialize section names,
7770         but hack is temporarly out of order since it needs improvement.
7771         * _pic16_genAssemblerPreamble: configuration words are emitted by
7772         their address instead of their name. This part is incomplete and
7773         supports only the 18Fxx2 devices. Other devices will emit an error
7774         during assembly since they do not contain the same set of config
7775         registers
7776         * _pic16_genIVT: is modified,
7777
7778         * pcode.c: added definitions for some hardware registers that are needed
7779         for stack support
7780         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7781         All PCI entries are updated. Now LFSR is supported.
7782         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7783         * added pic16_newpCodeOpLit2 to support instructions with
7784         two literal arguments
7785         * pic16_pCode2str: corrected code that emits assembler instructions
7786         with two literal operands and those that have an access bit modifier
7787         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7788         this fixes a bug which caused some labels to be lost, when an
7789         assembler directive was added, i.e. banksel,
7790         * pic16_FixRegisterBanking: improved logic that causes the insertion
7791         of bank switching,
7792         * InlineFunction: functions that are called once, are not any more
7793         inlined. This can be a port option in the future,
7794
7795         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7796
7797         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7798         hold the corresponding uninitialized symbols,
7799         * pic16_allocProcessorRegister: registers have explicit marked the
7800         accessBank field,
7801         * pic16_allocInternalRegister: registers are explicit marked as
7802         not used,
7803         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7804         processing list, so bit registers were lost,
7805         *
7806
7807         * ralloc.h: added field 'accessBank' and original symbol operand
7808         in register definition,
7809         * removed the field isMapped from register definition,
7810
7811         ** Several functions have been removed from various sources:
7812         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7813         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7814         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7815         pic16_assignRelocatableRegisters
7816
7817         ** others have been introduced:
7818         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7819         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7820
7821 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7822
7823         * support/scripts/inc2h.pl: changed definition of BIT_AT
7824         to emit 'sbit at' instead of 'bit at'. This was a request.
7825
7826         PIC16 port related preliminary changes:
7827         * gen.c: prefixed function popRegFromString with
7828         pic16_ and all references to it corrected
7829         * pcode.c: all pic16_pc_* hardware registers prefixed
7830         with underscore (_),
7831         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7832         * ralloc.c: newReg(): when register is REG_SFR then
7833         set address to rIdx,
7834         pic16_allocProcessorRegister(): marks register wasUsed=0
7835         pic16_writeUsedRegs(): added a call to assign processor
7836         registers via pic16_assignFixedRegisters
7837
7838 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7839
7840         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7841         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7842         variables in unused register banks.  Also the SSEG is placed
7843         wherever there is enough space for it, and IDATA can be anywhere
7844         in internal RAM.  For now compile using -Wl-Y[stack_size].
7845         The mem file is different for this option as well, since it
7846         makes no sense of talking about DSEG lenght.
7847
7848 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7849
7850         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7851         in certain cases, e.g. when ROM assignment, patch provided
7852         from Albert den Haan.
7853
7854 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7855
7856         Many signedness and type propagation fixes:
7857         * src/SDCCicode.c: made geniCodeCast() static
7858         replaced SPEC_ by IS_ (cosmetic)
7859         (operandOperation): fixed div and mod operation
7860         (usualBinaryConversions): added support for promotion of char
7861         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7862         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7863         (geniCodeAdd): an array index will stay unsigned, even if promoted
7864         from char to int
7865         (geniCodeArray): ditto
7866         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7867         * src/SDCCsymt.c (computeType): added more support for char;
7868         promotion of char is selectable by promoteCharToInt, fixed signedness
7869         for all cases
7870         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7871         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7872         * src/SDCCval (val*): replaced signedness calculation by
7873         computeType()
7874         rearranged if-branches (cosmetic)
7875         (valShift): added warning W_SHIFT_CHANGED
7876         (valCompare): fixed problem with different types
7877         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7878         * support/regression/tests/literalop.c: added many cases
7879         * support/regression/tests/ast_constant_folding.c: changed finally to
7880         'unsigned int'
7881         * .version: new year, new version: 2.3.7
7882         * src/SDCCmain.c (main): applied patch #866468
7883         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7884         provided by Scott Bronson
7885         * doc/sdccman.lyx: updated documentation for sdcdb
7886         updated and added chapter tips
7887
7888 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7889
7890         * src/SDCCsymt.h: missing from yesterday's commits
7891
7892 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7893
7894         * src/SDCC.y (struct_or_union_specifier),
7895         * support/Util/SDCCerr.c,
7896         * support/Util/SDCCerr.h: verify that struct & union tags are used
7897         as declared.
7898
7899 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7900
7901         * src/SDCCglobl.h: missing from yesterday's commits
7902
7903 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7904
7905         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7906         sft_attributes, struct_declaration, parameter_declaration,
7907         type_name, start_block, declaration_list),
7908         * src/SDCC.lex (check_type): support redefinition of typedef names
7909
7910 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7911
7912         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7913         aligned xdata arrays. Erik helped me with the if clause.
7914
7915 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7916
7917         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7918         warning
7919
7920 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7921
7922         * src/SDCCast.h,
7923         * src/SDCCast.c (newAst_),
7924         * src/SDCCicode.h,
7925         * src/SDCCicode.c (ast2iCode, newiCode),
7926         * src/SDCCglobl.h,
7927         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7928         expr, statement, expression_statement, selection_statement,
7929         iteration_statement, expr_opt, jump_statement): foundation for tracking
7930         sequence points
7931         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7932         point code too)
7933
7934 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7935
7936         * support/Util/SDCCerr.c,
7937         * src/SDCCast.h,
7938         * src/SDCCast.c (createCase, createDefault, decorateType),
7939         * src/SDCClabel.c (labelUnreach),
7940         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7941         to error messages.
7942         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7943         (with thanks to Stas Sergeev)
7944         * device/include/time.h,
7945         * device/lib/time.c (CheckTime): suppress unreachable code warning
7946
7947 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7948
7949         * src/SDCCast.c (createIvalCharPtr),
7950         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7951         bug #753752)
7952         * support/regression/tests/nullstring.c: tests for these two bugs
7953
7954 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7955
7956         * support/Util/SDCCerr.h,
7957         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7958         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7959         about storage class and 'at' used inside struct or union
7960         * src/SDCCBBlock.c (iCodeFromeBBlock),
7961         * src/SDCCcse.c (ifxOptimize),
7962         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7963         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7964         printIval, emitStaticSeg, emitOverlay),
7965         * src/SDCClabel.c (deleteIfx),
7966         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7967         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7968         gatherAutoInit, processParms),
7969         * support/Util/SDCCerr.h,
7970         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7971         reporting for post-parse errors.
7972
7973 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7974
7975         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7976         implicit casts via union; they don't work on big endian systems
7977         (possible fix for bug #861138)
7978
7979 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7980
7981         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7982         * src/mcs51/main.c: fixed the fix for bug #737001
7983
7984 2003-12-15  Borut Razem <borut.razem AT siol.net>
7985
7986         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7987
7988 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7989
7990         * support/makebin/makebin.c: put output in binary mode
7991
7992 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7993
7994         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
7995         xdata and data memory on startup. Set the environment variable
7996         SDCC_NOGENRAMCLEAR to disable this.
7997         * src/mcs51/peephole.def,
7998         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
7999         (allows non-interrupt and interrupt code to safely compete for a resource
8000         without the non-interrupt code having to disable interrupts)
8001
8002 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8003
8004         * src/SDCCicode.c (geniCodeAdd),
8005         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
8006         with valFromType if type might be a pointer and host is big endian).
8007         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8008         types, not just integer types.
8009         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8010         multiply defined with mismatching "at" address.
8011
8012 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8013
8014         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8015         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8016         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8017         with embedded nulls (fixed bug #753752)
8018
8019 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8020
8021         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8022         Apparently this did not see much testing (endless loop)
8023
8024 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8025
8026         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8027
8028 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8029
8030         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8031         gracefully handle NULL memmap pointers
8032
8033 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8034
8035         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8036         instead of deleting the iCode when an operand is volatile
8037         * src/z80/gen.c (genDummyRead),
8038         * src/mcs51/gen.c (genDummyRead),
8039         * src/ds390/gen.c (genDummyRead),
8040         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8041         not just IC_RIGHT
8042         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8043         * src/SDCC.y: fixed bug #850420
8044
8045 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8046
8047         Applied z80 i/o port patch from Peter Townson and fixed some operators
8048         to better handle operands in A register.
8049         * device/include/z180.h
8050         * src/SDCC.y
8051         * src/SDCCglue.c
8052         * src/z80/gen.c
8053         * src/z80/gen.h
8054         * src/z80/main.c
8055         * src/z80/peeph-z80.def
8056         * src/z80/peeph.def
8057         * src/z80/z80.h
8058
8059 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8060
8061         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8062
8063 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8064
8065         * device/lib/hc08/_mullong.c: Removed extra #endif
8066
8067 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8068
8069         * sim/ucsim/hc08.src/inst.cc,
8070         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8071         carries from x to h
8072         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8073         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8074         * device/include/stdarg.h: fixed varargs for hc08
8075         * device/lib/Makefile.in,
8076         * device/lib/hc08/Makefile,
8077         * device/lib/hc08/_mulint.c,
8078         * device/lib/hc08/_mullong.c: fixed some endian problems
8079
8080 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8081
8082         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8083         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8084         * device/lib/_gptrget.c,
8085         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8086
8087 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8088
8089         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8090         * src/SDCCast.c (astErrors): fixed bug #846007
8091         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8092
8093 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8094
8095         * src/SDCCast.c (decorateType): disabled a transformation I added in
8096         revision 1.188 (access to fields of a structure at an absolute address);
8097         it breaks with bitfields, extern declarations, and gcse analysis.
8098         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8099         could be assigned through a pointer, so don't complain.
8100         * src/SDCCast.c (astErrors),
8101         * src/SDCCast.h,
8102         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8103
8104 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8105
8106         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8107         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8108         output of __config directives, since gpasm now supports them
8109         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8110         pre-processor macro, i.e. -DMCU=p18f452
8111         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8112         and modified to handle 'cast' icode similarly to '=' icode
8113         * src/pic16/device.h (typedef struct PIC_device): added field
8114         'extMIface' to indicate that chip has external memory interface
8115         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8116         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8117         18F8720
8118
8119 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8120
8121         * src/SDCC.y (pointer): fixed bug #846006
8122         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8123         * src/SDCCast.c (decorateType): fixed bug #846009
8124         * src/ds390/peeph.def,
8125         * src/ds390/gen.c (genAnd, genOr),
8126         * src/mcs51/peeph.def,
8127         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8128
8129 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8130
8131         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8132         * src/SDCCdflow.c
8133         * src/SDCCcse.c
8134         * src/SDCCcse.h
8135         * src/SDCCBBlock.h
8136         * src/SDCCBBlock.c
8137
8138 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8139
8140         fixed bug #845089
8141         * src/SDCCbitv.h,
8142         * src/SDCCbitv.c: added function to free a bitvector
8143         * src/SDCClrange.h,
8144         * src/SDCClrange.c: added function to recompute the liveranges
8145         * src/avr/ralloc.c,
8146         * src/ds390/ralloc.c,
8147         * src/hc08/ralloc.c,
8148         * src/mcs51/ralloc.c,
8149         * src/pic/ralloc.c,
8150         * src/pic16/ralloc.c,
8151         * src/xa51/ralloc.c,
8152         * src/z80/ralloc.c: recompute the liveranges after register packing
8153
8154 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8155
8156         * src/SDCCloop.c (newInduction): fixed bug #845630
8157
8158 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8159
8160         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8161         inadvertantly left behind from my 2003-11-12 change
8162
8163 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8164
8165         Updated headers I neglected to commit yesterday.
8166         * src/SDCClrange.h,
8167         * src/SDCCicode.h
8168
8169 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8170
8171         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8172         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8173         * src/SDCCopt.c (eBBlockFromiCode),
8174         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8175         the creation of the key hash table from the sequencing so it can be used
8176         earlier (for some GCSE bug fixes still pending)
8177
8178 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8179
8180         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8181         * support/regression/tests/addsub.c: testing genPlus shortcut
8182
8183 2003-11-15  Borut Razem <borut.razem AT siol.net>
8184
8185         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8186
8187 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8188
8189         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8190         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8191         ordering is immaterial.
8192         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8193
8194 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8195
8196         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8197         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8198         (SIGSEV) of bug #840381
8199         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8200         unlink new file before rename if new and old filenames are the same)
8201
8202 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8203
8204         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8205         uninitialized variables) for the mcs51. Set environment variable
8206         SDCC_GENRAMCLEAR to test.
8207         xdata initialization slightly shorter
8208
8209 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8210
8211         * src/SDCCsymt.h,
8212         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8213         #838241 & 780691 (basicly the same bug)
8214         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8215         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8216
8217 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * src/SDCCmain.c (linkEdit): "fix" #834252
8220
8221 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8222
8223         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8224         * src/SDCCast.h,
8225         * src/SDCC.y: fixed bug #819403
8226
8227 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8228
8229         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8230         the reentrant attribute.
8231         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8232         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8233         simulation
8234         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8235         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8236         erroneously reduced to a literal.
8237         * src/hc08/ralloc.c (packRegisters, rematStr),
8238         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8239         some cases
8240
8241 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8242
8243         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8244         * doc/sdccman.lyx: changed from 'article' to 'book'
8245         * doc/Makefile: readded test_suite_spec and cdbfileformat
8246
8247 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8248
8249         * device/include/stdlib.h: include malloc.h to comply with ANSI
8250         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8251
8252 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8253
8254         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8255         * doc/clean.mk: also remove *.out files
8256         * doc/sdccman.lyx: some additions, larger top/bottom margins
8257
8258 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8259
8260         * src/SDCC.y: fixed bug #837365
8261         * support/regression/tests/bitopcse.c
8262         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8263         a symbol (might be valop instead)
8264         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8265         * device/lib/clean.mk: added hc08 to the cleaning list
8266
8267 2003-11-04  Borut Razem <borut.razem AT siol.net>
8268
8269         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8270           made 2003-11-04
8271         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8272           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8273           malloc is declared in standard stdlib.h
8274
8275 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8276
8277         * device/lib/hc08/Makefile: need to clean .rel not .o files
8278         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8279
8280 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8281
8282         * src/port.h,
8283         * src/hc08/main.c,
8284         * src/mcs51/main.c,
8285         * src/ds390/main.c,
8286         * src/z80/main.c,
8287         * src/avr/main.c,
8288         * src/pic/main.c,
8289         * src/pic16/main.c,
8290         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8291         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8292         tests (which uses the port's oclsExpense function)
8293         * src/SDCC.y,
8294         * src/SDCCast.c,
8295         * src/SDCCicode.c,
8296         * src/hc08/gen.c,
8297         * src/ds390/gen.c,
8298         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8299
8300 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8301
8302         * src/SDCCcse.c (ifxOptimize),
8303         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8304         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8305         deleting the IFX iCode.
8306         * src/hc08/ralloc.c: reduced unneeded slocs
8307         * src/hc08/gen.c: fixed bug in asmopToBoolean
8308
8309 2003-11-04  Borut Razem <borut.razem AT siol.net>
8310
8311         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8312           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8313           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8314           transferred to configure
8315
8316 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8317
8318         Use headers defined in the C[++] standards:
8319         * sim/ucsim/gui.src/serio.src/fileio.cc
8320         * sim/ucsim/gui.src/serio.src/frontend.cc
8321         * sim/ucsim/gui.src/serio.src/main.cc
8322         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8323         * support/Util/NewAlloc.c
8324         * as/hc08/lklibr.c
8325         * as/mcs51/lklibr.c
8326         * as/z80/aslist.c
8327         * as/z80/assym.c
8328
8329 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8330
8331         * Added MSVC projects for hc08 assembler and linker:
8332         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8333         /as/hc08/link_hc08.dsp
8334
8335 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8336
8337         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8338
8339 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8340
8341         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8342
8343 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8344
8345         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8346
8347 2003-10-31  Borut Razem <borut.razem AT siol.net>
8348
8349         * support/cpp2/cpplib.h,
8350           support/cpp2/cpplib.c,
8351           support/cpp2/cpplex.c,
8352           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8353           to switch _asm block preprocessing on / off. Default is
8354           #pragma preproc_asm +
8355
8356 2003-10-31  Borut Razem <borut.razem AT siol.net>
8357
8358         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8359           when outputting comment blocks (when executed with -C option) and
8360           _asm (SDCPP specific) blocks
8361
8362 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8363
8364         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8365
8366 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8367
8368         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8369
8370 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8371
8372         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8373         * src/SDCCast.c (decorateType): fixed bug #832664
8374
8375 2003-10-31  Borut Razem <borut.razem AT siol.net>
8376
8377         * support\cpp2\cpplex.c: fixed for SDCPP:
8378           comments(when executed with -C option) and _asm blocks
8379           were included even if they where in skipped #if block.
8380           Applied solution from GCC cpp 3.3.2
8381
8382 2003-10-31  Borut Razem <borut.razem AT siol.net>
8383
8384         * src/SDCC.lex: sdcc now understands both formats:
8385           '# <line_number> <file_name>' and
8386           '#line <line_number> <file_name>'
8387         * support/cpp2/cppmain.c: sdcpp now generates the standard
8388           '# <line_number> <file_name>' instead of former
8389           '#line <line_number> <file_name>'
8390
8391 2003-10-30  Borut Razem <borut.razem AT siol.net>
8392
8393         * support/cpp2/cpphash.h,
8394         * support/cpp2/cpplib.h
8395         * support/cpp2/cpplex.c,
8396         * support/cpp2/cppmain.c,
8397         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8398
8399 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8400
8401         Fixed a number of problems revealed by bug #827883.
8402         * src/SDCCloop.c (loopInvariants): Spill location of the
8403         result operand should be recomputed if extracted from
8404         a loop. Also, don't extract assignments of an iTemp
8405         from a literal.
8406         * src/SDCCast.c (isConformingBody): loop reversal should
8407         not occur if the control variable is involved with a
8408         relational operator.
8409
8410 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8411
8412         * .version: bumped to 2.3.6 to reflect the big improvements
8413         made by Erik and Klaus. Thanks!
8414
8415 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8416
8417         Replaced the livrange code.
8418         * src/SDCClrange.c: added new LR code
8419         * src/SDCCloop.c,
8420         * src/SDCCBBlock.h: removed remainig parts from old LR code
8421         * src/ds390/ralloc.c,
8422         * src/ds390/gen.c: minor fixes to make it work with new code
8423
8424 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8425
8426         * as/hc08/asm.h,
8427         * as/hc08/lkrloc.c,
8428         * src/hc08/gen.c,
8429         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8430         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8431         (tweaked fix for bug #818696)
8432
8433 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8434
8435         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8436
8437 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8438
8439         * src/SDCCmain.c,
8440         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8441         * src/mcs51/gen.c (gencjneshort),
8442         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8443         more efficient (per Scott Bronson's suggestion)
8444
8445 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8446
8447         Extended the semantics of the critical keyword to include
8448         individual statements. See RFE #827755 and #799831
8449         * src/SDCC.y
8450         * src/SDCCicode.c
8451         * src/SDCCopt.c
8452         * src/SDCCast.c
8453         * support/Util/SDCCerr.c
8454         * support/Util/SDCCerr.h
8455         * src/mcs51/gen.c
8456         * src/ds390/gen.c
8457         * src/hc08/gen.c
8458
8459 2003-10-19  Borut Razem <borut.razem AT siol.net>
8460
8461         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8462
8463 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8464
8465         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8466         Fixed bug #818696
8467         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8468         and predecrement operand is displayed
8469
8470 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8471
8472         * src/SDCCval.c (valMinus): fixed bug #826041
8473
8474 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8475
8476         Some hc08 related updates that I missed earlier
8477         * sim/ucsim/stypes.h
8478         * support/regression/ports/hc08/spec.mk
8479
8480 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8481
8482         New target "hc08" for the Motorola 68hc08 family of micros
8483
8484         * configure
8485         * configure.in
8486         * Makefile
8487         * src/hc08/*
8488         * src/SDCCmain.c
8489         * src/port.h
8490         * sim/ucsim/hc08.src/*
8491         * sim/ucsim/configure.in
8492         * src/ucsim/configure
8493         * sim/ucsim/packages_in.mk
8494         * as/hc08/*
8495         * as/Makefile
8496         * device/include/mc68hc908qy.h
8497         * device/lib/hc08/*
8498         * device/lib/Makefile.in
8499         * support/regression/ports/hc08/*
8500         * support/regression/Makefile
8501
8502 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8503
8504         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8505         regression test
8506         * src/ds390/gen.c (genCast): fixed bug #821957
8507
8508 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8509
8510         * device/lib/logf.c: "fixed" overlay bug
8511         * support/regression/ports/host/spec.mk: added m library
8512         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8513         * support/regression/tests/float_trans: added (for Eric)
8514
8515 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8516
8517         * src/mcs51/gen.c (genCpl): fixed bug
8518         http://sf.net/mailarchive/message.php?msg_id=6263915
8519
8520 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8521
8522         * src/SDCCast.c (decorateType): added extended constant folding
8523         * src/SDCCsymt.c (computeType): cleanup
8524         * src/SDCCval.c (valShift): minor optimization
8525         * support/regression/tests/ast_constant_folding.c: added
8526
8527 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8528
8529         * src/SDCCmain.c: removed some unintended changes
8530
8531 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8532
8533         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8534         * src/z80/gen.c: fixed part of bug #817589
8535         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8536
8537 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8538
8539         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8540         * src/SDCCcflow.c
8541         * src/SDCCcse.c
8542         * src/SDCCdflow.c
8543         * src/SDCClabel.c
8544         * src/SDCClrange.c
8545         * src/SDCCmem.c
8546         * src/SDCCopt.c
8547         * src/SDCCpeeph.c
8548         * src/SDCCset.c
8549         * src/avr/ralloc.c
8550         * src/ds390/ralloc.c
8551         * src/izt/ralloc.c
8552         * src/mcs51/ralloc.c
8553         * src/pic/ralloc.c
8554         * src/pic16/ralloc.c
8555         * src/xa51/ralloc.c
8556         * src/z80/ralloc.c
8557         * src/z80/gen.c: removed unused label "release:"
8558
8559 2003-10-06  Borut Razem <borut.razem AT siol.net>
8560
8561         * src/SDCC.lex: removed definition of unused variables
8562           save_optimize and save_options
8563
8564 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8565
8566         * clean.mk: removed '=' in "-maxdepth=1"
8567         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8568         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8569
8570 2003-10-06  Borut Razem <borut.razem AT siol.net>
8571
8572         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8573           my_unput() replaced by unput()
8574
8575 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8576
8577         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8578         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8579         type-punned pointer will break strict-aliasing rules"
8580         Old LR behaviour is again default; Klaus' LR can be choosen by
8581         defining the environment variable LRKLAUS
8582         * src/SDCCBBlock.h
8583         * src/SDCCloop.c
8584         * src/SDCClrange.c
8585         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8586         * clean.mk: fixed removal of files in bin/CVS/
8587         * device/lib/clean.mk: fixed removal of directories small and large
8588         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8589         * src/SDCCicode.c,
8590         * src/SDCCval.c: removed superflous test for pedantic
8591
8592 2003-10-05  Borut Razem <borut.razem AT siol.net>
8593
8594         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8595           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8596           message "unmatched #pragma SAVE and #pragma RESTORE"
8597
8598 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8599
8600         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8601           assembly, critical functions, atomic, nojtbound)
8602
8603 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8604
8605         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8606         * src/SDCCBBlock.h
8607         * src/SDCCloop.c
8608         * src/SDCCloop.h
8609         * src/SDCClrange.c
8610
8611 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8612
8613         * src/z80/gen.h,
8614         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8615         * src/mcs51/gen.h
8616         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8617         * src/ds390/gen.h
8618         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8619         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8620         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8621
8622 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8623
8624         * src/z80/gen.c (genRet): fixed bug #524753
8625         * src/z80/gen.c (genCast): fixed internal error on cast from
8626         pointer to long
8627         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8628         fix for bug #477835 to the z80
8629         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8630         for tracking iCodes in the peephole optimizer for z80
8631
8632 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8633
8634         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8635         the other part of bug #814548
8636         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8637
8638 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8639
8640         * src/SDCCcse.c: fixed part of bug #814548
8641
8642 2003-09-28  Borut Razem <borut.razem AT siol.net>
8643
8644         * src/asm.c: rewrite of printILine() to use temporary file instead
8645           a pipe
8646         * src/xa51/main.c: commented out declaration of int rewinds
8647
8648 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8649
8650         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8651
8652 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8653
8654         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8655         * src/asm.c (printILine): Fixed bug #811015
8656
8657 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8658
8659         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8660         freeing.
8661
8662 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8663
8664         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8665         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8666         to correctly handle general case of AOP_PAIRPTR
8667         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8668
8669 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8670
8671         * src/mcs51/ralloc.c (fillGaps),
8672         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8673         register positioning bug)
8674
8675 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8676
8677         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8678
8679 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8680
8681         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8682         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8683         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8684         (ralloc doesn't intentionally do this now, but perhaps later)
8685         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8686         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8687         register positioning bugs (Fixed bug #762602 and #795325)
8688         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8689         (Fixed bug #808779)
8690         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8691         lines that --i-code-in-asm generates
8692
8693 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8694
8695         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8696         trying to fclose a FILE* that was already closed.
8697
8698 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8699
8700         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8701         of const struct should be treated as if const themselves)
8702
8703 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8704
8705         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8706
8707 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8708
8709         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8710         Unix (/n) and DOS (/r/n) line terminations.
8711
8712 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8713
8714         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8715         bug #613775
8716
8717 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8718
8719         * src/mcs51/gen.c (genFunction, genEndFunction),
8720         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8721         and restore of EA so that stack offsets to parameters are
8722         correct when using both critical and reentrant/stack-auto.
8723         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8724         size (can be triggered in error if sloc is shared between
8725         different sized objects)
8726         * device/include/float.h: fixed macros to explicitly use
8727         unsigned long where needed
8728
8729 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8730
8731         Feature req. 799831: added code to allow nesting of critical functions
8732         * src/mcs51/gen.c (genFunction, genEndFunction)
8733         * src/ds390/gen.c (genFunction, genEndFunction)
8734
8735 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8736
8737         * src/SDCCsymt.c (sclsFromPtr),
8738         * src/SDCCsymt.h,
8739         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8740         support for standard C idiom of memory mapped variables; for
8741         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8742         to xdata int at 0x1234 tempvar = 1.
8743         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8744         provided by Akiya ISHIDA
8745
8746 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8747
8748         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8749         * src/SDCCval.c (constVal): added reduction from int to char
8750         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8751         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8752         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8753         to ignore the sign
8754         * support/regression/tests/shifts.c: fixed
8755
8756 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8757
8758         * src/z80/gen.c (genXor): Fixed bug #805445
8759
8760 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8761
8762         Fixed bug #621531 (const & volatile confusion in the type chain).
8763         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8764         refer to the const or volatile state of the pointer itself.
8765
8766         * src/SDCCast.c
8767         * src/SDCCglue.c
8768         * src/SDCCicode.c
8769         * src/SDCCsymt.c
8770         * src/SDCCval.c
8771         * src/SDCC.y
8772         * src/SDCCsymt.h
8773         * src/pic/gen.c
8774         * src/pic/ralloc.c
8775         * src/pic16/gen.c
8776         * src/pic16/ralloc.c
8777         * support/regression/tests/const.c
8778
8779 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8780
8781         When checking for duplicated modules, use absolute paths
8782         instead of relative paths.  Files changed:
8783
8784         * as/mcs51/lklib.c
8785         * link/z80/lklib.c
8786
8787 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8788
8789         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8790
8791 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8792
8793         * device/include/string.h: added size_t typedef, changed
8794         prototypes to use size_t, eliminated separate reentrant and
8795         non-reentrant declarations, added _memmove declaration
8796         * device/lib/_memcpy.c: changed to use size_t instead of int,
8797         changed /4 to >>2 to avoid division library call
8798         * device/lib/_memcmp.c,
8799         * device/lib/_memset.c,
8800         * device/lib/_strncat.c,
8801         * device/lib/_strncpy.c,
8802         * device/lib/_strncmp.c: changed to use size_t instead of int
8803         * device/lib/_memmove.c: new file (fixed bug #772294)
8804         * device/lib/Makefile.in: added _memmove.c
8805         * device/lib/z80/asm_strings.s: fixed bug #772290
8806         * support/regression/tests/bitfields.c: attempt to fix host assertion
8807         failure on amd64-unknown-linux2.2
8808
8809 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8810
8811         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8812         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8813         * as/z80/asmain.c (main): fixed bug #801766
8814
8815 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8816
8817         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8818         compilers
8819
8820 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8821
8822         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8823         reported in bug #800609
8824
8825 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8826
8827         * Top header beautifications in src/pic16 directory:
8828           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8829           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8830           pcoderegs.h, ralloc.c, ralloc.h
8831         * main.c: added top header and GPL license notice
8832         * pcode.c: fixed the if-conditional warning
8833
8834 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8835
8836         * device/lib/_mullong.c: replaced int by short for gcc
8837
8838 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8839
8840         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8841         and JUMPTABLE iCodes properly now (worked by accident before)
8842         * src/mcs51/gen.c (leftRightUseAcc),
8843         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8844         iCode properly now. Use getSize instead of nRegs since a & b
8845         aren't part of the nRegs tally.
8846
8847 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8848
8849         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8850         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8851           before instructions that use the _STATUS register
8852
8853 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8854
8855         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8856         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8857         fetching of the pointer
8858         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8859         copied from genNearPointerSet()
8860         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8861         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8862         If they pop r0/r1 they must be called in the opposite order than aopOp().
8863         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8864         (resp. --stack-auto), prepared for --xstack
8865
8866 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8867
8868         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8869
8870 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8871
8872         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8873         these ports have their own __sdcc_external_start()
8874
8875 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8876
8877         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8878         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8879         type for bits was changed. It resulted in bit variables becoming
8880         global, which is not permitted in PIC 14 assembly output.
8881
8882 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8883
8884         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8885
8886 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8887
8888         Z80 and MCS51 linkers complaint if a public symbol is defined
8889         in more than one library module:
8890
8891         * as/mcs51/lklib.c
8892         * link/z80/lklib.c
8893         * as/mcs51/Makefile.in
8894
8895 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8896
8897         A few small changes that speed up the peephole optimizer.
8898
8899         * src/SDCCpeeph.c
8900
8901 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8902
8903         Try to make the peephole optimizer smarter by maintaining
8904         an association between the assembly source code and the
8905         iCodes that originated them. Put this information to use
8906         with a new peephole rule condition "notVolatile" so that
8907         the rules can be aggressive yet still safe.
8908
8909         * src/SDCCpeeph.c
8910         * src/SDCCpeeph.h
8911         * src/mcs51/gen.c
8912         * src/mcs51/peeph.def
8913
8914 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8915
8916         Fixed bug #741761
8917
8918         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8919         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8920         if the left or right operand symbols have the accuse flag set.
8921
8922 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8923
8924         Changed the type of the result of the ! (NOT) operator to char;
8925         previously it returned the same type as the source. This allows
8926         us to eliminate all the genFloatNot functions (all of its target
8927         implementations were very buggy) since !float can use the same
8928         code as !long now.
8929
8930         * src/SDCCicode.c (ast2iCode): ! returns char
8931         * src/mcs51/gen.c (genNot, genNotFloat),
8932         * src/ds390/gen.c (genNot, genNotFloat),
8933         * src/z80/gen.c (genNot, genNotFloat),
8934         * src/pic/gen.c (genNot, genNotFloat),
8935         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8936
8937 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8938
8939         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8940         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8941            during interrupts. Ensure WSAVE is located at a shared bank address.
8942         2. Fixed page selection in some places
8943         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8944            the registers name strings.
8945         4. Fixed "signed / unsigned compare" compiler warnings.
8946         5. The PIC port manages its own allocation of the general purpose
8947            registers, but makes no attempt to reuse them. As a result when
8948            compiling it soon runs out of general purpose registers. Some
8949            additional code was added to the files pcode.c and device.c to walk
8950            through the function call tree and rename the registers so that they
8951            get reused.
8952
8953         * src/pic/device.c
8954         * src/pic/gen.c
8955         * src/pic/glue.c
8956         * src/pic/pcode.c
8957         * src/pic/pcode.h
8958         * src/pic/ralloc.c
8959         * src/pic/ralloc.h
8960         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8961         genPlus() & genMinus() when the result is the same as left or right
8962
8963 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8964
8965         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8966
8967 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8968
8969         Made bitfield a distinct type from bit so that bitfields
8970         convert as per ANSI C and bits retain their traditional
8971         boolean style behaviour. Implemented bitfield support in
8972         the z80 port.
8973
8974         * src/SDCCsymt.h,
8975         * src/SDCCsymt.c,
8976         * src/SDCCast.c,
8977         * src/cdbFile.c,
8978         * src/mcs51/gen.c,
8979         * src/ds390/gen.c: bit v bitfield split
8980         * src/z80/gen.c: New support for bitfields
8981         * support/regression/tests/bitfields.c: reenabled z80,
8982         added more tests
8983
8984 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8985
8986         Rules 246.x, 247.x relate to bitfields, the others speed up
8987         access to xdata mapped I/O devices.
8988
8989         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
8990
8991 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8992
8993         Cleaned up genPackBits and genUnpackBits and added two helper
8994         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
8995         for literal assignments in genPackBits (thanks to Frieder for
8996         reminding me).
8997
8998         * src/mcs51/gen.c
8999         * src/ds390/gen.c
9000
9001 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9002
9003         Fixed bug #748310 (pointer to function type mishandled when the
9004         function name is omitted). Also fixed a SIGSEGV when a function
9005         attribute (reentrant, etc) is used on a non-function or on a
9006         function but misplaced before the parameter list.
9007
9008         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9009         bug #748310
9010         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9011         * support/Util/SDCCerr.h,
9012         * support/Util/SDCCerr.c: Added func attr misuse error msg
9013
9014 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9015
9016         Fixed bug #787649 by anonymous
9017         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9018         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9019
9020 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9021
9022         Fixed numerous bitfield problems.
9023
9024         * src/SDCC.y: More bitfield related error checking
9025         * src/SDCCsymt.h,
9026         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9027         * support/Util/SDCCerr.h,
9028         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9029         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9030         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9031         * support/regression/tests/bitfields.c: tests added
9032
9033 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9034
9035         Made the constant following the "interrupt" keyword optional. If
9036         omitted, the function will not automatically be given an entry
9037         in the interrupt vector table (similar to #pragma NOIV, but
9038         less syntacticly kludgy). The interrupt number is also now
9039         range checked. Also fixed a bug in the high order bit example
9040         in the manual.
9041
9042         * src/SDCC.y
9043         * src/SDCCmem.c
9044         * src/SDCCglue.c
9045         * src/SDCCsymt.h
9046         * support/Util/SDCCerr.c
9047         * support/Util/SDCCerr.h
9048         * doc/sdccman.lyx
9049
9050 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9051
9052         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9053         * src/SDCCicode.c (operandOperation): rewritten some ops
9054         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9055         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9056         other type
9057         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9058         be re-activated by defining REDUCE_LITERALS)
9059         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9060         unsigned, but are signed by default
9061         * src/SDCCval.c (constVal): rearranged
9062         * src/SDCCval.c (valMod): preliminary fix
9063         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9064         * support/regression/literalop.c: added, work in progress
9065
9066 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9067
9068         Generate warnings for useless declarations like "char data;"
9069         that don't do what new users expect.
9070
9071         * src/SDCC.y
9072         * support/Util/SDCCerr.h
9073         * support/Util/SDCCerr.c
9074
9075 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9076
9077         * src/SDCCval.c (valMult): fix overflow detection of negative int
9078
9079 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9080
9081         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9082
9083         Changes to support big endian targets:
9084
9085         * src/ports.h
9086         * src/SDCCglue.c
9087         * src/avr/main.c
9088         * src/ds390/main.c
9089         * src/izt/i186.c
9090         * src/mcs51/main.c
9091         * src/pic/main.c
9092         * src/pic16/main.c
9093         * src/xa51/main.c
9094         * src/z80/main.c
9095
9096 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9097
9098         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9099         * device/lib/time.c: fixed warning "integer overflow in expression"
9100
9101 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9102
9103         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9104         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9105         constants are unsigned; added recognition of "u" flag for unsigned
9106         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9107         * src/SDCCval.c (valDiv, valMod): fixed signdness
9108         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9109         signedness of modulo, left and right shift
9110         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9111         * support/Util/SDCCerr.h: added warning W_INT_OVL
9112         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9113         * src/SDCCast.c (ast_print): improved output of constants
9114
9115 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9116
9117         Fixed some warnings when building with MSVC:
9118
9119         * as\mcs51\asdata.c
9120         * as\z80\asdata.c
9121         * as\mcs51\asm.h
9122         * as\z80\asm.h
9123         * link\z80\aslink.h
9124         * link\z80\lkdata.c
9125         * link\z80\lkeval.c
9126         * link\z80\lkgb.c
9127         * link\z80\lkihx.c
9128         * link\z80\lks19.c
9129         * link\z80\lksym.c
9130         * support\cpp2\cpplib.c
9131         * src\ds390\gen.c
9132         * src\mcs51\gen.c
9133
9134 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9135
9136         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9137
9138 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9139
9140         * support\librarian\clean.mk: Do not remove Makefile.
9141         * support\librarian\Makefile: added.
9142
9143 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9144
9145         Added librarian to MSVC build:
9146         * all.dsp
9147         * sdcc.dsw
9148         * support\librarian\librarian.dsp
9149
9150         'configure' not needed for librarian, removed:
9151         * support\librarian\configure
9152         * support\librarian\configure.in
9153         * support\librarian\config_in.h
9154         * support\librarian\Makefile.in
9155
9156         Hopefully these ones built the librarian and the rest of sdcc properly:
9157         * Makefile
9158         * Makefile.common.in
9159
9160         Messed up 'configure', so revert to previous version:
9161         * configure
9162         * configure.in
9163
9164 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9165
9166         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9167         there, while the mantissa of a double is "only" 53 bits wide.
9168
9169 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9170
9171         Adding sdcclib to the build.  MSVC project coming soon.
9172         Files added/changed:
9173
9174         * support\librarian\clean.mk
9175         * support\librarian\configure
9176         * support\librarian\configure.in
9177         * support\librarian\config_in.h
9178         * support\librarian\Makefile.bcc
9179         * support\librarian\Makefile.in
9180         * support\librarian\sdcclib.c
9181         * Makefile.bcc
9182         * Makefile
9183         * Makefile.common.in
9184         * configure
9185         * configure.in
9186
9187 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9188
9189         Linker now complaints if linked modules have conflicting options, for
9190         example, one compiled using --model-large and another one compiled with
9191         --model-small.  The following files were modified:
9192
9193         * as\mcs51\asdata.c
9194         * as\mcs51\aslink.h
9195         * as\mcs51\asm.h
9196         * as\mcs51\asmain.c
9197         * as\mcs51\asout.c
9198         * as\mcs51\i51pst.c
9199         * as\mcs51\lkdata.c
9200         * as\mcs51\lklibr.c
9201         * as\mcs51\lkmain.c
9202         * as\z80\asdata.c
9203         * as\z80\asm.h
9204         * as\z80\asmain.c
9205         * as\z80\asout.c
9206         * as\z80\z80pst.c
9207         * link\z80\aslink.h
9208         * link\z80\lkdata.c
9209         * link\z80\lklibr.c
9210         * link\z80\lkmain.c
9211         * src\SDCCglue.c
9212
9213 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9214
9215         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9216         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9217
9218 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9219
9220         * src/z80/mappings.i: fix _mul[us][int,long] entries
9221
9222 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9223
9224         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9225
9226 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9229         * support/regression/tests/bitopcse.c: added
9230         fixed warning:
9231         * src/avr/gen.c:
9232         * src/pic/gen.c:
9233         * src/pic16/gen.c:
9234         * src/z80/gen.c:
9235         * src/xa51/gen.c:
9236
9237 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9238
9239         added support for new library format to z80, gbz80 linkers:
9240         *link/z80/aslink.h
9241         *link/z80/lklex.c
9242         *link/z80/lklib.c
9243         *link/z80/lklist.c
9244
9245 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9246
9247         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9248         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9249
9250 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9251
9252         added DUMMY_READ_VOLATILE:
9253         * src/SDCC.y:
9254         * src/avr/gen.c:
9255         * src/xa51/gen.c:
9256         * src/z80/gen.c:
9257         * src/pic/gen.c:
9258         * src/pic16/gen.c:
9259         * src/mcs51/gen.c:
9260         * src/ds390/gen.c:
9261         * src/SDCCcse.c (algebraicOpts): many improvements
9262         * src/SDCCcse.h: removed algebraicOpts()
9263         * src/SDCCicode.c (picDummyRead): added
9264
9265 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9266
9267         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9268         "Insufficient space in data memory".
9269
9270 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9271
9272         * src/mcs51/gen.c: fixed bug #771358
9273         * src/z80/gen.c: fixed bug #759087
9274
9275 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9276
9277         * src/pic16/glue.c: minor cleanup by Vangelis
9278
9279 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9280
9281         * device/include/regc515c.h: fixed #758477
9282         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9283         * device/lib/_gptrput.c: saved a few bytes
9284         * my tab spacing is 8, yours too?)
9285         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9286         * device/lib/serial.c: process RX bytes earlier than TX bytes
9287         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9288
9289 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9290
9291         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9292
9293 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9294
9295     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9296
9297 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9298
9299         * device/lib/Makefile.in: bad fix, reverted to 1.43
9300
9301 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9302
9303         * device/lib/Makefile.in: added missing z80 object files
9304
9305 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9306
9307         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9308         pic16 progress by Vangelis:
9309         * src/SDCCglobl.h:
9310         * src/SDCCmain.c:
9311         * src/pic/Makefile:
9312         * src/pic:
9313         * pic/Makefile:
9314         * pic16/device.c:
9315         * pic16/device.h:
9316         * pic16/gen.c:
9317         * pic16/gen.h:
9318         * pic16/genarith.c:
9319         * pic16/glue.c:
9320         * pic16/main.c:
9321         * pic16/pcode.c:
9322         * pic16/pcode.h:
9323         * pic16/pcodepeep.c:
9324         * pic16/peeph.def:
9325
9326 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9327
9328     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9329
9330 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9331
9332     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9333     added gbz80 build to MSVC project.
9334     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9335     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9336     from 8051 stuff and setup so it links using a .lnk file.
9337
9338 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9339
9340     * support/librarian/sdcclib.c: sdcc librarian.
9341     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9342     with sdcclib.
9343
9344 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9345
9346     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9347
9348 2003-07-02  Borut Razem <borut.razem AT siol.net>
9349
9350         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9351         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9352         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9353         src/xa51/main.c, src/z80/main.c:
9354         virtualization of glue() function: each port has it's own glue function,
9355         which is accessed by do_glue function pointer in PORT.general structure
9356
9357 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9358
9359         * DS800C400 fun, improved ROM interface and tinibios.
9360
9361 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9362
9363         * More support for DS80C400. Now includes beginning of interface to ROM.
9364
9365 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9366
9367         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9368
9369 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9370
9371         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9372
9373 2003-06-19  Borut Razem <borut.razem AT siol.net>
9374
9375         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9376
9377 2003-06-19  Borut Razem <borut.razem AT siol.net>
9378
9379         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9380         fixed Z80 port - crt0.o: cannot open.
9381
9382 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9383
9384         * support/Util/MySystem.c (merge_command): revert bad fix
9385
9386 2003-06-18  Borut Razem <borut.razem AT siol.net>
9387
9388         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9389
9390 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9391
9392         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9393         option --use-stdout sends errors to stdout instead of stderr.
9394
9395 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9396
9397         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9398
9399 2003-06-15  Borut Razem <borut.razem AT siol.net>
9400
9401         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9402         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9403         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9404         fixed width array of pointers replaced with sets;
9405         multiple include and lib paths ared transferred to preprocessor and linker
9406         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9407         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9408         fixed width array of pointers
9409         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9410         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9411         fixupPath(), getPathDifference()
9412         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9413         fixed width array of pointers
9414
9415 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9416
9417         * src/pic16/ralloc.c: fix warnings
9418         * src/pic16/pcode.c: fix warning
9419
9420 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9421
9422          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9423         know all the details, but essentially this set of changes enable
9424         the pic16 port to generate movff instructions and generate assembler
9425         directives,
9426         * src/SDCCmain.c:
9427         * src/pic16/gen.c:
9428         * src/pic16/glue.c:
9429         * src/pic16/pcode.c:
9430         * src/pic16/device.c:
9431         * src/pic16/main.c:
9432         * src/pic16/pcode.h:
9433         * src/pic16/pcoderegs.c:
9434         * src/pic16/ralloc.c:
9435         * src/pic16/ralloc.h:
9436
9437 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9438
9439         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9440         added option --vc, so sdcc errors and warnings are compatible with
9441         Microsoft Visual Studio.
9442
9443 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9444
9445         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9446           device/lib/libfloat.lib: added atof function.
9447
9448 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9449
9450         * doc/sdccman.lyx: updated to Lyx 1.3
9451         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9452         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9453         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9454
9455 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9456
9457         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9458
9459 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9460
9461         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9462           additions to the "related tools/documentation" section
9463
9464 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9465
9466         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9467
9468 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9469
9470         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9471         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9472
9473 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9474
9475         * doc/sdccman.lyx: fix double dash and other minor things
9476         * doc/Makefile: fix double dash
9477
9478 2003-05-28  Karl Bongers(patches from Martin Helmling)
9479         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9480           condition and ignore commands.
9481
9482 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9483
9484         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9485           is in parts still quite out of date, I did changes as far as I felt makes sense
9486           for a non-native english speaker.
9487           Please feel free to add to the manual or to correct my changes.
9488         * doc/Makefile: undid touching the date of intermediate tex files.
9489
9490 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9491
9492         * doc/sdccman.lyx: Manual has an index now
9493
9494 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9495
9496         Finalize muluint/mulsint and mululong/mulslong merging:
9497         * device/lib/_mulint.c
9498         * device/lib/_mullong.c
9499         * device/lib/gbz80/mul.s
9500         * device/lib/gbz80/stubs.s
9501         * device/lib/z80/mul.s
9502         * device/lib/z80/stubs.s
9503         * src/SDCCsymt.c (initCSupport)
9504
9505 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9506
9507         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9508         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9509           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9510           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9511           instead of /Zm500.
9512
9513 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9514
9515         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9516           the regression tests I'm not brave enough to enable 245.b, 245.c
9517         * doc/sdccman.lyx: added latex preamble for hyperref package.
9518           Using pdflatex this will give you a hyperlinked pdf file with
9519           bookmarks. (prepend '%' before /usepackage if this breaks something)
9520
9521 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9522
9523          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9524
9525 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9526
9527         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9528
9529 2003-05-21    <johan AT balder>
9530
9531         * src/SDCCglue.c (printIval): fixed bug #739934
9532
9533 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9534
9535         Applied patch from bug 737905 (renamed yylineo to mylineno):
9536         * src/altlex.c
9537         * src/SDCCast.c
9538         * src/SDCglobl.h
9539         * src/SDCC.lex
9540         * src/SDCCsymt.c
9541         * src/SDCCval.c
9542         * src/pic16/pcode.c: Cleaned warnings
9543         * src/pic16/pcodeflow.c: Cleaned warnings
9544         * src/pic16/pcoderegs.c: Cleaned warnings
9545
9546 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9547
9548         * src/pic16/pcode.c: Cleaned warnings
9549         * src/pic16/pcodepeep.c: Cleaned warnings
9550         * src/pic16/ralloc.c: Cleaned warnings
9551
9552 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9553
9554         * doc/sdccman.lyx: fixed bug 739745
9555         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9556
9557 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9558
9559         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9560         it can be defined with CFLAGS when running configure
9561         * src/SDCCmain.c: fixed compiling + linking with object files
9562
9563 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9564
9565         * configure.in: configure for pic16 port,
9566             added --disable-pic16-port
9567         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9568         * src/SDCCmain.c: linkOptions is changed to set *,
9569             added if/endif conditional macros to remove options help
9570             messages from optionsTable when a port is not configured, added
9571             support for the PIc16 port in the ports table, when executing
9572             the compiler with no port specified on command line, a default
9573             port is selected with the new macro DEFAULT_PORT which is
9574             defined in port.h, in setDefaultOptions() linkOptions is removed
9575             from initialization assignment, since now it is a set,
9576             parseCmdLine uses setParseWithComma for linkOptions, in
9577             linkEdit() linkOptions are accessed with new function indexSet()
9578             which returns the i'th item of a set variable. See SDCCset.c, in
9579             linkEdit() when calling buildCmdLine(), added linkOptions as
9580             last argument. Now users can pass arguments to gplink via the
9581             -Wl option, main() uses pic16glue() to glue up pic16 programs
9582         * src/SDCCpeeph.c: various changes to support pic16
9583         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9584             return the i'th item of the set
9585         * src/SDCCset.h: added function prototype for indexSet()
9586         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9587         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9588         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9589             added macro DEFAULT_PORT
9590         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9591         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9592             generated
9593         * src/pic16/glue.c: commented out some error producing lines
9594         * src/pic16/main.c: __config directives are commented out to stop
9595             gpasm complaining and test the linkage with gplink, _linkCmd and
9596             _asmCmd changed to be more gplink and gpasm friendly
9597         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9598             produced an error when parsed, peep rule 12 is added to utilize
9599             movff, but it is commented out since the pCode does not support
9600             yet a command with 2 address arguments
9601
9602 2003-05-18    <johan AT balder>
9603
9604         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9605         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9606 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9607
9608         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9609   Added feature to script commands from file.
9610
9611 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9612
9613         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9614         * src/SDCCutil.c: include ctype.h for win32
9615
9616 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9617
9618         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9619
9620 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9621
9622         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9623   Fixed so you can set breakpoints prior to run, run does not stop
9624   on entry now.  Add tbreak.  Other enhancements and fixes for use
9625   with ddd.
9626
9627 2003-05-12  Borut Razem <borut.razem AT siol.net>
9628
9629         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9630
9631 2003-05-11  Borut Razem <borut.razem AT siol.net>
9632
9633         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9634         the path of bin directory, so that PATH is the only env. variable, which has to be set
9635         in case of standard installation.
9636         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9637         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9638         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9639
9640 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9641
9642         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9643         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9644         temp files are in the port dir; clean the gen/test directory when
9645         generating new test.c
9646         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9647         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9648         * support/regression/tests/zeropad.c: added
9649
9650 2003-05-09    <johan AT balder>
9651
9652         * src/SDCCglue.c: fixed bug #597940
9653
9654 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9655
9656         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9657   cache sfr, optimize next,step, fix off by one sourceline,
9658   support ddd list function.
9659         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9660
9661 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9662
9663         * support/regression/HTMLgen.py: added compare_s2f()
9664         * support/regression/Makefile: redo 1.27
9665         * support/regression/generate-cases.py: redo 1.5
9666
9667 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9668
9669         * support/regression/tests/float.c: workaround 33 bit hex constant
9670         * support/regression/tests/simplefloat.c: fix division for host
9671
9672 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9673
9674         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9675         that tame's the PIC's over-aggressive optimizer.
9676
9677 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9678
9679          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9680          support for MSVC.
9681
9682 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9683
9684         Initial support for DS80C400. "Hello world" runs on TINIm400
9685         (with polled I/O).
9686
9687 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9688
9689          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9690          * Some notes on ddd usage added in debugger/README
9691          Martin Helmling adding more features and fixes for ddd GUI debugger.
9692          Code added for nexti, stepi, up, down, and other adjustments.
9693
9694 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9695
9696         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9697         * src/pic/peeph.def Added two rules to optimize carry manipulation
9698         * src/pic/* removed debug printfs
9699
9700 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9701
9702         * debugger/mcs51/cmd.c: added header newalloc.h
9703
9704 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9705
9706         * as/Makefile: new EXEEXT
9707         * as/z80/Makefile: remove trailing slash of BUILDIR
9708         * as/z80/clean.mk: new EXEEXT
9709         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9710         * support/cpp2/Makefile.in: new EXEEXT
9711         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9712
9713 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9714
9715         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9716         EXEEXT was introduced to fix all related problems with targets
9717         "clean", "install" and "uninstall"; a couple of further flaws
9718         especially with "clean" have been fixed too
9719         * as/mcs51/Makefile.in
9720         * as/mcs51/clean.mk
9721         * as/z80/Makefile
9722         * Makefile
9723         * clean.mk
9724         * debugger/mcs51/Makefile.in
9725         * debugger/mcs51/clean.mk
9726         * link/z80/Makefile
9727         * link/z80/Makefile.in
9728         * link/z80/clean.mk
9729         * link/Makefile
9730         * packihx/Makefile.in
9731         * packihx/clean.mk
9732         * sim/ucsim/Makefile
9733         * sim/ucsim/clean.mk
9734         * sim/ucsim/avr.src/Makefile.in
9735         * sim/ucsim/avr.src/clean.mk
9736         * sim/ucsim/s51.src/Makefile.in
9737         * sim/ucsim/s51.src/clean.mk
9738         * sim/ucsim/xa.src/Makefile.in
9739         * sim/ucsim/xa.src/clean.mk
9740         * sim/ucsim/z80.src/Makefile.in
9741         * sim/ucsim/z80.src/clean.mk
9742         * sim/ucsim/main_in.mk
9743         * sim/ucsim/packages_in.mk
9744         * sim/ucsim/gui.src/Makefile.in
9745         * sim/ucsim/gui.src/serio.src/Makefile.in
9746         * sim/ucsim/gui.src/serio.src/clean.mk
9747         * src/Makefile.in
9748         * src/clean.mk
9749         * support/cpp2/Makefile.in
9750         * support/cpp2/clean.mk
9751         * support/makebin/Makefile
9752         * support/makebin/clean.mk
9753         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9754         * doc/sdccman.lyx: --program-suffix no longer needed
9755
9756 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9757
9758          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9759          Martin Helmling added support for ddd GUI debugger.
9760          Code added to display assembly, set variables, and other commands
9761          to interface to ddd.
9762
9763 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9764
9765         * as/Makefile: fix target clean
9766         * as/clean.mk: fix target clean
9767         * as/z80/clean.mk: fix target clean
9768
9769 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9770
9771         * Makefile.common.in: added  AT EXEEXT AT
9772         * configure.in: removed all mingw32 stuff
9773         * configure: rebuilt from configure.in
9774         * doc/sdccman.lyx: updated section "installation"
9775         * support/scripts/sdcc_mingw32: adapted to configure
9776         * support/scripts/sdcc_cygwin_mingw32: added
9777
9778 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9779
9780         * src/pic Added object file support for the PIC port
9781         * src/pic Applied patch from Craig Franklin (this started the object file support)
9782         * src/regression Updated the PIC regression tests for object files
9783
9784 2003-04-20  Borut Razem <borut.razem AT siol.net>
9785
9786         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9787           lklex.c: In function `getfid':
9788           lklex.c:203: warning: array subscript has type `char'
9789         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9790           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9791         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9792           stack handling macros
9793
9794 2003-04-19  Borut Razem <borut.razem AT siol.net>
9795
9796         * "handling space characters in file path" task:
9797         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9798         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9799         * support/Util/MySystem.h: make it self-sufficient
9800         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9801           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9802           handling space characters in file path
9803         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9804           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9805         * support/Util/MySystem.c: handling space characters in executable's path
9806
9807 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9808
9809         * as/z80/Makefile: fix permanent rebuild of z80
9810         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9811         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9812
9813 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9814
9815         * src/SDCCopt.c: add special case optimization to replace modulo by
9816           a power of two with a bitwise AND.
9817
9818 2003-04-18    <johan AT balder>
9819
9820         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9821
9822 2003-04-17    <johan AT balder>
9823
9824         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9825         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9826
9827 2003-04-13  Borut Razem <borut.razem AT siol.net>
9828
9829         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9830         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9831           fixed mingw problem in adl_NORMALIZE_PATH
9832
9833 2003-04-12  Borut Razem <borut.razem AT siol.net>
9834
9835         * fixed "#pragma SAVE/RESTORE can not be nested":
9836         * src/SDCC.lex: reworked pragma handling functions
9837         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9838         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9839
9840 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9841
9842         * src/SDCCutil.c (pathEquivalent): defined but not used
9843         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9844         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9845         * configure: rebuilt from configure.in
9846         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9847         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9848         * device/include/Makefile.in: replace sdcc_datadir
9849         * device/lib/Makefile.in: replace sdcc_datadir
9850         * Makefile.common.in: add LDFLAGS from configure
9851         * packihx/Makefile.in: use LDFLAGS
9852         * src/Makefile.in: use LDFLAGS
9853         * support/cpp2/Makefile.in: add LDFLAGS from configure
9854         * support/makebin/Makefile: use LDFLAGS
9855         * .version: bumped version number to 2.3.5
9856
9857 2003-04-12  Borut Razem <borut.razem AT siol.net>
9858
9859         * completed "different paths" task:
9860         * src/SDCCmacro.c: fixed bug in handling quotes
9861         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9862         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9863
9864 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9865
9866         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9867
9868 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9869
9870         * ds390/gen.c ds390/peeph.def: fix bug 706781
9871
9872 2003-04-11  Borut Razem <borut.razem AT siol.net>
9873
9874         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9875
9876 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9877
9878         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9879         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9880          set - this bit used to not be set...).
9881         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9882           bad code in PIC Port
9883         * src/regression/and2.c added to test bug 609268
9884         * src/regression/Makefile added and2.c to regression test
9885
9886
9887 2003-04-08    <johan AT CP255758-A>
9888
9889         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9890         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9891         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9892
9893 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9894
9895         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9896         fix bug #487815
9897         * support/cpp2/Makefile.in: fix bug #487815
9898         * configure: rebuilt from configure.in
9899         * Makefile.common.in: docdir changed, new path suffixes
9900         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9901         * sdcc_vc_in.h: reflect changes from sdccconf.h
9902         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9903         * src/SDCCutil.h: remove BINDIR hack
9904         * doc/sdccman.lyx: update new path hierarchy
9905
9906 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9907
9908         * src/SDCCpeeph.c: added okToRemoveSLOC test
9909
9910 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9911
9912         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9913
9914 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9915
9916         * src/SDCCpeeph.c: added labelIsReturnOnly test
9917         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9918
9919 2003-04-05    <johan AT balder>
9920
9921         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9922         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9923         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9924         * src/SDCCast.c: fixed a warning
9925         * src/SDCCast.h: fixed a warning
9926         * src/SDCCicode.c (operandFromAst): fixed a warning
9927
9928 2003-04-04    <johan AT balder>
9929
9930         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9931         * src/SDCCast.c (decorateType): fixed bug #715076
9932         * src/SDCC.y: fixed bug #702907
9933
9934 2003-04-03    <johan AT balder>
9935
9936         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9937         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9938         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9939         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9940         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9941
9942 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9943
9944         * _decdptr.c: fix return values
9945         * _gptrget.c: fix return values
9946         * _gptrgetc.c: fix return values
9947         * _gptrput.c: fix return values
9948         * _mulint.c: fix return values
9949         * as/z80/Makefile: fix 'make -j' problem
9950
9951 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9952
9953         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9954         * configure.in: big cleanup, updated to autoconf 2.5x
9955         * configure: rebuilt from configure.in
9956         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9957         * sdcc_vc_in.h: reflect changes from sdccconf.h
9958         * doc/Makefile: fixed a flaw in "make install"
9959
9960 2003-04-02    <johan AT balder>
9961
9962         * src/ds390/gen.c (genCmp): no comments
9963         * src/mcs51/gen.c (genCmp): no comments
9964         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9965         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9966
9967 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9968
9969         * support/regression/generate-cases.py: place generated file in given sub directory
9970         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9971         * support/regression/Makefile: improvements for 'make -j';
9972         side effect: it's simpler and faster now
9973
9974 2003-03-31  Borut Razem <borut.razem AT siol.net>
9975
9976         * src/z80/main.c: link-{port} and as-{port} defined without path
9977         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9978
9979 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9980
9981         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9982
9983 2003-03-30  Borut Razem <borut.razem AT siol.net>
9984
9985         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9986           changed type of list parameter to set
9987         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
9988         * src/port.h: changed type of do_assemble() parameter to set
9989         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
9990           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
9991           definition of "cppoutfilename" macro with NULL value in preProcess()
9992         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
9993         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
9994         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
9995           replaced with set *binPathSet
9996         * shash_add() deallocates the item, if allready exsists, before adding the new one
9997         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
9998
9999 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
10000
10001         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
10002           a nested for loop bug in the PIC port
10003         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
10004           for loops
10005
10006 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
10007
10008         * support/Util/dbuf.h: remove C++ stuff to make it portable
10009
10010 2003-03-28  Borut Razem <borut.razem AT siol.net>
10011
10012         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10013           literal strings in stringLiteral()
10014         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10015         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
10016           to the project
10017
10018 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10019
10020         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10021
10022 2003-03-26    <johan AT balder>
10023
10024         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10025         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10026         * src/SDCCast.c (decorateType): fixed " -v < 3"
10027
10028 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10029
10030         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10031         Added Lenny Story's debug infrastructure changes:
10032         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10033         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10034         * src/cdbFile.c: added
10035         * src/SDCCdebug.c: added
10036         * src/SDCCdebug.h: added
10037         * src/SDCCast.c (createFunction)
10038         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10039         * src/SDCCmain.c (parseCmdLine, main)
10040         * src/SDCCmem.c (redoStackOffsets)
10041         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10042         * src/SDCCsymt.h
10043         * src/common.h
10044         * src/avr/gen.c (genAVRCode)
10045         * src/ds390/gen.c (gen390Code)
10046         * src/mcs51/gen.c (gen51Code)
10047         * src/pic/gen.c (genpic14Code)
10048         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10049         * src/xa51/gen.c (genXA51Code)
10050         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10051
10052 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10053
10054         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10055         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10056
10057 2003-03-22    <johan AT balder>
10058
10059         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10060
10061 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10062
10063         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10064         * doc/cdbfileformat.lyx: added, written by Lenny Story
10065         * doc/Makefile: added cdbfileformat.lyx
10066         * doc/clean.mk: added cdbfileformat.lyx
10067
10068 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10069
10070         * src/mcs51/peeph.def: fix bug #705773
10071
10072 2003-03-20    <johan AT balder>
10073
10074         An sfr/sbit can have an "at #" AND an initializer
10075         * src/SDCCsymt.c (checkSClass):
10076         * src/SDCCmem.c (allocGlobal):
10077         * src/SDCCmem.c (allocLocal):
10078         * src/SDCCast.c (createBlock):
10079
10080 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10081
10082         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10083
10084 2003-03-16    <johan AT balder>
10085
10086         Undid the hackup of const and volatile, the problem is much bigger
10087         * src/SDCC.y:1.65
10088         * src/SDCCast.c:1.171
10089         * src/SDCCglue.c:1.138
10090         * src/SDCCicode.c:1.146
10091         * src/SDCCsymt.c:1.150
10092         * src/SDCCval.c:1.65
10093
10094 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10095
10096         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10097         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10098
10099 2003-03-13    <johan AT balder>
10100
10101         Hackup const and volatile modifiers in type chains a bit:
10102         * src/SDCC.y:1.63
10103         * src/SDCCast.c:1.169
10104         * src/SDCCglue.c:1.136
10105         * src/SDCCicode.c:1.143
10106         * src/SDCCsymt.c1.146
10107         * src/SDCCsymt.h1.59
10108         * src/SDCCval.c:1.63
10109
10110 2003-03-12    <johan AT balder>
10111
10112         * src/SDCCBBlock.h: more LRH debugging junk
10113         * src/SDCCcflow.h: more LRH debugging junk
10114         * src/SDCCloop.c: more LRH debugging junk
10115         * src/SDCC.y (struct_declaration): fixed bug #697590
10116         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10117         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10118         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10119
10120 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10121         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10122         test function names must now match exactly).
10123         * src/SDCCcse.c: added special case in findCheaperOp to allow
10124         extending a short integer. Makes less awful code for bug 700121 test case.
10125
10126 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10127
10128         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10129         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10130
10131 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10132
10133         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10134         actually called (operandsNotEqual() was called for all
10135         operandsNotEqualX tests).
10136
10137 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10138
10139         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10140         with shorter literals. Fixes bug 700121.
10141
10142 2003-03-11    <johan AT balder>
10143
10144         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10145
10146 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10147
10148         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10149         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10150
10151 2003-03-10  Borut Razem <borut.razem AT siol.net>
10152
10153         * src/SDCCmain.c: pipe preprocessor's output
10154         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10155         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10156         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10157         which closes all pipes in pipeSet set
10158         * src/SDCCset.c: free deleted item in function deleteSetItem()
10159         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10160         moved from z80 to src subproject
10161         * .version: increased version number to 2.3.4
10162
10163 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10164
10165         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10166         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10167         * support/regression/ports/xa51/spec.mk: fix typo
10168
10169 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10170
10171         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10172
10173 2003-03-09  Borut Razem <borut.razem AT siol.net>
10174
10175         * src/SDCCmain.c: pipe preprocessor's output
10176         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10177         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10178         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10179         which closes all pipes in pipeSet set
10180         * src/SDCCset.c: free deleted item in function deleteSetItem()
10181         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10182         moved from z80 to src subproject
10183
10184 2003-03-09  Borut Razem <borut.razem AT siol.net>
10185
10186         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10187         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10188         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10189         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10190         * src/SDCCglobl.h: unification of WIN32 native definitions
10191
10192 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10193
10194         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10195
10196 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10197
10198         * src/configure.in:   check for endianess (even while cross-compiling)
10199         * src/configure:      check for endianess (even while cross-compiling)
10200         * src/configure_in.h: check for endianess (even while cross-compiling)
10201         * src/avr/gen.c:        remove old endianess stuff
10202         * src/mcs51/gen.c:      remove old endianess stuff
10203         * src/ds390/gen.c:      remove old endianess stuff
10204         * src/pic/gen.c:        remove old endianess stuff
10205         * src/pic/genarith.c:   remove old endianess stuff
10206         * src/pic/glue.c:       fix endianess check
10207         * src/pic16/gen.c:      remove old endianess stuff
10208         * src/pic16/genarith.c: remove old endianess stuff
10209         * src/pic16/glue.c:     fix endianess check
10210         * src/xa51/gen.c:       remove old endianess stuff
10211         * src/z80/gen.c:        fix endianess check
10212         * src/SDCCglue.c:       fix endianess check
10213         * src/ds390/peeph.def: fix bug 700036
10214
10215 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10216
10217         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10218         * src/configure: find appropriate data-types on host for SDCC's int and long
10219         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10220         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10221         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10222
10223 2003-03-07    <johan AT balder>
10224
10225         Just a big NOOP:
10226                 some minor cleanups before the big shot
10227                 OP_DEFS and OP_USES now use Kevin's protection
10228                 new option --nolabelopt
10229
10230         * src/SDCCBBlock.c:
10231         * src/SDCCast.c,:
10232         * src/SDCCcflow.c:
10233         * src/SDCCcse.c:
10234         * src/SDCCicode.c:
10235         * src/SDCCicode.h:
10236         * src/SDCClabel.c:
10237         * src/SDCCloop.c:
10238         * src/SDCCmain.c:
10239         * src/ds390/ralloc.c:
10240         * src/mcs51/ralloc.c:
10241         * src/pic/ralloc.c:
10242         * src/xa51/ralloc.c:
10243         * src/z80/ralloc.c:
10244
10245 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10246
10247         * src/pic/pcode.c (get_op): fix 64 bit warnings
10248         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10249         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10250         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10251         * support/regression/tests/malloc.c: fix 64 bit warnings
10252
10253 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10254
10255         * src/mcs51/gen.c (genMinus): fixed bug 696436
10256
10257 2003-03-02  Borut Razem <borut.razem AT siol.net>
10258
10259         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10260
10261 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10262
10263         * configure.in: test for mkstemp
10264         * sdccconf_in.h: add HAVE_MKSTEMP
10265
10266 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10267
10268         * device/include/ctype.h: removed warning while using --stack-auto
10269         * device/include/malloc.h: removed warning while using --stack-auto
10270         * device/include/string.h: removed warning while using --stack-auto
10271
10272 2003-02-23  Borut Razem <borut.razem AT siol.net>
10273
10274         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10275         because NDEBUG is defined (see man assert)
10276         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10277
10278 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10279
10280         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10281         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10282
10283 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10284
10285         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10286         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10287
10288 2003-02-18    <johan AT balder>
10289
10290         * as/mcs51/asmain.c (asmbl): module can start with a digit
10291         * as/z80/asmain.c (asmbl): module can start with a digit
10292
10293 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10294
10295         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10296         * src/asm.c: fix pipe() for Mingw32
10297
10298 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10299
10300         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10301         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10302         make -V work again; --c1mode reads now from stdin
10303         * doc/sdccman.lyx: added --c1mode
10304         * support/Util/SDCCerr.c: new messages for c1 mode
10305         * support/Util/SDCCerr.h: new messages for c1 mode
10306         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10307
10308 2003-02-15    <johan AT balder>
10309
10310         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10311
10312 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10313
10314         * doc/sdccman.lyx: Environment variables, -o and other minor things
10315
10316 2003-02-14    <johan AT balder>
10317
10318         * src/xa51/main.c: before anyone really tries to use it :)
10319
10320         * Install doc's in share/sdcc/doc
10321         * removed some obsolete files
10322         * Do a proper make distclean and uninstall
10323         M Makefile.common.in
10324         R sdccbuild.sh
10325         M as/Makefile
10326         M device/include/Makefile.in
10327         M device/lib/Makefile.in
10328         M doc/sdccman.lyx
10329         M link/Makefile
10330         M sim/ucsim/doc/Makefile.in
10331         M src/clean.mk
10332         R src/avr/peeph.rul
10333         R src/xa51/peeph.rul
10334         M support/cpp2/Makefile.in
10335         M support/makebin/Makefile
10336
10337
10338 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10339
10340         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10341
10342 2003-02-10  Borut Razem <borut.razem AT siol.net>
10343
10344         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10345         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10346         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10347         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10348         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10349         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10350         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10351         src/z80/Makefile.bcc: Borland Makefile cleanup
10352         * as/z80/Makefile.bcc: Added Borland Makefile
10353         * support/cpp2/borland.h: Removed
10354
10355 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10356
10357         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10358         * src/SDCC.lex: new pragma NOIV
10359         * src/SDCCglobl.h: new pragma NOIV
10360         * src/SDCCmem.c: new pragma NOIV
10361
10362 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10363
10364         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10365
10366 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10367
10368         * src/SDCCmain.c: signal handling is switched off by --debug
10369         * doc/Makefile: small fix for install; use clean.mk again
10370         * doc/clean.mk: clean *.pdf and *.html too
10371
10372 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10373
10374         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10375         * device/lib/printfl.c: fix a ds390 bug by making it portable
10376         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10377         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10378         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10379         * debugger/mcs51/cmd.c: converted multi-line string literals
10380         * sim/ucsim/globals.cc: converted multi-line string literals
10381         * src/SDCCmain.c: introduced signal handler to remove temp files
10382         * doc/Makefile: small tweaks, implement clean
10383         * doc: removed generated files
10384
10385 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10386
10387         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10388         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10389         Address Record is not correctly generated for DS390."
10390
10391 2003-02-02  Borut Razem <borut.razem AT siol.net>
10392
10393         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10394         * as/mcs51/asm.h: fixed compilation with Borland C
10395         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10396         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10397         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10398         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10399         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10400         src/z80/Makefile.bcc: delete $(LIB) only if exist
10401         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10402
10403 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10404
10405         * device/include/malloc.h: introduced NULL
10406         * device/include/string.h: introduced NULL
10407         * device/include/stdlib.h: introduced NULL
10408         * device/lib/_memcpy.c: removed NULL
10409         * device/lib/_strcat.c: removed NULL
10410         * device/lib/_strchr.c: removed NULL
10411         * device/lib/_strcmp.c: removed NULL
10412         * device/lib/_strcpy.c: removed NULL
10413         * device/lib/_strcspn.c: removed NULL
10414         * device/lib/_strlen.c: removed NULL
10415         * device/lib/_strncat.c: removed NULL
10416         * device/lib/_strncmp.c: removed NULL
10417         * device/lib/_strncpy.c: removed NULL
10418         * device/lib/_strpbrk.c: removed NULL
10419         * device/lib/_strrchr.c: removed NULL
10420         * device/lib/_strspn.c: removed NULL
10421         * device/lib/_strstr.c: removed NULL
10422         * device/lib/_strtok.c: removed NULL
10423         * device/lib/malloc.c: removed NULL, include own header
10424
10425 2003-02-02    <johan AT balder>
10426
10427         * 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
10428         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10429         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10430         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10431         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10432         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10433
10434 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10435
10436         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10437         area 'DATA'"
10438
10439 2003-02-01    <johan AT balder>
10440
10441         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10442
10443 2003-01-31    <johan AT CP255758-A>
10444
10445         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10446
10447 2003-01-30    <johan AT balder>
10448
10449         * src/SDCCBBlock.c: automatic bug detection
10450         * src/SDCCicode.c: automatic bug detection
10451
10452 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10453
10454         * src/SDCCglobl.h:   now --xram-size 0 works
10455         * src/SDCCmain.c:    now --xram-size 0 works
10456
10457 2003-01-29    <johan AT balder>
10458
10459         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10460
10461 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10462
10463         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10464         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10465         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10466         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10467         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10468         * src/SDCCmain.c:    Added options --xram-size and --code-size
10469
10470 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10471
10472         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10473         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10474
10475 2003-01-27    <johan AT balder>
10476
10477         * src/SDCC.y: fixed bug #613764
10478
10479 2003-01-26    <johan AT balder>
10480
10481         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10482         * src/SDCCsymt.h: fixed bug #673374
10483         * src/SDCCglue.c: fixed bug #661910
10484         * src/SDCCast.c: fixed bug #458099 and 673374
10485
10486 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10487
10488         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10489         * as/mcs51/strcmpi.h: added
10490         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10491         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10492         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10493         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10494         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10495         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10496         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10497         * as/mcs51/Makefile.aslink: new module strcmpi
10498         * as/mcs51/Makefile.asx8051: new module strcmpi
10499         * as/mcs51/Makefil.bcc: new module strcmpi
10500         * as/mcs51/Makefile.in: new module strcmpi
10501         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10502
10503 2003-01-26    <johan AT balder>
10504
10505         * src/SDCCglue.c: reverted back to 1.124
10506         * src/SDCCast.c: reverted back to 1.156
10507         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10508
10509 2003-01-25    <johan AT balder>
10510
10511         * src/SDCCglue.c: A better fix for bug #661910
10512         * src/SDCCast.c: A better fix for bug #661910
10513         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10514
10515 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10516
10517         * src/Makefile.in: remove spawn.o
10518         * src/SDCCmain.c: remove spawn.h
10519         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10520         * src/spawn.c: removed
10521         * src/spawn.h: removed
10522         * support/regression/ports/ds390/spec.mk: link with -r
10523
10524 2003-01-24    <johan AT CP255758-A>
10525
10526         * src/ds390/gen.c (aopOp): fixed bug #667458
10527         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10528         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10529         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10530
10531 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10532
10533         * src/mcs51/peeph.def: better assembler identation by Frieder
10534         * src/mcs51/gen.c: better assembler identation by Frieder
10535
10536 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10537
10538         * as/z80/string.h: removed for gcc 3.2
10539         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10540         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10541
10542 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10543
10544         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10545         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10546         * support/regression/Makefile: separate temp files for ports
10547         * support/regression/generate-cases.py: separate temp files for ports
10548         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10549         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10550
10551 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10552
10553         * moved tinitalk to device/examples/ds390
10554
10555 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10556
10557         * as/mcs51/lkmem.c: rflag is for DS390
10558         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10559         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10560                          (linkEdit): move mem- and map-files the same way as ihx-files
10561         * src/z80/main.c (_setDefaultOptions): removed --generic
10562         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10563         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10564         * src/pic/glue.c (picglue): --c1mode works again
10565         * src/pic16/glue.c (pic16glue): --c1mode works again
10566         * src/asm.c (printCLine): fix #660034
10567
10568 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10569
10570         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10571         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10572         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10573         * as/mcs51/lkmem (summary): better fix for sp problem
10574         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10575         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10576         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10577                                               remove --stack-after-data
10578
10579 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10580
10581         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10582         * src/SDCCutil.c (join): ugly bug: missing '\0'
10583         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10584
10585 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10586
10587         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10588         * src/port.h: typo
10589         * src/pic/main.c (_asmCmd): gpasm supports -o
10590         * src/z80/main.c: more general macros
10591         * device/lib/Makefile.in: remove intermediate files
10592
10593 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10594
10595         * .version: Bumped version number to 2.3.3
10596         * src/SDCCBBlock.c: new option -o
10597         * src/SDCCglobl.h: new option -o
10598         * src/SDCCglue.c: new option -o
10599         * src/SDCCmain.c: new option -o
10600         * src/asm.c: new option -o
10601         * src/ds390/main.c: new option -o
10602         * src/pic/glue.c: new option -o
10603         * src/pic/pcode.c: new option -o
10604         * src/pic/ralloc.c: new option -o
10605         * src/pic16/glue.c: new option -o
10606         * src/pic16/pcode.c: new option -o
10607         * src/pic16/ralloc.c: new option -o
10608         * src/z80/main.c: new option -o
10609         * device/lib/Makefile.in: use -o
10610         * support/regression/ports/ds390/spec.mk: use -o
10611         * support/regression/ports/gbz80/spec.mk: use -o
10612         * support/regression/ports/mcs51/spec.mk: use -o
10613         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10614         * support/regression/ports/z80/spec.mk: use -o
10615         * support/regression/ports/ucz80/spec.mk: use -o
10616         * support/regression/ports/xa51/spec.mk: use -o
10617         * support/regression/fwk/lib/timeout.c: fix usage string
10618
10619 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10620         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10621
10622 2003-01-07    <johan AT balder>
10623
10624         * src/SDCCast.c (decorateType): fixed bug #600035
10625
10626 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10627         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10628         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10629         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10630         * src/pic/pcode.c: outcommented unused variable to remove warnings
10631         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10632
10633 2003-01-06    <karl AT turbobit.com>
10634         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10635    regression tests.
10636
10637 2003-01-06    <johan AT balder>
10638
10639         * src/SDCCicode.c: fixed array add
10640
10641 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10642         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10643         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10644
10645 2003-01-04    <johan AT balder>
10646
10647         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10648
10649 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10650         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10651
10652 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10653         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10654         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10655
10656 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10657         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10658
10659 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10660         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10661
10662 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10663         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10664
10665 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10666
10667     * in \sdcc\as\mcs51\ changed these files in order to create an
10668     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10669     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10670     following files to include the previous two files: aslink.dsp,
10671     Makefile.aslink, Makefile.bcc, and Makefile.in.
10672
10673     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10674     .adb instead of .cdb
10675
10676 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10677
10678         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10679         value from option --iram-size.
10680
10681 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10682
10683         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10684         dram[] array.
10685
10686 2002-09-18    <wiml AT hhhh.org>
10687
10688         * SDCClrange.h: exposed setFromRange() and setToRange()
10689         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10690           packRegsForAccUse() (bug 542397)
10691         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10692           multiple times and emitting the fetch operations more than once
10693           added aopGetUsesAcc() function to allow binary operators to
10694           fetch their operands in the correct order; made genMinus() emit
10695           compact code for X = LITERAL - Y
10696
10697 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10698         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10699         sprintf() in line 1267.
10700
10701 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10702         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10703         like ports.
10704
10705 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10706         Changes to aslink (All the changes are marked with 'JCF'):
10707
10708         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10709         summary().
10710
10711         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10712         area BSEG.  Also moves, if possible, the DATA area down into the internal
10713         ram so more space is available.
10714
10715         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10716         sflag.
10717
10718         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10719         not bytes.  Function summary() which creates a memory usage summary
10720         file with extension .mem.  Reports of overlaping stack and small stack
10721         size.  If the space for the stack is less than 16 bytes aslink trows a
10722         warning.
10723
10724         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10725         the 8051.  Option 'y' for memory summary output file.
10726
10727         Changes to sdcc (All the changes are marked with 'JCF'):
10728
10729         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10730
10731         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10732         overlaying area for it (uses RegBankUsed[4]).
10733
10734         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10735         bank zero as used by default.  By default aslink locates the stack
10736         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10737         the creation of the .mem file.  Delegates the allocation of data area
10738         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10739         the begining of the stack area to aslink.
10740
10741         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10742         glue() in SDCCglue.c creates an area for it.
10743
10744 2002-09-03  Borut Razem <borut.razem AT siol.net>
10745         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10746         sdcc/src/pic/glue.c:
10747         introduced atexit() handler for teporay files removal in case of
10748         errors, assertions, ...
10749
10750 2002-08-29  Borut Razem <borut.razem AT siol.net>
10751         * sdcc/support/cpp2/auto-host_vc_in.h:
10752         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10753         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10754         Maybe there is a similar problem with BORLANDC? It should be checked!
10755
10756         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10757         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10758         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10759         was not executed, and the compiler (cl) launched a warning:
10760         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10761
10762 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10763         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10764
10765 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10766         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10767
10768         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10769           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10770           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10771           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10772           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10773           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10774           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10775         - added Release configuration in VS projects
10776         - review of compiler an linker options
10777         - VC .exe files are generated in bin_vc directory, not to interfere
10778           with binaries generated from other projects (cygwin, mingw, bcc ...)
10779
10780         * sdcc/src/yacc.dsp: added
10781
10782         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10783         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10784         and insert the version number definitions from .version
10785
10786         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10787
10788         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10789         added - genarate auto-host.h using auto-host_vc_in.h as template
10790
10791         * sdcc/sdcc_vc.h,
10792         removed from CVS, generated automatically
10793
10794 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10795         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10796
10797 2002-08-11  Borut Razem <borut.razem AT siol.net>
10798         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10799
10800 2002-08-10  Borut Razem <borut.razem AT siol.net>
10801         * src/SDCCmain.c (main):
10802         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10803         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10804         The consequence was that some temporary files were not removed.
10805
10806         * src/SDCCglue.c:
10807         unification of code in functions tempfilename() and tempfile():
10808         function tempnam() is defined in Visual Studio 6.0 and .NET
10809
10810         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10811
10812         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10813           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10814         - removed compiler command line option /WX: Treats all warnings as errors
10815         - update a list of source files, included into the project
10816
10817         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10818           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10819         changed project type to Generic Project so that can be correcly converted to VS.NET project
10820
10821         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10822
10823         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10824
10825         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10826
10827         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10828         added return 0 statements after assert() to make compiler happy
10829
10830         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10831         added newline in the def file to keep MSC compiler satisfied
10832
10833         * sdcc/src/z80/gen.c:
10834         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10835           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10836         - solved MSC error in function aopDump()
10837
10838         * sdcc_vc.h: define PREFIX as "\\sdcc"
10839
10840 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10841         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10842
10843 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10844         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10845         - Rewrote the register banking algorithm.
10846         - Added pCode live-range analysis to registers (for now, only non-used and
10847         singly-used registers optimized away)
10848
10849         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10850
10851         * 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.
10852
10853 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10854         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10855
10856 2002-04-22  Michael Hope  <michaelh AT vroom>
10857
10858         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10859
10860         * configure.in (DD_COPT): Added include support required for gbdk.
10861
10862         * .version: Bumped version number just to increase it.
10863
10864         * src/SDCCmain.c: Added -nostdinc to the default options.
10865
10866 2002-04-15  Michael Hope  <michaelh AT vroom>
10867
10868         * device/lib/z80/printf.c (sprintf): Added.
10869
10870         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10871
10872         * src/z80/peeph.def: Added transpose redundent load rule.
10873
10874         * src/z80/main.c: Added force callee saves for jaune.
10875
10876         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10877
10878         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10879
10880 2002-03-28  Johan Knol  <johan AT balder>
10881
10882         * src/SDCCval.c: fixed bug #532436
10883
10884 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10885         * /src/port.h:
10886         Added "char *Processor" field to the port structure.
10887
10888         * /src/SDCCmain.c:
10889         Added -p option. Allows port dependent processor to be specified.
10890
10891         * all ports:
10892         Initialized the new field char *Processor field to NULL in all ports
10893
10894         * /src/pic/*:
10895         Compiler generated registers for interrupt context saving
10896         were not getting allocated.
10897
10898 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10899
10900         * /src/SDCCast.c:
10901         Fixed left shift. Will promote the left side of a left shift
10902         if a) left shifting more than size of operand or b) when assigned
10903         to something size > size of left side
10904
10905 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10906         * src/pic/*
10907         tons of changes. Register allocation has been
10908         rewritten. Added customization for the various PICs. Flow
10909         analysis is restructured. ...
10910
10911         * src/pic/device.h:
10912         Added
10913
10914         * src/pic/device.c:
10915         Added. device.c is a PIC port hack to accomodate variations
10916         in PIC devices.
10917
10918 2002-03-13  Michael Hope  <michaelh AT vroom>
10919
10920         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10921
10922 2002-03-04  johanknol  <johanknol AT manik>
10923
10924         * /src/SDCCval.c: fixed
10925
10926         const unsigned char arr[][2] = { { 0, 1 } };
10927         t18.c:1: error: Initializer element is not constant
10928
10929 2002-03-04  bela  <bela AT manik>
10930
10931         * /device/include/mcs51reg.h:
10932         ds89c420 register definition update
10933
10934 2002-03-03    <johan AT FRIJA>
10935
10936         * support/Util/SDCCerr.c: did something, but don't no why anymore
10937
10938         * support/regression/tests/bug-524691.c: made it a little less shy
10939
10940         * src/SDCCast.c (decorateType): fixed bug #524697
10941
10942         * src/SDCCast.c: made some lineno improvements
10943
10944         * src/SDCCval.c (getNelements): changed warning to error
10945
10946         * src/SDCCglue.c (printIvalArray): changed warning to error
10947
10948         * src/SDCCicode.c: fixed a warning for mingw
10949
10950         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10951
10952         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10953
10954 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10955
10956         * src/ds390/peeph.def:
10957         Added some more peephole rules
10958
10959         * src/ds390/gen.c: Various fixes & enhancements
10960
10961         * src/SDCClrange.c, src/SDCClrange.h:
10962         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10963
10964         * src/ds390/ralloc.c:
10965         various fixes & enhancements (ds390) specific
10966
10967         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10968         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10969         from rallocs.
10970
10971         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10972
10973 2002-03-02    <johan AT FRIJA>
10974
10975         * src/SDCCast.c (decorateType): fixed bug #524708
10976
10977         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10978
10979         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10980
10981 2002-03-01  Michael Hope  <michaelh AT vroom>
10982
10983         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10984
10985         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10986
10987 2002-03-01    <johan AT FRIJA>
10988
10989         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
10990
10991         * src/SDCCast.c (decorateType): fixed bug #524209
10992
10993         * src/SDCCval.c (valNot): fixed bug #524195
10994
10995 2002-02-26    <johan AT balder>
10996
10997         * src/xa51/gen.c: fixed a warning
10998
10999         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
11000
11001         * src/SDCCast.c (decorateType): fixed bug #522534
11002
11003 2002-02-23    <johan AT balder>
11004
11005         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
11006
11007 2002-02-22    <johan AT balder>
11008
11009         * src/SDCCast.c: fixed bug #514865
11010
11011         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11012
11013 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11014
11015         * sdcc/src/SDCCloop.c:
11016         Previous fix was not good. basic blocks that have "break" or "return" are
11017         not really partof a loop , but live ranges used in these blocks should
11018         be live thru the entire loop, so set partOfLoop but don't add them to
11019         loop region
11020
11021 2002-02-21    <johan AT FRIJA>
11022
11023         * src/SDCCcse.c: fixed bug #514308
11024
11025 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11026
11027         * src/SDCCloop.c:
11028         Fixed BUG #519583. If a conditional block ended in a return/break
11029         statement inside a loop, it was not being considered part of the loop.
11030
11031         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11032
11033 2002-02-10  Karl Bongers <karl AT turbobit.com>
11034
11035         * debugger/*:
11036         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11037         with lots of comments and notes.
11038
11039         * device/examples/test2.c:
11040         Fix bug, "red" variable not being initialized(compiler complained).
11041
11042         * device/examples/Makefile, examples/test3.c:
11043         Add Makefile in device/examples folder, compiles test3.c
11044         for use as a multiple module SDCDB test case.
11045
11046         * sim/ucsim/cmd.src/cmdset.cc:
11047         Took out debug printfs in ucsim "next" command.
11048
11049         * sim/ucsim/xa.src:
11050         Karl and Johan start ucsim XA support.  Most dissassembly working,
11051         about 75% emulation done(plenty of work remaining).
11052
11053         * sim/ucsim/z80.src:
11054         Add Z80 support to ucsim, add test-ucz80 regression test,
11055         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11056         Notice z80 compiler fails on examples/test3.c/crc code.
11057
11058 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11059
11060         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11061         Added support for --parms-in-bank1
11062
11063         * src/ds390/peeph.def:
11064         added a few more peephole optimzations
11065
11066         * src/ds390/main.c:
11067         1) added __builtin_inp & __builtin_outp used to read in data of given length
11068            from a memory mapped port
11069         2) added __builtin_memcmp
11070         3) added __builtin_swapw swap bytes of a short
11071
11072         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11073         1) handle multiple send & receives from register bank1
11074         2) ralloc can now allocate DPTR1 to some liveRanges
11075
11076         * src/SDCCsymt.c, src/SDCCsymt.h:
11077         changes to handle multiple sends & receives
11078
11079         * src/SDCCptropt.h:
11080         added some pointer arithmetic optimization
11081
11082         * src/SDCCptropt.c:
11083         added some pointer arithmetic optimizations but not stable yet so not
11084         called from anywhere (will get this working shortly)
11085
11086         * src/SDCCopt.c: fixed for multiple sends & receives
11087
11088         * src/SDCCmain.c:
11089         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11090         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11091            set preprocessor defines (depending on options)
11092
11093         * src/SDCCicode.c, src/SDCCicode.h:
11094         changes made to handle multiple sends & receives
11095
11096         * src/SDCCglobl.h:
11097         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11098
11099         * src/SDCCcse.c, src/SDCCcse.h:
11100         added function findbackward def (to be used in upcoming optimization)
11101
11102         * src/SDCCcflow.c, src/SDCCcflow.h:
11103         added function returnAtEnd - to determine if a basic block terminates with
11104         a RETURN iCode
11105
11106         * src/SDCCast.c, src/SDCCast.h:
11107         added option parms-in-bank1
11108
11109         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11110         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11111         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11112         adjusted for --parms-in-bank1 option
11113
11114         * device/include/string.h:
11115         donot redefine "reentrant" keyword
11116
11117         * device/include/ds80c390.h: Added some more SFRs
11118
11119 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11120
11121         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11122
11123 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11124
11125         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11126
11127 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11128
11129         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11130
11131 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11132
11133         * Added --xram-movc option
11134
11135 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11136
11137         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11138
11139 2002-01-11  Johan Knol
11140
11141         * Added math lib of Jesus Calvino-Fraga
11142
11143 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11144
11145         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11146         * support/regression/Makefile: new target test-mcs51-stack-auto
11147         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11148
11149 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11150
11151         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11152
11153 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11154
11155         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11156
11157 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11158
11159         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11160
11161         * src/SDCCglue.h: add definition for printIvalChar()
11162
11163 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11164
11165         * src/SDCCast.c: fix #498138 by Johan
11166
11167         * src/SDCCglue.c: fix #498138 by Johan
11168
11169 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11170
11171         * support/regression/Makefile: fix clean
11172
11173         * support/regression/ports/ds390/support.c: fix transmission of last character
11174
11175 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11176
11177         * /sdcc/src/ds390/gen.c:
11178         a) improved computing address of stack variable
11179         b) took out some #if 0 code
11180         c) improved parmBytes adjustment
11181         d) improved genPlusIncr & genMinusIncr
11182         e) genCmp could generate bad code (when left assigned to DPTR)
11183         f) Fixed bug in hasInc
11184
11185         * /sdcc/src/ds390/ralloc.c:
11186         a) packRegsForSupport could mess up live information (Fixed)
11187         b) packRegsDPTRuse could be incorrect for left & right shift
11188
11189         * /sdcc/src/mcs51/ralloc.c:
11190         packRegsForSupport could mess up the live information (Fixed)
11191
11192         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11193
11194         * /sdcc/src/SDCCast.c:
11195         can reverse a loop even if function call is present as long
11196         as the loop control variable is local & is not passed as parameter
11197
11198 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11199
11200         * /sdcc/ChangeLog: *** empty log message ***
11201
11202         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11203         More builtin function additions for TININative
11204
11205         * /sdcc/src/ds390/ralloc.c:
11206         Had broken the regression testsuite
11207
11208         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11209
11210         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11211         Added funcattr hasStackParms will be set for reentrant functions when there
11212         are paramteres on the stack, this helps in minimizing frame pointer generation
11213         typeFromStr can handle function pointers now
11214
11215         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11216         *** empty log message ***
11217
11218 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11219
11220         * /src/ds390/gen.c, /src/ds390/main.c:
11221         More builtin function additions for TININative
11222
11223         * /src/ds390/ralloc.c:
11224         Had broken the regression testsuite
11225
11226         * /src/SDCCast.c: Fixed a bug in dumptree
11227
11228         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11229         Added funcattr hasStackParms will be set for reentrant functions when there
11230         are paramteres on the stack, this helps in minimizing frame pointer generation
11231         typeFromStr can handle function pointers now
11232
11233         * /doc/builtins.txt, /doc/TININative.txt:
11234         *** empty log message ***
11235
11236
11237 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11238
11239         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11240         ALPHA version for -mTININative
11241
11242         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11243         updated to reflect changes in the port structure
11244
11245         * /src/port.h:
11246         added function do_assemble (similar to do_link) if non-null this function
11247         will be called to do assembly (-mTININative) requires a multi command
11248         assembly
11249         added function genAssemblerEnd will be called to generate assembler Epilogue
11250
11251         * /src/SDCCsymt.c:
11252         added _JavaNative to debug info printing
11253
11254         * /src/SDCCmain.c: added option --tini-libid
11255         added port->do_assemble function (-mTININative) has a multi command assemble
11256
11257         * /src/SDCCglue.c: Disabled "constExpr" check
11258         added port->genAssemblerEnd function
11259
11260         * /src/SDCCglobl.h: Added option --tini-libid value
11261
11262         * /src/SDCCast.h:
11263         tookout optimizeCompare from the header (has no external references)
11264
11265         * /src/SDCCast.c: made one more function "static"
11266
11267 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11268
11269         * src/z80/mappings.i: Added z80asm support.
11270
11271         * src/z80/main.c: Added z80asm support on --asm=z80asm
11272
11273         * src/z80/gen.c: Fixed asm portability issues.
11274
11275         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11276
11277         * src/SDCCglue.c (printExterns): Added global/extern split.
11278
11279 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11280
11281         * support/regression/Makefile: added test for mcs51 model large
11282
11283         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11284
11285         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11286
11287 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11288
11289         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11290
11291 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11292
11293         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11294
11295         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11296
11297 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11298
11299         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11300
11301         * support/regression/tests/simplefloat.c: Port to mcs51.
11302
11303 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11304         * support/regression/tests/bug-485362.c: Added.
11305
11306         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11307
11308         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11309
11310         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11311
11312         * src/z80/gen.c (aopDump): Added a dump function.
11313
11314 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11315         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11316
11317         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11318
11319         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11320
11321         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11322
11323         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11324
11325         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11326
11327         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11328
11329         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11330
11331         * support/regression/ports/ds390/support.c: Use tinibios.
11332
11333         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11334
11335 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11336
11337         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11338         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11339
11340         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11341
11342         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11343
11344 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11345
11346         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11347
11348         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11349         (packRegsForIYUse): Created and optimised.
11350
11351 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11352
11353         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11354 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11355
11356         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11357
11358         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11359
11360         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11361
11362 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11363
11364         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11365
11366         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11367
11368 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11369
11370         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11371
11372         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11373
11374         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11375
11376 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11377
11378         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11379         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11380         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11381
11382         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11383
11384         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11385         (genNotFloat): Added.
11386         (genUminusFloat): Added.
11387
11388         * device/lib/z80/Makefile: Added floating pt stubs.
11389
11390         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11391
11392         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11393
11394         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11395
11396 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11397
11398         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11399
11400         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11401
11402         * sdcc/support/regression/Makefile: Add port ds390.
11403
11404         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11405
11406         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11407
11408         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11409
11410         * sdcc/support/regression/ports/ds390/support.c: Added.
11411
11412         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11413
11414         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11415
11416         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11417
11418 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11419
11420         * device/include/malloc.h: Added z80 and gbz80 support.
11421
11422         * device/lib/gbz80/heap.s: Added.
11423
11424         * device/lib/z80/heap.s: Added.
11425
11426         * device/lib/malloc.c: Added z80 and gbz80 support.
11427
11428         * support/regression/tests/malloc.c (testMalloc): Added.
11429
11430         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11431
11432         * support/regression/tests/bug-478094.c: Added.
11433
11434         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11435
11436 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11437
11438         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11439
11440         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11441
11442         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11443
11444         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11445
11446         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11447
11448 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11449
11450         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11451
11452 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11453
11454         * support/regression/tests/bug-477927.c: Added.
11455
11456         * src/z80/peeph.def: Added minor rules.
11457
11458         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11459
11460         * src/z80/peeph.def: Added jump optimisation modification.
11461
11462 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11463
11464         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11465
11466 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11467
11468         * support/regression/tests/funptrs.c: Added.
11469
11470 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11471
11472         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11473
11474 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11475
11476         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11477
11478         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11479
11480         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11481         (movLeft2ResultLong): Created.
11482
11483         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11484         (joinPushes): Added.  Joins two char pushes into a word push.
11485
11486 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11487
11488         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11489
11490         * support/makebin/Makefile (install): Added creation of dest dir.
11491
11492 2001-10-24 Karl Bongers <karl AT turbobit.com>
11493
11494         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11495
11496 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11497
11498         * src/z80/ralloc.c: Turned off faulty pack for one use.
11499
11500         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11501
11502         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11503
11504 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11505
11506         * support/regression/Makefile: Improved clean
11507
11508         * support/regression/ports/gbz80/spec.mk: Added clean
11509
11510         * support/regression/ports/host/spec.mk: Added clean
11511
11512         * support/regression/ports/z80/spec.mk: Added clean
11513
11514         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11515
11516         * support/regression/ports/mcs51/timeout.c: little improvements
11517
11518 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11519
11520         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11521
11522         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11523
11524         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11525
11526 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11527
11528         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11529
11530         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11531
11532 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11533         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11534
11535         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11536
11537         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11538
11539         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11540
11541         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11542
11543         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11544
11545         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11546
11547         * support/regression/tests/longor.c: Added.
11548
11549 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11550
11551         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11552
11553         * as/mcs51/aslink.h: define PATH_MAX
11554
11555         * as/mcs51/asm.h: define PATH_MAX
11556
11557         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11558
11559         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11560
11561         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11562
11563         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11564
11565         * src/SDCCglobl.h: define PATH_MAX
11566
11567         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11568
11569         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11570
11571 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11572
11573         * src/z80/gen.c (gencjneshort): Fixed
11574
11575         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11576
11577 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11578
11579         * support/regression/tests/bug-469671.c: Added.
11580
11581         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11582
11583 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11584
11585         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11586
11587         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11588
11589 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11590
11591         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11592
11593         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11594
11595         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11596
11597         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11598
11599         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11600
11601         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11602
11603         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11604
11605 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11606
11607         * 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.
11608
11609         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11610
11611         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11612
11613 2001-10-07    <johan AT FRIJA>
11614
11615         * device/lib/gets.c (gets): fixed the return value.
11616
11617 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11618         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11619
11620         * 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.
11621
11622         * 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.
11623
11624         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11625
11626         * src/pic/gen.c: Removed Safe_strdup.
11627
11628         * configure.in: Added option to enable libgc support.
11629
11630         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11631         (bitVectUnion): Optimised.
11632         (bitVectIntersect): Optimised.
11633         (bitVectBitsInCommon): Optimised.
11634         (bitVectCplAnd): Optimised.
11635
11636         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11637
11638 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11639
11640         * src/SDCCmain.c: distinguish between assembler debug and plain options
11641
11642         * src/avr/main.c:   remove standard assembler options
11643
11644         * src/ds390/main.c: remove standard assembler options
11645
11646         * src/mcs51/main.c: remove standard assembler options
11647
11648         * src/port.h: removed "PENDING" comment
11649
11650 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11651
11652         * src/device/lib/_mulint.c  : new, with assember functions
11653
11654         * src/device/lib/_mullong.c : new, with assember functions
11655
11656         * src/device/lib/_divuint.c : with assember functions
11657
11658         * src/device/lib/_divsint.c : with assember functions
11659
11660         * src/device/lib/_divulong.c: with assember functions
11661
11662         * src/device/lib/_divslong.c: with assember functions
11663
11664         * src/device/lib/_moduint.c : with assember functions
11665
11666         * src/device/lib/_modsint.c : with assember functions
11667
11668         * src/device/lib/_modulong.c: with assember functions
11669
11670         * src/device/lib/_modslong.c: with assember functions
11671
11672         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11673
11674         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11675
11676         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11677                                       replaced _mululong.c and _mulslong.c by _mullong.c
11678
11679 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11680
11681         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11682
11683 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11684
11685         * src/SDCCglue.c: test, if win32api is available for MINGW
11686
11687 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11688
11689         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11690         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11691         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11692         * support/regression/ports/host/spec.mk: removed GENERIC
11693         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11694         * support/regression/ports/z80/spec.mk: removed GENERIC
11695
11696 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11697
11698         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11699
11700         * support/regression/tests/bug-467035.c: Created.
11701
11702 2001-10-01    <johan AT FRIJA>
11703
11704         * src/SDCC.y: fixed bug #466586 part 1
11705
11706 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11707
11708         * SDCCicode.c: z80 has no generic pointers
11709         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11710
11711 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11712
11713         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11714
11715 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11716
11717         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11718
11719         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11720
11721 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11722
11723         * configure.in: Fixed up so that ucsim is only configured once.
11724
11725         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11726
11727         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11728         (getPathDifference): As above.
11729
11730         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11731
11732         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11733
11734 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11735         * .version: Updated to 2.3.1
11736
11737         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11738         Added copyright header.
11739
11740         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11741         (assemble): Added support for macro based assembler commands.
11742         (linkEdit): Added support for macro based linker commands.
11743         (preProcess): Changed the pre-processor to use macros.
11744         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11745         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11746
11747         * device/lib/z80/crt0.s: Added module name for debugging.
11748
11749 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11750
11751         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11752
11753         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11754
11755         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11756
11757         * src/Makefile.in: Added SDCCmacro and SDCCutil
11758
11759 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11760
11761         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11762
11763 2001-09-16    <johan AT FRIJA>
11764
11765         * 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.
11766
11767 2001-09-15    <johan AT FRIJA>
11768
11769         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11770         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11771
11772 2001-09-11    <johan AT FRIJA>
11773
11774         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11775
11776 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11777
11778         * support/regression/tests/bug-460444.c: Added test case.
11779
11780         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11781         (genCast): Added justification for all of the asserts.
11782
11783 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11784
11785         * support/regression/support.c: _xdata replaced by xdata
11786
11787         * support/regression/spec.mk: removed _generic
11788
11789 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11790
11791         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11792
11793         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11794         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11795
11796         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11797
11798         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11799
11800         * support/regression/tests/bug-460010.c: Added test case.
11801
11802         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11803
11804 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11805
11806         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11807
11808         * support/regression/testfwk.c: removed workaround for bug #436344
11809
11810         * support/regression/tests/bp.c: use less memory with mcs51
11811
11812         * support/regression/tests/bug-441448.c: use less memory
11813
11814         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11815
11816         * support/regression/collate-results.py: typo
11817
11818 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11819
11820         * support/regression/tests/fetchoverlap.c: Added new test case.
11821
11822         * support/regression/tests/bp.c: Added new test case.
11823
11824         * support/regression/tests/bug-448984.c: Added new test case.
11825
11826         * support/regression/tests/pow2shifts.c: Added new test case.
11827
11828         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11829         (genlshTwo): Fixed right shift for count > 8.
11830
11831         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11832
11833 2001-09-08    <johan AT FRIJA>
11834
11835         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11836
11837 2001-09-07    <johan AT FRIJA>
11838
11839         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11840
11841         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11842
11843 2001-09-06    <johan AT FRIJA>
11844
11845         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11846         * bernhard noted me at this: "() equals to (void)" (1.38)
11847
11848 2001-09-05    <johan AT FRIJA>
11849
11850         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11851
11852 2001-09-04    <johan AT FRIJA>
11853
11854         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11855
11856
11857 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11858
11859         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11860
11861 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11862
11863         * link/z80/aslink.h: Fixed path for PATH_MAX
11864
11865 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11866
11867         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11868
11869         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11870
11871         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11872
11873         * 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.
11874
11875 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11876
11877         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11878         (genCmp): Fixed up genCmp for the GB with longs.
11879
11880         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11881
11882         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11883
11884         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11885
11886         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11887
11888 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11889
11890         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11891
11892 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11893
11894         * 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.
11895
11896         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11897
11898 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11899
11900         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11901
11902         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11903
11904 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11905
11906   * sim/ucsim/configure:    little improvement of Cygwin-detection
11907   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11908   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11909   * support/regression/tests/bug-221100.c: small changes for mcs51
11910   * support/regression/tests/bug-221168.c: small changes for mcs51
11911   * support/regression/tests/bug-227710.c: small changes for mcs51
11912   * support/regression/tests/staticinit.c: small changes for mcs51
11913   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11914   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11915   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11916
11917 $Revision$