* support/regression/Makefile.in, support/regression/ports/host/spec.mk:
[fw/sdcc] / ChangeLog
1 2006-07-04 Borut Razem <borut.razem AT siol.net>
2
3         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in,
4           src/port.mk,
5           src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
6           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
7           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
8           reverted changes from 2006-07-03
9         * Makefile.common.in: added @CPPFLAGS@ to CPPFLAGS
10         * support/regression/Makefile.in, support/regression/ports/host/spec.mk:
11           added CPPFLAGS, used by the host port
12
13 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
14
15         * support/regression/valdiag/tests/switch.c,
16         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
17         * support/regression/tests/libmullong.c: fixed for host
18         * support/regression/ports/host/spec.mk: disable all warnings for host,
19         SDCC runs with --less-pedantic too
20
21 2006-07-03 Borut Razem <borut.razem AT siol.net>
22
23         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
24           defined CPPFLAGS
25         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
26         * src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
27           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
28           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
29           include ../port.mk
30         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
31           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
32           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
33           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
34
35 2006-07-02 Raphael Neider <rneider AT web.de>
36
37         * src/pic16/devices.inc,
38         * device/include/pic16/pic18fregs.h,
39         * device/include/pic16/pic18f4550.h,
40         * device/lib/pic16/pics.all,
41         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
42
43 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
44
45         * as/hc08/lkaomf51.c (OutputName),
46         * as/mcs51/lkaomf51.c (OutputName),
47         * as/z80/asmain.c (asmbl),
48         * src/ds390/main.c (asmLineNodeFromLineNode),
49         * src/hc08/ralloc.c (hc08_assignRegisters),
50         * src/mcs51/main.c (asmLineNodeFromLineNode),
51         * src/xa51/ralloc.c (checkRegMask),
52         * src/xa51/gen.c (emitcode),
53         * src/z80/gen.c (_emit2),
54         * src/SDCCast.c (searchLitOp),
55         * src/SDCCglobl.h,
56         * support/packihx/packihx.c,
57         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
58         * src/ds390/gen.c (aopPutUsesAcc),
59         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
60         * support/regression/tests/libmullong.c (mullong_wrapper),
61         * src/SDCCsymt.c (powof2),
62         * src/SDCCast.c,
63         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
64         * src/SDCCsymt.h: added TYPE_TARGET_*
65         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
66         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
67         SDCCast because 1) header problems 2) this is the right place
68         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
69         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
70         prototype
71
72 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
73
74         * src/SDCCicode.h: removed buggy semicolon in unused macro
75         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
76         search for previous definiton of auto symbols too,
77         (findPrevUse): fixed logic of emitWarnings
78
79 2006-06-26 Raphael Neider <rneider AT web.de>
80
81         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
82           PCLATH and PCLATU on interrupts, potentially fixes #1505141
83
84 2006-06-25 Raphael Neider <rneider AT web.de>
85
86         * device/lib/pic/libm: NEW, added math library functions
87         * device/lib/pic/libsdcc: NEW; added float support functions
88         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
89         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
90           NEW, added math related headers
91         * device/include/asm/pic/features.h: NEW
92         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
93           (popGet): allow larger offsets for AOP_PCODE,
94           (genDataPointerSet): handle literals explicitly, more debug output,
95           (genAssign): fixed for float using aopLiteral ;-)
96         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
97           GOTO initialisation routine
98         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
99           flag on registers, fixes #1469043 (local variables do not work)
100         * src/pic/main.c (_pic14_do_link),
101         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
102           available
103
104 2006-06-25 Borut Razem <borut.razem AT siol.net>
105
106         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
107           characters printed (not including the trailing '\0' used to end
108           output to strings). Problem detected in regression test bug-927659.c.
109           NOTE: printf() family functions should return int instead
110           unsigned int!
111         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
112           specifier are printed as themselves
113         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
114           support flags, width and precision specifiers
115
116 2006-06-24 Borut Razem <borut.razem AT siol.net>
117
118         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
119           to the list of sdcc tagrets not supporting bit type
120         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
121           testfor pic16 due to bug:
122           [ 1511794 ] pic16: regression test bug-895992.c fails
123
124 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
127         * src/SDCCglue.c (initPointer), fixed bug 1496419
128         * support/regression/tests/bug1496419.c: new, added
129
130 2006-06-22 Borut Razem <borut.razem AT siol.net>
131
132         * support/regression/ports/pic16/support.c: use gpsim usart module from
133           libgpsim_modules library
134
135 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
136
137         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
138         IP0H to IPH0.
139
140 2006-06-19 Raphael Neider <rneider AT web.de>
141
142         * src/pic/glue.h,src/pic16/glue.h: added prototypes
143         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
144           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
145           (pic14printExterns,pic14printPublics,pic16printPublics,
146           pic16_printExterns): use new functions to emit symbols
147           (picglue,pic16glue): emit publics before emitting externs
148         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
149           locally defined functions to avoid bug #1443651
150         * support/regression/tests/bug-716242.c: removed pic16 workaround
151         * support/regression/ports/pic16/spec.mk: ignore errors during build
152
153 2006-06-19 Raphael Neider <rneider AT web.de>
154
155         * src/pic/glue.h: added pic14aopLiteral prototype
156         * src/pic/glue.c (pic14aopLiteral): return unsigned int
157         * src/pic/gen.c: removed stdint.h dependency
158           (aopGet): use Safe_strdup()
159           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
160           (genDataPointerSet): use pic14aopLiteral()
161         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
162           for pic16; thanks to Bernhard and Maarten
163
164 2006-06-18 Borut Razem <borut.razem AT siol.net>
165
166         * support/regression/tests/structflexarray.c: flexible array members
167           not supported by gcc < 3
168         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
169           GUI tool by default
170         * src/pic/gen.c: don't include [p]strdin.h on solaris
171         * support/Util/pstdint.h: addad svn attributes
172         * support/regression/tests/constantRange.c,
173           support/regression/tests/rotate.c: include inttypes.h instead
174           stdint.h on solaris, addad svn attributes
175
176 2006-06-18 Raphael Neider <rneider AT web.de>
177
178         * src/SDCCsymt.c (initCSupport): change return type of divschar to
179           int for PIC16
180         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
181           (pic16_genMinusBits): simplified sign-extension
182           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
183             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
184             adjusted to correctly handle mixed-signed operands, disabled
185             now unused multiplciation routines
186         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
187           (assignResultValue): added argument denoting the size of the result
188             as returned by the function (fixes upcasts in assigning from
189             function calls: char foo(); int i = foo();)
190           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
191             function result to assignResultValue
192           (genMult): disabled inlined multiplication code
193           (genDiv): augmented to also handle the modulus operator, fixed to
194             handle mixed-signed operands correctly
195           (genMod): simply call genDiv, disabled unused code
196           (genAssign): fixed missing (sign-)extension on result
197         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
198             valid char operands, allow signed operands for native code, added
199             division and modulo operator handling
200         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
201
202         As a consequence, onebyte.c (if split into two files) and muldiv.c
203         pass regression tests.
204
205 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
206
207         * doc/Makefile.in: two runs of makeindex seem needed to get
208         correct page references in the index of sdccman.pdf
209         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
210
211 2006-06-17 Borut Razem <borut.razem AT siol.net>
212
213         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
214
215 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
216
217         * doc/sdccman.lyx: updated, added (porting source code, debugging),
218         mentioned ec2drv and paulmon
219
220 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
221
222         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
223           consecutive abs areas
224           (find_empty_space, allocate_space): added map to handle codemap or
225            xdatamap,
226           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
227            absolute idata and xdata
228         * as/mcs51/lkmem.c (summary2): updated legend
229
230 2006-06-16 Raphael Neider <rneider AT web.de>
231
232         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
233
234 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
235
236         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
237           1208515
238         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
239
240 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
241
242         * src/port.h (struct PORT): added field gp_tags, to hold the tag
243         value of generic pointers,
244         * src/avr/main.c,
245           src/ds390/main.c,
246           src/hc08/main.c,
247           src/izt/i186.c,
248           src/izt/tlcs900h.c,
249           src/mcs51/main.c,
250           src/pic/main.c,
251           src/pic16/main.c,
252           src/xa51/main.c,
253           src/z80/main.c: PORT structure, added elements for gp_tags field,
254         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
255         fields in the PORT structure of each port,
256         * src/SDCCast.c (decorateType): allow processing of generic pointers
257         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
258         S_FIXED symbols
259
260 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
261
262         * link/z80/lkgb.c,
263         * link/z80/lkgg.c,
264         * src/pic16/gen.c,
265         * src/pic16/main.c,
266         * src/pic16/pcode.c,
267         * src/pic/main.c,
268         * src/pic/pcoderegs.c,
269         * src/SDCCicode.c,
270         * src/SDCCmain.c,
271         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
272           bug 1504689 on minGW
273
274 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
275
276         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
277
278 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
279
280         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
281
282 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
283
284         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
285           for optimization
286
287 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
288
289         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
290         to a char variable. Fixed bug #1504211
291         * device/include/pic16/adc.h,
292         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
293         and fixed bug #1364390
294
295 2006-06-10 Borut Razem <borut.razem AT siol.net>
296
297         * CVSROOT: removed the CVS left-over
298
299 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
300
301         * as/hc08/asmain.c (asexit),
302         * as/hc08/lkmain.c (lkexit),
303         * as/mcs51/asmain.c (asexit),
304         * as/mcs51/lkmain.c (lkexit),
305         * src/SDCCglue.c (DEFSETFUNC),
306         * src/SDCCmain.c (linkEdit, assemble),
307         * support/librarian/sdcclib.c (AddRel),
308           replaced unlink() by standard C remove()
309         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
310         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
311           gatherImplicitVariables): new, added to fix bug 608752,
312           (createFunction): added gatherImplicitVariables()
313         * src/SDCCast.h: added createRMW prototype
314         * src/SDCCsymt.h (struct symbol): added infertype
315         * support/regression/tests/bug608752.c: new, added
316
317 2006-06-10 Raphael Neider <rneider AT web.de>
318
319         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
320           multibyte dummy reads (fixes #1503234)
321
322 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
323
324         * device/include/mcs51/compiler.h: new, added header file to enable
325           creating common sfr definition header files for different compilers
326
327 2006-06-05 Raphael Neider <rneider AT web.de>
328
329         * src/pic16/{pcode.h,genarith.c}:
330           introduced pCodeOp combining any two pCodeOps (previously only
331           two register operands could be combined), removed pcop2 from
332           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
333         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
334         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
335           rewritten to use new PO_TWO_OPS
336         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
337         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
338           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
339           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
340           (pic16_get_op): embraced return arg to allow #define return(x),
341             added new case for combined opcodes
342           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
343           (pic16_pCode2str,pic16_getRegFrompCodeOp,
344            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
345
346 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
347
348         * src/SDCCval.c (checkConstantRange): added
349         * src/SDCCval.h: added checkConstantRange
350         * support/Util/SDCCerr.c,
351         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
352         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
353         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
354         * src/SDCCast.c (decorateType): added checkConstantRange,
355         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
356         can be emitted with the correct always true/false warning,
357         added optimization for double '!';
358         result of decorateType() must be assigned back to the tree, because
359         decorateType() can change the tree
360         * src/SDCCicode.c (geniCodeLogic),
361         (geniCodeAssign): replaced new checkConstantRange, added warnings,
362         (checkConstantRange): removed, it was only a fragment which never
363         emitted a warning
364         * src/SDCCsymt.c (computeType): fixed promotion for
365         "-1 < (unsigned bit) b"
366         * src/pic/ralloc.c (packRegsForAssign),
367         * src/pic16/ralloc.c (packRegsForAssign),
368         * src/hc08/ralloc.c (packRegsForAssign),
369         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
370         from mcs51
371         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
372         * support/regression/tests/constantRange.c: added
373         * support/valdiag/tests/constantRange.c: added
374         * support/valdiag/valdiag.py: added -DPORT_HOST=1
375
376 2006-06-02 Borut Razem <borut.razem AT siol.net>
377
378         * support/regression/ports/pic16/support.c: increase stack size
379           to 255 bytes
380         * support/regression/Makefile.in: sort tests by name so that the
381           resutlts can be compared on different machines / platforms
382
383 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
384
385         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
386         * src/ds390/gen.c (emitLabel): new, added,
387           (genDjnz): fixed stack overflow bug,
388           (throughout): cosmetic changes to sync with mcs51/gen.c,
389           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
390         * src/mcs51/gen.c (genEndFunction): small optimization,
391           (throughout): cosmetic changes to sync with ds390/gen.c
392
393 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
394
395         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
396           (_print_format): fixed printing pointers
397         * src/mcs51/gen.c (emitLabel, movb): new, added,
398           (genAssign): small optimization,
399           (genDjnz): fixed stack overflow bug,
400           (throughout): replaced sprintf with SNPRINTF,
401           replaced mcs51_regWithIdx with REG_WITH_INDEX,
402           replaced emitcode("mov", "b,...") with MOVB(...),
403           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
404           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
405         * src/mcs51/peeph.def: added rules 140 and 264
406         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
407           so they may get optimized into registers
408
409 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
410
411         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
412           immediately when encountered,
413           (printUsage): always use stderr even on windows
414
415 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
416
417         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
418         (processParms): fixed bug #1247551
419         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
420         parseCmdLine, main): print '--version' to stdout,
421         print 'help' to stdout if --help is given,
422         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
423         arguments are given; fixed --help
424
425 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
426
427         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
428         * support/regression/tests/bug-1493710.c: added
429
430 2006-05-27 Borut Razem <borut.razem AT siol.net>
431
432         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
433           static instead auto
434         * support/regression/ports/pic16/support.c: increase stack size
435           from default 64 bytes to 128 bytes
436         * support/regression/tests/staticinit.c,
437           support/regression/tests/float.c: regression tests fully enabled
438           for pic16 port by putting the initialized data arrays into the code
439           section
440         * support/regression/ports/pic16/spec.mk: don't link default libraries.
441           This was changed by mistake in the previous version.
442
443 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
444
445         * src/pic16/gen.c (genFunction, genEndFunction): some
446         beautifications, fixed bug with falsely restoring FSR2 in large
447         stack model, thanks to Beau E. Cox for reporting the bug
448
449 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
450
451         * debugger/mcs51/break.c,
452         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
453           use %p to print pointers, made address variables unsigned
454         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
455         * debugger/mcs51/symtab.c (parseSymbol): must return something
456         * src/mcs51/gen.c (aopForSym): small optimization,
457            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
458           (freeAsmop): added missing break,
459           (aopPut): removed parameter bvolatile, determine it inside the function,
460           (saveRegisters, unsaveRegisters): small optimization,
461           (genIpush): removed pointless check,
462           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
463           replaced sprintf with SNPRINTF,
464           replaced strcpy with strncpyz,
465           updated aopPut calls,
466           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
467         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
468
469 2006-05-24 Borut Razem <borut.razem AT siol.net>
470
471         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
472           modification of test for the pic16 port, put the array to the code
473           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
474
475 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
476
477         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
478         * support/Util/pstdint.h: added
479
480 2006-05-22 Borut Razem <borut.razem AT siol.net>
481
482         * src/regression/Makefile: removed bool2.c test, added -q linker option
483         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
484           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
485           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
486           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
487           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
488           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
489           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
490           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
491           define SUPPORT_BIT_TYPES 0, removed unused bit variables
492
493 2006-05-22 Raphael Neider <rneider AT web.de>
494
495         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
496           bug #1492360 (problematic due to generic pointers, see code)
497
498 2006-05-22 Borut Razem <borut.razem AT siol.net>
499
500         * support/regression/ports/pic16/specs.mk: removed stack size linker
501           directive
502         * support/regression/tests/array.c,
503           support/regression/tests/bitopcse.c,
504           support/regression/tests/bug-908454.c,
505           support/regression/tests/malloc.c: modified for pic16 regression test
506         * support/regression/tests/bitfields.c:
507           pic16 - excluded bitfileds of size > 8
508         * support/regression/tests/bp.c: pic16 - reduced data size
509         * support/regression/tests/bug-221100.c: pic16 - reduced data size
510         * support/regression/tests/bug-460010.c:
511           pic16 - used the absolute address the fits in memory
512         * support/regression/tests/bug-716242.c:
513           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
514         * support/regression/tests/float.c:
515           pic16 - excluded - data size too big
516         * support/regression/tests/onebyte.c:
517           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
518         * support/regression/tests/shifts.c:
519           pic16 - function names probably have to differ in first X characters
520           (gpasm limitation?)
521         * support/regression/tests/staticinit.c:
522           pic16 - excluded some tests due error: no target memory available for
523           section ".idata"
524
525 2006-05-22 Borut Razem <borut.razem AT siol.net>
526
527         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
528           second try. Thanks Stas Sergeev once more.
529
530 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
531
532         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
533           (genLeftShift, genRightShift): fixed bug 1491627
534         * src/hc08/peeph.def (rules 7, 8.x): added
535         * support/regression/tests/shifts.c (ShiftLeftByParam,
536           ShiftRightByParam, testShiftByParam): added to test variable shifting
537
538 2006-05-20 Raphael Neider <rneider AT web.de>
539
540         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
541         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
542           (allocReg): add only new registers to dynAllocRegs,
543           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
544             #1489055, #1445850, and probably #1483693
545
546 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
547
548         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
549         bug in for-loop that didn't emit the last of CONFIG and ID registers
550
551 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
552
553         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
554           with offset
555         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
556           1489016, 1434401 and 1490124
557         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
558           1489016, 1434401 and 1490124
559
560 2006-05-17 Borut Razem <borut.razem AT siol.net>
561
562         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
563           thanks Stas Sergeev
564
565 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
566
567         * device/include/mcs51/P89c51RD2.h,
568         * device/include/mcs51/P89LPC901.h,
569         * device/include/mcs51/P89LPC922.h,
570         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
571
572 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
573
574         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
575         to fix missing stack pragma in compiled binary object file,
576
577 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
578
579         * support/packihx/configure.in,
580         * support/packihx/configure: removed warning, autoconf >= 2.5x can
581         determine sizeof basic types even while cross compiling
582
583 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
584
585         * src/avr/gen.c (aopop),
586         * src/ds390/gen.c (aopOp),
587         * src/hc08/gen.c (aopOp),
588         * src/mcs51/gen.c (aopop),
589         * src/pic16/gen.c (pic16_aopOp),
590         * src/pic/gen.c (aopOp),
591         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
592         if size of operand is smaller than spill location
593
594 2006-05-12 Borut Razem <borut.razem AT siol.net>
595
596         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
597           have to have CR/LF line endings even if they are checked out on *nix
598           or on WIN32 in cygwin binmode
599
600 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
601
602         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
603         * device/include/ds80c390.h: added sfr16 definitions
604         * src/ds390/gen.c,
605         * src/ds390/gen.h,
606         * src/ds390/main.c,
607         * src/ds390/ralloc.c,
608         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
609           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
610           bit returning functions
611         * support/regression/tests/sfr16.c: enabled test on ds390
612
613 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
614
615         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
616         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
617
618 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
619
620         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
621         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
622           (cl_address_space constructor): removed expensive initialization,
623           (cl_address_space::get_cell): extended for late initialization,
624           (cl_address_space::*): use late initialization,
625           (cl_address_decoder::activate): removed expensive initialization,
626           This reduced regression test running time by 25%
627
628 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
629
630         * packihx/,
631         * configure.in,
632         * configure,
633         * sdcc.dsw,
634         * Makefile.bcc,
635         * Makefile.in,
636         * support/packihx/Makefile.in,
637         * support/packihx/clean.mk,
638         * support/packihx/Makefile.bcc,
639         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
640
641 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
642
643         * src/SDCCval.c (valNot): fix for regression test failure
644           of not.c on big endian hosts
645
646 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
647
648         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
649
650 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
651
652         * device/lib/mcs51/Makefile.in: changed string comparison operator
653           to = for POSIX compliance; == is bash extension
654
655 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
656
657         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
658           kosmonaut_pirx
659
660 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
661
662         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
663         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
664         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
665         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
666         bug report #1478657,
667
668 2006-05-05 Borut Razem <borut.razem AT siol.net>
669
670         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
671           making the html
672
673 2006-05-02 Borut Razem <borut.razem AT siol.net>
674
675         * doc/Makefile.in: removed *.ind dependency since there is no rule to
676           create *.ind, which made make to fail if invoked with -j 2
677
678 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
679
680         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
681           Hubert Sack for patch 1479782
682
683 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
684
685         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
686
687 2006-05-01 Raphael Neider <rneider AT web.de>
688
689         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
690           (create_pic): store only prefix-free device name,
691           (init_pic): check for device names with "16" prefix,
692           (list_valid_pics),
693         * src/pic/device.h (struct PIC_device),
694         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
695             stored device name,
696         * device/include/pic/pic12f{635,675,629,683}.h,
697         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
698         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
699         * device/include/pic/pic16f505.h,
700         * device/lib/pic/libdev/pic16f505.c: removed
701         * device/include/pic/pic14devices.txt: added support for pic12f
702             devices, removed unsupported non 16-bit devices
703             [above changes provided by patch from Zik Saleeba]
704         * src/pic/*, src/pic16/*, device/include/pic16/*,
705           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
706
707 2006-05-01 Borut Razem <borut.razem AT siol.net>
708
709         * configure.in, configure, doc/Makefile.in:
710           sync with nightly build makefile - latex, dvipdf and dvips
711           not needed any more
712
713 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
714
715         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
716         in the library source
717
718 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
719
720         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
721
722 2006-04-28 Raphael Neider <rneider AT web.de>
723
724         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
725         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
726           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
727         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
728
729 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
730
731         * device/lib/pic/libdev/Makefile.in,
732         * device/lib/hc08/Makefile.in,
733         * device/lib/gbz80/Makefile.in,
734         * device/lib/z80/Makefile.in,
735         * device/lib/ds390/Makefile.in,
736         * device/lib/ds400/Makefile.in: added srcdir to include search path,
737         thanks to Borut for the bug report
738         * configure.in,
739         * configure: always create doc/Makefile independent from --enable-doc
740         * Makefile.in: always install from directory doc independent from
741         --enable-doc
742         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
743         removed
744         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
745         * doc/Makefile.in: install *.txt if present
746         * device/include/Makefile.in (install): added installation of pic/*.inc
747         and pic/*.txt files again, they were erroneously removed
748
749 2006-04-28 Raphael Neider <rneider AT web.de>
750
751         * src/pic/{gen.c,main.h,pcode.c},
752         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
753             concerning signedness with casts
754
755 2006-04-28 Raphael Neider <rneider AT web.de>
756
757         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
758             definition of an interrupt handler,
759         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
760             interrupt handler stuff from picglue() to separate routine,
761           (picglue): enabled definition of intr handlers in files w/o main()
762
763 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
764
765         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
766           compilation with MSVC 2005 Express Edition (VC8)
767
768 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
769
770         * device/lib/Makefile: fixed build of gbz80 lib
771
772 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
773
774         * support/regression/tests/bug-460010.c,
775         * support/regression/tests/bug-524691.c,
776         * support/regression/tests/bug-716242.c: removed conditional defines
777           that are already in testfwk.h
778
779 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
780
781         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
782           (AccAXRsh1): added, shift right by 1,
783           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
784            AccAXLrl1
785         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
786
787 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
788
789         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
790         remove cast to same type
791         * src/SDCCast.c (decorateType): fix for RFE 1475742,
792         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
793         * as/z80/Makefile,
794         * link/z80/Makefile: removed, they have moved to
795         Makefile.in files
796         * configure,
797         * configure.in: replaced duplicate message about ucsim by missing sdcpp
798         * install-sh: fix bug #1204398 by setting umask 0022
799         * device/lib/Makefile: separate build of z80 and gbz80 lib
800
801 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
802
803         Enabled VPATH feature: changed nearly all Makefiles (149 files).
804         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
805
806         One basic decision: e.g. src/clean.mk includes further files. In order
807         to make this work there are two solutions:
808         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
809           run configure on them. This way they can use
810           'include $(srcdir)/port-clean.mk'
811         - always include clean.mk by the Makefile at the same level. To avoid
812           that `make clean` tries to include and build Makefile.dep the
813           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
814           implemented, because now even `make uninstall` doesn't create
815           Makefile.in. clean.mk could be eliminated by pasting it in
816           Makefile.in.
817
818         * debugger/mcs51/Makefile.in: build own objects from library sources
819         (SLIB, SDCC) in current directory
820
821         * configure, configure.in: renamed --disable-device-lib-build in
822         --disable-device-lib; added --enable-doc, the required tools are
823         searched by configure; added result message; the toolchain for the
824         belonging ports are now only built, if the port is enabled.
825
826         * support/regression/*: all output is written in directory gen, because
827         the fwk and ports directories don't livet in the build tree using vpath
828
829         * doc/sdccman.lyx: renamed --disable-device-lib-build to
830         --disable-device-lib, added --enable-doc, added section VPATH
831
832         * sim/ucsim/configure.in,
833         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
834         z80 are enabled by default
835
836 2006-04-24 Raphael Neider <rneider AT web.de>
837
838         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
839             to config word, "pic14_"-prefixed some extern functions
840           (pic14_emitConfigWord): emit __config directive(s) if assignment to
841             config word has been found
842         * src/pic/device.h: added prototypes
843         * src/pic/pcode.c: added "pic14_"-prefix where needed
844         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
845             fixup
846         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
847             words,
848           (pic14emitRegularMap): ignore config words,
849           (pic14createInterruptVect): moved generating __config directives away
850           (picglue): have __config directives emitted
851
852 2006-04-24 Borut Razem <borut.razem AT siol.net>
853
854         * doc/Makefile: sync with nightly build makefile
855
856 2006-04-24 Raphael Neider <rneider AT web.de>
857
858         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
859             registers that have not been assigned proper liveranges,
860             fixes #1469504 and #1474602,
861           (pCodeRegOptimizeRegUsage): fixed typo in comment
862
863 2006-04-24 Borut Razem <borut.razem AT siol.net>
864
865         * device/examples/main8051.c: deleted - it was removed from CVS
866           24.mar.2000 and after that modified 18.feb.2001, so it reappered
867           after the transition to Subversion
868         * src/SDCCalloc.h: deleted - it was removed  from CVS
869           3.feb.2001 and after that modified 18.feb.2001, so it reappered
870           after the transition to Subversion
871         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
872           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
873           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
874           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
875
876 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
877
878         * as/asx8051.dsp: added mcs51/strcmpi.h
879         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
880         * as/hc08/aslink.h: updated lnksect prototype
881         * as/hc08/asm.h,
882         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
883         * as/hc08/asmain.c,
884         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
885           (newdot): handle A_ABS
886         * as/hc08/asout.c,
887         * as/mcs51/asout.c (outarea): output address
888         * as/hc08/lkaomf51.c,
889         * as/mcs51/lkaomf51.c: disabled unused array UsageType
890         * as/hc08/m08pst.c,
891         * as/mcs51/i51pst.c,
892         * as/z80/z80pst.c: "ABS" is not A_OVR
893         * as/hc08/lkarea.c (newarea): read a_addr,
894           (lnkarea): added codemap array, sort absolute areas to the front,
895            combine all GSINITx/GSFINAL,
896           (find_empty_space, allocate_space): new functions,
897           (lnksect): return next address, handle absolute sections
898         * as/mcs51/lkarea.c (newarea): read a_addr,
899           lnksect2 prototype changed,
900           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
901           (find_empty_space, allocate_space): new, factored out of lnksect2,
902           (lnksect2): return next address, handle absolute sections
903         * as/hc08/lkhead.c,
904         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
905         * as/hc08/lklibr.c (addfile, fndsym),
906         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
907           index out of range and detect both '\' and '/'
908         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
909         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
910           regression tests (ds390 cannot return bool yet)
911         * doc/sdccman.lyx: changed version number, document changed --no-peep,
912           document critical interrupts on z80, document changed SDCC define
913         * src/asm.c (_asxxxx_mapping): fixed .org directive,
914           (_a390_mapping): added .org directive
915         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
916           (genMultOneByte): fixed warnings
917         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
918           ones
919         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
920         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
921           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
922         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
923         * src/pic16/main.c: removed newReg prototype
924         * src/pic16/pcode.c,
925         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
926           warnings
927         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
928           ones
929         * src/pic16/ralloc.c
930         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
931           to fix warnings
932         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
933           from short to PIC_OPTYPE
934         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
935         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
936           optype from short to PIC_OPTYPE
937         * src/port.h: made int_size unsigned to fix warnings
938         * src/SDCC.y: fixed warning on MSVC
939         * src/SDCCicode.c (getArraySizePtr): return unsigned int
940         * src/SDCCopt.c (convertToFcall): fixed warnings
941         * src/SDCCsymt.h: removed double prototype for genSymName
942         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
943           offset int to fix warnings
944
945 2006-04-22 Borut Razem <borut.razem AT siol.net>
946
947         * doc/sdccman.lyx, */Makefile, */Makefile.in:
948           references to CVS replaced with Subversion
949
950 2006-04-21 Borut Razem <borut.razem AT siol.net>
951
952         * doc/sdccman.lyx, */Makefile, */Makefile.in:
953           references to CVS replaced with Subversion
954
955 2006-04-19 Borut Razem <borut.razem AT siol.net>
956
957         * src/version.awk: adapted for svn
958         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
959           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
960           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
961           /binutils-avr/etc/*.vi, *.jin: removed all properties
962           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
963
964 2006-04-19 Borut Razem <borut.razem AT siol.net>
965
966         * CVS to Subversion migration completed
967
968 2006-04-18 Borut Razem <borut.razem AT siol.net>
969
970         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
971           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
972
973 2006-04-17 Borut Razem <borut.razem AT siol.net>
974
975         * device/include/Makefile.in: added pic/*.inc to the installation
976
977 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
978
979         * support/regression/collate-results.py: fixed output in case of
980         a valdiag error
981         * support/regression/generate-cases.py: fixed splitting of pathnames
982         with dots
983         * as/hc08/lklibr.c (addfile),
984         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
985
986 2006-04-11 Raphael Neider <rneider AT web.de>
987
988         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
989         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
990         * src/pic16/pcode.c (assignValnums): fixed #1460578
991
992 2006-04-11 Raphael Neider <rneider AT web.de>
993
994         * device/lib/pic/libdev/*.c,
995         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
996           fixes #1468739, enables compilation in --std-c99 mode
997         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
998
999 2006-04-11 Raphael Neider <rneider AT web.de>
1000
1001         * src/pic/device.c (find_device): removed debug output
1002           (list_valid_pics): enabled verbose listing of supported devices
1003         * device/include/stdbool.h: define bool as char for pic14/16 as well
1004
1005 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1006
1007         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
1008
1009 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1010
1011         * .version: bumped version to 2.5.6
1012         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
1013
1014 2006-04-06 Raphael Neider <rneider AT web.de>
1015
1016         * .version: bumped version to 2.5.6 (pic14 ABI changed)
1017         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
1018         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
1019           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1020             pic14_constructAbsMap
1021           (pic14printPublics): declare absolute global symbols as global
1022           (pic14createInterruptVect),
1023         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1024           (newReg): assume new registers unused, use correct name in
1025             hashtable (reg->name instead of name), more debugLog output
1026         * src/pic/device.h (PIC_device): added fields for verbose output
1027         * src/pic/device.c: moved device definition to pic14devices.txt,
1028             added routines for runtime parsing of pic14devices.txt,
1029             added support for second config word
1030         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1031           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1032           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1033           (_pic14_parseOptions): moved pCodeInitRegisters here
1034           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1035         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1036           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1037             handling the pseudo stack
1038         * device/lib/Makefile.in: ignore failures in objects-pic16,
1039         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1040         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1041         * device/lib/pic/Makefile.subdir,
1042         * device/lib/pic16/Makefile.subdir: improved clean rules
1043         * device/lib/pic/libdev/: NEW, pic14 device libraries
1044         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1045         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1046         * device/include/Makefile.in: create subdir and install pic14 headers
1047         * device/include/pic/p16f_common.inc: removed unused declarations
1048         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1049             PICs from inc2h.pl v1.6,
1050             replaced BIT_AT macros with struct declarations
1051         * device/include/pic/pic14devices.txt: definition of supported devices,
1052             all above improvements contributed by Zik Saleeba, thanks
1053         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1054         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1055             headers
1056
1057 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1058
1059         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1060         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1061           thanks to Charles Olds
1062
1063 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1064
1065         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1066
1067 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1068
1069         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1070         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1071         * support/regression/bug1464657.c: added, new test
1072
1073 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1074
1075         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1076           version number
1077
1078 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1081           --no-peep and --peep-file <file> are used don't use default rules but
1082           do use the <file>
1083
1084 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1085
1086         * src/mcs51/gen.c (genCall): fixed bug 1457608
1087
1088 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1089
1090         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1091         changes seem to cause (trigger?) problems with the build system.
1092
1093 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1094
1095         * src/SDCCpeeph.c (operandsLiteral): new, added,
1096           (callFuncByName): inserted operandsLiteral
1097         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1098
1099 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1100
1101         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1102         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1103
1104 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1105
1106         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1107           implemented patch 1120823 Thanks to Willy De la Court (normal
1108           interrupts need an interrupt number now if they are made critical),
1109           and enabled nesting of critical functions though not for gbz80
1110           (genCritical, genEndCritical): added functions
1111           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1112         * src/z80/mappings.i: added "ei" to all mappings
1113
1114 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1115
1116         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1117         submitted by the Debian SDCC maintainer Aurelien Jarno:
1118         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1119         archive with gcc 4.1 on mips and wrote the patch"
1120
1121 2006-03-16 Raphael Neider <rneider AT web.de>
1122
1123         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1124           the left operand is shorter than the result (c* = lit-c* + int),
1125           fixes bug #1450796
1126         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1127           OP_SYMBOL
1128
1129 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1130
1131         * src/.version: increased version number to 2.5.5
1132         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1133         linking is done manually in pic16 port's _linkEdit,
1134         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1135         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1136         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1137         allocate asmop as AOP_ACC,
1138         (aopForRemat): added parameter 'bool result' in function declaration,
1139         (pic16_aopGet): return AOP_ACC when accessing WREG,
1140         (pic16_popGetTempReg): minor modification,
1141         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1142         'pic16_allocWithIdx',
1143         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1144         calling function in absolute addresses,
1145         (genAssign): take into account AOP_ACC asmop,
1146         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1147         * src/pic16/pcoderegs.c: some debug functions and lines added,
1148         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1149         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1150         register too,
1151         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1152         call to allocReg, not by manually allocating a new one,
1153         (pic16_assignRegisters): now before going through the register
1154         allocating functions mark all registers as free. This eliminates some
1155         side effects resulting from peephole parser done earlier in the backbone
1156
1157 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1158
1159         * src/SDCCicode.c (geniCodeLogic),
1160         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1161
1162 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1163
1164         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1165           (genSend): bugfix, do not allocate and free twice,
1166           (shiftRLong): handle partially overlapping aops
1167         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1168
1169 2006-03-08 Borut Razem <borut.razem AT siol.net>
1170
1171         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1172           for pic16
1173
1174 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1175
1176         * support/regression/tests/bug1409955.c: new, added
1177         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1178         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1179           (aopForSym, aopOp): increment asmop.allocated if reused,
1180           (freeAsmop): decrement asmop.allocated and check for zero instead of
1181           using asmop.freed,
1182           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1183           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1184            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1185            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1186            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1187            genSignedRightShift, genRightShift, genDataPointerGet,
1188            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1189            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1190             in reverse order from allocation,
1191           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1192             added swappedLR to keep track
1193         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1194           pdata & code for GCC, z80, gbz80 & hc08
1195         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1196
1197 2006-03-08 Raphael Neider <rneider AT web.de>
1198
1199         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1200
1201 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1202
1203         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1204         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1205         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1206
1207 2006-03-06 Borut Razem <borut.razem AT siol.net>
1208
1209         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1210           made the linker quiet
1211
1212 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1213
1214         * src/pic16/gen.c (genPcall): fixed bug #1443644
1215         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1216         which dumps before the function entry point a data byte which represents
1217         the number of the local variables used by the specified function, added
1218         'xinst' for initial support for Extended Instruction Support,
1219         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1220         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1221         port->fun_prefix anymore (may change later),
1222         (genFunction, genEndFunction): do not store/restore local registers for
1223         _main (this should take care the --main-return command line option in
1224         the future),
1225         (genOr): removed some legacy pic-port instructions,
1226         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1227         performing operations with SFR's causes data to be written more than
1228         once to each SFR. Perhaps SFRs should be handled in special cases...
1229         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1230         pcode.h
1231         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1232         into account for stack starting position,
1233         (struct OPTIONS pic16_optionsTable): added command line argument
1234         --extended or -y for Extended Instruction Support,
1235         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1236         (deassignLRs): *** perhaps the most important change, old 'for' code
1237         (commented out for reference), didn't account for some registers which
1238         were left marked 'not free' after a pointer operation. The change
1239         reduces register usage a lot in some cases
1240
1241 2006-03-04 Borut Razem <borut.razem AT siol.net>
1242
1243         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1244           _clean
1245         * support/regression/tests/bug-524697.c: decreased array size for
1246           mcs51 to fit into the internal RAM
1247         * support/regression/Makefile.in: a little bit more verbose
1248
1249 2006-03-03 Borut Razem <borut.razem AT siol.net>
1250
1251         * support/regression/fwk/lib/testfwk.c,
1252           support/regression/fwk/include/testfwk.h: introduced function
1253           _prints(), nonrecursive _printn(), call _initEmu() from main()
1254         * support/regression/ports/gbz80/support.asm,
1255           support/regression/ports/ucz80/support.asm,
1256           support/regression/ports/z80/support.asm,
1257           support/regression/ports/ds390/support.c,
1258           support/regression/ports/hc08/support.c,
1259           support/regression/ports/host/support.c,
1260           support/regression/ports/mcs51/support.c,
1261           support/regression/ports/xa51/support.c: added empty _initEmu()
1262           function
1263         * support/regression/ports/pic16/gpsim.cmd,
1264           support/regression/ports/pic16/spec.mk,
1265           support/regression/ports/pic16/support.c,
1266           support/regression/Makefile.in: added pic16 regression test
1267
1268 2006-03-01 Raphael Neider <rneider AT web.de>
1269
1270         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1271           genConstPointerGet): use safe way of generating MOVFF to cover
1272             literals as well as registers, fixes bug #1440527
1273         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1274             dereference
1275           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1276             more correctly, fixes bug #1232186
1277           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1278         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1279             gplink guess the correct processor in more cases, applied patch
1280             from Till Riedel attached to and fixing bug #1436552
1281
1282 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1283
1284         * support/regression/tests/array.c: added, contains check for #1434401
1285         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1286
1287 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1288
1289         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1290         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1291         * device/include/mcs51/c8051f326.h,
1292         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1293         * device/include/mcs51/c8051f000.h,
1294         * device/include/mcs51/c8051f018.h,
1295         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1296           PCON_IDLE,PCON_STOP and added sfr16 definitions
1297
1298 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1299
1300         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1301           genGetWord): fixed bug 1409955
1302
1303 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1304
1305         * device/include/hc08/mc68hc908gp32.h,
1306         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1307
1308 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1309
1310         * src/SDCCast.c (constExprValue): return NULL if not a value
1311         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1312         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1313         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1314
1315 2006-02-13 Borut Razem <borut.razem AT siol.net>
1316
1317         * src/regression/ptrarg.c: added, fails due to bug #1430967
1318         * src/regression/Makefile: ptrarg.c added, ...
1319
1320 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1321
1322         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1323         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1324
1325 2006-02-11 Borut Razem <borut.razem AT siol.net>
1326
1327         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1328           print "Processor: xxx" message to stdout only if --verbose
1329
1330 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1331
1332         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1333         * support/regression/tests/bug1426356.c: added
1334         * support/regression/tests/bitfields.c: removed 2 tests
1335
1336 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1337
1338         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1339         * device/include/mcs51/c8051f330.h,
1340         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1341           PCON_IDLE,PCON_STOP and added sfr16 definitions
1342         * device/lib/_divsint.c,
1343         * device/lib/_divuint.c,
1344         * device/lib/_divulong.c,
1345         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1346           register bank bug for small stackauto
1347
1348 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1349
1350         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1351
1352 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1353
1354         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1355         * all.dsp: corrected several bin paths
1356         * device/include/mcs51/c8051f120.h,
1357         * device/include/mcs51/c8051f300.h,
1358         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1359           to PCON_IDLE,PCON_STOP
1360         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1361         * device/lib/printf_large.c (output_float): fixed bug 1388703
1362         * support/regression/tests/bug1057979.c: added test for bug 1388703
1363
1364 2006-02-08 Raphael Neider <rneider AT web.de>
1365
1366         * src/pic/pcode.c (pciTRIS): fixed typo,
1367           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1368           (LinkFlow): fixed handling of flows that end in a call,
1369           (ReuseReg): perform safety check earlier
1370         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1371             to work with flows at the beginning of a pBlock,
1372             fixes #1426557 (Symbol not previously defined),
1373           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1374             usage information
1375           (RemoveUnusedRegisters): update register usage info
1376         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1377             created, reuse existing ones instead
1378         * src/pic/gen.c (genPcall): fixed #1424719
1379
1380 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1381
1382         * link/z80/lkmain.c,
1383         * link/z80/lklex.c,
1384         * link/z80/lkdata.c,
1385         * link/z80/aslink.h: fixed build on current cygwin:
1386         replaced getline() by lk_getline()
1387
1388 2006-02-01 Borut Razem <borut.razem AT siol.net>
1389
1390         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1391           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1392           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1393           src/regression/bool1.c, src/regression/bool2.c,
1394           src/regression/bool3.c, src/regression/call1.c,
1395           src/regression/compare.c, src/regression/compare10.c,
1396           src/regression/compare2.c, src/regression/compare3.c,
1397           src/regression/compare4.c, src/regression/compare5.c,
1398           src/regression/compare6.c, src/regression/compare7.c,
1399           src/regression/compare8.c, src/regression/compare9.c,
1400           src/regression/configword.c, src/regression/for.c,
1401           src/regression/inline.c, src/regression/mult1.c,
1402           src/regression/nestfor.c, src/regression/or1.c,
1403           src/regression/pointer1.c, src/regression/ptrfunc.c,
1404           src/regression/rotate1.c, src/regression/rotate2.c,
1405           src/regression/rotate3.c, src/regression/rotate4.c,
1406           src/regression/rotate5.c, src/regression/rotate6.c,
1407           src/regression/rotate7.c, src/regression/string1.c,
1408           src/regression/struct1.c, src/regression/sub.c,
1409           src/regression/sub2.c, src/regression/switch1.c,
1410           src/regression/while.c, src/regression/xor.c,
1411           src/regression/create_stc, src/regression/simulate,
1412           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1413           regression tests
1414         * src/regression/gpsim_assert.h: added
1415
1416 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1417
1418         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1419         ((void (code *) (void)) 0) ();
1420         * as/hc08/aslex.c,
1421         * as/hc08/aslink.h,
1422         * as/hc08/asm.h,
1423         * as/hc08/asmain.c,
1424         * as/hc08/lkdata.c,
1425         * as/hc08/lklex.c,
1426         * as/hc08/lkmain.c,
1427         * as/mcs51/aslex.c,
1428         * as/mcs51/aslink.h,
1429         * as/mcs51/asm.h,
1430         * as/mcs51/asmain.c,
1431         * as/mcs51/lkdata.c,
1432         * as/mcs51/lklex.c,
1433         * as/mcs51/lkmain.c,
1434         * as/z80/aslex.c,
1435         * as/z80/asm.h,
1436         * as/z80/asmain.c: fixed build on current cygwin:
1437         replaced getline() by as_getline()
1438
1439 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1440
1441         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1442         declarator in the symbol chain
1443         * src/SDCCsymt.h,
1444         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1445         parameter list for function pointers
1446         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1447         * support/regression/tests/bug-716242.c: added
1448
1449 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1450
1451         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1452         offset if possible
1453         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1454
1455 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1456
1457         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1458         inifinitely recurseable, added static
1459         * support/regression/tests/bug-1408066.c: added
1460
1461 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1462
1463         * src/SDCCicode.h,
1464         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1465         renamed, added possibility to create "postLoopLbl"-labels
1466         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1467         newiTempLoopHeaderLabel
1468         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1469         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1470         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1471         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1472         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1473         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1474         (basicInduction): fixed bug #136564, made static,
1475         (loopInduction): changed parameter of basicInduction, made static,
1476         (addPostLoopBlock): added
1477         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1478         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1479         findLoopEndSeq
1480         * support/regression/tests/bug-136564.c: added
1481         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1482         --std-sdcc99 to LIBSDCCFLAGS
1483
1484 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1485
1486         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1487         while loop
1488         * support/regression/tests/bug-1406131.c: added
1489
1490 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1491
1492         * src/SDCCast.c (decorateType): fix promotion of unary minus
1493         * src/SDCCsymt.c (computeType): beautified
1494         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1495         (valUnaryPM, valComplement): fix sign and promotion,
1496         (valNot): ANSI: result type is int (SDCC: unsigned char)
1497         * support/regression/tests/uminus.c: speedup by removing superflous
1498         test case 'int'
1499         * support/regression/tests/onebyte.c: added promotion and signedness
1500         tests for unary minus
1501         * support/regressions/tests/bug-477927.c: disable warning about
1502         uninitialized variables
1503         * support/regression/tests/not.c: added
1504
1505 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1506
1507         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1508         * src/mcs51/gen.c (gen51Code): show final register usage after
1509         fillGaps in asm with --i-code-in-asm
1510         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1511         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1512         incUsed, rliveClear, adjustIChain): made static,
1513         (setFromRange): excluded because it's unused,
1514         (findPrevUseSym, markWholeLoop): added,
1515         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1516         through all branches of predecessors enables sdcc to emit the warning
1517         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1518         (rlivePoint): made static, added parameter emitWarnings which is only
1519         true during the first run out of two,
1520         (findRecursiveSucc, findRecursivePred): removed,
1521         (computeLiveRanges): made static, added parameter emitWarnings,
1522         (dumpIcRlive): added for debugging only
1523         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1524         removed prototype of setFromRange()
1525         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1526         in call of computeLiveRanges()
1527         * support/regression/tests/bug-895992.c: added
1528         * support/regression/tests/bug-971834.c: added
1529         * support/valdiag/tests/bug-895992.c: added
1530         * support/valdiag/tests/bug-971834.c: added
1531
1532 2005-12-18 Raphael Neider <rneider AT web.de>
1533
1534         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1535           (genUnpackBits): improved code for direct operands,
1536           (genPackBits): improved code for literal assignment to bitfields
1537             and for direct destination operands (no FSR indirection),
1538             prevented redundant AND, fixes #1362800,
1539           (AccLsh): added parameter to disable masking of the result
1540         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1541           skip instructions with side-effects (like incfsz),
1542           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1543         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1544         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1545           fixes #1375263
1546
1547 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1548
1549         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1550         volatile variables as spill location
1551
1552 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1553
1554         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1555         replacing literals
1556         * support/regression/tests/bug-1376320.c: added
1557
1558 2005-12-08 Raphael Neider <rneider AT web.de>
1559
1560         * src/pic/device.c: renamed is_shared to pic14_is_shared
1561         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1562         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1563           (is_valid_identifier): added for above workaround
1564
1565 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1566
1567         * device/lib/Makefile.in: fixed to enable port-specific-objects
1568         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1569           char, thanks Hubert Sack
1570         * doc/sdccman.lyx: documented --xstack-loc,
1571           elaborated a bit more on interrupts and pitfalls,
1572           removed "setjmp/longjmp unsupported",
1573           documented some unsupported C99 features
1574         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1575         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1576           if, thanks Hubert Sack
1577         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1578         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1579           make make_library
1580         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1581           regression tests can report resource usage (rfe 700441)
1582         * support/regression/collate-results.py: report resource usage
1583         * support/regression/ports/ds390/spec.mk,
1584         * support/regression/ports/hc08/spec.mk,
1585         * support/regression/ports/mcs51/spec.mk,
1586         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1587         * support/regression/ports/ds390/uCsim.cmd,
1588         * support/regression/ports/hc08/uCsim.cmd,
1589         * support/regression/ports/mcs51/uCsim.cmd,
1590         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1591         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1592           library, use the default one
1593         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1594           building the library
1595
1596 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1597
1598         * config.dsp: added dependency on .version and configure_vc.awk
1599         * device/include/setjmp.h: updated for --stack-auto and --xstack
1600         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1601         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1602         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1603         * device/lib/libsdcc.lib: added _setjmp
1604         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1605           (decorateType): fixed bug 1372851,
1606           (optimizeGetHbit): fixed warning
1607         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1608           array initialisation
1609         * support/regression/tests/bug1057979.c: added test for bug 1358192
1610         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1611
1612 2005-12-03 Borut Razem <borut.razem AT siol.net>
1613
1614         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1615           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1616
1617 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1618
1619         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1620         createIval): implement symbol independant "flexible array member",
1621         (createIvalCharPtr): implemented flexible array initialisation with a
1622         string
1623         * src/SDCCsymt.c (copyStruct): removed,
1624         (getSize): fixed misleading comment,
1625         (getAllocSize): removed, the additional allocation size is now in
1626         sym->flexArrayLength,
1627         (checkStructFlexArray): new, syntax checks for flexible array members,
1628         (compStructSize): added syntax checks for "flexible array members"
1629         (copyStruct): removed,
1630         (copyLinkChain): removed inefficient fix for bug 770487
1631         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1632         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1633         symbol->flexArrayLength
1634         * src/SDCCerr.c,
1635         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1636         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1637         * support/regression/tests/structflexarray.c: added
1638         * support/valdiag/tests/structflexiblearray.c: added
1639
1640 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1641
1642         * src/SDCCast.c (decorateType): fixed bug 1368489
1643         * support/Util/SDCCerr.c,
1644         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1645
1646 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1647
1648         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1649           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1650
1651 2005-11-27 Borut Razem <borut.razem AT siol.net>
1652
1653         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1654           support/cpp2/mkdeps.h: added command line option
1655           -obj-ext=<extension> to SDCPP to define object file externion, used
1656           for generation of make dependencies (-M)
1657         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1658
1659 2005-11-26 Borut Razem <borut.razem AT siol.net>
1660
1661         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1662           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1663           added pic and pic16 libraries
1664
1665 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1666
1667         * device/include/float.h: Corrected typo in prototype of __fsgt
1668
1669 2005-11-25 Borut Razem <borut.razem AT siol.net>
1670
1671         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1672           added creation of model-mcs51-stack-auto libraries
1673
1674 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1675
1676         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1677         and fields-list too
1678         * src/SDCCast.c (createIvalArray): removed obsolete comment
1679
1680 2005-11-24 Borut Razem <borut.razem AT siol.net>
1681
1682         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1683           added missing device/lib/mcs51/crt*.asm sources
1684
1685 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1686
1687         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1688
1689 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1690
1691         * device/lib/_fs2schar.c,
1692         * device/lib/_fs2sint.c,
1693         * device/lib/_fs2slong.c: optimized inline asm
1694
1695 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1696
1697         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1698           Better handling of floats between -1.0 and 0.0.
1699
1700 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1701
1702         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1703           (the missing "if"s prohibited removal of redundant labels)
1704
1705 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1706
1707         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1708           Properly convert floats between -1.0 and 0.0 to long, int, and char
1709           types (max integer value of negative floats tends to zero).
1710         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1711           Removed changes made so to work properly with floats between
1712           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1713           and _fs2char.c
1714
1715 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1716
1717         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1718         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1719         (genCast) cosmetic change
1720         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1721         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1722         from mcs51
1723         * support/regression/tests/bitfields (testSignedBitfields): added
1724
1725 2005-11-18 Borut Razem <borut.razem AT siol.net>
1726
1727         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1728         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1729           introduced SILENT option to make building of pic16 libraries less
1730
1731 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1732
1733         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1734           Now they work properly with floats between -1.0 and 0.0
1735         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1736
1737 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1738
1739         * src/SDCCicode.c (printOperand): added missing else
1740
1741 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1742
1743         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1744         reformatted for better readability
1745         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1746         signed bitfields
1747
1748 2005-11-17 Borut Razem <borut.razem AT siol.net>
1749
1750         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1751           introduced SILENT option to make building of pic16 libraries less
1752           verbose - used for nightly snapshot build
1753         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1754           available on Win32 platforms.
1755         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1756           medium, large, pic and pic16
1757
1758 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1759
1760         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1761           printf("%f"...) sets fraction to zero.
1762
1763 2005-11-16 Raphael Neider <rneider AT web.de>
1764
1765         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1766           fixes #1357221
1767         * src/pic/gen.c (genIfx): implemented for CARRY bit
1768         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1769           to generic pointers, fixes #1357332,
1770           (pic16_movLit2f): NEW,
1771           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1772
1773 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1774
1775         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1776
1777 2005-11-11 Raphael Neider <rneider AT web.de>
1778
1779         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1780         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1781           compute pointer's type from operand,
1782           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1783           improved single bit reads, fixes bug #1353379
1784
1785 2005-11-09 Borut Razem <borut.razem AT siol.net>
1786
1787         * support/scripts/sdcc.nsi: added lib/pic to the package
1788
1789 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1790
1791         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1792
1793 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1794
1795         * support/regression/tests/bug1348008.c: added
1796         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1797         * support/regression/tests/bug1337835.c: updated comment
1798
1799 2005-11-06 Borut Razem <borut.razem AT siol.net>
1800
1801         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1802           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1803           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1804           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1805           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1806           dynamic construction of cl_error_class and derivates - 2.nd try
1807
1808 2005-11-05 Borut Razem <borut.razem AT siol.net>
1809
1810         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1811           bug, which caused Bus Errors on sparc solaris
1812
1813 2005-11-04 Borut Razem <borut.razem AT siol.net>
1814
1815         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1816           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1817           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1818           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1819           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1820           and derivates to resolve the initialization problem on OSX
1821
1822 2005-11-02 Borut Razem <borut.razem AT siol.net>
1823
1824         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1825           corrected typo - #include <winsock2.h>
1826
1827 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1828
1829         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1830           (_asxxxx_mapping): added org directive for future enhancements
1831
1832 2005-11-01 Borut Razem <borut.razem AT siol.net>
1833
1834         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1835           enabled sockets on WIN32
1836         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1837
1838 2005-10-31 Borut Razem <borut.razem AT siol.net>
1839
1840         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1841           WIN32 backslash path delimiters should be escaped when used in C strings
1842         * support/regression/tests/bitfields.c: exclude failing assertions for
1843           __CYGWIN32__ and __MINGW32__ hosts
1844
1845 2005-10-30 Borut Razem <borut.razem AT siol.net>
1846
1847         * src/SDCCutil.c: corrected double comparison typo
1848
1849 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1850
1851         * device/lib/medium/Makefile: added for new memory model medium
1852         * device/include/asm/mcs51/features.h: updated for medium/pdata
1853         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1854           added Multiply & Accumulate sbit's and MAC0_PAGE define
1855         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1856         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1857         * device/lib/_mullong.c: update for medium model
1858         * device/lib/incl.mk: added medium model
1859         * doc/sdccman.lyx: documented medium model
1860         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
1861         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
1862         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
1863         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
1864           (allocParms): set SCLS and OCLS to pdata for medium model
1865         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
1866           for pdata,
1867           (powof2): return <0 if not power of 2
1868         * src/avr/gen.c (genBitWise): use updated powof2
1869         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
1870           (shiftR2Left2Result): small optimization in setup, save acc when storing,
1871           (shiftLLeftOrResult): use B if necessary
1872         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
1873         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
1874         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
1875         * support/regression/Makefile.in: added test-mcs51-medium
1876         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
1877
1878 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
1879
1880         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
1881         specifier unsigned
1882         * device/lib/time.c (mktime): fixed bug 1334315
1883
1884 2005-10-28 Raphael Neider <rneider AT web.de>
1885
1886         * device/include/pic/p16f_common.inc: added common declarations
1887         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
1888
1889 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
1890
1891         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
1892           (aopPutUsesAcc): added to predict accumulator use,
1893           (assignResultValue): save acc if necessary,
1894           (genMinusDec): store result if indirectly addressed,
1895           (genDivOneByte):  save acc if necessary,
1896           (movLeft2Result): bugfix if left already in acc,
1897           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
1898             attention to accumulator use (esp. pdata),
1899           (genReceive): receive pdata correctly
1900         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
1901         * src/SDCCicode.h: added isOperandInPagedSpace prototype
1902
1903 2005-10-27 Raphael Neider <rneider AT web.de>
1904
1905         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
1906
1907 2005-10-27 Raphael Neider <rneider AT web.de>
1908
1909         * .version: changed version to 2.5.4
1910         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
1911         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
1912           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
1913             arithmetics support routines
1914         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
1915         * device/lib/Makefile.in: also create installdir for pic
1916
1917         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
1918           pic14 port as well
1919         * src/pic/device.c (dump_sfr): rewritten to delegate register
1920           placement to the linker (use `extern sym' rather than sym EQU addr),
1921           (validAddress): fixed to check last specified address
1922         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
1923           (popGetLit): truncate literal value to 8 bit,
1924           (popGet): moved assert to more appropriate place
1925           (popGetExternal): create pCode operand from and mark the according
1926             symbol as being `extern'
1927           (popGetAddr): added sanity check on immediate's offset, provide
1928             GPOINTER tag on demand
1929           (aopPut): fixed for immediates,
1930           (mov2w_op): move operand's address or contents to WREG (depending on
1931             operand type), safer variant of mov2w,
1932           (movwf,call_libraryfunc): NEW, handy abbreviations,
1933           (get_argument_pcop,get_return_val_pcop,pass_argument,
1934           get_returnvalue): interface for accessing function parameters and
1935             return values,
1936           (assignResultValuei,genRet): use new parameter/return value interface
1937           (pic14_getDataSize): back to old version handling generic pointers,
1938           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
1939             provided implementation and/or fixed old one,
1940           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
1941             calls, removed legacy 8051 reference code
1942           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
1943           (loadSignToC): NEW, move the operands sign bit to CARRY,
1944           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
1945             genRightShiftSigned, accepts negative shift counts,
1946           (setup_fsr): load FSR and adjust IRP (indirect memory access),
1947           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
1948             generic pointers, __data pointers and __code pointers,
1949           (genUnpackBits,genPackBits): rewritten to work with generic pointers
1950             and signed bitfields, limit bitfields to 8 bit,
1951           (genDataPointerGet): fixed number of bytes read,
1952           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
1953           (genPointerGet,genPointerSet): fixed handling of __code pointers,
1954             pointers to constant data are no longer assumed to point to __code
1955             space, removed invalid pointer types,
1956           (bitpatternFromVal): retrieve the PICs representation of an integer
1957             or float literal,
1958           (genDataPointerSet): fixed assigning to po_immediate operands,
1959           (genGenPointerSet): implemented as library call,
1960           (genIfx): fixed incorrect condition,
1961           (genAddrOf): limit generic pointers' addresses to 2 bytes,
1962             provide GPOINTER tag according to destination's storage class,
1963           (genCast): added code to handle casting to generic pointers, added
1964             sign-/zero extension of the result
1965           (aop_isLitLike,op_isLitLike): fixed handling of immediates
1966         * src/pic/gen.h: added macros to access IRP bit in STATUS register
1967         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
1968           extend the result
1969         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
1970           address/register resides in the shared banks
1971           (emitSymbolToFile): improved to handle global and `pinned' symbols,
1972             put all variables into separate sections (have the linker arrange
1973             them)
1974           (picglue): put init code and interrupt handlers in separate sections
1975         * src/pic/main.c: added port specific options table, modified to PORT
1976           structure to make GPOINTERs 3 byte, added pic14_options
1977           (_pic14_do_link): private linking routine (update paths to libraries,
1978             add libsdcc.lib by default)
1979         * src/pic/main.h: declare pic14_options
1980         * src/pic/pcode.c: fixed instructions i/o relations,
1981           (RegCond): reverted to correct version,
1982           (newpCodeOpLit): truncate literals to 8 bit,
1983           (genericPrint): added debug output,
1984           (getRegFromInstruction): fixed for various operand types, simplified
1985           (BuildFlow): fixed broken handling of isntructions with labels
1986           (LinkFlow): start at last instruction in flow (skip trailing comments),
1987             pass the flow on to the next instruction after CALL
1988           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
1989           (insertPCodeInstruction): fixed inserting after a skip instruction,
1990           (DoBankSelect): fixed for labeled instructions
1991           (OptimizepBlock): honor --nopeep switch
1992           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
1993         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
1994         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
1995           (pCodeOptime2pCodes): allow disabling this optimization via
1996             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
1997             but is still buggy), started implementation of a dataflow based
1998             pCode optimization (CSE + dead code elimination)
1999           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
2000         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
2001           names are independant of the stack location and therefore portable across
2002           devices
2003
2004 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
2005
2006         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
2007           (selectSpil): fixed bug 1337835 by not spilling bit variables
2008         * support/regression/tests/bug1337835.c: added test for this bug
2009         * src/mcs51/peeph.def: restart after rule 3.c,
2010           addded rules 263.x to optimize loading constants
2011
2012 2005-10-26 Raphael Neider <rneider AT web.de>
2013
2014         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
2015         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
2016           (genAssign): emit warning when casting literals to generic pointer
2017             type, also applies when taking the address of a fixed variable,
2018           (genCast): improved casting to generic pointers
2019         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2020           extern variables, added verbose error message
2021         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2022
2023 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2024
2025         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2026         carry must be complemented too
2027         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2028         could be emitted by genMinus
2029         * src/SDCCval.c (constVal): fixed bug 1305065
2030
2031 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2032
2033         * src/SDCCast.c (addCast): added promotion for bit variables
2034         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2035         promotion casts + optimisation
2036         (optimizeGetWord): fix warning 'i' might be used uninitialized
2037         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2038         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2039
2040 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2041
2042         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2043         all chars are promoted to int; promotion should be handled in SDCCast.c
2044
2045 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2046
2047         * device/lib/_strcmp.c: Fixed bug 1326457
2048
2049 2005-10-11 Raphael Neider <rneider AT web.de>
2050
2051         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2052         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2053
2054 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2055
2056         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2057         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2058
2059 2005-10-04 Raphael Neider <rneider AT web.de>
2060
2061         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2062           device/lib/pic16/pics.all: added pic18f1320
2063         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2064
2065 2005-09-30 Raphael Neider <rneider AT web.de>
2066
2067         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2068         * src/pic16/devices.inc: NEW, provides device descriptions
2069         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2070
2071 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2072
2073         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2074           GETHBIT
2075
2076 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2077
2078         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2079           documented Any Order Bit, Higher Order Byte and Higher Order Word
2080         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2081         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2082           (optimizeGetAbit): new, to get any bit, not only the high bit,
2083           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2084           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2085           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2086           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2087             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2088             GETABIT, GETBYTE, GETWORD: decorate them,
2089           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2090           (ast_print): added GETABIT, GETBYTE, GETWORD
2091         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2092         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2093           (geniCodeBinary): new generic binary icode,
2094           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2095         * src/port.h: updated comment for PORT.hasExtBitOp
2096         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2097           (genGetByte): new, to get a single byte,
2098           (genGetWord): new, to get a word from a long,
2099           (gen51Code): added GETABIT, GETBYTE, GETWORD
2100         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2101
2102 2005-09-23 Raphael Neider <rneider AT web.de>
2103
2104         * configure.in, configure: have device/lib/pic configured
2105         * device/lib/Makefile.in: added model-pic14
2106         * device/lib/clean.mk: added pic/ to clean rule
2107         * device/lib/pic: added rudimentary pic14 library providing support
2108           functions for multiplication/division/generic pointer access
2109         * src/SDCCopt.c (convilong): mark support functions as extern
2110           for pic14 port as well
2111         * src/pic/gen.c (genMult): added assertions,
2112           (genpic14Code): emit warning on unhandled iCodes
2113         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2114         * src/pic/pcode.c (pCodeOpCopy),
2115         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2116           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2117           SFR_REGISTER}), made safe for future extensions
2118         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2119           instructions even if preceeded by SKIP instructions (also remove
2120           them); removed unused code
2121         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2122           prevents leaving parts of the structure uninitialized after copying
2123
2124 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2125
2126         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2127           ago by me
2128         * support/regression/tests/addsub.c: added test for the bug
2129
2130 2005-09-21 Raphael Neider <rneider AT web.de>
2131
2132         * device/include/pic16/pic18f1220.h,
2133           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2134         * device/lib/pic16/Makefile.rules: added missing opening paren
2135         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2136           are provided in genutils.c,
2137           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2138           operand/result sizes,
2139           (genCmp): assert on NULL pointers first, then check deref'ed values
2140         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2141           result size
2142
2143 2005-09-18 Raphael Neider <rneider AT web.de>
2144
2145         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2146           as these are now unused,
2147           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2148         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2149           local, avoids uninitialized pointer dereference on r->name
2150         * src/pic16/ralloc.c (newReg): fixed indentation
2151
2152 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2153
2154         * src/SDCCval.c (constVal): fixed bug 730366
2155         * support/Util/SDCCerr.c,
2156         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2157
2158 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2159
2160         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2161
2162 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2163
2164         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2165
2166 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2167
2168         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2169           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2170         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2171           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2172         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2173         * packihx/packihx.c (hexDigit): made c unsigned char
2174         * as/mcs51/lklibr.c (fndsym),
2175         * link/z80/lkgb.c (gb),
2176         * link/z80/lklibr.c (fndsym),
2177         * link/z80/lkrloc.c (relr),
2178         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2179         * src/SDCC.lex (checkCurrFile, process_pragma),
2180         * src/SDCCglue.c (spacesToUnderscores),
2181         * src/SDCCmain.c (setParseWithComma, processFile),
2182         * src/asm.c (tvsprintf, printCLine),
2183         * src/avr/gen.c (emitcode, aopPut),
2184         * src/ds390/gen.c (emitcode),
2185         * src/hc08/gen.c (emitcode, emitinline),
2186         * src/mcs51/gen.c (emitcode, genInline),
2187         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2188           tokenizeLineNode),
2189         * src/pic/ralloc.c (debugLog),
2190         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2191           tokenizeLineNode),
2192         * src/pic16/ralloc.c (debugLog),
2193         * src/z80/main.c (_process_pragma):
2194            made all ctype.h function calls safe
2195         * src/SDCCopt.c: include math.h for fabs
2196         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2197           and used them throughout the code to make ctype.h function calls safe
2198         * src/ds390/main.c (asmLineNodeFromLineNode),
2199         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2200         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2201            unsigned char*
2202         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2203           (newpCodeAsmDir): made ctype.h function calls safe
2204         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2205           pic16_emitcode):  made lbp unsigned char*
2206         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2207           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2208         * src/xa51/gen.c (emitcode),
2209         * src/z80/gen.c (_emit2): made lbp unsigned char*
2210         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2211            char*
2212
2213 2005-09-05 Raphael Neider <rneider AT web.de>
2214
2215         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2216           access bank splitpoint
2217
2218 2005-09-05 Raphael Neider <rneider AT web.de>
2219
2220         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2221
2222 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2223
2224         * .version: changed to version 2.5.3
2225         * doc/sdccman.lyx: changed version to 2.5.3,
2226           documented --codeseg and --constseg and pragma codeseg and constseg,
2227           documented bit parameters (reentrant) and bit returning
2228         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2229            currFunc->recvSize, but is this ok for all ports?
2230           (ast2iCode): result of ~ on unsigned char must be cast to int for
2231            bool to work
2232         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2233           function pointers in bit space
2234         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2235           (processFuncArgs): call port.reg_parm() with reentrancy info
2236         * src/port.h,
2237         * src/avr/main.c,
2238         * src/ds390/main.c,
2239         * src/hc08/main.c,
2240         * src/pic/main.c,
2241         * src/pic16/main.c,
2242         * src/xa51/main.c,
2243         * src/z80/main.c: port.reg_parm prototype extended with
2244           "bool reentrant" parameter
2245         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2246           options.stackAuto for allocating bit register parameters
2247         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2248           (genSend): set BitBankUsed if it is,
2249           (selectRegBank): factored out of genCall for use in genPcall,
2250           (genCall): removed redundant dtype assignmen, use selectRegBank,
2251           (genPcall): handle returning in Carry properly, save in F0 if needed,
2252           (genReceive): handle bit register parameters
2253         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2254           (mcs51_assignRegisters): enable bit registers for all reentrant
2255            functions and don't set BitBankUsed unconditionally
2256         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2257         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2258         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2259
2260 2005-08-27 Borut Razem <borut.razem AT siol.net>
2261
2262         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2263         ppc-osx (Darwin) does not support -u option. It seems that it is
2264         supported only on Linux - GNU cp
2265
2266 2005-08-25 Borut Razem <borut.razem AT siol.net>
2267
2268         * sim/ucsim/gui.src/serio.src/Makefile.in,
2269           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2270           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2271           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2272           install and strip, since the strip at /usr/ccs/bin should be used
2273           on solaris
2274
2275 2005-08-24 Borut Razem <borut.razem AT siol.net>
2276
2277         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2278
2279 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2280
2281         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2282         ffffffffu
2283
2284 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2285
2286         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2287         * as/mcs51/lkmain.c (link_main): fixed warning
2288         * device/include/stdbool.h: ds390 has no advanced bit support yet
2289         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2290         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2291         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2292           and updated their macros
2293         * src/SDCCval.c (constVal): updated comment for renamed b_long
2294
2295 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2296
2297         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2298         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2299           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2300           (oprio): set priority for '['
2301         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2302            and adb_24_bit
2303         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2304         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2305         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2306         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2307           added overlayable BIT_BANK area
2308         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2309           (summary2): explain 'T' in legenda
2310         * as/mcs51/lkrloc.c: replaced old K&R style,
2311           (relr): added R_BIT processing,
2312           (errmsg): added "Bit-addressable relocation error",
2313           (adb_bit): added for converting from byte- to bit-addressable space,
2314           (adb_24_bit): added for converting from byte- to bit-addressable space
2315         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2316            used in reentrant functions now even as return value
2317         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2318         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2319           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2320         * src/SDCCglobl.h: added indicator BitBankUsed
2321         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2322            the bit registers b0-b7
2323         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2324           (geniCodeCast): fixed bug 1263853,
2325           (geniCodeLogicAndOr): put result in bool or char,
2326           (geniCodeReceive): added parameter func for accessing the return type,
2327           (geniCodeFunctionBody): pass func to geniCodeReceive
2328         * src/SDCCmain.c: added indicator BitBankUsed
2329         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2330         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2331           (checkSClass): don't put automatic bool/bit on stack,
2332           (checkFunction): removed check on function cannot return bit
2333         * src/SDCCsymt.h: added newBoolLink prototype
2334         * src/mcs51/gen.c (rb1regs): added bit registers,
2335           (movc): created for assigning to carry,
2336           (pushReg, popReg): created for pushing registers,
2337           (sameRegs): check both AOP_REG and AOP_CRY types,
2338           (aopOp): handle bit registers,
2339           (aopPut): optimization no self-assign,
2340           (saveRegisters): push reg->base (bits) only once for bit registers,
2341            and use pushReg,
2342           (unsaveRegisters): pop reg->base only once and use popReg,
2343           (assignResultValue): added parameter func and return in carry for bits,
2344           (genIpush): optimization no reload in A if not changed,
2345           (genSend): bit parameters in reentrant functions are passed in bit
2346            registers by first assigning to bits in B, then save registers and
2347            copy B to bits,
2348           (genCall): handle returning in Carry properly, save it in F0 if needed,
2349           (genPcall): updated assignResultValue call, this is not safe yet for bit
2350            returning function !!!
2351           (genFunction): don't generate equ's for bit registers and use pushReg,
2352           (genEndFunction): take care of bit returning functions and use popReg,
2353           (genRet): return bit in Carry,
2354           (genIfx): optimize bit registers and other directly addressable bits,
2355           (genReceive): updated assignResultValue call
2356         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2357           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2358            registers when using stack-auto
2359         * src/mcs51/ralloc.c (_G): added allBitregs,
2360           (regs8051): added the bit registers,
2361           (createStackSpil): use macro IS_BIT,
2362           (getRegBit): added to allocate a bit register, else spill,
2363           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2364           (updateRegUsage): factored out to ease stepping while debugging,
2365           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2366            also allocate bit registers,
2367           (fillGaps): handle bit registers,
2368           (findAllBitregs): added to create bit vector with all bit registers,
2369           (mcs51_allBitregs): returns this bit vector,
2370           (mcs51_assignRegisters): when using stack-auto use bit registers for
2371            passing parameters and creating local variables
2372         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2373
2374 2005-08-22 Borut Razem <borut.razem AT siol.net>
2375
2376         * device/lib/Makefile.in: replaced find option -or with -o
2377           to make it run on solaris
2378
2379 2005-08-22 Raphael Neider <rneider AT web.de>
2380
2381         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2382           fixes #1265442 (crash on Solaris)
2383
2384 2005-08-20 Borut Razem <borut.razem AT siol.net>
2385
2386         * configure, configure.in: added tests for libsocket and libnsl libraries,
2387           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2388           from support/regression/Makefile.in
2389         * support/regression/Makefile.in: added
2390         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2391         * sim/ucsim/libtool: regenerated on sparc-solaris
2392         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2393           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2394           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2395           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2396           sparc-solaris, which doesn't use GNU ld linker
2397         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2398         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2399
2400 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2401
2402         * src/mcs51/peeph.def: updated comments
2403
2404 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2405
2406         * device/lib/_gptrget.c,
2407         * device/lib/_gptrput.c: slightly shorter
2408         * doc/sdccman.lyx: incremented version
2409         * src/mcs51/peeph.def: moved peephole comments to the line of first
2410           change to better keep line correlation, reanimated 186.e
2411         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2412
2413 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2414
2415         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2416           David Saxton with quotes around file name.
2417
2418 2005-08-15 Borut Razem <borut.razem AT siol.net>
2419
2420         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2421           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2422           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2423           make tests run on x86_64 platform
2424
2425 2005-08-13 Raphael Neider <rneider AT web.de>
2426
2427         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2428           as it might be executed DURING a build (parallel make is wonderful)
2429
2430 2005-08-13 Raphael Neider <rneider AT web.de>
2431
2432         * device/lib/Makefile.in (port-specific-objects-pic16):
2433           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2434         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2435           dependency
2436         * device/lib/pic16/Makefile.rules: build subdirs before creating
2437           the library, removed builddir rule, create $(builddir) early in
2438           recurse rule, use empty recurse rule for leaf directories
2439         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2440           mkdir errors (race condition), removed duplicate suffix "hex"
2441           from clean rules
2442         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2443         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2444           prevents mkdir -p from aborting on Alpha
2445
2446 2005-08-12 Raphael Neider <rneider AT web.de>
2447
2448         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2449           db-statements in order to allow for arrays of pointers in code
2450           sections to be placed without interspersed 0-padding, fixes
2451           bug #1256215
2452         * (emitStatistics): fixed division by zero for pic18f1220
2453         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2454           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2455         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2456         * (pic16_pCodeConstString): keep track of already emitted string
2457           literals to prevent "duplicate definitions of symbol _str_NR"
2458         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2459           debug message
2460         * device/lib/Makefile.in: ignore failing PIC16 library builds
2461         * device/lib/pic16/Makefile: do not build if gputils are missing
2462         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2463
2464 2005-08-10 Raphael Neider <rneider AT web.de>
2465
2466         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2467           my last commit)
2468
2469 2005-08-10 Raphael Neider <rneider AT web.de>
2470
2471         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2472           Rokas' patch to add the new fixed point type "__fixed16x16"
2473         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2474           functions for __fixed16x16 arithmetics
2475         * device/lib/pic16: reimplemented the build system to support
2476           a separate build directory, better handling of libio (create
2477           the library in a separate subdir for each architecture) and
2478           easier configuration (centralized in Makefile.common)
2479
2480 2005-08-07 Raphael Neider <rneider AT web.de>
2481
2482         * src/pic16/gen.c (genrshTwo): fixed sign extension
2483         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2484         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2485           added T0CONbits
2486         * device/include/pic16/pic18f4220.h: NEW, header for
2487           pic18f4220 and pic18f4320
2488         * device/include/pic16/pic18fregs.h: added new devices,
2489           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2490         * device/include/pic16/signal.h: resolved name clashes
2491           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2492           to also allow testing for interrupt enable bits, added
2493           comments on how to use the macros
2494         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2495         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2496           register definitions for the devices
2497         * device/lib/pic16/pics.all: added new devices
2498         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2499           allocated memory
2500         * device/lib/pic16/libc/stdlib/memfree: do not count
2501           the block header as free memory
2502         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2503           simplified and added missing end-of-blocklist-marker
2504           (reported by Peter Onion, fixes #1252814)
2505         * (_mergeHeapBlock): fixed loop condition
2506         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2507           len==0, restructured code
2508         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2509           up a bit, reduced bitfield accesses, prevent endless loops
2510           in case of heap corruption
2511         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2512           "unreferenced arguments/must return a value" warnings
2513         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2514           replaced BAUDREG with SPBRG
2515         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2516           device/lib/pic16/debug/gstack/gstack.c: replaced
2517           _naked, _asm, _endasm with __naked, __asm, __endasm
2518
2519 2005-08-05 Raphael Neider <rneider AT web.de>
2520
2521         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2522           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2523
2524 2005-08-05 Borut Razem <borut.razem AT siol.net>
2525
2526         * device/lib/Makefile.in: added missing ';'
2527         * configure: removed ^M characters
2528
2529 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2530
2531         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2532           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2533           License
2534
2535 2005-08-04 Borut Razem <borut.razem AT siol.net>
2536
2537         * configure.in: pic16 libraries build 2nd try - enable running
2538           configure in device/lib/pic16
2539         * configure: regenerated from configure.in
2540         * device/lib/Makefile.in: create $(PORT)/bin directory
2541
2542 2005-08-03 Raphael Neider <rneider AT web.de>
2543
2544         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2545           to get/set values via pointers
2546         * (genUnpackBits,genPackBits): changed detection of
2547           ptr->bitfield vs. sym.bitfield, fixed access via generic
2548           pointers, removed dead (wrong) code for multibyte bitfields
2549         * (genNearPointerGet, genGenPointerGet): removed useless code,
2550           fixed bitfield detection, fixes #1250594
2551         * (genNearPointerSet): removed useless code
2552         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2553           and introduced macro pic16_emitpcode that conditionally emits
2554           the origin of the following pCode (useful for debugging SDCC)
2555         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2556         * (createDefmap): fixed handling of LFSR for --optimize-df
2557
2558 2005-08-02 Borut Razem <borut.razem AT siol.net>
2559
2560         * device/lib/Makefile.in: pic16 libraries build enabled since
2561           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2562
2563 2005-08-02 Raphael Neider <rneider AT web.de>
2564
2565         * src/pic16/gen.c (genPackBits): removed deprecated warning
2566         * (genGenPointerSet): fixed bitfield detection
2567
2568 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2569
2570         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2571
2572 2005-07-31 Raphael Neider <rneider AT web.de>
2573
2574         * device/lib/pic16/libdev/pic18f458.c,
2575           device/include/pic16/pic18f458.h: added missing T0CONbits
2576
2577 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2578
2579         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2580
2581 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2582
2583         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2584
2585 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2586
2587         * device/include/mcs51/at89c51ed2.h: added.
2588
2589 2005-07-23 Raphael Neider <rneider AT web.de>
2590
2591         * src/pic/gen.h: added emitpcode macro for debugging
2592         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2593           and replace by macro adding debug information on demand
2594         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2595         * (gencjne): tried to fix; replaced with correct (slower) code
2596         * (gen{Unp,P}ackBits): fixed single bit access
2597         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2598         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2599           previous instruction
2600         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2601           register has to be handled with care (forbidding movement
2602           of assignments/uses, removing assignments completely, ...)
2603         * (pCodeOptime2pCodes): make use of regIsSpecial
2604         * added lots of debugging output (commented out)
2605         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2606           from being reused as result UNLESS it is known to work
2607
2608 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2609
2610         * support/Util/dbuf.h: include <stddef.h> for size_t
2611         * .version: changed to version 2.5.2
2612
2613 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2614
2615         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2616
2617 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2618
2619         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2620           (genModOneByte): removed needless psha/pula
2621
2622 2005-07-22 Raphael Neider <rneider AT web.de>
2623
2624         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2625           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2626         * src/pic/gen.c (resolveIfx): do not "invent" labels
2627         * (genSkipc): changed to positive logic
2628         * (genSkipCond): removed as no longer needed
2629         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2630           backport from PIC16
2631         * (genLeftShift): check operands are in different registers
2632         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2633           INCF does not update CARRY...
2634         * src/pic/main.c: fixed _linkCmd
2635         * src/pic/pcode.c (unlinkpCode): added inactive code
2636         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2637           alive (do not assign result and operand overlapping registers)
2638
2639 2005-07-22 Raphael Neider <rneider AT web.de>
2640
2641         * src/pic/device.c (dump_sfr): replaced register declaration with
2642           call to emitSymbolToFile() to avoid duplicate symbols
2643         * (assignRelocatableRegisters): do not declare external symbols
2644         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2645           right (take size of type, not etype)
2646         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2647         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2648         * (packRegsForAccUse): disabled assignment of WREG as
2649           the result reg to prevent occurence of just fixed #1235003,
2650           fixes #1242954
2651         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2652           symbols (avoids duplicate symbols in .asm file)
2653         * (pic14emitRegularMap): use emitSymbolToFile()
2654         * src/pic/gen.c (aopOp): fixed spillLocation handling
2655         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2656         * (genDataPointerSet): removed unneccessary variables/output
2657
2658 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2659
2660         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2661         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2662
2663 2005-07-21 Raphael Neider <rneider AT web.de>
2664
2665         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2666           architecture cannot handle them efficiently, fixes bug #1235003
2667         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2668           check for empty sets before using them (fixes bug #1232190)
2669
2670 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2671
2672         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2673           (lnksect2): generate warnings for memory overlap
2674         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2675           constseg to set the name of these segments so you can instruct the linker
2676           to place them in banks
2677         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2678         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2679           added code_seg and const_seg to options
2680         * src/SDCCglue.c (emitMaps): use options.const_seg,
2681           (createInterruptVect): put interrupt vectors in segment HOME,
2682           (glue): put HOME before static segment and put the main glue in HOME,
2683           (glue): use options.code_seg
2684         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2685         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2686           these segments so you can instruct the linker to place them in banks
2687           (linkEdit): use code_loc for HOME segment which should be the first
2688           segment in code memory now
2689         * src/SDCCmem.c: fixed more stuff like bug 1238386
2690         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2691           (changePointer): don't change function pointers to code pointers for
2692           banked functions,
2693           (compareType): added exceptional check for banked function pointers
2694         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2695         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2696           after static in code memory
2697         * src/mcs51/gen.c: added aopLiteralLong prototype,
2698           (aopForSym): use getSize for functions,
2699           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2700           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2701           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2702           the segment,
2703           (genPcall): use call for literal function pointers and generate banked
2704           calls over the one trampoline so there's only one place for the user to
2705           modify according to his/hers hardware,
2706           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2707           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2708         * src/mcs51/main.c: added keyword banked,
2709           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2710         * support/Util/SDCCerr.c,
2711         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2712           needed for passing the bank and address to the trampoline
2713         * device/lib/mcs51/crtbank.asm: added for bankswitching
2714         * device/lib/mcs51/Makefile: added crtbank
2715
2716 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2717
2718         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2719           for fields at offset 0 of a struct or union as reported
2720           on 2005-07-07 in the developer mailing list.
2721
2722 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2723
2724         * src/SDCCmem.c: fixed bug 1238386
2725
2726 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2727
2728         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2729           (patch #1144962), added peephole 300, enabled 259.x
2730         * doc/sdccman.lyx: removed screenshot and provided link instead
2731
2732 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2733
2734         * doc/sdccman.lyx: added section about debugging with ddd
2735         * doc/figures/ddd_example.eps: screenshot of debugging session
2736
2737 2005-07-04 Raphael Neider <rneider AT web.de>
2738
2739         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2740           like CODE pointers, fixes #1115683
2741         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2742           call, fixes bugs #1232211, #1228110,
2743           fixed wrong casts to pCodeFlow from pCodeInstructions
2744
2745 2005-07-04 Raphael Neider <rneider AT web.de>
2746
2747         * src/pic/gen.c (popGet): changed assert to allow for
2748           bit operands
2749         * (popGetAddr): changed signature to provide
2750           an additional index, patched all call sites
2751         * (genCmpEq): handle literal-like operands correctly
2752         * (genAddrOf): added sanity checks on __code/__data pointers
2753         * (genAssign): added handling of symbols from __code section
2754         * (gencjne): do not generate code for comparisons whose result
2755           is neither stored nor used, fixes bug #1171114
2756         * (AccLsh, AccRsh): operate on operand instead of WREG
2757         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2758           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2759           by known count
2760         * rewrote complete shift-by-literal logic, commented unused
2761           functions out
2762         * (genConstPointerGet): get multiple bytes (if result size > 1),
2763           fixed handling of non-immediate addresses
2764         * (genPointerGet): handle CODE pointers like CONST pointers
2765         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2766         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2767           operand is to be treated as a literal or not
2768         * (mov2w,genPcall,genCmpEq),
2769           src/pic/genarith.c: use aop_isLitLike() to decide between
2770           literal/register contents
2771         * (addSign): added missing offset
2772         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2773           only emit comment in debug-mode,
2774           use {aop,op}_isLitLike throughout the file
2775         * src/pic/glue.c: fix initializers for pointers (work in progress)
2776         * src/pic/pcode.c (get_op): honor index on _const symbols
2777         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2778         * (dumppBlock): added pCode size estimation
2779         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2780           check for IS_SYMOP before OP_SYMBOL'ing
2781         * fixed indentation, compacted switch-statements
2782         * (allocReg): find free register and allocate it instead of
2783           allocating new registers all the time
2784         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2785           registers as its operands (necessary only for multibyte GETs)
2786
2787 2005-07-01 Raphael Neider <rneider AT web.de>
2788
2789         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2790           debugging .asm-output macros FENTRY + FEXIT
2791         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2792           way... I wonder...
2793         * (emitpComment): NEW, printf to pCode
2794         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2795           offset handling
2796         * (popGetAddr): NEW, variant of popGet to access an immediates
2797           high(er) bytes instead of the n'th byte of memory they reference,
2798           replaced popGet with popGetAddr where neccessary
2799         * (genDataPointerGet): reactivated and fixed implementation
2800         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2801           accesses
2802         * (genDataPointerSet): fixed multibyte assignments
2803         * (genpic14Code): fixed --i-code-in-asm handling
2804         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2805         * (genPlus): fixed index-out-of-bounds error
2806         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2807         * src/pic/ralloc.c: added debugging output macro FENTRY2
2808         * (spillThis): fixed indentation, enbraced for-body for clarity
2809         * (rematStr): commented out as now unused
2810         * (regTypeNum): commented out special spill case (overwrites
2811           arbitrary values)
2812         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2813
2814 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * doc/sdccman.lyx: documented sfr16/sfr32,
2817           added example for using storage class with function pointers
2818         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2819
2820 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2821
2822         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2823         * device/lib/_itoa.c,
2824         * device/lib/_ltoa.c: optimized codesize
2825         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2826           but don't know how to suppress the double warning.
2827         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2828         * support/Util/SDCCerr.c,
2829         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2830
2831 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2832
2833         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2834           fixed old K&R prototypes
2835         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2836         * device/lib/_gptrget.c,
2837         * device/lib/_gptrgetc.c,
2838         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2839           also new versions for small generic pointers and banked generic pointers
2840         * src/port.h: added const_name
2841         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2842         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2843         * src/SDCCcse.c (findPrevIc): check all associative operators
2844         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2845         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2846         * src/SDCCmem.c: updated comments,
2847           set far-space to 0 for pdata, results in optimized code
2848         * src/SDCCmem.h: added macro CONST_NAME
2849         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2850           moving the info into the highest bits, see also gptrget/gptrput
2851         * src/src.dsp: added sdcc.ico to project files
2852         * src/avr/gen.c (genCast): fixed bug 0x%d
2853         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2854         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2855           relation between ptr_type and DCL_TYPE,
2856           (genCast): fixed bug 0x%d
2857         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2858           (CODE)" for const_name
2859         * src/hc08/gen.c (genCast): fixed bug 0x%d
2860         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
2861           (hc08_port): added "CONST (CODE)" for const_name
2862         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
2863           (aopForRemat, adjustArithmeticResult): disconnected direct relation
2864           between ptr_type and DCL_TYPE,
2865           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
2866           operand* and took AOP() inside function so sfr-ness can be checked,
2867           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
2868           new prototype,
2869           (genFunction, genEndFunction): optimized stack setup,
2870           (genMinus): optimized for literals with ending zeroes (in bytes),
2871           (genCast): fixed bug 0x%d
2872         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
2873           (mcs51_port): added "CONST (CODE)" for const_name
2874         * src/mcs51/peeph.def: made rule 226 more generic
2875         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
2876         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
2877         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
2878         * src/z80/main.c (z80_port): added NULL for const_name,
2879           (gbz80_port): added NULL for const_name
2880         * support/regression/tests/bug663539.c,
2881         * support/regression/tests/sfr16.c: new tests
2882
2883 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2884
2885         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
2886
2887 2005-06-24 Raphael Neider <rneider AT web.de>
2888
2889         * device/lib/pic16/libdev/pic18f[68][567]20.c:
2890           corrected typos...
2891         * device/include/pic16/signal.h: added USBIF
2892           and SIG_USB
2893
2894 2005-06-24 Raphael Neider <rneider AT web.de>
2895
2896         * device/lib/pic16/libdev/pic18f2455.c,
2897           device/include/pic16/pic18f2455.h: NEW
2898         * device/include/pic16/pic18fregs.h,
2899           device/lib/pic16/pics.all,
2900           src/pic16/device.c: added 18f2455
2901         * device/lib/pic16/libdev/pic18f[68][567]20.c,
2902           device/include/pic16/{pic18f[68][567].h,usart.h}:
2903           replaced MULTIPLE_USARTS define with more relaible
2904           compatibility sfrs (for USART access)
2905
2906 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
2907
2908         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
2909           and the output asm file line is printed on two lines.
2910
2911 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2912
2913         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
2914           BGT, BLE, BHI, and BLS instructions
2915         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
2916           genCmpEq): removed
2917         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
2918           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
2919           fixes bug #1216342
2920         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
2921
2922 2005-06-15 Raphael Neider <rneider AT web.de>
2923
2924         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
2925         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
2926         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
2927           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
2928           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
2929
2930 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2931
2932         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
2933           Marcel Telka in bug #1215704
2934
2935 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
2936
2937         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
2938           located in shared memory bank.
2939
2940 2005-05-31 Raphael Neider <rneider AT web.de>
2941
2942         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
2943           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
2944           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
2945
2946 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
2947
2948         * device/lib/_strncpy.c: fixed the fix
2949
2950 2005-05-26 Raphael Neider <rneider AT web.de>
2951
2952         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
2953           initializers with \0, bug #1208187
2954         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
2955           intializers with \0, bug #1208187
2956
2957 2005-05-26 Raphael Neider <rneider AT web.de>
2958
2959         * src/pic16/glue.c (pic16_printIvalChar): fixed string
2960           initializers with \0, bug #1208187
2961         * src/pic16/main.c (_process_pragma): added sanity checks
2962           for stack position and size, emit warnings when appropriate
2963
2964 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
2965
2966         * device/lib/_strncpy.c: fixed not filling with \0
2967
2968 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
2971           createFunction),
2972         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
2973           compound_statement),
2974         * src/SDCCsymt.h,
2975         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
2976
2977 2005-05-24 Raphael Neider <rneider AT web.de>
2978
2979         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
2980
2981 2005-05-24 Raphael Neider <rneider AT web.de>
2982
2983         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
2984           TRISE definitions, closes bug #1162453
2985
2986 2005-05-22 Raphael Neider <rneider AT web.de>
2987
2988         * src/pic16/main.c (_process_pragma): check for missing
2989           arguments to pragmas code and udata
2990         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
2991           consistency fixes to match other headers (thanks to Jim Paris)
2992         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
2993
2994 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
2995
2996         * src/SDCCicode.c (isOperandEqual): fixed missing ;
2997
2998 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
2999
3000         * support/regression/tests/bug1198642.c: new test
3001         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
3002         * src/SDCCcse.c (findPrevIc): added comment, please have a look
3003         * support/scripts/resource.h,
3004         * support/scripts/resource.rc,
3005         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
3006         * support/scripts/sdcc.ico: added 32x32 icon
3007
3008 2005-05-18 Raphael Neider <rneider AT web.de>
3009
3010         * device/lib/pic16/libdev/pic18f*.c,
3011         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
3012           keywords to "__sfr" and "__at (X)"
3013         * device/include/pic16/pic18fregs.h: added pic18f4520
3014         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
3015           #1203088 (MPLAB compatibility)
3016
3017 2005-05-17 Raphael Neider <rneider AT web.de>
3018
3019         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3020         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3021         * device/lib/pic16/pics.all: added new devices
3022         * src/pic16/device.c: added support for pic18f4520
3023
3024 2005-05-16 Raphael Neider <rneider AT web.de>
3025         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3026         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3027         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3028           convenience function for bit access
3029
3030 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3031
3032         * device/lib/printf_large.c: fixed bug 1193299
3033         * support/regression/tests/bug1057979.c: added test %3.3s
3034
3035 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3036
3037         * device/include/mcs51/8051.h,
3038         * device/include/mcs51/8052.h: made parseable with lint
3039         * device/include/mcs51/lint.h: added include file for (sp)lint
3040         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3041         * doc/cdbfileformat.lyx,
3042         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3043
3044 2005-05-14 Raphael Neider <rneider AT web.de>
3045
3046         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3047         * device/lib/pic16/libc/stdlib/itoa.c (new)
3048         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3049         * device/lib/pic16/libio/Makefile: exclude subdir according to
3050           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3051         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3052         * src/pic16/gen.c (genFunction): prevent annoying warning
3053         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3054           nameclashes on BeOS
3055         * support/cpp2/cppmain.c (cpp_output_string): new
3056         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3057           fixes bug 1116802
3058
3059 2005-05-13 Borut Razem <borut.razem AT siol.net>
3060
3061         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3062
3063 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3064
3065         * .version: changed to version 2.5.1; back to bleeding edge development
3066
3067 2005-05-11 Borut Razem <borut.razem AT siol.net>
3068
3069         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3070           generate PDF version 1.3 documents
3071
3072 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3073
3074         * .version: changed to version 2.5.0
3075
3076 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3077
3078         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3079
3080 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3081
3082         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3083         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3084         well as many smaller updates.
3085         * .version: changed to version 2.5.0-pre1
3086
3087 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3088
3089         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3090
3091 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3092
3093         * support/regression/tests/bug1185672.c: added
3094         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3095           bug 1185672
3096         * src/mcs51/gen.c (genCall): added comments, made it look safer
3097         * src/mcs51/gen.c (genEndFunction): simplified
3098
3099 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3100
3101         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3102
3103 2005-04-14 Borut Razem <borut.razem AT siol.net>
3104
3105         * fixed bug 1045046 - SIGSEGV with really simple code?:
3106           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3107           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3108
3109 2005-04-14 Borut Razem <borut.razem AT siol.net>
3110
3111         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3112           src/pic16/device.h: temporarily disabled experimental #inline pragma
3113           for 2.5.0 release
3114
3115 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3116
3117         * device/include/z80/stdio.h,
3118         * device/include/z80/string.h: removed these highly incomplete files so
3119           SDCC can use the default ones in device/include/
3120
3121 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3122
3123         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3124         gcc warning.
3125         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3126         fix sdcpp warnings.
3127
3128 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3129
3130         * device/include/malloc.h: removed redundant __reentrant prototypes
3131         * device/lib/_mullong.c: added working xstack variant in asm (C version
3132           doesn't pass regression tests)
3133         * device/lib/bpx.c: used __data and made bpx char for mcs51
3134         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3135           (createFunction): fixed bug with xstackPtr
3136         * src/SDCCcse.c: corrected comments
3137         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3138           (killDeadCode, eBBlockFromiCode): removed unused code
3139         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3140           corrected comments
3141         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3142           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3143           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3144           (genModOneByte): fixed warning in MSVC
3145         * src/mcs51/main.c (): added comments
3146         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3147
3148 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3149
3150         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3151
3152 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3153
3154         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3155
3156 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3157
3158         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3159         characters arrays of larger size than the declared one.
3160
3161 2005-04-10 Borut Razem <borut.razem AT siol.net>
3162
3163         * src/pic/gen.c (genInline),
3164           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3165           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3166           (findNextInstruction), (findPrevInstruction),
3167           (findInstructionUsingLabel),
3168           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3169         * src/pic/pcode.c (findLabel): added missing '\n'
3170         * src/src.dsp: added SDCCdwarf2.c to the project
3171
3172 2005-04-09 Borut Razem <borut.razem AT siol.net>
3173
3174         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3175
3176 2005-04-08 Raphael Neider <rneider AT web.de>
3177
3178         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3179           into the chain after a given one) and mergeDefmapSymbols (combine
3180           defmap entries for each symbol per pcode)
3181         * (createDefmap): have defmap entries merged in the end
3182         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3183           a symbol before replacing one access type's symbol, merge symbols in
3184           the end (replacement symbol might already have an entry)
3185         * (assignValnums): keep reference to written WREG intact
3186
3187 2005-04-08 Raphael Neider <rneider AT web.de>
3188
3189         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3190           Alpha)
3191
3192 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3193
3194         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3195         bytes
3196
3197 2005-04-07 Raphael Neider <rneider AT web.de>
3198
3199         * device/include/pic16/usart.h: added compatibility defines for
3200           devices with more than one USART
3201         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3202
3203 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3204
3205         * device/lib/Makefile.in: updated for port specific include
3206
3207 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3208
3209         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3210
3211 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3212
3213         * device/include/8051.h,
3214         * device/include/8052.h,
3215         * device/include/at89S8252.h,
3216         * device/include/at89c55.h,
3217         * device/include/at89x051.h,
3218         * device/include/at89x51.h,
3219         * device/include/at89x52.h,
3220         * device/include/mcs51reg.h,
3221         * device/include/reg51.h,
3222         * device/include/reg764.h,
3223         * device/include/regc515c.h,
3224         * device/include/sab80515.h: (re)moved these 12 files
3225         * device/include/mcs51/8051.h,
3226         * device/include/mcs51/8052.h,
3227         * device/include/mcs51/at89S8252.h,
3228         * device/include/mcs51/at89c55.h,
3229         * device/include/mcs51/at89x051.h,
3230         * device/include/mcs51/at89x51.h,
3231         * device/include/mcs51/at89x52.h,
3232         * device/include/mcs51/mcs51reg.h,
3233         * device/include/mcs51/reg51.h,
3234         * device/include/mcs51/reg764.h,
3235         * device/include/mcs51/regc515c.h,
3236         * device/include/mcs51/sab80515.h: and added them here
3237
3238 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3239
3240         * device/include/stdarg.h: changed SDCC specific keywords to double
3241           underlined form.
3242         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3243           mcs51 and ds390.
3244         * device/include/hc08/mc68hc908gp32.h,
3245         * device/include/hc08/mc68hc908jb8.h,
3246         * device/include/hc08/mc68hc908jkjl.h,
3247         * device/include/hc08/mc68hc908qy.h: fixed comments
3248         * device/include/mcs51/README: updated
3249         * device/include/mcs51/c8051f120.h: added PINRSF
3250         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3251         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3252           amidst code. Also inline is not supported.
3253
3254 2005-04-06 Raphael Neider <rneider AT web.de>
3255
3256         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3257         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3258           callers stack/frame pointers
3259
3260 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3261
3262         * device/include/pic16/usart.h: added, missing in previous commit,
3263         * device/include/pic16/adc.h: fixed typo,
3264         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3265         commit,
3266         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3267         <p18fxxx.inc>
3268         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3269         uninitialized because a bug appears with gplink
3270         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3271         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3272         complains for unrecognised option
3273
3274 2005-04-05 Raphael Neider <rneider AT web.de>
3275
3276         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3277           structs as well (using memcpy)
3278         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3279           on ISRs (GOTO has no label)
3280         * src/pic16/device.h: added OF_OPTIMIZE_DF
3281         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3282           new data flow analysis/optimization
3283         * src/pic16/pcode.c: added (prototypes for and implementation of)
3284           dataflow analysis functions, fixed pCodeInstructions' inCond and
3285           outCond values, made RCALL a branch instruction
3286         * (pic16_unlinkpCode): keep C line if possible
3287         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3288           C line moved if possible
3289         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3290         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3291           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3292         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3293           new flow)
3294         * (pic16_getJumptabpCode): NEW, needed in...
3295         * (LinkFlow): fixed handling of jumptables, calls and conditional
3296           branches
3297         * (pic16_InsertCommentAfter): NEW
3298         * (pic16_pCodeReplace): made verbose and flow preserving
3299         * (AnalyzeFlow): added call to data flow analysis
3300         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3301         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3302         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3303
3304 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3305
3306         * src/SDCCast.c (decorateType): fixed bug #1105626
3307
3308 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3309
3310         * device/include/asm/pic16/features.h,
3311         * pic18f*.h headers,
3312         * device/include/pic16/adc.h,
3313         * device/include/pic16/delay.h,
3314         * device/include/pic16/i2c.h,
3315         * device/include/pic16/malloc.h,
3316         * device/include/pic16/stdio.h,
3317         * device/include/pic16/stdlib.h,
3318         * device/include/pic16/string.h,
3319         * device/lib/pic16/libc/stdio/printf_tiny.c,
3320         * device/lib/pic16/libc/stdio/printf_small.c,
3321         * device/lib/pic16/libc/stdio/strmgpsim.c,
3322         * device/lib/pic16/libc/stdio/strmmssp.c,
3323         * device/lib/pic16/libc/stdio/strmusart.c,
3324         * device/lib/pic16/libc/stdio/vfprintf.c,
3325         * device/lib/pic16/libc/stdlib/ltoa.c,
3326         * device/lib/pic16/libc/stdlib/putchar.c,
3327         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3328         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3329         * device/lib/pic16/libc/stdlib/memchrram.c,
3330         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3331         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3332         * device/lib/pic16/libio/adc/adcbusy.c,
3333         * device/lib/pic16/libio/adc/adcread.c,
3334         * device/lib/pic16/libio/adc/adcsetch.c,
3335         * device/lib/pic16/libio/usart/ubaud.c,
3336         * device/lib/pic16/libio/usart/ubusy.c,
3337         * device/lib/pic16/libio/usart/udrdy.c,
3338         * device/lib/pic16/libio/usart/uopen.c,
3339         * device/lib/pic16/libio/usart/uputc.c,
3340         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3341         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3342         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3343         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3344         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3345         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3346         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3347         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3348         specific keywords to double underlined form,
3349         * device/lib/pic16/libc/Makefile.rules,
3350         * device/lib/pic16/libsdcc/Makefile.rules,
3351         * device/lib/pic16/libm/Makefile,
3352         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3353         to compile with C standard set in Makefile.common
3354         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3355         rand.c and crc.c in compilation process,
3356         * device/lib/pic16/libsdcc/int/divuint.c,
3357         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3358         `c' from signed to unsigned,
3359         * device/lib/pic16/startup/crt0.c,
3360         * device/lib/pic16/startup/crt0i.c,
3361         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3362         keywords to double underlined form, bug fixes in _do_cinit function
3363         which prevented the correct initialization of the .idata segment,
3364         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3365         core to enter a infinite loop
3366         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3367
3368 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3369
3370         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3371
3372 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3373
3374         * device/include/Makefile.in: add support for hc08 subdirectory
3375         * device/include/hc08/: new subdirectory
3376         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3377         Lucas Loizaga, thanks!
3378         * device/include/hc08/mc68hc908qy.h,
3379         * device/include/hc08/mc68hc908gp32.h,
3380         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3381         their own directory. Changed internal macro names to use the compiler
3382         reserved namespace. Changed SDCC specific keywords to double
3383         underlined form.
3384         * device/include/math.h,
3385         * device/include/malloc.h,
3386         * device/include/stdarg.h,
3387         * device/include/stdbool.h
3388         * device/include/string.h,
3389         * device/include/tinibios.h,
3390         * device/include/ds400rom.h,
3391         * device/include/8051.h,
3392         * device/include/8052.h,
3393         * device/include/80c51xa.h,
3394         * device/include/at89c55.h,
3395         * device/include/at89S8252.h,
3396         * device/include/at89x51.h,
3397         * device/include/at89x52.h,
3398         * device/include/ds80c390.h,
3399         * device/include/reg764.h,
3400         * device/include/regc515c.h,
3401         * device/include/sab80515.h,
3402         * device/include/mcs51/c8051f000.h,
3403         * device/include/mcs51/c8051f018.h,
3404         * device/include/mcs51/c8051f020.h,
3405         * device/include/mcs51/c8051f040.h,
3406         * device/include/mcs51/c8051f060.h,
3407         * device/include/mcs51/c8051f120.h,
3408         * device/include/mcs51/c8051f300.h,
3409         * device/include/mcs51/c8051f310.h,
3410         * device/include/mcs51/c8051f320.h,
3411         * device/include/mcs51/c8051f330.h,
3412         * device/include/mcs51/c8051f350.h,
3413         * device/include/z180.h: Changed SDCC specific keywords to double
3414         underlined form.
3415
3416 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3417
3418         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3419         18F4455,
3420         * (pic16_assignConfigWordValue): disable testing of configuration
3421         register value with config mask,
3422         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3423         function with port->fun_prefix,
3424         * (genFunction): when generating a naked interrupt function never
3425         create an absolute segment placed in interrupt vector address, place
3426         the actual interrupt function at IVA instead, when an interrupt
3427         function is generated with unspecified interrupt then do not create
3428         the absolute section,
3429         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3430         code for generating a call to generic pointer get/put function with
3431         a call to function pic16_callGenericPointer(),
3432         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3433         the call to the generic pointer get/put functions with prefixing the
3434         function name with port->fun_prefix,
3435         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3436         * src/pic16/main.c (_process_pragma): prefix function with
3437         port->fun_prefix,
3438         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3439         calling assembler, old 18Fxxxx macro is deprecated,
3440         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3441         PC_ASMDIR in while condition,
3442         * (findInstruction): add PC_ASMDIR in while condition,
3443         * (buildCallTree): prefix main with port->fun_prefix,
3444         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3445         identifier for variable with banked access in instructions BTFSS,
3446         BTFSC, BCF, BSF, BTG
3447         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3448         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3449         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3450         perform optimization when enviroment variable NO_REG_OPT is set,
3451         * (insideLRBlock): NEW, return 1 if register is inside an
3452         INF_LOCALREGS block,
3453         * (RemoveRegFromLRBlock): remove a register that is completely
3454         eliminated by register optimization, but it is still left in local
3455         register store/restore in/from stack block,
3456         * (Remove2pcodes): after removing register, check to see if it
3457         should be removed from local register store/restore in/from stack
3458         block,
3459         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3460         DUMMY_READ_VOLATILE,
3461
3462         * device/include/pic16/adc.h: minor prototype modifications and
3463         update,
3464         * device/include/pic16/malloc.h: added GPL notice various
3465         modifications,
3466         * device/include/pic16/stdint.h: NEW, standard header for ints
3467         * device/include/pic16/delay.h: NEW, header for delay functions,
3468         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3469         delay1mtcy,
3470         * device/include/pic16/signal.h: NEW, header providing helper macros
3471         for implementing signal handlers,
3472         * device/include/pic16/stdio.h: added prototypes for functions,
3473         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3474         prototypes for stdin and stdout, added macro PUTCHAR to
3475         automatically implement putchar function prototype,
3476         * device/include/pic16/usart.h: modified and updated USART library,
3477         * device/lib/pic16/libio/adc/,
3478         * device/lib/pic16/libio/i2c: some modifications to improve library
3479         performance,
3480         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3481         family of functions,
3482         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3483         family of functions and other sources,
3484         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3485         of the PIC18Fxx[28] devices,
3486         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3487         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3488         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3489         _do_cinit function, because the previous failed when local variables
3490         where not placed in the same memory bank,
3491         * device/lib/pic16/libsdcc/char/: various modifications to improve
3492         library performance,
3493         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3494         information on the new functions of the c library and more...
3495
3496 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3497
3498         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3499
3500 2005-03-26 Raphael Neider <rneider AT web.de>
3501
3502         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3503           if condition == CARRY)
3504         * (genCmp): adapted to new genSkipc semantics
3505         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3506           on rIfx (genCmp was broken)
3507
3508 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3509
3510         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3511         * src/z80/main.c (_keywords[]),
3512         * src/SDCCglobal.h (struct options),
3513         * src/SDCC.y,
3514         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3515         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3516         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3517         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3518         always available in leading double underscore form. The C99 support is
3519         mostly missing, but it's a start.
3520         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3521         reserved identifier "__data".
3522
3523 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3524
3525         * src/mcs51/peeph.def: fixed bug 1170013
3526
3527 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3528
3529         * device/include/mcs51reg.h: fixed bug 842007
3530
3531 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3532
3533         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3534         last time.
3535
3536 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * src/port.h (struct PORT),
3539         * src/avr/ralloc.c (avr_assignRegisters),
3540         * src/avr/main.c,
3541         * src/ds390/ralloc.c (ds390_assignRegisters),
3542         * src/ds390/main.c,
3543         * src/hc08/ralloc.c (hc08_assignRegisters),
3544         * src/hc08/main.c,
3545         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3546         * src/mcs51/main.c,
3547         * src/pic/ralloc.c (pic14_assignRegisters),
3548         * src/pic/main.c,
3549         * src/pic16/ralloc.c (pic16_assignRegisters),
3550         * src/pic16/main.c,
3551         * src/xa51/ralloc.c (xa51_assignRegisters),
3552         * src/xa51/main.c,
3553         * src/z80/ralloc.c (z80_assignRegisters),
3554         * src/z80/ralloc.h,
3555         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3556         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3557         * src/SDCCcse.h,
3558         * src/SDCCdflow.c (computeDataFlow),
3559         * src/SDCCdflow.h,
3560         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3561         * src/SDCCloop.h,
3562         * src/SDCCcflow.c (*),
3563         * src/SDCCcflow.h,
3564         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3565         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3566         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3567         immedDom() returning wrong block; probably fixes bug #1160833)
3568
3569 2005-03-20 Borut Razem <borut.razem AT siol.net>
3570
3571         * support/scripts/inc2h.pl: WIN32 port
3572
3573 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3574
3575         * device/lib/makefile.in: added abs.c and labs.c
3576
3577 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3578
3579         * device/include/stdint.h: added
3580         * device/lib/abs.c: added
3581         * device/lib/labs.c: added
3582         * device/include/stdlib.h: added abs() and labs() prototypes
3583         * device/lib/libsdcc.lib: added abs and labs
3584         * device/include/float.h,
3585         * device/lib/_fsmul.c,
3586         * device/lib/printf_fast.c,
3587         * device/lib/printf_tiny.c: updated comments
3588
3589 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3590
3591         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3592         bug #1164313
3593
3594 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3595
3596         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3597         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3598
3599 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3600
3601         * device/lib/printf_large.c: removed inline assembly for portability and
3602           readability. Use printf_fast if speed or size are more important.
3603         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3604         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3605
3606 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3607
3608         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3609         prevent compiler warning
3610
3611 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3612
3613         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3614         moved to level 0 and declared as static. Also they are explicit
3615         placed in access bank. This was necessery because some times they
3616         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3617         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3618         optimizations. Currently only compare to unsigned char is implemented,
3619         * src/pic16/gen.c: added fReturnIdx array,
3620         * (struct resolvedIfx) is moved to gen.h and made public,
3621         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3622         * (aopForSym): added an optimization to directly store in stack of
3623         the operand of a SEND iCode,
3624         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3625         but as registers instead (AOP_REG) using the fReturnIdx array,
3626         * (pic16_freeAsmop): remove the freed register from the
3627         _G.sregsAlloc field,
3628         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3629         a compare of 'WREG',
3630         * (pic16_popGetTempRegCond): changed function prototype, now
3631         function takes also a bitVector argument v which holds the current
3632         set of registers that are allocated for stack access by aopForSym,
3633         registers allocated in aopForSym for accessing stack symbols are not
3634         any more part of the functions usedRegs field,
3635         * (genCall): some times aopOp is called for a stack variable to be
3636         send, aopForSym might perform the push, if this is true make sure
3637         that genCall doesn't push the variable twice by testing _G.resDirect,
3638         * (genFunction): changed testing for unspecified interrupt number
3639         from 256 to INTNO_UNSPEC,
3640         * modified selection scheme of frame pointer generation. Previously
3641         if function did use local registers a frame pointer was generated,
3642         now a frame pointer is generated only if function has arguments
3643         (that need PLUSW2 register access), or has stack arguments, or the
3644         compiler is not instructed to omit the frame pointer,
3645         * (genEndFunction): before restoring local registers that were saved
3646         in the function preamble, also restore the registers that *might*
3647         have been allocated for stack access,
3648         * (genRet): removed some old comments,
3649         * (genCmp, the active (RN's) version): added a call to the
3650         pic16_genCmp_special function to perform the compare with a more
3651         robust and optimized way,
3652         * (genInline): a feature has been added in inline code generation,
3653         which allows a wildcard variable substitution when writing inline
3654         assembly. Code is incomplete and experimental therefore undocumented,
3655         * (genCast): changed order of aopOp for result and right to allow
3656         aopForSym to directly load the result if possible,
3657         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3658         perform an optimized compare on some selected special occasions,
3659         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3660         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3661         generate an IVT any more,
3662         * src/pic16/main.c (pic16_optionsTable): added command line option
3663         --optimize-cmp,
3664         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3665         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3666         macros,
3667         * src/pic16/NOTES: Raphael Neider added in list of active developers
3668         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3669         jumptable_end to prevent bug #,
3670         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3671         inCond and outCond fields,
3672         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3673         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3674         turn off register spilling,
3675         * (packRegsForOneUse): synced with other ports' versions although it
3676         is not used currently,
3677         * (pic16_packRegisters): added an optimization while reading
3678         structure bitfields, some registers may be saved (malloc code is
3679         decreased by 80 bytes)
3680
3681 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3682
3683         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3684         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3685         this can be optimized more?
3686
3687 2005-03-10 Raphael Neider <rneider AT web.de>
3688
3689         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3690           genNearPointerGet): (hopefully) fixed access to bitfields via
3691           pointers (p->bitN = x; and x = p->bitN; failed)
3692
3693 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3694
3695         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3696
3697 2005-03-09 Raphael Neider <rneider AT web.de>
3698
3699         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3700
3701 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3702
3703         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3704         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3705           (regTypeNum): set REG_BIT type if necessary
3706         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3707         * support/regression/tests/critical.c: check bug 1144613
3708
3709 2005-03-02 Raphael Neider <rneider AT web.de>
3710
3711         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3712
3713 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3714
3715         * src/avr/ralloc.c (serialRegAssign),
3716         * src/ds390/ralloc.c (serialRegAssign),
3717         * src/hc08/ralloc.c (serialRegAssign),
3718         * src/mcs51/ralloc.c (serialRegAssign),
3719         * src/pic/ralloc.c (serialRegAssign),
3720         * src/pic16/ralloc.c (serialRegAssign),
3721         * src/xa51/ralloc.c (serialRegAssign),
3722         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3723
3724 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3725
3726         * src/SDCCast.c (decorateType): fixed bug 1124787
3727
3728 2005-02-20 Hubert Sack <sack AT digiplan.de>
3729         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3730
3731         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3732         patch #1121755
3733
3734 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3735
3736         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3737         to keep the correct label reference count when adding/removing references
3738         to labels. A peephole file using this is appended to patch #1144962.
3739
3740 2005-02-14 Raphael Neider <rneider AT web.de>
3741
3742         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3743         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3744         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3745           retrievals of result operand's value on assignment
3746
3747 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3748
3749         * device/include/pic16/string.h: modified prototype for memccpy()
3750         to memccpy(void *, void *, char, size_t)
3751         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3752         check whether to omit frame pointer or not,
3753         * (genInline): convert all occurences of "\n" to LF in inline
3754         assembler blocks, this helps formatting the inline text,
3755         * (pic16_loadFSR0): modified prototype,
3756         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3757         removed some 8051 legacy code,
3758         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3759         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3760         before allocating temporary registers in functions,
3761
3762 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3763
3764         * support/regression/tests/bitvars.c: corrected the "fix"
3765
3766 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3767
3768         * support/regression/tests/bitvars.c,
3769         * support/regression/tests/bitwise.c,
3770         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3771
3772 2005-02-10 Raphael Neider <rneider AT web.de>
3773
3774         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3775           different size for Alpha
3776         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3777
3778 2005-02-09 Raphael Neider <rneider AT web.de>
3779
3780         * src/SDCC.lex(doPragma) : save and restore warning options as well
3781           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3782         * have #pragma less_pedantic set the errorlevel to WARNING
3783           (fixes #1117001)
3784         * (cloneOptimize) : fixed wrong malloc's size
3785         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3786           facilitate correct handling of #pragma (save|restore)
3787
3788 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3789
3790         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3791
3792 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3793
3794         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3795
3796 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3797
3798         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3799
3800 2005-02-02 Raphael Neider <rneider AT web.de>
3801
3802         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3803         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3804         * (pic16_storeForReturn): fixed to allow returning function pointers
3805         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3806         * device/include/pic16/{stddef.h,stdbool.h}: added
3807
3808 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3809
3810         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3811
3812 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3813
3814         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3815         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3816          appeared to be required
3817
3818 2005-01-31 Borut Razem <borut.razem AT siol.net>
3819
3820         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3821           include/mcs51 and include/z80 directories to the package
3822
3823 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3824
3825         * src/hc08/gen.c (genFunction): fixed bug #1112752
3826
3827 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3828
3829         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3830
3831 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3832
3833         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3834
3835 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3836
3837         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3838
3839 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3840
3841         * device/include/c8051fxxx.h: removed these 6 files
3842         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3843
3844 2005-01-26 Raphael Neider <rneider AT web.de>
3845
3846         * src/pic16/gen.c (genAssign): fixed assignment from longs
3847           in codespace (were cut to three bytes)
3848         * (genDummyRead): implemented (except for CODESPACE...),
3849           fixed bug #1108575
3850         * src/pic16/glue.c (emitStatistics): beautified
3851         * device/lib/pic16/libm/Makefile: added include path
3852
3853 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3854
3855         * src/z80/gen.c (aopPut): fixed bug #1103902
3856
3857 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3858
3859         * device/lib/expf.c: fixed bug #1095792
3860
3861 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
3862
3863         * device/lib/pic16/libm: added Math library sources
3864
3865 2005-01-24 Raphael Neider <rneider AT web.de>
3866
3867         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
3868           to enable upcast to pCodeOpReg2 (there is no type tag to
3869           differenciate the two and pic16_popGet2p cast into PCOR2)
3870         * src/pic16/main.c (_process_pragma): fixed another malloc bug
3871           (sizeof(sectNames) changed to sizeof(sectName))
3872           Both patches fix segfaults under MinGW.
3873
3874 2005-01-23 Raphael Neider <rneider AT web.de>
3875
3876         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
3877           Safe_[mc]?alloc()'ed variables
3878         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
3879           of (byte sized) temporaries (assign them to WREG for now)
3880         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
3881           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
3882           this might fix SIGSEGVs on MinGW...
3883         * src/SDCCopt.c (killDeadCode): restored original behaviour
3884           (volatile operands might get thrown away though)
3885
3886 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
3887
3888         * src/pic16/gen.c: fixed bug #1106975,
3889         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
3890         pointer update, INTCON is saved, global interrupts are disabled and
3891         restored after updateing TOS.
3892         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
3893         * added function attribute 'shadowregs' to take advantage of shadow
3894         registers,
3895         * added function attribute 'wparam' as an alternative to the wparam
3896         pragma,
3897         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
3898         user declares a non-ISR function as 'shadowregs',
3899         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
3900
3901 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
3902
3903         * .version: bumped version number to 2.4.8
3904         * device/lib/pic16/pics.all: list of PIC18F devices supported by
3905         pic16 port,
3906         * device/lib/pic16/libio/i2c/: I2C module support library,
3907         * device/include/pic16/i2c.h: I2C support library header,
3908         * device/lib/pic16/libc/stdio/: standard IO support sources,
3909         * (printf_small.c): printf_small() source, supports float print,
3910         * (printf_tiny.c): printf_tiny() source, does not support floats,
3911         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
3912         enable global optimizations for entire library source, other
3913         Makefiles in the source tree are also modified to reflect this,
3914         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
3915         function,
3916         * doc/sdccman.lyx: updated to reflect new changes,
3917         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
3918         sym->onStack if-case,
3919         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
3920         sbit, idata, _idata, xdata, _xdata,
3921         * added pragma library, to link an external library, (see doc),
3922         * removed command line options, --pomit-config-words, --pomit-ivt,
3923         --pleave-reset-vector,
3924         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
3925         when calling assembler to reflect memory model used, also define
3926         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
3927         reflect stack model used,
3928         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
3929         on stack return NULL,
3930
3931 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3932
3933         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
3934           of the operands is volatile. Fixes #1020220
3935
3936 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
3937
3938         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
3939         * (OptimizeRegUsage): make sure that there is really no other flow where
3940           the first pCode is used
3941
3942 2005-01-22 Raphael Neider <rneider AT web.de>
3943
3944         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
3945           to fix #1106967 (pCode->seq are not set up correctly)
3946
3947 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3948
3949         * src/SDCCglue.c (glue): make sure code area is declared before the
3950         static initialization area.
3951
3952 2005-01-21 Raphael Neider <rneider AT web.de>
3953
3954         * device/lib/Makefile.in: fixed test for pic16 install dir
3955         * device/lib/pic16/*/Makefile*: modified compile flags to enable
3956           optimizations
3957         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
3958           added --optimize-goto compiler switch and pragma wparam documentation
3959         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
3960         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
3961           and PRODH closing bug #1071770 (peephole optimizer)
3962
3963 2005-01-19 Raphael Neider <rneider AT web.de>
3964
3965         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
3966           cmdLine buffers (used when calling sdcpp...) are large enough
3967           (MAX_PATH=256 truncates arguments leading to system halts when
3968           used in MinGW...)
3969         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
3970         * (genUminus): rewritten to for efficiency
3971         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
3972           used uninitialized in some cases)
3973         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
3974           copy the third byte from the int -- now assumes 0x80 (data memory)
3975         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
3976           operands (genAddLit expects the iCode's operands to swapped as
3977           well), fixed leftover bytes (crashed for short left operands)
3978         * (pic16_genMinusDec): performance improvements, removed false
3979           PIC14 emitSKPNCs
3980         * (pic16_genMinus): fixed to cope with differently sized operands
3981         * src/pic16/glue.c (pic16_glue): added new banksel optimization
3982           for --obanksel > 1
3983         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
3984         * src/pic16/graph.[ch]: implementation of directed graphs, used by
3985           new banksel optimization
3986         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
3987           analysis for temporary registers (segfaults...)
3988         * src/pic16/peeph.def: added rule
3989
3990 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
3991
3992         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
3993         which converts a float number to its ASCII representation
3994         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
3995         functions to convert the fractional and integer part of a float to ASCII,
3996         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
3997         realloc.c): added _MALLOC_SPEC to explicit place variables in data
3998         ram
3999         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
4000         _STATMEM macros,
4001         * device/include/pic16/adc.h: added GPL info,
4002         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
4003         a pCodeOp as tested operand,
4004         * (genNearPointerGet): optimized bit testing, does not use
4005         intermediate register for bit value, test directly instead with
4006         BTFSS, BTFSC, works only for single bits,
4007         * (genpic16Code): dump the name of the iCode in the asm,
4008         * src/pic16/ralloc.c (decodeOp): removed static declaration and
4009         renamed to pic16_decodeOp,
4010         * (serialRegAssign): do not allocate a temporary register for iCode
4011         sequences that test a single bit for 1/0
4012
4013 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
4014
4015         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
4016         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
4017         access stack and frame pointers. They are initially assigned to
4018         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
4019         accessing SFRs. Updated all occurences of modification of stack or
4020         frame pointer in gen.c and pcode.c,
4021         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4022         assigning of a literal value to pointers,
4023         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4024         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4025         selected
4026
4027 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4028
4029         * doc/sdccman.lyx: update documentation about stack pragma, added
4030         some info for stack memory models
4031
4032 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4033
4034         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4035
4036 2005-01-08 Raphael Neider <rneider AT web.de>
4037
4038         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4039           udata sections to fix bug #1097823
4040
4041 2005-01-05 Raphael Neider <rneider AT web.de>
4042
4043         * src/pic16/gen.c (genGenericShift): added handling of differently
4044           sized left operand and result
4045
4046 2005-01-04 Raphael Neider <rneider AT web.de>
4047
4048         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4049         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4050           to hold the condition bit)
4051         * added new version of genCmp (old code available via #define)
4052         * added new version of genShiftLeft/genShiftRight in a generic
4053           way, now supports shifting by negative values
4054         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4055           shiftCount (expected by genGenericShift)
4056         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4057         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4058           dump
4059         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4060           is an invalid literal too...)
4061
4062 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4063
4064         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4065         from Raphael Neider,
4066         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4067         for 8-bit literals. This fixes some literal operands which are sign
4068         extended to 16-bits ints when instruction needs only 8-bits.
4069
4070 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4071
4072         * device/lib/logf.c: added mcs51 assembly version
4073         * device/lib/expf.c: added mcs51 assembly version
4074         * device/lib/_logexpf.c: new shared asm code for expf and logf
4075         * device/include/math.h: add defines for assembly math library
4076         * device/lib/Makefile.in: build new _logexpf.c
4077         * device/lib/libfloat.lib: use new _logexpf.c
4078
4079 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4080
4081         * src/pic/device.c
4082         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4083           device types which have less than 0x7f registers.
4084
4085 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4086
4087         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4088
4089 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4090
4091         * device/lib/printf_fast.c: only build on supported arch.
4092         * device/lib/printf_tiny.c: only build on supported arch.
4093         * device/lib/printf_fast_f.c: only build if asm float lib
4094         * device/lib/_fsget1arg.c: only build if asm float lib
4095         * device/lib/_fsget2args.c: only build if asm float lib
4096         * device/lib/_fsnormalize.c: only build if asm float lib
4097         * device/lib/_fsreturnval.c: only build if asm float lib
4098         * device/lib/_fsrshift.c: only build if asm float lib
4099         * device/lib/_fsswapargs.c: only build if asm float lib
4100         * device/include/stdio.h: don't provide print_fast,
4101           print_fast_f, print_tiny prototypes if --xstack used
4102
4103 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4104
4105         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4106         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4107           to the SOURCES
4108
4109 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4110
4111         * device/lib/printf_fast_f.c: same as printf_fast, but
4112           with floating point enabled
4113         * device/lib/printf_fast.c: minor tweaks
4114         * device/include/stdio.h: add printf_fast_f
4115
4116 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4117
4118         * src/SDCCmain.c: make --float-reent default for mcs51
4119         * device/lib/_fsadd.c: added mcs51 assembly version
4120         * device/lib/_fssub.c: added mcs51 assembly version
4121         * device/lib/_fsmul.c: added mcs51 assembly version
4122         * device/lib/_fsdiv.c: added mcs51 assembly version
4123         * device/lib/_fseq.c: added mcs51 assembly version
4124         * device/lib/_fsneq.c: added mcs51 assembly version
4125         * device/lib/_fsgt.c: added mcs51 assembly version
4126         * device/lib/_fslt.c: added mcs51 assembly version
4127         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4128         * device/lib/Makefile.in: add _fscmp to build
4129         * device/lib/libfloat.lib: add _fscmp to build
4130
4131 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4132
4133         * device/lib/_fs2slong.c: added mcs51 assembly version
4134         * device/lib/_fs2sint.c: added mcs51 assembly version
4135         * device/lib/_fs2schar.c: added mcs51 assembly version
4136         * device/lib/_fs2ulong.c: added mcs51 assembly version
4137         * device/lib/_fs2uint.c: added mcs51 assembly version
4138         * device/lib/_fs2uchar.c: added mcs51 assembly version
4139         * device/lib/_slong2fs.c: added mcs51 assembly version
4140         * device/lib/_sint2fs.c: added mcs51 assembly version
4141         * device/lib/_schar2fs.c: added mcs51 assembly version
4142         * device/lib/_ulong2fs.c: added mcs51 assembly version
4143         * device/lib/_uint2fs.c: added mcs51 assembly version
4144         * device/lib/_uchar2fs.c: added mcs51 assembly version
4145         * device/include/float.h: added #define to select asm vs c
4146
4147 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4148
4149         * device/lib/printf_fast.c: improvements to float output
4150         * device/include/float.h: add defines for assembly float library
4151         * device/lib/_fsget1arg.c: receive 1 float arg
4152         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4153         * device/lib/_fsnormalize.c: normalize a float
4154         * device/lib/_fsreturnval.c: return float, various helper routines
4155         * device/lib/_fsrshift.c: right shift a float's mantissa
4156         * device/lib/_fsswapargs.c: swap 2 floats
4157         * device/lib/Makefile.in: build these 6 new files for mcs51
4158         * device/lib/libfloat.lib: add these 6 files to the library
4159
4160 2004-12-26 Borut Razem <borut.razem AT siol.net>
4161
4162         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4163           built by gcc 3.4.2
4164
4165 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4166
4167         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4168           and fully reentrant and register bank neutral.
4169         * device/lib/printf_fast.c: added float (not enabled by default),
4170           added compact/slower integer (also not enabled by default),
4171           improved size/speed of fast integer code, other minor changes
4172         * device/include/stdio.h, device/lib/Makefile.in,
4173           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4174
4175 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4176
4177         * src/pic16/pcode.c: declaring variables other than at the start of a
4178           block is not supported in C by VC6.
4179
4180 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4181
4182         * applied a previous patch from Raphael Neider that wasn't included
4183         in the previous commits, which fixes infinite loops within jumptable
4184         improvements,
4185         * made some fixes that previous patches introduced
4186
4187 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4188
4189         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4190         that fixes an issue with AOP_PCODE asmop's offset,
4191         * (pic16_popCopyReg): update instance field too,
4192         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4193         function of pic port,
4194         * (genCmp, genAnd, genAssign),
4195         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4196
4197 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4198
4199         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4200         variables initial values to idata section,
4201         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4202         variables in some functions. This utilizes parmBytes field of iCode
4203         structure to hold the offset of the variable in stack. (might be
4204         able to use the stack field too?)
4205         * applied patch from Raphael Neider # ### , # ###
4206         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4207         variable initial values in idata section,
4208         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4209         for static variables with initial value
4210         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4211         applied fix in while loop from Raphael Neider.
4212
4213 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4214
4215         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4216         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4217         * src/ds390/ralloc.c (serialRegAssign): spill bits
4218         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4219         * support/Util/SDCCerr.c,
4220         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4221         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4222         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4223
4224 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4225
4226         * device/include/sdcc-lib.h: inserted LGPL, added includes
4227           asm/ds390/features.h and asm/mcs51/features.h
4228         * device/include/asm/default/features.h,
4229         * device/include/asm/gbz80/features.h,
4230         * device/include/asm/z80/features.h: added empty _AUTOMEM
4231           and _STATMEM
4232         * device/include/asm/ds390/features.h,
4233         * device/include/asm/mcs51/features.h: added files with defines for
4234           _AUTOMEM and _STATMEM indicating automatic and static storage class
4235         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4236         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4237         * src/SDCCicode.c (geniCodeCast),
4238         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4239         * src/SDCCloop.c (loopInduction): removed unused variable lr
4240         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4241           to convertToFcall to include char modulo (RFE 1065037), added check
4242           if left operand is unsigned and use abs of literal value
4243         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4244           as it doesn't work after conversion from peephole.def to peephole.rul
4245         * src/mcs51/gen.c (toBoolean): added check for size,
4246           (genModOneByte): optimized code for signed char modulo a literal
4247           power of 2 (thanks to Hubert Sack),
4248           (genRRC): removed unnecessary "clr c",
4249           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4250         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4251           jump optimization,
4252           swapped rules 256.c and 256.d,
4253           extended 256.d by using new multiple checks (thanks Erik),
4254           added rules 256.e and 256.f,
4255           updated rule 261.a and 261.b to new generated code
4256         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4257
4258 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4259
4260         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4261           induction related bugs, including first part of bug #1074377
4262
4263 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4264
4265         * applied patch from bug-report #1076292,
4266         * applied patches for genAnd and Goto-optimizations for Raphael
4267         Neider,
4268         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4269         dump a less iCode information,
4270         * src/pic16/device.h (pic16_options_t): added field debgen,
4271         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4272         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4273         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4274         puclic,
4275         * (various functions): added macros FENTRY and FENTRY2 to functions,
4276         to emit function prologue,
4277         * (various functions): fixed indentation,
4278         * (genNearPointerGet): fixed loading of FSR0,
4279         * (genPackBits): applied patch from Raphael Neider to fix updating
4280         of FSR0 and touching only the modified bits,
4281         * src/pic16/genarith.c (various functions): added macros FENTRY to
4282         emit function prologue in comments,
4283         * src/pic16/pcode.h: added functions debugf2, debugf3,
4284         * src/pic16/ralloc.c: partial fix for packForPush caused
4285         segmentation fault,
4286
4287 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4288
4289         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4290           <stsp AT users.sourceforge.net> with reversed byte order
4291         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4292
4293 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4294
4295         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4296           bug #1074377
4297         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4298         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4299
4300 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4301
4302         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4303
4304 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4305
4306         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4307           conditions,
4308           (setFromConditionArgs): friendly operand parser for peephole rules,
4309           (operandBaseName, operandsNotRelated): new peephole condition
4310           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4311           architecture specific register naming into account, handles n-way
4312           comparisons, and supports quoted literals
4313         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4314
4315 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4316
4317         * src/mcs51/peeph.def: fixed bug #1076940
4318
4319 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4320
4321         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4322
4323 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4324
4325         Adding support for replacing ljmps with sjmps in jumptables
4326         generated for switch statements. For now you need to set the
4327         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4328         Now 4 algorithms for mcs51 jumptable generation are used:
4329         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4330         addresses loaded pc-relative for up to 112 cases and stack-pushing
4331         target addresses loaded with offset from dptr for up to 256 cases.
4332
4333         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4334         * src/mcs51/main.c: adapted constants for switch table generation
4335         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4336
4337 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4338
4339         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4340         * support/regression/tests/bug1057979.c: added test for bug 1073386
4341
4342 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4343
4344         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4345         compilers
4346
4347 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4348
4349         * src/pic16/device.h,
4350         * src/pic16/genarith.c,
4351         * src/pic16/glue.c,
4352         * src/pic16/main.c,
4353         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4354
4355 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4356
4357         Large cummulative patch for pic16 port.
4358         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4359         to call when a stack overflow occurs,
4360         * (malloc.h): added CVS Id tag,
4361         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4362         variable,
4363         * added libc directory. The current version of LibC contains string
4364         functions, ctype functions and macros and some functions of the
4365         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4366         be extensively tested in the future. Standard disclaimer here.
4367         Library is not automatically build yet. But one can build it by
4368         invoking 'make' inside the libc directory.
4369         * added ADC library under libio. Preliminary version yet.
4370
4371         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4372         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4373         aopForRemat() now and not by pic16_aopOp(),
4374         * (pic16_popGetTempReg): removed warning messgae when allocating
4375         temporary registers, its a buggy feature and will be removed,
4376         * (pic16_popGet): set register instance field in AOP_CRY,
4377         * (pic16_outBitC): fixed for results in size greater than 1,
4378         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4379         * (pic16_storeForReturn): optimized return of 0,
4380         * (genCmp): experimental code for new genCmp which uses PIC18's
4381         special compare&skip instructions. Initial tests fail some times
4382         with variables grater than 1 byte in size, so new code is disabled,
4383         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4384         a single bit,
4385         * (genCast): began a fix to optimize the casting of a bit to another
4386         bit, now assigning a bitfield to another bitfield will fail, sorry,
4387         * src/pic16/main.c: disabled the use of lr-support feature,
4388         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4389         * added some function prototypes, added function _debugf prototype,
4390         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4391         bits with offset (case PO_GPR_BIT),
4392         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4393         command line,
4394         * (isBankInstruction): modified to return 0 for no banking instruction,
4395         and 1 for banking instruction,
4396         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4397         caused stop processing pCodes after a inline assembly block,
4398         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4399         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4400         registers when it shouldn't,
4401         * src/pic16/ralloc.c (allocReg): add preliminary support for
4402         supporting a limited set of temporary registers,
4403
4404 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4407           genDataPointerSet): ensure assignments always copy in MSB to LSB
4408           order,
4409           (loadRegFromAop): recognize CLRH optimization,
4410           (genFunction): optimize RECEIVE iCodes in reentrant functions
4411
4412 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4413
4414         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4415           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4416           selected.
4417         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4418         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4419           contiguous with data
4420
4421 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4422
4423         * device/lib/_gptrget.c (_gptrget),
4424         * device/lib/_gptrgetc.c (_gptrgetc),
4425         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4426           instead of sjmp to ret
4427         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4428           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4429
4430 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4431
4432         * .version: bumped version to 2.4.7
4433         * device/lib/_gptrget.c (_gptrget): is now _naked
4434         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4435         * device/lib/_gptrput.c (_gptrput): is now _naked
4436         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4437           (createFunction): fixed xstack
4438         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4439         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4440           or bit either,
4441           (geniCodeCritical): store original interrupt state in an iTemp bit
4442           var unless stack-auto
4443         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4444         * src/SDCCmain.c (setIncludePath): added include/target to search path
4445         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4446         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4447           prototype,
4448           (processFuncArgs): put bit vars in bit area
4449         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4450           unsaveRBank): fixed xstack,
4451           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4452           (genFunction, genEndFunction): fixed xstack,
4453           (genAssign): optimization don't walk backwards through mem
4454         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4455         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4456         * support/regression/Makefile: also make library (for stack-auto) when
4457           making "all" and added "test-mcs51-xstack-auto"
4458         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4459         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4460         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4461         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4462         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4463           make-library by MAKE_LIBRARY
4464         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4465           regression tests for xstack
4466         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4467         * support/regression/tests/critical.c: test for critical on mcs51
4468
4469 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4470
4471         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4472           built version of sdcc instead of installed version
4473
4474 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4475
4476         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4477         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4478           vprintf.c now
4479         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4480         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4481           WARNING: remove device/lib/build/z80/printf.o by hand when
4482           updating from previous build!
4483         * device/lib/z80/printf.c: updated comment
4484         * support/regression/tests/bug1057979.c: test all ports now
4485         * support/regression/tests/bug1065458.c: file added
4486
4487 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4488
4489         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4490           *_start and *_end symbols for static functions
4491
4492 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4493
4494         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4495           and search crt0.o in all library paths,
4496           (setIncludePath): proper handling of --nostdinc,
4497           (setLibPath): proper handling of --nostdlib
4498         * support/regression/Makefile,
4499         * support/regression/ports/ds390/spec.mk,
4500         * support/regression/ports/gbz80/spec.mk,
4501         * support/regression/ports/hc08/spec.mk,
4502         * support/regression/ports/mcs51/spec.mk,
4503         * support/regression/ports/mcs51-large/spec.mk,
4504         * support/regression/ports/mcs51-stack-auto/spec.mk,
4505         * support/regression/ports/z80/spec.mk: use include and lib files from
4506           built version of sdcc instead of installed version
4507         * doc/sdccman.lyx: fixed typo in --nostdinc
4508
4509 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4510
4511         * src/pic/pcode.c,
4512         * src/pic/device.c,
4513         * src/pic/ralloc.c,
4514         * src/pic/gen.c : added support to generate code for struct bit fields.
4515
4516 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4517
4518         * as/xa51/xa_version.h,
4519         * device/include/errno.h,
4520         * device/include/regc515c.h,
4521         * device/lib/_itoa.c,
4522         * device/lib/_ltoa.c,
4523         * device/lib/ser_ir_cts_rts.c,
4524         * sim/ucsim/xa.src/glob.cc,
4525         * sim/ucsim/xa.src/inst_gen.cc,
4526         * sim/ucsim/xa.src/xa_bit.cc,
4527         * sim/ucsim/xa.src/xa_sfr.cc,
4528         * sim/ucsim/z80.src/inst_dd.cc,
4529         * sim/ucsim/z80.src/inst_fdcb.cc,
4530         * support/scripts/keil2sdcc.pl,
4531         * src/pic16/pic16.dsp,
4532         * src/pic16/pic16a.dsp: corrected cvs line endings
4533         * device/lib/printf_large.c: fixed bug 1057979
4534         * src/pic16/gen.c: fixed non-C standard code
4535         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4536         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4537         * support/regression/ports/mcs51/support.c: reload T1 asap
4538         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4539           pdata use and clear idata startup behaviour
4540         * support/regression/tests/bug1057979.c: added
4541
4542 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4543
4544         * device/examples/ds390/ow390/ad26.h,
4545         * device/examples/ds390/ow390/cnt1d.h,
4546         * device/examples/ds390/ow390/crcutil.c,
4547         * device/examples/ds390/ow390/ownet.h,
4548         * device/examples/ds390/ow390/owsesu.c,
4549         * device/examples/ds390/ow390/swt12.h,
4550         * device/examples/ds390/ow390/swtoper.c,
4551         * device/examples/ds390/ow390/temp10.h,
4552         * device/examples/ds390/ow390/thermodl.c,
4553         * device/examples/ds390/tinitalk/tinitalk.dsp,
4554         * device/examples/ds390/tinitalk/tinitalk.dsw,
4555         * device/examples/mcs51/clock/hw.h,
4556         * device/examples/mcs51/simple2/go.bat,
4557         * device/examples/serialcomm/windows/serial.h,
4558         * device/examples/xa51/dummy.c,
4559         * device/examples/xa51/hello.c,
4560         * device/include/80c51xa.h,
4561         * device/include/at89x051.h: corrected cvs line endings
4562
4563 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4564
4565         * src/pic16/main.c (options): added command line --gstack, to trace
4566         stack over/under flows,
4567         * added pragma 'wparam' to allow passing first byte of function
4568         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4569         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4570         call to __gstack_test function and sets up the symbol as extern,
4571         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4572         * popaop): added call to pic16_testStackOverflow,
4573         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4574         wparamList list,
4575         * (genCall, genPcall): now all parameters are passed via stack
4576         except in functions that are pass to wparam pragma in which WREG is
4577         used too,
4578         * (genPcall): REENTRANT flag is checked to see if variable prototype
4579         contains reentrant keyword, don't call a non-reentrant function, via
4580         a reentrant function pointer or vice versa, functions are never
4581         passed via WREG,
4582         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4583         D.Winkler,
4584         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4585         SIGSEGV when accessing a NULL register stucture,
4586         * (pic16_printGPointerType): modified to handle UPPER modifier for
4587         function initializers, changed prototype of function to simpler one,
4588         * (pic16_printIvalFuncPtr): check to see if function is already
4589         added in externs list,
4590         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4591         optimized a move from W to SFR with a move to the same register
4592         later after a CALL,
4593         * device/lib/pic16/debug: NEW directory, contains debug features
4594         which are enabled when linking with libdebug.lib, currently command
4595         line option --gstack enables stack pointer tracing for over/under
4596         flow, corresponding sources are in debug/gstack
4597
4598 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4599
4600         * doc/sdccman.lyx: updated SDCC version,
4601         * (PIC16 port): update list of command line options,
4602         * src/pic16/device.h (structure pic16_options_t): added field gstack
4603         to enable stack overflow tracing on push/pops,
4604         * src/pic16/device.c (statistics structure): added statistics
4605         structure,
4606         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4607         pic16_dump_int_registers): increase statistics counters for each
4608         * variable which is encountered
4609         * (pic16_dump_usection): emit each .udata variable to its own udata
4610         section,
4611         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4612         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4613         parameters via stack, otherwise use old scheme,
4614         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4615         assembler output file,
4616         * src/pic16/main.c: added command line options --gstack to enable
4617         push/pop tracing for stack overflow,
4618         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4619         instructions): added size of each instruction,
4620         * (pic16_countInstruction): estimate size of instructions in
4621         the_pFile list, inline assembly blocks are not counted,
4622         * (pic16_FixRegisterBanking): trace previous register usage, when
4623         banksel optimizations is greater than 0, don't emit a redudant
4624         banksel directive,
4625
4626 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4627
4628         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4629         * src/pic16/ralloc.c : applied same fix for pic16.
4630         * src/pic/gen.c : tidied it up a little.
4631
4632 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4633
4634         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4635         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4636
4637 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4638
4639         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4640
4641 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4642
4643         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4644         non-reentrant function __modsint in the interrupt function (thus
4645         corrupting math operations during serial I/O)
4646         * device/lib/ser_ir.c: as above, changed buffersize
4647         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4648         256.c,d for zeroing
4649         * doc/Makefile: added option -t for rsync
4650
4651 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4652
4653         * src/SDCCast.h (struct ast),
4654         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4655
4656 2004-10-20 Borut Razem <borut.razem AT siol.net>
4657
4658         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4659         package
4660
4661 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4662
4663         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4664         makefile targets,
4665         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4666         support functions to replace long sequences of MOVFF's from access
4667         bank registers to stack and vice versa,
4668         * src/pic16/device.h: added new field opt_flags, where optimization
4669         flags can be set to enable certain features,
4670         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4671         * pBlock, (genFunction, genEndFunction): surroung loop for
4672         saving/loading used registers in stack with PC_INFO pCodes,
4673         INF_LREGS. Code in between can then be optimized by pCode optimizer
4674         to support function calls,
4675         * (genDataPointerSet): fixed bug which loaded float fields in
4676         structures with corrupt data,
4677         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4678         in a standard way debug info on stderr. Feature used for developing
4679         and debugging only,
4680         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4681         obsolete chunks of code,
4682         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4683         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4684         * pic16/src/pcode.c (pic16_newpCodeInfo,
4685         * (pic16_newpCodeOpLocalRegs),
4686         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4687         feature,
4688         * (pic16_pCodeConstString): printing of the initial value of a
4689         symbol as a comment is inhibited since parsing was already done by
4690         copyStr and output is corrupt,
4691         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4692
4693 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4694
4695         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4696
4697 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4698
4699         * as/mcs51/lkarea.c: removed old K&R style,
4700           (lnksect): changed check on boundary error,
4701           (lnksect2): changed check on boundary error,
4702           (lnksect2): extend XSTK to end of page if size = 1
4703         * as/mcs51/lkmain.c: removed old K&R style,
4704           (Areas51): create l_IRAM symbol
4705         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4706         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4707           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4708         * device/lib/_mullong.c: added version to be compiled with xstack
4709         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4710         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4711         * device/lib/mcs51/crtxstack.asm: fixed comment
4712         * src/SDCCglue.c: maxInterrupts defaults to 0,
4713           (emitMaps): added pdata,
4714           (createInterruptVect): (re)moved default,
4715           (glue): added pdata,
4716           (glue): moved __start__xstack to XSTK with default size 1
4717         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4718           and options.float_rent when options.stackAuto is set,
4719           (linkEdit): only write XDATA_NAME if provided on command line
4720         * src/SDCCmem.h,
4721         * src/SDCCmem.c: added pdata
4722         * src/port.h: added pdata_name to PORT
4723         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4724           (saveRegisters, unsaveRegisters): removed usage of B,
4725           (genMinus): fixed accumulator clash,
4726           (genJumpTab): added comment, this needs another look
4727         * src/mcs51/gen.c: added check for "B in use" paranoia,
4728           added pushB() and popB()
4729         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4730           chance
4731         * src/avr/main.c,
4732         * src/ds390/main.c,
4733         * src/hc08/main.c,
4734         * src/mcs51/main.c,
4735         * src/pic/main.c,
4736         * src/pic16/main.c,
4737         * src/xa51/main.c,
4738         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4739           added PSEG (PAG,XDATA) or NULL to port specifier
4740         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4741         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4742           (_mcs51_genInitStartup): removed __start__xstack equ,
4743           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4744         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4745         * src/z80/gen.c (_rleAppend): fixed warnings
4746         * support/regression/tests/zeropad.c: added pdata test
4747         * .version: bumped to 2.4.6
4748
4749 2004-10-17 Borut Razem <borut.razem AT siol.net>
4750
4751         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4752         as a part of nightly build
4753
4754 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4755
4756         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4757         WREG holds the first byte function parameters,
4758         * (aopForSym): take special case for symbols which are in FARSPACE
4759         but in CODESPACE too,
4760         * (assignResultValue): modified to take into account _G.useWreg,
4761         * (genCall): don't use wreg for parameter passing when function is
4762         declared as reentrant, too, added optimization INCF to stack
4763         pointer when stack parameter count is 1,
4764         * (genFunction, genEndFunction): refurnished and fixed to not using
4765         wreg for passing parameters when function has varargs or is
4766         reentrant, fixed bug with symbol name compare for generating
4767         functions in absolute address,
4768         * (pic16_storeForReturn): refurnished,
4769         * (genCmp): began writing a new version of the function, not ready
4770         yet, therefore it is disabled,
4771         * (genAssign): do not read code memory when assigning a function to
4772         a pointer function,
4773         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4774         array of characters, not pointer,
4775         * (pic16initialComments): in debug mode emit an .ident directive for
4776         the assembler,
4777         * (_process_pragma): emit a new warning type (internal to pic16)
4778         when setting stack to default length, emit a similar warning when
4779         placing a function at absolute address and address is not word aligned
4780         * (_pic16_parseOptions): added 'return TRUE' statement,
4781         * (_pic16_linkEdit): if compiling a source, then add the source's
4782         file object, first in the list of objects to link,
4783
4784 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4785
4786         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4787         * src/pic/main.c : removed VC warning.
4788         * src/pic/gen.c : changed comment.
4789
4790 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4791
4792         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4793         reference to a deprecated symbol _GPTRREG was causing failure to
4794         link. Thanks G. M. Gallant for the info.
4795
4796 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4797
4798         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4799         comments for Bugs item #954788.
4800
4801 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4802
4803         * src/pic16/device.c (pic16_dump_gsection,
4804         * pic16_groupRegistersInSection): handle symbols declared to be in
4805         access bank differently,
4806         * src/pic16/gen.c (struct _G): added field resDirect,
4807         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4808         send values read from stack directly to result and don't allocate
4809         temporary values,
4810         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4811         same registers,
4812         * (pic16_sameRegsOfs): NEW,
4813         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4814         free because they were not allocated from temporary pool,
4815         * pic16_popRegFromString): workaround to fix a problem with
4816         allocating variables twice or never,
4817         * (genGenPointerGet): using PRODL instead of FSR0H,
4818         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4819         instead of FSR0H,
4820         * (genAssign): take advantage of the _G.resDirect flag,
4821         * (genCast): around line 11844, use mov2f instead of directly
4822         MOVFF'ing between operands to account for literal values,
4823         * src/pic16/genutils.c: some new debug functions for gpsim have been
4824         added,
4825         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4826         float with integer part only,
4827         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4828         place variables in access bank
4829         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4830         updated sources to reflect recent changes in gen.c
4831
4832 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4833
4834         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4835         sources that searched for headers in installation path, now the
4836         device/include/pic16 is used,
4837         * src/pic16/glue.c (pic16glue),
4838         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4839         .line directives if not in debug mode, this suppresses assembler's
4840         warnings for ignored directives
4841
4842 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4843
4844         * src/port.h: made reset_regparms prototype void parameter explicit.
4845         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4846         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4847         * doc/sdccman.lyx: documented warning disabling and how to use
4848           printf_large to make it print floats.
4849         * device/include/stdbool.h: NEW
4850         * device/lib/_atof.c,
4851         * device/lib/_divuint.c,
4852         * device/lib/_divulong.c,
4853         * device/lib/expf.c,
4854         * device/lib/printf_large.c,
4855         * device/lib/sincosf.c,
4856         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4857         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4858           a completely reentrant lib.
4859
4860 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
4861
4862         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
4863         * device/include/pic16/stdio.h: fixed bug with colon
4864
4865 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
4866
4867         * device/include/pic16/stdio.h,
4868         * device/include/pic16/stdlib.h,
4869         * device/include/pic16/math.h: NEW
4870         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
4871         declared as _naked to reduce overhead
4872         * device/lib/Makefile.in (target port-specific-objects-pic16):
4873         changed * to *.* so to ignore the CVS directory,
4874         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
4875         stacked variables back in stack,
4876         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
4877         corruption
4878
4879 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
4880
4881         * .version: bumped version number to 2.4.5
4882         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
4883         * support/Util/SDCCerr.c (messages structure): added entry for
4884         W_POSSBUG2
4885
4886         Large cumulative patch for pic16 port and libraries.
4887         * device/include/pic16/sdcc-lib.h,
4888         * device/include/pic16/stdarg.h,
4889         * device/include/asm/pic16/features.h,
4890         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
4891         * device/include/pic16/float.h: changes reentrant keyword with
4892         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
4893         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
4894         updated target build-libraries to include objects from gptr,
4895         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
4896         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
4897         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
4898         all function headings,
4899         * src/SDCCmain.c: added global parameter userIncDirsSet,
4900         * (parseCmdLine): when option -I is encountered add directory to
4901         userIncDirsSet too,
4902         * src/version.awk: added space between control and long,
4903         * src/pic16/NOTES: added some notes for the port,
4904         * src/pic16/gen.c: added prototype for mov2fp function,
4905         * (fReturnpic16[]): properly named return value registers,
4906         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
4907         * (aopForSym): added code to handle symbols with onStack flag set,
4908         symbols onStack are allocated PTRSIZE bytes,
4909         * (aopFreeAsmop): handles special case where asmops are stack objects,
4910         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
4911         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
4912         added argument lock to trace flaws in allocating temporary registers
4913         when developing port,
4914         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
4915         * (pic16_popRegFromString): reenabled allocating a direct register
4916         from string,
4917         * (assignResultValue): various beautifications,
4918         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
4919         referenced function argument,
4920         * (genIpush): reenabled to allow stacked arguments, handles only
4921         ic->parmPush iCodes,
4922         * (genCall, genPcall): major changes to allow for variable argument
4923         functions, fixed a bug with falsely restoring stack pointer after
4924         returning from call,
4925         * (genFunction): pending code for critical function,
4926         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
4927         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
4928         * (genNearPointerGet): fixed bug with indirect reading, was always
4929         reading from INDF0
4930         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
4931         pointers,
4932         * (genAddrOf): rewrote code to take address of a stacked function parameter
4933         * (genCast): fixed casting to generic pointer type,
4934         * src/pic16/gen.h: added AOP_STA,
4935         * (struct asmop): added field stk,
4936         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
4937         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
4938         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
4939         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
4940         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
4941         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
4942         generic pointers,
4943         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
4944         and library paths,
4945         * (pic16_port structure): generic pointer size is set to 3,
4946         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
4947         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
4948         compiler warning,
4949         * src/pic16/ralloc.c (allocReg): prevent allocating register when
4950         operand is an iTemp,
4951
4952 2004-09-24 Martin Helmling <mh AT octo-soft.de>
4953
4954         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
4955         * debugger/mcs51/simi.c: addapt new syntax of s51
4956
4957 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
4958
4959         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
4960         * src/pic16/pcode.c: commented out some calls to free() in order to
4961         fix bug #989576,
4962
4963 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4964
4965         * src/SDCCicode.h,
4966         * src/SDCCicode.c (isiCodeInFunctionCall),
4967         * src/avr/ralloc.c (selectSpil),
4968         * src/pic/ralloc.c (selectSpil),
4969         * src/pic16/ralloc.c (selectSpil),
4970         * src/ds390/ralloc.c (selectSpil),
4971         * src/hc08/ralloc.c (selectSpil),
4972         * src/xa51/ralloc.c (selectSpil),
4973         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
4974         stack in the middle of a function call sequence (fixes bug #1020268)
4975         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
4976         costs associated with the minimum switch case.
4977
4978 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4979
4980         * src/SDCC.lex: fixed bug #1030549
4981
4982 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4983
4984         * src/SDCCcse.h (struct cseDef),
4985         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
4986         over a function call if the CSE is derived from a symbol whose
4987         address has been taken (fixes bug #1029883)
4988         * support/regression/tests/bug-1029883: a new regression test for
4989         this bug
4990
4991 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4992
4993         * src/hc08/gen.c (emitinline): fixed bug #1029778
4994         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
4995         to a cast object is no longer a syntax error ("fixes" bug #1030006,
4996         and starts toward RFE #905167)
4997
4998 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
4999
5000         * src/pic16/gen.c (mov2f): New function to move an operand to
5001         another without considering if it is a literal or a register,
5002         * (pic16_sameRegs): don't check if they are both AOP_REG,
5003         * (AccRsh): removed andmask=0 lines,
5004         * (genLeftShift): duplicated to be improved in future versions,
5005         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
5006         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
5007         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
5008         * (pic16initMnemonics): added initialization for POC_INFSNZW,
5009         * (insertBankSwitch): fixed inserting banksel directives algorithm
5010         for instructions that follow a skip instruction, this fixes a report
5011         for broken subtraction code generation,
5012         * src/pic16/ralloc.c (deassignLRs): do not free register if current
5013         iCode is a left op, just in case result and right share the same
5014         registers
5015
5016 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/hc08/main.c,
5019         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5020         preservation of HX
5021         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5022         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5023         on 2004-09-12; it was buggy
5024
5025 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5026
5027         * src/SDCCsymt.h: removed RESULT_CHECK
5028         * src/SDCCast.c,
5029         * src/SDCCglue.c,
5030         * src/SDCCval.c,
5031         * src/pic/glue.c,
5032         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5033
5034 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5035
5036         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5037         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5038         configuration values no more rejected by compiler, they are assigned
5039         to configuration registers with a warning message instead,
5040         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5041         the for-loop so last conf register is emitted too,
5042         * (_pic16_initPaths): link library libsdcc.lib by default,
5043         * (_hasNativeMulFor): modified test for multiplication according to
5044         Raphael Neider's remarks. Integer multiplication is also done with
5045         support functions,
5046         * device/include/pic16/pic18fregs.h: corrected type error in while
5047         testing and including 18f6720 header file
5048
5049 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5050
5051         * src/pic16/device.h (pic16_options): removed field use_crt,
5052         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5053         until an optimization to handle single bits is added,
5054         * (pic16_loadFSR0): moved before genUnpackBits,
5055         * (genAnd): some white lines removed,
5056         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5057         leave_reset flags in pic16_options when using crt modules,
5058
5059 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5060
5061         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5062           for bugs 898889 & 979599. Also used some safer print instructions.
5063
5064 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5065
5066         * src/pic16/device.h (pic16_options_t): added field use_crt,
5067         crt_name, no_crt,
5068         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5069         catch a probable future bug,
5070         * src/pic16/gen.c: aopIdx function commented out,
5071         * (genAssign): commented out old code which used aopIdx,
5072         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5073         code, added if conditionals to take into account the --use-crt
5074         command line options,
5075         * src/pic16/main.c (pic16_optionsTable): added new command line
5076         options, --use-crt= and --no-crt,
5077         * (_pic16_linkEdit): now the proper crt object is added in the
5078         linker command line except than when --no-crt is specified,
5079         * src/pic16/pcode.c,
5080         * src/pic16/pcode.h: added some structures and functions for a new
5081         optimization scheme to compansate for instruction overhead between
5082         same iCodes, this scheme is currently under development and is not
5083         working in any way,
5084         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5085         to && operator,
5086         * device/lib/pic16/startup/crt0i.c,
5087         * device/lib/pic16/startup/crt0iz.c: added global char variable
5088         __uflags to force the generation of an idata section
5089
5090 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5091
5092         * doc/Makefile,
5093         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5094         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5095
5096 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5097
5098         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5099         Frieder) and clarified the default code optimization mode
5100
5101 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5102
5103         * src/SDCC.lex (doPragma, process_pragma),
5104         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5105         "opt_code_size", and "opt_code_balanced"
5106         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5107         regrouped options by category, added support for category headers
5108         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5109         and "--opt-code-size"
5110         * doc/sdccman.lyx: documented these new options and pragmas
5111         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5112         preference into account
5113
5114 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5115
5116         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5117           geniCodePreDec): Fixed bug 904237 by generating a warning
5118         * src/SDCCerr.h,
5119         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5120
5121 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5122
5123         * src/pic/device.c : When no max ram set validate full memory range.
5124         * src/pic/pcode.c,
5125         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5126
5127 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5128
5129         * device/lib/_gptrget.c,
5130         * device/lib/_gptrput.c: updated comment
5131         * device/lib/calloc.c,
5132         * device/lib/free.c,
5133         * device/lib/malloc.c,
5134         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5135         * src/SDCCcse.c (cseBBlock),
5136         * src/SDCCicode.c (printOperand, geniCodeArray),
5137         * src/SDCCicode.h (struct operand): fixed bug 868103
5138         * support/regression/tests/bug-868103.c: added
5139         * src/SDCCast.c (searchLitOp),
5140         * src/SDCCcse.h (struct cseDef),
5141         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5142         * src/SDCCicode.h (struct operand),
5143         * src/SDCCsymt.h (struct sym_link),
5144         * src/avr/gen.c (hasInc),
5145         * src/ds390/gen.c (hasInc),
5146         * src/hc08/gen.c (genPlusIncr, hasInc),
5147         * src/mcs51/gen.c (hasInc),
5148         * src/pic16/glue.c (pic16_printIvalChar),
5149         * src/pic16/ralloc.c (regWithIdx),
5150         * src/xa51/gen.c (hasInc) : removed warnings
5151         * src/SDCCast.c (createBlock): added comment ???
5152         * src/hc08/ralloc.c: updated comments
5153
5154 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5155
5156         * doc/sdccman.lyx: updated section on switch statements, added
5157         section about semaphore locking
5158         * doc/Makefile: added option -info for latex2html
5159         * device/lib/_gptrget.c,
5160         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5161
5162 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5163
5164         * src/pic/device.h,
5165         * src/pic/device.c,
5166         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5167          maxram is less than 0x100.
5168
5169 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5170
5171         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5172
5173 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5174
5175         * src/port.h,
5176         * src/mcs51/main.c,
5177         * src/ds390/main.c,
5178         * src/z80/main.c,
5179         * src/hc08/main.c,
5180         * src/pic/main.c,
5181         * src/pic16/main.c,
5182         * src/avr/main.c,
5183         * src/xa51/main.c
5184         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5185         a jump table is the best form for a switch statement, including
5186         automatic insertion of missing cases to make the case range
5187         continuous. Developed in collaboration with Frieder Ferlemann.
5188
5189 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5190
5191         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5192         accumulator result if it needs sign extension
5193
5194 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5195
5196         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5197
5198 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5199
5200         * device/lib/gbz80/printf.c,
5201         * device/lib/z80/printf.c: removed define for NULL
5202
5203 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5204
5205         * as/xa51/xa_link.c,
5206         * device/examples/ds390/ow390/ad26.c,
5207         * device/examples/ds390/ow390/cnt1d.c,
5208         * device/examples/ds390/ow390/counter.c,
5209         * device/examples/ds390/ow390/ds2480.h,
5210         * device/examples/ds390/ow390/ds2480ut.c,
5211         * device/examples/ds390/ow390/findtype.c,
5212         * device/examples/ds390/ow390/gethumd.c,
5213         * device/examples/ds390/ow390/owllu.c,
5214         * device/examples/ds390/ow390/ownetu.c,
5215         * device/examples/ds390/ow390/swt12.c,
5216         * device/examples/ds390/ow390/swtloop.c,
5217         * device/examples/ds390/ow390/temp.c,
5218         * device/examples/ds390/ow390/temp10.c,
5219         * device/examples/ds390/ow390/thermo21.c,
5220         * device/examples/ds390/ow390/tinilnk.c,
5221         * device/examples/ds390/ow390/tstfind.c,
5222         * device/examples/serialcomm/windows/serial.cpp,
5223         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5224         * device/include/reg51.h: fixed line endings for cvs
5225
5226 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5227
5228         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5229         packRegsForAccUse, packRegisters): new accumulator register
5230         packing algorithm
5231         * support/regression/ports/hc08/support.c (_putchar): suppress
5232         warning of unused variable
5233         * src/SDCCicode.c: added SWAP entry to codeTable
5234
5235 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5236
5237         * device/lib/sprintf.c: forgot to add this file before previous commit
5238
5239 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5240
5241         * src/pic16/gen.c (genPackBits): added operand right in function
5242         parameters, load result directly if p_type is POINTER (that is
5243         called by genNearPointerSet)
5244         * (genUnPackBits): added operand left in function parameters,
5245         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5246         FSR0 if accessing bitfields,
5247
5248 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5249
5250         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5251           _print_format; updated printf, sprintf, vsprintf
5252         * device/include/asm/default/features.h: corrected comment/define
5253         * device/lib/Makefile.in: added sprintf.c
5254         * device/lib/libsdcc.lib: added sprintf module
5255         * device/lib/printf_large.c,
5256         * device/lib/vprintf.c,
5257         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5258           into these 3 files
5259         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5260         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5261         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5262           hc08 test
5263         * support/regression/tests/zeropad.c: define idata as data for hc08
5264
5265 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5266
5267         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5268         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5269         labels are referenced at least once (even if a reference is not found)
5270         * src/hc08/gen.c (emitcode): set isComment flag for comments
5271         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5272         loads), rules 6a..6b (optimize jumps to return)
5273
5274 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5275
5276         * device/lib/acosf.c (acosf),
5277         * device/lib/asinf.c (asinf),
5278         * device/lib/atanf.c (atanf),
5279         * device/lib/ceilf.c (ceilf),
5280         * device/lib/cosf.c (cosf),
5281         * device/lib/coshf.c (coshf),
5282         * device/lib/cotf.c (cotf),
5283         * device/lib/fabsf.c (fabsf),
5284         * device/lib/floorf.c (floorf),
5285         * device/lib/log10f.c (log10f),
5286         * device/lib/logf.c (logf),
5287         * device/lib/sinf.c (sinf),
5288         * device/lib/sinhf.c (sinhf),
5289         * device/lib/sqrtf.c (sqrtf),
5290         * device/lib/tanf.c (tanf),
5291         * device/lib/tanhf.c (tanhf),
5292         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5293         replaced all instances of "reentrant" in the library functions
5294         defined in math.h with this macro.
5295         * support/regression/tests/float_trans.c: reenabled test for hc08
5296
5297 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5298
5299         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5300         erroneously deleted
5301
5302 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5303
5304         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5305         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5306         multi-byte volatile operands are used
5307         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5308         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5309         initialization to area GSINIT0 so that it would always precede
5310         any static initializers in GSINIT
5311         * support/regression/tests/zeropad.c: fixed idata define for hc08
5312         * support/regression/tests/bug-927659.c,
5313         * support/regression/tests/float_trans.c: disabled tests for hc08
5314         pending missing library routines
5315         * .version: increased version number to 2.4.4 - hc08 port now passes
5316         regression tests
5317
5318
5319 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5320
5321         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5322         * Makefile.common.in,
5323         * as/Makefile,
5324         * as/hc08/Makefile.in,
5325         * as/mcs51/Makefile.in,
5326         * as/z80/Makefile.in,
5327         * debugger/mcs51/Makefile.in,
5328         * device/include/Makefile.in,
5329         * device/lib/Makefile.in,
5330         * doc/Makefile,
5331         * link/Makefile,
5332         * link/z80/Makefile.in,
5333         * packihx/Makefile.in,
5334         * sim/ucsim/main_in.mk,
5335         * sim/ucsim/avr.src/Makefile.in,
5336         * sim/ucsim/doc/Makefile.in,
5337         * sim/ucsim/gui.src/serio.src/Makefile.in,
5338         * sim/ucsim/hc08.src/Makefile.in,
5339         * sim/ucsim/s51.src/Makefile.in,
5340         * sim/ucsim/xa.src/Makefile.in,
5341         * sim/ucsim/z80.src/Makefile.in,
5342         * src/Makefile.in,
5343         * support/cpp2/Makefile.in,
5344         * support/librarian/Makefile,
5345         * support/makebin/Makefile: added DESTDIR to the install path proposed
5346         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5347         * doc/sdccman.lyx: added DESTDIR documentation
5348
5349 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5350
5351         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5352         instruction for interrupt handlers, use fast returns when returning
5353         from high priority interrupts
5354
5355 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5356
5357         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5358         code generation
5359         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5360         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5361         bugs, ported much of Bernhard's code from mcs51
5362         * src/mcs51/gen.c (genSend),
5363         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5364         than one when calling a reentrant function
5365         * device/lib/_mullong.c: defined an alternate struct layout for big
5366         endian ports (hc08)
5367
5368 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5369
5370         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5371         test
5372
5373 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5374
5375         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5376         are sane and complete before asking the port its prefered parameter
5377         passing method (fixes bug #1017633)
5378         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5379         and _ret3
5380
5381 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5382
5383         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5384         problem in bitfields >= 8 bits.
5385
5386 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5387
5388         * src/SDCCsymt.c: undid changes that were not meant to be committed
5389
5390 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5391
5392         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5393
5394 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5395
5396         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5397           copied and wrong bit got inverted
5398
5399 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5400
5401         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5402         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5403         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5404         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5405         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5406         assignments to bitfields at known addresses
5407         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5408         reads from bitfields at known addresses
5409         * src/hc08/ralloc.c (packRegisters),
5410         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5411         genhc08Code): optimize pointer get values used as conditionals
5412         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5413         and branch
5414
5415 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5416
5417         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5418         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5419         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5420         as conditionals
5421
5422 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5423
5424         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5425
5426 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5427
5428         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5429         related problems
5430
5431 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5432
5433         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5434
5435 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5436
5437         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5438         mcs51 port
5439
5440 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5441
5442         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5443
5444 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5445
5446         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5447         cases use more compact code.
5448
5449 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5450
5451         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5452
5453 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5454
5455         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5456
5457 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/SDCCsymt.h,
5460         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5461         parameter of changePointer() from symbol* to sym_link*
5462         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5463         * src/SDCCsymt.c (compareType): void* type is castable to other
5464         pointers, but not necesarily an exact match.
5465         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5466         is no longer blindly treated as an exact match.
5467         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5468
5469 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5470
5471         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5472
5473 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5474
5475         * src/pic/gen.c,
5476         * src/pic/pcode.c,
5477         * src/pic/ralloc.h,
5478         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5479
5480 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5481
5482         * src/pic/device.c,
5483         * src/pic/device.h,
5484         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5485
5486 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/mcs51/gen.c (emitcode): fixed bug #992819
5489
5490 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5491
5492         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5493           there's no need to make it worse
5494
5495 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * src/mcs51/ralloc.c (deassignLR),
5498         * src/ds390/ralloc.c (deassignLR),
5499         * src/hc08/ralloc.c (deassignLR),
5500         * src/z80/ralloc.c (deassignLR),
5501         * src/pic/ralloc.c (deassignLR),
5502         * src/pic16/ralloc.c (deassignLR),
5503         * src/avr/ralloc.c (deassignLR),
5504         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5505         rlivePoint): fixed another part of bug #971834
5506
5507 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5508
5509         * src/z80/main.c: enabled "critical" keyword
5510         * src/z80/mappings.i,
5511         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5512         functions (fixes bug #979646)
5513         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5514
5515 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5516
5517         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5518           such as c:\mydir.
5519
5520 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5521
5522         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5523           doesn't disable too much optimizations
5524
5525 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5526
5527         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5528
5529 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5530
5531         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5532
5533 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5534
5535         * src/pic/gen.c tidied up tabs
5536         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5537         * src/pic/main.c tidied up tabs
5538         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5539         * src/pic/pcoderegs.c tidied up tabs
5540         * src/pic/ralloc.c tidied up tabs
5541
5542 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5543
5544         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5545         to S_FIXED for pic16 port and when symbol is not in level 0,
5546         allocate for S_REGISTER storage class and pic16 port, too,
5547         * src/pic16/device.h: prototype for checkSym,
5548         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5549         * (pic16_assignConfigWordValue): test the value and the mask to
5550         validate that the value is suitable for the configuration word,
5551         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5552         collect extern declared symbols, don't emit symbol twice, check
5553         first if symbol is in publics set first,
5554         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5555         * added command line '--fstack' which enables an experimental
5556         feature for stack access, too buggy to be used yet...
5557         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5558         * (pic16_allocDirReg): when register has storage class S_REGISTER
5559         allocate in pic16_dynAccessRegs,
5560         * device/include/pic16/pic18f????.h: modified configuration word
5561         naming convention, words started as CONFIG0H but should be CONFIG1H
5562
5563 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5564
5565         * device/include/mcs51reg.h: fixed bug 970993
5566
5567 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5568
5569         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5570         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5571         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5572         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5573         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5574         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5575           error/warning numbers,
5576           added function setWarningDisabled()
5577         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5578         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5579           _memcmp.c _memmove.c calloc.c realloc.c free.c
5580         * support/regression/tests/malloc.c: added tests for new functionality
5581         * support/regression/tests/zeropad.c: added tests for truncated initializers
5582           and initialized char arrays starting with '\x0'
5583         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5584
5585 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5586
5587         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5588
5589 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5590
5591         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5592         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5593         peephole 177.e. Thanks to anonymous
5594
5595 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5598         function isn't used in the source but referenced as a
5599         variable initializer then declare it as extern in .asm file
5600
5601 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5602
5603         * .version: increased version number to 2.4.3
5604
5605         Adding version extension according to ChangeLog CVS revision
5606         * src/Makefile.in (target all): added dependency 'version.h'
5607         * (rule version.h): added rule to create version.h from ChangeLog,
5608         * (rule dep): added dependency version.h,
5609         * src/version.awk: AWK script to create version.h
5610         * src/SDCCdwarf2.c (dwWriteModule),
5611         * src/SDCCglue.c (initialComments),
5612         * src/SDCCmain.c (printVersionInfo): modified to write after
5613         version string the version extension number,
5614         * src/SDCCutil.c: included "version.h"
5615         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5616         number,
5617         * src/SDCCutil.h: added prototype for getBuildNumber
5618
5619         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5620         includeDirsSet, too,
5621         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5622         const char [] is found in function prototype...
5623
5624         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5625         moving to WREG with source is already in WREG,
5626         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5627         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5628         * (aopForSym): stack'ed symbols are partially supported, added
5629         if-clause to support symbols in FARSPACE,
5630         * (sameRegs): added test for AOP_ACC to see if registers are same,
5631         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5632         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5633         * (pic16_popRegFromString): will not allocate a new register if it
5634         doesn't find one by name, bug may have introduced...
5635         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5636         * (genIpush): revived to use pic16 port's stack,
5637         * (genAddrOf): added incomplete case for stack'ed operand,
5638         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5639         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5640         can handle multibyte operands,
5641         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5642         * (pic16initialComments): added message for MPLAB compatibility
5643         mode enabled,
5644         * src/pic16/main.h: prototype for pic16_mplab_comp,
5645         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5646         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5647         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5648         because of increased complexity of procedure,
5649         * (_process_pragma): stack pragma changed to format 'stack pos len',
5650         emit symbol '_stack_end' to conform with gplink,
5651         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5652         to search for register,
5653         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5654         PO_GPR_REGISTER,
5655         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5656         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5657         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5658         case for PO_GPR_REGISTER,
5659         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5660         dies, the new era is ahead !...
5661         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5662         pic16_dynInternalRegs,
5663         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5664         * (pic16_allocDirReg): minor optimizations and bug fixes,
5665         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5666
5667         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5668         load stack and frame pointer with address of 'stack_end' symbol
5669
5670 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5671
5672         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5673         without source code but only variable initializers
5674
5675 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5676
5677         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5678         external are not declared as extern to reduce overhead while linking
5679
5680 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5681
5682         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5683
5684 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5685
5686         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5687           Yee Keat for the patch
5688         * src/SDCCast.c (decorateType): fixed bug #979599
5689         * src/ds390/gen.h: removed local fReturnSizeDS390
5690         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5691         * src/ds390/gen.c (genAnd, genOr, genXor),
5692         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5693
5694 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5695
5696         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5697         add relFilesSet to $3, manipulate $2 to handle linking of object
5698         files without source files in command line,
5699         * device/include/pic16 (all headers): added ID location macros,
5700         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5701         entries for ID location bytes,
5702         * (pic16_assignIdByteValue): NEW,
5703         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5704         added field dumpcalltree to pic16_options_t,
5705         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5706         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5707         emitting rFalseIfx label after check_carry label,
5708         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5709         pic16_emitDIRegs), NEW
5710         * (pic16glue): dump .calltree file when option --calltree found,
5711         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5712         * (_pic16_genAssemblerPreamble): emit ID locations after
5713         configuration registers,
5714         * (pic16_linkCmd): modifications of the link command,
5715         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5716         * (pic16_pCodeInitRegisters): don't init stack registers,
5717         * (pic16_findPrevInstruction): fixed bug,
5718         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5719         bug with immediate registers,
5720         * (buildCallTree): traces stack push and pop,
5721         * (pct2): dump also stack usage for each function,
5722         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5723         * (pic16_allocDirReg): various modifications,
5724         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5725         fixed to 1,
5726
5727 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5728
5729         * src/pic16/pcode.c: removed buggy double colon
5730
5731 2004-07-01 Borut Razem <borut.razem AT siol.net>
5732
5733         * support/scripts/sdcc.nsi: added include/pic16 to setup
5734
5735 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5736
5737         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5738         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5739         target 'clean',
5740         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5741         specific command line arguments. Also added sample lkr script
5742         for placing a variable at a specific memory bank.
5743         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5744         at a specific memory bank,
5745         * (pic16_dump_isection): fixed bug which caused string literals to
5746         be omitted when dumping idata section,
5747         * (pic16_groupRegistersInSection): added code to handle registers
5748         in specific memory banks,
5749         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5750         public, all references are renamed too,
5751         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5752         AOP_DPTR2,
5753         * (pic16_storeForReturn): added case to handle when dest is WREG,
5754         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5755         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5756         pic16_rel_udata, check to see if that register is marked as being
5757         a member of a specific memory bank,
5758         * (pic16_printIvalCharPtr): added code to add string literals either
5759         to code or the idata sections,
5760         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5761         also accept the 'udata' pragma,
5762         * src/pic16/main.h: new structure types sectName and sectSym
5763         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5764         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5765         * (pic16_findPrevInstruction): fixed, it returned nothing,
5766         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5767         instruction combinations,
5768         * (pic16_FixRegisterBanking): heavily reorganised,
5769         * (pic16_AnalyzeBanking): if generating banksel directives is
5770         disabled, then don't call FixRegisterBanking at all,
5771         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5772         completely removed,
5773         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5774
5775 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5776
5777         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5778         Phuah Yee Keat <yk.phuah AT nestac.com>
5779
5780 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5781
5782         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5783         correctly the IVT even if it is relocated to some other location
5784
5785 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5786
5787         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5788         * device/include/pic16/pic18f2220.h: NEW,
5789         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5790         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5791         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5792         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5793         nodefaultlibs, ivt_loc is the location of the interrupt vector
5794         table, and nodefaultlibs signs that default libraries should not be
5795         linked in link stage,
5796         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5797         according to --ivt-loc argument,
5798         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5799         when pragma stack is found,
5800
5801 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5802
5803         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5804         256 (range check), 257 (do while), 258.a-f (bit banging
5805         f.e. on 3-wire SPI bus)
5806
5807 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5808
5809         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5810         variables used exclusively within a loop
5811
5812 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5813
5814         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5815
5816 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5817
5818         * src/SDCClrange.c (computeClash): fixed bug #971834
5819
5820 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5821
5822         * src/mcs51/gen.c (genCmp): fixed bug #975903
5823         * src/hc08/gen.c (operandsEqu),
5824         * src/ds390/gen.c (operandsEqu),
5825         * src/z80/gen.c (operandsEqu),
5826         * src/pic/gen.c (operandsEqu),
5827         * src/pic16/gen.c (operandsEqu),
5828         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5829         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5830
5831 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5832
5833         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5834
5835 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5836
5837         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5838         default case in switch statement,
5839         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5840         to eliminate problem with initialisation of pointers, but problem
5841         still exists,
5842         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5843         * (emitStaticSegment): removed various lines emitting debug info,
5844         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5845         added processor registers for utilizing EEPROM,
5846         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5847         configurable and set 8
5848
5849 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5850
5851         * .version: increased version number to 2.4.2,
5852
5853         Cumulative patch for pic16 port
5854         * src/pic16/device.c: changed scheme to dump initial values for
5855         variables in idata segment, all print_idata* functions were removed,
5856         now the pic16_printIval* will be called,
5857         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5858         * _pic16_printPointerType, pic16_printPointerType,
5859         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5860         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
5861         NEW, similar to the respective functions in SDCCglue.c,
5862         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
5863         way, emitting hex bytes,
5864         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
5865
5866 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5867
5868         * src/avr/ralloc.c (serialRegAssign),
5869         * src/xa51/ralloc.c (serialRegAssign),
5870         * src/pic/ralloc.c (serialRegAssign),
5871         * src/pic16/ralloc.c (serialRegAssign),
5872         * src/hc08/ralloc.c (serialRegAssign),
5873         * src/z80/ralloc.c (serialRegAssign),
5874         * src/ds390/ralloc.c (serialRegAssign),
5875         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
5876
5877 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5878
5879         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
5880         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
5881
5882 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
5883
5884         Cumulative patch for pic16 port:
5885         * src/pic16/device.h (typedef PIC16_device) modified fields for
5886         defining microcontrollers,
5887         * src/pic16/device.c: added new info for all devices in Pics16 array,
5888         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
5889         to be optimised out by the pCode optimiser,
5890         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
5891         specially, bug reported by G.M. Gallant,
5892         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
5893         as force'd so that cannot be optimised out by pCode optimiser,
5894         * src/pic16/pcode.c,
5895         * src/pic16/pcodepeeph.c,
5896         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
5897         they are disabled by default, but can be enabled explicit with
5898         command argument --denable-peeps, for testing,
5899         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
5900         --pomit-ivt in COMPILE_FLAGS
5901
5902 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5903
5904         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
5905           compilation on MSVC
5906
5907 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
5908
5909         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
5910
5911 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5912
5913         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
5914         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
5915
5916 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
5917
5918         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
5919         would only assign 0x300001 register.
5920
5921 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
5922
5923         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
5924         in COMPILE_FLAGS. Thanks to G. Gallant for report.
5925
5926 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5927
5928         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
5929         for ds80c400
5930         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
5931         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
5932         added peephole 254 (left shift), 255 (jump table)
5933
5934 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
5935
5936         * device/lib/Makefile.in: removed comment line with model-pic16,
5937         * (target port-specific-objects-pic16): the libraries and objects
5938         are copied to the build directory form the device/lib/pic16/bin
5939         directory
5940
5941         Cumulative patch concerning pic16 port:
5942         * library directory has been re-organized,
5943         * added support for PIC18F1220,
5944         * added headers and library sources for chips 18f1220,18f6520,
5945         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
5946
5947         * configuration registers setting has changed, now each supported
5948         device has a complete description of the registers it uses,
5949         * all initialisations are moved to idata sections, these section
5950         can be absolute or relocatable,
5951         * fixed initialisation of codespace variables,
5952         * fixed warning about PCLATU and gpsim,
5953         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
5954         * (genAssign): use table reads when assigning from variables in codespace,
5955         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
5956         char/int variables placed in codespace,
5957         * (pic16_emitConfigRegs): NEW, emits a list with configuration
5958         registers set in .asm file, no need for --pomit-config-words anymore,
5959         * (pic16glue): some 8051 legacy segments are commented out
5960         (to be removed completely),
5961         * added support for alternative assembler and linker with --asm=
5962         and --link= command line arguments,
5963         * peepholes are disabled automatically in the port, no need to
5964         specify on command line,
5965         * port supports natively char/int/long multiplication, but converts
5966         all divisions to support functions,
5967         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
5968         to the file set in variable $2,
5969         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
5970         strings in ASCII format and not in hex,
5971         * ralloc.c (serialRegAssign): added a triplet of conditional calls
5972         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
5973         allocate proper register if iCodes aren't temporary,
5974
5975 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
5976
5977         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
5978
5979 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
5980
5981         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
5982         is commented out
5983
5984 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5985
5986         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
5987         computed address is reused
5988         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
5989         multi-byte bitfields
5990
5991 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5992
5993         * src/z80/gen.c: (genArrayInit): must check for pointers too
5994
5995 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
5996
5997         * support/regression/tests/zeropad.c: never meant to commit the
5998           nestedstruct test: removed, added check for GCC version
5999
6000 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
6001
6002         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
6003         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
6004         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
6005           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
6006           bugs 928906 and 954082 half-empty initializers
6007         * src/SDCCsymt.h,
6008         * src/SDCCsymt.c (getAllocSize): added for above fix
6009         * src/z80/gen.c (genArrayInit): fixed bug 741044
6010         * support/regression/tests/zeropad.c: added tests
6011
6012 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
6013
6014         * src/pic16/device.c (pic16_dump_section): corrected bug which
6015         caused some symbols of the libraries to be misplaced
6016
6017 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6018
6019         * src/pic16/glue.c,
6020         * src/pic16/ralloc.h,
6021         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6022         to fix conflict with pic port
6023
6024 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6025
6026         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6027         externs configuration variables,
6028         * src/pic16/ralloc.h,
6029         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6030         prototype in header, commented out some debug messages
6031
6032 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6033
6034         * src/pic16/glue.c,
6035         * src/pic16/main.c,
6036         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6037         for gpasm COFF object generation. Thanks to D. Hawkins for
6038         his patch info
6039
6040 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6041
6042         * src/ds390/main.c,
6043         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6044         Brock for spotting this)
6045         * src/ds390/gen.c (genEndFunction),
6046         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6047         interrupt handler and critical. Disable push/pop optimizations when
6048         peephole optimizations disabled.
6049
6050 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6051
6052         Updated pic16 library sources and headers.
6053         * device/lib/pic16/pic18f*/ ,
6054         * device/include/pic16/*.h: modified to handle structured SFR
6055         definitions
6056
6057 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6058
6059         * src/port.h (PORT structure): added hook initPaths, now each
6060         port can declare its own default search paths,
6061         which can been seen with the --print-search-dirs option,
6062         see pic16 port for example,
6063         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6064         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6065         * (doPrintSearchDirs): NEW, replaces in a central manner the
6066         printing of search dirs which was split in set*Paths functions,
6067         * (main): added call to port->initPaths and doPrintSearchDirs,
6068         * src/avr/main.c,
6069         * src/ds390/main.c,
6070         * src/hc08/main.c,
6071         * src/izt/i186.c,
6072         * src/izt/tlcs900h.c,
6073         * src/mcs51/main.c,
6074         * src/pic/main.c,
6075         * src/pic16/main.c: modified port structures to reflect addition of
6076         initPaths hook,
6077
6078         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6079         * (pic16_dump_section): for registers in same address reserve memory once,
6080         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6081         to no_banksel,
6082         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6083         result is greater in size than right or left,
6084         * (pic16_genUMult8X8_8): there are some cases where the result can
6085         be 16 bits size, so handle these,
6086         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6087         * (pic16_outBitC): modified to emit pcodes,
6088         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6089         or not,
6090         * (genDivOneByte): implemented algorithm to divide 8-bits,
6091         * (genCmp): uncommented goto, but issues still exist,
6092         * (genAnd): fixed a bug with variables >8bits,
6093         * (genPackBits): optimization added that uses BCF/BSF to change a
6094         single bit,
6095         * (genAssign): fixed bug when assigning floating point literals,
6096         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6097         __sdcc_gsinit_startup label,
6098         * src/pic16/main.c (_pic16_init): removed search directory
6099         initialisations,
6100         * (_pic16_initPaths): NEW, used to initialise search directories,
6101         * (_hasNativeMulFor): support functions for all except char/int
6102         multiplication, and char division,
6103         * (PIC16_port struct): modified entry for native mul support,
6104         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6105         no_banksel option,
6106         * (buildCallTree): call to register_usage is ifdef'ed out,
6107
6108 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6109
6110         * device/include/string.h: applied Stas Sergeev's patch to make this
6111         header file compatible with the preprocessor -Wundef option
6112         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6113         failure (fixes bug #941458)
6114
6115 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6116
6117         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6118         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6119         that the variable, not the function, should be static
6120         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6121         to be consistent with non-literal case
6122
6123 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/SDCCast.c (isConformingBody): fixed bug #949967
6126         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6127         convilong): fixed bug #952086
6128
6129 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6130
6131         * src/SDCCmem.c (allocVariables): fixed bug #955321
6132
6133 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6134
6135         * src/hc08/main.c (_hc08_genAssemblerEnd),
6136         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6137         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6138         completely eliminated the use of a temporary file
6139         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6140         when more than one file linked
6141         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6142
6143 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6144
6145         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6146         which fixes bug #543481
6147         * support/regression/tests/bug-751703.c: fixed comments left from a
6148         cut and paste error
6149         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6150         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6151         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6152         scopes
6153         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6154         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6155         are now changed to underscores in moduleName
6156
6157 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6158
6159         * as/mcs51/lkmem.c: better fix for bug #954173
6160
6161 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6162         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6163
6164         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6165         * device/include/c8051f000.h,
6166         * device/include/c8051f120.h,
6167         * device/include/c8051f300.h,
6168         * device/include/c8051f310.h,
6169         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6170         PWM16) and detab'ed
6171
6172 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6173
6174         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6175         and mailing lists, doc'ed --no-peep-comments, removed reference
6176         to knoppix (newest version has no LyX/LaTeX), other minor changes
6177         * src/SDCCglue.c (glue): save 2 bytes stack space with
6178         option --main-return. The ljmp could probably be avoided too
6179
6180 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6181
6182         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6183
6184 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6187         * src/SDCCopt.c (isLocalWithoutDef),
6188         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6189         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6190         (credit to Maarten Brock for patch #949363, on which this is based)
6191         * support/regression/tests/bug-751703.c: some test cases of extern used
6192         within inner scopes.
6193
6194 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6195
6196         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6197         SPEC_STRUCT
6198         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6199         struct definitions
6200         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6201         dwWriteLabel): fix to create valid debugger symbols even when
6202         the module name has non-alphanumeric symbols in it
6203         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6204         when a variable's allocation has been optimized away
6205
6206
6207 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6208
6209         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6210         * src/hc08/main.c,
6211         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6212         * src/mcs51/main.c,
6213         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6214         * src/ds390/main.c,
6215         * src/z80/gen.c (z80_emitDebuggerSymbol),
6216         * src/z80/main.c,
6217         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6218         * src/pic/main.c,
6219         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6220         * src/pic16/main.c,
6221         * src/avr/gen.c (avr_emitDebuggerSymbol),
6222         * src/avr/main.c,
6223         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6224         * src/xa51/main.c,
6225         * src/SDCCdebug.c (emitDebuggerSymbol),
6226         * src/SDCCdebug.h,
6227         * src/port.h: added a debugger struct to the port struct. Added a
6228         callback for defining debugger symbols
6229
6230         * src/SDCCast.c (createLabel),
6231         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6232         with isitmp = 1
6233         * src/SDCCicode.h,
6234         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6235         iCode back to the ast for the function
6236
6237         * src/hc08/ralloc.c (hc08_assignRegisters),
6238         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6239         unneeded fields from the regs struct.
6240         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6241         pushReg() & pullReg() functions instead of emitcode()
6242
6243         * src/hc08/gen.c (genLabel, genhc08Code),
6244         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6245
6246         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6247         debugger hooks
6248
6249         * src/hc08/gen.c (genEndFunction, genhc08Code),
6250         * src/hc08/gen.h,
6251         * src/mcs51/gen.c (genEndFunction, gen51Code),
6252         * src/mcs51/gen.h,
6253         * src/ds390/gen.c (genEndFunction, gen390Code),
6254         * src/ds390/gen.h,
6255         * src/z80/gen.c (genEndFunction, genZ80Code),
6256         * src/z80/gen.h,
6257         * src/z80/z80.h,
6258         * src/pic/gen.c (genEndFunction, genpic14Code),
6259         * src/pic/gen.h,
6260         * src/pic16/gen.c (genEndFunction, genpic16Code),
6261         * src/pic16/gen.h,
6262         * src/avr/gen.c (genEndFunction, genAVRCode),
6263         * src/avr/gen.h,
6264         * src/xa51/gen.c (genEndFunction, genXA51Code),
6265         * src/xa51/gen.h,
6266         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6267         specific code to cdbFile.c and out of the backend code generators
6268
6269         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6270         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6271         starting address is now 0
6272
6273         * as/hc08/asm.h,
6274         * as/hc08/m08pst.c,
6275         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6276         assembler directive for DWARF support
6277         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6278
6279         * src/src.dsp,
6280         * src/Makefile.in,
6281         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6282
6283 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6284
6285         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6286         and inappropriate peephole optimization in jump tables
6287
6288 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6289
6290         * as/hc08/m08pst.c,
6291         * src/SDCCglue.c: sdccopt works for the hc08 port now
6292
6293 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6294
6295         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6296
6297 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6298
6299         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6300
6301 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6302
6303         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6304         rules
6305         * src/SDCCmain.c,
6306         * src/SDCCglobl.h,
6307         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6308         comments from the peephole optimizer replacement rules
6309         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6310         symbols
6311         * src/SDCCcse.c (updateSpillLocation),
6312         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6313         equivalents
6314         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6315         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6316         objects far pointers
6317
6318 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6319
6320         * src/SDCCsymt.h: a missing part of my last change
6321         * src/pic/ralloc.c (regTypeNum),
6322         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6323
6324 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6325
6326         * src/SDCCicode.h,
6327         * src/SDCCicode.c (aggrToPtrDclType),
6328         * src/SDCCptropt.h,
6329         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6330         ptrPseudoSymConvert),
6331         * src/pic/ralloc.c (regTypeNum),
6332         * src/pic16/ralloc.c (regTypeNum),
6333         * src/hc08/ralloc.c (regTypeNum),
6334         * src/ds390/ralloc.c (regTypeNum),
6335         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6336         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6337
6338 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6339
6340         * link/z80/lkmain.c (afile),
6341         * as/hc08/lkmain.c (afile),
6342         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6343         prevent a pointer problem when a filename has no directory and
6344         no extension specified.
6345
6346 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * link/z80/lkmain.c (afile): allow periods in directory names
6349         * link/z80/lkmain.c (afile),
6350         * as/mcs51/lkmain.c (afile),
6351         * as/hc08/lkmain.c (afile): allow linker script file to have an
6352         extension other than ".lnk"
6353         * link/z80/lklex.c (getfid),
6354         * link/z80/lkmain.c (parse),
6355         * as/mcs51/lklex.c (getfid),
6356         * as/mcs51/lkmain.c (parse),
6357         * as/hc08/lklex.c (getfid),
6358         * as/hc08/lkmain.c (parse): Support comments in the linker script
6359         file on lines by themselves and after filenames
6360
6361 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6362
6363         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6364
6365 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6366
6367         * src/z80/peeph-z80.def: removed some peephole rules that don't
6368         work with multibyte arithmetic (fixed bug #937126)
6369         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6370         to registers and not global variables
6371         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6372         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6373         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6374         checking for assignments not internally generated (fixed bug #931895)
6375         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6376         structure member (fixed bug #930072)
6377
6378 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6379
6380         * src/SDCCmain.c (linkEdit),
6381         * src/hc08/main.c (_hc08_parseOptions),
6382         * as/hc08/Makefile.in,
6383         * as/hc08/aslink.h,
6384         * as/hc08/asm.h,
6385         * as/hc08/m08pst.c,
6386         * as/hc08/lkrloc.c (relr, rele),
6387         * as/hc08/lkarea.c (lnkarea)
6388         * as/hc08/lkmain.c (afile, parse),
6389         * as/hc08/lkelf.c: support for ELF output
6390         * as/hc08/lks19.c (s19),
6391         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6392
6393 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6394
6395         * as/mcs51/lkihx.c: Fixed bug #899105.
6396
6397 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6398
6399         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6400         .dsp files from Unix to DOS.
6401
6402 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6405         function pointers; we have been compliant for several months now.
6406         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6407         change that was accidently commented out
6408         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6409         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6410         bug #922319
6411
6412 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6413
6414         * src/hc08/gen.c: output of all of the internal debugging information
6415         is now controlled by the D() macro; it is disabled by default
6416
6417 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6418
6419         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6420         harder to keep the same registers during a CAST iCode
6421         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6422         long via int can be done in a single cast, if the signedness is
6423         correct.
6424         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6425         putchar() in tinibios.c in ds390's library
6426
6427 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6428
6429         * src/SDCCast.c (decorateType): fixed bug #898889,
6430         cast result of a literal complement too
6431         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6432         fixed check for bitfields
6433
6434 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6435
6436         * src/SDCCicode.c (geniCodeLogic): made it static,
6437         (geniCodeLogicAndOr): added in order to fix bug #905492,
6438         (ast2iCode): fixed bug #905492
6439         * support/regression/tests/bug-905492.c: added
6440         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6441         (processParms): fixed bug #927659: don't copy parms, this will clear
6442         decorated flag
6443         * support/regression/tests/bug-927659.c: added
6444
6445 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCast.c (addCast): don't cast float to char
6448         * device/lib/libsdcc.lib: added _memmove
6449
6450 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6451
6452         * device/lib/large/Makefile: fixed parallel execution by
6453         replacing `make` by `$(MAKE)`
6454
6455 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6456
6457         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6458         offsets (fixes bug #923936)
6459
6460 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6461
6462         * device/lib/small/Makefile: fixed parallel execution by
6463         replacing `make` by `$(MAKE)`
6464
6465 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6466
6467         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6468
6469 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6470
6471         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6472         * src/regression/Makefile: Regression test was not running.
6473
6474 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6475
6476         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6477         complement if possible
6478         * src/SDCCval.c (valComplement),
6479         * src/SDCCicode.c (operandOperation): fixed complement of literal
6480         * support/regression/tests/onebyte.c (testComplement): added
6481
6482 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6483
6484         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6485         return an optimized tree; actually replace actParm with the new tree
6486         * src/SDCCast.h: added some parantheses to remove side effects
6487         * support/regression/tests/bug-920866.c
6488
6489 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6490         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6491         Bit operands were not being handled properly in the pic14 port.
6492         (now src/regression/add.c passes again).
6493
6494 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         * src/SDCC.y (labeled_statement): case and default no longer require
6497         a following statement (RFE #893037)
6498
6499 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6500
6501         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6502         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6503         disabled (fixes bug #916294)
6504         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6505         "mov a,acc"; patch provided by Lenny Story
6506         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6507
6508 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6511         functions
6512         * src/ds390/gen.c (genFunction, genEndFunction),
6513         * src/ds390/ralloc.c (ds390_assignRegisters),
6514         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6515         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6516         pushed if there are parameters passed on the stack. Also, a cleaner
6517         way to decide if r0/r1 should be pushed/popped. (Together they fix
6518         bug #918693)
6519
6520 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6521
6522         * doc/sdccman.lyx,
6523         * device/lib/mcs51/crtpagesfr.asm,
6524         * device/lib/mcs51/crtxinit.asm,
6525         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6526         to avoid confusion with Si Lab's SFRPAGE register.
6527
6528 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6529
6530         * src/SDCCglue.c (emitMaps): allow public sfr variables
6531         * src/SDCCglue.c (initialComments): include compiler build date
6532         with compiler version and put the timestamp of the generated
6533         assembly file on a serperate line to be less confusing.
6534         * src/port.h: added genInitStartup hook
6535         * src/avr/main.c,
6536         * src/ds390/main.c,
6537         * src/hc08/main.c,
6538         * src/pic/main.c,
6539         * src/pic16/main.c,
6540         * src/xa51/main.c,
6541         * src/z80/main.c: genInitStartup initialize as NULL (default to
6542         historical behaviour)
6543         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6544         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6545         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6546         library instead of hard coding it into the compiler.
6547         * support/regression/ports/mcs51-stack-auto/spec.mk,
6548         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6549         * device/lib/mcs51/Makefile,
6550         * device/lib/small/Makefile,
6551         * device/lib/large/Makefile,
6552         * device/lib/mcs51/crtpagesfr.asm,
6553         * device/lib/mcs51/crtstart.asm,
6554         * device/lib/mcs51/crtxclear.asm,
6555         * device/lib/mcs51/crtxinit.asm,
6556         * device/lib/mcs51/crtclear.asm,
6557         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6558         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6559         and into user configurable files.
6560         * device/lib/clean.mk: clean mcs51 directory too
6561         * support/regression/tests/longlit.c: added static to T1 declaration
6562         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6563         accesses in the initialization code
6564
6565 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6566
6567         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6568         OSCTRIMVAL as noted in bug #916008
6569
6570 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6571
6572         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6573         in loops with multiple exits (reported as incorrect registers
6574         used by Martin Helmling in Sdcc-user list)
6575
6576 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6577
6578         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6579         made ds390 register extensions look less like error messages
6580
6581 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6582
6583         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6584         reported by Adam Wozniak in Sdcc-user list
6585
6586 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6589         arithmetic optimizations, added debug output
6590
6591 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6592
6593         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6594         * sdcc.spec: updated and split sdcc into 3 rpms
6595         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6596         needed for literals of LEFT_OP and '+'
6597         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6598         introduced RESULT_TYPE_NOPROM
6599         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6600         left shift
6601         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6602         limited promotion to int only for '*'
6603         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6604
6605 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6606
6607         * src/pic16/gen.c (genSkip),
6608         (genc16bit2lit), (gencjneshort): commented out
6609         (is_LitOp): new helper function, checks operand type
6610         (genCmpEq): rewritten
6611
6612 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6613
6614         * support/regression/tests/bug-908454.c: added
6615
6616 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6617
6618         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6619         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6620         (geniCodeCast): cosmetic, don't preserve bit storage class
6621         (geniCodeLeftShift): added promotion
6622         (geniCodeLogic): fixed regression
6623         * src/SDCCsymt.c (computeTypeOr): accept bits too
6624         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6625
6626 2004-03-07  Borut Razem <borut.razem AT siol.net>
6627
6628         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6629
6630 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6631
6632         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6633         version of pic16_genPackRegisters which does not check if ic is a
6634         CAST operator,
6635         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6636         function cause string1.c regression test fails
6637
6638 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6639
6640         * sim/ucsim/configure.in,
6641         * sim/ucsim/configure,
6642         * sim/ucsim/doc/Makefile.in: use docdir
6643         * src/SDCC.y: fixed sbit atrributes
6644         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6645         * src/SDCCast.c (decorateType): |^& need special promotion handling
6646         * src/SDCCast.h,
6647         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6648         * src/SDCCsymt.h (computeType),
6649         * src/SDCCicode.c: computeType() needs op
6650         * src/SDCCsymt.c (checkTypeSanity),
6651         * doc/sddman.lyx: "plain" bitfields are unsigned
6652         * src/SDCCsymt.c (computeTypeOr): added
6653         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6654         |^& ops
6655         * src/SDCCval.c (val*): computeType() needs op
6656         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6657         * support/regression/tests/onebyte.c: added tests for |^&
6658
6659 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6660
6661         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6662         for writing icode into asm output.
6663
6664 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6665
6666         * src/pic16/device.c: added some debug lines enabled
6667         with macro DEBUG_CHECK,
6668         * src/pic16/genarith.c: more debug in genPlus,
6669         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6670         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6671         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6672         * (aopForSym): onStack symbols are re-placed in data memspace,
6673         and onStack flag is cleared,
6674         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6675         copy temporary pcodeop,
6676         * (genPcall): added warning for not updating PCLATU,
6677         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6678         always true for pic16 port,
6679         * (genMultOneWord): NEW, supports integer multiplication,
6680         * (genMult): modified to call genMultOneWord,
6681         * (ifxForOp): added warning when return NULL,
6682         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6683         flag is set before call to operandFromSymbol for implicit
6684         added structures,
6685         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6686         options.intlong_rent are set by default,
6687         * (_hasNativeMulFor): modified to allow port generation of integer
6688         multiplication,
6689         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6690         set regtype to REG_SFR for all registers, restricting seting the
6691         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6692
6693 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6694
6695         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6696         more than 500 times in the regression tests
6697
6698 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6699
6700         * support/Util/SDCCerr.h,
6701         * support/Util/SDCCerr.c,
6702         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6703         enumerator_list),
6704         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6705         for symbol conflicts.
6706         * support/valdiags/tests/enum.c,
6707         * support/valdiags/tests/tentdecl.c,
6708         * support/valdiags/tests/struct.c: expect possible error messages
6709         referring to original symbol definitions.
6710         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6711         * src/SDCCsymt.h,
6712         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6713
6714 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6715
6716         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6717
6718 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6719
6720         * src/pic16/ralloc.c (newReg): fixed bug #908929
6721
6722 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6723
6724         * src/ds390/gen.c: added missing #include "main.h"
6725
6726 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6727
6728         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6729         checking if symbol is already in set,
6730         * src/pic16/device.h: prototype for checkAddSym,
6731         * src/pic16/gen.c: (_G): added entry interruptvector,
6732         * (assignResultValue): removed some commented out lines,
6733         * (genFunction): check for ISR via sym->type, absolute section for
6734         interrupt code is created via a new pBlock, the goto instruction is
6735         placed now correctly at the interrupt vector position, changed all
6736         references from ivec to _G.interruptvector,
6737         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6738         is the interrupt is a high priority one, same for return from ISR,
6739         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6740         externs to calls of checkAddSym,
6741         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6742         pic16_pcode_verbose flag is set,
6743         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6744         * src/pic16/pcoderegs.c: message about how many registers are saved
6745         will only be emitted if pic16_pcode_verbose flag is set,
6746
6747 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6748
6749         * src/ds390/ralloc.h,
6750         * src/ds390/ralloc.c (ds390_regWithIdx),
6751         * src/ds390/gen.c (emitcode),
6752         * src/ds390/main.h,
6753         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6754         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6755         ds390operandCompare, getRegsRead, getRegsWritten,
6756         initializeAsmLineNode): customized instruction size calculation for
6757         ds390, started basis for some register optimizations
6758         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6759         corresponding assembly output
6760         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6761         missing push/pop of r0/r1. Optimized push/pops
6762
6763 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6764
6765         * src/mcs51/main.c (instructionSize): fixed ACALL size
6766         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6767
6768 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6769
6770         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6771         the sorting of rlist with NULL elements
6772         * (print_idataType, print_idata): NEW to create idata sections
6773         * src/pic16/device.h: idataSymSet new variable
6774         * src/pic16/gen.c (genFunction): fixed some bugs in string
6775         comparing, improved the absolute section creation for ISRs,
6776         added FSR0L/FSR0H in registers that are saved in an ISR,
6777         * (genInline): fixed the processing of inline snippets,
6778         now they undergo no process by the peephole optimizer
6779         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6780         are placed in idataSymSet,
6781         * (pic16emitStaticSeg): extern symbols are added in externs,
6782         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6783         switching when aboslute variables are placed in access bank memory
6784         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6785         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6786         commented out with #if,
6787         * (pic16_packRegisters): reintroduce the check for CAST because some
6788         symbols are not correctly handled,
6789         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6790         pCodeInstruction instead of pCode,
6791         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6792         pCodeAsmDir definition,
6793         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6794         directive, then the argument directive is emitted without the leading
6795         tab, hack for inline labels which must be in the first column,
6796         * (compareLabel,pic16_findNextInstruction),
6797         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6798         * (insertBankSwitch): modified for the new pCodeAsmDir,
6799
6800 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6801         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6802
6803         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6804         instance,
6805         * (pushSide): commented out with #if,
6806         * (assignResultValue): fixed some typos in saving
6807         registers,
6808         * (genPcall): FIXED and sync'ed with genCall,
6809         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6810         * (genNearPointerGet): fixed to handle some more cases,
6811         implementation scheme via table reads,
6812         * (genConstPointerGet): modified to access code memory correct,
6813         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6814         and improved to handle some cases
6815         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6816         instead of "RETLW" for init data
6817         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6818         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6819         variables are placed in access bank memory (<0x80 and >=0xf80),
6820         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6821         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6822         TBLWT_POSTDEC,TBLWT_PREINC
6823         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6824         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6825         directives
6826         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6827         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6828         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6829         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6830
6831 2004-02-29  Borut Razem <borut.razem AT siol.net>
6832
6833         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6834         support/Util/findme.h, support/Util/system.h: enhance binary relative
6835         search for lib and include by using findProgramPath()
6836
6837 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         * src/SDCCpeeph.h,
6840         * src/SDCCpeeph.c (pcDistance),
6841         * src/port.h,
6842         * src/mcs51/ralloc.h,
6843         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6844         * src/mcs51/main.h,
6845         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6846         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6847         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6848         size calculation port specific, started basis for some register
6849         optimizations
6850         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6851         missing push/pop of r0/r1. Optimized push/pops
6852         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6853         * device/lib/_modsint.c (_modsint),
6854         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6855         and stack version so regression tests pass
6856
6857 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6858
6859         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6860         * src/SDCCast.c (decorateType): catch another small optimization
6861         with '?' operator
6862         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
6863         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
6864         modified to finally use computeType() all over SDCC,
6865         see Feature Request #877103
6866         * src/SDCCval.h: cosmetic
6867         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
6868         valCompare(); regression tested in muldiv.c
6869         * support/regression/tests/muldiv.c (testMod): mod sign follows
6870         dividend only
6871
6872 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
6873
6874         * src/SDCCast.c (decorateType): fixed bug #902362
6875         * doc/INSTALL.txt: fixed install instructions for win32
6876
6877 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
6878
6879         * device/include/Makefile.in (install): fixed by replacing spaces
6880         by tabs
6881         * doc/README.txt,
6882         * doc/INSTALL.txt: updated for release
6883         * doc/sdccman.lyx: added warning for --xstack being buggy
6884
6885 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
6886
6887         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
6888         to eliminate build warnings.
6889         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
6890
6891 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
6892            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6893
6894         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
6895         removed -penable-stack, added comment for stack pragma, added
6896         warning for not initializing the stack/frame registers, removed
6897         comment at interrupts section
6898
6899         Stack is made permanent, there is no ability to disable stack usage.
6900         * src/pic16/device.h,
6901         * src/pic16/device.c: removed all references to USE_STACK macro,
6902         * src/pic16/device.c (pic16_dump_section): when no elements in
6903         rlist, free rlist before return,
6904         * (pic16_dump_int_registers): NEW, internal registers are a new set
6905         of general purpose registers reused by each function,
6906         * (checkAddReg): returns 1 if registers is added to set,
6907         * (pic16_groupRegistersInSection): when a registers is of type
6908         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
6909         * src/pic16/device.h: memRange and Assigned Memory are deleted,
6910         SRCASECMP macro is moved here from device.c
6911         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
6912         PO_PCLATU, PO_PRODL, PO_PRODH,
6913         * (pic16_pCodeOpType, genMinus,
6914         changed compares to "a" register, with AOP_ACC,
6915         * (pic16_genPlus): fixed some bugs and indented properly,
6916         * (pic16_addSign): changed size to size+offset in the MOVWF
6917         instruction,
6918         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
6919         multiply 8-bit operand by literal, result is 8-bit,
6920         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
6921         multiply 2 8-bit operand, result is 8-bit,
6922         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
6923         genUMult8X*_16,
6924         * src/pic16/gen.c: changed accUse to contain WREG only,
6925         * (pic16_emitcomment): renamed to pic16_emitpcomment,
6926         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
6927         true, do not use immediate addressing any more unless sym is a
6928         pointer in codespace,
6929         * (aopForRemat): do not use immediate addressing when symbol not in
6930         codespace and when symbol's address is requested,
6931         * (aopOp): for-loop in if(sym->accUse) is modified for the new
6932         accUse size (= 1),
6933         * (aopGet): added case for AOP_ACC and don't return "accumulator
6934         bug" but WREG instead,
6935         * (popGetTempReg): pushes contents of temporary register in stack,
6936         * (popReleaseTempReg): pops contents of temporary register from
6937         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
6938         * (pic16_popGet): separated case AOP_ACC to return register WREG
6939         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
6940         or PO_IMMEDIATE and initializes their instance/offset appropriately,
6941         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
6942         the use of immediate pointers to certain cases only.
6943
6944         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
6945         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
6946         * (assignResultValue, genCall, genRet): modified to use the new
6947         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
6948         genPcall is still broken,
6949         * (genFunction): added code to create 'A' type pBlocks when
6950         interrupt functions are generated, code not extensively tested yet,
6951         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
6952         * (genEndFunction): modified so ISRs pop stored registers from stack,
6953         * (genMultOneByte): cleanup,
6954         * (AccRsh): added flag andmask, to and result with appropriate mask,
6955         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
6956         * (genDataPointerGet): fixed and reenabled its use,
6957         * (genNearDataPointerGet): bugs fixed,
6958         * (genDataPointerSet): bugs fixed,
6959         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
6960         pic16_DumpSymbol, pic16_DumpOp,
6961         * src/pic16/genutils.h: function prototypes for the above functions,
6962         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
6963         pointers,
6964         * (pic16emitRegularMap): many many many improvements, but needs a
6965         major cleanup,
6966         * src/pic16/main.c: enable_stack in pic16_options is removed,
6967         * (_pic16_parseOptions): removed command line options -penable-stack,
6968         * (_process_pragma): emit stack symbol only when stack pragma is
6969         processed,
6970         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
6971         redirected to FSR0L/FSR0H pair,
6972         * (pic16_get_op, pic16_get_op2): modifications and improvements,
6973         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
6974         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
6975         for immediates,
6976         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
6977         * (dumpPicOptype): NEW,
6978         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
6979         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
6980         with movff instruction,
6981         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
6982         added pic16_int_regs, some packRegsFor* functions are commented out,
6983         because produce errors,
6984         * src/pic16/NOTES: minor modifications
6985
6986 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6987
6988         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
6989         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
6990         --pack-iram.
6991         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
6992         * as/mcs51/lkaomf51.c: fixed bug #895763
6993
6994 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
6995
6996         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
6997
6998 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6999
7000         * doc/sdccman.lyx: added details about the HC08 storage classes and
7001         interrupts, fixed the register usage info for z80 & gbz80
7002
7003 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
7004
7005         * doc/sdccman.lyx: added more pic16 port documentation
7006         * device/include/pic16/: added header pic18fregs.h
7007
7008 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
7009
7010         * doc/sdccman.lyx: added Vangelis' contribution
7011
7012 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7013
7014         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
7015         extend to the next CALL or PCALL, not just to the next CALL.
7016
7017 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
7018
7019         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7020
7021 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7022
7023         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7024         bug #895752 and a better fix for bug #716790
7025
7026 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7027
7028         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7029
7030 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7031
7032         * doc/sdccman.lyx: minor changes, minor changed
7033
7034 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7037         which can't handle SDCC_NEWONEBYTEOPS,
7038         (geniCodeMultiply): removed conversion from mult to shift for pic14
7039         and pic16
7040
7041 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7042
7043         * src/hc08/gen.h,
7044         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7045         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7046         thus fixing bug #895406
7047
7048 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * device/lib/_modsint.c,
7051         * device/lib/_modslong.c: sign follows divisor only
7052         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7053         signs or signedness can be ignored
7054         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7055         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7056         added optimization for IFX,
7057         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7058         arguments;
7059         reenabled optimization for IFX, which was removed on 2004-01-11
7060         * src/SDCCast.h: added return type IFX
7061         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7062         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7063         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7064         SDCC_OLDONEBYTEOPS selects the old behaviour
7065         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7066         changed again and commented promotion rule
7067         * src/SDCCval.c (valDiv): promotion no longer necessary
7068         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7069         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7070         rewritten
7071         * support/regression/tests/onebyte.c: added
7072
7073 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7074
7075         * gen.c (genInline): reverted to old code for assemnling inline
7076         code because of bug reported James Chadd
7077
7078 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7079
7080         * ralloc.h: missing declarations from previous patch,
7081         seems that patch for ralloc.h was never applied, fixed
7082
7083 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7084            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7085
7086         * pcode.c,
7087         * pcode.h,
7088         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7089         indirect addressing. Marked FSR0 as deprecated
7090         * gen.c (pointerCode): commented out, not needed now
7091         (pic16_popGet2p): new MOVFF helper function
7092         (genGenPointerGet),
7093         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7094         (shiftRLong): removed duplicate debugging info
7095
7096 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7097
7098         * src/ds390/gen.c (genNearPointerGet),
7099         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7100         optimization with bits, but not bitfields.
7101         * src/ds390/ralloc.c (packRegisters),
7102         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7103
7104 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7105
7106         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7107
7108 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7109
7110         * src/SDCCsymt.h,
7111         * src/SDCCicode.c (operandFromSymbol),
7112         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7113         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7114         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7115         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7116         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7117         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7118         bug #892038
7119         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7120         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7121         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7122         * src/SDCCsymt.c (newSymbol),
7123         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7124         enumerator_list),
7125         * src/SDCCval.h,
7126         * src/SDCCval.c (newiList): fixed bug #885705
7127
7128 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7129
7130         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7131         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7132
7133 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7134
7135         * device/include/c8051f120.h,
7136         * device/include/c8051f300.h,
7137         * device/include/c8051f310.h: added/updated header files for Silicon
7138         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7139         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7140         in new section Submitting patches
7141
7142 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7143
7144         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7145         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7146         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7147         genGenPointerSet),
7148         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7149         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7150         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7151         genGenPointerSet),
7152         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7153         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7154         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7155         genGenPointerSet),
7156         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7157         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7158         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7159         genGenPointerSet): fixed bug #892400
7160         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7161         to eliminate build warnings.
7162         * src/SDCCast.c (processParms),
7163         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7164         fixed bug 751859
7165         * support/valdiag/valdiag.py: added GCC to the list of defines active
7166         when compiling with gcc
7167
7168 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7169
7170         * support/Util/SDCCerr.h,
7171         * support/Util/SDCCerr.c,
7172         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7173         with an incomplete type (fixed bug #883734)
7174         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7175
7176 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7177
7178         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7179
7180 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7181
7182         * src/SDCCast.c (decorateType),
7183         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7184         function pointer implementation
7185         * support/regression/tests/funptrs.c: added tests to verify both forms
7186         of function pointers work correctly. Added tests to verify parameters
7187         are passed in the correct order.
7188
7189 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7190
7191         * device.c (regCompare): registers are sorted by ascending
7192         address and increasing size,
7193         * main.c (_pic16_finaliseOptions): removed the declaration
7194         of compiler macro MCU. Now a macro of the format pic18fxxxx
7195         will be defined from the command line
7196
7197 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7198             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7199
7200         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7201         PCOP_RLCF was overwritten!
7202         * gen.c (genSkip): commented out calls to pic16_emitcode,
7203         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7204         * (genlshTwo),
7205         * (genRRC): added debugging info,
7206         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7207         overwritten while shifting,
7208         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7209         overwritten while shifting,
7210         * (AccLsh),
7211         * (AccRsh),
7212         * (shiftLLeftOrResult),
7213         * (shiftRLeftOrResult),
7214         * (shiftRLong),
7215         * (shiftLLong): Implemented with pic16_emitpcode
7216         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7217         * (genLeftShift): Fixed bug, operand for shift by variable always
7218         was "and"ed with 0x0f,
7219         * (genLeftShiftLiteral),
7220         * (genrshTwo),
7221         * (genRightShiftLiteral): added debugging info,
7222         * (genrshFour): added comment,
7223         * (genRightShift): determined signedness from operand "left"
7224         instead of "result"
7225
7226 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7227
7228         * src/SDCCicode.c (geniCodeParms),
7229         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7230         function pointers, fixed function pointer bugs #861242 and #861896
7231
7232 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7233
7234         * device/include/c8051f000.h,
7235         * device/include/c8051f120.h,
7236         * device/include/c8051f300.h: added header files for Silicon
7237         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7238
7239 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * src/SDCCast.c (processParams): added new type flow and restructured
7242         (gatherAutoInit): added new type flow
7243         (addCast): cosmetic changes
7244         (getLeftResultType): added new type flow for array indices, patch
7245         provided by Stas, see FR #877103
7246         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7247         array index patch by Stas
7248         * src/SDCCast.h: added prototype getResultTypeFromType()
7249         * src/SDCCval.h,
7250         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7251         * src/pic/glue.c (pic14emitStaticSeg),
7252         * src/pic16/glue.c (pic16emitStaticSeg),
7253         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7254         for initialization of symbols
7255         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7256         * support/Util/SDCCerr.h:
7257         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7258         * .version: bumped version number to 2.3.8
7259         * device/include/Makefile.in (install),
7260         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7261         avoid warnings
7262
7263 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7264
7265         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7266         Slade Rich fixed an optimization bug
7267         * src/pic/pcodepeep.c,
7268         * src/pic/pcoderegs.c
7269         * doc/Makefile (install): added test for directory
7270
7271 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7272
7273         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7274         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7275         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7276         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7277         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7278         * as/mcs51/asexpr.c (term),
7279         * as/hc08/asexpr.c (term): fixed bug #887146
7280
7281 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7282
7283         * src/z80/gen.c (genMult): handle single byte result product
7284         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7285         DUMMY_READ_VOLATILE (fixed bug #886367)
7286
7287 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7288
7289         * support/regression/tests/libmullong.c: fixed logic, on little endian
7290         hosts we ended without a mullong_wrapper()
7291
7292 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7293
7294         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7295         virus/worm forged address usage.
7296
7297 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7298
7299         Fixed promotion, it should be done on AST level:
7300         * src/SDCCast.c (addCast): added promotion to int
7301         (decorateType): updated call to upCast()
7302         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7303         usualUnaryConversions()
7304
7305 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7306
7307         * support/regression/tests/literalop.c (mulWrapper): Added a
7308         wrapper to remove integer overflow warnings.
7309
7310         * support/regression/tests/float_trans.c: Made work on host.
7311
7312         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7313         location of sz80.
7314
7315         * support/regression/generate-cases.py (main): Changed from inline
7316         to a main method.
7317
7318         * doc/Makefile (install): Changed to depth first to get rid of
7319         missing directory install warning.
7320
7321         * as/Makefile (install-doc): Made work on Mac.
7322
7323 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7324
7325         * src/SDCCast.c: added an additional type flow in decorateType() of
7326         opposite direction, see feature request #860006; it's enabled at runtime
7327         by setting the environment variable SDCC_NEWTYPEFLOW
7328         * src/SDCCast.h: changed prototype of decorateType()
7329         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7330         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7331         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7332         see feature request #877103
7333         * src/SDCCval.c: updated call of decorateType()
7334         (valBitwise): fixed bug #882876
7335         (valMinus): added promotion
7336         (valLogicAndOr): result is unsigned
7337         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7338         * src/SDCCsymt.c (computeType),
7339         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7340         must not cause an unsigned operation
7341         * src/pic/glue (pic14emitRegularMap),
7342         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7343
7344 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7345
7346         * src/pic/pcode.c (PCodeID): commented out left over debug code
7347
7348 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7349
7350         * support/valdiag/tests/overflow.c: added shift tests
7351         * src/pic/device.c,
7352         * src/pic/gen.c,
7353         * src/pic/gen.h,
7354         * src/pic/glue.c,
7355         * src/pic/main.c,
7356         * src/pic/pcode.c,
7357         * src/pic/pcode.h,
7358         * src/pic/pcodepeep.c,
7359         * src/pic/pcoderegs.c,
7360         * src/pic/ralloc.c,
7361         * src/pic/ralloc.h: applied patch from Slade Rich;
7362         added support for multiple code pages and multiple RAM banks on the
7363         PIC 14 port. The ASM files now no longer simply assume all the
7364         code / RAM are in the same page / bank. This means the linker can
7365         safely allocate code/RAM of separate ASM files to different pages/banks.
7366         * doc/sdccman.lyx: added Slade's tips
7367         * src/mcs51/peeph.def: fixed bug #880768
7368
7369 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7370
7371         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7372         * src/SDCCast.c (decorateType): fixed bug #880197
7373
7374 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7375
7376         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7377         getopt.h.
7378
7379         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7380         strtof is not part of C89 and isn't included with Mac OS X.
7381
7382 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7383
7384         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7385         shiftL2Left2Result): fixed bug #879326
7386         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7387         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7388         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7389         address fetch for clr instruction
7390         * device/lib/hc08/_mulint.c: created optimized assembly version
7391         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7392
7393 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7394
7395         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7396         proposed in FR #877103
7397
7398 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7399
7400         * src/SDCCval.c (cheapestVal): added missing checks
7401         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7402         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7403
7404 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7405
7406         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7407         equal operands
7408
7409 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7410
7411         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7412         loaded with the linker search paths (-L arguments) and the libraries
7413         to be linked with the current source (-l arguments). Changes
7414         currently will affect only the pic16 port.
7415         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7416         include path the port specific paths and port specific libraries,
7417         * gplink command now contains the $3 argument,
7418         * src/pic16/device.h,
7419         * src/pic16/device.c,: structure PIC_device is made public and
7420         renamed to PIC16_device, the same for variable Pics which is renamed
7421         to Pics16. Updated all references to them.
7422         * src/pic16/glue.c (pic16glue): corrected bug with code
7423         initialization which bypassed the variable initializations block.
7424
7425         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7426         COMPILE_FLAGS and added the --nostdinc option
7427
7428 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7429
7430         * device/include/mc68hc908jb8.h: Register defs for another member
7431         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7432
7433 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7434
7435         Documenting changes from previous commits.
7436         * configure.in (version 1.56),
7437         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7438         when generating output files to configure the pic16 library,
7439         but now I've commented it out, since gputils aren't installed in the
7440         SF compile farm, so library won't compile
7441
7442         * device/lib/Makefile.in (version 1.56): initially I've added in
7443         target 'all' the prerequestive 'model-pic16' so it compiled the
7444         pic16 library, but now I've commented it out for the same reasons
7445         above,
7446         * added targets 'model-pic16' and 'objects-pic16' to compile the
7447         library
7448         * added target 'port-specific-objects-pic16' to handle the
7449         generated libraries and copy them into the build/ directory
7450         * added target 'clean-intermediate-pic16' to clean intermediate
7451         files into pic16 directory
7452         * in target 'installdirs' added line to create directory pic16 in
7453         the installation path
7454
7455         * device/include/Makefile.in (version 1.11): in target 'install'
7456         added lines to copy all header files to installation path,
7457         * in target 'installdirs' added line create directory for pic16
7458         headers in the installation path
7459
7460 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7461
7462         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7463          a function call
7464
7465 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7466
7467         * configure,
7468         * device/lib/configure.in,
7469         * device/lib/configure: fixed for autoconf 2.57
7470
7471 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7472
7473         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7474         option so that it actually works. Made it specific to the z80, since
7475         the gbz80 doesn't have these kinds of I/O ports.
7476
7477 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7478
7479         * device/include/z180.h,
7480         * device/lib/_memcpy.c,
7481         * device/lib/_memmove.c,
7482         * device/lib/_mulint.c,
7483         * device/lib/ser_ir.c,
7484         * device/lib/ser_ir_cts_rts.c,
7485         * device/lib/_strcmp.c,
7486         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7487         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7488         portmode; added deprecation warning for bank= and protmode= forms.
7489         Also, guard against buffer overflow.
7490         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7491
7492 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7493
7494         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7495         changed interrupt vector table generation to only emit declared vectors.
7496         * device/include/Makefile.in: added missing backslash
7497         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7498
7499 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7500
7501         Mainly changes to support compilation of the device libraries
7502         * src/pic16/device.c: stack is allocated via symbol and not
7503         via literal number. The symbol is placed in the corresponding
7504         position of the data ram
7505         * (pic16_dump_section): relocatable and absolute uninitialized
7506         data are now emitted in sorted order to reduce section naming,
7507         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7508         weren't marked as being in the access bank,
7509
7510 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7511
7512         Added portion of GNU PIC Library under the directory
7513         device/include/pic16 and device/lib/pic16. These files
7514         contain the declarations of SFRs for the PIC18Fxx2 devices.
7515         The directory is initialized via configure from toplevel.
7516
7517 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7518
7519         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7520         the spilllocations to be compared correctly
7521
7522 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7523
7524         * src/SDCCast.c (decorateType): fixed bug introduced today
7525
7526 2004-01-12  Borut Razem <borut.razem AT siol.net>
7527
7528         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7529         doc/sdccman.lyx: upper case pragmas are deprecated
7530
7531 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7532
7533         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7534         in simpler and even better code
7535
7536 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7537
7538         * src/SDCCicode.c (operandOperation): fixed bug #874819
7539         * src/SDCCast.c (decorateType): fixed
7540         char foo (unsigned long ul) { return ul > 0; }
7541
7542 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7543
7544         * doc/sdccman.lyx: Moved and added some sections, small changes
7545         all over. Telling LaTeX to be less strict with word spacing
7546         to better keep the right margin. Changed some notes about
7547         maintainance of the ports in section 3.2.1 - is it OK like this?
7548
7549 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7550
7551         SDCC source changes:
7552         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7553         convilong): modified to inform the pic16 port that builtin functions
7554         are external
7555
7556         PIC16 PORT specific changes:
7557         * src/pic16/device.c pic16_dump_equates() added,
7558         processor registers declared internally by the port are emitted in
7559         the translation as equates,
7560         * src/pic16/gen.c: inline code is passed unprocessed to the
7561         translation,
7562         * (pic16_popGetLit2): fnuction modified to take second operand as
7563         pCodeOp pointer and not as literal,
7564         * (popRegFromIdx): prefixed with pic16_,
7565         * (pic16_popCombine2): modified to receive already allocated pCode
7566         operands,
7567         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7568         * (genFunction): initializes local stack frame and pushes on stack
7569         all the registers used by this function,
7570         * (genEndFunction): restores all registers from stack and restores
7571         stack frame,
7572         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7573         improvements,
7574         * (pic16glue): changed the program startup sequence,
7575         * added new dbName code 'A' for functions placed in absolute section
7576         * src/pic16/main.c: added function attribute _naked,
7577         * added pragma 'code' to place a fnuction at an absolute address,
7578         * added command line arguments --debug-ralloc and --pcode-verbose,
7579         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7580         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7581         * (pic16_newpCodeOpLit2): modified to take the second operand as
7582         pCodeOp pointer,
7583         * (pic16_printpBlock): modified to emit each function in a separate
7584         section,
7585         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7586         UPPER for immediate operands,
7587         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7588         instruction,
7589         * src/pic16/peeph.def: all peepholes with movff are commented out,
7590         because there is a problem in the pcode peep optimizer,
7591         * src/pic16/ralloc.c: the register allocator can now reuse local
7592         function symbols for another function. This saves register usage.
7593         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7594
7595         Added file src/pic16/NOTES with information about program writing on
7596         the current port version.
7597
7598 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7599
7600         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7601         and peephole 252 (array access)
7602
7603 2004-01-09  Borut Razem <borut.razem AT siol.net>
7604
7605         * src/SDCCmain.c : fixed #872250: -l command line defined library
7606           files are scanned before standard library files
7607
7608 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7609
7610         * src/SDCCast.c (decorateType): fixed bug #874046
7611
7612 2004-01-09  Borut Razem <borut.razem AT siol.net>
7613
7614         * support/scripts/sdcc.nsi: remove previous installation
7615
7616 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7617
7618         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7619         bytes for last interrupt vector (mcs51)
7620         * sdcc.spec: fixed typo
7621
7622 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7623
7624         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7625         gen51Code): more efficient parameter receive for --model-large
7626         ("bug" #845294)
7627
7628 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7629
7630         * src/ds390/main.c,
7631         * src/z80/main.c: added missed needLinkerScript flags (more than
7632         one port structure defined in these file)
7633         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7634         bug #795325
7635
7636 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7637
7638         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7639         * src/port.h: added flag needLinkerScript in port->linker
7640         structure to inform whether to create a .lnk file or not,
7641         * src/avr/main.c,
7642         * src/ds390/main.c,
7643         * src/hc08/main.c,
7644         * src/mcs51/main.c,
7645         * src/pic/main.c,
7646         * src/pic16/main.c,
7647         * src/xa51/main.c,
7648         * src/z80/main.c: changed appropriately to configure
7649         needLinkerScript flag
7650         * src/pic/gen.c,
7651         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7652         * src/pic/glue.c: added variable udata_section_name to
7653         override default uninitialized data segment definition for
7654         devices only with SHAREBANK memory (reported from Erik Epetrich)
7655         * (pic14emitOverlay): modified to emit a commented overlay segment
7656         directive when no overlay data exist
7657         * (picglue): modified to emit uninitialized data segment
7658         according to udata_section_name
7659         * src/pic/main.c (_pic14_parseOptions): added command line
7660         options --udata-section-name=[name] to override default
7661         udata definition name
7662         * modified _linkCmd and _asmCmd to include compiler passed
7663         arguments via -W option
7664         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7665         object file from '.rel' to '.o' in port->linker structure,
7666         changed size of fptr from 2 to 3 in port structure
7667
7668 2004-01-07  Borut Razem <borut.razem AT siol.net>
7669
7670         * support/scripts/sdcc.nsi: update PATH
7671         * support/scripts/sdcc.ico: craeted
7672
7673 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7674
7675         * device/include/Makefile.in: fix install
7676         * doc/Makefile: fix install
7677
7678 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7679
7680         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7681         in bug #860505
7682         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7683         how the function variable allocation summary is displayed; also
7684         include information about variables allocated to the overlay
7685         segment
7686
7687 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7688
7689         * as/mcs51/lkmain.c: Help about -Y option
7690         * as/mcs51/lkarea.c: Fixed gcc warnings
7691
7692 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7693
7694         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7695         fixed warning
7696         * support/valdiag/tests/overflow.c: added
7697         * src/SDCCast.c (decorateType),
7698         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7699         LEFT_OP (left shift)
7700
7701 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7702
7703         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7704         (default behaviour).
7705
7706 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7707
7708         A python script to validate compiler diagnostic messages. It can be
7709         used to verify that sdcc complains about bad c source code and
7710         gives a good location of the error.
7711         * support/valdiag/Makefile,
7712         * support/valdiag/valdiag.py,
7713         * support/valdiag/tests/*
7714
7715 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7716
7717         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7718         * src/SDCCsymt.c (newEnumType),
7719         * src/SDCCsymt.h
7720         * support/Util/SDCCerr.c,
7721         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7722         enum related bugs.
7723         * support/regression/tests/enum.c: added test for enum values that
7724         require at least 2 bytes of storage.
7725
7726 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7727
7728         * src/common.h: added ifndef/define/endif macros
7729         around the header file.
7730         Bug reported from Jesus Calvino-Fraga
7731
7732 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7733
7734         * sdcc.spec: updated
7735         * device/include/Makefile.in: don't install CVS directories
7736         * device/lib/Makefile.in: added removal of CVS directories after install
7737         * doc/Makefile: fixed install, added local_icons
7738         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7739         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7740         * src/ds390/gen.c (genRightShift): fixed bug #870788
7741         * src/SDCCast.c (decorateType): fixed bug #870781
7742
7743 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7744
7745         PIC16 port related changes:
7746         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7747         added variable stackPos,
7748
7749         * gen.c: genCall, assignResultValue: added support for
7750         pushing/retrieving function parameters to/from stack,
7751         genFunction,genEndFunction: setup stack frame for the
7752         generated function,
7753         genAddrOf: will be changed according to bug 863624
7754
7755         * added files genutils.c and genutils.h which contain gen*
7756         debugged and optimised functions extracted from gen.c
7757
7758         * glue.c: added variable 'externs' which holds extern symbols,
7759         pic16emitRegularMap: is modified to properly handle relocatable
7760          symbols under the new scheme,
7761         pic16createInterruptVect: is modified
7762         pic16printPublics: is modified to emit 'global' assembler directives,
7763         added pic16_printExterns to print extern symbols,
7764         pic16glue: initializes stack/frame pointer in the beginning of
7765         the assembly output. Temporary hack, will be corrected later,
7766         because gplink yet does not support stack and SDCC does not
7767         yet support a type of crt0.o object to create the final binary.
7768
7769         * Removed many lines that contain 8051 legacy code.
7770         * The code is finally placed under a 'code' directive.
7771         * Added port specific options.
7772
7773         * _process_pragma: simplified since now we do not need *special*
7774         include file to define SFR registers. But a separate header
7775         will be needed. This will be developed later.
7776         * _pic16_parseOptions: added, parses port specific options:
7777         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7778         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7779         --preplace-udata-with=
7780
7781         * _pic16_setDefaultOptions: modified to initialize section names,
7782         but hack is temporarly out of order since it needs improvement.
7783         * _pic16_genAssemblerPreamble: configuration words are emitted by
7784         their address instead of their name. This part is incomplete and
7785         supports only the 18Fxx2 devices. Other devices will emit an error
7786         during assembly since they do not contain the same set of config
7787         registers
7788         * _pic16_genIVT: is modified,
7789
7790         * pcode.c: added definitions for some hardware registers that are needed
7791         for stack support
7792         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7793         All PCI entries are updated. Now LFSR is supported.
7794         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7795         * added pic16_newpCodeOpLit2 to support instructions with
7796         two literal arguments
7797         * pic16_pCode2str: corrected code that emits assembler instructions
7798         with two literal operands and those that have an access bit modifier
7799         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7800         this fixes a bug which caused some labels to be lost, when an
7801         assembler directive was added, i.e. banksel,
7802         * pic16_FixRegisterBanking: improved logic that causes the insertion
7803         of bank switching,
7804         * InlineFunction: functions that are called once, are not any more
7805         inlined. This can be a port option in the future,
7806
7807         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7808
7809         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7810         hold the corresponding uninitialized symbols,
7811         * pic16_allocProcessorRegister: registers have explicit marked the
7812         accessBank field,
7813         * pic16_allocInternalRegister: registers are explicit marked as
7814         not used,
7815         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7816         processing list, so bit registers were lost,
7817         *
7818
7819         * ralloc.h: added field 'accessBank' and original symbol operand
7820         in register definition,
7821         * removed the field isMapped from register definition,
7822
7823         ** Several functions have been removed from various sources:
7824         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7825         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7826         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7827         pic16_assignRelocatableRegisters
7828
7829         ** others have been introduced:
7830         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7831         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7832
7833 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7834
7835         * support/scripts/inc2h.pl: changed definition of BIT_AT
7836         to emit 'sbit at' instead of 'bit at'. This was a request.
7837
7838         PIC16 port related preliminary changes:
7839         * gen.c: prefixed function popRegFromString with
7840         pic16_ and all references to it corrected
7841         * pcode.c: all pic16_pc_* hardware registers prefixed
7842         with underscore (_),
7843         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7844         * ralloc.c: newReg(): when register is REG_SFR then
7845         set address to rIdx,
7846         pic16_allocProcessorRegister(): marks register wasUsed=0
7847         pic16_writeUsedRegs(): added a call to assign processor
7848         registers via pic16_assignFixedRegisters
7849
7850 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7851
7852         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7853         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7854         variables in unused register banks.  Also the SSEG is placed
7855         wherever there is enough space for it, and IDATA can be anywhere
7856         in internal RAM.  For now compile using -Wl-Y[stack_size].
7857         The mem file is different for this option as well, since it
7858         makes no sense of talking about DSEG lenght.
7859
7860 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
7861
7862         * src/SDCClrange.c: fixed bug 869095 that caused segfault
7863         in certain cases, e.g. when ROM assignment, patch provided
7864         from Albert den Haan.
7865
7866 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
7867
7868         Many signedness and type propagation fixes:
7869         * src/SDCCicode.c: made geniCodeCast() static
7870         replaced SPEC_ by IS_ (cosmetic)
7871         (operandOperation): fixed div and mod operation
7872         (usualBinaryConversions): added support for promotion of char
7873         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
7874         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
7875         (geniCodeAdd): an array index will stay unsigned, even if promoted
7876         from char to int
7877         (geniCodeArray): ditto
7878         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
7879         * src/SDCCsymt.c (computeType): added more support for char;
7880         promotion of char is selectable by promoteCharToInt, fixed signedness
7881         for all cases
7882         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7883         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
7884         * src/SDCCval (val*): replaced signedness calculation by
7885         computeType()
7886         rearranged if-branches (cosmetic)
7887         (valShift): added warning W_SHIFT_CHANGED
7888         (valCompare): fixed problem with different types
7889         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
7890         * support/regression/tests/literalop.c: added many cases
7891         * support/regression/tests/ast_constant_folding.c: changed finally to
7892         'unsigned int'
7893         * .version: new year, new version: 2.3.7
7894         * src/SDCCmain.c (main): applied patch #866468
7895         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
7896         provided by Scott Bronson
7897         * doc/sdccman.lyx: updated documentation for sdcdb
7898         updated and added chapter tips
7899
7900 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7901
7902         * src/SDCCsymt.h: missing from yesterday's commits
7903
7904 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7905
7906         * src/SDCC.y (struct_or_union_specifier),
7907         * support/Util/SDCCerr.c,
7908         * support/Util/SDCCerr.h: verify that struct & union tags are used
7909         as declared.
7910
7911 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7912
7913         * src/SDCCglobl.h: missing from yesterday's commits
7914
7915 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7916
7917         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
7918         sft_attributes, struct_declaration, parameter_declaration,
7919         type_name, start_block, declaration_list),
7920         * src/SDCC.lex (check_type): support redefinition of typedef names
7921
7922 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7923
7924         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
7925         aligned xdata arrays. Erik helped me with the if clause.
7926
7927 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7928
7929         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
7930         warning
7931
7932 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7933
7934         * src/SDCCast.h,
7935         * src/SDCCast.c (newAst_),
7936         * src/SDCCicode.h,
7937         * src/SDCCicode.c (ast2iCode, newiCode),
7938         * src/SDCCglobl.h,
7939         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
7940         expr, statement, expression_statement, selection_statement,
7941         iteration_statement, expr_opt, jump_statement): foundation for tracking
7942         sequence points
7943         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
7944         point code too)
7945
7946 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7947
7948         * support/Util/SDCCerr.c,
7949         * src/SDCCast.h,
7950         * src/SDCCast.c (createCase, createDefault, decorateType),
7951         * src/SDCClabel.c (labelUnreach),
7952         * src/SDCC.y (labeled_statement, jump_statement): More improvements
7953         to error messages.
7954         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
7955         (with thanks to Stas Sergeev)
7956         * device/include/time.h,
7957         * device/lib/time.c (CheckTime): suppress unreachable code warning
7958
7959 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7960
7961         * src/SDCCast.c (createIvalCharPtr),
7962         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
7963         bug #753752)
7964         * support/regression/tests/nullstring.c: tests for these two bugs
7965
7966 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7967
7968         * support/Util/SDCCerr.h,
7969         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
7970         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
7971         about storage class and 'at' used inside struct or union
7972         * src/SDCCBBlock.c (iCodeFromeBBlock),
7973         * src/SDCCcse.c (ifxOptimize),
7974         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
7975         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
7976         printIval, emitStaticSeg, emitOverlay),
7977         * src/SDCClabel.c (deleteIfx),
7978         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
7979         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
7980         gatherAutoInit, processParms),
7981         * support/Util/SDCCerr.h,
7982         * support/Util/SDCCerr.c (werrorfl): Support for better error location
7983         reporting for post-parse errors.
7984
7985 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7986
7987         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
7988         implicit casts via union; they don't work on big endian systems
7989         (possible fix for bug #861138)
7990
7991 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7992
7993         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
7994         * src/mcs51/main.c: fixed the fix for bug #737001
7995
7996 2003-12-15  Borut Razem <borut.razem AT siol.net>
7997
7998         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
7999
8000 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8001
8002         * support/makebin/makebin.c: put output in binary mode
8003
8004 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8005
8006         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
8007         xdata and data memory on startup. Set the environment variable
8008         SDCC_NOGENRAMCLEAR to disable this.
8009         * src/mcs51/peephole.def,
8010         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
8011         (allows non-interrupt and interrupt code to safely compete for a resource
8012         without the non-interrupt code having to disable interrupts)
8013
8014 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8015
8016         * src/SDCCicode.c (geniCodeAdd),
8017         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
8018         with valFromType if type might be a pointer and host is big endian).
8019         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8020         types, not just integer types.
8021         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8022         multiply defined with mismatching "at" address.
8023
8024 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8025
8026         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8027         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8028         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8029         with embedded nulls (fixed bug #753752)
8030
8031 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8032
8033         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8034         Apparently this did not see much testing (endless loop)
8035
8036 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8037
8038         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8039
8040 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8041
8042         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8043         gracefully handle NULL memmap pointers
8044
8045 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8046
8047         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8048         instead of deleting the iCode when an operand is volatile
8049         * src/z80/gen.c (genDummyRead),
8050         * src/mcs51/gen.c (genDummyRead),
8051         * src/ds390/gen.c (genDummyRead),
8052         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8053         not just IC_RIGHT
8054         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8055         * src/SDCC.y: fixed bug #850420
8056
8057 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8058
8059         Applied z80 i/o port patch from Peter Townson and fixed some operators
8060         to better handle operands in A register.
8061         * device/include/z180.h
8062         * src/SDCC.y
8063         * src/SDCCglue.c
8064         * src/z80/gen.c
8065         * src/z80/gen.h
8066         * src/z80/main.c
8067         * src/z80/peeph-z80.def
8068         * src/z80/peeph.def
8069         * src/z80/z80.h
8070
8071 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8074
8075 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8076
8077         * device/lib/hc08/_mullong.c: Removed extra #endif
8078
8079 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8080
8081         * sim/ucsim/hc08.src/inst.cc,
8082         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8083         carries from x to h
8084         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8085         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8086         * device/include/stdarg.h: fixed varargs for hc08
8087         * device/lib/Makefile.in,
8088         * device/lib/hc08/Makefile,
8089         * device/lib/hc08/_mulint.c,
8090         * device/lib/hc08/_mullong.c: fixed some endian problems
8091
8092 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8093
8094         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8095         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8096         * device/lib/_gptrget.c,
8097         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8098
8099 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8100
8101         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8102         * src/SDCCast.c (astErrors): fixed bug #846007
8103         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8104
8105 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8106
8107         * src/SDCCast.c (decorateType): disabled a transformation I added in
8108         revision 1.188 (access to fields of a structure at an absolute address);
8109         it breaks with bitfields, extern declarations, and gcse analysis.
8110         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8111         could be assigned through a pointer, so don't complain.
8112         * src/SDCCast.c (astErrors),
8113         * src/SDCCast.h,
8114         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8115
8116 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8117
8118         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8119         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8120         output of __config directives, since gpasm now supports them
8121         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8122         pre-processor macro, i.e. -DMCU=p18f452
8123         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8124         and modified to handle 'cast' icode similarly to '=' icode
8125         * src/pic16/device.h (typedef struct PIC_device): added field
8126         'extMIface' to indicate that chip has external memory interface
8127         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8128         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8129         18F8720
8130
8131 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8132
8133         * src/SDCC.y (pointer): fixed bug #846006
8134         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8135         * src/SDCCast.c (decorateType): fixed bug #846009
8136         * src/ds390/peeph.def,
8137         * src/ds390/gen.c (genAnd, genOr),
8138         * src/mcs51/peeph.def,
8139         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8140
8141 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8142
8143         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8144         * src/SDCCdflow.c
8145         * src/SDCCcse.c
8146         * src/SDCCcse.h
8147         * src/SDCCBBlock.h
8148         * src/SDCCBBlock.c
8149
8150 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8151
8152         fixed bug #845089
8153         * src/SDCCbitv.h,
8154         * src/SDCCbitv.c: added function to free a bitvector
8155         * src/SDCClrange.h,
8156         * src/SDCClrange.c: added function to recompute the liveranges
8157         * src/avr/ralloc.c,
8158         * src/ds390/ralloc.c,
8159         * src/hc08/ralloc.c,
8160         * src/mcs51/ralloc.c,
8161         * src/pic/ralloc.c,
8162         * src/pic16/ralloc.c,
8163         * src/xa51/ralloc.c,
8164         * src/z80/ralloc.c: recompute the liveranges after register packing
8165
8166 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8167
8168         * src/SDCCloop.c (newInduction): fixed bug #845630
8169
8170 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8171
8172         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8173         inadvertantly left behind from my 2003-11-12 change
8174
8175 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8176
8177         Updated headers I neglected to commit yesterday.
8178         * src/SDCClrange.h,
8179         * src/SDCCicode.h
8180
8181 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8182
8183         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8184         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8185         * src/SDCCopt.c (eBBlockFromiCode),
8186         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8187         the creation of the key hash table from the sequencing so it can be used
8188         earlier (for some GCSE bug fixes still pending)
8189
8190 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8191
8192         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8193         * support/regression/tests/addsub.c: testing genPlus shortcut
8194
8195 2003-11-15  Borut Razem <borut.razem AT siol.net>
8196
8197         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8198
8199 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8200
8201         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8202         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8203         ordering is immaterial.
8204         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8205
8206 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8207
8208         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8209         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8210         (SIGSEV) of bug #840381
8211         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8212         unlink new file before rename if new and old filenames are the same)
8213
8214 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8215
8216         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8217         uninitialized variables) for the mcs51. Set environment variable
8218         SDCC_GENRAMCLEAR to test.
8219         xdata initialization slightly shorter
8220
8221 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8222
8223         * src/SDCCsymt.h,
8224         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8225         #838241 & 780691 (basicly the same bug)
8226         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8227         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8228
8229 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8230
8231         * src/SDCCmain.c (linkEdit): "fix" #834252
8232
8233 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8234
8235         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8236         * src/SDCCast.h,
8237         * src/SDCC.y: fixed bug #819403
8238
8239 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8240
8241         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8242         the reentrant attribute.
8243         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8244         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8245         simulation
8246         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8247         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8248         erroneously reduced to a literal.
8249         * src/hc08/ralloc.c (packRegisters, rematStr),
8250         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8251         some cases
8252
8253 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8254
8255         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8256         * doc/sdccman.lyx: changed from 'article' to 'book'
8257         * doc/Makefile: readded test_suite_spec and cdbfileformat
8258
8259 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8260
8261         * device/include/stdlib.h: include malloc.h to comply with ANSI
8262         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8263
8264 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8265
8266         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8267         * doc/clean.mk: also remove *.out files
8268         * doc/sdccman.lyx: some additions, larger top/bottom margins
8269
8270 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8271
8272         * src/SDCC.y: fixed bug #837365
8273         * support/regression/tests/bitopcse.c
8274         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8275         a symbol (might be valop instead)
8276         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8277         * device/lib/clean.mk: added hc08 to the cleaning list
8278
8279 2003-11-04  Borut Razem <borut.razem AT siol.net>
8280
8281         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8282           made 2003-11-04
8283         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8284           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8285           malloc is declared in standard stdlib.h
8286
8287 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8288
8289         * device/lib/hc08/Makefile: need to clean .rel not .o files
8290         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8291
8292 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8293
8294         * src/port.h,
8295         * src/hc08/main.c,
8296         * src/mcs51/main.c,
8297         * src/ds390/main.c,
8298         * src/z80/main.c,
8299         * src/avr/main.c,
8300         * src/pic/main.c,
8301         * src/pic16/main.c,
8302         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8303         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8304         tests (which uses the port's oclsExpense function)
8305         * src/SDCC.y,
8306         * src/SDCCast.c,
8307         * src/SDCCicode.c,
8308         * src/hc08/gen.c,
8309         * src/ds390/gen.c,
8310         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8311
8312 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8313
8314         * src/SDCCcse.c (ifxOptimize),
8315         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8316         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8317         deleting the IFX iCode.
8318         * src/hc08/ralloc.c: reduced unneeded slocs
8319         * src/hc08/gen.c: fixed bug in asmopToBoolean
8320
8321 2003-11-04  Borut Razem <borut.razem AT siol.net>
8322
8323         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8324           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8325           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8326           transferred to configure
8327
8328 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8329
8330         Use headers defined in the C[++] standards:
8331         * sim/ucsim/gui.src/serio.src/fileio.cc
8332         * sim/ucsim/gui.src/serio.src/frontend.cc
8333         * sim/ucsim/gui.src/serio.src/main.cc
8334         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8335         * support/Util/NewAlloc.c
8336         * as/hc08/lklibr.c
8337         * as/mcs51/lklibr.c
8338         * as/z80/aslist.c
8339         * as/z80/assym.c
8340
8341 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8342
8343         * Added MSVC projects for hc08 assembler and linker:
8344         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8345         /as/hc08/link_hc08.dsp
8346
8347 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8348
8349         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8350
8351 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8354
8355 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8356
8357         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8358
8359 2003-10-31  Borut Razem <borut.razem AT siol.net>
8360
8361         * support/cpp2/cpplib.h,
8362           support/cpp2/cpplib.c,
8363           support/cpp2/cpplex.c,
8364           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8365           to switch _asm block preprocessing on / off. Default is
8366           #pragma preproc_asm +
8367
8368 2003-10-31  Borut Razem <borut.razem AT siol.net>
8369
8370         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8371           when outputting comment blocks (when executed with -C option) and
8372           _asm (SDCPP specific) blocks
8373
8374 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8375
8376         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8377
8378 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8379
8380         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8381
8382 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8383
8384         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8385         * src/SDCCast.c (decorateType): fixed bug #832664
8386
8387 2003-10-31  Borut Razem <borut.razem AT siol.net>
8388
8389         * support\cpp2\cpplex.c: fixed for SDCPP:
8390           comments(when executed with -C option) and _asm blocks
8391           were included even if they where in skipped #if block.
8392           Applied solution from GCC cpp 3.3.2
8393
8394 2003-10-31  Borut Razem <borut.razem AT siol.net>
8395
8396         * src/SDCC.lex: sdcc now understands both formats:
8397           '# <line_number> <file_name>' and
8398           '#line <line_number> <file_name>'
8399         * support/cpp2/cppmain.c: sdcpp now generates the standard
8400           '# <line_number> <file_name>' instead of former
8401           '#line <line_number> <file_name>'
8402
8403 2003-10-30  Borut Razem <borut.razem AT siol.net>
8404
8405         * support/cpp2/cpphash.h,
8406         * support/cpp2/cpplib.h
8407         * support/cpp2/cpplex.c,
8408         * support/cpp2/cppmain.c,
8409         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8410
8411 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8412
8413         Fixed a number of problems revealed by bug #827883.
8414         * src/SDCCloop.c (loopInvariants): Spill location of the
8415         result operand should be recomputed if extracted from
8416         a loop. Also, don't extract assignments of an iTemp
8417         from a literal.
8418         * src/SDCCast.c (isConformingBody): loop reversal should
8419         not occur if the control variable is involved with a
8420         relational operator.
8421
8422 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8423
8424         * .version: bumped to 2.3.6 to reflect the big improvements
8425         made by Erik and Klaus. Thanks!
8426
8427 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8428
8429         Replaced the livrange code.
8430         * src/SDCClrange.c: added new LR code
8431         * src/SDCCloop.c,
8432         * src/SDCCBBlock.h: removed remainig parts from old LR code
8433         * src/ds390/ralloc.c,
8434         * src/ds390/gen.c: minor fixes to make it work with new code
8435
8436 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8437
8438         * as/hc08/asm.h,
8439         * as/hc08/lkrloc.c,
8440         * src/hc08/gen.c,
8441         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8442         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8443         (tweaked fix for bug #818696)
8444
8445 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8446
8447         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8448
8449 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8450
8451         * src/SDCCmain.c,
8452         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8453         * src/mcs51/gen.c (gencjneshort),
8454         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8455         more efficient (per Scott Bronson's suggestion)
8456
8457 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8458
8459         Extended the semantics of the critical keyword to include
8460         individual statements. See RFE #827755 and #799831
8461         * src/SDCC.y
8462         * src/SDCCicode.c
8463         * src/SDCCopt.c
8464         * src/SDCCast.c
8465         * support/Util/SDCCerr.c
8466         * support/Util/SDCCerr.h
8467         * src/mcs51/gen.c
8468         * src/ds390/gen.c
8469         * src/hc08/gen.c
8470
8471 2003-10-19  Borut Razem <borut.razem AT siol.net>
8472
8473         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8474
8475 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8476
8477         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8478         Fixed bug #818696
8479         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8480         and predecrement operand is displayed
8481
8482 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8483
8484         * src/SDCCval.c (valMinus): fixed bug #826041
8485
8486 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8487
8488         Some hc08 related updates that I missed earlier
8489         * sim/ucsim/stypes.h
8490         * support/regression/ports/hc08/spec.mk
8491
8492 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8493
8494         New target "hc08" for the Motorola 68hc08 family of micros
8495
8496         * configure
8497         * configure.in
8498         * Makefile
8499         * src/hc08/*
8500         * src/SDCCmain.c
8501         * src/port.h
8502         * sim/ucsim/hc08.src/*
8503         * sim/ucsim/configure.in
8504         * src/ucsim/configure
8505         * sim/ucsim/packages_in.mk
8506         * as/hc08/*
8507         * as/Makefile
8508         * device/include/mc68hc908qy.h
8509         * device/lib/hc08/*
8510         * device/lib/Makefile.in
8511         * support/regression/ports/hc08/*
8512         * support/regression/Makefile
8513
8514 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8515
8516         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8517         regression test
8518         * src/ds390/gen.c (genCast): fixed bug #821957
8519
8520 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8521
8522         * device/lib/logf.c: "fixed" overlay bug
8523         * support/regression/ports/host/spec.mk: added m library
8524         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8525         * support/regression/tests/float_trans: added (for Eric)
8526
8527 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8528
8529         * src/mcs51/gen.c (genCpl): fixed bug
8530         http://sf.net/mailarchive/message.php?msg_id=6263915
8531
8532 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8533
8534         * src/SDCCast.c (decorateType): added extended constant folding
8535         * src/SDCCsymt.c (computeType): cleanup
8536         * src/SDCCval.c (valShift): minor optimization
8537         * support/regression/tests/ast_constant_folding.c: added
8538
8539 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8540
8541         * src/SDCCmain.c: removed some unintended changes
8542
8543 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8544
8545         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8546         * src/z80/gen.c: fixed part of bug #817589
8547         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8548
8549 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8550
8551         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8552         * src/SDCCcflow.c
8553         * src/SDCCcse.c
8554         * src/SDCCdflow.c
8555         * src/SDCClabel.c
8556         * src/SDCClrange.c
8557         * src/SDCCmem.c
8558         * src/SDCCopt.c
8559         * src/SDCCpeeph.c
8560         * src/SDCCset.c
8561         * src/avr/ralloc.c
8562         * src/ds390/ralloc.c
8563         * src/izt/ralloc.c
8564         * src/mcs51/ralloc.c
8565         * src/pic/ralloc.c
8566         * src/pic16/ralloc.c
8567         * src/xa51/ralloc.c
8568         * src/z80/ralloc.c
8569         * src/z80/gen.c: removed unused label "release:"
8570
8571 2003-10-06  Borut Razem <borut.razem AT siol.net>
8572
8573         * src/SDCC.lex: removed definition of unused variables
8574           save_optimize and save_options
8575
8576 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8577
8578         * clean.mk: removed '=' in "-maxdepth=1"
8579         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8580         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8581
8582 2003-10-06  Borut Razem <borut.razem AT siol.net>
8583
8584         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8585           my_unput() replaced by unput()
8586
8587 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8588
8589         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8590         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8591         type-punned pointer will break strict-aliasing rules"
8592         Old LR behaviour is again default; Klaus' LR can be choosen by
8593         defining the environment variable LRKLAUS
8594         * src/SDCCBBlock.h
8595         * src/SDCCloop.c
8596         * src/SDCClrange.c
8597         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8598         * clean.mk: fixed removal of files in bin/CVS/
8599         * device/lib/clean.mk: fixed removal of directories small and large
8600         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8601         * src/SDCCicode.c,
8602         * src/SDCCval.c: removed superflous test for pedantic
8603
8604 2003-10-05  Borut Razem <borut.razem AT siol.net>
8605
8606         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8607           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8608           message "unmatched #pragma SAVE and #pragma RESTORE"
8609
8610 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8611
8612         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8613           assembly, critical functions, atomic, nojtbound)
8614
8615 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8616
8617         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8618         * src/SDCCBBlock.h
8619         * src/SDCCloop.c
8620         * src/SDCCloop.h
8621         * src/SDCClrange.c
8622
8623 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8624
8625         * src/z80/gen.h,
8626         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8627         * src/mcs51/gen.h
8628         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8629         * src/ds390/gen.h
8630         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8631         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8632         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8633
8634 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8635
8636         * src/z80/gen.c (genRet): fixed bug #524753
8637         * src/z80/gen.c (genCast): fixed internal error on cast from
8638         pointer to long
8639         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8640         fix for bug #477835 to the z80
8641         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8642         for tracking iCodes in the peephole optimizer for z80
8643
8644 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8645
8646         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8647         the other part of bug #814548
8648         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8649
8650 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8651
8652         * src/SDCCcse.c: fixed part of bug #814548
8653
8654 2003-09-28  Borut Razem <borut.razem AT siol.net>
8655
8656         * src/asm.c: rewrite of printILine() to use temporary file instead
8657           a pipe
8658         * src/xa51/main.c: commented out declaration of int rewinds
8659
8660 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8661
8662         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8663
8664 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8665
8666         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8667         * src/asm.c (printILine): Fixed bug #811015
8668
8669 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8670
8671         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8672         freeing.
8673
8674 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8675
8676         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8677         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8678         to correctly handle general case of AOP_PAIRPTR
8679         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8680
8681 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8682
8683         * src/mcs51/ralloc.c (fillGaps),
8684         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8685         register positioning bug)
8686
8687 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8688
8689         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8690
8691 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8692
8693         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8694         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8695         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8696         (ralloc doesn't intentionally do this now, but perhaps later)
8697         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8698         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8699         register positioning bugs (Fixed bug #762602 and #795325)
8700         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8701         (Fixed bug #808779)
8702         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8703         lines that --i-code-in-asm generates
8704
8705 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8706
8707         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8708         trying to fclose a FILE* that was already closed.
8709
8710 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8711
8712         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8713         of const struct should be treated as if const themselves)
8714
8715 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8718
8719 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8720
8721         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8722         Unix (/n) and DOS (/r/n) line terminations.
8723
8724 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8725
8726         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8727         bug #613775
8728
8729 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8730
8731         * src/mcs51/gen.c (genFunction, genEndFunction),
8732         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8733         and restore of EA so that stack offsets to parameters are
8734         correct when using both critical and reentrant/stack-auto.
8735         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8736         size (can be triggered in error if sloc is shared between
8737         different sized objects)
8738         * device/include/float.h: fixed macros to explicitly use
8739         unsigned long where needed
8740
8741 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8742
8743         Feature req. 799831: added code to allow nesting of critical functions
8744         * src/mcs51/gen.c (genFunction, genEndFunction)
8745         * src/ds390/gen.c (genFunction, genEndFunction)
8746
8747 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8748
8749         * src/SDCCsymt.c (sclsFromPtr),
8750         * src/SDCCsymt.h,
8751         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8752         support for standard C idiom of memory mapped variables; for
8753         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8754         to xdata int at 0x1234 tempvar = 1.
8755         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8756         provided by Akiya ISHIDA
8757
8758 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8759
8760         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8761         * src/SDCCval.c (constVal): added reduction from int to char
8762         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8763         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8764         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8765         to ignore the sign
8766         * support/regression/tests/shifts.c: fixed
8767
8768 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8769
8770         * src/z80/gen.c (genXor): Fixed bug #805445
8771
8772 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8773
8774         Fixed bug #621531 (const & volatile confusion in the type chain).
8775         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8776         refer to the const or volatile state of the pointer itself.
8777
8778         * src/SDCCast.c
8779         * src/SDCCglue.c
8780         * src/SDCCicode.c
8781         * src/SDCCsymt.c
8782         * src/SDCCval.c
8783         * src/SDCC.y
8784         * src/SDCCsymt.h
8785         * src/pic/gen.c
8786         * src/pic/ralloc.c
8787         * src/pic16/gen.c
8788         * src/pic16/ralloc.c
8789         * support/regression/tests/const.c
8790
8791 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8792
8793         When checking for duplicated modules, use absolute paths
8794         instead of relative paths.  Files changed:
8795
8796         * as/mcs51/lklib.c
8797         * link/z80/lklib.c
8798
8799 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8800
8801         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8802
8803 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8804
8805         * device/include/string.h: added size_t typedef, changed
8806         prototypes to use size_t, eliminated separate reentrant and
8807         non-reentrant declarations, added _memmove declaration
8808         * device/lib/_memcpy.c: changed to use size_t instead of int,
8809         changed /4 to >>2 to avoid division library call
8810         * device/lib/_memcmp.c,
8811         * device/lib/_memset.c,
8812         * device/lib/_strncat.c,
8813         * device/lib/_strncpy.c,
8814         * device/lib/_strncmp.c: changed to use size_t instead of int
8815         * device/lib/_memmove.c: new file (fixed bug #772294)
8816         * device/lib/Makefile.in: added _memmove.c
8817         * device/lib/z80/asm_strings.s: fixed bug #772290
8818         * support/regression/tests/bitfields.c: attempt to fix host assertion
8819         failure on amd64-unknown-linux2.2
8820
8821 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8822
8823         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8824         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8825         * as/z80/asmain.c (main): fixed bug #801766
8826
8827 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8828
8829         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8830         compilers
8831
8832 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8833
8834         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8835         reported in bug #800609
8836
8837 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8838
8839         * Top header beautifications in src/pic16 directory:
8840           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8841           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8842           pcoderegs.h, ralloc.c, ralloc.h
8843         * main.c: added top header and GPL license notice
8844         * pcode.c: fixed the if-conditional warning
8845
8846 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8847
8848         * device/lib/_mullong.c: replaced int by short for gcc
8849
8850 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8851
8852         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8853         and JUMPTABLE iCodes properly now (worked by accident before)
8854         * src/mcs51/gen.c (leftRightUseAcc),
8855         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8856         iCode properly now. Use getSize instead of nRegs since a & b
8857         aren't part of the nRegs tally.
8858
8859 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8860
8861         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
8862         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
8863           before instructions that use the _STATUS register
8864
8865 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
8866
8867         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
8868         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
8869         fetching of the pointer
8870         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
8871         copied from genNearPointerSet()
8872         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
8873         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
8874         If they pop r0/r1 they must be called in the opposite order than aopOp().
8875         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
8876         (resp. --stack-auto), prepared for --xstack
8877
8878 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8879
8880         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
8881
8882 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8883
8884         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
8885         these ports have their own __sdcc_external_start()
8886
8887 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
8888
8889         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8890         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
8891         type for bits was changed. It resulted in bit variables becoming
8892         global, which is not permitted in PIC 14 assembly output.
8893
8894 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8895
8896         * doc/sdccman.lyx: various additions and updates. Rearranged sections
8897
8898 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8899
8900         Z80 and MCS51 linkers complaint if a public symbol is defined
8901         in more than one library module:
8902
8903         * as/mcs51/lklib.c
8904         * link/z80/lklib.c
8905         * as/mcs51/Makefile.in
8906
8907 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8908
8909         A few small changes that speed up the peephole optimizer.
8910
8911         * src/SDCCpeeph.c
8912
8913 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8914
8915         Try to make the peephole optimizer smarter by maintaining
8916         an association between the assembly source code and the
8917         iCodes that originated them. Put this information to use
8918         with a new peephole rule condition "notVolatile" so that
8919         the rules can be aggressive yet still safe.
8920
8921         * src/SDCCpeeph.c
8922         * src/SDCCpeeph.h
8923         * src/mcs51/gen.c
8924         * src/mcs51/peeph.def
8925
8926 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8927
8928         Fixed bug #741761
8929
8930         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
8931         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
8932         if the left or right operand symbols have the accuse flag set.
8933
8934 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8935
8936         Changed the type of the result of the ! (NOT) operator to char;
8937         previously it returned the same type as the source. This allows
8938         us to eliminate all the genFloatNot functions (all of its target
8939         implementations were very buggy) since !float can use the same
8940         code as !long now.
8941
8942         * src/SDCCicode.c (ast2iCode): ! returns char
8943         * src/mcs51/gen.c (genNot, genNotFloat),
8944         * src/ds390/gen.c (genNot, genNotFloat),
8945         * src/z80/gen.c (genNot, genNotFloat),
8946         * src/pic/gen.c (genNot, genNotFloat),
8947         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
8948
8949 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
8950
8951         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
8952         1. Interrupt would not compile properly. Ensure PCLATH register is saved
8953            during interrupts. Ensure WSAVE is located at a shared bank address.
8954         2. Fixed page selection in some places
8955         3. Fixed BTFSS/C to where necessary use registers directly and not simply
8956            the registers name strings.
8957         4. Fixed "signed / unsigned compare" compiler warnings.
8958         5. The PIC port manages its own allocation of the general purpose
8959            registers, but makes no attempt to reuse them. As a result when
8960            compiling it soon runs out of general purpose registers. Some
8961            additional code was added to the files pcode.c and device.c to walk
8962            through the function call tree and rename the registers so that they
8963            get reused.
8964
8965         * src/pic/device.c
8966         * src/pic/gen.c
8967         * src/pic/glue.c
8968         * src/pic/pcode.c
8969         * src/pic/pcode.h
8970         * src/pic/ralloc.c
8971         * src/pic/ralloc.h
8972         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
8973         genPlus() & genMinus() when the result is the same as left or right
8974
8975 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8976
8977         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
8978
8979 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8980
8981         Made bitfield a distinct type from bit so that bitfields
8982         convert as per ANSI C and bits retain their traditional
8983         boolean style behaviour. Implemented bitfield support in
8984         the z80 port.
8985
8986         * src/SDCCsymt.h,
8987         * src/SDCCsymt.c,
8988         * src/SDCCast.c,
8989         * src/cdbFile.c,
8990         * src/mcs51/gen.c,
8991         * src/ds390/gen.c: bit v bitfield split
8992         * src/z80/gen.c: New support for bitfields
8993         * support/regression/tests/bitfields.c: reenabled z80,
8994         added more tests
8995
8996 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8997
8998         Rules 246.x, 247.x relate to bitfields, the others speed up
8999         access to xdata mapped I/O devices.
9000
9001         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
9002
9003 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9004
9005         Cleaned up genPackBits and genUnpackBits and added two helper
9006         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
9007         for literal assignments in genPackBits (thanks to Frieder for
9008         reminding me).
9009
9010         * src/mcs51/gen.c
9011         * src/ds390/gen.c
9012
9013 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9014
9015         Fixed bug #748310 (pointer to function type mishandled when the
9016         function name is omitted). Also fixed a SIGSEGV when a function
9017         attribute (reentrant, etc) is used on a non-function or on a
9018         function but misplaced before the parameter list.
9019
9020         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9021         bug #748310
9022         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9023         * support/Util/SDCCerr.h,
9024         * support/Util/SDCCerr.c: Added func attr misuse error msg
9025
9026 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9027
9028         Fixed bug #787649 by anonymous
9029         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9030         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9031
9032 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9033
9034         Fixed numerous bitfield problems.
9035
9036         * src/SDCC.y: More bitfield related error checking
9037         * src/SDCCsymt.h,
9038         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9039         * support/Util/SDCCerr.h,
9040         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9041         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9042         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9043         * support/regression/tests/bitfields.c: tests added
9044
9045 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9046
9047         Made the constant following the "interrupt" keyword optional. If
9048         omitted, the function will not automatically be given an entry
9049         in the interrupt vector table (similar to #pragma NOIV, but
9050         less syntacticly kludgy). The interrupt number is also now
9051         range checked. Also fixed a bug in the high order bit example
9052         in the manual.
9053
9054         * src/SDCC.y
9055         * src/SDCCmem.c
9056         * src/SDCCglue.c
9057         * src/SDCCsymt.h
9058         * support/Util/SDCCerr.c
9059         * support/Util/SDCCerr.h
9060         * doc/sdccman.lyx
9061
9062 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9063
9064         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9065         * src/SDCCicode.c (operandOperation): rewritten some ops
9066         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9067         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9068         other type
9069         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9070         be re-activated by defining REDUCE_LITERALS)
9071         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9072         unsigned, but are signed by default
9073         * src/SDCCval.c (constVal): rearranged
9074         * src/SDCCval.c (valMod): preliminary fix
9075         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9076         * support/regression/literalop.c: added, work in progress
9077
9078 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9079
9080         Generate warnings for useless declarations like "char data;"
9081         that don't do what new users expect.
9082
9083         * src/SDCC.y
9084         * support/Util/SDCCerr.h
9085         * support/Util/SDCCerr.c
9086
9087 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9088
9089         * src/SDCCval.c (valMult): fix overflow detection of negative int
9090
9091 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9092
9093         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9094
9095         Changes to support big endian targets:
9096
9097         * src/ports.h
9098         * src/SDCCglue.c
9099         * src/avr/main.c
9100         * src/ds390/main.c
9101         * src/izt/i186.c
9102         * src/mcs51/main.c
9103         * src/pic/main.c
9104         * src/pic16/main.c
9105         * src/xa51/main.c
9106         * src/z80/main.c
9107
9108 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9109
9110         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9111         * device/lib/time.c: fixed warning "integer overflow in expression"
9112
9113 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9114
9115         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9116         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9117         constants are unsigned; added recognition of "u" flag for unsigned
9118         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9119         * src/SDCCval.c (valDiv, valMod): fixed signdness
9120         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9121         signedness of modulo, left and right shift
9122         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9123         * support/Util/SDCCerr.h: added warning W_INT_OVL
9124         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9125         * src/SDCCast.c (ast_print): improved output of constants
9126
9127 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9128
9129         Fixed some warnings when building with MSVC:
9130
9131         * as\mcs51\asdata.c
9132         * as\z80\asdata.c
9133         * as\mcs51\asm.h
9134         * as\z80\asm.h
9135         * link\z80\aslink.h
9136         * link\z80\lkdata.c
9137         * link\z80\lkeval.c
9138         * link\z80\lkgb.c
9139         * link\z80\lkihx.c
9140         * link\z80\lks19.c
9141         * link\z80\lksym.c
9142         * support\cpp2\cpplib.c
9143         * src\ds390\gen.c
9144         * src\mcs51\gen.c
9145
9146 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9147
9148         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9149
9150 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9151
9152         * support\librarian\clean.mk: Do not remove Makefile.
9153         * support\librarian\Makefile: added.
9154
9155 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9156
9157         Added librarian to MSVC build:
9158         * all.dsp
9159         * sdcc.dsw
9160         * support\librarian\librarian.dsp
9161
9162         'configure' not needed for librarian, removed:
9163         * support\librarian\configure
9164         * support\librarian\configure.in
9165         * support\librarian\config_in.h
9166         * support\librarian\Makefile.in
9167
9168         Hopefully these ones built the librarian and the rest of sdcc properly:
9169         * Makefile
9170         * Makefile.common.in
9171
9172         Messed up 'configure', so revert to previous version:
9173         * configure
9174         * configure.in
9175
9176 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9177
9178         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9179         there, while the mantissa of a double is "only" 53 bits wide.
9180
9181 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9182
9183         Adding sdcclib to the build.  MSVC project coming soon.
9184         Files added/changed:
9185
9186         * support\librarian\clean.mk
9187         * support\librarian\configure
9188         * support\librarian\configure.in
9189         * support\librarian\config_in.h
9190         * support\librarian\Makefile.bcc
9191         * support\librarian\Makefile.in
9192         * support\librarian\sdcclib.c
9193         * Makefile.bcc
9194         * Makefile
9195         * Makefile.common.in
9196         * configure
9197         * configure.in
9198
9199 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9200
9201         Linker now complaints if linked modules have conflicting options, for
9202         example, one compiled using --model-large and another one compiled with
9203         --model-small.  The following files were modified:
9204
9205         * as\mcs51\asdata.c
9206         * as\mcs51\aslink.h
9207         * as\mcs51\asm.h
9208         * as\mcs51\asmain.c
9209         * as\mcs51\asout.c
9210         * as\mcs51\i51pst.c
9211         * as\mcs51\lkdata.c
9212         * as\mcs51\lklibr.c
9213         * as\mcs51\lkmain.c
9214         * as\z80\asdata.c
9215         * as\z80\asm.h
9216         * as\z80\asmain.c
9217         * as\z80\asout.c
9218         * as\z80\z80pst.c
9219         * link\z80\aslink.h
9220         * link\z80\lkdata.c
9221         * link\z80\lklibr.c
9222         * link\z80\lkmain.c
9223         * src\SDCCglue.c
9224
9225 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9226
9227         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9228         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9229
9230 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9231
9232         * src/z80/mappings.i: fix _mul[us][int,long] entries
9233
9234 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9235
9236         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9237
9238 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9239
9240         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9241         * support/regression/tests/bitopcse.c: added
9242         fixed warning:
9243         * src/avr/gen.c:
9244         * src/pic/gen.c:
9245         * src/pic16/gen.c:
9246         * src/z80/gen.c:
9247         * src/xa51/gen.c:
9248
9249 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9250
9251         added support for new library format to z80, gbz80 linkers:
9252         *link/z80/aslink.h
9253         *link/z80/lklex.c
9254         *link/z80/lklib.c
9255         *link/z80/lklist.c
9256
9257 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9258
9259         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9260         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9261
9262 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9263
9264         added DUMMY_READ_VOLATILE:
9265         * src/SDCC.y:
9266         * src/avr/gen.c:
9267         * src/xa51/gen.c:
9268         * src/z80/gen.c:
9269         * src/pic/gen.c:
9270         * src/pic16/gen.c:
9271         * src/mcs51/gen.c:
9272         * src/ds390/gen.c:
9273         * src/SDCCcse.c (algebraicOpts): many improvements
9274         * src/SDCCcse.h: removed algebraicOpts()
9275         * src/SDCCicode.c (picDummyRead): added
9276
9277 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9278
9279         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9280         "Insufficient space in data memory".
9281
9282 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9283
9284         * src/mcs51/gen.c: fixed bug #771358
9285         * src/z80/gen.c: fixed bug #759087
9286
9287 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9288
9289         * src/pic16/glue.c: minor cleanup by Vangelis
9290
9291 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9292
9293         * device/include/regc515c.h: fixed #758477
9294         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9295         * device/lib/_gptrput.c: saved a few bytes
9296         * my tab spacing is 8, yours too?)
9297         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9298         * device/lib/serial.c: process RX bytes earlier than TX bytes
9299         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9300
9301 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9302
9303         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9304
9305 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9306
9307     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9308
9309 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9310
9311         * device/lib/Makefile.in: bad fix, reverted to 1.43
9312
9313 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9314
9315         * device/lib/Makefile.in: added missing z80 object files
9316
9317 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9318
9319         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9320         pic16 progress by Vangelis:
9321         * src/SDCCglobl.h:
9322         * src/SDCCmain.c:
9323         * src/pic/Makefile:
9324         * src/pic:
9325         * pic/Makefile:
9326         * pic16/device.c:
9327         * pic16/device.h:
9328         * pic16/gen.c:
9329         * pic16/gen.h:
9330         * pic16/genarith.c:
9331         * pic16/glue.c:
9332         * pic16/main.c:
9333         * pic16/pcode.c:
9334         * pic16/pcode.h:
9335         * pic16/pcodepeep.c:
9336         * pic16/peeph.def:
9337
9338 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9339
9340     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9341
9342 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9343
9344     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9345     added gbz80 build to MSVC project.
9346     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9347     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9348     from 8051 stuff and setup so it links using a .lnk file.
9349
9350 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9351
9352     * support/librarian/sdcclib.c: sdcc librarian.
9353     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9354     with sdcclib.
9355
9356 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9357
9358     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9359
9360 2003-07-02  Borut Razem <borut.razem AT siol.net>
9361
9362         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9363         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9364         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9365         src/xa51/main.c, src/z80/main.c:
9366         virtualization of glue() function: each port has it's own glue function,
9367         which is accessed by do_glue function pointer in PORT.general structure
9368
9369 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9370
9371         * DS800C400 fun, improved ROM interface and tinibios.
9372
9373 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9374
9375         * More support for DS80C400. Now includes beginning of interface to ROM.
9376
9377 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9378
9379         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9380
9381 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9382
9383         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9384
9385 2003-06-19  Borut Razem <borut.razem AT siol.net>
9386
9387         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9388
9389 2003-06-19  Borut Razem <borut.razem AT siol.net>
9390
9391         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9392         fixed Z80 port - crt0.o: cannot open.
9393
9394 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9395
9396         * support/Util/MySystem.c (merge_command): revert bad fix
9397
9398 2003-06-18  Borut Razem <borut.razem AT siol.net>
9399
9400         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9401
9402 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9403
9404         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9405         option --use-stdout sends errors to stdout instead of stderr.
9406
9407 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9408
9409         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9410
9411 2003-06-15  Borut Razem <borut.razem AT siol.net>
9412
9413         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9414         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9415         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9416         fixed width array of pointers replaced with sets;
9417         multiple include and lib paths ared transferred to preprocessor and linker
9418         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9419         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9420         fixed width array of pointers
9421         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9422         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9423         fixupPath(), getPathDifference()
9424         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9425         fixed width array of pointers
9426
9427 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9428
9429         * src/pic16/ralloc.c: fix warnings
9430         * src/pic16/pcode.c: fix warning
9431
9432 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9433
9434          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9435         know all the details, but essentially this set of changes enable
9436         the pic16 port to generate movff instructions and generate assembler
9437         directives,
9438         * src/SDCCmain.c:
9439         * src/pic16/gen.c:
9440         * src/pic16/glue.c:
9441         * src/pic16/pcode.c:
9442         * src/pic16/device.c:
9443         * src/pic16/main.c:
9444         * src/pic16/pcode.h:
9445         * src/pic16/pcoderegs.c:
9446         * src/pic16/ralloc.c:
9447         * src/pic16/ralloc.h:
9448
9449 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9450
9451         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9452         added option --vc, so sdcc errors and warnings are compatible with
9453         Microsoft Visual Studio.
9454
9455 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9456
9457         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9458           device/lib/libfloat.lib: added atof function.
9459
9460 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9461
9462         * doc/sdccman.lyx: updated to Lyx 1.3
9463         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9464         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9465         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9466
9467 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9468
9469         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9470
9471 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9472
9473         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9474           additions to the "related tools/documentation" section
9475
9476 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9477
9478         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9479
9480 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9481
9482         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9483         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9484
9485 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9486
9487         * doc/sdccman.lyx: fix double dash and other minor things
9488         * doc/Makefile: fix double dash
9489
9490 2003-05-28  Karl Bongers(patches from Martin Helmling)
9491         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9492           condition and ignore commands.
9493
9494 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9495
9496         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9497           is in parts still quite out of date, I did changes as far as I felt makes sense
9498           for a non-native english speaker.
9499           Please feel free to add to the manual or to correct my changes.
9500         * doc/Makefile: undid touching the date of intermediate tex files.
9501
9502 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9503
9504         * doc/sdccman.lyx: Manual has an index now
9505
9506 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9507
9508         Finalize muluint/mulsint and mululong/mulslong merging:
9509         * device/lib/_mulint.c
9510         * device/lib/_mullong.c
9511         * device/lib/gbz80/mul.s
9512         * device/lib/gbz80/stubs.s
9513         * device/lib/z80/mul.s
9514         * device/lib/z80/stubs.s
9515         * src/SDCCsymt.c (initCSupport)
9516
9517 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9518
9519         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9520         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9521           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9522           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9523           instead of /Zm500.
9524
9525 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9526
9527         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9528           the regression tests I'm not brave enough to enable 245.b, 245.c
9529         * doc/sdccman.lyx: added latex preamble for hyperref package.
9530           Using pdflatex this will give you a hyperlinked pdf file with
9531           bookmarks. (prepend '%' before /usepackage if this breaks something)
9532
9533 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9534
9535          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9536
9537 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9538
9539         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9540
9541 2003-05-21    <johan AT balder>
9542
9543         * src/SDCCglue.c (printIval): fixed bug #739934
9544
9545 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9546
9547         Applied patch from bug 737905 (renamed yylineo to mylineno):
9548         * src/altlex.c
9549         * src/SDCCast.c
9550         * src/SDCglobl.h
9551         * src/SDCC.lex
9552         * src/SDCCsymt.c
9553         * src/SDCCval.c
9554         * src/pic16/pcode.c: Cleaned warnings
9555         * src/pic16/pcodeflow.c: Cleaned warnings
9556         * src/pic16/pcoderegs.c: Cleaned warnings
9557
9558 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9559
9560         * src/pic16/pcode.c: Cleaned warnings
9561         * src/pic16/pcodepeep.c: Cleaned warnings
9562         * src/pic16/ralloc.c: Cleaned warnings
9563
9564 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9565
9566         * doc/sdccman.lyx: fixed bug 739745
9567         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9568
9569 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9570
9571         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9572         it can be defined with CFLAGS when running configure
9573         * src/SDCCmain.c: fixed compiling + linking with object files
9574
9575 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9576
9577         * configure.in: configure for pic16 port,
9578             added --disable-pic16-port
9579         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9580         * src/SDCCmain.c: linkOptions is changed to set *,
9581             added if/endif conditional macros to remove options help
9582             messages from optionsTable when a port is not configured, added
9583             support for the PIc16 port in the ports table, when executing
9584             the compiler with no port specified on command line, a default
9585             port is selected with the new macro DEFAULT_PORT which is
9586             defined in port.h, in setDefaultOptions() linkOptions is removed
9587             from initialization assignment, since now it is a set,
9588             parseCmdLine uses setParseWithComma for linkOptions, in
9589             linkEdit() linkOptions are accessed with new function indexSet()
9590             which returns the i'th item of a set variable. See SDCCset.c, in
9591             linkEdit() when calling buildCmdLine(), added linkOptions as
9592             last argument. Now users can pass arguments to gplink via the
9593             -Wl option, main() uses pic16glue() to glue up pic16 programs
9594         * src/SDCCpeeph.c: various changes to support pic16
9595         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9596             return the i'th item of the set
9597         * src/SDCCset.h: added function prototype for indexSet()
9598         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9599         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9600         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9601             added macro DEFAULT_PORT
9602         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9603         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9604             generated
9605         * src/pic16/glue.c: commented out some error producing lines
9606         * src/pic16/main.c: __config directives are commented out to stop
9607             gpasm complaining and test the linkage with gplink, _linkCmd and
9608             _asmCmd changed to be more gplink and gpasm friendly
9609         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9610             produced an error when parsed, peep rule 12 is added to utilize
9611             movff, but it is commented out since the pCode does not support
9612             yet a command with 2 address arguments
9613
9614 2003-05-18    <johan AT balder>
9615
9616         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9617         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9618 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9619
9620         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9621   Added feature to script commands from file.
9622
9623 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9624
9625         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9626         * src/SDCCutil.c: include ctype.h for win32
9627
9628 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9629
9630         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9631
9632 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9633
9634         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9635   Fixed so you can set breakpoints prior to run, run does not stop
9636   on entry now.  Add tbreak.  Other enhancements and fixes for use
9637   with ddd.
9638
9639 2003-05-12  Borut Razem <borut.razem AT siol.net>
9640
9641         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9642
9643 2003-05-11  Borut Razem <borut.razem AT siol.net>
9644
9645         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9646         the path of bin directory, so that PATH is the only env. variable, which has to be set
9647         in case of standard installation.
9648         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9649         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9650         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9651
9652 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9653
9654         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9655         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9656         temp files are in the port dir; clean the gen/test directory when
9657         generating new test.c
9658         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9659         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9660         * support/regression/tests/zeropad.c: added
9661
9662 2003-05-09    <johan AT balder>
9663
9664         * src/SDCCglue.c: fixed bug #597940
9665
9666 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9667
9668         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9669   cache sfr, optimize next,step, fix off by one sourceline,
9670   support ddd list function.
9671         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9672
9673 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9674
9675         * support/regression/HTMLgen.py: added compare_s2f()
9676         * support/regression/Makefile: redo 1.27
9677         * support/regression/generate-cases.py: redo 1.5
9678
9679 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9680
9681         * support/regression/tests/float.c: workaround 33 bit hex constant
9682         * support/regression/tests/simplefloat.c: fix division for host
9683
9684 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9685
9686         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9687         that tame's the PIC's over-aggressive optimizer.
9688
9689 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9690
9691          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9692          support for MSVC.
9693
9694 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9695
9696         Initial support for DS80C400. "Hello world" runs on TINIm400
9697         (with polled I/O).
9698
9699 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9700
9701          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9702          * Some notes on ddd usage added in debugger/README
9703          Martin Helmling adding more features and fixes for ddd GUI debugger.
9704          Code added for nexti, stepi, up, down, and other adjustments.
9705
9706 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9707
9708         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9709         * src/pic/peeph.def Added two rules to optimize carry manipulation
9710         * src/pic/* removed debug printfs
9711
9712 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9713
9714         * debugger/mcs51/cmd.c: added header newalloc.h
9715
9716 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9717
9718         * as/Makefile: new EXEEXT
9719         * as/z80/Makefile: remove trailing slash of BUILDIR
9720         * as/z80/clean.mk: new EXEEXT
9721         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9722         * support/cpp2/Makefile.in: new EXEEXT
9723         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9724
9725 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9726
9727         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9728         EXEEXT was introduced to fix all related problems with targets
9729         "clean", "install" and "uninstall"; a couple of further flaws
9730         especially with "clean" have been fixed too
9731         * as/mcs51/Makefile.in
9732         * as/mcs51/clean.mk
9733         * as/z80/Makefile
9734         * Makefile
9735         * clean.mk
9736         * debugger/mcs51/Makefile.in
9737         * debugger/mcs51/clean.mk
9738         * link/z80/Makefile
9739         * link/z80/Makefile.in
9740         * link/z80/clean.mk
9741         * link/Makefile
9742         * packihx/Makefile.in
9743         * packihx/clean.mk
9744         * sim/ucsim/Makefile
9745         * sim/ucsim/clean.mk
9746         * sim/ucsim/avr.src/Makefile.in
9747         * sim/ucsim/avr.src/clean.mk
9748         * sim/ucsim/s51.src/Makefile.in
9749         * sim/ucsim/s51.src/clean.mk
9750         * sim/ucsim/xa.src/Makefile.in
9751         * sim/ucsim/xa.src/clean.mk
9752         * sim/ucsim/z80.src/Makefile.in
9753         * sim/ucsim/z80.src/clean.mk
9754         * sim/ucsim/main_in.mk
9755         * sim/ucsim/packages_in.mk
9756         * sim/ucsim/gui.src/Makefile.in
9757         * sim/ucsim/gui.src/serio.src/Makefile.in
9758         * sim/ucsim/gui.src/serio.src/clean.mk
9759         * src/Makefile.in
9760         * src/clean.mk
9761         * support/cpp2/Makefile.in
9762         * support/cpp2/clean.mk
9763         * support/makebin/Makefile
9764         * support/makebin/clean.mk
9765         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9766         * doc/sdccman.lyx: --program-suffix no longer needed
9767
9768 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9769
9770          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9771          Martin Helmling added support for ddd GUI debugger.
9772          Code added to display assembly, set variables, and other commands
9773          to interface to ddd.
9774
9775 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9776
9777         * as/Makefile: fix target clean
9778         * as/clean.mk: fix target clean
9779         * as/z80/clean.mk: fix target clean
9780
9781 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9782
9783         * Makefile.common.in: added  AT EXEEXT AT
9784         * configure.in: removed all mingw32 stuff
9785         * configure: rebuilt from configure.in
9786         * doc/sdccman.lyx: updated section "installation"
9787         * support/scripts/sdcc_mingw32: adapted to configure
9788         * support/scripts/sdcc_cygwin_mingw32: added
9789
9790 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9791
9792         * src/pic Added object file support for the PIC port
9793         * src/pic Applied patch from Craig Franklin (this started the object file support)
9794         * src/regression Updated the PIC regression tests for object files
9795
9796 2003-04-20  Borut Razem <borut.razem AT siol.net>
9797
9798         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9799           lklex.c: In function `getfid':
9800           lklex.c:203: warning: array subscript has type `char'
9801         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9802           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9803         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9804           stack handling macros
9805
9806 2003-04-19  Borut Razem <borut.razem AT siol.net>
9807
9808         * "handling space characters in file path" task:
9809         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9810         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9811         * support/Util/MySystem.h: make it self-sufficient
9812         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9813           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9814           handling space characters in file path
9815         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9816           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9817         * support/Util/MySystem.c: handling space characters in executable's path
9818
9819 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9820
9821         * as/z80/Makefile: fix permanent rebuild of z80
9822         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9823         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9824
9825 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9826
9827         * src/SDCCopt.c: add special case optimization to replace modulo by
9828           a power of two with a bitwise AND.
9829
9830 2003-04-18    <johan AT balder>
9831
9832         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9833
9834 2003-04-17    <johan AT balder>
9835
9836         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9837         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9838
9839 2003-04-13  Borut Razem <borut.razem AT siol.net>
9840
9841         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9842         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9843           fixed mingw problem in adl_NORMALIZE_PATH
9844
9845 2003-04-12  Borut Razem <borut.razem AT siol.net>
9846
9847         * fixed "#pragma SAVE/RESTORE can not be nested":
9848         * src/SDCC.lex: reworked pragma handling functions
9849         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9850         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9851
9852 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9853
9854         * src/SDCCutil.c (pathEquivalent): defined but not used
9855         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9856         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9857         * configure: rebuilt from configure.in
9858         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9859         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9860         * device/include/Makefile.in: replace sdcc_datadir
9861         * device/lib/Makefile.in: replace sdcc_datadir
9862         * Makefile.common.in: add LDFLAGS from configure
9863         * packihx/Makefile.in: use LDFLAGS
9864         * src/Makefile.in: use LDFLAGS
9865         * support/cpp2/Makefile.in: add LDFLAGS from configure
9866         * support/makebin/Makefile: use LDFLAGS
9867         * .version: bumped version number to 2.3.5
9868
9869 2003-04-12  Borut Razem <borut.razem AT siol.net>
9870
9871         * completed "different paths" task:
9872         * src/SDCCmacro.c: fixed bug in handling quotes
9873         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
9874         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
9875
9876 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9877
9878         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
9879
9880 2003-04-11 kevin Vigor <kevin AT vigor.nu>
9881
9882         * ds390/gen.c ds390/peeph.def: fix bug 706781
9883
9884 2003-04-11  Borut Razem <borut.razem AT siol.net>
9885
9886         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
9887
9888 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
9889
9890         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
9891         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
9892          set - this bit used to not be set...).
9893         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
9894           bad code in PIC Port
9895         * src/regression/and2.c added to test bug 609268
9896         * src/regression/Makefile added and2.c to regression test
9897
9898
9899 2003-04-08    <johan AT CP255758-A>
9900
9901         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
9902         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
9903         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
9904
9905 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
9906
9907         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
9908         fix bug #487815
9909         * support/cpp2/Makefile.in: fix bug #487815
9910         * configure: rebuilt from configure.in
9911         * Makefile.common.in: docdir changed, new path suffixes
9912         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9913         * sdcc_vc_in.h: reflect changes from sdccconf.h
9914         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
9915         * src/SDCCutil.h: remove BINDIR hack
9916         * doc/sdccman.lyx: update new path hierarchy
9917
9918 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9919
9920         * src/SDCCpeeph.c: added okToRemoveSLOC test
9921
9922 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9923
9924         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
9925
9926 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
9927
9928         * src/SDCCpeeph.c: added labelIsReturnOnly test
9929         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
9930
9931 2003-04-05    <johan AT balder>
9932
9933         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
9934         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
9935         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
9936         * src/SDCCast.c: fixed a warning
9937         * src/SDCCast.h: fixed a warning
9938         * src/SDCCicode.c (operandFromAst): fixed a warning
9939
9940 2003-04-04    <johan AT balder>
9941
9942         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
9943         * src/SDCCast.c (decorateType): fixed bug #715076
9944         * src/SDCC.y: fixed bug #702907
9945
9946 2003-04-03    <johan AT balder>
9947
9948         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
9949         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
9950         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
9951         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
9952         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
9953
9954 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
9955
9956         * _decdptr.c: fix return values
9957         * _gptrget.c: fix return values
9958         * _gptrgetc.c: fix return values
9959         * _gptrput.c: fix return values
9960         * _mulint.c: fix return values
9961         * as/z80/Makefile: fix 'make -j' problem
9962
9963 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
9964
9965         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
9966         * configure.in: big cleanup, updated to autoconf 2.5x
9967         * configure: rebuilt from configure.in
9968         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
9969         * sdcc_vc_in.h: reflect changes from sdccconf.h
9970         * doc/Makefile: fixed a flaw in "make install"
9971
9972 2003-04-02    <johan AT balder>
9973
9974         * src/ds390/gen.c (genCmp): no comments
9975         * src/mcs51/gen.c (genCmp): no comments
9976         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
9977         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
9978
9979 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
9980
9981         * support/regression/generate-cases.py: place generated file in given sub directory
9982         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
9983         * support/regression/Makefile: improvements for 'make -j';
9984         side effect: it's simpler and faster now
9985
9986 2003-03-31  Borut Razem <borut.razem AT siol.net>
9987
9988         * src/z80/main.c: link-{port} and as-{port} defined without path
9989         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
9990
9991 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
9992
9993         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
9994
9995 2003-03-30  Borut Razem <borut.razem AT siol.net>
9996
9997         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
9998           changed type of list parameter to set
9999         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
10000         * src/port.h: changed type of do_assemble() parameter to set
10001         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
10002           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
10003           definition of "cppoutfilename" macro with NULL value in preProcess()
10004         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
10005         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
10006         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
10007           replaced with set *binPathSet
10008         * shash_add() deallocates the item, if allready exsists, before adding the new one
10009         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
10010
10011 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
10012
10013         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
10014           a nested for loop bug in the PIC port
10015         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
10016           for loops
10017
10018 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
10019
10020         * support/Util/dbuf.h: remove C++ stuff to make it portable
10021
10022 2003-03-28  Borut Razem <borut.razem AT siol.net>
10023
10024         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10025           literal strings in stringLiteral()
10026         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10027         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
10028           to the project
10029
10030 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10031
10032         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10033
10034 2003-03-26    <johan AT balder>
10035
10036         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10037         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10038         * src/SDCCast.c (decorateType): fixed " -v < 3"
10039
10040 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10041
10042         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10043         Added Lenny Story's debug infrastructure changes:
10044         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10045         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10046         * src/cdbFile.c: added
10047         * src/SDCCdebug.c: added
10048         * src/SDCCdebug.h: added
10049         * src/SDCCast.c (createFunction)
10050         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10051         * src/SDCCmain.c (parseCmdLine, main)
10052         * src/SDCCmem.c (redoStackOffsets)
10053         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10054         * src/SDCCsymt.h
10055         * src/common.h
10056         * src/avr/gen.c (genAVRCode)
10057         * src/ds390/gen.c (gen390Code)
10058         * src/mcs51/gen.c (gen51Code)
10059         * src/pic/gen.c (genpic14Code)
10060         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10061         * src/xa51/gen.c (genXA51Code)
10062         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10063
10064 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10065
10066         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10067         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10068
10069 2003-03-22    <johan AT balder>
10070
10071         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10072
10073 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10074
10075         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10076         * doc/cdbfileformat.lyx: added, written by Lenny Story
10077         * doc/Makefile: added cdbfileformat.lyx
10078         * doc/clean.mk: added cdbfileformat.lyx
10079
10080 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10081
10082         * src/mcs51/peeph.def: fix bug #705773
10083
10084 2003-03-20    <johan AT balder>
10085
10086         An sfr/sbit can have an "at #" AND an initializer
10087         * src/SDCCsymt.c (checkSClass):
10088         * src/SDCCmem.c (allocGlobal):
10089         * src/SDCCmem.c (allocLocal):
10090         * src/SDCCast.c (createBlock):
10091
10092 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10093
10094         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10095
10096 2003-03-16    <johan AT balder>
10097
10098         Undid the hackup of const and volatile, the problem is much bigger
10099         * src/SDCC.y:1.65
10100         * src/SDCCast.c:1.171
10101         * src/SDCCglue.c:1.138
10102         * src/SDCCicode.c:1.146
10103         * src/SDCCsymt.c:1.150
10104         * src/SDCCval.c:1.65
10105
10106 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10107
10108         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10109         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10110
10111 2003-03-13    <johan AT balder>
10112
10113         Hackup const and volatile modifiers in type chains a bit:
10114         * src/SDCC.y:1.63
10115         * src/SDCCast.c:1.169
10116         * src/SDCCglue.c:1.136
10117         * src/SDCCicode.c:1.143
10118         * src/SDCCsymt.c1.146
10119         * src/SDCCsymt.h1.59
10120         * src/SDCCval.c:1.63
10121
10122 2003-03-12    <johan AT balder>
10123
10124         * src/SDCCBBlock.h: more LRH debugging junk
10125         * src/SDCCcflow.h: more LRH debugging junk
10126         * src/SDCCloop.c: more LRH debugging junk
10127         * src/SDCC.y (struct_declaration): fixed bug #697590
10128         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10129         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10130         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10131
10132 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10133         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10134         test function names must now match exactly).
10135         * src/SDCCcse.c: added special case in findCheaperOp to allow
10136         extending a short integer. Makes less awful code for bug 700121 test case.
10137
10138 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10139
10140         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10141         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10142
10143 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10144
10145         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10146         actually called (operandsNotEqual() was called for all
10147         operandsNotEqualX tests).
10148
10149 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10150
10151         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10152         with shorter literals. Fixes bug 700121.
10153
10154 2003-03-11    <johan AT balder>
10155
10156         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10157
10158 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10159
10160         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10161         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10162
10163 2003-03-10  Borut Razem <borut.razem AT siol.net>
10164
10165         * src/SDCCmain.c: pipe preprocessor's output
10166         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10167         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10168         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10169         which closes all pipes in pipeSet set
10170         * src/SDCCset.c: free deleted item in function deleteSetItem()
10171         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10172         moved from z80 to src subproject
10173         * .version: increased version number to 2.3.4
10174
10175 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10176
10177         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10178         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10179         * support/regression/ports/xa51/spec.mk: fix typo
10180
10181 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10182
10183         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10184
10185 2003-03-09  Borut Razem <borut.razem AT siol.net>
10186
10187         * src/SDCCmain.c: pipe preprocessor's output
10188         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10189         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10190         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10191         which closes all pipes in pipeSet set
10192         * src/SDCCset.c: free deleted item in function deleteSetItem()
10193         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10194         moved from z80 to src subproject
10195
10196 2003-03-09  Borut Razem <borut.razem AT siol.net>
10197
10198         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10199         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10200         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10201         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10202         * src/SDCCglobl.h: unification of WIN32 native definitions
10203
10204 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10205
10206         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10207
10208 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10209
10210         * src/configure.in:   check for endianess (even while cross-compiling)
10211         * src/configure:      check for endianess (even while cross-compiling)
10212         * src/configure_in.h: check for endianess (even while cross-compiling)
10213         * src/avr/gen.c:        remove old endianess stuff
10214         * src/mcs51/gen.c:      remove old endianess stuff
10215         * src/ds390/gen.c:      remove old endianess stuff
10216         * src/pic/gen.c:        remove old endianess stuff
10217         * src/pic/genarith.c:   remove old endianess stuff
10218         * src/pic/glue.c:       fix endianess check
10219         * src/pic16/gen.c:      remove old endianess stuff
10220         * src/pic16/genarith.c: remove old endianess stuff
10221         * src/pic16/glue.c:     fix endianess check
10222         * src/xa51/gen.c:       remove old endianess stuff
10223         * src/z80/gen.c:        fix endianess check
10224         * src/SDCCglue.c:       fix endianess check
10225         * src/ds390/peeph.def: fix bug 700036
10226
10227 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10228
10229         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10230         * src/configure: find appropriate data-types on host for SDCC's int and long
10231         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10232         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10233         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10234
10235 2003-03-07    <johan AT balder>
10236
10237         Just a big NOOP:
10238                 some minor cleanups before the big shot
10239                 OP_DEFS and OP_USES now use Kevin's protection
10240                 new option --nolabelopt
10241
10242         * src/SDCCBBlock.c:
10243         * src/SDCCast.c,:
10244         * src/SDCCcflow.c:
10245         * src/SDCCcse.c:
10246         * src/SDCCicode.c:
10247         * src/SDCCicode.h:
10248         * src/SDCClabel.c:
10249         * src/SDCCloop.c:
10250         * src/SDCCmain.c:
10251         * src/ds390/ralloc.c:
10252         * src/mcs51/ralloc.c:
10253         * src/pic/ralloc.c:
10254         * src/xa51/ralloc.c:
10255         * src/z80/ralloc.c:
10256
10257 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10258
10259         * src/pic/pcode.c (get_op): fix 64 bit warnings
10260         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10261         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10262         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10263         * support/regression/tests/malloc.c: fix 64 bit warnings
10264
10265 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10266
10267         * src/mcs51/gen.c (genMinus): fixed bug 696436
10268
10269 2003-03-02  Borut Razem <borut.razem AT siol.net>
10270
10271         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10272
10273 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10274
10275         * configure.in: test for mkstemp
10276         * sdccconf_in.h: add HAVE_MKSTEMP
10277
10278 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10279
10280         * device/include/ctype.h: removed warning while using --stack-auto
10281         * device/include/malloc.h: removed warning while using --stack-auto
10282         * device/include/string.h: removed warning while using --stack-auto
10283
10284 2003-02-23  Borut Razem <borut.razem AT siol.net>
10285
10286         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10287         because NDEBUG is defined (see man assert)
10288         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10289
10290 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10291
10292         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10293         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10294
10295 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10296
10297         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10298         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10299
10300 2003-02-18    <johan AT balder>
10301
10302         * as/mcs51/asmain.c (asmbl): module can start with a digit
10303         * as/z80/asmain.c (asmbl): module can start with a digit
10304
10305 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10306
10307         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10308         * src/asm.c: fix pipe() for Mingw32
10309
10310 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10311
10312         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10313         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10314         make -V work again; --c1mode reads now from stdin
10315         * doc/sdccman.lyx: added --c1mode
10316         * support/Util/SDCCerr.c: new messages for c1 mode
10317         * support/Util/SDCCerr.h: new messages for c1 mode
10318         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10319
10320 2003-02-15    <johan AT balder>
10321
10322         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10323
10324 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10325
10326         * doc/sdccman.lyx: Environment variables, -o and other minor things
10327
10328 2003-02-14    <johan AT balder>
10329
10330         * src/xa51/main.c: before anyone really tries to use it :)
10331
10332         * Install doc's in share/sdcc/doc
10333         * removed some obsolete files
10334         * Do a proper make distclean and uninstall
10335         M Makefile.common.in
10336         R sdccbuild.sh
10337         M as/Makefile
10338         M device/include/Makefile.in
10339         M device/lib/Makefile.in
10340         M doc/sdccman.lyx
10341         M link/Makefile
10342         M sim/ucsim/doc/Makefile.in
10343         M src/clean.mk
10344         R src/avr/peeph.rul
10345         R src/xa51/peeph.rul
10346         M support/cpp2/Makefile.in
10347         M support/makebin/Makefile
10348
10349
10350 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10351
10352         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10353
10354 2003-02-10  Borut Razem <borut.razem AT siol.net>
10355
10356         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10357         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10358         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10359         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10360         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10361         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10362         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10363         src/z80/Makefile.bcc: Borland Makefile cleanup
10364         * as/z80/Makefile.bcc: Added Borland Makefile
10365         * support/cpp2/borland.h: Removed
10366
10367 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10368
10369         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10370         * src/SDCC.lex: new pragma NOIV
10371         * src/SDCCglobl.h: new pragma NOIV
10372         * src/SDCCmem.c: new pragma NOIV
10373
10374 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10375
10376         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10377
10378 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10379
10380         * src/SDCCmain.c: signal handling is switched off by --debug
10381         * doc/Makefile: small fix for install; use clean.mk again
10382         * doc/clean.mk: clean *.pdf and *.html too
10383
10384 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10385
10386         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10387         * device/lib/printfl.c: fix a ds390 bug by making it portable
10388         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10389         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10390         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10391         * debugger/mcs51/cmd.c: converted multi-line string literals
10392         * sim/ucsim/globals.cc: converted multi-line string literals
10393         * src/SDCCmain.c: introduced signal handler to remove temp files
10394         * doc/Makefile: small tweaks, implement clean
10395         * doc: removed generated files
10396
10397 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10398
10399         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10400         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10401         Address Record is not correctly generated for DS390."
10402
10403 2003-02-02  Borut Razem <borut.razem AT siol.net>
10404
10405         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10406         * as/mcs51/asm.h: fixed compilation with Borland C
10407         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10408         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10409         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10410         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10411         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10412         src/z80/Makefile.bcc: delete $(LIB) only if exist
10413         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10414
10415 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10416
10417         * device/include/malloc.h: introduced NULL
10418         * device/include/string.h: introduced NULL
10419         * device/include/stdlib.h: introduced NULL
10420         * device/lib/_memcpy.c: removed NULL
10421         * device/lib/_strcat.c: removed NULL
10422         * device/lib/_strchr.c: removed NULL
10423         * device/lib/_strcmp.c: removed NULL
10424         * device/lib/_strcpy.c: removed NULL
10425         * device/lib/_strcspn.c: removed NULL
10426         * device/lib/_strlen.c: removed NULL
10427         * device/lib/_strncat.c: removed NULL
10428         * device/lib/_strncmp.c: removed NULL
10429         * device/lib/_strncpy.c: removed NULL
10430         * device/lib/_strpbrk.c: removed NULL
10431         * device/lib/_strrchr.c: removed NULL
10432         * device/lib/_strspn.c: removed NULL
10433         * device/lib/_strstr.c: removed NULL
10434         * device/lib/_strtok.c: removed NULL
10435         * device/lib/malloc.c: removed NULL, include own header
10436
10437 2003-02-02    <johan AT balder>
10438
10439         * 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
10440         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10441         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10442         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10443         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10444         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10445
10446 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10447
10448         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10449         area 'DATA'"
10450
10451 2003-02-01    <johan AT balder>
10452
10453         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10454
10455 2003-01-31    <johan AT CP255758-A>
10456
10457         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10458
10459 2003-01-30    <johan AT balder>
10460
10461         * src/SDCCBBlock.c: automatic bug detection
10462         * src/SDCCicode.c: automatic bug detection
10463
10464 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10465
10466         * src/SDCCglobl.h:   now --xram-size 0 works
10467         * src/SDCCmain.c:    now --xram-size 0 works
10468
10469 2003-01-29    <johan AT balder>
10470
10471         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10472
10473 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10474
10475         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10476         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10477         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10478         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10479         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10480         * src/SDCCmain.c:    Added options --xram-size and --code-size
10481
10482 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10483
10484         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10485         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10486
10487 2003-01-27    <johan AT balder>
10488
10489         * src/SDCC.y: fixed bug #613764
10490
10491 2003-01-26    <johan AT balder>
10492
10493         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10494         * src/SDCCsymt.h: fixed bug #673374
10495         * src/SDCCglue.c: fixed bug #661910
10496         * src/SDCCast.c: fixed bug #458099 and 673374
10497
10498 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10499
10500         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10501         * as/mcs51/strcmpi.h: added
10502         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10503         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10504         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10505         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10506         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10507         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10508         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10509         * as/mcs51/Makefile.aslink: new module strcmpi
10510         * as/mcs51/Makefile.asx8051: new module strcmpi
10511         * as/mcs51/Makefil.bcc: new module strcmpi
10512         * as/mcs51/Makefile.in: new module strcmpi
10513         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10514
10515 2003-01-26    <johan AT balder>
10516
10517         * src/SDCCglue.c: reverted back to 1.124
10518         * src/SDCCast.c: reverted back to 1.156
10519         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10520
10521 2003-01-25    <johan AT balder>
10522
10523         * src/SDCCglue.c: A better fix for bug #661910
10524         * src/SDCCast.c: A better fix for bug #661910
10525         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10526
10527 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10528
10529         * src/Makefile.in: remove spawn.o
10530         * src/SDCCmain.c: remove spawn.h
10531         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10532         * src/spawn.c: removed
10533         * src/spawn.h: removed
10534         * support/regression/ports/ds390/spec.mk: link with -r
10535
10536 2003-01-24    <johan AT CP255758-A>
10537
10538         * src/ds390/gen.c (aopOp): fixed bug #667458
10539         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10540         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10541         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10542
10543 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10544
10545         * src/mcs51/peeph.def: better assembler identation by Frieder
10546         * src/mcs51/gen.c: better assembler identation by Frieder
10547
10548 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10549
10550         * as/z80/string.h: removed for gcc 3.2
10551         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10552         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10553
10554 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10555
10556         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10557         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10558         * support/regression/Makefile: separate temp files for ports
10559         * support/regression/generate-cases.py: separate temp files for ports
10560         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10561         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10562
10563 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10564
10565         * moved tinitalk to device/examples/ds390
10566
10567 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10568
10569         * as/mcs51/lkmem.c: rflag is for DS390
10570         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10571         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10572                          (linkEdit): move mem- and map-files the same way as ihx-files
10573         * src/z80/main.c (_setDefaultOptions): removed --generic
10574         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10575         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10576         * src/pic/glue.c (picglue): --c1mode works again
10577         * src/pic16/glue.c (pic16glue): --c1mode works again
10578         * src/asm.c (printCLine): fix #660034
10579
10580 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10581
10582         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10583         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10584         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10585         * as/mcs51/lkmem (summary): better fix for sp problem
10586         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10587         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10588         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10589                                               remove --stack-after-data
10590
10591 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10592
10593         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10594         * src/SDCCutil.c (join): ugly bug: missing '\0'
10595         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10596
10597 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10598
10599         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10600         * src/port.h: typo
10601         * src/pic/main.c (_asmCmd): gpasm supports -o
10602         * src/z80/main.c: more general macros
10603         * device/lib/Makefile.in: remove intermediate files
10604
10605 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10606
10607         * .version: Bumped version number to 2.3.3
10608         * src/SDCCBBlock.c: new option -o
10609         * src/SDCCglobl.h: new option -o
10610         * src/SDCCglue.c: new option -o
10611         * src/SDCCmain.c: new option -o
10612         * src/asm.c: new option -o
10613         * src/ds390/main.c: new option -o
10614         * src/pic/glue.c: new option -o
10615         * src/pic/pcode.c: new option -o
10616         * src/pic/ralloc.c: new option -o
10617         * src/pic16/glue.c: new option -o
10618         * src/pic16/pcode.c: new option -o
10619         * src/pic16/ralloc.c: new option -o
10620         * src/z80/main.c: new option -o
10621         * device/lib/Makefile.in: use -o
10622         * support/regression/ports/ds390/spec.mk: use -o
10623         * support/regression/ports/gbz80/spec.mk: use -o
10624         * support/regression/ports/mcs51/spec.mk: use -o
10625         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10626         * support/regression/ports/z80/spec.mk: use -o
10627         * support/regression/ports/ucz80/spec.mk: use -o
10628         * support/regression/ports/xa51/spec.mk: use -o
10629         * support/regression/fwk/lib/timeout.c: fix usage string
10630
10631 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10632         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10633
10634 2003-01-07    <johan AT balder>
10635
10636         * src/SDCCast.c (decorateType): fixed bug #600035
10637
10638 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10639         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10640         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10641         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10642         * src/pic/pcode.c: outcommented unused variable to remove warnings
10643         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10644
10645 2003-01-06    <karl AT turbobit.com>
10646         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10647    regression tests.
10648
10649 2003-01-06    <johan AT balder>
10650
10651         * src/SDCCicode.c: fixed array add
10652
10653 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10654         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10655         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10656
10657 2003-01-04    <johan AT balder>
10658
10659         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10660
10661 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10662         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10663
10664 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10665         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10666         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10667
10668 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10669         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10670
10671 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10672         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10673
10674 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10675         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10676
10677 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10678
10679     * in \sdcc\as\mcs51\ changed these files in order to create an
10680     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10681     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10682     following files to include the previous two files: aslink.dsp,
10683     Makefile.aslink, Makefile.bcc, and Makefile.in.
10684
10685     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
10686     .adb instead of .cdb
10687
10688 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10689
10690         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
10691         value from option --iram-size.
10692
10693 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10694
10695         * \sdcc\as\mcs51\lklist.c: added boundary check before using
10696         dram[] array.
10697
10698 2002-09-18    <wiml AT hhhh.org>
10699
10700         * SDCClrange.h: exposed setFromRange() and setToRange()
10701         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10702           packRegsForAccUse() (bug 542397)
10703         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10704           multiple times and emitting the fetch operations more than once
10705           added aopGetUsesAcc() function to allow binary operators to
10706           fetch their operands in the correct order; made genMinus() emit
10707           compact code for X = LITERAL - Y
10708
10709 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10710         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
10711         sprintf() in line 1267.
10712
10713 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10714         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10715         like ports.
10716
10717 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10718         Changes to aslink (All the changes are marked with 'JCF'):
10719
10720         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
10721         summary().
10722
10723         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
10724         area BSEG.  Also moves, if possible, the DATA area down into the internal
10725         ram so more space is available.
10726
10727         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
10728         sflag.
10729
10730         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
10731         not bytes.  Function summary() which creates a memory usage summary
10732         file with extension .mem.  Reports of overlaping stack and small stack
10733         size.  If the space for the stack is less than 16 bytes aslink trows a
10734         warning.
10735
10736         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
10737         the 8051.  Option 'y' for memory summary output file.
10738
10739         Changes to sdcc (All the changes are marked with 'JCF'):
10740
10741         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
10742
10743         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
10744         overlaying area for it (uses RegBankUsed[4]).
10745
10746         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
10747         bank zero as used by default.  By default aslink locates the stack
10748         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10749         the creation of the .mem file.  Delegates the allocation of data area
10750         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10751         the begining of the stack area to aslink.
10752
10753         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
10754         glue() in SDCCglue.c creates an area for it.
10755
10756 2002-09-03  Borut Razem <borut.razem AT siol.net>
10757         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10758         sdcc/src/pic/glue.c:
10759         introduced atexit() handler for teporay files removal in case of
10760         errors, assertions, ...
10761
10762 2002-08-29  Borut Razem <borut.razem AT siol.net>
10763         * sdcc/support/cpp2/auto-host_vc_in.h:
10764         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10765         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10766         Maybe there is a similar problem with BORLANDC? It should be checked!
10767
10768         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10769         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10770         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10771         was not executed, and the compiler (cl) launched a warning:
10772         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10773
10774 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10775         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10776
10777 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10778         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10779
10780         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10781           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10782           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10783           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10784           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10785           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10786           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10787         - added Release configuration in VS projects
10788         - review of compiler an linker options
10789         - VC .exe files are generated in bin_vc directory, not to interfere
10790           with binaries generated from other projects (cygwin, mingw, bcc ...)
10791
10792         * sdcc/src/yacc.dsp: added
10793
10794         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10795         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10796         and insert the version number definitions from .version
10797
10798         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10799
10800         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10801         added - genarate auto-host.h using auto-host_vc_in.h as template
10802
10803         * sdcc/sdcc_vc.h,
10804         removed from CVS, generated automatically
10805
10806 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10807         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10808
10809 2002-08-11  Borut Razem <borut.razem AT siol.net>
10810         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10811
10812 2002-08-10  Borut Razem <borut.razem AT siol.net>
10813         * src/SDCCmain.c (main):
10814         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10815         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10816         The consequence was that some temporary files were not removed.
10817
10818         * src/SDCCglue.c:
10819         unification of code in functions tempfilename() and tempfile():
10820         function tempnam() is defined in Visual Studio 6.0 and .NET
10821
10822         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10823
10824         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10825           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10826         - removed compiler command line option /WX: Treats all warnings as errors
10827         - update a list of source files, included into the project
10828
10829         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10830           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10831         changed project type to Generic Project so that can be correcly converted to VS.NET project
10832
10833         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10834
10835         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10836
10837         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10838
10839         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10840         added return 0 statements after assert() to make compiler happy
10841
10842         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10843         added newline in the def file to keep MSC compiler satisfied
10844
10845         * sdcc/src/z80/gen.c:
10846         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10847           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10848         - solved MSC error in function aopDump()
10849
10850         * sdcc_vc.h: define PREFIX as "\\sdcc"
10851
10852 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10853         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10854
10855 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10856         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10857         - Rewrote the register banking algorithm.
10858         - Added pCode live-range analysis to registers (for now, only non-used and
10859         singly-used registers optimized away)
10860
10861         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
10862
10863         * 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.
10864
10865 2002-05-10  Scott Dattalo <scott AT dattalo.com>
10866         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
10867
10868 2002-04-22  Michael Hope  <michaelh AT vroom>
10869
10870         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
10871
10872         * configure.in (DD_COPT): Added include support required for gbdk.
10873
10874         * .version: Bumped version number just to increase it.
10875
10876         * src/SDCCmain.c: Added -nostdinc to the default options.
10877
10878 2002-04-15  Michael Hope  <michaelh AT vroom>
10879
10880         * device/lib/z80/printf.c (sprintf): Added.
10881
10882         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
10883
10884         * src/z80/peeph.def: Added transpose redundent load rule.
10885
10886         * src/z80/main.c: Added force callee saves for jaune.
10887
10888         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
10889
10890         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
10891
10892 2002-03-28  Johan Knol  <johan AT balder>
10893
10894         * src/SDCCval.c: fixed bug #532436
10895
10896 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10897         * /src/port.h:
10898         Added "char *Processor" field to the port structure.
10899
10900         * /src/SDCCmain.c:
10901         Added -p option. Allows port dependent processor to be specified.
10902
10903         * all ports:
10904         Initialized the new field char *Processor field to NULL in all ports
10905
10906         * /src/pic/*:
10907         Compiler generated registers for interrupt context saving
10908         were not getting allocated.
10909
10910 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
10911
10912         * /src/SDCCast.c:
10913         Fixed left shift. Will promote the left side of a left shift
10914         if a) left shifting more than size of operand or b) when assigned
10915         to something size > size of left side
10916
10917 2002-03-14  Scott Dattalo <scott AT dattalo.com>
10918         * src/pic/*
10919         tons of changes. Register allocation has been
10920         rewritten. Added customization for the various PICs. Flow
10921         analysis is restructured. ...
10922
10923         * src/pic/device.h:
10924         Added
10925
10926         * src/pic/device.c:
10927         Added. device.c is a PIC port hack to accomodate variations
10928         in PIC devices.
10929
10930 2002-03-13  Michael Hope  <michaelh AT vroom>
10931
10932         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
10933
10934 2002-03-04  johanknol  <johanknol AT manik>
10935
10936         * /src/SDCCval.c: fixed
10937
10938         const unsigned char arr[][2] = { { 0, 1 } };
10939         t18.c:1: error: Initializer element is not constant
10940
10941 2002-03-04  bela  <bela AT manik>
10942
10943         * /device/include/mcs51reg.h:
10944         ds89c420 register definition update
10945
10946 2002-03-03    <johan AT FRIJA>
10947
10948         * support/Util/SDCCerr.c: did something, but don't no why anymore
10949
10950         * support/regression/tests/bug-524691.c: made it a little less shy
10951
10952         * src/SDCCast.c (decorateType): fixed bug #524697
10953
10954         * src/SDCCast.c: made some lineno improvements
10955
10956         * src/SDCCval.c (getNelements): changed warning to error
10957
10958         * src/SDCCglue.c (printIvalArray): changed warning to error
10959
10960         * src/SDCCicode.c: fixed a warning for mingw
10961
10962         * src/SDCCast.c (decorateType): fixed the << promotion for ops
10963
10964         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
10965
10966 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
10967
10968         * src/ds390/peeph.def:
10969         Added some more peephole rules
10970
10971         * src/ds390/gen.c: Various fixes & enhancements
10972
10973         * src/SDCClrange.c, src/SDCClrange.h:
10974         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
10975
10976         * src/ds390/ralloc.c:
10977         various fixes & enhancements (ds390) specific
10978
10979         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
10980         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
10981         from rallocs.
10982
10983         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
10984
10985 2002-03-02    <johan AT FRIJA>
10986
10987         * src/SDCCast.c (decorateType): fixed bug #524708
10988
10989         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
10990
10991         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
10992
10993 2002-03-01  Michael Hope  <michaelh AT vroom>
10994
10995         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
10996
10997         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
10998
10999 2002-03-01    <johan AT FRIJA>
11000
11001         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
11002
11003         * src/SDCCast.c (decorateType): fixed bug #524209
11004
11005         * src/SDCCval.c (valNot): fixed bug #524195
11006
11007 2002-02-26    <johan AT balder>
11008
11009         * src/xa51/gen.c: fixed a warning
11010
11011         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
11012
11013         * src/SDCCast.c (decorateType): fixed bug #522534
11014
11015 2002-02-23    <johan AT balder>
11016
11017         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
11018
11019 2002-02-22    <johan AT balder>
11020
11021         * src/SDCCast.c: fixed bug #514865
11022
11023         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11024
11025 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11026
11027         * sdcc/src/SDCCloop.c:
11028         Previous fix was not good. basic blocks that have "break" or "return" are
11029         not really partof a loop , but live ranges used in these blocks should
11030         be live thru the entire loop, so set partOfLoop but don't add them to
11031         loop region
11032
11033 2002-02-21    <johan AT FRIJA>
11034
11035         * src/SDCCcse.c: fixed bug #514308
11036
11037 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11038
11039         * src/SDCCloop.c:
11040         Fixed BUG #519583. If a conditional block ended in a return/break
11041         statement inside a loop, it was not being considered part of the loop.
11042
11043         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11044
11045 2002-02-10  Karl Bongers <karl AT turbobit.com>
11046
11047         * debugger/*:
11048         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11049         with lots of comments and notes.
11050
11051         * device/examples/test2.c:
11052         Fix bug, "red" variable not being initialized(compiler complained).
11053
11054         * device/examples/Makefile, examples/test3.c:
11055         Add Makefile in device/examples folder, compiles test3.c
11056         for use as a multiple module SDCDB test case.
11057
11058         * sim/ucsim/cmd.src/cmdset.cc:
11059         Took out debug printfs in ucsim "next" command.
11060
11061         * sim/ucsim/xa.src:
11062         Karl and Johan start ucsim XA support.  Most dissassembly working,
11063         about 75% emulation done(plenty of work remaining).
11064
11065         * sim/ucsim/z80.src:
11066         Add Z80 support to ucsim, add test-ucz80 regression test,
11067         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11068         Notice z80 compiler fails on examples/test3.c/crc code.
11069
11070 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11071
11072         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11073         Added support for --parms-in-bank1
11074
11075         * src/ds390/peeph.def:
11076         added a few more peephole optimzations
11077
11078         * src/ds390/main.c:
11079         1) added __builtin_inp & __builtin_outp used to read in data of given length
11080            from a memory mapped port
11081         2) added __builtin_memcmp
11082         3) added __builtin_swapw swap bytes of a short
11083
11084         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11085         1) handle multiple send & receives from register bank1
11086         2) ralloc can now allocate DPTR1 to some liveRanges
11087
11088         * src/SDCCsymt.c, src/SDCCsymt.h:
11089         changes to handle multiple sends & receives
11090
11091         * src/SDCCptropt.h:
11092         added some pointer arithmetic optimization
11093
11094         * src/SDCCptropt.c:
11095         added some pointer arithmetic optimizations but not stable yet so not
11096         called from anywhere (will get this working shortly)
11097
11098         * src/SDCCopt.c: fixed for multiple sends & receives
11099
11100         * src/SDCCmain.c:
11101         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11102         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11103            set preprocessor defines (depending on options)
11104
11105         * src/SDCCicode.c, src/SDCCicode.h:
11106         changes made to handle multiple sends & receives
11107
11108         * src/SDCCglobl.h:
11109         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11110
11111         * src/SDCCcse.c, src/SDCCcse.h:
11112         added function findbackward def (to be used in upcoming optimization)
11113
11114         * src/SDCCcflow.c, src/SDCCcflow.h:
11115         added function returnAtEnd - to determine if a basic block terminates with
11116         a RETURN iCode
11117
11118         * src/SDCCast.c, src/SDCCast.h:
11119         added option parms-in-bank1
11120
11121         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11122         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11123         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11124         adjusted for --parms-in-bank1 option
11125
11126         * device/include/string.h:
11127         donot redefine "reentrant" keyword
11128
11129         * device/include/ds80c390.h: Added some more SFRs
11130
11131 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11132
11133         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11134
11135 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11136
11137         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11138
11139 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11140
11141         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11142
11143 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11144
11145         * Added --xram-movc option
11146
11147 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11148
11149         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11150
11151 2002-01-11  Johan Knol
11152
11153         * Added math lib of Jesus Calvino-Fraga
11154
11155 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11156
11157         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11158         * support/regression/Makefile: new target test-mcs51-stack-auto
11159         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11160
11161 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11162
11163         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11164
11165 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11166
11167         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11168
11169 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11170
11171         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11172
11173         * src/SDCCglue.h: add definition for printIvalChar()
11174
11175 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11176
11177         * src/SDCCast.c: fix #498138 by Johan
11178
11179         * src/SDCCglue.c: fix #498138 by Johan
11180
11181 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11182
11183         * support/regression/Makefile: fix clean
11184
11185         * support/regression/ports/ds390/support.c: fix transmission of last character
11186
11187 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11188
11189         * /sdcc/src/ds390/gen.c:
11190         a) improved computing address of stack variable
11191         b) took out some #if 0 code
11192         c) improved parmBytes adjustment
11193         d) improved genPlusIncr & genMinusIncr
11194         e) genCmp could generate bad code (when left assigned to DPTR)
11195         f) Fixed bug in hasInc
11196
11197         * /sdcc/src/ds390/ralloc.c:
11198         a) packRegsForSupport could mess up live information (Fixed)
11199         b) packRegsDPTRuse could be incorrect for left & right shift
11200
11201         * /sdcc/src/mcs51/ralloc.c:
11202         packRegsForSupport could mess up the live information (Fixed)
11203
11204         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11205
11206         * /sdcc/src/SDCCast.c:
11207         can reverse a loop even if function call is present as long
11208         as the loop control variable is local & is not passed as parameter
11209
11210 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11211
11212         * /sdcc/ChangeLog: *** empty log message ***
11213
11214         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11215         More builtin function additions for TININative
11216
11217         * /sdcc/src/ds390/ralloc.c:
11218         Had broken the regression testsuite
11219
11220         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11221
11222         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11223         Added funcattr hasStackParms will be set for reentrant functions when there
11224         are paramteres on the stack, this helps in minimizing frame pointer generation
11225         typeFromStr can handle function pointers now
11226
11227         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11228         *** empty log message ***
11229
11230 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11231
11232         * /src/ds390/gen.c, /src/ds390/main.c:
11233         More builtin function additions for TININative
11234
11235         * /src/ds390/ralloc.c:
11236         Had broken the regression testsuite
11237
11238         * /src/SDCCast.c: Fixed a bug in dumptree
11239
11240         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11241         Added funcattr hasStackParms will be set for reentrant functions when there
11242         are paramteres on the stack, this helps in minimizing frame pointer generation
11243         typeFromStr can handle function pointers now
11244
11245         * /doc/builtins.txt, /doc/TININative.txt:
11246         *** empty log message ***
11247
11248
11249 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11250
11251         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11252         ALPHA version for -mTININative
11253
11254         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11255         updated to reflect changes in the port structure
11256
11257         * /src/port.h:
11258         added function do_assemble (similar to do_link) if non-null this function
11259         will be called to do assembly (-mTININative) requires a multi command
11260         assembly
11261         added function genAssemblerEnd will be called to generate assembler Epilogue
11262
11263         * /src/SDCCsymt.c:
11264         added _JavaNative to debug info printing
11265
11266         * /src/SDCCmain.c: added option --tini-libid
11267         added port->do_assemble function (-mTININative) has a multi command assemble
11268
11269         * /src/SDCCglue.c: Disabled "constExpr" check
11270         added port->genAssemblerEnd function
11271
11272         * /src/SDCCglobl.h: Added option --tini-libid value
11273
11274         * /src/SDCCast.h:
11275         tookout optimizeCompare from the header (has no external references)
11276
11277         * /src/SDCCast.c: made one more function "static"
11278
11279 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11280
11281         * src/z80/mappings.i: Added z80asm support.
11282
11283         * src/z80/main.c: Added z80asm support on --asm=z80asm
11284
11285         * src/z80/gen.c: Fixed asm portability issues.
11286
11287         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11288
11289         * src/SDCCglue.c (printExterns): Added global/extern split.
11290
11291 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11292
11293         * support/regression/Makefile: added test for mcs51 model large
11294
11295         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11296
11297         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11298
11299 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11300
11301         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11302
11303 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11304
11305         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11306
11307         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11308
11309 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11310
11311         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11312
11313         * support/regression/tests/simplefloat.c: Port to mcs51.
11314
11315 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11316         * support/regression/tests/bug-485362.c: Added.
11317
11318         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11319
11320         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11321
11322         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11323
11324         * src/z80/gen.c (aopDump): Added a dump function.
11325
11326 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11327         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11328
11329         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11330
11331         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11332
11333         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11334
11335         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11336
11337         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11338
11339         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11340
11341         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11342
11343         * support/regression/ports/ds390/support.c: Use tinibios.
11344
11345         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11346
11347 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11348
11349         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11350         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11351
11352         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11353
11354         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11355
11356 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11357
11358         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11359
11360         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11361         (packRegsForIYUse): Created and optimised.
11362
11363 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11364
11365         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11366 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11367
11368         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11369
11370         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11371
11372         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11373
11374 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11375
11376         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11377
11378         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11379
11380 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11381
11382         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11383
11384         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11385
11386         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11387
11388 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11389
11390         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11391         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11392         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11393
11394         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11395
11396         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11397         (genNotFloat): Added.
11398         (genUminusFloat): Added.
11399
11400         * device/lib/z80/Makefile: Added floating pt stubs.
11401
11402         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11403
11404         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11405
11406         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11407
11408 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11409
11410         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11411
11412         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11413
11414         * sdcc/support/regression/Makefile: Add port ds390.
11415
11416         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11417
11418         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11419
11420         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11421
11422         * sdcc/support/regression/ports/ds390/support.c: Added.
11423
11424         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11425
11426         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11427
11428         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11429
11430 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11431
11432         * device/include/malloc.h: Added z80 and gbz80 support.
11433
11434         * device/lib/gbz80/heap.s: Added.
11435
11436         * device/lib/z80/heap.s: Added.
11437
11438         * device/lib/malloc.c: Added z80 and gbz80 support.
11439
11440         * support/regression/tests/malloc.c (testMalloc): Added.
11441
11442         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11443
11444         * support/regression/tests/bug-478094.c: Added.
11445
11446         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11447
11448 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11449
11450         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11451
11452         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11453
11454         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11455
11456         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11457
11458         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11459
11460 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11461
11462         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11463
11464 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11465
11466         * support/regression/tests/bug-477927.c: Added.
11467
11468         * src/z80/peeph.def: Added minor rules.
11469
11470         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11471
11472         * src/z80/peeph.def: Added jump optimisation modification.
11473
11474 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11475
11476         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11477
11478 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11479
11480         * support/regression/tests/funptrs.c: Added.
11481
11482 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11483
11484         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11485
11486 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11487
11488         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11489
11490         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11491
11492         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11493         (movLeft2ResultLong): Created.
11494
11495         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11496         (joinPushes): Added.  Joins two char pushes into a word push.
11497
11498 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11499
11500         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11501
11502         * support/makebin/Makefile (install): Added creation of dest dir.
11503
11504 2001-10-24 Karl Bongers <karl AT turbobit.com>
11505
11506         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11507
11508 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11509
11510         * src/z80/ralloc.c: Turned off faulty pack for one use.
11511
11512         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11513
11514         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11515
11516 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11517
11518         * support/regression/Makefile: Improved clean
11519
11520         * support/regression/ports/gbz80/spec.mk: Added clean
11521
11522         * support/regression/ports/host/spec.mk: Added clean
11523
11524         * support/regression/ports/z80/spec.mk: Added clean
11525
11526         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11527
11528         * support/regression/ports/mcs51/timeout.c: little improvements
11529
11530 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11531
11532         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11533
11534         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11535
11536         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11537
11538 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11539
11540         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11541
11542         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11543
11544 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11545         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11546
11547         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11548
11549         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11550
11551         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11552
11553         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11554
11555         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11556
11557         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11558
11559         * support/regression/tests/longor.c: Added.
11560
11561 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11562
11563         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11564
11565         * as/mcs51/aslink.h: define PATH_MAX
11566
11567         * as/mcs51/asm.h: define PATH_MAX
11568
11569         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11570
11571         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11572
11573         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11574
11575         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11576
11577         * src/SDCCglobl.h: define PATH_MAX
11578
11579         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11580
11581         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11582
11583 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11584
11585         * src/z80/gen.c (gencjneshort): Fixed
11586
11587         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11588
11589 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11590
11591         * support/regression/tests/bug-469671.c: Added.
11592
11593         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11594
11595 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11596
11597         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11598
11599         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11600
11601 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11602
11603         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11604
11605         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11606
11607         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11608
11609         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11610
11611         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11612
11613         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11614
11615         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11616
11617 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11618
11619         * 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.
11620
11621         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11622
11623         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11624
11625 2001-10-07    <johan AT FRIJA>
11626
11627         * device/lib/gets.c (gets): fixed the return value.
11628
11629 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11630         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11631
11632         * 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.
11633
11634         * 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.
11635
11636         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11637
11638         * src/pic/gen.c: Removed Safe_strdup.
11639
11640         * configure.in: Added option to enable libgc support.
11641
11642         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11643         (bitVectUnion): Optimised.
11644         (bitVectIntersect): Optimised.
11645         (bitVectBitsInCommon): Optimised.
11646         (bitVectCplAnd): Optimised.
11647
11648         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11649
11650 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11651
11652         * src/SDCCmain.c: distinguish between assembler debug and plain options
11653
11654         * src/avr/main.c:   remove standard assembler options
11655
11656         * src/ds390/main.c: remove standard assembler options
11657
11658         * src/mcs51/main.c: remove standard assembler options
11659
11660         * src/port.h: removed "PENDING" comment
11661
11662 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11663
11664         * src/device/lib/_mulint.c  : new, with assember functions
11665
11666         * src/device/lib/_mullong.c : new, with assember functions
11667
11668         * src/device/lib/_divuint.c : with assember functions
11669
11670         * src/device/lib/_divsint.c : with assember functions
11671
11672         * src/device/lib/_divulong.c: with assember functions
11673
11674         * src/device/lib/_divslong.c: with assember functions
11675
11676         * src/device/lib/_moduint.c : with assember functions
11677
11678         * src/device/lib/_modsint.c : with assember functions
11679
11680         * src/device/lib/_modulong.c: with assember functions
11681
11682         * src/device/lib/_modslong.c: with assember functions
11683
11684         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11685
11686         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11687
11688         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11689                                       replaced _mululong.c and _mulslong.c by _mullong.c
11690
11691 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11692
11693         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11694
11695 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11696
11697         * src/SDCCglue.c: test, if win32api is available for MINGW
11698
11699 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11700
11701         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11702         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11703         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11704         * support/regression/ports/host/spec.mk: removed GENERIC
11705         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11706         * support/regression/ports/z80/spec.mk: removed GENERIC
11707
11708 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11709
11710         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11711
11712         * support/regression/tests/bug-467035.c: Created.
11713
11714 2001-10-01    <johan AT FRIJA>
11715
11716         * src/SDCC.y: fixed bug #466586 part 1
11717
11718 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11719
11720         * SDCCicode.c: z80 has no generic pointers
11721         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11722
11723 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11724
11725         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11726
11727 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11728
11729         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11730
11731         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11732
11733 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11734
11735         * configure.in: Fixed up so that ucsim is only configured once.
11736
11737         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11738
11739         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11740         (getPathDifference): As above.
11741
11742         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11743
11744         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11745
11746 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11747         * .version: Updated to 2.3.1
11748
11749         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11750         Added copyright header.
11751
11752         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11753         (assemble): Added support for macro based assembler commands.
11754         (linkEdit): Added support for macro based linker commands.
11755         (preProcess): Changed the pre-processor to use macros.
11756         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11757         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11758
11759         * device/lib/z80/crt0.s: Added module name for debugging.
11760
11761 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11762
11763         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11764
11765         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11766
11767         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11768
11769         * src/Makefile.in: Added SDCCmacro and SDCCutil
11770
11771 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11772
11773         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11774
11775 2001-09-16    <johan AT FRIJA>
11776
11777         * 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.
11778
11779 2001-09-15    <johan AT FRIJA>
11780
11781         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11782         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11783
11784 2001-09-11    <johan AT FRIJA>
11785
11786         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11787
11788 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11789
11790         * support/regression/tests/bug-460444.c: Added test case.
11791
11792         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11793         (genCast): Added justification for all of the asserts.
11794
11795 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11796
11797         * support/regression/support.c: _xdata replaced by xdata
11798
11799         * support/regression/spec.mk: removed _generic
11800
11801 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11802
11803         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11804
11805         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11806         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11807
11808         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11809
11810         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11811
11812         * support/regression/tests/bug-460010.c: Added test case.
11813
11814         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11815
11816 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11817
11818         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11819
11820         * support/regression/testfwk.c: removed workaround for bug #436344
11821
11822         * support/regression/tests/bp.c: use less memory with mcs51
11823
11824         * support/regression/tests/bug-441448.c: use less memory
11825
11826         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11827
11828         * support/regression/collate-results.py: typo
11829
11830 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11831
11832         * support/regression/tests/fetchoverlap.c: Added new test case.
11833
11834         * support/regression/tests/bp.c: Added new test case.
11835
11836         * support/regression/tests/bug-448984.c: Added new test case.
11837
11838         * support/regression/tests/pow2shifts.c: Added new test case.
11839
11840         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11841         (genlshTwo): Fixed right shift for count > 8.
11842
11843         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11844
11845 2001-09-08    <johan AT FRIJA>
11846
11847         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11848
11849 2001-09-07    <johan AT FRIJA>
11850
11851         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11852
11853         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11854
11855 2001-09-06    <johan AT FRIJA>
11856
11857         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11858         * bernhard noted me at this: "() equals to (void)" (1.38)
11859
11860 2001-09-05    <johan AT FRIJA>
11861
11862         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
11863
11864 2001-09-04    <johan AT FRIJA>
11865
11866         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
11867
11868
11869 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
11870
11871         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
11872
11873 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
11874
11875         * link/z80/aslink.h: Fixed path for PATH_MAX
11876
11877 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
11878
11879         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
11880
11881         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
11882
11883         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
11884
11885         * 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.
11886
11887 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
11888
11889         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
11890         (genCmp): Fixed up genCmp for the GB with longs.
11891
11892         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
11893
11894         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
11895
11896         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
11897
11898         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
11899
11900 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
11901
11902         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
11903
11904 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
11905
11906         * 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.
11907
11908         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
11909
11910 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
11911
11912         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
11913
11914         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
11915
11916 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
11917
11918   * sim/ucsim/configure:    little improvement of Cygwin-detection
11919   * sim/ucsim/configure.in: little improvement of Cygwin-detection
11920   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
11921   * support/regression/tests/bug-221100.c: small changes for mcs51
11922   * support/regression/tests/bug-221168.c: small changes for mcs51
11923   * support/regression/tests/bug-227710.c: small changes for mcs51
11924   * support/regression/tests/staticinit.c: small changes for mcs51
11925   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
11926   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11927   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
11928
11929 $Revision$