* src/z80/gen.c (aopPut): fixed bug !*ixy should be !*iyx,
[fw/sdcc] / ChangeLog
1 2006-08-07 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/z80/gen.c (aopPut): fixed bug !*ixy should be !*iyx,
4           (shiftIntoPair): added case 2 for PAIR_IY,
5           (setupToPreserveCarry): replaced parameters with iCode and check if
6            PAIR_DE is in use to fix bug 1399290,
7           (genPlus, genMinus): updated call to setupToPreserveCarry
8         * support/regression/tests/bug1399290.c: new
9
10 2006-08-06 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * device/lib/Makefile.in (Z80SOURCES): enabled float support
13         * sim/ucsim/z80.src/inst.cc (inst_rst): generate breakpoint on RST8,ACC==0
14         * src/ds390/gen.c (shiftRLong),
15         * src/hc08/gen.c (shiftLLong, shiftRLong): fixed bug 1533966
16         * src/mcs51/gen.c (sameReg): changed to sameByte,
17           (xch_a_aopGet): new,
18           (shiftL2Left2Result, shiftR2Left2Result, shiftRLeftOrResult, shiftLLong,
19            shiftRLong): fixed bug 1533966
20         * src/z80/gen.c (shiftR2Left2Result, shiftL2Left2Result, genlshTwo,
21           genLeftShiftLiteral, genrshTwo, genRightShiftLiteral): fixed bug 1533966
22         * support/regression/Makefile.in: disabled z80, enabled ucz80
23         * support/regression/tests/float_trans.c: enabled test for z80 and host
24         * support/regression/tests/shifts2.c: new, for testing bug 1533966
25
26 2006-08-01 Borut Razem <borut.razem AT siol.net>
27
28         * src/mcs51/gen.c, src/dc390/gen.c: fixed warning:
29           comparison is always false due to limited range of data type
30           on PPC64 machine (openpower-linux1) where "char = unsigned char"
31
32 2006-08-01 Maarten Brock <sourceforge.brock AT dse.nl>
33
34         * sim/ucsim/hc08.src/hc08mac.h: removed faulty and unused add_u16_disp
35         * sim/ucsim/hc08.src/hc08.cc: removed faulty and unused int8
36         * sim/ucsim/z80.src/z80mac.h (add_u16_disp): use explicit signed char cast
37         * sim/ucsim/z80.src/z80.cc: removed faulty and unused int8
38
39 2006-07-31 Borut Razem <borut.razem AT siol.net>
40
41         * sim/ucsim/configure, sim/ucsim/cmd.src/newcmdcl.h,
42           sim/ucsim/cmd.src/newcmd.cc, sim/ucsim/cmd.src/cmdutil.cc,
43           sim/ucsim/z80.src/Makefile.in, sim/ucsim/configure.in,
44           sim/ucsim/hc08.src/Makefile.in, sim/ucsim/hc08.src/hc08.cc,
45           sim/ucsim/ddconfig_in.h, sim/ucsim/s51.src/Makefile.in,
46           sim/ucsim/s51.src/uc51cl.h, sim/ucsim/s51.src/serialcl.h,
47           sim/ucsim/s51.src/uc51.cc, sim/ucsim/s51.src/serial.cc,
48           sim/ucsim/app.cc, sim/ucsim/avr.src/Makefile.in:
49           enable ucsim mingw compilation. Serial port is disabled,
50           since it uses termios.h API, which is not available on native
51           WIN32
52
53 2006-07-31 Borut Razem <borut.razem AT siol.net>
54
55         * Small Device C Compiler 2.6.0 released
56         * support/scripts/sdcc.nsi: added FULL_DOC option
57         * .version, doc/sdccman.lyx: changed sdcc version to 2.6.1
58
59 2006-07-28 Borut Razem <borut.razem AT siol.net>
60
61         * support/scripts/sdcc.nsi: remove $INSTDIR/include/asm/pic16/*.h
62         * doc/INSTALL.txt: updated
63
64 2006-07-27 Borut Razem <borut.razem AT siol.net>
65
66         * device/lib/pic/Makefile.in, device/lib/pic/Makefile.subdir,
67           device/lib/pic/libdev/Makefile.in: fixed bug
68           [ 1438354 ] pic libsdcc: distclean doesn't work
69         * device/lib/pic16/Makefile.in, device/lib/pic16/Makefile.subdir,
70           device/lib/pic16/libio/Makefile.in: fixed bug
71           [ 1438344 ] pic16 lib: clean doesn't work properly
72         * doc/knownbugs.html removed [ 1438354 ] and [ 1438344 ] from the list
73
74 2006-07-26 Maarten Brock <sourceforge.brock AT dse.nl>
75
76         * device/lib/pic/libsdcc/fsdiv.c,
77         * device/lib/pic/libsdcc/fsmul.c,
78         * device/lib/pic16/libsdcc/float/fsdiv.c,
79         * device/lib/pic16/libsdcc/float/fsmul.c,
80         * device/lib/_fsdiv.c,
81         * device/lib/_fsmul.c: bugfix, handle too large and too small numbers
82         * support/regression/tests/bug1520966.c: added
83         * doc/knownbugs.html: removed [ 1520966 ] from the list
84
85 2006-07-25 Borut Razem <borut.razem AT siol.net>
86
87         * configure.in, configure, sdccconf_in.h: fixed bug
88           [ 1519095 ] regression test onebyte.c fails on ppc64 host
89         * doc/knownbugs.html: removed [ 1519095 ] from the list
90
91 2006-07-25 Maarten Brock <sourceforge.brock AT dse.nl>
92
93         * doc/knownbugs.html: added, contains list of known bugs at release
94         * device/include/mcs51/compiler.h: fixed SFR32 for SDCC
95
96 2006-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
97
98         * device/include/mcs51/compiler.h: added SFRX for xdata based special
99           function registers and corrected defaults with additional warning
100         * device/lib/malloc.c: cosmetic changes
101         * device/lib/realloc.c: bugfix for bug #1496907, Thanks Efim Monyak
102         * src/ds390/ralloc.c (getRegBitNoSpil): reenabled,
103           (fillGaps): and used it
104
105 2006-07-20 Raphael Neider <rneider AT web.de>
106
107         * src/pic/device.c (addMemRange,assignRegister): suppress verbose
108           output unless SDCCPICDEBUG is set
109         * device/lib/pic16/Makefile.rules (%.lib target): suppress verbose
110           output if SILENT is set
111
112 2006-07-11 Borut Razem <borut.razem AT siol.net>
113
114         * doc/README.txt: updated
115
116 2006-07-10 Borut Razem <borut.razem AT siol.net>
117
118         * support/scripts/sdcc.nsi: added device/include/asm/pic/features.h and
119           device/lib/src/pic/libm/*.c and device/lib/src/pic16/libsdcc/stack/*.S
120           in WIN32 installation
121         * .version, sdcc.spec, doc/sdccman.lyx: changed sdcc version to 2.6.0 -
122           release candidate 1
123
124 2006-07-08 Maarten Brock <sourceforge.brock AT dse.nl>
125
126         * device/include/mcs51/XC866.h: added sbit definitions for Px_x, P1_x, P2_x
127         * src/pic16/glue.c (initPointer): fixed bug 1496419 for pic16
128
129 2006-07-06 Maarten Brock <sourceforge.brock AT dse.nl>
130
131         * src/hc08/gen.c (genAddrOf): fixed bug when offset on stack is >127
132
133 2006-07-06 Borut Razem <borut.razem AT siol.net>
134
135         * support/regression/tests/bitfields.c:
136           fixed bug [ 1518322 ] regression test bitfields fails on ppc hosts
137         * support/regression/tests/constantRange.c:
138           fixed bug [ 1518317 ] regression test constantRange fails on alpha host
139
140 2006-07-04 Borut Razem <borut.razem AT siol.net>
141
142         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in,
143           src/port.mk,
144           src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
145           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
146           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
147           reverted changes from 2006-07-03
148         * Makefile.common.in: added @CPPFLAGS@ to CPPFLAGS
149         * support/regression/Makefile.in, support/regression/ports/host/spec.mk:
150           added CPPFLAGS, used by the host port
151
152 2006-07-03 Bernhard Held <bernhard AT bernhardheld.de>
153
154         * support/regression/valdiag/tests/switch.c,
155         * support/regression/valdiag/tests/constantRange.c: adapted to gcc 4
156         * support/regression/tests/libmullong.c: fixed for host
157         * support/regression/ports/host/spec.mk: disable all warnings for host,
158         SDCC runs with --less-pedantic too
159
160 2006-07-03 Borut Razem <borut.razem AT siol.net>
161
162         * src/configure.in, src/configure, src/Makefile.in, as/z80/Makefile.in:
163           defined CPPFLAGS
164         * src/port.mk: defined CPPFLAGS, renamed to src/port.mk.in
165         * src/avr/Makefile.in, src/ds390/Makefile.in, src/ds400/Makefile.in,
166           src/hc08/Makefile.in, src/mcs51/Makefile.in, src/pic16/Makefile.in,
167           src/pic/Makefile.in, src/xa51/Makefile.in, src/z80/Makefile.in:
168           include ../port.mk
169         * sim/ucsim/main_in.mk, sim/ucsim/avr.src/Makefile.in,
170           sim/ucsim/gui.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
171           sim/ucsim/s52.src/Makefile.in, sim/ucsim/sim.src/Makefile.in,
172           sim/ucsim/xa.src/Makefile.in: ignore header files for dependencies
173
174 2006-07-02 Raphael Neider <rneider AT web.de>
175
176         * src/pic16/devices.inc,
177         * device/include/pic16/pic18fregs.h,
178         * device/include/pic16/pic18f4550.h,
179         * device/lib/pic16/pics.all,
180         * device/lib/pic16/libdev/pic18f4550.c: added support for 18f4550
181
182 2006-07-01 Bernhard Held <bernhard AT bernhardheld.de>
183
184         * as/hc08/lkaomf51.c (OutputName),
185         * as/mcs51/lkaomf51.c (OutputName),
186         * as/z80/asmain.c (asmbl),
187         * src/ds390/main.c (asmLineNodeFromLineNode),
188         * src/hc08/ralloc.c (hc08_assignRegisters),
189         * src/mcs51/main.c (asmLineNodeFromLineNode),
190         * src/xa51/ralloc.c (checkRegMask),
191         * src/xa51/gen.c (emitcode),
192         * src/z80/gen.c (_emit2),
193         * src/SDCCast.c (searchLitOp),
194         * src/SDCCglobl.h,
195         * support/packihx/packihx.c,
196         * support/Util/MySystem.c (split_command): fix gcc 4 warnings
197         * src/ds390/gen.c (aopPutUsesAcc),
198         * src/ds390/ralloc.c (getRegBitNoSpil): unused, therefore disabled
199         * support/regression/tests/libmullong.c (mullong_wrapper),
200         * src/SDCCsymt.c (powof2),
201         * src/SDCCast.c,
202         * src/SDCCicode.c: renamed TYPE_WORD by TYPE_TARGET_INT and so on
203         * src/SDCCsymt.h: added TYPE_TARGET_*
204         * src/SDCCutil.c (doubleFromFixed16x16, fixed16x16FromDouble),
205         * src/SDCCutil.h (doubleFromFixed16x16, fixed16x16FromDouble): moved to
206         SDCCast because 1) header problems 2) this is the right place
207         * src/SDCCast.c (doubleFromFixed16x16, fixed16x16FromDouble): added
208         * src/SDCCval.h (doubleFromFixed16x16, fixed16x16FromDouble): added
209         prototype
210
211 2006-06-29 Bernhard Held <bernhard AT bernhardheld.de>
212
213         * src/SDCCicode.h: removed buggy semicolon in unused macro
214         * src/SDCClrange.c (findPrevUseSym, rlivePoint): fixed bug #1486853,
215         search for previous definiton of auto symbols too,
216         (findPrevUse): fixed logic of emitWarnings
217
218 2006-06-26 Raphael Neider <rneider AT web.de>
219
220         * src/pic16/gen.c (genFunction, genEndFunction): also preserve
221           PCLATH and PCLATU on interrupts, potentially fixes #1505141
222
223 2006-06-25 Raphael Neider <rneider AT web.de>
224
225         * device/lib/pic/libm: NEW, added math library functions
226         * device/lib/pic/libsdcc: NEW; added float support functions
227         * device/lib/pic/{Makefile.in,configure.in,configure}: added libm/
228         * device/include/pic/{limits.h,errno.h,sdcc-lib.h,float.h,math.h}:
229           NEW, added math related headers
230         * device/include/asm/pic/features.h: NEW
231         * src/pic/gen.c (emitpcode_real): emit warning on NULL pCodeOp,
232           (popGet): allow larger offsets for AOP_PCODE,
233           (genDataPointerSet): handle literals explicitly, more debug output,
234           (genAssign): fixed for float using aopLiteral ;-)
235         * src/pic/glue.c (pic14createInterruptVect): inserted pagesel before
236           GOTO initialisation routine
237         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): set wasUsed
238           flag on registers, fixes #1469043 (local variables do not work)
239         * src/pic/main.c (_pic14_do_link),
240         * src/pic16/main.c (_pic16_linkEdit): use fullDstFileName if
241           available
242
243 2006-06-25 Borut Razem <borut.razem AT siol.net>
244
245         * device/lib/pic16/libc/stdio/sprintf.c: return the number of
246           characters printed (not including the trailing '\0' used to end
247           output to strings). Problem detected in regression test bug-927659.c.
248           NOTE: printf() family functions should return int instead
249           unsigned int!
250         * device/lib/pic16/libc/stdio/vfprintf.c: "%%" prints "%", unknown
251           specifier are printed as themselves
252         * sdcc/support/regression/tests/bug1057979.c: pic16 printf doesn't
253           support flags, width and precision specifiers
254
255 2006-06-24 Borut Razem <borut.razem AT siol.net>
256
257         * sdcc/support/regression/tests/bitvars.c: added gbz80, pic16 and pic16
258           to the list of sdcc tagrets not supporting bit type
259         * sdcc/support/regression/tests/bug-905992.c.c: excluded regression
260           testfor pic16 due to bug:
261           [ 1511794 ] pic16: regression test bug-895992.c fails
262
263 2006-06-24 Maarten Brock <sourceforge.brock AT dse.nl>
264
265         * src/mcs51/gen.c (genCmp): optimization for RFE 1162453
266         * src/SDCCglue.c (initPointer), fixed bug 1496419
267         * support/regression/tests/bug1496419.c: new, added
268
269 2006-06-22 Borut Razem <borut.razem AT siol.net>
270
271         * support/regression/ports/pic16/support.c: use gpsim usart module from
272           libgpsim_modules library
273
274 2006-06-21 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
275
276         * device/include/mcs51/at89c51ed2.h: Fixed bug 1510144 changed
277         IP0H to IPH0.
278
279 2006-06-19 Raphael Neider <rneider AT web.de>
280
281         * src/pic/glue.h,src/pic16/glue.h: added prototypes
282         * src/pic/glue.c,src/pic16/glue.c (pic1x_stringInSet,
283           pic1x_emitSymbolIfNew): NEW, check for a string in a set,
284           (pic14printExterns,pic14printPublics,pic16printPublics,
285           pic16_printExterns): use new functions to emit symbols
286           (picglue,pic16glue): emit publics before emitting externs
287         * src/pic/gen.c,src/pic16/gen.c (genFunction): remember the names of
288           locally defined functions to avoid bug #1443651
289         * support/regression/tests/bug-716242.c: removed pic16 workaround
290         * support/regression/ports/pic16/spec.mk: ignore errors during build
291
292 2006-06-19 Raphael Neider <rneider AT web.de>
293
294         * src/pic/glue.h: added pic14aopLiteral prototype
295         * src/pic/glue.c (pic14aopLiteral): return unsigned int
296         * src/pic/gen.c: removed stdint.h dependency
297           (aopGet): use Safe_strdup()
298           (bitpatternFromVal): removed, replaced use with pic14aopLiteral
299           (genDataPointerSet): use pic14aopLiteral()
300         * src/pic16/glue.h, src/pic16/glue.c, src/pic16/gen.c: similar changes
301           for pic16; thanks to Bernhard and Maarten
302
303 2006-06-18 Borut Razem <borut.razem AT siol.net>
304
305         * support/regression/tests/structflexarray.c: flexible array members
306           not supported by gcc < 3
307         * sim/ucsim/configure, sim/ucsim/configure.in: do not compile serio
308           GUI tool by default
309         * src/pic/gen.c: don't include [p]strdin.h on solaris
310         * support/Util/pstdint.h: addad svn attributes
311         * support/regression/tests/constantRange.c,
312           support/regression/tests/rotate.c: include inttypes.h instead
313           stdint.h on solaris, addad svn attributes
314
315 2006-06-18 Raphael Neider <rneider AT web.de>
316
317         * src/SDCCsymt.c (initCSupport): change return type of divschar to
318           int for PIC16
319         * src/pic16/genarith.c (genAddLit): sign-extend via standard routine
320           (pic16_genMinusBits): simplified sign-extension
321           (pic16_genUMult8XLit_8,pic16_genUMult8X8_8): renamed to
322             pic16_genMult8XLit_n resp. pic16_genMult8X8_n, fixed and
323             adjusted to correctly handle mixed-signed operands, disabled
324             now unused multiplciation routines
325         * src/pic16/gen.c (pic16_pushpCodeOp): fixed to handle literals
326           (assignResultValue): added argument denoting the size of the result
327             as returned by the function (fixes upcasts in assigning from
328             function calls: char foo(); int i = foo();)
329           (genCall,genPcall,genGenPointerGet,genReceive): pass size of
330             function result to assignResultValue
331           (genMult): disabled inlined multiplication code
332           (genDiv): augmented to also handle the modulus operator, fixed to
333             handle mixed-signed operands correctly
334           (genMod): simply call genDiv, disabled unused code
335           (genAssign): fixed missing (sign-)extension on result
336         * src/pic16/main.c (_hasNativeMulFor): accept literals [-128..256) as
337             valid char operands, allow signed operands for native code, added
338             division and modulo operator handling
339         * device/lib/pic16/libsdcc/char/divschar.c: divschar returns an int
340
341         As a consequence, onebyte.c (if split into two files) and muldiv.c
342         pass regression tests.
343
344 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
345
346         * doc/Makefile.in: two runs of makeindex seem needed to get
347         correct page references in the index of sdccman.pdf
348         * doc/sdccman.lyx: mentioned cmon51, added links, small changes
349
350 2006-06-17 Borut Razem <borut.razem AT siol.net>
351
352         * sdcc/device/lib/Makefile.in: corrected PORTINCDIR path
353
354 2006-06-17 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
355
356         * doc/sdccman.lyx: updated, added (porting source code, debugging),
357         mentioned ec2drv and paulmon
358
359 2006-06-16 Maarten Brock <sourceforge.brock AT dse.nl>
360
361         * as/mcs51/lkarea.c (lnkarea2): clear new xdatamap, bugfix for two
362           consecutive abs areas
363           (find_empty_space, allocate_space): added map to handle codemap or
364            xdatamap,
365           (lnksect2): renamed rloc to locIndex, fixed bug 960060 by handling
366            absolute idata and xdata
367         * as/mcs51/lkmem.c (summary2): updated legend
368
369 2006-06-16 Raphael Neider <rneider AT web.de>
370
371         * src/pic16/gen.c (shiftR2Left2Result): fixed bug #1507127
372
373 2006-06-13 Maarten Brock <sourceforge.brock AT dse.nl>
374
375         * debugger/mcs51/cmd.c (cmdListFunctions): fixed bugs 1181163 and
376           1208515
377         * src/SDCClrange.c (findPrevUse): fixed bug 1294475
378
379 2006-06-13 Vangelis Rokas <vrokas AT users.sourceforge.net>
380
381         * src/port.h (struct PORT): added field gp_tags, to hold the tag
382         value of generic pointers,
383         * src/avr/main.c,
384           src/ds390/main.c,
385           src/hc08/main.c,
386           src/izt/i186.c,
387           src/izt/tlcs900h.c,
388           src/mcs51/main.c,
389           src/pic/main.c,
390           src/pic16/main.c,
391           src/xa51/main.c,
392           src/z80/main.c: PORT structure, added elements for gp_tags field,
393         * src/SDCCsymt.h: replaced hardwired values of GPTYPE_* macros with
394         fields in the PORT structure of each port,
395         * src/SDCCast.c (decorateType): allow processing of generic pointers
396         for PIC16 port (FPTRSIZE equals GPTRSIZE), also set GPTYPE_NEAR for
397         S_FIXED symbols
398
399 2006-06-12 Maarten Brock <sourceforge.brock AT dse.nl>
400
401         * link/z80/lkgb.c,
402         * link/z80/lkgg.c,
403         * src/pic16/gen.c,
404         * src/pic16/main.c,
405         * src/pic16/pcode.c,
406         * src/pic/main.c,
407         * src/pic/pcoderegs.c,
408         * src/SDCCicode.c,
409         * src/SDCCmain.c,
410         * src/SDCCsymt.c: replaced all exit(-1) by exit(EXIT_FAILURE) to fix
411           bug 1504689 on minGW
412
413 2006-06-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
414
415         * device/lib/printf_tiny.c: fixed bug #1465675 (%x format specifier)
416
417 2006-06-12 Bernhard Held <bernhard AT bernhardheld.de>
418
419         * src/SDCCast.c (backPatchLabels): fixed bug #1504636
420
421 2006-06-11 Maarten Brock <sourceforge.brock AT dse.nl>
422
423         * device/lib/printf_large.c (OUTPUT_CHAR, _output_char): added and used
424           for optimization
425
426 2006-06-11 Vangelis Rokas <vrokas AT users.sourceforge.net>
427
428         * src/pic16/gen.c (genCast): fixed bug with assignment of a pointer
429         to a char variable. Fixed bug #1504211
430         * device/include/pic16/adc.h,
431         device/include/lib/pic16/libio/adc/adcopen.c: applied patch #1364387
432         and fixed bug #1364390
433
434 2006-06-10 Borut Razem <borut.razem AT siol.net>
435
436         * CVSROOT: removed the CVS left-over
437
438 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
439
440         * as/hc08/asmain.c (asexit),
441         * as/hc08/lkmain.c (lkexit),
442         * as/mcs51/asmain.c (asexit),
443         * as/mcs51/lkmain.c (lkexit),
444         * src/SDCCglue.c (DEFSETFUNC),
445         * src/SDCCmain.c (linkEdit, assemble),
446         * support/librarian/sdcclib.c (AddRel),
447           replaced unlink() by standard C remove()
448         * src/SDCC.y: replaced removePostIncDecOps() by createRMW()
449         * src/SDCCast.c (replaceAstWithTemporary, createRMW,
450           gatherImplicitVariables): new, added to fix bug 608752,
451           (createFunction): added gatherImplicitVariables()
452         * src/SDCCast.h: added createRMW prototype
453         * src/SDCCsymt.h (struct symbol): added infertype
454         * support/regression/tests/bug608752.c: new, added
455
456 2006-06-10 Raphael Neider <rneider AT web.de>
457
458         * src/pic16/gen.c (pic16_aopOp): use WREG as destination even for
459           multibyte dummy reads (fixes #1503234)
460
461 2006-06-10 Maarten Brock <sourceforge.brock AT dse.nl>
462
463         * device/include/mcs51/compiler.h: new, added header file to enable
464           creating common sfr definition header files for different compilers
465
466 2006-06-05 Raphael Neider <rneider AT web.de>
467
468         * src/pic16/{pcode.h,genarith.c}:
469           introduced pCodeOp combining any two pCodeOps (previously only
470           two register operands could be combined), removed pcop2 from
471           pCodepReg, replaced pCodeOpReg2 with pCodeOp2, fixes #1492366
472         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): added case for PO_TWO_OPS
473         * src/pic16/gen.c (pic16_popGet2,pic16_popGet2p,pic16_popCombine2):
474           rewritten to use new PO_TWO_OPS
475         * src/pic16/main.c (_hasNativeMulFor): cover more cases natively,
476         * src/pic16/pcode.c (pic16_newpCodeOpImmd): initialize rIdx field,
477           (pic16_newpCodeOp): catch invalid attempts on PO_TWO_OPS,
478           (pic16_newpCodeOp2): NEW, create combined pCodeOp,
479           (pic16_get_op): embraced return arg to allow #define return(x),
480             added new case for combined opcodes
481           (pic16_get_op2): reduced to use pic16_get_op() on second pCodeOp,
482           (pic16_pCode2str,pic16_getRegFrompCodeOp,
483            pic16_getRegFromInstruction2): fixed/added handling of new pCodeOp
484
485 2006-06-04 Bernhard Held <bernhard AT bernhardheld.de>
486
487         * src/SDCCval.c (checkConstantRange): added
488         * src/SDCCval.h: added checkConstantRange
489         * support/Util/SDCCerr.c,
490         * support/Util/SDCCerr.h: replaced unused W_IF_NEVER_TRUE and
491         W_IF_ALWAYS_TRUE by W_COMP_RANGE and W_LIT_OVERFLOW
492         * src/SDCC.y: moved early 'condition transformations' to SDCCast.c
493         * src/SDCCast.c (decorateType): added checkConstantRange,
494         added 'condition transformations' from SDCC.y so that now W_COMP_RANGE
495         can be emitted with the correct always true/false warning,
496         added optimization for double '!';
497         result of decorateType() must be assigned back to the tree, because
498         decorateType() can change the tree
499         * src/SDCCicode.c (geniCodeLogic),
500         (geniCodeAssign): replaced new checkConstantRange, added warnings,
501         (checkConstantRange): removed, it was only a fragment which never
502         emitted a warning
503         * src/SDCCsymt.c (computeType): fixed promotion for
504         "-1 < (unsigned bit) b"
505         * src/pic/ralloc.c (packRegsForAssign),
506         * src/pic16/ralloc.c (packRegsForAssign),
507         * src/hc08/ralloc.c (packRegsForAssign),
508         * src/z80/ralloc.c (packRegsForAssign): ported fix for bug #930931
509         from mcs51
510         * src/mcs51/ralloc.c (packRegsForAssign): removed outcommented source
511         * support/regression/tests/constantRange.c: added
512         * support/valdiag/tests/constantRange.c: added
513         * support/valdiag/valdiag.py: added -DPORT_HOST=1
514
515 2006-06-02 Borut Razem <borut.razem AT siol.net>
516
517         * support/regression/ports/pic16/support.c: increase stack size
518           to 255 bytes
519         * support/regression/Makefile.in: sort tests by name so that the
520           resutlts can be compared on different machines / platforms
521
522 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
523
524         * device/lib/printf_large.c (output_digit): optimized further, Tnx Frieder
525         * src/ds390/gen.c (emitLabel): new, added,
526           (genDjnz): fixed stack overflow bug,
527           (throughout): cosmetic changes to sync with mcs51/gen.c,
528           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl)
529         * src/mcs51/gen.c (genEndFunction): small optimization,
530           (throughout): cosmetic changes to sync with ds390/gen.c
531
532 2006-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
533
534         * device/lib/printf_large.c (output_digit, calculate_digit): optimized,
535           (_print_format): fixed printing pointers
536         * src/mcs51/gen.c (emitLabel, movb): new, added,
537           (genAssign): small optimization,
538           (genDjnz): fixed stack overflow bug,
539           (throughout): replaced sprintf with SNPRINTF,
540           replaced mcs51_regWithIdx with REG_WITH_INDEX,
541           replaced emitcode("mov", "b,...") with MOVB(...),
542           replaced emitcode("", "%05d$:", lbl->key + 100) with emitLabel(lbl),
543           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
544         * src/mcs51/peeph.def: added rules 140 and 264
545         * src/SDCCmem.c (allocLocal): store register declared locals in DSEG/OSEG
546           so they may get optimized into registers
547
548 2006-05-30 Maarten Brock <sourceforge.brock AT dse.nl>
549
550         * src/SDCCmain.c (optionsTable, parseCmdLine): handle --use-stdout
551           immediately when encountered,
552           (printUsage): always use stderr even on windows
553
554 2006-05-30 Bernhard Held <bernhard AT bernhardheld.de>
555
556         * src/SDCCast.c (isLoopCountable): fixed bug #1478316
557         (processParms): fixed bug #1247551
558         * src/SDCCmain.c (printVersionInfo, printOptions, printUsage,
559         parseCmdLine, main): print '--version' to stdout,
560         print 'help' to stdout if --help is given,
561         print 'help' to stderr and exit with EXIT_FAILURE if no or bad
562         arguments are given; fixed --help
563
564 2006-05-27 Bernhard Held <bernhard AT bernhardheld.de>
565
566         * src/SDCCcse.c (findPointerSet): fixed bug #1493710
567         * support/regression/tests/bug-1493710.c: added
568
569 2006-05-27 Borut Razem <borut.razem AT siol.net>
570
571         * support/regression/fwk/lib/testfwk.c: define array in _printn() as
572           static instead auto
573         * support/regression/ports/pic16/support.c: increase stack size
574           from default 64 bytes to 128 bytes
575         * support/regression/tests/staticinit.c,
576           support/regression/tests/float.c: regression tests fully enabled
577           for pic16 port by putting the initialized data arrays into the code
578           section
579         * support/regression/ports/pic16/spec.mk: don't link default libraries.
580           This was changed by mistake in the previous version.
581
582 2006-05-28 Vangelis Rokas <vrokas AT users.sourceforge.net>
583
584         * src/pic16/gen.c (genFunction, genEndFunction): some
585         beautifications, fixed bug with falsely restoring FSR2 in large
586         stack model, thanks to Beau E. Cox for reporting the bug
587
588 2006-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
589
590         * debugger/mcs51/break.c,
591         * debugger/mcs51/cmd.c (throughout): removed unused variables and labels,
592           use %p to print pointers, made address variables unsigned
593         * debugger/mcs51/cmd.c (infoSymbols): added missing parameter to printf
594         * debugger/mcs51/symtab.c (parseSymbol): must return something
595         * src/mcs51/gen.c (aopForSym): small optimization,
596            moved declarations mcs51_ptrRegReq and mcs51_nRegs to ralloc.h,
597           (freeAsmop): added missing break,
598           (aopPut): removed parameter bvolatile, determine it inside the function,
599           (saveRegisters, unsaveRegisters): small optimization,
600           (genIpush): removed pointless check,
601           (throughout): replaced Safe_calloc, strcpy with Safe_strdup,
602           replaced sprintf with SNPRINTF,
603           replaced strcpy with strncpyz,
604           updated aopPut calls,
605           replaced D(emitcode("; genXXX", "")) with D(emitcode(";", "genXXX"))
606         * src/mcs51/ralloc.h:  added declarations mcs51_ptrRegReq and mcs51_nRegs
607
608 2006-05-24 Borut Razem <borut.razem AT siol.net>
609
610         * support/regression/tests/bug-221100.c: fixed xdata problem caused by
611           modification of test for the pic16 port, put the array to the code
612           memory for pic16port; thanks to Maarten Brock and Frieder Ferlemann
613
614 2006-05-23 Jesus Calvino-Fraga <jesusc at ece.ubc.ca>
615
616         * src/pic/gen.c: MSC 6 does not have <stdint.h>.  Use pstdint.h instead.
617         * support/Util/pstdint.h: added
618
619 2006-05-22 Borut Razem <borut.razem AT siol.net>
620
621         * src/regression/Makefile: removed bool2.c test, added -q linker option
622         * src/regression/add2.c, src/regression/add3.c, src/regression/bool1.c,
623           src/regression/bool3.c, src/regression/nestfor.c, src/regression/ptrfunc.c,
624           src/regression/compare.c, src/regression/or1.c, src/regression/compare2.c,
625           src/regression/while.c, src/regression/compare3.c, src/regression/compare4.c,
626           src/regression/compare5.c, src/regression/sub2.c, src/regression/rotate1.c,
627           src/regression/rotate2.c, src/regression/rotate3.c, src/regression/rotate4.c,
628           src/regression/switch1.c, src/regression/rotate5.c, src/regression/for.c,
629           src/regression/add.c, src/regression/sub.c, src/regression/call1.c:
630           define SUPPORT_BIT_TYPES 0, removed unused bit variables
631
632 2006-05-22 Raphael Neider <rneider AT web.de>
633
634         * src/pic16/gen.c (pic16_storeForReturn): fragile fix for
635           bug #1492360 (problematic due to generic pointers, see code)
636
637 2006-05-22 Borut Razem <borut.razem AT siol.net>
638
639         * support/regression/ports/pic16/specs.mk: removed stack size linker
640           directive
641         * support/regression/tests/array.c,
642           support/regression/tests/bitopcse.c,
643           support/regression/tests/bug-908454.c,
644           support/regression/tests/malloc.c: modified for pic16 regression test
645         * support/regression/tests/bitfields.c:
646           pic16 - excluded bitfileds of size > 8
647         * support/regression/tests/bp.c: pic16 - reduced data size
648         * support/regression/tests/bug-221100.c: pic16 - reduced data size
649         * support/regression/tests/bug-460010.c:
650           pic16 - used the absolute address the fits in memory
651         * support/regression/tests/bug-716242.c:
652           bug [ 1443651 ] pic 16: redefining symbol that cannot be redefined.
653         * support/regression/tests/float.c:
654           pic16 - excluded - data size too big
655         * support/regression/tests/onebyte.c:
656           pic16 - bug [ 1444425 ] onebyte.c regression tes fails on pic16
657         * support/regression/tests/shifts.c:
658           pic16 - function names probably have to differ in first X characters
659           (gpasm limitation?)
660         * support/regression/tests/staticinit.c:
661           pic16 - excluded some tests due error: no target memory available for
662           section ".idata"
663
664 2006-05-22 Borut Razem <borut.razem AT siol.net>
665
666         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
667           second try. Thanks Stas Sergeev once more.
668
669 2006-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
670
671         * src/hc08/gen.c (transferAopAop): aop forced to stack was not restored,
672           (genLeftShift, genRightShift): fixed bug 1491627
673         * src/hc08/peeph.def (rules 7, 8.x): added
674         * support/regression/tests/shifts.c (ShiftLeftByParam,
675           ShiftRightByParam, testShiftByParam): added to test variable shifting
676
677 2006-05-20 Raphael Neider <rneider AT web.de>
678
679         * src/pic/gen.c (bitpatternFromVal): fixed for 64-bit machines
680         * src/pic16/ralloc.c (newReg): use correct name in hashtable,
681           (allocReg): add only new registers to dynAllocRegs,
682           (pic16_assignRegisters): do not reset dynrIdx, fixes bugs
683             #1489055, #1445850, and probably #1483693
684
685 2006-05-19 Vangelis Rokas <vrokas AT users.sourceforge.net>
686
687         * src/pic16/glue.c (pic16_emitConfigRegs, pic16_emitIDRegs): fixed
688         bug in for-loop that didn't emit the last of CONFIG and ID registers
689
690 2006-05-18 Maarten Brock <sourceforge.brock AT dse.nl>
691
692         * src/mcs51/gen.c (genCodePointerGet): inc dptr instead of loading acc
693           with offset
694         * src/mcs51/peeph.def (186.x): updated and reenabled to fix bugs
695           1489016, 1434401 and 1490124
696         * src/ds390/peeph.def (186.x, 227.x): updated and reenabled to fix bugs
697           1489016, 1434401 and 1490124
698
699 2006-05-17 Borut Razem <borut.razem AT siol.net>
700
701         * support/Util/dbuf.c: fixed bug #1489008 fix dbuf_c_str(),
702           thanks Stas Sergeev
703
704 2006-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
705
706         * device/include/mcs51/P89c51RD2.h,
707         * device/include/mcs51/P89LPC901.h,
708         * device/include/mcs51/P89LPC922.h,
709         * device/include/mcs51/P89LPC932.h: added, thanks Omar Espinosa
710
711 2006-05-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
712
713         * device/lib/pic16/libsdcc/stack/{stack.S, Makefile.in}: add workaround
714         to fix missing stack pragma in compiled binary object file,
715
716 2006-05-14 Bernhard Held <bernhard AT bernhardheld.de>
717
718         * support/packihx/configure.in,
719         * support/packihx/configure: removed warning, autoconf >= 2.5x can
720         determine sizeof basic types even while cross compiling
721
722 2006-05-13 Bernhard Held <bernhard AT bernhardheld.de>
723
724         * src/avr/gen.c (aopop),
725         * src/ds390/gen.c (aopOp),
726         * src/hc08/gen.c (aopOp),
727         * src/mcs51/gen.c (aopop),
728         * src/pic16/gen.c (pic16_aopOp),
729         * src/pic/gen.c (aopOp),
730         * src/z80/gen.c (aopop): fix for bug #1479882; use new, exclusive asmop
731         if size of operand is smaller than spill location
732
733 2006-05-12 Borut Razem <borut.razem AT siol.net>
734
735         * *.dsw, *.dsp: changed property svn:eol-style to CRLF since they
736           have to have CR/LF line endings even if they are checked out on *nix
737           or on WIN32 in cygwin binmode
738
739 2006-05-12 Maarten Brock <sourceforge.brock AT dse.nl>
740
741         * doc/sdccman.lyx: documented numeric ranges, WEBDOC #1442369
742         * device/include/ds80c390.h: added sfr16 definitions
743         * src/ds390/gen.c,
744         * src/ds390/gen.h,
745         * src/ds390/main.c,
746         * src/ds390/ralloc.c,
747         * src/ds390/ralloc.h: changes all over the place to sync with mcs51
748           fixing several bugs and adding sfr16/sfr32, reentrant bit params,
749           bit returning functions
750         * support/regression/tests/sfr16.c: enabled test on ds390
751
752 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
753
754         * src/hc08/gen.c (asmopToBool, genIfx): fix for bug #1429722
755         * src/hc08/gen.c (storeRegToAop): fix for bug #1439894
756
757 2006-05-11 Maarten Brock <sourceforge.brock AT dse.nl>
758
759         * sim/ucsim/sim.src/memcl.h: added get_decoder() to cl_address_space
760         * sim/ucsim/sim.src/mem.cc: implemented cl_address_space::get_decoder,
761           (cl_address_space constructor): removed expensive initialization,
762           (cl_address_space::get_cell): extended for late initialization,
763           (cl_address_space::*): use late initialization,
764           (cl_address_decoder::activate): removed expensive initialization,
765           This reduced regression test running time by 25%
766
767 2006-05-11 Bernhard Held <bernhard AT bernhardheld.de>
768
769         * packihx/,
770         * configure.in,
771         * configure,
772         * sdcc.dsw,
773         * Makefile.bcc,
774         * Makefile.in,
775         * support/packihx/Makefile.in,
776         * support/packihx/clean.mk,
777         * support/packihx/Makefile.bcc,
778         * support/packihx/PackIhx.dsp: moved packihx to support/packihx
779
780 2006-05-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
781
782         * src/SDCCval.c (valNot): fix for regression test failure
783           of not.c on big endian hosts
784
785 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
786
787         * device/inlcude/mcs51/msc1210.h: new, added, thanks Philippe Latu
788
789 2006-05-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
790
791         * device/lib/mcs51/Makefile.in: changed string comparison operator
792           to = for POSIX compliance; == is bash extension
793
794 2006-05-10 Maarten Brock <sourceforge.brock AT dse.nl>
795
796         * device/lib/hc08/_mulint.c: applied patch 1485428, thanks
797           kosmonaut_pirx
798
799 2006-05-09 Vangelis Rokas <vrokas AT users.sourceforge.net>
800
801         * src/pic16/gen.c (pic16_freeAsmop): release any temp registers
802         allocated by aopForSym thus fixing bug #1478657 about failed testfwk.c
803         * src/pic16/main.c (_pic16_keywords): added 'sfr16' keyword,
804         * src/pic16/ralloc.c (pic16_allocWithIdx): also a fix for bug exposed by
805         bug report #1478657,
806
807 2006-05-05 Borut Razem <borut.razem AT siol.net>
808
809         * doc/Makefile.in: remove of WARNINGS and labels.pl immediately after
810           making the html
811
812 2006-05-02 Borut Razem <borut.razem AT siol.net>
813
814         * doc/Makefile.in: removed *.ind dependency since there is no rule to
815           create *.ind, which made make to fail if invoked with -j 2
816
817 2006-05-01 Maarten Brock <sourceforge.brock AT dse.nl>
818
819         * src/SDCCglue.c (emitRegularMap): partial fix for bug 1477149, thanks
820           Hubert Sack for patch 1479782
821
822 2006-05-01 Vangelis Rokas <vrokas AT users.sourceforge.net>
823
824         * src/pic16/glue.c (pic16_printIvalStruct): fixed bug #1445929
825
826 2006-05-01 Raphael Neider <rneider AT web.de>
827
828         * src/pic/device.c (sanitise_processor_name): only remove p(ic) prefix,
829           (create_pic): store only prefix-free device name,
830           (init_pic): check for device names with "16" prefix,
831           (list_valid_pics),
832         * src/pic/device.h (struct PIC_device),
833         * src/pic/main.c (_pic14_genAssemblerPreamble): adapted to single
834             stored device name,
835         * device/include/pic/pic12f{635,675,629,683}.h,
836         * device/lib/pic/libdev/pic12f{635,675,629,683}.c: NEW device libraries
837         * device/lib/pic/libdev/Makefile.in: allow pic12* devices,
838         * device/include/pic/pic16f505.h,
839         * device/lib/pic/libdev/pic16f505.c: removed
840         * device/include/pic/pic14devices.txt: added support for pic12f
841             devices, removed unsupported non 16-bit devices
842             [above changes provided by patch from Zik Saleeba]
843         * src/pic/*, src/pic16/*, device/include/pic16/*,
844           device/lib/pic/**, device/lib/pic16/**: obfuscated email address
845
846 2006-05-01 Borut Razem <borut.razem AT siol.net>
847
848         * configure.in, configure, doc/Makefile.in:
849           sync with nightly build makefile - latex, dvipdf and dvips
850           not needed any more
851
852 2006-04-30 Bernhard Held <bernhard AT bernhardheld.de>
853
854         * support/scripts/sdcc.nsi: removed all Readmes and Makefiles
855         in the library source
856
857 2006-04-30 Maarten Brock <sourceforge.brock AT dse.nl>
858
859         * support/regression/ports/hc08/spec.mk: fixed bug 1478892
860
861 2006-04-28 Raphael Neider <rneider AT web.de>
862
863         * src/pic16/pcode.c (pic16_newpCodeOpLit12),
864         * src/pic16/gen.c (pic16_popGetLit12): NEW, create 12 bit literal,
865           (pic16_loadFSR0): handle 12 bit literals correctly, fixes #1440527
866         * src/pic16/pcode.h: added prototype for pic16_newpCodeOpLit12()
867
868 2006-04-28 Bernhard Held <bernhard AT bernhardheld.de>
869
870         * device/lib/pic/libdev/Makefile.in,
871         * device/lib/hc08/Makefile.in,
872         * device/lib/gbz80/Makefile.in,
873         * device/lib/z80/Makefile.in,
874         * device/lib/ds390/Makefile.in,
875         * device/lib/ds400/Makefile.in: added srcdir to include search path,
876         thanks to Borut for the bug report
877         * configure.in,
878         * configure: always create doc/Makefile independent from --enable-doc
879         * Makefile.in: always install from directory doc independent from
880         --enable-doc
881         * device/lib/pic/Makefile.in: added libdev again, it was erroneously
882         removed
883         * device/lib/pic/libdev/Makefile.in: fixed VPATH build
884         * doc/Makefile.in: install *.txt if present
885         * device/include/Makefile.in (install): added installation of pic/*.inc
886         and pic/*.txt files again, they were erroneously removed
887
888 2006-04-28 Raphael Neider <rneider AT web.de>
889
890         * src/pic/{gen.c,main.h,pcode.c},
891         * src/pic16/{gen.c,pcode.c}: quietened compiler warnings
892             concerning signedness with casts
893
894 2006-04-28 Raphael Neider <rneider AT web.de>
895
896         * src/pic/gen.c (genFunction): set global pic14_hasInterrupt on
897             definition of an interrupt handler,
898         * src/pic/glue.c (pic14_emitInterruptHandler): moved output of
899             interrupt handler stuff from picglue() to separate routine,
900           (picglue): enabled definition of intr handlers in files w/o main()
901
902 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
903
904         * support/librarian/sdcclib.c: moved include <limits.h> up to enable
905           compilation with MSVC 2005 Express Edition (VC8)
906
907 2006-04-26 Bernhard Held <bernhard AT bernhardheld.de>
908
909         * device/lib/Makefile: fixed build of gbz80 lib
910
911 2006-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
912
913         * support/regression/tests/bug-460010.c,
914         * support/regression/tests/bug-524691.c,
915         * support/regression/tests/bug-716242.c: removed conditional defines
916           that are already in testfwk.h
917
918 2006-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
919
920         * src/ds390/gen.c (AccAXRrl1, AccAXLrl1): changed to real rotate by 1,
921           (AccAXRsh1): added, shift right by 1,
922           (AccAXLsh, AccAXRsh, AccAXRshS): updated for AccAXRrl1, AccAXRsh1 and
923            AccAXLrl1
924         * support/regression/tests/rotate.c: use <stdint.h> and enabled ds390
925
926 2006-04-25 Bernhard Held <bernhard AT bernhardheld.de>
927
928         * src/SDCCast.c (decorateType): partial fix for RFE 1475769,
929         remove cast to same type
930         * src/SDCCast.c (decorateType): fix for RFE 1475742,
931         optimize 'ifx (op == 0)' resp. 'ifx (op != 0)'
932         * as/z80/Makefile,
933         * link/z80/Makefile: removed, they have moved to
934         Makefile.in files
935         * configure,
936         * configure.in: replaced duplicate message about ucsim by missing sdcpp
937         * install-sh: fix bug #1204398 by setting umask 0022
938         * device/lib/Makefile: separate build of z80 and gbz80 lib
939
940 2006-04-24 Bernhard Held <bernhard AT bernhardheld.de>
941
942         Enabled VPATH feature: changed nearly all Makefiles (149 files).
943         See sdccman.lyx '2.4.10 VPATH feature' about how to use it.
944
945         One basic decision: e.g. src/clean.mk includes further files. In order
946         to make this work there are two solutions:
947         - rename another dozen clean.mk to clean_in.mk, add srcdir to them and
948           run configure on them. This way they can use
949           'include $(srcdir)/port-clean.mk'
950         - always include clean.mk by the Makefile at the same level. To avoid
951           that `make clean` tries to include and build Makefile.dep the
952           MAKECMDGOALS are examined (see e.g. src/Makefile.in). This has been
953           implemented, because now even `make uninstall` doesn't create
954           Makefile.in. clean.mk could be eliminated by pasting it in
955           Makefile.in.
956
957         * debugger/mcs51/Makefile.in: build own objects from library sources
958         (SLIB, SDCC) in current directory
959
960         * configure, configure.in: renamed --disable-device-lib-build in
961         --disable-device-lib; added --enable-doc, the required tools are
962         searched by configure; added result message; the toolchain for the
963         belonging ports are now only built, if the port is enabled.
964
965         * support/regression/*: all output is written in directory gen, because
966         the fwk and ports directories don't livet in the build tree using vpath
967
968         * doc/sdccman.lyx: renamed --disable-device-lib-build to
969         --disable-device-lib, added --enable-doc, added section VPATH
970
971         * sim/ucsim/configure.in,
972         * sim/ucsim/configure.in: hc08 couldn't be disabled, now hc08 and
973         z80 are enabled by default
974
975 2006-04-24 Raphael Neider <rneider AT web.de>
976
977         * src/pic/device.c (pic14_assignConfigWordValue): remember assignments
978             to config word, "pic14_"-prefixed some extern functions
979           (pic14_emitConfigWord): emit __config directive(s) if assignment to
980             config word has been found
981         * src/pic/device.h: added prototypes
982         * src/pic/pcode.c: added "pic14_"-prefix where needed
983         * src/pic/ralloc.c (IS_CONFIG_ADDRESS,pic14_assignRegisters): cosmetic
984             fixup
985         * src/pic/glue.c (pic14_constructAbsMap): handle assignments to config
986             words,
987           (pic14emitRegularMap): ignore config words,
988           (pic14createInterruptVect): moved generating __config directives away
989           (picglue): have __config directives emitted
990
991 2006-04-24 Borut Razem <borut.razem AT siol.net>
992
993         * doc/Makefile: sync with nightly build makefile
994
995 2006-04-24 Raphael Neider <rneider AT web.de>
996
997         * src/pic/pcoderegs.c (OptimizeRegUsage): do not optimize
998             registers that have not been assigned proper liveranges,
999             fixes #1469504 and #1474602,
1000           (pCodeRegOptimizeRegUsage): fixed typo in comment
1001
1002 2006-04-24 Borut Razem <borut.razem AT siol.net>
1003
1004         * device/examples/main8051.c: deleted - it was removed from CVS
1005           24.mar.2000 and after that modified 18.feb.2001, so it reappered
1006           after the transition to Subversion
1007         * src/SDCCalloc.h: deleted - it was removed  from CVS
1008           3.feb.2001 and after that modified 18.feb.2001, so it reappered
1009           after the transition to Subversion
1010         * sim/ucsim/cpu.gif, sim/ucsim/interrupt.gif, sim/ucsim/new.gif,
1011           sim/ucsim/serial1.gif, sim/ucsim/serial2.gif,
1012           sim/ucsim/term_cpuopt.gif, sim/ucsim/timers.gif, sim/ucsim/wins.gif,
1013           sim/ucsim/post.jpg, sim/ucsim/UCsim.jpg: corrected
1014
1015 2006-04-22 Maarten Brock <sourceforge.brock AT dse.nl>
1016
1017         * as/asx8051.dsp: added mcs51/strcmpi.h
1018         * as/hc08/as_hc08.dsp: added asm.h, m6808.h, strcmpi.h
1019         * as/hc08/aslink.h: updated lnksect prototype
1020         * as/hc08/asm.h,
1021         * as/mcs51/asm.h: added a_addr to struct area and s_org to struct sym
1022         * as/hc08/asmain.c,
1023         * as/mcs51/asmain.c (asmbl): init dot.s_org for S_ORG,
1024           (newdot): handle A_ABS
1025         * as/hc08/asout.c,
1026         * as/mcs51/asout.c (outarea): output address
1027         * as/hc08/lkaomf51.c,
1028         * as/mcs51/lkaomf51.c: disabled unused array UsageType
1029         * as/hc08/m08pst.c,
1030         * as/mcs51/i51pst.c,
1031         * as/z80/z80pst.c: "ABS" is not A_OVR
1032         * as/hc08/lkarea.c (newarea): read a_addr,
1033           (lnkarea): added codemap array, sort absolute areas to the front,
1034            combine all GSINITx/GSFINAL,
1035           (find_empty_space, allocate_space): new functions,
1036           (lnksect): return next address, handle absolute sections
1037         * as/mcs51/lkarea.c (newarea): read a_addr,
1038           lnksect2 prototype changed,
1039           (lnkarea2): define codemap unsigned, combine all GSINITx/GSFINAL,
1040           (find_empty_space, allocate_space): new, factored out of lnksect2,
1041           (lnksect2): return next address, handle absolute sections
1042         * as/hc08/lkhead.c,
1043         * as/mcs51/lkhead.c (newhead): head is absolute but not overlay
1044         * as/hc08/lklibr.c (addfile, fndsym),
1045         * as/mcs51/lklibr.c (addfile, buildlibraryindex, fndsym): prevent
1046           index out of range and detect both '\' and '/'
1047         * device/include/mcs51/c8051f200.h: added _XPAGE, removed bad comment
1048         * device/include/stdbool.h: removed SDCC_ds390 from check to pass
1049           regression tests (ds390 cannot return bool yet)
1050         * doc/sdccman.lyx: changed version number, document changed --no-peep,
1051           document critical interrupts on z80, document changed SDCC define
1052         * src/asm.c (_asxxxx_mapping): fixed .org directive,
1053           (_a390_mapping): added .org directive
1054         * src/hc08/gen.c (transferAopAop): made bytemask log to fix warning,
1055           (genMultOneByte): fixed warnings
1056         * src/hc08/hc08.dsp: lowered warning level to 2 to suppress pedantic
1057           ones
1058         * src/pic16/device.c: removed newReg prototype, removed BYTE_IN_LONG
1059         * src/pic16/gen.c (pic16_popGetLabel): made parameter key signed,
1060           (pic16_genLeftShiftLiteral, genRightShiftLiteral): fixed warnings
1061         * src/pic16/gen.h: changed prototype for pic16_popGetLabel
1062         * src/pic16/main.c: removed newReg prototype
1063         * src/pic16/pcode.c,
1064         * src/pic16/pcode.h (pic16_emitDB): changed parameter c to int to fix
1065           warnings
1066         * src/pic16/pic16.dsp: lowered warning level to 2 to suppress pedantic
1067           ones
1068         * src/pic16/ralloc.c
1069         * src/pic16/ralloc.h (newReg): changed type to int and size to unsigned
1070           to fix warnings
1071         * src/pic/pcode.c (allocInternalRegister): changed parameter optype
1072           from short to PIC_OPTYPE
1073         * src/pic/pic.dsp: lowered warning level to 2 to suppress pedantic ones
1074         * src/pic/ralloc.c (newReg, allocInternalRegister): changed parameter
1075           optype from short to PIC_OPTYPE
1076         * src/port.h: made int_size unsigned to fix warnings
1077         * src/SDCC.y: fixed warning on MSVC
1078         * src/SDCCicode.c (getArraySizePtr): return unsigned int
1079         * src/SDCCopt.c (convertToFcall): fixed warnings
1080         * src/SDCCsymt.h: removed double prototype for genSymName
1081         * src/xa51/ralloc.c (allocReg): made size unsigned int, type int and
1082           offset int to fix warnings
1083
1084 2006-04-22 Borut Razem <borut.razem AT siol.net>
1085
1086         * doc/sdccman.lyx, */Makefile, */Makefile.in:
1087           references to CVS replaced with Subversion
1088
1089 2006-04-21 Borut Razem <borut.razem AT siol.net>
1090
1091         * doc/sdccman.lyx, */Makefile, */Makefile.in:
1092           references to CVS replaced with Subversion
1093
1094 2006-04-19 Borut Razem <borut.razem AT siol.net>
1095
1096         * src/version.awk: adapted for svn
1097         * /asxxxx/asxhtml/*.gif: set property svn:mime-type to image/gif
1098           sim/ucsim/doc/*.gif: set property svn:mime-type to image/gif
1099           sim/ucsim/doc/*.jpg: set property svn:mime-type to image/jpeg
1100           /binutils-avr/etc/*.vi, *.jin: removed all properties
1101           support/scripts/sdcc.ico: set property svn:mime-type to image/x-icon
1102
1103 2006-04-19 Borut Razem <borut.razem AT siol.net>
1104
1105         * CVS to Subversion migration completed
1106
1107 2006-04-18 Borut Razem <borut.razem AT siol.net>
1108
1109         * support/scripts/sdcc.nsi: removed unexisting ${DEV_ROOT}\lib\pic\*.o,
1110           ${DEV_ROOT}\lib\src\pic\libdev\*.S, ${DEV_ROOT}\lib\src\pic\libdev\*.inc
1111
1112 2006-04-17 Borut Razem <borut.razem AT siol.net>
1113
1114         * device/include/Makefile.in: added pic/*.inc to the installation
1115
1116 2006-04-15 Bernhard Held <bernhard AT bernhardheld.de>
1117
1118         * support/regression/collate-results.py: fixed output in case of
1119         a valdiag error
1120         * support/regression/generate-cases.py: fixed splitting of pathnames
1121         with dots
1122         * as/hc08/lklibr.c (addfile),
1123         * as/mcs51/lklibr.c (addfile): fixed off-by-one bug
1124
1125 2006-04-11 Raphael Neider <rneider AT web.de>
1126
1127         * src/pic16/gen.c (getFreePtr, pic16_popRegFromString),
1128         * src/pic16/ralloc.c (pic16_allocregWithName): removed debug output
1129         * src/pic16/pcode.c (assignValnums): fixed #1460578
1130
1131 2006-04-11 Raphael Neider <rneider AT web.de>
1132
1133         * device/lib/pic/libdev/*.c,
1134         * device/include/pic/*.h: replaced sfr and data with __sfr and __data,
1135           fixes #1468739, enables compilation in --std-c99 mode
1136         * support/scripts/inc2h.pl: emit __sfr/__data instead of sfr/data
1137
1138 2006-04-11 Raphael Neider <rneider AT web.de>
1139
1140         * src/pic/device.c (find_device): removed debug output
1141           (list_valid_pics): enabled verbose listing of supported devices
1142         * device/include/stdbool.h: define bool as char for pic14/16 as well
1143
1144 2006-04-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1145
1146         * src/SDCC.y: allow using brackets here: "__interrupt (1) __using (1)"
1147
1148 2006-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1149
1150         * .version: bumped version to 2.5.6
1151         * src/pic/ralloc.c (newReg): MSVC doesn't support __builtin_return_address
1152
1153 2006-04-06 Raphael Neider <rneider AT web.de>
1154
1155         * .version: bumped version to 2.5.6 (pic14 ABI changed)
1156         * src/SDCCmain.c: add -DSDCC_PROCESSOR=<id> for pic14 port
1157         * src/pic/glue.c (emitSymbolToFile,pic14_constructAbsMap,
1158           pic14emitRegularMap,pic14emitMaps): moved output for absolute symbols to
1159             pic14_constructAbsMap
1160           (pic14printPublics): declare absolute global symbols as global
1161           (pic14createInterruptVect),
1162         * src/pic/ralloc.c (IS_CONFIG_ADDRESS): support second config word,
1163           (newReg): assume new registers unused, use correct name in
1164             hashtable (reg->name instead of name), more debugLog output
1165         * src/pic/device.h (PIC_device): added fields for verbose output
1166         * src/pic/device.c: moved device definition to pic14devices.txt,
1167             added routines for runtime parsing of pic14devices.txt,
1168             added support for second config word
1169         * src/pic/main.c (_process_pragma): removed #pragma maxram,
1170           (_pic14_keywords): no longer accept "bit" and "sbit" keywords
1171           (_pic14_initPaths): add search paths with "pic" suffix (not "pic14")
1172           (_pic14_parseOptions): moved pCodeInitRegisters here
1173           (_pic14_do_link): add "pic$(ARCH).lib" to linker arguments
1174         * src/pic/pcode.c (AnalyzeBanking): bail out on unset processor,
1175           (pCodeInitRegisters): rewrapped comments, perpared new approach to
1176             handling the pseudo stack
1177         * device/lib/Makefile.in: ignore failures in objects-pic16,
1178         * device/lib/pic/{configure,configure.in,Makefile}: added libdev/
1179         * device/lib/pic/NEWS: document new dependency on picXXX.lib
1180         * device/lib/pic/Makefile.subdir,
1181         * device/lib/pic16/Makefile.subdir: improved clean rules
1182         * device/lib/pic/libdev/: NEW, pic14 device libraries
1183         * device/lib/pic/libsdcc/_gptr{get,put}{1,2,3,4}.S: use _X not X
1184         * device/lib/pic/libsdcc/macros.inc: use _X not X, declare default SFRs
1185         * device/include/Makefile.in: create subdir and install pic14 headers
1186         * device/include/pic/p16f_common.inc: removed unused declarations
1187         * device/include/pic/pic16*.h: added header files for 100+ 14 bit
1188             PICs from inc2h.pl v1.6,
1189             replaced BIT_AT macros with struct declarations
1190         * device/include/pic/pic14devices.txt: definition of supported devices,
1191             all above improvements contributed by Zik Saleeba, thanks
1192         * support/scripts/inc2h.pl: removed BIT_AT, replaced with structs
1193         * support/scripts/sdcc.nsi: also install pic14 device libraries and
1194             headers
1195
1196 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1197
1198         * device/include/mcs51/c8051f410.h: added interrupt numbers,
1199         * device/include/mcs51/c8051f200.h: old SiLabs mcu completes the list,
1200           thanks to Charles Olds
1201
1202 2006-04-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1203
1204         * debugger/mcs51/cmd.c (infoRegisters): show return address on stack
1205
1206 2006-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1207
1208         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug 1464657
1209         * src/mcs51/gen.c (genJumpTab): fixed bug in medium model
1210         * support/regression/bug1464657.c: added, new test
1211
1212 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1213
1214         * src/SDCCmain.c (preProcess): implemented RFE 1449908, define SDCC as the
1215           version number
1216
1217 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1218
1219         * src/SDCCpeeph.c (initPeepHole): implemented RFE 1460196, when both
1220           --no-peep and --peep-file <file> are used don't use default rules but
1221           do use the <file>
1222
1223 2006-04-05 Maarten Brock <sourceforge.brock AT dse.nl>
1224
1225         * src/mcs51/gen.c (genCall): fixed bug 1457608
1226
1227 2006-03-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1228
1229         * doc/sdccman.lyx: reverted to version 1.129 of december as my latest
1230         changes seem to cause (trigger?) problems with the build system.
1231
1232 2006-03-29 Maarten Brock <sourceforge.brock AT dse.nl>
1233
1234         * src/SDCCpeeph.c (operandsLiteral): new, added,
1235           (callFuncByName): inserted operandsLiteral
1236         * src/mcs51/peeph.def: reenabled 132.e, added extra check to 132.x
1237
1238 2006-03-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1239
1240         * doc/sdccman.lyx: added paragraph "Use of SDCC in Education"
1241         * src/mcs51/peeph.def: disabled rule 132.e fixing bug #1453093
1242
1243 2006-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1244
1245         * src/z80/gen.c (genFunction, genEndFunction): fixed bug 1160666,
1246           implemented patch 1120823 Thanks to Willy De la Court (normal
1247           interrupts need an interrupt number now if they are made critical),
1248           and enabled nesting of critical functions though not for gbz80
1249           (genCritical, genEndCritical): added functions
1250           (genZ80Code): added cases for CRITICAL and ENDCRITICAL
1251         * src/z80/mappings.i: added "ei" to all mappings
1252
1253 2006-03-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1254
1255         * sim/ucsim/cmd.src/newcmdcl.h: applied patch fixing GCC 4.1 build
1256         submitted by the Debian SDCC maintainer Aurelien Jarno:
1257         "Credits goes to Martin Michlmayr, who rebuilt the whole Debian
1258         archive with gcc 4.1 on mips and wrote the patch"
1259
1260 2006-03-16 Raphael Neider <rneider AT web.de>
1261
1262         * src/pic16/genarith.c (genAddLit): simplified and fixed case where
1263           the left operand is shorter than the result (c* = lit-c* + int),
1264           fixes bug #1450796
1265         * src/pic16/gen.c (genRightShift): check IS_SYMOP before accessing
1266           OP_SYMBOL
1267
1268 2006-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1269
1270         * src/.version: increased version number to 2.5.5
1271         * src/SDCCmain.c (linkEdit): do not test for PIC16 target since, PIC16
1272         linking is done manually in pic16 port's _linkEdit,
1273         * src/SDCCsymt.c (compStructSize): for target PIC16 and shell variable
1274         PIC16_PACKED_BITFIELDS, compact bitfield structures as much as possible,
1275         * src/pic16/gen.c (aopForSym): when direct register name is WREG then
1276         allocate asmop as AOP_ACC,
1277         (aopForRemat): added parameter 'bool result' in function declaration,
1278         (pic16_aopGet): return AOP_ACC when accessing WREG,
1279         (pic16_popGetTempReg): minor modification,
1280         (pic16_popRegFromIdx): first try with 'pic16_regWithIdx' then with
1281         'pic16_allocWithIdx',
1282         (genPcall): removed ftype, usage of OP_SYM_TYPE asserted error when
1283         calling function in absolute addresses,
1284         (genAssign): take into account AOP_ACC asmop,
1285         * src/pic16/pcode.c (pic16_newpCodeOpReg): minor modifications,
1286         * src/pic16/pcoderegs.c: some debug functions and lines added,
1287         * src/pic16/ralloc.c (decodeRegType): added but commented out,
1288         * (pic16_typeRegWithIdx): search 'pic16_dynInternalRegs' for given
1289         register too,
1290         * (pic16_findFreeReg, pic16_findFreeRegNext): allocate new register via
1291         call to allocReg, not by manually allocating a new one,
1292         (pic16_assignRegisters): now before going through the register
1293         allocating functions mark all registers as free. This eliminates some
1294         side effects resulting from peephole parser done earlier in the backbone
1295
1296 2006-03-13 Maarten Brock <sourceforge.brock AT dse.nl>
1297
1298         * src/SDCCicode.c (geniCodeLogic),
1299         * src/SDCCast.c (decorateType): applied patch by Bernhard for rfe 1422617
1300
1301 2006-03-10 Maarten Brock <sourceforge.brock AT dse.nl>
1302
1303         * src/mcs51/gen.c (sameReg): new, checks if two aop regs are the same,
1304           (genSend): bugfix, do not allocate and free twice,
1305           (shiftRLong): handle partially overlapping aops
1306         * support/regression/tests/bitopcse.c: fixed warning redefined idata
1307
1308 2006-03-08 Borut Razem <borut.razem AT siol.net>
1309
1310         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata
1311           for pic16
1312
1313 2006-03-08 Maarten Brock <sourceforge.brock AT dse.nl>
1314
1315         * support/regression/tests/bug1409955.c: new, added
1316         * src/mcs51/gen.h: changed asmop.freed:1 to asmop.allocated for tracking
1317         * src/mcs51/gen.c (newAsmop): set asmop.allocated to 1,
1318           (aopForSym, aopOp): increment asmop.allocated if reused,
1319           (freeAsmop): decrement asmop.allocated and check for zero instead of
1320           using asmop.freed,
1321           (freeForBranchAsmop): use asmop.allocated instead of asmop.freed,
1322           (genNot, genCpl, genUminus, genMinus, genMult, genDiv, genMod, genCmpGt,
1323            genCmpLt, genAndOp, genOrOp, genAnd, genOr, genXor, genRRC, genRLC,
1324            genGetHbit, genGetAbit, genGetByte, genGetWord, genSwap,
1325            genLeftShiftLiteral, genLeftShift, genRightShiftLiteral,
1326            genSignedRightShift, genRightShift, genDataPointerGet,
1327            genPagedPointerGet, genFarPointerGet, genCodePointerGet,
1328            genGenPointerGet, genDataPointerSet, genAssign, genCast): free asmop's
1329             in reverse order from allocation,
1330           (genPlus, genCmpEq): free asmop's in reverse order from allocation and
1331             added swappedLR to keep track
1332         * support/regression/fwk/include/testfwk.h: added defines for xdata, idata,
1333           pdata & code for GCC, z80, gbz80 & hc08
1334         * support/regression/tests/zeropad.c: moved defines to testfwk.h
1335
1336 2006-03-08 Raphael Neider <rneider AT web.de>
1337
1338         * src/pic16/main.c (_hasNativeMulFor): fixed bug #1444425
1339
1340 2006-03-07 Maarten Brock <sourceforge.brock AT dse.nl>
1341
1342         * device/include/mcs51/c8051f410.h: new SiLabs mcu
1343         * src/ds390/peeph.def: disabled 186.d and 227.a as fix for #1434401
1344         * support/regression/tests/array.c: added parenthesis, made arrays unsigned
1345
1346 2006-03-06 Borut Razem <borut.razem AT siol.net>
1347
1348         * support/regression/ports/pic16/spec.mk: link with libm18f.lib,
1349           made the linker quiet
1350
1351 2006-03-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1352
1353         * src/pic16/gen.c (genPcall): fixed bug #1443644
1354         * src/pic16/device.h (struct pic16_options_t): added 'int CATregs' flag
1355         which dumps before the function entry point a data byte which represents
1356         the number of the local variables used by the specified function, added
1357         'xinst' for initial support for Extended Instruction Support,
1358         * src/pic16/gen.c (aopForSym, pic16_aopGet): beautifications,
1359         (pic16_testStackOverflow): do not prefix GSTACK_TEST_NAME with
1360         port->fun_prefix anymore (may change later),
1361         (genFunction, genEndFunction): do not store/restore local registers for
1362         _main (this should take care the --main-return command line option in
1363         the future),
1364         (genOr): removed some legacy pic-port instructions,
1365         * src/pic16/genarith.c (genAddLit): re-enabled old code because
1366         performing operations with SFR's causes data to be written more than
1367         once to each SFR. Perhaps SFRs should be handled in special cases...
1368         * src/pic16/glue.c: macros BIG_ENDIAN and BYTE_IN_LONG are moved to
1369         pcode.h
1370         * src/pic16/main.c (_process_pragma): stack bound checking did not take
1371         into account for stack starting position,
1372         (struct OPTIONS pic16_optionsTable): added command line argument
1373         --extended or -y for Extended Instruction Support,
1374         * src/pic16/ralloc.c (pic16_decodeOp): added case for FUNCTION,
1375         (deassignLRs): *** perhaps the most important change, old 'for' code
1376         (commented out for reference), didn't account for some registers which
1377         were left marked 'not free' after a pointer operation. The change
1378         reduces register usage a lot in some cases
1379
1380 2006-03-04 Borut Razem <borut.razem AT siol.net>
1381
1382         * support/regression/ports/hc08/spec.mk: remove *.asm in traget
1383           _clean
1384         * support/regression/tests/bug-524697.c: decreased array size for
1385           mcs51 to fit into the internal RAM
1386         * support/regression/Makefile.in: a little bit more verbose
1387
1388 2006-03-03 Borut Razem <borut.razem AT siol.net>
1389
1390         * support/regression/fwk/lib/testfwk.c,
1391           support/regression/fwk/include/testfwk.h: introduced function
1392           _prints(), nonrecursive _printn(), call _initEmu() from main()
1393         * support/regression/ports/gbz80/support.asm,
1394           support/regression/ports/ucz80/support.asm,
1395           support/regression/ports/z80/support.asm,
1396           support/regression/ports/ds390/support.c,
1397           support/regression/ports/hc08/support.c,
1398           support/regression/ports/host/support.c,
1399           support/regression/ports/mcs51/support.c,
1400           support/regression/ports/xa51/support.c: added empty _initEmu()
1401           function
1402         * support/regression/ports/pic16/gpsim.cmd,
1403           support/regression/ports/pic16/spec.mk,
1404           support/regression/ports/pic16/support.c,
1405           support/regression/Makefile.in: added pic16 regression test
1406
1407 2006-03-01 Raphael Neider <rneider AT web.de>
1408
1409         * src/pic16/gen.c (genPcall,pic16_derefPtr,genGenPointerGet,
1410           genConstPointerGet): use safe way of generating MOVFF to cover
1411             literals as well as registers, fixes bug #1440527
1412         * src/pic16/glue.c (pic16_printIvalBitFields): prevent NULL pointer
1413             dereference
1414           (pic16_printIvalUnion,pic16_isUnion): NEW, handle initialized unions
1415             more correctly, fixes bug #1232186
1416           (pic16_printIval): use pic16_printIvalUnion() for initialized unions
1417         * src/pic16/main.c (_pic16_linkEdit): reorder linker arguments to make
1418             gplink guess the correct processor in more cases, applied patch
1419             from Till Riedel attached to and fixing bug #1436552
1420
1421 2006-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1422
1423         * support/regression/tests/array.c: added, contains check for #1434401
1424         * src/mcs51/peeph.def: disabled 186.d as temporary fix for #1434401
1425
1426 2006-02-16 Maarten Brock <sourceforge.brock AT dse.nl>
1427
1428         * device/include/mcs51/at89s8253.h: new, thanks to Krzysztof Polomka
1429         * device/include/mcs51/at89S8252.h: fixed, thanks to Krzysztof Polomka
1430         * device/include/mcs51/c8051f326.h,
1431         * device/include/mcs51/c8051f340.h: new SiLabs mcu's
1432         * device/include/mcs51/c8051f000.h,
1433         * device/include/mcs51/c8051f018.h,
1434         * device/include/mcs51/c8051f020.h: used () with __at, renamed IDLE,STOP to
1435           PCON_IDLE,PCON_STOP and added sfr16 definitions
1436
1437 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1438
1439         * src/mcs51/gen.c (genPlus, genMinus, genMult, genGetAbit, genGetByte,
1440           genGetWord): fixed bug 1409955
1441
1442 2006-02-14 Maarten Brock <sourceforge.brock AT dse.nl>
1443
1444         * device/include/hc08/mc68hc908gp32.h,
1445         * device/include/hc08/mc68hc908jb8.h: removed AWUL, added PTA6 & PTA7
1446
1447 2006-02-13 Maarten Brock <sourceforge.brock AT dse.nl>
1448
1449         * src/SDCCast.c (constExprValue): return NULL if not a value
1450         * src/SDCCglue.c (printIvalArray): fixed bug 1225568
1451         * src/hc08/gen.c(genUnpackBits, genUnpackBitsImmed): fixed bug 1019480
1452         * support/regression/tests/bitfields.c: enabled signed bitfield for all
1453
1454 2006-02-13 Borut Razem <borut.razem AT siol.net>
1455
1456         * src/regression/ptrarg.c: added, fails due to bug #1430967
1457         * src/regression/Makefile: ptrarg.c added, ...
1458
1459 2006-02-12 Maarten Brock <sourceforge.brock AT dse.nl>
1460
1461         * src/z80/gen.c (genUnpackBits): fixed bug 1019480
1462         * support/regression/tests/bitfields.c: enabled signed bitfield for z80
1463
1464 2006-02-11 Borut Razem <borut.razem AT siol.net>
1465
1466         * src/SDCCmain.c: Added "sdcc: Calling linker..." if --verbose,
1467           print "Processor: xxx" message to stdout only if --verbose
1468
1469 2006-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1470
1471         * src/SDCCglue.c (printIvalStruct): fixed bug 1426356 union initializer
1472         * support/regression/tests/bug1426356.c: added
1473         * support/regression/tests/bitfields.c: removed 2 tests
1474
1475 2006-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1476
1477         * device/include/mcs51/at89c51snd1c.h: updated comments, see patch 1428901
1478         * device/include/mcs51/c8051f330.h,
1479         * device/include/mcs51/c8051f350.h: used () with __at, renamed IDLE,STOP to
1480           PCON_IDLE,PCON_STOP and added sfr16 definitions
1481         * device/lib/_divsint.c,
1482         * device/lib/_divuint.c,
1483         * device/lib/_divulong.c,
1484         * device/lib/_divulong.c: renamed a,b to x,y to avoid confusion, fixed
1485           register bank bug for small stackauto
1486
1487 2006-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1488
1489         * support/regression/fwk/lib/timeout.c: include <stdlib.h> for exit()
1490
1491 2006-02-08 Maarten Brock <sourceforge.brock AT dse.nl>
1492
1493         * support/regression/ports/mcs51-xstack-auto/spec.mk: forgot -I(...)/mcs51
1494         * all.dsp: corrected several bin paths
1495         * device/include/mcs51/c8051f120.h,
1496         * device/include/mcs51/c8051f300.h,
1497         * device/include/mcs51/c8051f310.h: used () with __at and renamed IDLE,STOP
1498           to PCON_IDLE,PCON_STOP
1499         * device/include/mcs51/c8051f320.h: see above, also added sfr16 definitions
1500         * device/lib/printf_large.c (output_float): fixed bug 1388703
1501         * support/regression/tests/bug1057979.c: added test for bug 1388703
1502
1503 2006-02-08 Raphael Neider <rneider AT web.de>
1504
1505         * src/pic/pcode.c (pciTRIS): fixed typo,
1506           (BuildFlow,LinkFlow_pCode): added (disabled) debug output,
1507           (LinkFlow): fixed handling of flows that end in a call,
1508           (ReuseReg): perform safety check earlier
1509         * src/pic/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed
1510             to work with flows at the beginning of a pBlock,
1511             fixes #1426557 (Symbol not previously defined),
1512           (pic14_ReMapLiveRanges): NEW, destroy and rebuild register
1513             usage information
1514           (RemoveUnusedRegisters): update register usage info
1515         * src/pic/ralloc.c (newReg): prevent duplicate registers from being
1516             created, reuse existing ones instead
1517         * src/pic/gen.c (genPcall): fixed #1424719
1518
1519 2006-02-07 Bernhard Held <bernhard AT bernhardheld.de>
1520
1521         * link/z80/lkmain.c,
1522         * link/z80/lklex.c,
1523         * link/z80/lkdata.c,
1524         * link/z80/aslink.h: fixed build on current cygwin:
1525         replaced getline() by lk_getline()
1526
1527 2006-02-01 Borut Razem <borut.razem AT siol.net>
1528
1529         * src/regression/add.c, src/regression/add2.c, src/regression/add3.c,
1530           src/regression/add4.c, src/regression/and1.c, src/regression/and2.c,
1531           src/regression/arrays.c, src/regression/b.c, src/regression/bank1.c,
1532           src/regression/bool1.c, src/regression/bool2.c,
1533           src/regression/bool3.c, src/regression/call1.c,
1534           src/regression/compare.c, src/regression/compare10.c,
1535           src/regression/compare2.c, src/regression/compare3.c,
1536           src/regression/compare4.c, src/regression/compare5.c,
1537           src/regression/compare6.c, src/regression/compare7.c,
1538           src/regression/compare8.c, src/regression/compare9.c,
1539           src/regression/configword.c, src/regression/for.c,
1540           src/regression/inline.c, src/regression/mult1.c,
1541           src/regression/nestfor.c, src/regression/or1.c,
1542           src/regression/pointer1.c, src/regression/ptrfunc.c,
1543           src/regression/rotate1.c, src/regression/rotate2.c,
1544           src/regression/rotate3.c, src/regression/rotate4.c,
1545           src/regression/rotate5.c, src/regression/rotate6.c,
1546           src/regression/rotate7.c, src/regression/string1.c,
1547           src/regression/struct1.c, src/regression/sub.c,
1548           src/regression/sub2.c, src/regression/switch1.c,
1549           src/regression/while.c, src/regression/xor.c,
1550           src/regression/create_stc, src/regression/simulate,
1551           src/regression/rt.sh, src/regression/Makefile: reenabled Scott's PIC14
1552           regression tests
1553         * src/regression/gpsim_assert.h: added
1554
1555 2006-01-28 Bernhard Held <bernhard AT bernhardheld.de>
1556
1557         * src/ds390/gen.c (unsaveRegisters): fixed literal function pointer
1558         ((void (code *) (void)) 0) ();
1559         * as/hc08/aslex.c,
1560         * as/hc08/aslink.h,
1561         * as/hc08/asm.h,
1562         * as/hc08/asmain.c,
1563         * as/hc08/lkdata.c,
1564         * as/hc08/lklex.c,
1565         * as/hc08/lkmain.c,
1566         * as/mcs51/aslex.c,
1567         * as/mcs51/aslink.h,
1568         * as/mcs51/asm.h,
1569         * as/mcs51/asmain.c,
1570         * as/mcs51/lkdata.c,
1571         * as/mcs51/lklex.c,
1572         * as/mcs51/lkmain.c,
1573         * as/z80/aslex.c,
1574         * as/z80/asm.h,
1575         * as/z80/asmain.c: fixed build on current cygwin:
1576         replaced getline() by as_getline()
1577
1578 2006-01-27 Bernhard Held <bernhard AT bernhardheld.de>
1579
1580         * src/SDCC.y: fixed bug #716242, exchanged pointer and function
1581         declarator in the symbol chain
1582         * src/SDCCsymt.h,
1583         * src/SDCCsymt.c (processFuncPtrArgs): added, removes "(void)"
1584         parameter list for function pointers
1585         * src/SDCCast.c (decorateType): added call of processFuncPtrArgs()
1586         * support/regression/tests/bug-716242.c: added
1587
1588 2006-01-20 Bernhard Held <bernhard AT bernhardheld.de>
1589
1590         * src/SDCCicode.c (geniCodeAdd, geniCodeArray): use char for array
1591         offset if possible
1592         * src/SDCCast.c (getLeftResultType): 255 fits in char, not 256
1593
1594 2006-01-18 Bernhard Held <bernhard AT bernhardheld.de>
1595
1596         * src/SDCCast.c (backPatchLabels): fixed bug #1408066: made it
1597         inifinitely recurseable, added static
1598         * support/regression/tests/bug-1408066.c: added
1599
1600 2006-01-17 Bernhard Held <bernhard AT bernhardheld.de>
1601
1602         * src/SDCCicode.h,
1603         * src/SDCCicode.c (newiTempPreheaderLabel, newiTempLoopHeaderLabel):
1604         renamed, added possibility to create "postLoopLbl"-labels
1605         * src/SDCCBBlock.c (iCodeBreakDown): renamed newiTempPreheaderLabel to
1606         newiTempLoopHeaderLabel
1607         * src/SDCCloop.c (newInduction, newRegion, backEdges, insertIntoLoop,
1608         isNotInBlocks, addToExitsMarkDepth, createLoop, dominatedBy,
1609         addDefInExprs, assignmentsToSym, isOperandInvariant, pointerAssigned,
1610         hasNonPtrUse, loopInvariants, addressTaken, findInduction,
1611         findDefInRegion, mergeRegions, ifMerged, mergeInnerLoops): made static,
1612         (pinduction, pregion, hasIncomingDefs, findLoopEndSeq): disabled,
1613         (basicInduction): fixed bug #136564, made static,
1614         (loopInduction): changed parameter of basicInduction, made static,
1615         (addPostLoopBlock): added
1616         * src/SDCCloop.h: removed backEdges, pregion, pinduction,
1617         loopOptimizations, addressTaken, findDefInRegion, hasIncomingDefs,
1618         findLoopEndSeq
1619         * support/regression/tests/bug-136564.c: added
1620         * support/regression/ports/mcs51-xstack-auto/spec.mk: added
1621         --std-sdcc99 to LIBSDCCFLAGS
1622
1623 2006-01-16 Bernhard Held <bernhard AT bernhardheld.de>
1624
1625         * src/SDCCicode.c (geniCodeIfx): fix bug 1406131: always false
1626         while loop
1627         * support/regression/tests/bug-1406131.c: added
1628
1629 2005-12-31 Bernhard Held <bernhard AT bernhardheld.de>
1630
1631         * src/SDCCast.c (decorateType): fix promotion of unary minus
1632         * src/SDCCsymt.c (computeType): beautified
1633         * src/SDCCval.c (cheapestVal): beautified, old non-Ansi version removed,
1634         (valUnaryPM, valComplement): fix sign and promotion,
1635         (valNot): ANSI: result type is int (SDCC: unsigned char)
1636         * support/regression/tests/uminus.c: speedup by removing superflous
1637         test case 'int'
1638         * support/regression/tests/onebyte.c: added promotion and signedness
1639         tests for unary minus
1640         * support/regressions/tests/bug-477927.c: disable warning about
1641         uninitialized variables
1642         * support/regression/tests/not.c: added
1643
1644 2005-12-28 Bernhard Held <bernhard AT bernhardheld.de>
1645
1646         * device/lib/Makefile.in: added --std-sdcc99 to CFLAGS
1647         * src/mcs51/gen.c (gen51Code): show final register usage after
1648         fillGaps in asm with --i-code-in-asm
1649         * src/SDCClrange.c (sequenceiCode, setLiveFrom, setLiveTo,
1650         markLiveRanges, markAlive, findNextUseSym, findNextUse, unvisitBlocks,
1651         incUsed, rliveClear, adjustIChain): made static,
1652         (setFromRange): excluded because it's unused,
1653         (findPrevUseSym, markWholeLoop): added,
1654         (findPrevUse): rewritten; fixes bug 895992; now a complete search
1655         through all branches of predecessors enables sdcc to emit the warning
1656         W_LOCAL_NOINIT, marking of outermost loop was incomplete,
1657         (rlivePoint): made static, added parameter emitWarnings which is only
1658         true during the first run out of two,
1659         (findRecursiveSucc, findRecursivePred): removed,
1660         (computeLiveRanges): made static, added parameter emitWarnings,
1661         (dumpIcRlive): added for debugging only
1662         * src/SDCClrange.h: added boolean parameter to computeLiveRanges(),
1663         removed prototype of setFromRange()
1664         * src/SDCCopt.c (eBBlockFromiCode): added new parameter emitWarnings
1665         in call of computeLiveRanges()
1666         * support/regression/tests/bug-895992.c: added
1667         * support/regression/tests/bug-971834.c: added
1668         * support/valdiag/tests/bug-895992.c: added
1669         * support/valdiag/tests/bug-971834.c: added
1670
1671 2005-12-18 Raphael Neider <rneider AT web.de>
1672
1673         * src/pic16/gen.c: added IS_DIRECT macro for "direct" operands,
1674           (genUnpackBits): improved code for direct operands,
1675           (genPackBits): improved code for literal assignment to bitfields
1676             and for direct destination operands (no FSR indirection),
1677             prevented redundant AND, fixes #1362800,
1678           (AccLsh): added parameter to disable masking of the result
1679         * src/pic16/pcode.c (pic16_safepCodeUnlink): fixed to work with
1680           skip instructions with side-effects (like incfsz),
1681           (pic16_pCodeIsAlive): suppress verbose output unless pcode_verbose,
1682         * src/pic16/pcoderegs.c (RemoveRegsFromSet): removed annoying warning
1683         * device/lib/pic16/Makefile.common.in: added --asm=@GPASM@ to CC,
1684           fixes #1375263
1685
1686 2005-12-11 Bernhard Held <bernhard AT bernhardheld.de>
1687
1688         * src/SDCCicode.c (geniCodeAssign): fixed bug 11369874, don't use
1689         volatile variables as spill location
1690
1691 2005-12-10 Bernhard Held <bernhard AT bernhardheld.de>
1692
1693         * src/SDCCcse.c (findCheaperOp): fixed bug 1376320, copy signedness to
1694         replacing literals
1695         * support/regression/tests/bug-1376320.c: added
1696
1697 2005-12-08 Raphael Neider <rneider AT web.de>
1698
1699         * src/pic/device.c: renamed is_shared to pic14_is_shared
1700         * src/pic/gen.c (genIfx): re-enabled handling of sbits
1701         * src/pic/glue.c (emitSymbolToFile): added workaround for sbits,
1702           (is_valid_identifier): added for above workaround
1703
1704 2005-12-07 Maarten Brock <sourceforge.brock AT dse.nl>
1705
1706         * device/lib/Makefile.in: fixed to enable port-specific-objects
1707         * device/lib/ds390/i2c390.c (BitOutI2C): optimized by making bout unsigned
1708           char, thanks Hubert Sack
1709         * doc/sdccman.lyx: documented --xstack-loc,
1710           elaborated a bit more on interrupts and pitfalls,
1711           removed "setjmp/longjmp unsupported",
1712           documented some unsupported C99 features
1713         * src/SDCCmain.c (linkEdit): adapted default lib path for --stack-auto
1714         * src/SDCCpeeph.c (readRules): inserted patch 1367130 for finding missing
1715           if, thanks Hubert Sack
1716         * src/mcs51/gen.c (genEndFunction): enabled "pop psw" for regbank 0 isr
1717         * support/regression/Makefile.in: test-mcs51-stack-auto no longer needs to
1718           make make_library
1719         * support/regression/get_ticks.py: new, get cpu cycles and code size, so
1720           regression tests can report resource usage (rfe 700441)
1721         * support/regression/collate-results.py: report resource usage
1722         * support/regression/ports/ds390/spec.mk,
1723         * support/regression/ports/hc08/spec.mk,
1724         * support/regression/ports/mcs51/spec.mk,
1725         * support/regression/ports/ucz80/spec.mk: run sim output through get_ticks
1726         * support/regression/ports/ds390/uCsim.cmd,
1727         * support/regression/ports/hc08/uCsim.cmd,
1728         * support/regression/ports/mcs51/uCsim.cmd,
1729         * support/regression/ports/ucz80/uCsim.cmd: inserted "state" to report time
1730         * support/regression/ports/mcs51-stack-auto/spec.mk: no need to build the
1731           library, use the default one
1732         * support/regression/ports/mcs51-xstack-auto/spec.mk: inserted rules for
1733           building the library
1734
1735 2005-12-06 Maarten Brock <sourceforge.brock AT dse.nl>
1736
1737         * config.dsp: added dependency on .version and configure_vc.awk
1738         * device/include/setjmp.h: updated for --stack-auto and --xstack
1739         * device/include/mcs51/at89c51snd1c.h: corrected line endings
1740         * device/include/mcs51/XC866.h: added, thanks Llewellyn van Zyl
1741         * device/lib/_setjmp.c: updated for --stack-auto and --xstack
1742         * device/lib/libsdcc.lib: added _setjmp
1743         * src/SDCCast.c (createIvalCharPtr): fixed warnings,
1744           (decorateType): fixed bug 1372851,
1745           (optimizeGetHbit): fixed warning
1746         * src/SDCCglue.c (printIvalChar, printIvalArray): adapted for flexible
1747           array initialisation
1748         * support/regression/tests/bug1057979.c: added test for bug 1358192
1749         * support/regression/tests/setjmp.c: added, test for setjmp/longjmp
1750
1751 2005-12-03 Borut Razem <borut.razem AT siol.net>
1752
1753         * support/scripts/sdcc.nsi: added /SOLID option to "SetCompressor lzma"
1754           command since the NSIS was upgraded to version 2.11 on CF x86-linux2
1755
1756 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1757
1758         * src/SDCCast.c (createIvalStruct, createIvalArray, createIvalPtr,
1759         createIval): implement symbol independant "flexible array member",
1760         (createIvalCharPtr): implemented flexible array initialisation with a
1761         string
1762         * src/SDCCsymt.c (copyStruct): removed,
1763         (getSize): fixed misleading comment,
1764         (getAllocSize): removed, the additional allocation size is now in
1765         sym->flexArrayLength,
1766         (checkStructFlexArray): new, syntax checks for flexible array members,
1767         (compStructSize): added syntax checks for "flexible array members"
1768         (copyStruct): removed,
1769         (copyLinkChain): removed inefficient fix for bug 770487
1770         * src/SDCCglue.c (emitRegularMap): getAllocSize has been removed
1771         * src/SDCCsymt.h: added structdef.b_flexArrayMember and
1772         symbol->flexArrayLength
1773         * src/SDCCerr.c,
1774         * src/SDCCerr.h: added W_INVALID_FLEXARRAY, W_C89_NO_FLEXARRAY,
1775         E_FLEXARRAY_NOTATEND and E_FLEXARRAY_INEMPTYSTRCT
1776         * support/regression/tests/structflexarray.c: added
1777         * support/valdiag/tests/structflexiblearray.c: added
1778
1779 2005-11-29 Bernhard Held <bernhard AT bernhardheld.de>
1780
1781         * src/SDCCast.c (decorateType): fixed bug 1368489
1782         * support/Util/SDCCerr.c,
1783         * support/Util/SDCCerr.h: added warning W_CMP_SU_CHAR
1784
1785 2005-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1786
1787         * device/include/mcs51/at89c51snd1c.h: added file submitted by
1788           Weston T. Schmidt <schmidtw AT users.sourceforge.net>, patch #1368001
1789
1790 2005-11-27 Borut Razem <borut.razem AT siol.net>
1791
1792         * support/cpp2/cppinit.c, support/cpp2/cpplib.h, support/cpp2/mkdeps.c,
1793           support/cpp2/mkdeps.h: added command line option
1794           -obj-ext=<extension> to SDCPP to define object file externion, used
1795           for generation of make dependencies (-M)
1796         * src/SDCCmain.c: pass -obj-ext=<extension> to SDCPP
1797
1798 2005-11-26 Borut Razem <borut.razem AT siol.net>
1799
1800         * support/scripts/sdcc.nsi: added small-stack-auto libraries,
1801           added missing device/lib/mcs51/crt*.asm, pic and pic16 sources,
1802           added pic and pic16 libraries
1803
1804 2005-11-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1805
1806         * device/include/float.h: Corrected typo in prototype of __fsgt
1807
1808 2005-11-25 Borut Razem <borut.razem AT siol.net>
1809
1810         * sdcc/device/lib/Makefile.in, sdcc/device/lib/incl.mk:
1811           added creation of model-mcs51-stack-auto libraries
1812
1813 2005-11-24 Bernhard Held <bernhard AT bernhardheld.de>
1814
1815         * src/SDCCsymt.c (copyLinkChain): fixed bug 770487, copy structdef
1816         and fields-list too
1817         * src/SDCCast.c (createIvalArray): removed obsolete comment
1818
1819 2005-11-24 Borut Razem <borut.razem AT siol.net>
1820
1821         * sdcc/device/lib/Makefile.in: remove all unnecessary files, 2nd try...,
1822           added missing device/lib/mcs51/crt*.asm sources
1823
1824 2005-11-23 Bernhard Held <bernhard AT bernhardheld.de>
1825
1826         * src/SDCCast.c (createIvalCharPtr): fixed bug 1348271
1827
1828 2005-11-22 Maarten Brock <sourceforge.brock AT dse.nl>
1829
1830         * device/lib/_fs2schar.c,
1831         * device/lib/_fs2sint.c,
1832         * device/lib/_fs2slong.c: optimized inline asm
1833
1834 2005-11-21 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1835
1836         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1837           Better handling of floats between -1.0 and 0.0.
1838
1839 2005-11-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1840
1841         * src/mcs51/peeph.def: added missing "if"s as noted by Hubert Sack.
1842           (the missing "if"s prohibited removal of redundant labels)
1843
1844 2005-11-19 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1845
1846         * device/lib/_fs2slong.c, device/lib/_fs2sint.c, device/lib/_fs2char.c:
1847           Properly convert floats between -1.0 and 0.0 to long, int, and char
1848           types (max integer value of negative floats tends to zero).
1849         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1850           Removed changes made so to work properly with floats between
1851           -1.0 and 0.0, as the problem is fixed in _fs2slong.c, _fs2sint.c,
1852           and _fs2char.c
1853
1854 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1855
1856         * src/SDCCcse.c (ReplaceOpWithCheaperOp): minor fix for debugging only
1857         * src/mcs51/gen.c (genUnpackBits): better code and a fix,
1858         (genCast) cosmetic change
1859         * src/ds390/gen.c (genUnpackBits, ): ported from mcs51
1860         * src/ds390/ralloc.c (packRegsForAssign): ported fix for bitfields
1861         from mcs51
1862         * support/regression/tests/bitfields (testSignedBitfields): added
1863
1864 2005-11-18 Borut Razem <borut.razem AT siol.net>
1865
1866         * sdcc/device/lib/Makefile.in: remove all unnecessary files
1867         * device/lib/pic/Makefile.rules, device/lib/pic16/Makefile.subdir:
1868           introduced SILENT option to make building of pic16 libraries less
1869
1870 2005-11-18 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1871
1872         * device/lib/modff.c, device/lib/ceilf.c, device/lib/floorf.c:
1873           Now they work properly with floats between -1.0 and 0.0
1874         * device/lib/printf_large.c: Removed temporary patch for bug 1358192
1875
1876 2005-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1877
1878         * src/SDCCicode.c (printOperand): added missing else
1879
1880 2005-11-18 Bernhard Held <bernhard AT bernhardheld.de>
1881
1882         * src/SDCCsymt.c (computeType): fixed bug 1358192: added missing else,
1883         reformatted for better readability
1884         * src/mcs51/gen.c (genUnpackBits): initial, incomplete support for
1885         signed bitfields
1886
1887 2005-11-17 Borut Razem <borut.razem AT siol.net>
1888
1889         * device/lib/pic16/Makefile.rules, device/lib/pic16/Makefile.subdir:
1890           introduced SILENT option to make building of pic16 libraries less
1891           verbose - used for nightly snapshot build
1892         * doc/sdccman.lyx: documented that SDCDB and ucSim are currently not
1893           available on Win32 platforms.
1894         * sdcc/device/lib/Makefile.in: added library sources for mcs51, small,
1895           medium, large, pic and pic16
1896
1897 2005-11-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1898
1899         * device/lib/printf_large.c: Temporary patch for bug 1358192:
1900           printf("%f"...) sets fraction to zero.
1901
1902 2005-11-16 Raphael Neider <rneider AT web.de>
1903
1904         * src/pic/pcode.c (LinkFlow): handle empty flows correctly,
1905           fixes #1357221
1906         * src/pic/gen.c (genIfx): implemented for CARRY bit
1907         * src/pic16/gen.c (genAssign,genCast): fixed assigning/casting
1908           to generic pointers, fixes #1357332,
1909           (pic16_movLit2f): NEW,
1910           (pic16_storeForReturn,genDataPointerSet): use pic16_movLit2f
1911
1912 2005-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1913
1914         * src/SDCCmain.c (parseCmdLine): fixed bug 1356800, thanks rsudjian
1915
1916 2005-11-11 Raphael Neider <rneider AT web.de>
1917
1918         * src/pic/gen.c: handle FPOINTERS like POINTERS everywhere
1919         * src/pic16/gen.c (pic16_derefPtr): now works for non-pointers as well,
1920           compute pointer's type from operand,
1921           (genUnpackBits,genPackBits): handle FPOINTERS correctly, re-indented,
1922           improved single bit reads, fixes bug #1353379
1923
1924 2005-11-09 Borut Razem <borut.razem AT siol.net>
1925
1926         * support/scripts/sdcc.nsi: added lib/pic to the package
1927
1928 2005-11-08 Maarten Brock <sourceforge.brock AT dse.nl>
1929
1930         * src/SDCCval.c (valUnaryPM): fixed bug 1350699
1931
1932 2005-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1933
1934         * support/regression/tests/bug1348008.c: added
1935         * src/mcs51/gen.c (saveRBank, unsaveRBank): fixed bug 1348008
1936         * support/regression/tests/bug1337835.c: updated comment
1937
1938 2005-11-06 Borut Razem <borut.razem AT siol.net>
1939
1940         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1941           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1942           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1943           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1944           sim/ucsim/cmd.src/set.cc, sim/ucsim/cmd.src/show.cc:
1945           dynamic construction of cl_error_class and derivates - 2.nd try
1946
1947 2005-11-05 Borut Razem <borut.razem AT siol.net>
1948
1949         * sim/ucsim/sim.src/error.cc: fixed uninitialized class member variable
1950           bug, which caused Bus Errors on sparc solaris
1951
1952 2005-11-04 Borut Razem <borut.razem AT siol.net>
1953
1954         * sim/ucsim/error.cc, sim/ucsim/errorcl.h,
1955           sim/ucsim/sim.src/stack.cc, sim/ucsim/sim.src/stackcl.h,
1956           sim/ucsim/sim.src/uc.cc, sim/ucsim/sim.src/uccl.h,
1957           sim/ucsim/sim.src/mem.cc, sim/ucsim/sim.src/memcl.h,
1958           sim/ucsim/cmd.src/cmdconf.cc: dynamic construction of cl_error_class
1959           and derivates to resolve the initialization problem on OSX
1960
1961 2005-11-02 Borut Razem <borut.razem AT siol.net>
1962
1963         * sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1964           corrected typo - #include <winsock2.h>
1965
1966 2005-11-02 Maarten Brock <sourceforge.brock AT dse.nl>
1967
1968         * src/asm.c (printILine): always close tmpFile, thanks Beau E. Cox,
1969           (_asxxxx_mapping): added org directive for future enhancements
1970
1971 2005-11-01 Borut Razem <borut.razem AT siol.net>
1972
1973         * sim/ucsim/app.cc, sim/ucsim/cmd.src/cmdutil.cc, sim/ucsim/cmd.src/newcmd.cc:
1974           enabled sockets on WIN32
1975         * sim/ucsim/cmd.src/newcmd.cc: fixed bug with uninitialized variables
1976
1977 2005-10-31 Borut Razem <borut.razem AT siol.net>
1978
1979         * support/regression/generate-cases.py: escape backslashes in {testcase}:
1980           WIN32 backslash path delimiters should be escaped when used in C strings
1981         * support/regression/tests/bitfields.c: exclude failing assertions for
1982           __CYGWIN32__ and __MINGW32__ hosts
1983
1984 2005-10-30 Borut Razem <borut.razem AT siol.net>
1985
1986         * src/SDCCutil.c: corrected double comparison typo
1987
1988 2005-10-30 Maarten Brock <sourceforge.brock AT dse.nl>
1989
1990         * device/lib/medium/Makefile: added for new memory model medium
1991         * device/include/asm/mcs51/features.h: updated for medium/pdata
1992         * device/include/mcs51/c8051f120.h: added sfr16/sfr32 definitions,
1993           added Multiply & Accumulate sbit's and MAC0_PAGE define
1994         * device/include/mcs51/c8051f300.h: added sfr16 definitions
1995         * device/include/mcs51/c8051f310.h: added sfr16 definitions
1996         * device/lib/_mullong.c: update for medium model
1997         * device/lib/incl.mk: added medium model
1998         * doc/sdccman.lyx: documented medium model
1999         * src/SDCCast.c (isBitAndPow2): simplified using updated powof2
2000         * src/SDCCicode.c (geniCodeMultiply, geniCodeDivision): use updated powof2
2001         * src/SDCCmain.c (optionsTable, linkEdit): enabled medium model
2002         * src/SDCCmem.c (allocIntoSeg): set iaccess for pdata symbols,
2003           (allocParms): set SCLS and OCLS to pdata for medium model
2004         * src/SDCCsymt.c (processFuncArgs): use default_local_map and set iaccess
2005           for pdata,
2006           (powof2): return <0 if not power of 2
2007         * src/avr/gen.c (genBitWise): use updated powof2
2008         * src/mcs51/gen.c (genMinusDec): use acc if necessary,
2009           (shiftR2Left2Result): small optimization in setup, save acc when storing,
2010           (shiftLLeftOrResult): use B if necessary
2011         * src/mcs51/main.c (_mcs51_finaliseOptions, mcs51_port): added medium model
2012         * src/mcs51/peeph.def: renamed 226 to 226.b, added 226.a
2013         * src/pic/main.c (_pic14_do_link): made void parameter list explicit
2014         * support/regression/Makefile.in: added test-mcs51-medium
2015         * support/regression/ports/mcs51-medium/spec.mk: added to test medium model
2016
2017 2005-10-28 Bernhard Held <bernhard AT bernhardheld.de>
2018
2019         * src/SDCCsymt.c (compStructSize): make bitfields without (un)signed
2020         specifier unsigned
2021         * device/lib/time.c (mktime): fixed bug 1334315
2022
2023 2005-10-28 Raphael Neider <rneider AT web.de>
2024
2025         * device/include/pic/p16f_common.inc: added common declarations
2026         * src/pic/ralloc.c (initStack): moved regs *r to block start for Alpha
2027
2028 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
2029
2030         * src/mcs51/gen.c (getTempRegs): return 0 if not enough registers found,
2031           (aopPutUsesAcc): added to predict accumulator use,
2032           (assignResultValue): save acc if necessary,
2033           (genMinusDec): store result if indirectly addressed,
2034           (genDivOneByte):  save acc if necessary,
2035           (movLeft2Result): bugfix if left already in acc,
2036           (genAnd, genOr, genXor, shiftL2Left2Result, shiftR2Left2Result): pay more
2037             attention to accumulator use (esp. pdata),
2038           (genReceive): receive pdata correctly
2039         * src/SDCCicode.c (isOperandInPagedSpace): added to detect pdata operands
2040         * src/SDCCicode.h: added isOperandInPagedSpace prototype
2041
2042 2005-10-27 Raphael Neider <rneider AT web.de>
2043
2044         * doc/sdccman.lyx: corrected version (should be 2.5.4 not 2.5.5)
2045
2046 2005-10-27 Raphael Neider <rneider AT web.de>
2047
2048         * .version: changed version to 2.5.4
2049         * doc/sdccman.lyx: changed version to 2.5.4, added some remarks to PIC14
2050         * device/lib/pic/libsdcc/{_mulint.c,_mullong.c}: use unsigned literals,
2051           (_divschar.c,divuchar.c,_mulchar.c,_modschar.c,_moduchar): NEW,
2052             arithmetics support routines
2053         * device/lib/pic/Makefile.rules: have assembler sources preprocessed
2054         * device/lib/Makefile.in: also create installdir for pic
2055
2056         * src/SDCCopt.c (cnvToFcall): mark support routines `extern' for
2057           pic14 port as well
2058         * src/pic/device.c (dump_sfr): rewritten to delegate register
2059           placement to the linker (use `extern sym' rather than sym EQU addr),
2060           (validAddress): fixed to check last specified address
2061         * src/pic/gen.c (aopForSym): added code to deal with array (useless?),
2062           (popGetLit): truncate literal value to 8 bit,
2063           (popGet): moved assert to more appropriate place
2064           (popGetExternal): create pCode operand from and mark the according
2065             symbol as being `extern'
2066           (popGetAddr): added sanity check on immediate's offset, provide
2067             GPOINTER tag on demand
2068           (aopPut): fixed for immediates,
2069           (mov2w_op): move operand's address or contents to WREG (depending on
2070             operand type), safer variant of mov2w,
2071           (movwf,call_libraryfunc): NEW, handy abbreviations,
2072           (get_argument_pcop,get_return_val_pcop,pass_argument,
2073           get_returnvalue): interface for accessing function parameters and
2074             return values,
2075           (assignResultValuei,genRet): use new parameter/return value interface
2076           (pic14_getDataSize): back to old version handling generic pointers,
2077           (pic14_toBoolean,genNot,genCpl,genCmpEq,genOrOp): heavily rewritten,
2078             provided implementation and/or fixed old one,
2079           (genMultOneByte,genDivOneByte,genModOneByte): implemented as library
2080             calls, removed legacy 8051 reference code
2081           (AccLsh,AccRsh): rewritten and fixed to deal with signed operands
2082           (loadSignToC): NEW, move the operands sign bit to CARRY,
2083           (genGenericShift): NEW, replaces genLeftShift, genRightShift and
2084             genRightShiftSigned, accepts negative shift counts,
2085           (setup_fsr): load FSR and adjust IRP (indirect memory access),
2086           (emitPtrByteGet,emitPtrByteSet): rewritten, now works with
2087             generic pointers, __data pointers and __code pointers,
2088           (genUnpackBits,genPackBits): rewritten to work with generic pointers
2089             and signed bitfields, limit bitfields to 8 bit,
2090           (genDataPointerGet): fixed number of bytes read,
2091           (genGenPointerGet,genConstPointerGet): fixed bitfield access,
2092           (genPointerGet,genPointerSet): fixed handling of __code pointers,
2093             pointers to constant data are no longer assumed to point to __code
2094             space, removed invalid pointer types,
2095           (bitpatternFromVal): retrieve the PICs representation of an integer
2096             or float literal,
2097           (genDataPointerSet): fixed assigning to po_immediate operands,
2098           (genGenPointerSet): implemented as library call,
2099           (genIfx): fixed incorrect condition,
2100           (genAddrOf): limit generic pointers' addresses to 2 bytes,
2101             provide GPOINTER tag according to destination's storage class,
2102           (genCast): added code to handle casting to generic pointers, added
2103             sign-/zero extension of the result
2104           (aop_isLitLike,op_isLitLike): fixed handling of immediates
2105         * src/pic/gen.h: added macros to access IRP bit in STATUS register
2106         * src/pic/genarith.c (genAddLit): use min(result's,left's) size, sign
2107           extend the result
2108         * src/pic/glue.c (is_shared_address,is_shared): check whether a given
2109           address/register resides in the shared banks
2110           (emitSymbolToFile): improved to handle global and `pinned' symbols,
2111             put all variables into separate sections (have the linker arrange
2112             them)
2113           (picglue): put init code and interrupt handlers in separate sections
2114         * src/pic/main.c: added port specific options table, modified to PORT
2115           structure to make GPOINTERs 3 byte, added pic14_options
2116           (_pic14_do_link): private linking routine (update paths to libraries,
2117             add libsdcc.lib by default)
2118         * src/pic/main.h: declare pic14_options
2119         * src/pic/pcode.c: fixed instructions i/o relations,
2120           (RegCond): reverted to correct version,
2121           (newpCodeOpLit): truncate literals to 8 bit,
2122           (genericPrint): added debug output,
2123           (getRegFromInstruction): fixed for various operand types, simplified
2124           (BuildFlow): fixed broken handling of isntructions with labels
2125           (LinkFlow): start at last instruction in flow (skip trailing comments),
2126             pass the flow on to the next instruction after CALL
2127           (pCodeReplace): NEW, replace a pCode and move meta data to the new one
2128           (insertPCodeInstruction): fixed inserting after a skip instruction,
2129           (DoBankSelect): fixed for labeled instructions
2130           (OptimizepBlock): honor --nopeep switch
2131           (AnalyzeFlow,ReuseReg): prevent crash on source files with no function
2132         * src/pic/pcodepeep.c (pCodePeepMatchRule): prevent NULL pointer accesses
2133         * src/pic/pcoderegs.c (regIsLocal): NEW, check visibility of a register
2134           (pCodeOptime2pCodes): allow disabling this optimization via
2135             --no-pcode-opt due seldomly occuring bugs, fixed some conditions
2136             but is still buggy), started implementation of a dataflow based
2137             pCode optimization (CSE + dead code elimination)
2138           (pCodeRegMapLiveRangesInFlow): removed bogus inCond
2139         * src/pic/ralloc.c (initStack): renamed stack registers to STK%d, the new
2140           names are independant of the stack location and therefore portable across
2141           devices
2142
2143 2005-10-27 Maarten Brock <sourceforge.brock AT dse.nl>
2144
2145         * src/mcs51/ralloc.c (bitType): added to detect bit variables,
2146           (selectSpil): fixed bug 1337835 by not spilling bit variables
2147         * support/regression/tests/bug1337835.c: added test for this bug
2148         * src/mcs51/peeph.def: restart after rule 3.c,
2149           addded rules 263.x to optimize loading constants
2150
2151 2005-10-26 Raphael Neider <rneider AT web.de>
2152
2153         * src/SDCCsymt.c (compStructSize): allow signed bitfields for PIC ports
2154         * src/pic16/gen.c (genUnpackBits): support signed bitfields,
2155           (genAssign): emit warning when casting literals to generic pointer
2156             type, also applies when taking the address of a fixed variable,
2157           (genCast): improved casting to generic pointers
2158         * src/pic16/glue.c (pic16emitStaticSeg): fixed(?) handling of fixed
2159           extern variables, added verbose error message
2160         * device/include/pic16/{string.h,errno.h}: added #pragma library c
2161
2162 2005-10-26 Bernhard Held <bernhard AT bernhardheld.de>
2163
2164         * src/mcs51/gen.c (genMinus): fixed bug 1270906: reverse subtraction,
2165         carry must be complemented too
2166         * src/mcs51/peeph.def: addded rule 262 to remove double cpl c, which
2167         could be emitted by genMinus
2168         * src/SDCCval.c (constVal): fixed bug 1305065
2169
2170 2005-10-25 Bernhard Held <bernhard AT bernhardheld.de>
2171
2172         * src/SDCCast.c (addCast): added promotion for bit variables
2173         (decorateType): emit W_COMPLEMENT before the problem vanishes behind
2174         promotion casts + optimisation
2175         (optimizeGetWord): fix warning 'i' might be used uninitialized
2176         * src/mcs51/gen.c (genCpl): removed W_COMPLEMENT
2177         * src/ds390/gen.c (genCpl): removed W_COMPLEMENT
2178
2179 2005-10-24 Bernhard Held <bernhard AT bernhardheld.de>
2180
2181         * src/SDCCicode.c (ast2iCode): reverted to 1.224 because of regression:
2182         all chars are promoted to int; promotion should be handled in SDCCast.c
2183
2184 2005-10-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2185
2186         * device/lib/_strcmp.c: Fixed bug 1326457
2187
2188 2005-10-11 Raphael Neider <rneider AT web.de>
2189
2190         * device/lib/pic16/libio/i2c.ignore: added 1320, fixes broken builds
2191         * device/lib/pic16/libdev/pic18f1320.c: added 1320's device library
2192
2193 2005-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2194
2195         * src/SDCC.y (AT): fixed bug with sfr32 addresses when built with GCC
2196         * support/regression/tests/sfr16.c: added test for the sfr32 bug
2197
2198 2005-10-04 Raphael Neider <rneider AT web.de>
2199
2200         * device/include/pic16/pic18fregs.h, src/pic16/devices.inc,
2201           device/lib/pic16/pics.all: added pic18f1320
2202         * src/pic16/pcode.c (mnem2key): fixed prototype's argument mismatch
2203
2204 2005-09-30 Raphael Neider <rneider AT web.de>
2205
2206         * src/pic16/device.c (Pics16[]): moved device descriptions to devices.inc
2207         * src/pic16/devices.inc: NEW, provides device descriptions
2208         * src/pic16/gen.c (genInline): fixed handling of ';'-comments
2209
2210 2005-09-26 Maarten Brock <sourceforge.brock AT dse.nl>
2211
2212         * src/SDCCicode.c (operandOperation): added GETABIT, GETBYTE, GETWORD and
2213           GETHBIT
2214
2215 2005-09-25 Maarten Brock <sourceforge.brock AT dse.nl>
2216
2217         * doc/sdccman.lyx: updated Highest Order Bit documentation,
2218           documented Any Order Bit, Higher Order Byte and Higher Order Word
2219         * src/SDCC.y: added tokens GETABIT, GETBYTE, GETWORD
2220         * src/SDCCast.c (optimizeGetHbit): updated to also accept bool=expr&(1<<n),
2221           (optimizeGetAbit): new, to get any bit, not only the high bit,
2222           (optimizeGetByte): new, to get a byte from a (long) int: expr>>(8*n),
2223           (optimizeGetWord): new, to get a word from a long int: expr>>(8*n),
2224           (isConformingBody): also check GETABIT, GETBYTE, GETWORD,
2225           (decorateType): '&': also try GETABIT, GETBYTE, GETWORD optimization,
2226             RIGHT_OP: also try GETBYTE, GETWORD optimization,
2227             GETABIT, GETBYTE, GETWORD: decorate them,
2228           (isShiftRightLitVal, isBitAndPowOf2): new helper functions,
2229           (ast_print): added GETABIT, GETBYTE, GETWORD
2230         * src/SDCCcse.c (isSignedOp): added GETABIT, GETBYTE, GETWORD
2231         * src/SDCCicode.c (codeTable): added GETABIT, GETBYTE, GETWORD,
2232           (geniCodeBinary): new generic binary icode,
2233           (ast2iCode): added GETABIT, GETBYTE, GETWORD
2234         * src/port.h: updated comment for PORT.hasExtBitOp
2235         * src/mcs51/gen.c (genGetAbit): new, to get any single bit,
2236           (genGetByte): new, to get a single byte,
2237           (genGetWord): new, to get a word from a long,
2238           (gen51Code): added GETABIT, GETBYTE, GETWORD
2239         * src/mcs51/main.c (hasExtBitOp): added GETABIT, GETBYTE, GETWORD
2240
2241 2005-09-23 Raphael Neider <rneider AT web.de>
2242
2243         * configure.in, configure: have device/lib/pic configured
2244         * device/lib/Makefile.in: added model-pic14
2245         * device/lib/clean.mk: added pic/ to clean rule
2246         * device/lib/pic: added rudimentary pic14 library providing support
2247           functions for multiplication/division/generic pointer access
2248         * src/SDCCopt.c (convilong): mark support functions as extern
2249           for pic14 port as well
2250         * src/pic/gen.c (genMult): added assertions,
2251           (genpic14Code): emit warning on unhandled iCodes
2252         * src/pic/main.c (_hasNativeMulFor): return true only for 8x8 bit
2253         * src/pic/pcode.c (pCodeOpCopy),
2254         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed handling of various
2255           pCodeOpReg-subtypes (PO_{STATUS,INTCON,PCL,PCLATH,PCLATU,BSR,
2256           SFR_REGISTER}), made safe for future extensions
2257         * src/pic16/pcode.c (pic16_safepCodeUnlink): allow for removal of
2258           instructions even if preceeded by SKIP instructions (also remove
2259           them); removed unused code
2260         * src/pic16/pcode.h: added arg2 to pCodeOpLit to match pCodeOpLit2,
2261           prevents leaving parts of the structure uninitialized after copying
2262
2263 2005-09-22 Maarten Brock <sourceforge.brock AT dse.nl>
2264
2265         * src/mcs51/gen.c (genMinus): fix for undetected bug introduced 3 months
2266           ago by me
2267         * support/regression/tests/addsub.c: added test for the bug
2268
2269 2005-09-21 Raphael Neider <rneider AT web.de>
2270
2271         * device/include/pic16/pic18f1220.h,
2272           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
2273         * device/lib/pic16/Makefile.rules: added missing opening paren
2274         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
2275           are provided in genutils.c,
2276           (genUminusFloat,genUminus,genCmpEq): added asserts on different
2277           operand/result sizes,
2278           (genCmp): assert on NULL pointers first, then check deref'ed values
2279         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
2280           result size
2281
2282 2005-09-18 Raphael Neider <rneider AT web.de>
2283
2284         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
2285           as these are now unused,
2286           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
2287         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
2288           local, avoids uninitialized pointer dereference on r->name
2289         * src/pic16/ralloc.c (newReg): fixed indentation
2290
2291 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
2292
2293         * src/SDCCval.c (constVal): fixed bug 730366
2294         * support/Util/SDCCerr.c,
2295         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
2296
2297 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2298
2299         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
2300
2301 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
2302
2303         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
2304
2305 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2306
2307         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
2308           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2309         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
2310           (hex2dec): made hex_digit unsigned char, removed ascii dependance
2311         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
2312         * packihx/packihx.c (hexDigit): made c unsigned char
2313         * as/mcs51/lklibr.c (fndsym),
2314         * link/z80/lkgb.c (gb),
2315         * link/z80/lklibr.c (fndsym),
2316         * link/z80/lkrloc.c (relr),
2317         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
2318         * src/SDCC.lex (checkCurrFile, process_pragma),
2319         * src/SDCCglue.c (spacesToUnderscores),
2320         * src/SDCCmain.c (setParseWithComma, processFile),
2321         * src/asm.c (tvsprintf, printCLine),
2322         * src/avr/gen.c (emitcode, aopPut),
2323         * src/ds390/gen.c (emitcode),
2324         * src/hc08/gen.c (emitcode, emitinline),
2325         * src/mcs51/gen.c (emitcode, genInline),
2326         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2327           tokenizeLineNode),
2328         * src/pic/ralloc.c (debugLog),
2329         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
2330           tokenizeLineNode),
2331         * src/pic16/ralloc.c (debugLog),
2332         * src/z80/main.c (_process_pragma):
2333            made all ctype.h function calls safe
2334         * src/SDCCopt.c: include math.h for fabs
2335         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
2336           and used them throughout the code to make ctype.h function calls safe
2337         * src/ds390/main.c (asmLineNodeFromLineNode),
2338         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
2339         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
2340            unsigned char*
2341         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
2342           (newpCodeAsmDir): made ctype.h function calls safe
2343         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
2344           pic16_emitcode):  made lbp unsigned char*
2345         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
2346           (pic16_newpCodeAsmDir): made ctype.h function calls safe
2347         * src/xa51/gen.c (emitcode),
2348         * src/z80/gen.c (_emit2): made lbp unsigned char*
2349         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
2350            char*
2351
2352 2005-09-05 Raphael Neider <rneider AT web.de>
2353
2354         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
2355           access bank splitpoint
2356
2357 2005-09-05 Raphael Neider <rneider AT web.de>
2358
2359         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
2360
2361 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2362
2363         * .version: changed to version 2.5.3
2364         * doc/sdccman.lyx: changed version to 2.5.3,
2365           documented --codeseg and --constseg and pragma codeseg and constseg,
2366           documented bit parameters (reentrant) and bit returning
2367         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
2368            currFunc->recvSize, but is this ok for all ports?
2369           (ast2iCode): result of ~ on unsigned char must be cast to int for
2370            bool to work
2371         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
2372           function pointers in bit space
2373         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
2374           (processFuncArgs): call port.reg_parm() with reentrancy info
2375         * src/port.h,
2376         * src/avr/main.c,
2377         * src/ds390/main.c,
2378         * src/hc08/main.c,
2379         * src/pic/main.c,
2380         * src/pic16/main.c,
2381         * src/xa51/main.c,
2382         * src/z80/main.c: port.reg_parm prototype extended with
2383           "bool reentrant" parameter
2384         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
2385           options.stackAuto for allocating bit register parameters
2386         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
2387           (genSend): set BitBankUsed if it is,
2388           (selectRegBank): factored out of genCall for use in genPcall,
2389           (genCall): removed redundant dtype assignmen, use selectRegBank,
2390           (genPcall): handle returning in Carry properly, save in F0 if needed,
2391           (genReceive): handle bit register parameters
2392         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
2393           (mcs51_assignRegisters): enable bit registers for all reentrant
2394            functions and don't set BitBankUsed unconditionally
2395         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
2396         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
2397         * support/regression/tests/funptrs.c: added tests for BOOL and for return
2398
2399 2005-08-27 Borut Razem <borut.razem AT siol.net>
2400
2401         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
2402         ppc-osx (Darwin) does not support -u option. It seems that it is
2403         supported only on Linux - GNU cp
2404
2405 2005-08-25 Borut Razem <borut.razem AT siol.net>
2406
2407         * sim/ucsim/gui.src/serio.src/Makefile.in,
2408           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
2409           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2410           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
2411           install and strip, since the strip at /usr/ccs/bin should be used
2412           on solaris
2413
2414 2005-08-24 Borut Razem <borut.razem AT siol.net>
2415
2416         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
2417
2418 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
2419
2420         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
2421         ffffffffu
2422
2423 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
2424
2425         * as/mcs51/aslink.h: completed lkrloc.c prototypes
2426         * as/mcs51/lkmain.c (link_main): fixed warning
2427         * device/include/stdbool.h: ds390 has no advanced bit support yet
2428         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
2429         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
2430         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
2431           and updated their macros
2432         * src/SDCCval.c (constVal): updated comment for renamed b_long
2433
2434 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
2435
2436         * as/mcs51/asdata.c: changed ctype['['] to BINOP
2437         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
2438           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
2439           (oprio): set priority for '['
2440         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
2441            and adb_24_bit
2442         * as/mcs51/asm.h: added defines R_BIT and S_BIT
2443         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
2444         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
2445         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
2446           added overlayable BIT_BANK area
2447         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
2448           (summary2): explain 'T' in legenda
2449         * as/mcs51/lkrloc.c: replaced old K&R style,
2450           (relr): added R_BIT processing,
2451           (errmsg): added "Bit-addressable relocation error",
2452           (adb_bit): added for converting from byte- to bit-addressable space,
2453           (adb_24_bit): added for converting from byte- to bit-addressable space
2454         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
2455            used in reentrant functions now even as return value
2456         * device/lib/_gptrput.c (_gptrput): removed obsolete code
2457         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
2458           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
2459         * src/SDCCglobl.h: added indicator BitBankUsed
2460         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
2461            the bit registers b0-b7
2462         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
2463           (geniCodeCast): fixed bug 1263853,
2464           (geniCodeLogicAndOr): put result in bool or char,
2465           (geniCodeReceive): added parameter func for accessing the return type,
2466           (geniCodeFunctionBody): pass func to geniCodeReceive
2467         * src/SDCCmain.c: added indicator BitBankUsed
2468         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
2469         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
2470           (checkSClass): don't put automatic bool/bit on stack,
2471           (checkFunction): removed check on function cannot return bit
2472         * src/SDCCsymt.h: added newBoolLink prototype
2473         * src/mcs51/gen.c (rb1regs): added bit registers,
2474           (movc): created for assigning to carry,
2475           (pushReg, popReg): created for pushing registers,
2476           (sameRegs): check both AOP_REG and AOP_CRY types,
2477           (aopOp): handle bit registers,
2478           (aopPut): optimization no self-assign,
2479           (saveRegisters): push reg->base (bits) only once for bit registers,
2480            and use pushReg,
2481           (unsaveRegisters): pop reg->base only once and use popReg,
2482           (assignResultValue): added parameter func and return in carry for bits,
2483           (genIpush): optimization no reload in A if not changed,
2484           (genSend): bit parameters in reentrant functions are passed in bit
2485            registers by first assigning to bits in B, then save registers and
2486            copy B to bits,
2487           (genCall): handle returning in Carry properly, save it in F0 if needed,
2488           (genPcall): updated assignResultValue call, this is not safe yet for bit
2489            returning function !!!
2490           (genFunction): don't generate equ's for bit registers and use pushReg,
2491           (genEndFunction): take care of bit returning functions and use popReg,
2492           (genRet): return bit in Carry,
2493           (genIfx): optimize bit registers and other directly addressable bits,
2494           (genReceive): updated assignResultValue call
2495         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
2496           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
2497            registers when using stack-auto
2498         * src/mcs51/ralloc.c (_G): added allBitregs,
2499           (regs8051): added the bit registers,
2500           (createStackSpil): use macro IS_BIT,
2501           (getRegBit): added to allocate a bit register, else spill,
2502           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
2503           (updateRegUsage): factored out to ease stepping while debugging,
2504           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
2505            also allocate bit registers,
2506           (fillGaps): handle bit registers,
2507           (findAllBitregs): added to create bit vector with all bit registers,
2508           (mcs51_allBitregs): returns this bit vector,
2509           (mcs51_assignRegisters): when using stack-auto use bit registers for
2510            passing parameters and creating local variables
2511         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
2512
2513 2005-08-22 Borut Razem <borut.razem AT siol.net>
2514
2515         * device/lib/Makefile.in: replaced find option -or with -o
2516           to make it run on solaris
2517
2518 2005-08-22 Raphael Neider <rneider AT web.de>
2519
2520         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
2521           fixes #1265442 (crash on Solaris)
2522
2523 2005-08-20 Borut Razem <borut.razem AT siol.net>
2524
2525         * configure, configure.in: added tests for libsocket and libnsl libraries,
2526           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
2527           from support/regression/Makefile.in
2528         * support/regression/Makefile.in: added
2529         * device/lib/pic16/Makefile.common.in: force make to use bash shell
2530         * sim/ucsim/libtool: regenerated on sparc-solaris
2531         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
2532           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
2533           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
2534           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
2535           sparc-solaris, which doesn't use GNU ld linker
2536         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
2537         * as/Makefile: find on sparc-solaris does not support -maxdepth option
2538
2539 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
2540
2541         * src/mcs51/peeph.def: updated comments
2542
2543 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2544
2545         * device/lib/_gptrget.c,
2546         * device/lib/_gptrput.c: slightly shorter
2547         * doc/sdccman.lyx: incremented version
2548         * src/mcs51/peeph.def: moved peephole comments to the line of first
2549           change to better keep line correlation, reanimated 186.e
2550         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
2551
2552 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2553
2554         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
2555           David Saxton with quotes around file name.
2556
2557 2005-08-15 Borut Razem <borut.razem AT siol.net>
2558
2559         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
2560           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
2561           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
2562           make tests run on x86_64 platform
2563
2564 2005-08-13 Raphael Neider <rneider AT web.de>
2565
2566         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
2567           as it might be executed DURING a build (parallel make is wonderful)
2568
2569 2005-08-13 Raphael Neider <rneider AT web.de>
2570
2571         * device/lib/Makefile.in (port-specific-objects-pic16):
2572           revert to cp $(PORT)/bin/*.* $(PORTDIR)
2573         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
2574           dependency
2575         * device/lib/pic16/Makefile.rules: build subdirs before creating
2576           the library, removed builddir rule, create $(builddir) early in
2577           recurse rule, use empty recurse rule for leaf directories
2578         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
2579           mkdir errors (race condition), removed duplicate suffix "hex"
2580           from clean rules
2581         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
2582         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
2583           prevents mkdir -p from aborting on Alpha
2584
2585 2005-08-12 Raphael Neider <rneider AT web.de>
2586
2587         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
2588           db-statements in order to allow for arrays of pointers in code
2589           sections to be placed without interspersed 0-padding, fixes
2590           bug #1256215
2591         * (emitStatistics): fixed division by zero for pic18f1220
2592         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
2593           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
2594         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
2595         * (pic16_pCodeConstString): keep track of already emitted string
2596           literals to prevent "duplicate definitions of symbol _str_NR"
2597         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
2598           debug message
2599         * device/lib/Makefile.in: ignore failing PIC16 library builds
2600         * device/lib/pic16/Makefile: do not build if gputils are missing
2601         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
2602
2603 2005-08-10 Raphael Neider <rneider AT web.de>
2604
2605         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
2606           my last commit)
2607
2608 2005-08-10 Raphael Neider <rneider AT web.de>
2609
2610         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
2611           Rokas' patch to add the new fixed point type "__fixed16x16"
2612         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
2613           functions for __fixed16x16 arithmetics
2614         * device/lib/pic16: reimplemented the build system to support
2615           a separate build directory, better handling of libio (create
2616           the library in a separate subdir for each architecture) and
2617           easier configuration (centralized in Makefile.common)
2618
2619 2005-08-07 Raphael Neider <rneider AT web.de>
2620
2621         * src/pic16/gen.c (genrshTwo): fixed sign extension
2622         * src/pic16/device.c: added pic18f2320, 4220 and 4320
2623         * device/include/pic16/pic18f2220.h: changed some bit definitions,
2624           added T0CONbits
2625         * device/include/pic16/pic18f4220.h: NEW, header for
2626           pic18f4220 and pic18f4320
2627         * device/include/pic16/pic18fregs.h: added new devices,
2628           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
2629         * device/include/pic16/signal.h: resolved name clashes
2630           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
2631           to also allow testing for interrupt enable bits, added
2632           comments on how to use the macros
2633         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
2634         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
2635           register definitions for the devices
2636         * device/lib/pic16/pics.all: added new devices
2637         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
2638           allocated memory
2639         * device/lib/pic16/libc/stdlib/memfree: do not count
2640           the block header as free memory
2641         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
2642           simplified and added missing end-of-blocklist-marker
2643           (reported by Peter Onion, fixes #1252814)
2644         * (_mergeHeapBlock): fixed loop condition
2645         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
2646           len==0, restructured code
2647         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
2648           up a bit, reduced bitfield accesses, prevent endless loops
2649           in case of heap corruption
2650         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
2651           "unreferenced arguments/must return a value" warnings
2652         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
2653           replaced BAUDREG with SPBRG
2654         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
2655           device/lib/pic16/debug/gstack/gstack.c: replaced
2656           _naked, _asm, _endasm with __naked, __asm, __endasm
2657
2658 2005-08-05 Raphael Neider <rneider AT web.de>
2659
2660         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
2661           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
2662
2663 2005-08-05 Borut Razem <borut.razem AT siol.net>
2664
2665         * device/lib/Makefile.in: added missing ';'
2666         * configure: removed ^M characters
2667
2668 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2669
2670         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
2671           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
2672           License
2673
2674 2005-08-04 Borut Razem <borut.razem AT siol.net>
2675
2676         * configure.in: pic16 libraries build 2nd try - enable running
2677           configure in device/lib/pic16
2678         * configure: regenerated from configure.in
2679         * device/lib/Makefile.in: create $(PORT)/bin directory
2680
2681 2005-08-03 Raphael Neider <rneider AT web.de>
2682
2683         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
2684           to get/set values via pointers
2685         * (genUnpackBits,genPackBits): changed detection of
2686           ptr->bitfield vs. sym.bitfield, fixed access via generic
2687           pointers, removed dead (wrong) code for multibyte bitfields
2688         * (genNearPointerGet, genGenPointerGet): removed useless code,
2689           fixed bitfield detection, fixes #1250594
2690         * (genNearPointerSet): removed useless code
2691         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
2692           and introduced macro pic16_emitpcode that conditionally emits
2693           the origin of the following pCode (useful for debugging SDCC)
2694         * src/pic16/pcode.c: changed (and disabled) some debug outputs
2695         * (createDefmap): fixed handling of LFSR for --optimize-df
2696
2697 2005-08-02 Borut Razem <borut.razem AT siol.net>
2698
2699         * device/lib/Makefile.in: pic16 libraries build enabled since
2700           gputils-0.13.2 are now localy installed at sourceforge's compile farm
2701
2702 2005-08-02 Raphael Neider <rneider AT web.de>
2703
2704         * src/pic16/gen.c (genPackBits): removed deprecated warning
2705         * (genGenPointerSet): fixed bitfield detection
2706
2707 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2708
2709         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
2710
2711 2005-07-31 Raphael Neider <rneider AT web.de>
2712
2713         * device/lib/pic16/libdev/pic18f458.c,
2714           device/include/pic16/pic18f458.h: added missing T0CONbits
2715
2716 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2717
2718         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
2719
2720 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2721
2722         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
2723
2724 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2725
2726         * device/include/mcs51/at89c51ed2.h: added.
2727
2728 2005-07-23 Raphael Neider <rneider AT web.de>
2729
2730         * src/pic/gen.h: added emitpcode macro for debugging
2731         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
2732           and replace by macro adding debug information on demand
2733         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
2734         * (gencjne): tried to fix; replaced with correct (slower) code
2735         * (gen{Unp,P}ackBits): fixed single bit access
2736         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
2737         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
2738           previous instruction
2739         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
2740           register has to be handled with care (forbidding movement
2741           of assignments/uses, removing assignments completely, ...)
2742         * (pCodeOptime2pCodes): make use of regIsSpecial
2743         * added lots of debugging output (commented out)
2744         * src/pic/rallloc.c (deassignLRs): prevent operand registers
2745           from being reused as result UNLESS it is known to work
2746
2747 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
2748
2749         * support/Util/dbuf.h: include <stddef.h> for size_t
2750         * .version: changed to version 2.5.2
2751
2752 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2753
2754         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
2755
2756 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2757
2758         * src/hc08/gen.c (genMinus): fixed bug #1241835,
2759           (genModOneByte): removed needless psha/pula
2760
2761 2005-07-22 Raphael Neider <rneider AT web.de>
2762
2763         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
2764           have PIC14 handled like PIC16, fixes broken pic14 linker calls
2765         * src/pic/gen.c (resolveIfx): do not "invent" labels
2766         * (genSkipc): changed to positive logic
2767         * (genSkipCond): removed as no longer needed
2768         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
2769           backport from PIC16
2770         * (genLeftShift): check operands are in different registers
2771         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
2772           INCF does not update CARRY...
2773         * src/pic/main.c: fixed _linkCmd
2774         * src/pic/pcode.c (unlinkpCode): added inactive code
2775         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
2776           alive (do not assign result and operand overlapping registers)
2777
2778 2005-07-22 Raphael Neider <rneider AT web.de>
2779
2780         * src/pic/device.c (dump_sfr): replaced register declaration with
2781           call to emitSymbolToFile() to avoid duplicate symbols
2782         * (assignRelocatableRegisters): do not declare external symbols
2783         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
2784           right (take size of type, not etype)
2785         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
2786         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
2787         * (packRegsForAccUse): disabled assignment of WREG as
2788           the result reg to prevent occurence of just fixed #1235003,
2789           fixes #1242954
2790         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
2791           symbols (avoids duplicate symbols in .asm file)
2792         * (pic14emitRegularMap): use emitSymbolToFile()
2793         * src/pic/gen.c (aopOp): fixed spillLocation handling
2794         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
2795         * (genDataPointerSet): removed unneccessary variables/output
2796
2797 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
2798
2799         * as/mcs51/lkarea.c: enlarged codemap for banked memory
2800         * device/lib/mcs51/crtbank.asm: added # to 0x0F
2801
2802 2005-07-21 Raphael Neider <rneider AT web.de>
2803
2804         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
2805           architecture cannot handle them efficiently, fixes bug #1235003
2806         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
2807           check for empty sets before using them (fixes bug #1232190)
2808
2809 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
2810
2811         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
2812           (lnksect2): generate warnings for memory overlap
2813         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
2814           constseg to set the name of these segments so you can instruct the linker
2815           to place them in banks
2816         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
2817         * src/SDCCglobl.h: added MODEL_HUGE to enum,
2818           added code_seg and const_seg to options
2819         * src/SDCCglue.c (emitMaps): use options.const_seg,
2820           (createInterruptVect): put interrupt vectors in segment HOME,
2821           (glue): put HOME before static segment and put the main glue in HOME,
2822           (glue): use options.code_seg
2823         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
2824         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
2825           these segments so you can instruct the linker to place them in banks
2826           (linkEdit): use code_loc for HOME segment which should be the first
2827           segment in code memory now
2828         * src/SDCCmem.c: fixed more stuff like bug 1238386
2829         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
2830           (changePointer): don't change function pointers to code pointers for
2831           banked functions,
2832           (compareType): added exceptional check for banked function pointers
2833         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
2834         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
2835           after static in code memory
2836         * src/mcs51/gen.c: added aopLiteralLong prototype,
2837           (aopForSym): use getSize for functions,
2838           (genCall): generate banked calls over one trampoline __sdcc_banked_call
2839           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
2840           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
2841           the segment,
2842           (genPcall): use call for literal function pointers and generate banked
2843           calls over the one trampoline so there's only one place for the user to
2844           modify according to his/hers hardware,
2845           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
2846           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
2847         * src/mcs51/main.c: added keyword banked,
2848           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
2849         * support/Util/SDCCerr.c,
2850         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
2851           needed for passing the bank and address to the trampoline
2852         * device/lib/mcs51/crtbank.asm: added for bankswitching
2853         * device/lib/mcs51/Makefile: added crtbank
2854
2855 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2856
2857         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
2858           for fields at offset 0 of a struct or union as reported
2859           on 2005-07-07 in the developer mailing list.
2860
2861 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
2862
2863         * src/SDCCmem.c: fixed bug 1238386
2864
2865 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2866
2867         * src/mcs51/peeph.def: added labelrefcounting for peepholes
2868           (patch #1144962), added peephole 300, enabled 259.x
2869         * doc/sdccman.lyx: removed screenshot and provided link instead
2870
2871 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2872
2873         * doc/sdccman.lyx: added section about debugging with ddd
2874         * doc/figures/ddd_example.eps: screenshot of debugging session
2875
2876 2005-07-04 Raphael Neider <rneider AT web.de>
2877
2878         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
2879           like CODE pointers, fixes #1115683
2880         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
2881           call, fixes bugs #1232211, #1228110,
2882           fixed wrong casts to pCodeFlow from pCodeInstructions
2883
2884 2005-07-04 Raphael Neider <rneider AT web.de>
2885
2886         * src/pic/gen.c (popGet): changed assert to allow for
2887           bit operands
2888         * (popGetAddr): changed signature to provide
2889           an additional index, patched all call sites
2890         * (genCmpEq): handle literal-like operands correctly
2891         * (genAddrOf): added sanity checks on __code/__data pointers
2892         * (genAssign): added handling of symbols from __code section
2893         * (gencjne): do not generate code for comparisons whose result
2894           is neither stored nor used, fixes bug #1171114
2895         * (AccLsh, AccRsh): operate on operand instead of WREG
2896         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
2897           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
2898           by known count
2899         * rewrote complete shift-by-literal logic, commented unused
2900           functions out
2901         * (genConstPointerGet): get multiple bytes (if result size > 1),
2902           fixed handling of non-immediate addresses
2903         * (genPointerGet): handle CODE pointers like CONST pointers
2904         * (genpic14Code): insert C-SRC lines as Cource-pCodes
2905         * ({aop,op}_isLitLike): NEW, single place to decide whether an
2906           operand is to be treated as a literal or not
2907         * (mov2w,genPcall,genCmpEq),
2908           src/pic/genarith.c: use aop_isLitLike() to decide between
2909           literal/register contents
2910         * (addSign): added missing offset
2911         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
2912           only emit comment in debug-mode,
2913           use {aop,op}_isLitLike throughout the file
2914         * src/pic/glue.c: fix initializers for pointers (work in progress)
2915         * src/pic/pcode.c (get_op): honor index on _const symbols
2916         * ({reset,dump}pCodeStatistics): NEW, estimate code size
2917         * (dumppBlock): added pCode size estimation
2918         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
2919           check for IS_SYMOP before OP_SYMBOL'ing
2920         * fixed indentation, compacted switch-statements
2921         * (allocReg): find free register and allocate it instead of
2922           allocating new registers all the time
2923         * (deassignLRs): prevent POINTER_GET's from being assigned the same
2924           registers as its operands (necessary only for multibyte GETs)
2925
2926 2005-07-01 Raphael Neider <rneider AT web.de>
2927
2928         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
2929           debugging .asm-output macros FENTRY + FEXIT
2930         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
2931           way... I wonder...
2932         * (emitpComment): NEW, printf to pCode
2933         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
2934           offset handling
2935         * (popGetAddr): NEW, variant of popGet to access an immediates
2936           high(er) bytes instead of the n'th byte of memory they reference,
2937           replaced popGet with popGetAddr where neccessary
2938         * (genDataPointerGet): reactivated and fixed implementation
2939         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
2940           accesses
2941         * (genDataPointerSet): fixed multibyte assignments
2942         * (genpic14Code): fixed --i-code-in-asm handling
2943         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
2944         * (genPlus): fixed index-out-of-bounds error
2945         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
2946         * src/pic/ralloc.c: added debugging output macro FENTRY2
2947         * (spillThis): fixed indentation, enbraced for-body for clarity
2948         * (rematStr): commented out as now unused
2949         * (regTypeNum): commented out special spill case (overwrites
2950           arbitrary values)
2951         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
2952
2953 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
2954
2955         * doc/sdccman.lyx: documented sfr16/sfr32,
2956           added example for using storage class with function pointers
2957         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
2958
2959 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
2960
2961         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
2962         * device/lib/_itoa.c,
2963         * device/lib/_ltoa.c: optimized codesize
2964         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
2965           but don't know how to suppress the double warning.
2966         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
2967         * support/Util/SDCCerr.c,
2968         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
2969
2970 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
2973           fixed old K&R prototypes
2974         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
2975         * device/lib/_gptrget.c,
2976         * device/lib/_gptrgetc.c,
2977         * device/lib/_gptrput.c: changed versions for new memory indicator values,
2978           also new versions for small generic pointers and banked generic pointers
2979         * src/port.h: added const_name
2980         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
2981         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
2982         * src/SDCCcse.c (findPrevIc): check all associative operators
2983         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
2984         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
2985         * src/SDCCmem.c: updated comments,
2986           set far-space to 0 for pdata, results in optimized code
2987         * src/SDCCmem.h: added macro CONST_NAME
2988         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
2989           moving the info into the highest bits, see also gptrget/gptrput
2990         * src/src.dsp: added sdcc.ico to project files
2991         * src/avr/gen.c (genCast): fixed bug 0x%d
2992         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
2993         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
2994           relation between ptr_type and DCL_TYPE,
2995           (genCast): fixed bug 0x%d
2996         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
2997           (CODE)" for const_name
2998         * src/hc08/gen.c (genCast): fixed bug 0x%d
2999         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
3000           (hc08_port): added "CONST (CODE)" for const_name
3001         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
3002           (aopForRemat, adjustArithmeticResult): disconnected direct relation
3003           between ptr_type and DCL_TYPE,
3004           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
3005           operand* and took AOP() inside function so sfr-ness can be checked,
3006           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
3007           new prototype,
3008           (genFunction, genEndFunction): optimized stack setup,
3009           (genMinus): optimized for literals with ending zeroes (in bytes),
3010           (genCast): fixed bug 0x%d
3011         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
3012           (mcs51_port): added "CONST (CODE)" for const_name
3013         * src/mcs51/peeph.def: made rule 226 more generic
3014         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
3015         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
3016         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
3017         * src/z80/main.c (z80_port): added NULL for const_name,
3018           (gbz80_port): added NULL for const_name
3019         * support/regression/tests/bug663539.c,
3020         * support/regression/tests/sfr16.c: new tests
3021
3022 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3023
3024         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
3025
3026 2005-06-24 Raphael Neider <rneider AT web.de>
3027
3028         * device/lib/pic16/libdev/pic18f[68][567]20.c:
3029           corrected typos...
3030         * device/include/pic16/signal.h: added USBIF
3031           and SIG_USB
3032
3033 2005-06-24 Raphael Neider <rneider AT web.de>
3034
3035         * device/lib/pic16/libdev/pic18f2455.c,
3036           device/include/pic16/pic18f2455.h: NEW
3037         * device/include/pic16/pic18fregs.h,
3038           device/lib/pic16/pics.all,
3039           src/pic16/device.c: added 18f2455
3040         * device/lib/pic16/libdev/pic18f[68][567]20.c,
3041           device/include/pic16/{pic18f[68][567].h,usart.h}:
3042           replaced MULTIPLE_USARTS define with more relaible
3043           compatibility sfrs (for USART access)
3044
3045 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
3046
3047         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
3048           and the output asm file line is printed on two lines.
3049
3050 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3051
3052         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
3053           BGT, BLE, BHI, and BLS instructions
3054         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
3055           genCmpEq): removed
3056         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
3057           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
3058           fixes bug #1216342
3059         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
3060
3061 2005-06-15 Raphael Neider <rneider AT web.de>
3062
3063         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
3064         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
3065         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
3066           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
3067           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
3068
3069 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3070
3071         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
3072           Marcel Telka in bug #1215704
3073
3074 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
3075
3076         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
3077           located in shared memory bank.
3078
3079 2005-05-31 Raphael Neider <rneider AT web.de>
3080
3081         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
3082           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
3083           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
3084
3085 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
3086
3087         * device/lib/_strncpy.c: fixed the fix
3088
3089 2005-05-26 Raphael Neider <rneider AT web.de>
3090
3091         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
3092           initializers with \0, bug #1208187
3093         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
3094           intializers with \0, bug #1208187
3095
3096 2005-05-26 Raphael Neider <rneider AT web.de>
3097
3098         * src/pic16/glue.c (pic16_printIvalChar): fixed string
3099           initializers with \0, bug #1208187
3100         * src/pic16/main.c (_process_pragma): added sanity checks
3101           for stack position and size, emit warnings when appropriate
3102
3103 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
3104
3105         * device/lib/_strncpy.c: fixed not filling with \0
3106
3107 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3108
3109         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
3110           createFunction),
3111         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
3112           compound_statement),
3113         * src/SDCCsymt.h,
3114         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
3115
3116 2005-05-24 Raphael Neider <rneider AT web.de>
3117
3118         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
3119
3120 2005-05-24 Raphael Neider <rneider AT web.de>
3121
3122         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
3123           TRISE definitions, closes bug #1162453
3124
3125 2005-05-22 Raphael Neider <rneider AT web.de>
3126
3127         * src/pic16/main.c (_process_pragma): check for missing
3128           arguments to pragmas code and udata
3129         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
3130           consistency fixes to match other headers (thanks to Jim Paris)
3131         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
3132
3133 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
3134
3135         * src/SDCCicode.c (isOperandEqual): fixed missing ;
3136
3137 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
3138
3139         * support/regression/tests/bug1198642.c: new test
3140         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
3141         * src/SDCCcse.c (findPrevIc): added comment, please have a look
3142         * support/scripts/resource.h,
3143         * support/scripts/resource.rc,
3144         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
3145         * support/scripts/sdcc.ico: added 32x32 icon
3146
3147 2005-05-18 Raphael Neider <rneider AT web.de>
3148
3149         * device/lib/pic16/libdev/pic18f*.c,
3150         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
3151           keywords to "__sfr" and "__at (X)"
3152         * device/include/pic16/pic18fregs.h: added pic18f4520
3153         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
3154           #1203088 (MPLAB compatibility)
3155
3156 2005-05-17 Raphael Neider <rneider AT web.de>
3157
3158         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
3159         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
3160         * device/lib/pic16/pics.all: added new devices
3161         * src/pic16/device.c: added support for pic18f4520
3162
3163 2005-05-16 Raphael Neider <rneider AT web.de>
3164         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
3165         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
3166         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
3167           convenience function for bit access
3168
3169 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3170
3171         * device/lib/printf_large.c: fixed bug 1193299
3172         * support/regression/tests/bug1057979.c: added test %3.3s
3173
3174 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3175
3176         * device/include/mcs51/8051.h,
3177         * device/include/mcs51/8052.h: made parseable with lint
3178         * device/include/mcs51/lint.h: added include file for (sp)lint
3179         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
3180         * doc/cdbfileformat.lyx,
3181         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
3182
3183 2005-05-14 Raphael Neider <rneider AT web.de>
3184
3185         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
3186         * device/lib/pic16/libc/stdlib/itoa.c (new)
3187         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
3188         * device/lib/pic16/libio/Makefile: exclude subdir according to
3189           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
3190         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
3191         * src/pic16/gen.c (genFunction): prevent annoying warning
3192         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
3193           nameclashes on BeOS
3194         * support/cpp2/cppmain.c (cpp_output_string): new
3195         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
3196           fixes bug 1116802
3197
3198 2005-05-13 Borut Razem <borut.razem AT siol.net>
3199
3200         * src/SDCCmain.c (linkEdit): fixed bug 1195202
3201
3202 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3203
3204         * .version: changed to version 2.5.1; back to bleeding edge development
3205
3206 2005-05-11 Borut Razem <borut.razem AT siol.net>
3207
3208         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
3209           generate PDF version 1.3 documents
3210
3211 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3212
3213         * .version: changed to version 2.5.0
3214
3215 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3216
3217         * doc/sdccman.lyx: updated weblinks, index and smaller updates
3218
3219 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3220
3221         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
3222         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
3223         well as many smaller updates.
3224         * .version: changed to version 2.5.0-pre1
3225
3226 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3227
3228         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
3229
3230 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
3231
3232         * support/regression/tests/bug1185672.c: added
3233         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
3234           bug 1185672
3235         * src/mcs51/gen.c (genCall): added comments, made it look safer
3236         * src/mcs51/gen.c (genEndFunction): simplified
3237
3238 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
3239
3240         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
3241
3242 2005-04-14 Borut Razem <borut.razem AT siol.net>
3243
3244         * fixed bug 1045046 - SIGSEGV with really simple code?:
3245           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
3246           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
3247
3248 2005-04-14 Borut Razem <borut.razem AT siol.net>
3249
3250         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
3251           src/pic16/device.h: temporarily disabled experimental #inline pragma
3252           for 2.5.0 release
3253
3254 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
3255
3256         * device/include/z80/stdio.h,
3257         * device/include/z80/string.h: removed these highly incomplete files so
3258           SDCC can use the default ones in device/include/
3259
3260 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3261
3262         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
3263         gcc warning.
3264         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
3265         fix sdcpp warnings.
3266
3267 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3268
3269         * device/include/malloc.h: removed redundant __reentrant prototypes
3270         * device/lib/_mullong.c: added working xstack variant in asm (C version
3271           doesn't pass regression tests)
3272         * device/lib/bpx.c: used __data and made bpx char for mcs51
3273         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
3274           (createFunction): fixed bug with xstackPtr
3275         * src/SDCCcse.c: corrected comments
3276         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
3277           (killDeadCode, eBBlockFromiCode): removed unused code
3278         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
3279           corrected comments
3280         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
3281           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
3282           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
3283           (genModOneByte): fixed warning in MSVC
3284         * src/mcs51/main.c (): added comments
3285         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
3286
3287 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
3288
3289         * src/SDCCmain.c (linkEdit): oops, changed one line too many
3290
3291 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
3292
3293         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
3294
3295 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
3296
3297         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
3298         characters arrays of larger size than the declared one.
3299
3300 2005-04-10 Borut Razem <borut.razem AT siol.net>
3301
3302         * src/pic/gen.c (genInline),
3303           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
3304           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
3305           (findNextInstruction), (findPrevInstruction),
3306           (findInstructionUsingLabel),
3307           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
3308         * src/pic/pcode.c (findLabel): added missing '\n'
3309         * src/src.dsp: added SDCCdwarf2.c to the project
3310
3311 2005-04-09 Borut Razem <borut.razem AT siol.net>
3312
3313         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
3314
3315 2005-04-08 Raphael Neider <rneider AT web.de>
3316
3317         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
3318           into the chain after a given one) and mergeDefmapSymbols (combine
3319           defmap entries for each symbol per pcode)
3320         * (createDefmap): have defmap entries merged in the end
3321         * (defmapReplaceSymRef): split defmap entries covering two accesses to
3322           a symbol before replacing one access type's symbol, merge symbols in
3323           the end (replacement symbol might already have an entry)
3324         * (assignValnums): keep reference to written WREG intact
3325
3326 2005-04-08 Raphael Neider <rneider AT web.de>
3327
3328         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
3329           Alpha)
3330
3331 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
3332
3333         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
3334         bytes
3335
3336 2005-04-07 Raphael Neider <rneider AT web.de>
3337
3338         * device/include/pic16/usart.h: added compatibility defines for
3339           devices with more than one USART
3340         * device/include/pic16/pic18f[68][567]20.h: activated above defines
3341
3342 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3343
3344         * device/lib/Makefile.in: updated for port specific include
3345
3346 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * support/regression/ports/mcs51/spec.mk: added mcs51 include
3349
3350 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
3351
3352         * device/include/8051.h,
3353         * device/include/8052.h,
3354         * device/include/at89S8252.h,
3355         * device/include/at89c55.h,
3356         * device/include/at89x051.h,
3357         * device/include/at89x51.h,
3358         * device/include/at89x52.h,
3359         * device/include/mcs51reg.h,
3360         * device/include/reg51.h,
3361         * device/include/reg764.h,
3362         * device/include/regc515c.h,
3363         * device/include/sab80515.h: (re)moved these 12 files
3364         * device/include/mcs51/8051.h,
3365         * device/include/mcs51/8052.h,
3366         * device/include/mcs51/at89S8252.h,
3367         * device/include/mcs51/at89c55.h,
3368         * device/include/mcs51/at89x051.h,
3369         * device/include/mcs51/at89x51.h,
3370         * device/include/mcs51/at89x52.h,
3371         * device/include/mcs51/mcs51reg.h,
3372         * device/include/mcs51/reg51.h,
3373         * device/include/mcs51/reg764.h,
3374         * device/include/mcs51/regc515c.h,
3375         * device/include/mcs51/sab80515.h: and added them here
3376
3377 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
3378
3379         * device/include/stdarg.h: changed SDCC specific keywords to double
3380           underlined form.
3381         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
3382           mcs51 and ds390.
3383         * device/include/hc08/mc68hc908gp32.h,
3384         * device/include/hc08/mc68hc908jb8.h,
3385         * device/include/hc08/mc68hc908jkjl.h,
3386         * device/include/hc08/mc68hc908qy.h: fixed comments
3387         * device/include/mcs51/README: updated
3388         * device/include/mcs51/c8051f120.h: added PINRSF
3389         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
3390         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
3391           amidst code. Also inline is not supported.
3392
3393 2005-04-06 Raphael Neider <rneider AT web.de>
3394
3395         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
3396         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
3397           callers stack/frame pointers
3398
3399 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
3400
3401         * device/include/pic16/usart.h: added, missing in previous commit,
3402         * device/include/pic16/adc.h: fixed typo,
3403         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
3404         commit,
3405         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
3406         <p18fxxx.inc>
3407         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
3408         uninitialized because a bug appears with gplink
3409         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
3410         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
3411         complains for unrecognised option
3412
3413 2005-04-05 Raphael Neider <rneider AT web.de>
3414
3415         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
3416           structs as well (using memcpy)
3417         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
3418           on ISRs (GOTO has no label)
3419         * src/pic16/device.h: added OF_OPTIMIZE_DF
3420         * src/pic16/main.c: added compiler switch --optimize-df to enable the
3421           new data flow analysis/optimization
3422         * src/pic16/pcode.c: added (prototypes for and implementation of)
3423           dataflow analysis functions, fixed pCodeInstructions' inCond and
3424           outCond values, made RCALL a branch instruction
3425         * (pic16_unlinkpCode): keep C line if possible
3426         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
3427           C line moved if possible
3428         * (pic16_getRegFrompCodeOp): NEW, improved version of...
3429         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
3430           to use new pic16_getRegFrompCodeOp (works for more SFRs)
3431         * (pic16_BuildFlow): fixed skip instructions with label (did not start
3432           new flow)
3433         * (pic16_getJumptabpCode): NEW, needed in...
3434         * (LinkFlow): fixed handling of jumptables, calls and conditional
3435           branches
3436         * (pic16_InsertCommentAfter): NEW
3437         * (pic16_pCodeReplace): made verbose and flow preserving
3438         * (AnalyzeFlow): added call to data flow analysis
3439         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
3440         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
3441         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
3442
3443 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3444
3445         * src/SDCCast.c (decorateType): fixed bug #1105626
3446
3447 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
3448
3449         * device/include/asm/pic16/features.h,
3450         * pic18f*.h headers,
3451         * device/include/pic16/adc.h,
3452         * device/include/pic16/delay.h,
3453         * device/include/pic16/i2c.h,
3454         * device/include/pic16/malloc.h,
3455         * device/include/pic16/stdio.h,
3456         * device/include/pic16/stdlib.h,
3457         * device/include/pic16/string.h,
3458         * device/lib/pic16/libc/stdio/printf_tiny.c,
3459         * device/lib/pic16/libc/stdio/printf_small.c,
3460         * device/lib/pic16/libc/stdio/strmgpsim.c,
3461         * device/lib/pic16/libc/stdio/strmmssp.c,
3462         * device/lib/pic16/libc/stdio/strmusart.c,
3463         * device/lib/pic16/libc/stdio/vfprintf.c,
3464         * device/lib/pic16/libc/stdlib/ltoa.c,
3465         * device/lib/pic16/libc/stdlib/putchar.c,
3466         * device/lib/pic16/libc/stdlib/x_ftoa.c,
3467         * device/lib/pic16/libc/stdlib/memchrpgm.c,
3468         * device/lib/pic16/libc/stdlib/memchrram.c,
3469         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
3470         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
3471         * device/lib/pic16/libio/adc/adcbusy.c,
3472         * device/lib/pic16/libio/adc/adcread.c,
3473         * device/lib/pic16/libio/adc/adcsetch.c,
3474         * device/lib/pic16/libio/usart/ubaud.c,
3475         * device/lib/pic16/libio/usart/ubusy.c,
3476         * device/lib/pic16/libio/usart/udrdy.c,
3477         * device/lib/pic16/libio/usart/uopen.c,
3478         * device/lib/pic16/libio/usart/uputc.c,
3479         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
3480         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
3481         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
3482         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
3483         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
3484         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
3485         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
3486         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
3487         specific keywords to double underlined form,
3488         * device/lib/pic16/libc/Makefile.rules,
3489         * device/lib/pic16/libsdcc/Makefile.rules,
3490         * device/lib/pic16/libm/Makefile,
3491         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
3492         to compile with C standard set in Makefile.common
3493         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
3494         rand.c and crc.c in compilation process,
3495         * device/lib/pic16/libsdcc/int/divuint.c,
3496         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
3497         `c' from signed to unsigned,
3498         * device/lib/pic16/startup/crt0.c,
3499         * device/lib/pic16/startup/crt0i.c,
3500         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
3501         keywords to double underlined form, bug fixes in _do_cinit function
3502         which prevented the correct initialization of the .idata segment,
3503         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
3504         core to enter a infinite loop
3505         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
3506
3507 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3508
3509         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
3510
3511 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3512
3513         * device/include/Makefile.in: add support for hc08 subdirectory
3514         * device/include/hc08/: new subdirectory
3515         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
3516         Lucas Loizaga, thanks!
3517         * device/include/hc08/mc68hc908qy.h,
3518         * device/include/hc08/mc68hc908gp32.h,
3519         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
3520         their own directory. Changed internal macro names to use the compiler
3521         reserved namespace. Changed SDCC specific keywords to double
3522         underlined form.
3523         * device/include/math.h,
3524         * device/include/malloc.h,
3525         * device/include/stdarg.h,
3526         * device/include/stdbool.h
3527         * device/include/string.h,
3528         * device/include/tinibios.h,
3529         * device/include/ds400rom.h,
3530         * device/include/8051.h,
3531         * device/include/8052.h,
3532         * device/include/80c51xa.h,
3533         * device/include/at89c55.h,
3534         * device/include/at89S8252.h,
3535         * device/include/at89x51.h,
3536         * device/include/at89x52.h,
3537         * device/include/ds80c390.h,
3538         * device/include/reg764.h,
3539         * device/include/regc515c.h,
3540         * device/include/sab80515.h,
3541         * device/include/mcs51/c8051f000.h,
3542         * device/include/mcs51/c8051f018.h,
3543         * device/include/mcs51/c8051f020.h,
3544         * device/include/mcs51/c8051f040.h,
3545         * device/include/mcs51/c8051f060.h,
3546         * device/include/mcs51/c8051f120.h,
3547         * device/include/mcs51/c8051f300.h,
3548         * device/include/mcs51/c8051f310.h,
3549         * device/include/mcs51/c8051f320.h,
3550         * device/include/mcs51/c8051f330.h,
3551         * device/include/mcs51/c8051f350.h,
3552         * device/include/z180.h: Changed SDCC specific keywords to double
3553         underlined form.
3554
3555 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
3556
3557         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
3558         18F4455,
3559         * (pic16_assignConfigWordValue): disable testing of configuration
3560         register value with config mask,
3561         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
3562         function with port->fun_prefix,
3563         * (genFunction): when generating a naked interrupt function never
3564         create an absolute segment placed in interrupt vector address, place
3565         the actual interrupt function at IVA instead, when an interrupt
3566         function is generated with unspecified interrupt then do not create
3567         the absolute section,
3568         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
3569         code for generating a call to generic pointer get/put function with
3570         a call to function pic16_callGenericPointer(),
3571         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
3572         the call to the generic pointer get/put functions with prefixing the
3573         function name with port->fun_prefix,
3574         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
3575         * src/pic16/main.c (_process_pragma): prefix function with
3576         port->fun_prefix,
3577         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
3578         calling assembler, old 18Fxxxx macro is deprecated,
3579         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
3580         PC_ASMDIR in while condition,
3581         * (findInstruction): add PC_ASMDIR in while condition,
3582         * (buildCallTree): prefix main with port->fun_prefix,
3583         * (pic16_pCode2str): fixed bug that didn't emit the memory access
3584         identifier for variable with banked access in instructions BTFSS,
3585         BTFSC, BCF, BSF, BTG
3586         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
3587         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
3588         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
3589         perform optimization when enviroment variable NO_REG_OPT is set,
3590         * (insideLRBlock): NEW, return 1 if register is inside an
3591         INF_LOCALREGS block,
3592         * (RemoveRegFromLRBlock): remove a register that is completely
3593         eliminated by register optimization, but it is still left in local
3594         register store/restore in/from stack block,
3595         * (Remove2pcodes): after removing register, check to see if it
3596         should be removed from local register store/restore in/from stack
3597         block,
3598         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
3599         DUMMY_READ_VOLATILE,
3600
3601         * device/include/pic16/adc.h: minor prototype modifications and
3602         update,
3603         * device/include/pic16/malloc.h: added GPL notice various
3604         modifications,
3605         * device/include/pic16/stdint.h: NEW, standard header for ints
3606         * device/include/pic16/delay.h: NEW, header for delay functions,
3607         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
3608         delay1mtcy,
3609         * device/include/pic16/signal.h: NEW, header providing helper macros
3610         for implementing signal handlers,
3611         * device/include/pic16/stdio.h: added prototypes for functions,
3612         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
3613         prototypes for stdin and stdout, added macro PUTCHAR to
3614         automatically implement putchar function prototype,
3615         * device/include/pic16/usart.h: modified and updated USART library,
3616         * device/lib/pic16/libio/adc/,
3617         * device/lib/pic16/libio/i2c: some modifications to improve library
3618         performance,
3619         * device/lib/pic16/libc/stdio/: modifications for the new printf*
3620         family of functions,
3621         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
3622         family of functions and other sources,
3623         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
3624         of the PIC18Fxx[28] devices,
3625         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
3626         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
3627         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
3628         _do_cinit function, because the previous failed when local variables
3629         where not placed in the same memory bank,
3630         * device/lib/pic16/libsdcc/char/: various modifications to improve
3631         library performance,
3632         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
3633         information on the new functions of the c library and more...
3634
3635 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3636
3637         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
3638
3639 2005-03-26 Raphael Neider <rneider AT web.de>
3640
3641         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
3642           if condition == CARRY)
3643         * (genCmp): adapted to new genSkipc semantics
3644         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
3645           on rIfx (genCmp was broken)
3646
3647 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3648
3649         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
3650         * src/z80/main.c (_keywords[]),
3651         * src/SDCCglobal.h (struct options),
3652         * src/SDCC.y,
3653         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
3654         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
3655         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
3656         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
3657         always available in leading double underscore form. The C99 support is
3658         mostly missing, but it's a start.
3659         * support/regression/tests/bug-227710.c: fixed nonconforming use of
3660         reserved identifier "__data".
3661
3662 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
3663
3664         * src/mcs51/peeph.def: fixed bug 1170013
3665
3666 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
3667
3668         * device/include/mcs51reg.h: fixed bug 842007
3669
3670 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3671
3672         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
3673         last time.
3674
3675 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3676
3677         * src/port.h (struct PORT),
3678         * src/avr/ralloc.c (avr_assignRegisters),
3679         * src/avr/main.c,
3680         * src/ds390/ralloc.c (ds390_assignRegisters),
3681         * src/ds390/main.c,
3682         * src/hc08/ralloc.c (hc08_assignRegisters),
3683         * src/hc08/main.c,
3684         * src/mcs51/ralloc.c (mcs51_assignRegisters),
3685         * src/mcs51/main.c,
3686         * src/pic/ralloc.c (pic14_assignRegisters),
3687         * src/pic/main.c,
3688         * src/pic16/ralloc.c (pic16_assignRegisters),
3689         * src/pic16/main.c,
3690         * src/xa51/ralloc.c (xa51_assignRegisters),
3691         * src/xa51/main.c,
3692         * src/z80/ralloc.c (z80_assignRegisters),
3693         * src/z80/ralloc.h,
3694         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
3695         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
3696         * src/SDCCcse.h,
3697         * src/SDCCdflow.c (computeDataFlow),
3698         * src/SDCCdflow.h,
3699         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
3700         * src/SDCCloop.h,
3701         * src/SDCCcflow.c (*),
3702         * src/SDCCcflow.h,
3703         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
3704         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
3705         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
3706         immedDom() returning wrong block; probably fixes bug #1160833)
3707
3708 2005-03-20 Borut Razem <borut.razem AT siol.net>
3709
3710         * support/scripts/inc2h.pl: WIN32 port
3711
3712 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
3713
3714         * device/lib/makefile.in: added abs.c and labs.c
3715
3716 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
3717
3718         * device/include/stdint.h: added
3719         * device/lib/abs.c: added
3720         * device/lib/labs.c: added
3721         * device/include/stdlib.h: added abs() and labs() prototypes
3722         * device/lib/libsdcc.lib: added abs and labs
3723         * device/include/float.h,
3724         * device/lib/_fsmul.c,
3725         * device/lib/printf_fast.c,
3726         * device/lib/printf_tiny.c: updated comments
3727
3728 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3729
3730         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
3731         bug #1164313
3732
3733 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3734
3735         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
3736         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
3737
3738 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
3739
3740         * device/lib/printf_large.c: removed inline assembly for portability and
3741           readability. Use printf_fast if speed or size are more important.
3742         * src/pic16/gen.c: removed conditions around use of DEBUGpc
3743         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
3744
3745 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
3746
3747         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
3748         prevent compiler warning
3749
3750 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
3751
3752         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
3753         moved to level 0 and declared as static. Also they are explicit
3754         placed in access bank. This was necessery because some times they
3755         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
3756         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
3757         optimizations. Currently only compare to unsigned char is implemented,
3758         * src/pic16/gen.c: added fReturnIdx array,
3759         * (struct resolvedIfx) is moved to gen.h and made public,
3760         * (struct _G): added sregsAlloc and sregsAllocSet fields,
3761         * (aopForSym): added an optimization to directly store in stack of
3762         the operand of a SEND iCode,
3763         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
3764         but as registers instead (AOP_REG) using the fReturnIdx array,
3765         * (pic16_freeAsmop): remove the freed register from the
3766         _G.sregsAlloc field,
3767         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
3768         a compare of 'WREG',
3769         * (pic16_popGetTempRegCond): changed function prototype, now
3770         function takes also a bitVector argument v which holds the current
3771         set of registers that are allocated for stack access by aopForSym,
3772         registers allocated in aopForSym for accessing stack symbols are not
3773         any more part of the functions usedRegs field,
3774         * (genCall): some times aopOp is called for a stack variable to be
3775         send, aopForSym might perform the push, if this is true make sure
3776         that genCall doesn't push the variable twice by testing _G.resDirect,
3777         * (genFunction): changed testing for unspecified interrupt number
3778         from 256 to INTNO_UNSPEC,
3779         * modified selection scheme of frame pointer generation. Previously
3780         if function did use local registers a frame pointer was generated,
3781         now a frame pointer is generated only if function has arguments
3782         (that need PLUSW2 register access), or has stack arguments, or the
3783         compiler is not instructed to omit the frame pointer,
3784         * (genEndFunction): before restoring local registers that were saved
3785         in the function preamble, also restore the registers that *might*
3786         have been allocated for stack access,
3787         * (genRet): removed some old comments,
3788         * (genCmp, the active (RN's) version): added a call to the
3789         pic16_genCmp_special function to perform the compare with a more
3790         robust and optimized way,
3791         * (genInline): a feature has been added in inline code generation,
3792         which allows a wildcard variable substitution when writing inline
3793         assembly. Code is incomplete and experimental therefore undocumented,
3794         * (genCast): changed order of aopOp for result and right to allow
3795         aopForSym to directly load the result if possible,
3796         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
3797         perform an optimized compare on some selected special occasions,
3798         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
3799         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
3800         generate an IVT any more,
3801         * src/pic16/main.c (pic16_optionsTable): added command line option
3802         --optimize-cmp,
3803         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
3804         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
3805         macros,
3806         * src/pic16/NOTES: Raphael Neider added in list of active developers
3807         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
3808         jumptable_end to prevent bug #,
3809         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
3810         inCond and outCond fields,
3811         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
3812         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
3813         turn off register spilling,
3814         * (packRegsForOneUse): synced with other ports' versions although it
3815         is not used currently,
3816         * (pic16_packRegisters): added an optimization while reading
3817         structure bitfields, some registers may be saved (malloc code is
3818         decreased by 80 bytes)
3819
3820 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
3821
3822         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
3823         left is a bitfield, if yes, then don't optimize assignment. Perhaps
3824         this can be optimized more?
3825
3826 2005-03-10 Raphael Neider <rneider AT web.de>
3827
3828         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
3829           genNearPointerGet): (hopefully) fixed access to bitfields via
3830           pointers (p->bitN = x; and x = p->bitN; failed)
3831
3832 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
3833
3834         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
3835
3836 2005-03-09 Raphael Neider <rneider AT web.de>
3837
3838         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
3839
3840 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
3841
3842         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
3843         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
3844           (regTypeNum): set REG_BIT type if necessary
3845         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
3846         * support/regression/tests/critical.c: check bug 1144613
3847
3848 2005-03-02 Raphael Neider <rneider AT web.de>
3849
3850         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
3851
3852 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3853
3854         * src/avr/ralloc.c (serialRegAssign),
3855         * src/ds390/ralloc.c (serialRegAssign),
3856         * src/hc08/ralloc.c (serialRegAssign),
3857         * src/mcs51/ralloc.c (serialRegAssign),
3858         * src/pic/ralloc.c (serialRegAssign),
3859         * src/pic16/ralloc.c (serialRegAssign),
3860         * src/xa51/ralloc.c (serialRegAssign),
3861         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
3862
3863 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
3864
3865         * src/SDCCast.c (decorateType): fixed bug 1124787
3866
3867 2005-02-20 Hubert Sack <sack AT digiplan.de>
3868         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3869
3870         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
3871         patch #1121755
3872
3873 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3874
3875         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
3876         to keep the correct label reference count when adding/removing references
3877         to labels. A peephole file using this is appended to patch #1144962.
3878
3879 2005-02-14 Raphael Neider <rneider AT web.de>
3880
3881         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
3882         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
3883         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
3884           retrievals of result operand's value on assignment
3885
3886 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
3887
3888         * device/include/pic16/string.h: modified prototype for memccpy()
3889         to memccpy(void *, void *, char, size_t)
3890         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
3891         check whether to omit frame pointer or not,
3892         * (genInline): convert all occurences of "\n" to LF in inline
3893         assembler blocks, this helps formatting the inline text,
3894         * (pic16_loadFSR0): modified prototype,
3895         * (genNearPointerGet, genNearPointerSet): reorganization of code,
3896         removed some 8051 legacy code,
3897         * (genPackBits): enabled handling bitfields exceeding one byte in size,
3898         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
3899         before allocating temporary registers in functions,
3900
3901 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
3902
3903         * support/regression/tests/bitvars.c: corrected the "fix"
3904
3905 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
3906
3907         * support/regression/tests/bitvars.c,
3908         * support/regression/tests/bitwise.c,
3909         * support/regression/tests/rotate.c: "fixed" problems on Alpha
3910
3911 2005-02-10 Raphael Neider <rneider AT web.de>
3912
3913         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
3914           different size for Alpha
3915         * src/pic16/gen.c (genCmpEq) : improved compare with 0
3916
3917 2005-02-09 Raphael Neider <rneider AT web.de>
3918
3919         * src/SDCC.lex(doPragma) : save and restore warning options as well
3920           (also added new stack plus clone- and copyAndFreeSDCCERRG())
3921         * have #pragma less_pedantic set the errorlevel to WARNING
3922           (fixes #1117001)
3923         * (cloneOptimize) : fixed wrong malloc's size
3924         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
3925           facilitate correct handling of #pragma (save|restore)
3926
3927 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
3928
3929         * src/mcs51/gen.c: removed non-standard C nameless struct/union
3930
3931 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
3932
3933         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
3934
3935 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
3936
3937         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
3938
3939 2005-02-02 Raphael Neider <rneider AT web.de>
3940
3941         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
3942         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
3943         * (pic16_storeForReturn): fixed to allow returning function pointers
3944         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
3945         * device/include/pic16/{stddef.h,stdbool.h}: added
3946
3947 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
3948
3949         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
3950
3951 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
3952
3953         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
3954         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
3955          appeared to be required
3956
3957 2005-01-31 Borut Razem <borut.razem AT siol.net>
3958
3959         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
3960           include/mcs51 and include/z80 directories to the package
3961
3962 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3963
3964         * src/hc08/gen.c (genFunction): fixed bug #1112752
3965
3966 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3967
3968         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
3969
3970 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3971
3972         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
3973
3974 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
3975
3976         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
3977
3978 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
3979
3980         * device/include/c8051fxxx.h: removed these 6 files
3981         * device/include/mcs51/c8051fxxx.h: added these 11 new files
3982
3983 2005-01-26 Raphael Neider <rneider AT web.de>
3984
3985         * src/pic16/gen.c (genAssign): fixed assignment from longs
3986           in codespace (were cut to three bytes)
3987         * (genDummyRead): implemented (except for CODESPACE...),
3988           fixed bug #1108575
3989         * src/pic16/glue.c (emitStatistics): beautified
3990         * device/lib/pic16/libm/Makefile: added include path
3991
3992 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3993
3994         * src/z80/gen.c (aopPut): fixed bug #1103902
3995
3996 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3997
3998         * device/lib/expf.c: fixed bug #1095792
3999
4000 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
4001
4002         * device/lib/pic16/libm: added Math library sources
4003
4004 2005-01-24 Raphael Neider <rneider AT web.de>
4005
4006         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
4007           to enable upcast to pCodeOpReg2 (there is no type tag to
4008           differenciate the two and pic16_popGet2p cast into PCOR2)
4009         * src/pic16/main.c (_process_pragma): fixed another malloc bug
4010           (sizeof(sectNames) changed to sizeof(sectName))
4011           Both patches fix segfaults under MinGW.
4012
4013 2005-01-23 Raphael Neider <rneider AT web.de>
4014
4015         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
4016           Safe_[mc]?alloc()'ed variables
4017         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
4018           of (byte sized) temporaries (assign them to WREG for now)
4019         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
4020           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
4021           this might fix SIGSEGVs on MinGW...
4022         * src/SDCCopt.c (killDeadCode): restored original behaviour
4023           (volatile operands might get thrown away though)
4024
4025 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
4026
4027         * src/pic16/gen.c: fixed bug #1106975,
4028         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
4029         pointer update, INTCON is saved, global interrupts are disabled and
4030         restored after updateing TOS.
4031         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
4032         * added function attribute 'shadowregs' to take advantage of shadow
4033         registers,
4034         * added function attribute 'wparam' as an alternative to the wparam
4035         pragma,
4036         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
4037         user declares a non-ISR function as 'shadowregs',
4038         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
4039
4040 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
4041
4042         * .version: bumped version number to 2.4.8
4043         * device/lib/pic16/pics.all: list of PIC18F devices supported by
4044         pic16 port,
4045         * device/lib/pic16/libio/i2c/: I2C module support library,
4046         * device/include/pic16/i2c.h: I2C support library header,
4047         * device/lib/pic16/libc/stdio/: standard IO support sources,
4048         * (printf_small.c): printf_small() source, supports float print,
4049         * (printf_tiny.c): printf_tiny() source, does not support floats,
4050         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
4051         enable global optimizations for entire library source, other
4052         Makefiles in the source tree are also modified to reflect this,
4053         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
4054         function,
4055         * doc/sdccman.lyx: updated to reflect new changes,
4056         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
4057         sym->onStack if-case,
4058         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
4059         sbit, idata, _idata, xdata, _xdata,
4060         * added pragma library, to link an external library, (see doc),
4061         * removed command line options, --pomit-config-words, --pomit-ivt,
4062         --pleave-reset-vector,
4063         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
4064         when calling assembler to reflect memory model used, also define
4065         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
4066         reflect stack model used,
4067         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
4068         on stack return NULL,
4069
4070 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
4071
4072         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
4073           of the operands is volatile. Fixes #1020220
4074
4075 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
4076
4077         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
4078         * (OptimizeRegUsage): make sure that there is really no other flow where
4079           the first pCode is used
4080
4081 2005-01-22 Raphael Neider <rneider AT web.de>
4082
4083         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
4084           to fix #1106967 (pCode->seq are not set up correctly)
4085
4086 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4087
4088         * src/SDCCglue.c (glue): make sure code area is declared before the
4089         static initialization area.
4090
4091 2005-01-21 Raphael Neider <rneider AT web.de>
4092
4093         * device/lib/Makefile.in: fixed test for pic16 install dir
4094         * device/lib/pic16/*/Makefile*: modified compile flags to enable
4095           optimizations
4096         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
4097           added --optimize-goto compiler switch and pragma wparam documentation
4098         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
4099         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
4100           and PRODH closing bug #1071770 (peephole optimizer)
4101
4102 2005-01-19 Raphael Neider <rneider AT web.de>
4103
4104         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
4105           cmdLine buffers (used when calling sdcpp...) are large enough
4106           (MAX_PATH=256 truncates arguments leading to system halts when
4107           used in MinGW...)
4108         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
4109         * (genUminus): rewritten to for efficiency
4110         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
4111           used uninitialized in some cases)
4112         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
4113           copy the third byte from the int -- now assumes 0x80 (data memory)
4114         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
4115           operands (genAddLit expects the iCode's operands to swapped as
4116           well), fixed leftover bytes (crashed for short left operands)
4117         * (pic16_genMinusDec): performance improvements, removed false
4118           PIC14 emitSKPNCs
4119         * (pic16_genMinus): fixed to cope with differently sized operands
4120         * src/pic16/glue.c (pic16_glue): added new banksel optimization
4121           for --obanksel > 1
4122         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
4123         * src/pic16/graph.[ch]: implementation of directed graphs, used by
4124           new banksel optimization
4125         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
4126           analysis for temporary registers (segfaults...)
4127         * src/pic16/peeph.def: added rule
4128
4129 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
4130
4131         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
4132         which converts a float number to its ASCII representation
4133         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
4134         functions to convert the fractional and integer part of a float to ASCII,
4135         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
4136         realloc.c): added _MALLOC_SPEC to explicit place variables in data
4137         ram
4138         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
4139         _STATMEM macros,
4140         * device/include/pic16/adc.h: added GPL info,
4141         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
4142         a pCodeOp as tested operand,
4143         * (genNearPointerGet): optimized bit testing, does not use
4144         intermediate register for bit value, test directly instead with
4145         BTFSS, BTFSC, works only for single bits,
4146         * (genpic16Code): dump the name of the iCode in the asm,
4147         * src/pic16/ralloc.c (decodeOp): removed static declaration and
4148         renamed to pic16_decodeOp,
4149         * (serialRegAssign): do not allocate a temporary register for iCode
4150         sequences that test a single bit for 1/0
4151
4152 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
4153
4154         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
4155         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
4156         access stack and frame pointers. They are initially assigned to
4157         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
4158         accessing SFRs. Updated all occurences of modification of stack or
4159         frame pointer in gen.c and pcode.c,
4160         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
4161         assigning of a literal value to pointers,
4162         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
4163         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
4164         selected
4165
4166 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4167
4168         * doc/sdccman.lyx: update documentation about stack pragma, added
4169         some info for stack memory models
4170
4171 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4172
4173         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
4174
4175 2005-01-08 Raphael Neider <rneider AT web.de>
4176
4177         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
4178           udata sections to fix bug #1097823
4179
4180 2005-01-05 Raphael Neider <rneider AT web.de>
4181
4182         * src/pic16/gen.c (genGenericShift): added handling of differently
4183           sized left operand and result
4184
4185 2005-01-04 Raphael Neider <rneider AT web.de>
4186
4187         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
4188         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
4189           to hold the condition bit)
4190         * added new version of genCmp (old code available via #define)
4191         * added new version of genShiftLeft/genShiftRight in a generic
4192           way, now supports shifting by negative values
4193         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
4194           shiftCount (expected by genGenericShift)
4195         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
4196         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
4197           dump
4198         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
4199           is an invalid literal too...)
4200
4201 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
4202
4203         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
4204         from Raphael Neider,
4205         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
4206         for 8-bit literals. This fixes some literal operands which are sign
4207         extended to 16-bits ints when instruction needs only 8-bits.
4208
4209 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
4210
4211         * device/lib/logf.c: added mcs51 assembly version
4212         * device/lib/expf.c: added mcs51 assembly version
4213         * device/lib/_logexpf.c: new shared asm code for expf and logf
4214         * device/include/math.h: add defines for assembly math library
4215         * device/lib/Makefile.in: build new _logexpf.c
4216         * device/lib/libfloat.lib: use new _logexpf.c
4217
4218 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4219
4220         * src/pic/device.c
4221         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
4222           device types which have less than 0x7f registers.
4223
4224 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
4225
4226         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
4227
4228 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4229
4230         * device/lib/printf_fast.c: only build on supported arch.
4231         * device/lib/printf_tiny.c: only build on supported arch.
4232         * device/lib/printf_fast_f.c: only build if asm float lib
4233         * device/lib/_fsget1arg.c: only build if asm float lib
4234         * device/lib/_fsget2args.c: only build if asm float lib
4235         * device/lib/_fsnormalize.c: only build if asm float lib
4236         * device/lib/_fsreturnval.c: only build if asm float lib
4237         * device/lib/_fsrshift.c: only build if asm float lib
4238         * device/lib/_fsswapargs.c: only build if asm float lib
4239         * device/include/stdio.h: don't provide print_fast,
4240           print_fast_f, print_tiny prototypes if --xstack used
4241
4242 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
4243
4244         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
4245         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
4246           to the SOURCES
4247
4248 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
4249
4250         * device/lib/printf_fast_f.c: same as printf_fast, but
4251           with floating point enabled
4252         * device/lib/printf_fast.c: minor tweaks
4253         * device/include/stdio.h: add printf_fast_f
4254
4255 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4256
4257         * src/SDCCmain.c: make --float-reent default for mcs51
4258         * device/lib/_fsadd.c: added mcs51 assembly version
4259         * device/lib/_fssub.c: added mcs51 assembly version
4260         * device/lib/_fsmul.c: added mcs51 assembly version
4261         * device/lib/_fsdiv.c: added mcs51 assembly version
4262         * device/lib/_fseq.c: added mcs51 assembly version
4263         * device/lib/_fsneq.c: added mcs51 assembly version
4264         * device/lib/_fsgt.c: added mcs51 assembly version
4265         * device/lib/_fslt.c: added mcs51 assembly version
4266         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
4267         * device/lib/Makefile.in: add _fscmp to build
4268         * device/lib/libfloat.lib: add _fscmp to build
4269
4270 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
4271
4272         * device/lib/_fs2slong.c: added mcs51 assembly version
4273         * device/lib/_fs2sint.c: added mcs51 assembly version
4274         * device/lib/_fs2schar.c: added mcs51 assembly version
4275         * device/lib/_fs2ulong.c: added mcs51 assembly version
4276         * device/lib/_fs2uint.c: added mcs51 assembly version
4277         * device/lib/_fs2uchar.c: added mcs51 assembly version
4278         * device/lib/_slong2fs.c: added mcs51 assembly version
4279         * device/lib/_sint2fs.c: added mcs51 assembly version
4280         * device/lib/_schar2fs.c: added mcs51 assembly version
4281         * device/lib/_ulong2fs.c: added mcs51 assembly version
4282         * device/lib/_uint2fs.c: added mcs51 assembly version
4283         * device/lib/_uchar2fs.c: added mcs51 assembly version
4284         * device/include/float.h: added #define to select asm vs c
4285
4286 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
4287
4288         * device/lib/printf_fast.c: improvements to float output
4289         * device/include/float.h: add defines for assembly float library
4290         * device/lib/_fsget1arg.c: receive 1 float arg
4291         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
4292         * device/lib/_fsnormalize.c: normalize a float
4293         * device/lib/_fsreturnval.c: return float, various helper routines
4294         * device/lib/_fsrshift.c: right shift a float's mantissa
4295         * device/lib/_fsswapargs.c: swap 2 floats
4296         * device/lib/Makefile.in: build these 6 new files for mcs51
4297         * device/lib/libfloat.lib: add these 6 files to the library
4298
4299 2004-12-26 Borut Razem <borut.razem AT siol.net>
4300
4301         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
4302           built by gcc 3.4.2
4303
4304 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
4305
4306         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
4307           and fully reentrant and register bank neutral.
4308         * device/lib/printf_fast.c: added float (not enabled by default),
4309           added compact/slower integer (also not enabled by default),
4310           improved size/speed of fast integer code, other minor changes
4311         * device/include/stdio.h, device/lib/Makefile.in,
4312           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
4313
4314 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
4315
4316         * src/pic16/pcode.c: declaring variables other than at the start of a
4317           block is not supported in C by VC6.
4318
4319 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
4320
4321         * applied a previous patch from Raphael Neider that wasn't included
4322         in the previous commits, which fixes infinite loops within jumptable
4323         improvements,
4324         * made some fixes that previous patches introduced
4325
4326 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
4327
4328         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
4329         that fixes an issue with AOP_PCODE asmop's offset,
4330         * (pic16_popCopyReg): update instance field too,
4331         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
4332         function of pic port,
4333         * (genCmp, genAnd, genAssign),
4334         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
4335
4336 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
4337
4338         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
4339         variables initial values to idata section,
4340         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
4341         variables in some functions. This utilizes parmBytes field of iCode
4342         structure to hold the offset of the variable in stack. (might be
4343         able to use the stack field too?)
4344         * applied patch from Raphael Neider # ### , # ###
4345         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
4346         variable initial values in idata section,
4347         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
4348         for static variables with initial value
4349         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
4350         applied fix in while loop from Raphael Neider.
4351
4352 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
4353
4354         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
4355         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
4356         * src/ds390/ralloc.c (serialRegAssign): spill bits
4357         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
4358         * support/Util/SDCCerr.c,
4359         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
4360         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
4361         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
4362
4363 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
4364
4365         * device/include/sdcc-lib.h: inserted LGPL, added includes
4366           asm/ds390/features.h and asm/mcs51/features.h
4367         * device/include/asm/default/features.h,
4368         * device/include/asm/gbz80/features.h,
4369         * device/include/asm/z80/features.h: added empty _AUTOMEM
4370           and _STATMEM
4371         * device/include/asm/ds390/features.h,
4372         * device/include/asm/mcs51/features.h: added files with defines for
4373           _AUTOMEM and _STATMEM indicating automatic and static storage class
4374         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
4375         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
4376         * src/SDCCicode.c (geniCodeCast),
4377         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
4378         * src/SDCCloop.c (loopInduction): removed unused variable lr
4379         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
4380           to convertToFcall to include char modulo (RFE 1065037), added check
4381           if left operand is unsigned and use abs of literal value
4382         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
4383           as it doesn't work after conversion from peephole.def to peephole.rul
4384         * src/mcs51/gen.c (toBoolean): added check for size,
4385           (genModOneByte): optimized code for signed char modulo a literal
4386           power of 2 (thanks to Hubert Sack),
4387           (genRRC): removed unnecessary "clr c",
4388           (genRLC): replaced "add a,acc" with cheaper "rlc a"
4389         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
4390           jump optimization,
4391           swapped rules 256.c and 256.d,
4392           extended 256.d by using new multiple checks (thanks Erik),
4393           added rules 256.e and 256.f,
4394           updated rule 261.a and 261.b to new generated code
4395         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
4396
4397 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4398
4399         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
4400           induction related bugs, including first part of bug #1074377
4401
4402 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
4403
4404         * applied patch from bug-report #1076292,
4405         * applied patches for genAnd and Goto-optimizations for Raphael
4406         Neider,
4407         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
4408         dump a less iCode information,
4409         * src/pic16/device.h (pic16_options_t): added field debgen,
4410         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
4411         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
4412         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
4413         puclic,
4414         * (various functions): added macros FENTRY and FENTRY2 to functions,
4415         to emit function prologue,
4416         * (various functions): fixed indentation,
4417         * (genNearPointerGet): fixed loading of FSR0,
4418         * (genPackBits): applied patch from Raphael Neider to fix updating
4419         of FSR0 and touching only the modified bits,
4420         * src/pic16/genarith.c (various functions): added macros FENTRY to
4421         emit function prologue in comments,
4422         * src/pic16/pcode.h: added functions debugf2, debugf3,
4423         * src/pic16/ralloc.c: partial fix for packForPush caused
4424         segmentation fault,
4425
4426 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4427
4428         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
4429           <stsp AT users.sourceforge.net> with reversed byte order
4430         * support/regression/tests/rotate.c: added (ds390 skips some tests)
4431
4432 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
4435           bug #1074377
4436         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
4437         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
4438
4439 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4440
4441         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
4442
4443 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4444
4445         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
4446           conditions,
4447           (setFromConditionArgs): friendly operand parser for peephole rules,
4448           (operandBaseName, operandsNotRelated): new peephole condition
4449           "operandsNotRelated" -- similar to "operandsNotSame", but takes
4450           architecture specific register naming into account, handles n-way
4451           comparisons, and supports quoted literals
4452         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
4453
4454 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4455
4456         * src/mcs51/peeph.def: fixed bug #1076940
4457
4458 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
4459
4460         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
4461
4462 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4463
4464         Adding support for replacing ljmps with sjmps in jumptables
4465         generated for switch statements. For now you need to set the
4466         environment variable SDCC_SJMP_JUMPTABLE to enable this.
4467         Now 4 algorithms for mcs51 jumptable generation are used:
4468         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
4469         addresses loaded pc-relative for up to 112 cases and stack-pushing
4470         target addresses loaded with offset from dptr for up to 256 cases.
4471
4472         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
4473         * src/mcs51/main.c: adapted constants for switch table generation
4474         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
4475
4476 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
4477
4478         * device/lib/printf_large.c (_print_format): fixed bug 1073386
4479         * support/regression/tests/bug1057979.c: added test for bug 1073386
4480
4481 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4482
4483         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
4484         compilers
4485
4486 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
4487
4488         * src/pic16/device.h,
4489         * src/pic16/genarith.c,
4490         * src/pic16/glue.c,
4491         * src/pic16/main.c,
4492         * src/pic16/pcode.c: applied patches #1068154 and #1070213
4493
4494 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
4495
4496         Large cummulative patch for pic16 port.
4497         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
4498         to call when a stack overflow occurs,
4499         * (malloc.h): added CVS Id tag,
4500         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
4501         variable,
4502         * added libc directory. The current version of LibC contains string
4503         functions, ctype functions and macros and some functions of the
4504         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
4505         be extensively tested in the future. Standard disclaimer here.
4506         Library is not automatically build yet. But one can build it by
4507         invoking 'make' inside the libc directory.
4508         * added ADC library under libio. Preliminary version yet.
4509
4510         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
4511         * src/pic16/gen.c (aopForRemat): asmop size is filled by
4512         aopForRemat() now and not by pic16_aopOp(),
4513         * (pic16_popGetTempReg): removed warning messgae when allocating
4514         temporary registers, its a buggy feature and will be removed,
4515         * (pic16_popGet): set register instance field in AOP_CRY,
4516         * (pic16_outBitC): fixed for results in size greater than 1,
4517         * (genUminusFloat): fixed for pic16, ported code from mcs51,
4518         * (pic16_storeForReturn): optimized return of 0,
4519         * (genCmp): experimental code for new genCmp which uses PIC18's
4520         special compare&skip instructions. Initial tests fail some times
4521         with variables grater than 1 byte in size, so new code is disabled,
4522         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
4523         a single bit,
4524         * (genCast): began a fix to optimize the casting of a bit to another
4525         bit, now assigning a bitfield to another bitfield will fail, sorry,
4526         * src/pic16/main.c: disabled the use of lr-support feature,
4527         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
4528         * added some function prototypes, added function _debugf prototype,
4529         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
4530         bits with offset (case PO_GPR_BIT),
4531         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
4532         command line,
4533         * (isBankInstruction): modified to return 0 for no banking instruction,
4534         and 1 for banking instruction,
4535         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
4536         caused stop processing pCodes after a inline assembly block,
4537         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
4538         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
4539         registers when it shouldn't,
4540         * src/pic16/ralloc.c (allocReg): add preliminary support for
4541         supporting a limited set of temporary registers,
4542
4543 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4544
4545         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
4546           genDataPointerSet): ensure assignments always copy in MSB to LSB
4547           order,
4548           (loadRegFromAop): recognize CLRH optimization,
4549           (genFunction): optimize RECEIVE iCodes in reentrant functions
4550
4551 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4552
4553         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
4554           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
4555           selected.
4556         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
4557         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
4558           contiguous with data
4559
4560 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4561
4562         * device/lib/_gptrget.c (_gptrget),
4563         * device/lib/_gptrgetc.c (_gptrgetc),
4564         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
4565           instead of sjmp to ret
4566         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
4567           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
4568
4569 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
4570
4571         * .version: bumped version to 2.4.7
4572         * device/lib/_gptrget.c (_gptrget): is now _naked
4573         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
4574         * device/lib/_gptrput.c (_gptrput): is now _naked
4575         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
4576           (createFunction): fixed xstack
4577         * src/SDCCglue.c (emitMaps): set allocation required for bit area
4578         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
4579           or bit either,
4580           (geniCodeCritical): store original interrupt state in an iTemp bit
4581           var unless stack-auto
4582         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
4583         * src/SDCCmain.c (setIncludePath): added include/target to search path
4584         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
4585         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
4586           prototype,
4587           (processFuncArgs): put bit vars in bit area
4588         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
4589           unsaveRBank): fixed xstack,
4590           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
4591           (genFunction, genEndFunction): fixed xstack,
4592           (genAssign): optimization don't walk backwards through mem
4593         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
4594         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
4595         * support/regression/Makefile: also make library (for stack-auto) when
4596           making "all" and added "test-mcs51-xstack-auto"
4597         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
4598         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
4599         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
4600         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
4601         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
4602           make-library by MAKE_LIBRARY
4603         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
4604           regression tests for xstack
4605         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
4606         * support/regression/tests/critical.c: test for critical on mcs51
4607
4608 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4609
4610         * support/regression/ports/ucz80/spec.mk: use include and lib files from
4611           built version of sdcc instead of installed version
4612
4613 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
4614
4615         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
4616         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
4617           vprintf.c now
4618         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
4619         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
4620           WARNING: remove device/lib/build/z80/printf.o by hand when
4621           updating from previous build!
4622         * device/lib/z80/printf.c: updated comment
4623         * support/regression/tests/bug1057979.c: test all ports now
4624         * support/regression/tests/bug1065458.c: file added
4625
4626 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4627
4628         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
4629           *_start and *_end symbols for static functions
4630
4631 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
4632
4633         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
4634           and search crt0.o in all library paths,
4635           (setIncludePath): proper handling of --nostdinc,
4636           (setLibPath): proper handling of --nostdlib
4637         * support/regression/Makefile,
4638         * support/regression/ports/ds390/spec.mk,
4639         * support/regression/ports/gbz80/spec.mk,
4640         * support/regression/ports/hc08/spec.mk,
4641         * support/regression/ports/mcs51/spec.mk,
4642         * support/regression/ports/mcs51-large/spec.mk,
4643         * support/regression/ports/mcs51-stack-auto/spec.mk,
4644         * support/regression/ports/z80/spec.mk: use include and lib files from
4645           built version of sdcc instead of installed version
4646         * doc/sdccman.lyx: fixed typo in --nostdinc
4647
4648 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
4649
4650         * src/pic/pcode.c,
4651         * src/pic/device.c,
4652         * src/pic/ralloc.c,
4653         * src/pic/gen.c : added support to generate code for struct bit fields.
4654
4655 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
4656
4657         * as/xa51/xa_version.h,
4658         * device/include/errno.h,
4659         * device/include/regc515c.h,
4660         * device/lib/_itoa.c,
4661         * device/lib/_ltoa.c,
4662         * device/lib/ser_ir_cts_rts.c,
4663         * sim/ucsim/xa.src/glob.cc,
4664         * sim/ucsim/xa.src/inst_gen.cc,
4665         * sim/ucsim/xa.src/xa_bit.cc,
4666         * sim/ucsim/xa.src/xa_sfr.cc,
4667         * sim/ucsim/z80.src/inst_dd.cc,
4668         * sim/ucsim/z80.src/inst_fdcb.cc,
4669         * support/scripts/keil2sdcc.pl,
4670         * src/pic16/pic16.dsp,
4671         * src/pic16/pic16a.dsp: corrected cvs line endings
4672         * device/lib/printf_large.c: fixed bug 1057979
4673         * src/pic16/gen.c: fixed non-C standard code
4674         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
4675         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
4676         * support/regression/ports/mcs51/support.c: reload T1 asap
4677         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
4678           pdata use and clear idata startup behaviour
4679         * support/regression/tests/bug1057979.c: added
4680
4681 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
4682
4683         * device/examples/ds390/ow390/ad26.h,
4684         * device/examples/ds390/ow390/cnt1d.h,
4685         * device/examples/ds390/ow390/crcutil.c,
4686         * device/examples/ds390/ow390/ownet.h,
4687         * device/examples/ds390/ow390/owsesu.c,
4688         * device/examples/ds390/ow390/swt12.h,
4689         * device/examples/ds390/ow390/swtoper.c,
4690         * device/examples/ds390/ow390/temp10.h,
4691         * device/examples/ds390/ow390/thermodl.c,
4692         * device/examples/ds390/tinitalk/tinitalk.dsp,
4693         * device/examples/ds390/tinitalk/tinitalk.dsw,
4694         * device/examples/mcs51/clock/hw.h,
4695         * device/examples/mcs51/simple2/go.bat,
4696         * device/examples/serialcomm/windows/serial.h,
4697         * device/examples/xa51/dummy.c,
4698         * device/examples/xa51/hello.c,
4699         * device/include/80c51xa.h,
4700         * device/include/at89x051.h: corrected cvs line endings
4701
4702 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
4703
4704         * src/pic16/main.c (options): added command line --gstack, to trace
4705         stack over/under flows,
4706         * added pragma 'wparam' to allow passing first byte of function
4707         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
4708         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
4709         call to __gstack_test function and sets up the symbol as extern,
4710         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
4711         * popaop): added call to pic16_testStackOverflow,
4712         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
4713         wparamList list,
4714         * (genCall, genPcall): now all parameters are passed via stack
4715         except in functions that are pass to wparam pragma in which WREG is
4716         used too,
4717         * (genPcall): REENTRANT flag is checked to see if variable prototype
4718         contains reentrant keyword, don't call a non-reentrant function, via
4719         a reentrant function pointer or vice versa, functions are never
4720         passed via WREG,
4721         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
4722         D.Winkler,
4723         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
4724         SIGSEGV when accessing a NULL register stucture,
4725         * (pic16_printGPointerType): modified to handle UPPER modifier for
4726         function initializers, changed prototype of function to simpler one,
4727         * (pic16_printIvalFuncPtr): check to see if function is already
4728         added in externs list,
4729         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
4730         optimized a move from W to SFR with a move to the same register
4731         later after a CALL,
4732         * device/lib/pic16/debug: NEW directory, contains debug features
4733         which are enabled when linking with libdebug.lib, currently command
4734         line option --gstack enables stack pointer tracing for over/under
4735         flow, corresponding sources are in debug/gstack
4736
4737 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
4738
4739         * doc/sdccman.lyx: updated SDCC version,
4740         * (PIC16 port): update list of command line options,
4741         * src/pic16/device.h (structure pic16_options_t): added field gstack
4742         to enable stack overflow tracing on push/pops,
4743         * src/pic16/device.c (statistics structure): added statistics
4744         structure,
4745         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
4746         pic16_dump_int_registers): increase statistics counters for each
4747         * variable which is encountered
4748         * (pic16_dump_usection): emit each .udata variable to its own udata
4749         section,
4750         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
4751         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
4752         parameters via stack, otherwise use old scheme,
4753         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
4754         assembler output file,
4755         * src/pic16/main.c: added command line options --gstack to enable
4756         push/pop tracing for stack overflow,
4757         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
4758         instructions): added size of each instruction,
4759         * (pic16_countInstruction): estimate size of instructions in
4760         the_pFile list, inline assembly blocks are not counted,
4761         * (pic16_FixRegisterBanking): trace previous register usage, when
4762         banksel optimizations is greater than 0, don't emit a redudant
4763         banksel directive,
4764
4765 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
4766
4767         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
4768         * src/pic16/ralloc.c : applied same fix for pic16.
4769         * src/pic/gen.c : tidied it up a little.
4770
4771 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4772
4773         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
4774         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
4775
4776 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4777
4778         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
4779
4780 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4781
4782         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
4783         non-reentrant function __modsint in the interrupt function (thus
4784         corrupting math operations during serial I/O)
4785         * device/lib/ser_ir.c: as above, changed buffersize
4786         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
4787         256.c,d for zeroing
4788         * doc/Makefile: added option -t for rsync
4789
4790 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4791
4792         * src/SDCCast.h (struct ast),
4793         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
4794
4795 2004-10-20 Borut Razem <borut.razem AT siol.net>
4796
4797         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
4798         package
4799
4800 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
4801
4802         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
4803         makefile targets,
4804         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
4805         support functions to replace long sequences of MOVFF's from access
4806         bank registers to stack and vice versa,
4807         * src/pic16/device.h: added new field opt_flags, where optimization
4808         flags can be set to enable certain features,
4809         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
4810         * pBlock, (genFunction, genEndFunction): surroung loop for
4811         saving/loading used registers in stack with PC_INFO pCodes,
4812         INF_LREGS. Code in between can then be optimized by pCode optimizer
4813         to support function calls,
4814         * (genDataPointerSet): fixed bug which loaded float fields in
4815         structures with corrupt data,
4816         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
4817         in a standard way debug info on stderr. Feature used for developing
4818         and debugging only,
4819         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
4820         obsolete chunks of code,
4821         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
4822         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
4823         * pic16/src/pcode.c (pic16_newpCodeInfo,
4824         * (pic16_newpCodeOpLocalRegs),
4825         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
4826         feature,
4827         * (pic16_pCodeConstString): printing of the initial value of a
4828         symbol as a comment is inhibited since parsing was already done by
4829         copyStr and output is corrupt,
4830         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
4831
4832 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4833
4834         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
4835
4836 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
4837
4838         * as/mcs51/lkarea.c: removed old K&R style,
4839           (lnksect): changed check on boundary error,
4840           (lnksect2): changed check on boundary error,
4841           (lnksect2): extend XSTK to end of page if size = 1
4842         * as/mcs51/lkmain.c: removed old K&R style,
4843           (Areas51): create l_IRAM symbol
4844         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
4845         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
4846           model-mcs51-stack-auto, added model-mcs51-xstack-auto
4847         * device/lib/_mullong.c: added version to be compiled with xstack
4848         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
4849         * device/lib/mcs51/crtxclear.asm: clear pdata as well
4850         * device/lib/mcs51/crtxstack.asm: fixed comment
4851         * src/SDCCglue.c: maxInterrupts defaults to 0,
4852           (emitMaps): added pdata,
4853           (createInterruptVect): (re)moved default,
4854           (glue): added pdata,
4855           (glue): moved __start__xstack to XSTK with default size 1
4856         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
4857           and options.float_rent when options.stackAuto is set,
4858           (linkEdit): only write XDATA_NAME if provided on command line
4859         * src/SDCCmem.h,
4860         * src/SDCCmem.c: added pdata
4861         * src/port.h: added pdata_name to PORT
4862         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
4863           (saveRegisters, unsaveRegisters): removed usage of B,
4864           (genMinus): fixed accumulator clash,
4865           (genJumpTab): added comment, this needs another look
4866         * src/mcs51/gen.c: added check for "B in use" paranoia,
4867           added pushB() and popB()
4868         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
4869           chance
4870         * src/avr/main.c,
4871         * src/ds390/main.c,
4872         * src/hc08/main.c,
4873         * src/mcs51/main.c,
4874         * src/pic/main.c,
4875         * src/pic16/main.c,
4876         * src/xa51/main.c,
4877         * src/z80/main.c: (reset_regparms) made void parameter explicit and
4878           added PSEG (PAG,XDATA) or NULL to port specifier
4879         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
4880         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
4881           (_mcs51_genInitStartup): removed __start__xstack equ,
4882           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
4883         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
4884         * src/z80/gen.c (_rleAppend): fixed warnings
4885         * support/regression/tests/zeropad.c: added pdata test
4886         * .version: bumped to 2.4.6
4887
4888 2004-10-17 Borut Razem <borut.razem AT siol.net>
4889
4890         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
4891         as a part of nightly build
4892
4893 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
4894
4895         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
4896         WREG holds the first byte function parameters,
4897         * (aopForSym): take special case for symbols which are in FARSPACE
4898         but in CODESPACE too,
4899         * (assignResultValue): modified to take into account _G.useWreg,
4900         * (genCall): don't use wreg for parameter passing when function is
4901         declared as reentrant, too, added optimization INCF to stack
4902         pointer when stack parameter count is 1,
4903         * (genFunction, genEndFunction): refurnished and fixed to not using
4904         wreg for passing parameters when function has varargs or is
4905         reentrant, fixed bug with symbol name compare for generating
4906         functions in absolute address,
4907         * (pic16_storeForReturn): refurnished,
4908         * (genCmp): began writing a new version of the function, not ready
4909         yet, therefore it is disabled,
4910         * (genAssign): do not read code memory when assigning a function to
4911         a pointer function,
4912         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
4913         array of characters, not pointer,
4914         * (pic16initialComments): in debug mode emit an .ident directive for
4915         the assembler,
4916         * (_process_pragma): emit a new warning type (internal to pic16)
4917         when setting stack to default length, emit a similar warning when
4918         placing a function at absolute address and address is not word aligned
4919         * (_pic16_parseOptions): added 'return TRUE' statement,
4920         * (_pic16_linkEdit): if compiling a source, then add the source's
4921         file object, first in the list of objects to link,
4922
4923 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
4924
4925         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
4926         * src/pic/main.c : removed VC warning.
4927         * src/pic/gen.c : changed comment.
4928
4929 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
4930
4931         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
4932         reference to a deprecated symbol _GPTRREG was causing failure to
4933         link. Thanks G. M. Gallant for the info.
4934
4935 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
4936
4937         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
4938         comments for Bugs item #954788.
4939
4940 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
4941
4942         * src/pic16/device.c (pic16_dump_gsection,
4943         * pic16_groupRegistersInSection): handle symbols declared to be in
4944         access bank differently,
4945         * src/pic16/gen.c (struct _G): added field resDirect,
4946         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
4947         send values read from stack directly to result and don't allocate
4948         temporary values,
4949         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
4950         same registers,
4951         * (pic16_sameRegsOfs): NEW,
4952         * (freeAsmop): if _G.resDirect is set then do not mark registers as
4953         free because they were not allocated from temporary pool,
4954         * pic16_popRegFromString): workaround to fix a problem with
4955         allocating variables twice or never,
4956         * (genGenPointerGet): using PRODL instead of FSR0H,
4957         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
4958         instead of FSR0H,
4959         * (genAssign): take advantage of the _G.resDirect flag,
4960         * (genCast): around line 11844, use mov2f instead of directly
4961         MOVFF'ing between operands to account for literal values,
4962         * src/pic16/genutils.c: some new debug functions for gpsim have been
4963         added,
4964         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
4965         float with integer part only,
4966         * src/pic16/main.c (_process_pragma): handle pragma udata access to
4967         place variables in access bank
4968         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
4969         updated sources to reflect recent changes in gen.c
4970
4971 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
4972
4973         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
4974         sources that searched for headers in installation path, now the
4975         device/include/pic16 is used,
4976         * src/pic16/glue.c (pic16glue),
4977         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
4978         .line directives if not in debug mode, this suppresses assembler's
4979         warnings for ignored directives
4980
4981 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
4982
4983         * src/port.h: made reset_regparms prototype void parameter explicit.
4984         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
4985         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
4986         * doc/sdccman.lyx: documented warning disabling and how to use
4987           printf_large to make it print floats.
4988         * device/include/stdbool.h: NEW
4989         * device/lib/_atof.c,
4990         * device/lib/_divuint.c,
4991         * device/lib/_divulong.c,
4992         * device/lib/expf.c,
4993         * device/lib/printf_large.c,
4994         * device/lib/sincosf.c,
4995         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
4996         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
4997           a completely reentrant lib.
4998
4999 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
5000
5001         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
5002         * device/include/pic16/stdio.h: fixed bug with colon
5003
5004 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
5005
5006         * device/include/pic16/stdio.h,
5007         * device/include/pic16/stdlib.h,
5008         * device/include/pic16/math.h: NEW
5009         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
5010         declared as _naked to reduce overhead
5011         * device/lib/Makefile.in (target port-specific-objects-pic16):
5012         changed * to *.* so to ignore the CVS directory,
5013         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
5014         stacked variables back in stack,
5015         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
5016         corruption
5017
5018 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
5019
5020         * .version: bumped version number to 2.4.5
5021         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
5022         * support/Util/SDCCerr.c (messages structure): added entry for
5023         W_POSSBUG2
5024
5025         Large cumulative patch for pic16 port and libraries.
5026         * device/include/pic16/sdcc-lib.h,
5027         * device/include/pic16/stdarg.h,
5028         * device/include/asm/pic16/features.h,
5029         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
5030         * device/include/pic16/float.h: changes reentrant keyword with
5031         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
5032         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
5033         updated target build-libraries to include objects from gptr,
5034         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
5035         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
5036         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
5037         all function headings,
5038         * src/SDCCmain.c: added global parameter userIncDirsSet,
5039         * (parseCmdLine): when option -I is encountered add directory to
5040         userIncDirsSet too,
5041         * src/version.awk: added space between control and long,
5042         * src/pic16/NOTES: added some notes for the port,
5043         * src/pic16/gen.c: added prototype for mov2fp function,
5044         * (fReturnpic16[]): properly named return value registers,
5045         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
5046         * (aopForSym): added code to handle symbols with onStack flag set,
5047         symbols onStack are allocated PTRSIZE bytes,
5048         * (aopFreeAsmop): handles special case where asmops are stack objects,
5049         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
5050         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
5051         added argument lock to trace flaws in allocating temporary registers
5052         when developing port,
5053         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
5054         * (pic16_popRegFromString): reenabled allocating a direct register
5055         from string,
5056         * (assignResultValue): various beautifications,
5057         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
5058         referenced function argument,
5059         * (genIpush): reenabled to allow stacked arguments, handles only
5060         ic->parmPush iCodes,
5061         * (genCall, genPcall): major changes to allow for variable argument
5062         functions, fixed a bug with falsely restoring stack pointer after
5063         returning from call,
5064         * (genFunction): pending code for critical function,
5065         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
5066         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
5067         * (genNearPointerGet): fixed bug with indirect reading, was always
5068         reading from INDF0
5069         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
5070         pointers,
5071         * (genAddrOf): rewrote code to take address of a stacked function parameter
5072         * (genCast): fixed casting to generic pointer type,
5073         * src/pic16/gen.h: added AOP_STA,
5074         * (struct asmop): added field stk,
5075         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
5076         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
5077         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
5078         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
5079         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
5080         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
5081         generic pointers,
5082         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
5083         and library paths,
5084         * (pic16_port structure): generic pointer size is set to 3,
5085         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
5086         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
5087         compiler warning,
5088         * src/pic16/ralloc.c (allocReg): prevent allocating register when
5089         operand is an iTemp,
5090
5091 2004-09-24 Martin Helmling <mh AT octo-soft.de>
5092
5093         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
5094         * debugger/mcs51/simi.c: addapt new syntax of s51
5095
5096 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
5097
5098         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
5099         * src/pic16/pcode.c: commented out some calls to free() in order to
5100         fix bug #989576,
5101
5102 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5103
5104         * src/SDCCicode.h,
5105         * src/SDCCicode.c (isiCodeInFunctionCall),
5106         * src/avr/ralloc.c (selectSpil),
5107         * src/pic/ralloc.c (selectSpil),
5108         * src/pic16/ralloc.c (selectSpil),
5109         * src/ds390/ralloc.c (selectSpil),
5110         * src/hc08/ralloc.c (selectSpil),
5111         * src/xa51/ralloc.c (selectSpil),
5112         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
5113         stack in the middle of a function call sequence (fixes bug #1020268)
5114         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
5115         costs associated with the minimum switch case.
5116
5117 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * src/SDCC.lex: fixed bug #1030549
5120
5121 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5122
5123         * src/SDCCcse.h (struct cseDef),
5124         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
5125         over a function call if the CSE is derived from a symbol whose
5126         address has been taken (fixes bug #1029883)
5127         * support/regression/tests/bug-1029883: a new regression test for
5128         this bug
5129
5130 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5131
5132         * src/hc08/gen.c (emitinline): fixed bug #1029778
5133         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
5134         to a cast object is no longer a syntax error ("fixes" bug #1030006,
5135         and starts toward RFE #905167)
5136
5137 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
5138
5139         * src/pic16/gen.c (mov2f): New function to move an operand to
5140         another without considering if it is a literal or a register,
5141         * (pic16_sameRegs): don't check if they are both AOP_REG,
5142         * (AccRsh): removed andmask=0 lines,
5143         * (genLeftShift): duplicated to be improved in future versions,
5144         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
5145         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
5146         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
5147         * (pic16initMnemonics): added initialization for POC_INFSNZW,
5148         * (insertBankSwitch): fixed inserting banksel directives algorithm
5149         for instructions that follow a skip instruction, this fixes a report
5150         for broken subtraction code generation,
5151         * src/pic16/ralloc.c (deassignLRs): do not free register if current
5152         iCode is a left op, just in case result and right share the same
5153         registers
5154
5155 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5156
5157         * src/hc08/main.c,
5158         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
5159         preservation of HX
5160         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
5161         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
5162         on 2004-09-12; it was buggy
5163
5164 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
5165
5166         * src/SDCCsymt.h: removed RESULT_CHECK
5167         * src/SDCCast.c,
5168         * src/SDCCglue.c,
5169         * src/SDCCval.c,
5170         * src/pic/glue.c,
5171         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
5172
5173 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
5174
5175         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
5176         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
5177         configuration values no more rejected by compiler, they are assigned
5178         to configuration registers with a warning message instead,
5179         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
5180         the for-loop so last conf register is emitted too,
5181         * (_pic16_initPaths): link library libsdcc.lib by default,
5182         * (_hasNativeMulFor): modified test for multiplication according to
5183         Raphael Neider's remarks. Integer multiplication is also done with
5184         support functions,
5185         * device/include/pic16/pic18fregs.h: corrected type error in while
5186         testing and including 18f6720 header file
5187
5188 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
5189
5190         * src/pic16/device.h (pic16_options): removed field use_crt,
5191         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
5192         until an optimization to handle single bits is added,
5193         * (pic16_loadFSR0): moved before genUnpackBits,
5194         * (genAnd): some white lines removed,
5195         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
5196         leave_reset flags in pic16_options when using crt modules,
5197
5198 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
5199
5200         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
5201           for bugs 898889 & 979599. Also used some safer print instructions.
5202
5203 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
5204
5205         * src/pic16/device.h (pic16_options_t): added field use_crt,
5206         crt_name, no_crt,
5207         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
5208         catch a probable future bug,
5209         * src/pic16/gen.c: aopIdx function commented out,
5210         * (genAssign): commented out old code which used aopIdx,
5211         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
5212         code, added if conditionals to take into account the --use-crt
5213         command line options,
5214         * src/pic16/main.c (pic16_optionsTable): added new command line
5215         options, --use-crt= and --no-crt,
5216         * (_pic16_linkEdit): now the proper crt object is added in the
5217         linker command line except than when --no-crt is specified,
5218         * src/pic16/pcode.c,
5219         * src/pic16/pcode.h: added some structures and functions for a new
5220         optimization scheme to compansate for instruction overhead between
5221         same iCodes, this scheme is currently under development and is not
5222         working in any way,
5223         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
5224         to && operator,
5225         * device/lib/pic16/startup/crt0i.c,
5226         * device/lib/pic16/startup/crt0iz.c: added global char variable
5227         __uflags to force the generation of an idata section
5228
5229 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
5230
5231         * doc/Makefile,
5232         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
5233         * doc/sdccman.lyx: updated sdcc version to 2.4.4
5234
5235 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5236
5237         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
5238         Frieder) and clarified the default code optimization mode
5239
5240 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/SDCC.lex (doPragma, process_pragma),
5243         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
5244         "opt_code_size", and "opt_code_balanced"
5245         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
5246         regrouped options by category, added support for category headers
5247         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
5248         and "--opt-code-size"
5249         * doc/sdccman.lyx: documented these new options and pragmas
5250         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
5251         preference into account
5252
5253 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5254
5255         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
5256           geniCodePreDec): Fixed bug 904237 by generating a warning
5257         * src/SDCCerr.h,
5258         * src/SDCCerr.c: added warning W_SIZEOF_VOID
5259
5260 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
5261
5262         * src/pic/device.c : When no max ram set validate full memory range.
5263         * src/pic/pcode.c,
5264         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
5265
5266 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
5267
5268         * device/lib/_gptrget.c,
5269         * device/lib/_gptrput.c: updated comment
5270         * device/lib/calloc.c,
5271         * device/lib/free.c,
5272         * device/lib/malloc.c,
5273         * device/lib/realloc.c: added LGPL, made them reentrant-safe
5274         * src/SDCCcse.c (cseBBlock),
5275         * src/SDCCicode.c (printOperand, geniCodeArray),
5276         * src/SDCCicode.h (struct operand): fixed bug 868103
5277         * support/regression/tests/bug-868103.c: added
5278         * src/SDCCast.c (searchLitOp),
5279         * src/SDCCcse.h (struct cseDef),
5280         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
5281         * src/SDCCicode.h (struct operand),
5282         * src/SDCCsymt.h (struct sym_link),
5283         * src/avr/gen.c (hasInc),
5284         * src/ds390/gen.c (hasInc),
5285         * src/hc08/gen.c (genPlusIncr, hasInc),
5286         * src/mcs51/gen.c (hasInc),
5287         * src/pic16/glue.c (pic16_printIvalChar),
5288         * src/pic16/ralloc.c (regWithIdx),
5289         * src/xa51/gen.c (hasInc) : removed warnings
5290         * src/SDCCast.c (createBlock): added comment ???
5291         * src/hc08/ralloc.c: updated comments
5292
5293 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5294
5295         * doc/sdccman.lyx: updated section on switch statements, added
5296         section about semaphore locking
5297         * doc/Makefile: added option -info for latex2html
5298         * device/lib/_gptrget.c,
5299         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
5300
5301 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5302
5303         * src/pic/device.h,
5304         * src/pic/device.c,
5305         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
5306          maxram is less than 0x100.
5307
5308 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
5309
5310         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
5311
5312 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5313
5314         * src/port.h,
5315         * src/mcs51/main.c,
5316         * src/ds390/main.c,
5317         * src/z80/main.c,
5318         * src/hc08/main.c,
5319         * src/pic/main.c,
5320         * src/pic16/main.c,
5321         * src/avr/main.c,
5322         * src/xa51/main.c
5323         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
5324         a jump table is the best form for a switch statement, including
5325         automatic insertion of missing cases to make the case range
5326         continuous. Developed in collaboration with Frieder Ferlemann.
5327
5328 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5329
5330         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
5331         accumulator result if it needs sign extension
5332
5333 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5334
5335         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
5336
5337 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5338
5339         * device/lib/gbz80/printf.c,
5340         * device/lib/z80/printf.c: removed define for NULL
5341
5342 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
5343
5344         * as/xa51/xa_link.c,
5345         * device/examples/ds390/ow390/ad26.c,
5346         * device/examples/ds390/ow390/cnt1d.c,
5347         * device/examples/ds390/ow390/counter.c,
5348         * device/examples/ds390/ow390/ds2480.h,
5349         * device/examples/ds390/ow390/ds2480ut.c,
5350         * device/examples/ds390/ow390/findtype.c,
5351         * device/examples/ds390/ow390/gethumd.c,
5352         * device/examples/ds390/ow390/owllu.c,
5353         * device/examples/ds390/ow390/ownetu.c,
5354         * device/examples/ds390/ow390/swt12.c,
5355         * device/examples/ds390/ow390/swtloop.c,
5356         * device/examples/ds390/ow390/temp.c,
5357         * device/examples/ds390/ow390/temp10.c,
5358         * device/examples/ds390/ow390/thermo21.c,
5359         * device/examples/ds390/ow390/tinilnk.c,
5360         * device/examples/ds390/ow390/tstfind.c,
5361         * device/examples/serialcomm/windows/serial.cpp,
5362         * device/examples/serialcomm/windows/test_serialcomm.cpp,
5363         * device/include/reg51.h: fixed line endings for cvs
5364
5365 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5366
5367         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
5368         packRegsForAccUse, packRegisters): new accumulator register
5369         packing algorithm
5370         * support/regression/ports/hc08/support.c (_putchar): suppress
5371         warning of unused variable
5372         * src/SDCCicode.c: added SWAP entry to codeTable
5373
5374 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
5375
5376         * device/lib/sprintf.c: forgot to add this file before previous commit
5377
5378 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
5379
5380         * src/pic16/gen.c (genPackBits): added operand right in function
5381         parameters, load result directly if p_type is POINTER (that is
5382         called by genNearPointerSet)
5383         * (genUnPackBits): added operand left in function parameters,
5384         * (genNearPointerGet, genNearPointerSet): prevent the loading of
5385         FSR0 if accessing bitfields,
5386
5387 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
5388
5389         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
5390           _print_format; updated printf, sprintf, vsprintf
5391         * device/include/asm/default/features.h: corrected comment/define
5392         * device/lib/Makefile.in: added sprintf.c
5393         * device/lib/libsdcc.lib: added sprintf module
5394         * device/lib/printf_large.c,
5395         * device/lib/vprintf.c,
5396         * device/lib/sprintf.c: totally refactored printf_large and vprintf
5397           into these 3 files
5398         * support/regression/Makefile: changed ALL_PORTS into a usefull default
5399         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
5400         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
5401           hc08 test
5402         * support/regression/tests/zeropad.c: define idata as data for hc08
5403
5404 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5405
5406         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
5407         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
5408         labels are referenced at least once (even if a reference is not found)
5409         * src/hc08/gen.c (emitcode): set isComment flag for comments
5410         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
5411         loads), rules 6a..6b (optimize jumps to return)
5412
5413 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5414
5415         * device/lib/acosf.c (acosf),
5416         * device/lib/asinf.c (asinf),
5417         * device/lib/atanf.c (atanf),
5418         * device/lib/ceilf.c (ceilf),
5419         * device/lib/cosf.c (cosf),
5420         * device/lib/coshf.c (coshf),
5421         * device/lib/cotf.c (cotf),
5422         * device/lib/fabsf.c (fabsf),
5423         * device/lib/floorf.c (floorf),
5424         * device/lib/log10f.c (log10f),
5425         * device/lib/logf.c (logf),
5426         * device/lib/sinf.c (sinf),
5427         * device/lib/sinhf.c (sinhf),
5428         * device/lib/sqrtf.c (sqrtf),
5429         * device/lib/tanf.c (tanf),
5430         * device/lib/tanhf.c (tanhf),
5431         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
5432         replaced all instances of "reentrant" in the library functions
5433         defined in math.h with this macro.
5434         * support/regression/tests/float_trans.c: reenabled test for hc08
5435
5436 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
5437
5438         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
5439         erroneously deleted
5440
5441 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5442
5443         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
5444         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
5445         multi-byte volatile operands are used
5446         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
5447         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
5448         initialization to area GSINIT0 so that it would always precede
5449         any static initializers in GSINIT
5450         * support/regression/tests/zeropad.c: fixed idata define for hc08
5451         * support/regression/tests/bug-927659.c,
5452         * support/regression/tests/float_trans.c: disabled tests for hc08
5453         pending missing library routines
5454         * .version: increased version number to 2.4.4 - hc08 port now passes
5455         regression tests
5456
5457
5458 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
5459
5460         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
5461         * Makefile.common.in,
5462         * as/Makefile,
5463         * as/hc08/Makefile.in,
5464         * as/mcs51/Makefile.in,
5465         * as/z80/Makefile.in,
5466         * debugger/mcs51/Makefile.in,
5467         * device/include/Makefile.in,
5468         * device/lib/Makefile.in,
5469         * doc/Makefile,
5470         * link/Makefile,
5471         * link/z80/Makefile.in,
5472         * packihx/Makefile.in,
5473         * sim/ucsim/main_in.mk,
5474         * sim/ucsim/avr.src/Makefile.in,
5475         * sim/ucsim/doc/Makefile.in,
5476         * sim/ucsim/gui.src/serio.src/Makefile.in,
5477         * sim/ucsim/hc08.src/Makefile.in,
5478         * sim/ucsim/s51.src/Makefile.in,
5479         * sim/ucsim/xa.src/Makefile.in,
5480         * sim/ucsim/z80.src/Makefile.in,
5481         * src/Makefile.in,
5482         * support/cpp2/Makefile.in,
5483         * support/librarian/Makefile,
5484         * support/makebin/Makefile: added DESTDIR to the install path proposed
5485         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
5486         * doc/sdccman.lyx: added DESTDIR documentation
5487
5488 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
5489
5490         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
5491         instruction for interrupt handlers, use fast returns when returning
5492         from high priority interrupts
5493
5494 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5495
5496         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
5497         code generation
5498         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
5499         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
5500         bugs, ported much of Bernhard's code from mcs51
5501         * src/mcs51/gen.c (genSend),
5502         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
5503         than one when calling a reentrant function
5504         * device/lib/_mullong.c: defined an alternate struct layout for big
5505         endian ports (hc08)
5506
5507 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5508
5509         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
5510         test
5511
5512 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5513
5514         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
5515         are sane and complete before asking the port its prefered parameter
5516         passing method (fixes bug #1017633)
5517         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
5518         and _ret3
5519
5520 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5521
5522         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
5523         problem in bitfields >= 8 bits.
5524
5525 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5526
5527         * src/SDCCsymt.c: undid changes that were not meant to be committed
5528
5529 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5530
5531         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
5532
5533 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
5534
5535         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
5536           copied and wrong bit got inverted
5537
5538 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5539
5540         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
5541         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
5542         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
5543         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
5544         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
5545         assignments to bitfields at known addresses
5546         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
5547         reads from bitfields at known addresses
5548         * src/hc08/ralloc.c (packRegisters),
5549         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
5550         genhc08Code): optimize pointer get values used as conditionals
5551         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
5552         and branch
5553
5554 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5555
5556         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
5557         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
5558         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
5559         as conditionals
5560
5561 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5562
5563         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
5564
5565 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5566
5567         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
5568         related problems
5569
5570 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
5571
5572         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
5573
5574 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5575
5576         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
5577         mcs51 port
5578
5579 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
5580
5581         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
5582
5583 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5584
5585         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
5586         cases use more compact code.
5587
5588 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
5589
5590         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
5591
5592 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5593
5594         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
5595
5596 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5597
5598         * src/SDCCsymt.h,
5599         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
5600         parameter of changePointer() from symbol* to sym_link*
5601         * src/SDCCast.c (decorateType): call changePointer() for CAST op
5602         * src/SDCCsymt.c (compareType): void* type is castable to other
5603         pointers, but not necesarily an exact match.
5604         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
5605         is no longer blindly treated as an exact match.
5606         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
5607
5608 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
5609
5610         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
5611
5612 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
5613
5614         * src/pic/gen.c,
5615         * src/pic/pcode.c,
5616         * src/pic/ralloc.h,
5617         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
5618
5619 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
5620
5621         * src/pic/device.c,
5622         * src/pic/device.h,
5623         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
5624
5625 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5626
5627         * src/mcs51/gen.c (emitcode): fixed bug #992819
5628
5629 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
5630
5631         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
5632           there's no need to make it worse
5633
5634 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5635
5636         * src/mcs51/ralloc.c (deassignLR),
5637         * src/ds390/ralloc.c (deassignLR),
5638         * src/hc08/ralloc.c (deassignLR),
5639         * src/z80/ralloc.c (deassignLR),
5640         * src/pic/ralloc.c (deassignLR),
5641         * src/pic16/ralloc.c (deassignLR),
5642         * src/avr/ralloc.c (deassignLR),
5643         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
5644         rlivePoint): fixed another part of bug #971834
5645
5646 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5647
5648         * src/z80/main.c: enabled "critical" keyword
5649         * src/z80/mappings.i,
5650         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
5651         functions (fixes bug #979646)
5652         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
5653
5654 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5655
5656         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
5657           such as c:\mydir.
5658
5659 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
5660
5661         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
5662           doesn't disable too much optimizations
5663
5664 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5665
5666         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
5667
5668 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
5669
5670         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
5671
5672 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
5673
5674         * src/pic/gen.c tidied up tabs
5675         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
5676         * src/pic/main.c tidied up tabs
5677         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
5678         * src/pic/pcoderegs.c tidied up tabs
5679         * src/pic/ralloc.c tidied up tabs
5680
5681 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
5682
5683         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
5684         to S_FIXED for pic16 port and when symbol is not in level 0,
5685         allocate for S_REGISTER storage class and pic16 port, too,
5686         * src/pic16/device.h: prototype for checkSym,
5687         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
5688         * (pic16_assignConfigWordValue): test the value and the mask to
5689         validate that the value is suitable for the configuration word,
5690         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
5691         collect extern declared symbols, don't emit symbol twice, check
5692         first if symbol is in publics set first,
5693         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
5694         * added command line '--fstack' which enables an experimental
5695         feature for stack access, too buggy to be used yet...
5696         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
5697         * (pic16_allocDirReg): when register has storage class S_REGISTER
5698         allocate in pic16_dynAccessRegs,
5699         * device/include/pic16/pic18f????.h: modified configuration word
5700         naming convention, words started as CONFIG0H but should be CONFIG1H
5701
5702 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
5703
5704         * device/include/mcs51reg.h: fixed bug 970993
5705
5706 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
5707
5708         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
5709         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
5710         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
5711         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
5712         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
5713         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
5714           error/warning numbers,
5715           added function setWarningDisabled()
5716         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
5717         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
5718           _memcmp.c _memmove.c calloc.c realloc.c free.c
5719         * support/regression/tests/malloc.c: added tests for new functionality
5720         * support/regression/tests/zeropad.c: added tests for truncated initializers
5721           and initialized char arrays starting with '\x0'
5722         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
5723
5724 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
5725
5726         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
5727
5728 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5729
5730         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
5731         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
5732         peephole 177.e. Thanks to anonymous
5733
5734 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
5735
5736         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
5737         function isn't used in the source but referenced as a
5738         variable initializer then declare it as extern in .asm file
5739
5740 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
5741
5742         * .version: increased version number to 2.4.3
5743
5744         Adding version extension according to ChangeLog CVS revision
5745         * src/Makefile.in (target all): added dependency 'version.h'
5746         * (rule version.h): added rule to create version.h from ChangeLog,
5747         * (rule dep): added dependency version.h,
5748         * src/version.awk: AWK script to create version.h
5749         * src/SDCCdwarf2.c (dwWriteModule),
5750         * src/SDCCglue.c (initialComments),
5751         * src/SDCCmain.c (printVersionInfo): modified to write after
5752         version string the version extension number,
5753         * src/SDCCutil.c: included "version.h"
5754         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
5755         number,
5756         * src/SDCCutil.h: added prototype for getBuildNumber
5757
5758         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
5759         includeDirsSet, too,
5760         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
5761         const char [] is found in function prototype...
5762
5763         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
5764         moving to WREG with source is already in WREG,
5765         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
5766         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
5767         * (aopForSym): stack'ed symbols are partially supported, added
5768         if-clause to support symbols in FARSPACE,
5769         * (sameRegs): added test for AOP_ACC to see if registers are same,
5770         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
5771         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
5772         * (pic16_popRegFromString): will not allocate a new register if it
5773         doesn't find one by name, bug may have introduced...
5774         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
5775         * (genIpush): revived to use pic16 port's stack,
5776         * (genAddrOf): added incomplete case for stack'ed operand,
5777         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
5778         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
5779         can handle multibyte operands,
5780         * src/pic16/glue.c (pic16_printIval*): some debug info added,
5781         * (pic16initialComments): added message for MPLAB compatibility
5782         mode enabled,
5783         * src/pic16/main.h: prototype for pic16_mplab_comp,
5784         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
5785         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
5786         * (_pic16_linkEdit): NEW, handles link stage, transferred here
5787         because of increased complexity of procedure,
5788         * (_process_pragma): stack pragma changed to format 'stack pos len',
5789         emit symbol '_stack_end' to conform with gplink,
5790         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
5791         to search for register,
5792         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
5793         PO_GPR_REGISTER,
5794         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
5795         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
5796         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
5797         case for PO_GPR_REGISTER,
5798         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
5799         dies, the new era is ahead !...
5800         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
5801         pic16_dynInternalRegs,
5802         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
5803         * (pic16_allocDirReg): minor optimizations and bug fixes,
5804         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
5805
5806         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
5807         load stack and frame pointer with address of 'stack_end' symbol
5808
5809 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
5810
5811         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
5812         without source code but only variable initializers
5813
5814 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
5815
5816         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
5817         external are not declared as extern to reduce overhead while linking
5818
5819 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
5820
5821         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
5822
5823 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
5824
5825         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
5826           Yee Keat for the patch
5827         * src/SDCCast.c (decorateType): fixed bug #979599
5828         * src/ds390/gen.h: removed local fReturnSizeDS390
5829         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
5830         * src/ds390/gen.c (genAnd, genOr, genXor),
5831         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
5832
5833 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
5834
5835         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
5836         add relFilesSet to $3, manipulate $2 to handle linking of object
5837         files without source files in command line,
5838         * device/include/pic16 (all headers): added ID location macros,
5839         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
5840         entries for ID location bytes,
5841         * (pic16_assignIdByteValue): NEW,
5842         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
5843         added field dumpcalltree to pic16_options_t,
5844         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
5845         is used instead of pic16_Gstack_base_addr, check if (ifx) before
5846         emitting rFalseIfx label after check_carry label,
5847         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
5848         pic16_emitDIRegs), NEW
5849         * (pic16glue): dump .calltree file when option --calltree found,
5850         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
5851         * (_pic16_genAssemblerPreamble): emit ID locations after
5852         configuration registers,
5853         * (pic16_linkCmd): modifications of the link command,
5854         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
5855         * (pic16_pCodeInitRegisters): don't init stack registers,
5856         * (pic16_findPrevInstruction): fixed bug,
5857         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
5858         bug with immediate registers,
5859         * (buildCallTree): traces stack push and pop,
5860         * (pct2): dump also stack usage for each function,
5861         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
5862         * (pic16_allocDirReg): various modifications,
5863         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
5864         fixed to 1,
5865
5866 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
5867
5868         * src/pic16/pcode.c: removed buggy double colon
5869
5870 2004-07-01 Borut Razem <borut.razem AT siol.net>
5871
5872         * support/scripts/sdcc.nsi: added include/pic16 to setup
5873
5874 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
5875
5876         * device/lib/Makefile.in: fixed bug in target objects-pic16,
5877         * device/lib/pic16/Makefile: prefixed with dash (-) command under
5878         target 'clean',
5879         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
5880         specific command line arguments. Also added sample lkr script
5881         for placing a variable at a specific memory bank.
5882         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
5883         at a specific memory bank,
5884         * (pic16_dump_isection): fixed bug which caused string literals to
5885         be omitted when dumping idata section,
5886         * (pic16_groupRegistersInSection): added code to handle registers
5887         in specific memory banks,
5888         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
5889         public, all references are renamed too,
5890         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
5891         AOP_DPTR2,
5892         * (pic16_storeForReturn): added case to handle when dest is WREG,
5893         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
5894         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
5895         pic16_rel_udata, check to see if that register is marked as being
5896         a member of a specific memory bank,
5897         * (pic16_printIvalCharPtr): added code to add string literals either
5898         to code or the idata sections,
5899         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
5900         also accept the 'udata' pragma,
5901         * src/pic16/main.h: new structure types sectName and sectSym
5902         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
5903         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
5904         * (pic16_findPrevInstruction): fixed, it returned nothing,
5905         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
5906         instruction combinations,
5907         * (pic16_FixRegisterBanking): heavily reorganised,
5908         * (pic16_AnalyzeBanking): if generating banksel directives is
5909         disabled, then don't call FixRegisterBanking at all,
5910         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
5911         completely removed,
5912         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
5913
5914 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
5915
5916         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
5917         Phuah Yee Keat <yk.phuah AT nestac.com>
5918
5919 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5920
5921         * src/pic16/glue.c (pic16createInterruptVect): function now emits
5922         correctly the IVT even if it is relocated to some other location
5923
5924 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
5925
5926         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
5927         * device/include/pic16/pic18f2220.h: NEW,
5928         * device/lib/pic16/libdev/pic18f2220.c: NEW,
5929         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
5930         * src/pic16/device.c (struct Pics16): added info for 18f2220,
5931         * src/pic16/device.h (struct pic16_options): added ivt_loc and
5932         nodefaultlibs, ivt_loc is the location of the interrupt vector
5933         table, and nodefaultlibs signs that default libraries should not be
5934         linked in link stage,
5935         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
5936         according to --ivt-loc argument,
5937         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
5938         when pragma stack is found,
5939
5940 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5941
5942         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
5943         256 (range check), 257 (do while), 258.a-f (bit banging
5944         f.e. on 3-wire SPI bus)
5945
5946 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5947
5948         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
5949         variables used exclusively within a loop
5950
5951 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
5952
5953         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
5954
5955 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5956
5957         * src/SDCClrange.c (computeClash): fixed bug #971834
5958
5959 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5960
5961         * src/mcs51/gen.c (genCmp): fixed bug #975903
5962         * src/hc08/gen.c (operandsEqu),
5963         * src/ds390/gen.c (operandsEqu),
5964         * src/z80/gen.c (operandsEqu),
5965         * src/pic/gen.c (operandsEqu),
5966         * src/pic16/gen.c (operandsEqu),
5967         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
5968         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
5969
5970 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * src/SDCCcse.c (cseBBlock): fixed bug #966963
5973
5974 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
5975
5976         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
5977         default case in switch statement,
5978         * glue.c (pic16_initPointer): expr is initialised via decoarteType
5979         to eliminate problem with initialisation of pointers, but problem
5980         still exists,
5981         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
5982         * (emitStaticSegment): removed various lines emitting debug info,
5983         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
5984         added processor registers for utilizing EEPROM,
5985         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
5986         configurable and set 8
5987
5988 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
5989
5990         * .version: increased version number to 2.4.2,
5991
5992         Cumulative patch for pic16 port
5993         * src/pic16/device.c: changed scheme to dump initial values for
5994         variables in idata segment, all print_idata* functions were removed,
5995         now the pic16_printIval* will be called,
5996         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
5997         * _pic16_printPointerType, pic16_printPointerType,
5998         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
5999         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
6000         NEW, similar to the respective functions in SDCCglue.c,
6001         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
6002         way, emitting hex bytes,
6003         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
6004
6005 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/avr/ralloc.c (serialRegAssign),
6008         * src/xa51/ralloc.c (serialRegAssign),
6009         * src/pic/ralloc.c (serialRegAssign),
6010         * src/pic16/ralloc.c (serialRegAssign),
6011         * src/hc08/ralloc.c (serialRegAssign),
6012         * src/z80/ralloc.c (serialRegAssign),
6013         * src/ds390/ralloc.c (serialRegAssign),
6014         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
6015
6016 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6017
6018         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
6019         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
6020
6021 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
6022
6023         Cumulative patch for pic16 port:
6024         * src/pic16/device.h (typedef PIC16_device) modified fields for
6025         defining microcontrollers,
6026         * src/pic16/device.c: added new info for all devices in Pics16 array,
6027         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
6028         to be optimised out by the pCode optimiser,
6029         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
6030         specially, bug reported by G.M. Gallant,
6031         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
6032         as force'd so that cannot be optimised out by pCode optimiser,
6033         * src/pic16/pcode.c,
6034         * src/pic16/pcodepeeph.c,
6035         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
6036         they are disabled by default, but can be enabled explicit with
6037         command argument --denable-peeps, for testing,
6038         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
6039         --pomit-ivt in COMPILE_FLAGS
6040
6041 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
6042
6043         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
6044           compilation on MSVC
6045
6046 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
6047
6048         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
6049
6050 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6051
6052         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
6053         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
6054
6055 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
6056
6057         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
6058         would only assign 0x300001 register.
6059
6060 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
6061
6062         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
6063         in COMPILE_FLAGS. Thanks to G. Gallant for report.
6064
6065 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6066
6067         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
6068         for ds80c400
6069         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
6070         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
6071         added peephole 254 (left shift), 255 (jump table)
6072
6073 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
6074
6075         * device/lib/Makefile.in: removed comment line with model-pic16,
6076         * (target port-specific-objects-pic16): the libraries and objects
6077         are copied to the build directory form the device/lib/pic16/bin
6078         directory
6079
6080         Cumulative patch concerning pic16 port:
6081         * library directory has been re-organized,
6082         * added support for PIC18F1220,
6083         * added headers and library sources for chips 18f1220,18f6520,
6084         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
6085
6086         * configuration registers setting has changed, now each supported
6087         device has a complete description of the registers it uses,
6088         * all initialisations are moved to idata sections, these section
6089         can be absolute or relocatable,
6090         * fixed initialisation of codespace variables,
6091         * fixed warning about PCLATU and gpsim,
6092         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
6093         * (genAssign): use table reads when assigning from variables in codespace,
6094         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
6095         char/int variables placed in codespace,
6096         * (pic16_emitConfigRegs): NEW, emits a list with configuration
6097         registers set in .asm file, no need for --pomit-config-words anymore,
6098         * (pic16glue): some 8051 legacy segments are commented out
6099         (to be removed completely),
6100         * added support for alternative assembler and linker with --asm=
6101         and --link= command line arguments,
6102         * peepholes are disabled automatically in the port, no need to
6103         specify on command line,
6104         * port supports natively char/int/long multiplication, but converts
6105         all divisions to support functions,
6106         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
6107         to the file set in variable $2,
6108         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
6109         strings in ASCII format and not in hex,
6110         * ralloc.c (serialRegAssign): added a triplet of conditional calls
6111         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
6112         allocate proper register if iCodes aren't temporary,
6113
6114 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
6115
6116         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
6117
6118 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
6119
6120         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
6121         is commented out
6122
6123 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6124
6125         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
6126         computed address is reused
6127         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
6128         multi-byte bitfields
6129
6130 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
6131
6132         * src/z80/gen.c: (genArrayInit): must check for pointers too
6133
6134 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
6135
6136         * support/regression/tests/zeropad.c: never meant to commit the
6137           nestedstruct test: removed, added check for GCC version
6138
6139 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
6140
6141         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
6142         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
6143         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
6144           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
6145           bugs 928906 and 954082 half-empty initializers
6146         * src/SDCCsymt.h,
6147         * src/SDCCsymt.c (getAllocSize): added for above fix
6148         * src/z80/gen.c (genArrayInit): fixed bug 741044
6149         * support/regression/tests/zeropad.c: added tests
6150
6151 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
6152
6153         * src/pic16/device.c (pic16_dump_section): corrected bug which
6154         caused some symbols of the libraries to be misplaced
6155
6156 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6157
6158         * src/pic16/glue.c,
6159         * src/pic16/ralloc.h,
6160         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
6161         to fix conflict with pic port
6162
6163 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
6164
6165         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
6166         externs configuration variables,
6167         * src/pic16/ralloc.h,
6168         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
6169         prototype in header, commented out some debug messages
6170
6171 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
6172
6173         * src/pic16/glue.c,
6174         * src/pic16/main.c,
6175         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
6176         for gpasm COFF object generation. Thanks to D. Hawkins for
6177         his patch info
6178
6179 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6180
6181         * src/ds390/main.c,
6182         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
6183         Brock for spotting this)
6184         * src/ds390/gen.c (genEndFunction),
6185         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
6186         interrupt handler and critical. Disable push/pop optimizations when
6187         peephole optimizations disabled.
6188
6189 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6190
6191         Updated pic16 library sources and headers.
6192         * device/lib/pic16/pic18f*/ ,
6193         * device/include/pic16/*.h: modified to handle structured SFR
6194         definitions
6195
6196 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
6197
6198         * src/port.h (PORT structure): added hook initPaths, now each
6199         port can declare its own default search paths,
6200         which can been seen with the --print-search-dirs option,
6201         see pic16 port for example,
6202         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
6203         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
6204         * (doPrintSearchDirs): NEW, replaces in a central manner the
6205         printing of search dirs which was split in set*Paths functions,
6206         * (main): added call to port->initPaths and doPrintSearchDirs,
6207         * src/avr/main.c,
6208         * src/ds390/main.c,
6209         * src/hc08/main.c,
6210         * src/izt/i186.c,
6211         * src/izt/tlcs900h.c,
6212         * src/mcs51/main.c,
6213         * src/pic/main.c,
6214         * src/pic16/main.c: modified port structures to reflect addition of
6215         initPaths hook,
6216
6217         * src/pic16/device.c (regCompare): registers are finally sorted by name,
6218         * (pic16_dump_section): for registers in same address reserve memory once,
6219         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
6220         to no_banksel,
6221         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
6222         result is greater in size than right or left,
6223         * (pic16_genUMult8X8_8): there are some cases where the result can
6224         be 16 bits size, so handle these,
6225         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
6226         * (pic16_outBitC): modified to emit pcodes,
6227         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
6228         or not,
6229         * (genDivOneByte): implemented algorithm to divide 8-bits,
6230         * (genCmp): uncommented goto, but issues still exist,
6231         * (genAnd): fixed a bug with variables >8bits,
6232         * (genPackBits): optimization added that uses BCF/BSF to change a
6233         single bit,
6234         * (genAssign): fixed bug when assigning floating point literals,
6235         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
6236         __sdcc_gsinit_startup label,
6237         * src/pic16/main.c (_pic16_init): removed search directory
6238         initialisations,
6239         * (_pic16_initPaths): NEW, used to initialise search directories,
6240         * (_hasNativeMulFor): support functions for all except char/int
6241         multiplication, and char division,
6242         * (PIC16_port struct): modified entry for native mul support,
6243         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
6244         no_banksel option,
6245         * (buildCallTree): call to register_usage is ifdef'ed out,
6246
6247 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6248
6249         * device/include/string.h: applied Stas Sergeev's patch to make this
6250         header file compatible with the preprocessor -Wundef option
6251         * src/SDCCmain.c (main): abort compilation if preprocessor reports
6252         failure (fixes bug #941458)
6253
6254 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         * src/SDCCopt.c (killDeadCode): fixed bug #907733
6257         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
6258         that the variable, not the function, should be static
6259         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
6260         to be consistent with non-literal case
6261
6262 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6263
6264         * src/SDCCast.c (isConformingBody): fixed bug #949967
6265         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
6266         convilong): fixed bug #952086
6267
6268 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6269
6270         * src/SDCCmem.c (allocVariables): fixed bug #955321
6271
6272 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6273
6274         * src/hc08/main.c (_hc08_genAssemblerEnd),
6275         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
6276         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
6277         completely eliminated the use of a temporary file
6278         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
6279         when more than one file linked
6280         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
6281
6282 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6283
6284         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
6285         which fixes bug #543481
6286         * support/regression/tests/bug-751703.c: fixed comments left from a
6287         cut and paste error
6288         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
6289         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
6290         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
6291         scopes
6292         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
6293         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
6294         are now changed to underscores in moduleName
6295
6296 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6297
6298         * as/mcs51/lkmem.c: better fix for bug #954173
6299
6300 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
6301         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6302
6303         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
6304         * device/include/c8051f000.h,
6305         * device/include/c8051f120.h,
6306         * device/include/c8051f300.h,
6307         * device/include/c8051f310.h,
6308         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
6309         PWM16) and detab'ed
6310
6311 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6312
6313         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
6314         and mailing lists, doc'ed --no-peep-comments, removed reference
6315         to knoppix (newest version has no LyX/LaTeX), other minor changes
6316         * src/SDCCglue.c (glue): save 2 bytes stack space with
6317         option --main-return. The ljmp could probably be avoided too
6318
6319 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6320
6321         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
6322
6323 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6324
6325         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
6326         * src/SDCCopt.c (isLocalWithoutDef),
6327         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
6328         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
6329         (credit to Maarten Brock for patch #949363, on which this is based)
6330         * support/regression/tests/bug-751703.c: some test cases of extern used
6331         within inner scopes.
6332
6333 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
6336         SPEC_STRUCT
6337         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
6338         struct definitions
6339         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
6340         dwWriteLabel): fix to create valid debugger symbols even when
6341         the module name has non-alphanumeric symbols in it
6342         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
6343         when a variable's allocation has been optimized away
6344
6345
6346 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
6349         * src/hc08/main.c,
6350         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
6351         * src/mcs51/main.c,
6352         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
6353         * src/ds390/main.c,
6354         * src/z80/gen.c (z80_emitDebuggerSymbol),
6355         * src/z80/main.c,
6356         * src/pic/gen.c (pic14_emitDebuggerSymbol),
6357         * src/pic/main.c,
6358         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
6359         * src/pic16/main.c,
6360         * src/avr/gen.c (avr_emitDebuggerSymbol),
6361         * src/avr/main.c,
6362         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
6363         * src/xa51/main.c,
6364         * src/SDCCdebug.c (emitDebuggerSymbol),
6365         * src/SDCCdebug.h,
6366         * src/port.h: added a debugger struct to the port struct. Added a
6367         callback for defining debugger symbols
6368
6369         * src/SDCCast.c (createLabel),
6370         * src/SDCC.y (labeled_statement): mark all compiler generated labels
6371         with isitmp = 1
6372         * src/SDCCicode.h,
6373         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
6374         iCode back to the ast for the function
6375
6376         * src/hc08/ralloc.c (hc08_assignRegisters),
6377         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
6378         unneeded fields from the regs struct.
6379         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
6380         pushReg() & pullReg() functions instead of emitcode()
6381
6382         * src/hc08/gen.c (genLabel, genhc08Code),
6383         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
6384
6385         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
6386         debugger hooks
6387
6388         * src/hc08/gen.c (genEndFunction, genhc08Code),
6389         * src/hc08/gen.h,
6390         * src/mcs51/gen.c (genEndFunction, gen51Code),
6391         * src/mcs51/gen.h,
6392         * src/ds390/gen.c (genEndFunction, gen390Code),
6393         * src/ds390/gen.h,
6394         * src/z80/gen.c (genEndFunction, genZ80Code),
6395         * src/z80/gen.h,
6396         * src/z80/z80.h,
6397         * src/pic/gen.c (genEndFunction, genpic14Code),
6398         * src/pic/gen.h,
6399         * src/pic16/gen.c (genEndFunction, genpic16Code),
6400         * src/pic16/gen.h,
6401         * src/avr/gen.c (genEndFunction, genAVRCode),
6402         * src/avr/gen.h,
6403         * src/xa51/gen.c (genEndFunction, genXA51Code),
6404         * src/xa51/gen.h,
6405         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
6406         specific code to cdbFile.c and out of the backend code generators
6407
6408         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
6409         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
6410         starting address is now 0
6411
6412         * as/hc08/asm.h,
6413         * as/hc08/m08pst.c,
6414         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
6415         assembler directive for DWARF support
6416         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
6417
6418         * src/src.dsp,
6419         * src/Makefile.in,
6420         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
6421
6422 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
6425         and inappropriate peephole optimization in jump tables
6426
6427 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6428
6429         * as/hc08/m08pst.c,
6430         * src/SDCCglue.c: sdccopt works for the hc08 port now
6431
6432 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
6433
6434         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
6435
6436 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6437
6438         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
6439
6440 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6441
6442         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
6443         rules
6444         * src/SDCCmain.c,
6445         * src/SDCCglobl.h,
6446         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
6447         comments from the peephole optimizer replacement rules
6448         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
6449         symbols
6450         * src/SDCCcse.c (updateSpillLocation),
6451         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
6452         equivalents
6453         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
6454         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
6455         objects far pointers
6456
6457 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6458
6459         * src/SDCCsymt.h: a missing part of my last change
6460         * src/pic/ralloc.c (regTypeNum),
6461         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
6462
6463 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6464
6465         * src/SDCCicode.h,
6466         * src/SDCCicode.c (aggrToPtrDclType),
6467         * src/SDCCptropt.h,
6468         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
6469         ptrPseudoSymConvert),
6470         * src/pic/ralloc.c (regTypeNum),
6471         * src/pic16/ralloc.c (regTypeNum),
6472         * src/hc08/ralloc.c (regTypeNum),
6473         * src/ds390/ralloc.c (regTypeNum),
6474         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
6475         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
6476
6477 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6478
6479         * link/z80/lkmain.c (afile),
6480         * as/hc08/lkmain.c (afile),
6481         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
6482         prevent a pointer problem when a filename has no directory and
6483         no extension specified.
6484
6485 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6486
6487         * link/z80/lkmain.c (afile): allow periods in directory names
6488         * link/z80/lkmain.c (afile),
6489         * as/mcs51/lkmain.c (afile),
6490         * as/hc08/lkmain.c (afile): allow linker script file to have an
6491         extension other than ".lnk"
6492         * link/z80/lklex.c (getfid),
6493         * link/z80/lkmain.c (parse),
6494         * as/mcs51/lklex.c (getfid),
6495         * as/mcs51/lkmain.c (parse),
6496         * as/hc08/lklex.c (getfid),
6497         * as/hc08/lkmain.c (parse): Support comments in the linker script
6498         file on lines by themselves and after filenames
6499
6500 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6501
6502         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
6503
6504 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6505
6506         * src/z80/peeph-z80.def: removed some peephole rules that don't
6507         work with multibyte arithmetic (fixed bug #937126)
6508         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
6509         to registers and not global variables
6510         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
6511         geniCodePreInc, geniCodePostDec, geniCodePreDec,
6512         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
6513         checking for assignments not internally generated (fixed bug #931895)
6514         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
6515         structure member (fixed bug #930072)
6516
6517 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/SDCCmain.c (linkEdit),
6520         * src/hc08/main.c (_hc08_parseOptions),
6521         * as/hc08/Makefile.in,
6522         * as/hc08/aslink.h,
6523         * as/hc08/asm.h,
6524         * as/hc08/m08pst.c,
6525         * as/hc08/lkrloc.c (relr, rele),
6526         * as/hc08/lkarea.c (lnkarea)
6527         * as/hc08/lkmain.c (afile, parse),
6528         * as/hc08/lkelf.c: support for ELF output
6529         * as/hc08/lks19.c (s19),
6530         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
6531
6532 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6533
6534         * as/mcs51/lkihx.c: Fixed bug #899105.
6535
6536 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6537
6538         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
6539         .dsp files from Unix to DOS.
6540
6541 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6542
6543         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
6544         function pointers; we have been compliant for several months now.
6545         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
6546         change that was accidently commented out
6547         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
6548         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
6549         bug #922319
6550
6551 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         * src/hc08/gen.c: output of all of the internal debugging information
6554         is now controlled by the D() macro; it is disabled by default
6555
6556 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
6559         harder to keep the same registers during a CAST iCode
6560         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
6561         long via int can be done in a single cast, if the signedness is
6562         correct.
6563         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
6564         putchar() in tinibios.c in ds390's library
6565
6566 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
6567
6568         * src/SDCCast.c (decorateType): fixed bug #898889,
6569         cast result of a literal complement too
6570         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
6571         fixed check for bitfields
6572
6573 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
6574
6575         * src/SDCCicode.c (geniCodeLogic): made it static,
6576         (geniCodeLogicAndOr): added in order to fix bug #905492,
6577         (ast2iCode): fixed bug #905492
6578         * support/regression/tests/bug-905492.c: added
6579         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
6580         (processParms): fixed bug #927659: don't copy parms, this will clear
6581         decorated flag
6582         * support/regression/tests/bug-927659.c: added
6583
6584 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
6585
6586         * src/SDCCast.c (addCast): don't cast float to char
6587         * device/lib/libsdcc.lib: added _memmove
6588
6589 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
6590
6591         * device/lib/large/Makefile: fixed parallel execution by
6592         replacing `make` by `$(MAKE)`
6593
6594 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6595
6596         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
6597         offsets (fixes bug #923936)
6598
6599 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
6600
6601         * device/lib/small/Makefile: fixed parallel execution by
6602         replacing `make` by `$(MAKE)`
6603
6604 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6605
6606         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
6607
6608 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
6609
6610         * src/pic/gen.c (genCpl): multi-byte complements were not working.
6611         * src/regression/Makefile: Regression test was not running.
6612
6613 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
6614
6615         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
6616         complement if possible
6617         * src/SDCCval.c (valComplement),
6618         * src/SDCCicode.c (operandOperation): fixed complement of literal
6619         * support/regression/tests/onebyte.c (testComplement): added
6620
6621 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
6622
6623         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
6624         return an optimized tree; actually replace actParm with the new tree
6625         * src/SDCCast.h: added some parantheses to remove side effects
6626         * support/regression/tests/bug-920866.c
6627
6628 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
6629         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
6630         Bit operands were not being handled properly in the pic14 port.
6631         (now src/regression/add.c passes again).
6632
6633 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6634
6635         * src/SDCC.y (labeled_statement): case and default no longer require
6636         a following statement (RFE #893037)
6637
6638 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
6641         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
6642         disabled (fixes bug #916294)
6643         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
6644         "mov a,acc"; patch provided by Lenny Story
6645         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
6646
6647 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6648
6649         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
6650         functions
6651         * src/ds390/gen.c (genFunction, genEndFunction),
6652         * src/ds390/ralloc.c (ds390_assignRegisters),
6653         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
6654         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
6655         pushed if there are parameters passed on the stack. Also, a cleaner
6656         way to decide if r0/r1 should be pushed/popped. (Together they fix
6657         bug #918693)
6658
6659 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6660
6661         * doc/sdccman.lyx,
6662         * device/lib/mcs51/crtpagesfr.asm,
6663         * device/lib/mcs51/crtxinit.asm,
6664         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
6665         to avoid confusion with Si Lab's SFRPAGE register.
6666
6667 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6668
6669         * src/SDCCglue.c (emitMaps): allow public sfr variables
6670         * src/SDCCglue.c (initialComments): include compiler build date
6671         with compiler version and put the timestamp of the generated
6672         assembly file on a serperate line to be less confusing.
6673         * src/port.h: added genInitStartup hook
6674         * src/avr/main.c,
6675         * src/ds390/main.c,
6676         * src/hc08/main.c,
6677         * src/pic/main.c,
6678         * src/pic16/main.c,
6679         * src/xa51/main.c,
6680         * src/z80/main.c: genInitStartup initialize as NULL (default to
6681         historical behaviour)
6682         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
6683         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
6684         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
6685         library instead of hard coding it into the compiler.
6686         * support/regression/ports/mcs51-stack-auto/spec.mk,
6687         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
6688         * device/lib/mcs51/Makefile,
6689         * device/lib/small/Makefile,
6690         * device/lib/large/Makefile,
6691         * device/lib/mcs51/crtpagesfr.asm,
6692         * device/lib/mcs51/crtstart.asm,
6693         * device/lib/mcs51/crtxclear.asm,
6694         * device/lib/mcs51/crtxinit.asm,
6695         * device/lib/mcs51/crtclear.asm,
6696         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
6697         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
6698         and into user configurable files.
6699         * device/lib/clean.mk: clean mcs51 directory too
6700         * support/regression/tests/longlit.c: added static to T1 declaration
6701         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
6702         accesses in the initialization code
6703
6704 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6705
6706         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
6707         OSCTRIMVAL as noted in bug #916008
6708
6709 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6710
6711         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
6712         in loops with multiple exits (reported as incorrect registers
6713         used by Martin Helmling in Sdcc-user list)
6714
6715 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6716
6717         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
6718         made ds390 register extensions look less like error messages
6719
6720 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6721
6722         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
6723         reported by Adam Wozniak in Sdcc-user list
6724
6725 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
6726
6727         * src/SDCCast.c (decorateType): fixed with bug and promotion in
6728         arithmetic optimizations, added debug output
6729
6730 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
6731
6732         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
6733         * sdcc.spec: updated and split sdcc into 3 rpms
6734         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
6735         needed for literals of LEFT_OP and '+'
6736         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
6737         introduced RESULT_TYPE_NOPROM
6738         (geniCodeMultiply): fixed logic for decision if mul is optimized to
6739         left shift
6740         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
6741         limited promotion to int only for '*'
6742         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
6743
6744 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
6745
6746         * src/pic16/gen.c (genSkip),
6747         (genc16bit2lit), (gencjneshort): commented out
6748         (is_LitOp): new helper function, checks operand type
6749         (genCmpEq): rewritten
6750
6751 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
6752
6753         * support/regression/tests/bug-908454.c: added
6754
6755 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
6756
6757         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
6758         * src/SDCCicode.c (usualBinaryConversions): op needs int type
6759         (geniCodeCast): cosmetic, don't preserve bit storage class
6760         (geniCodeLeftShift): added promotion
6761         (geniCodeLogic): fixed regression
6762         * src/SDCCsymt.c (computeTypeOr): accept bits too
6763         (compareType): 2nd part of fix for bug #908454, needed for bitfields
6764
6765 2004-03-07  Borut Razem <borut.razem AT siol.net>
6766
6767         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
6768
6769 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
6770
6771         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
6772         version of pic16_genPackRegisters which does not check if ic is a
6773         CAST operator,
6774         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
6775         function cause string1.c regression test fails
6776
6777 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
6778
6779         * sim/ucsim/configure.in,
6780         * sim/ucsim/configure,
6781         * sim/ucsim/doc/Makefile.in: use docdir
6782         * src/SDCC.y: fixed sbit atrributes
6783         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
6784         * src/SDCCast.c (decorateType): |^& need special promotion handling
6785         * src/SDCCast.h,
6786         * src/SDCCsymt.h: moved definition of RESULT_TYPE
6787         * src/SDCCsymt.h (computeType),
6788         * src/SDCCicode.c: computeType() needs op
6789         * src/SDCCsymt.c (checkTypeSanity),
6790         * doc/sddman.lyx: "plain" bitfields are unsigned
6791         * src/SDCCsymt.c (computeTypeOr): added
6792         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
6793         |^& ops
6794         * src/SDCCval.c (val*): computeType() needs op
6795         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
6796         * support/regression/tests/onebyte.c: added tests for |^&
6797
6798 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
6799
6800         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
6801         for writing icode into asm output.
6802
6803 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
6804
6805         * src/pic16/device.c: added some debug lines enabled
6806         with macro DEBUG_CHECK,
6807         * src/pic16/genarith.c: more debug in genPlus,
6808         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
6809         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
6810         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
6811         * (aopForSym): onStack symbols are re-placed in data memspace,
6812         and onStack flag is cleared,
6813         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
6814         copy temporary pcodeop,
6815         * (genPcall): added warning for not updating PCLATU,
6816         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
6817         always true for pic16 port,
6818         * (genMultOneWord): NEW, supports integer multiplication,
6819         * (genMult): modified to call genMultOneWord,
6820         * (ifxForOp): added warning when return NULL,
6821         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
6822         flag is set before call to operandFromSymbol for implicit
6823         added structures,
6824         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
6825         options.intlong_rent are set by default,
6826         * (_hasNativeMulFor): modified to allow port generation of integer
6827         multiplication,
6828         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
6829         set regtype to REG_SFR for all registers, restricting seting the
6830         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
6831
6832 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6833
6834         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
6835         more than 500 times in the regression tests
6836
6837 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         * support/Util/SDCCerr.h,
6840         * support/Util/SDCCerr.c,
6841         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
6842         enumerator_list),
6843         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
6844         for symbol conflicts.
6845         * support/valdiags/tests/enum.c,
6846         * support/valdiags/tests/tentdecl.c,
6847         * support/valdiags/tests/struct.c: expect possible error messages
6848         referring to original symbol definitions.
6849         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
6850         * src/SDCCsymt.h,
6851         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
6852
6853 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
6854
6855         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
6856
6857 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
6858
6859         * src/pic16/ralloc.c (newReg): fixed bug #908929
6860
6861 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6862
6863         * src/ds390/gen.c: added missing #include "main.h"
6864
6865 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
6866
6867         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
6868         checking if symbol is already in set,
6869         * src/pic16/device.h: prototype for checkAddSym,
6870         * src/pic16/gen.c: (_G): added entry interruptvector,
6871         * (assignResultValue): removed some commented out lines,
6872         * (genFunction): check for ISR via sym->type, absolute section for
6873         interrupt code is created via a new pBlock, the goto instruction is
6874         placed now correctly at the interrupt vector position, changed all
6875         references from ivec to _G.interruptvector,
6876         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
6877         is the interrupt is a high priority one, same for return from ISR,
6878         * src/pic16/glue.c: changed all calls of addSetHead for publics and
6879         externs to calls of checkAddSym,
6880         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
6881         pic16_pcode_verbose flag is set,
6882         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
6883         * src/pic16/pcoderegs.c: message about how many registers are saved
6884         will only be emitted if pic16_pcode_verbose flag is set,
6885
6886 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6887
6888         * src/ds390/ralloc.h,
6889         * src/ds390/ralloc.c (ds390_regWithIdx),
6890         * src/ds390/gen.c (emitcode),
6891         * src/ds390/main.h,
6892         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
6893         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6894         ds390operandCompare, getRegsRead, getRegsWritten,
6895         initializeAsmLineNode): customized instruction size calculation for
6896         ds390, started basis for some register optimizations
6897         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
6898         corresponding assembly output
6899         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
6900         missing push/pop of r0/r1. Optimized push/pops
6901
6902 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6903
6904         * src/mcs51/main.c (instructionSize): fixed ACALL size
6905         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
6906
6907 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
6908
6909         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
6910         the sorting of rlist with NULL elements
6911         * (print_idataType, print_idata): NEW to create idata sections
6912         * src/pic16/device.h: idataSymSet new variable
6913         * src/pic16/gen.c (genFunction): fixed some bugs in string
6914         comparing, improved the absolute section creation for ISRs,
6915         added FSR0L/FSR0H in registers that are saved in an ISR,
6916         * (genInline): fixed the processing of inline snippets,
6917         now they undergo no process by the peephole optimizer
6918         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
6919         are placed in idataSymSet,
6920         * (pic16emitStaticSeg): extern symbols are added in externs,
6921         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
6922         switching when aboslute variables are placed in access bank memory
6923         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
6924         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
6925         commented out with #if,
6926         * (pic16_packRegisters): reintroduce the check for CAST because some
6927         symbols are not correctly handled,
6928         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
6929         pCodeInstruction instead of pCode,
6930         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
6931         pCodeAsmDir definition,
6932         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
6933         directive, then the argument directive is emitted without the leading
6934         tab, hack for inline labels which must be in the first column,
6935         * (compareLabel,pic16_findNextInstruction),
6936         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
6937         * (insertBankSwitch): modified for the new pCodeAsmDir,
6938
6939 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
6940         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
6941
6942         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
6943         instance,
6944         * (pushSide): commented out with #if,
6945         * (assignResultValue): fixed some typos in saving
6946         registers,
6947         * (genPcall): FIXED and sync'ed with genCall,
6948         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
6949         * (genNearPointerGet): fixed to handle some more cases,
6950         implementation scheme via table reads,
6951         * (genConstPointerGet): modified to access code memory correct,
6952         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
6953         and improved to handle some cases
6954         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
6955         instead of "RETLW" for init data
6956         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
6957         not IN_DIRSPACE, work around to reduce bank switching when aboslute
6958         variables are placed in access bank memory (<0x80 and >=0xf80),
6959         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
6960         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
6961         TBLWT_POSTDEC,TBLWT_PREINC
6962         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
6963         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
6964         directives
6965         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
6966         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
6967         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
6968         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
6969
6970 2004-02-29  Borut Razem <borut.razem AT siol.net>
6971
6972         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
6973         support/Util/findme.h, support/Util/system.h: enhance binary relative
6974         search for lib and include by using findProgramPath()
6975
6976 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6977
6978         * src/SDCCpeeph.h,
6979         * src/SDCCpeeph.c (pcDistance),
6980         * src/port.h,
6981         * src/mcs51/ralloc.h,
6982         * src/mcs51/ralloc.c (mcs51_regWithIdx),
6983         * src/mcs51/main.h,
6984         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
6985         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
6986         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
6987         size calculation port specific, started basis for some register
6988         optimizations
6989         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
6990         missing push/pop of r0/r1. Optimized push/pops
6991         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
6992         * device/lib/_modsint.c (_modsint),
6993         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
6994         and stack version so regression tests pass
6995
6996 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
6997
6998         * src/Makefile.in (dep): include SLIBOBJS in dependency check
6999         * src/SDCCast.c (decorateType): catch another small optimization
7000         with '?' operator
7001         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
7002         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
7003         modified to finally use computeType() all over SDCC,
7004         see Feature Request #877103
7005         * src/SDCCval.h: cosmetic
7006         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
7007         valCompare(); regression tested in muldiv.c
7008         * support/regression/tests/muldiv.c (testMod): mod sign follows
7009         dividend only
7010
7011 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
7012
7013         * src/SDCCast.c (decorateType): fixed bug #902362
7014         * doc/INSTALL.txt: fixed install instructions for win32
7015
7016 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
7017
7018         * device/include/Makefile.in (install): fixed by replacing spaces
7019         by tabs
7020         * doc/README.txt,
7021         * doc/INSTALL.txt: updated for release
7022         * doc/sdccman.lyx: added warning for --xstack being buggy
7023
7024 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
7025
7026         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
7027         to eliminate build warnings.
7028         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
7029
7030 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
7031            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7032
7033         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
7034         removed -penable-stack, added comment for stack pragma, added
7035         warning for not initializing the stack/frame registers, removed
7036         comment at interrupts section
7037
7038         Stack is made permanent, there is no ability to disable stack usage.
7039         * src/pic16/device.h,
7040         * src/pic16/device.c: removed all references to USE_STACK macro,
7041         * src/pic16/device.c (pic16_dump_section): when no elements in
7042         rlist, free rlist before return,
7043         * (pic16_dump_int_registers): NEW, internal registers are a new set
7044         of general purpose registers reused by each function,
7045         * (checkAddReg): returns 1 if registers is added to set,
7046         * (pic16_groupRegistersInSection): when a registers is of type
7047         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
7048         * src/pic16/device.h: memRange and Assigned Memory are deleted,
7049         SRCASECMP macro is moved here from device.c
7050         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
7051         PO_PCLATU, PO_PRODL, PO_PRODH,
7052         * (pic16_pCodeOpType, genMinus,
7053         changed compares to "a" register, with AOP_ACC,
7054         * (pic16_genPlus): fixed some bugs and indented properly,
7055         * (pic16_addSign): changed size to size+offset in the MOVWF
7056         instruction,
7057         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
7058         multiply 8-bit operand by literal, result is 8-bit,
7059         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
7060         multiply 2 8-bit operand, result is 8-bit,
7061         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
7062         genUMult8X*_16,
7063         * src/pic16/gen.c: changed accUse to contain WREG only,
7064         * (pic16_emitcomment): renamed to pic16_emitpcomment,
7065         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
7066         true, do not use immediate addressing any more unless sym is a
7067         pointer in codespace,
7068         * (aopForRemat): do not use immediate addressing when symbol not in
7069         codespace and when symbol's address is requested,
7070         * (aopOp): for-loop in if(sym->accUse) is modified for the new
7071         accUse size (= 1),
7072         * (aopGet): added case for AOP_ACC and don't return "accumulator
7073         bug" but WREG instead,
7074         * (popGetTempReg): pushes contents of temporary register in stack,
7075         * (popReleaseTempReg): pops contents of temporary register from
7076         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
7077         * (pic16_popGet): separated case AOP_ACC to return register WREG
7078         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
7079         or PO_IMMEDIATE and initializes their instance/offset appropriately,
7080         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
7081         the use of immediate pointers to certain cases only.
7082
7083         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
7084         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
7085         * (assignResultValue, genCall, genRet): modified to use the new
7086         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
7087         genPcall is still broken,
7088         * (genFunction): added code to create 'A' type pBlocks when
7089         interrupt functions are generated, code not extensively tested yet,
7090         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
7091         * (genEndFunction): modified so ISRs pop stored registers from stack,
7092         * (genMultOneByte): cleanup,
7093         * (AccRsh): added flag andmask, to and result with appropriate mask,
7094         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
7095         * (genDataPointerGet): fixed and reenabled its use,
7096         * (genNearDataPointerGet): bugs fixed,
7097         * (genDataPointerSet): bugs fixed,
7098         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
7099         pic16_DumpSymbol, pic16_DumpOp,
7100         * src/pic16/genutils.h: function prototypes for the above functions,
7101         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
7102         pointers,
7103         * (pic16emitRegularMap): many many many improvements, but needs a
7104         major cleanup,
7105         * src/pic16/main.c: enable_stack in pic16_options is removed,
7106         * (_pic16_parseOptions): removed command line options -penable-stack,
7107         * (_process_pragma): emit stack symbol only when stack pragma is
7108         processed,
7109         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
7110         redirected to FSR0L/FSR0H pair,
7111         * (pic16_get_op, pic16_get_op2): modifications and improvements,
7112         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
7113         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
7114         for immediates,
7115         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
7116         * (dumpPicOptype): NEW,
7117         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
7118         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
7119         with movff instruction,
7120         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
7121         added pic16_int_regs, some packRegsFor* functions are commented out,
7122         because produce errors,
7123         * src/pic16/NOTES: minor modifications
7124
7125 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7126
7127         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
7128         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
7129         --pack-iram.
7130         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
7131         * as/mcs51/lkaomf51.c: fixed bug #895763
7132
7133 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
7134
7135         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
7136
7137 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7138
7139         * doc/sdccman.lyx: added details about the HC08 storage classes and
7140         interrupts, fixed the register usage info for z80 & gbz80
7141
7142 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
7143
7144         * doc/sdccman.lyx: added more pic16 port documentation
7145         * device/include/pic16/: added header pic18fregs.h
7146
7147 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
7148
7149         * doc/sdccman.lyx: added Vangelis' contribution
7150
7151 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7152
7153         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
7154         extend to the next CALL or PCALL, not just to the next CALL.
7155
7156 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
7157
7158         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
7159
7160 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7161
7162         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
7163         bug #895752 and a better fix for bug #716790
7164
7165 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7166
7167         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
7168
7169 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7170
7171         * doc/sdccman.lyx: minor changes, minor changed
7172
7173 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
7174
7175         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
7176         which can't handle SDCC_NEWONEBYTEOPS,
7177         (geniCodeMultiply): removed conversion from mult to shift for pic14
7178         and pic16
7179
7180 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7181
7182         * src/hc08/gen.h,
7183         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
7184         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
7185         thus fixing bug #895406
7186
7187 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
7188
7189         * device/lib/_modsint.c,
7190         * device/lib/_modslong.c: sign follows divisor only
7191         * src/hc08/gen.c (genMultOneByte): if result size is 1,
7192         signs or signedness can be ignored
7193         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
7194         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
7195         added optimization for IFX,
7196         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
7197         arguments;
7198         reenabled optimization for IFX, which was removed on 2004-01-11
7199         * src/SDCCast.h: added return type IFX
7200         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
7201         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
7202         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
7203         SDCC_OLDONEBYTEOPS selects the old behaviour
7204         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
7205         changed again and commented promotion rule
7206         * src/SDCCval.c (valDiv): promotion no longer necessary
7207         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
7208         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
7209         rewritten
7210         * support/regression/tests/onebyte.c: added
7211
7212 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
7213
7214         * gen.c (genInline): reverted to old code for assemnling inline
7215         code because of bug reported James Chadd
7216
7217 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
7218
7219         * ralloc.h: missing declarations from previous patch,
7220         seems that patch for ralloc.h was never applied, fixed
7221
7222 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7223            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7224
7225         * pcode.c,
7226         * pcode.h,
7227         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
7228         indirect addressing. Marked FSR0 as deprecated
7229         * gen.c (pointerCode): commented out, not needed now
7230         (pic16_popGet2p): new MOVFF helper function
7231         (genGenPointerGet),
7232         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
7233         (shiftRLong): removed duplicate debugging info
7234
7235 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7236
7237         * src/ds390/gen.c (genNearPointerGet),
7238         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
7239         optimization with bits, but not bitfields.
7240         * src/ds390/ralloc.c (packRegisters),
7241         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
7242
7243 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
7244
7245         * src/SDCCcse.c (algebraicOpts): copy operands before modification
7246
7247 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7248
7249         * src/SDCCsymt.h,
7250         * src/SDCCicode.c (operandFromSymbol),
7251         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
7252         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
7253         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
7254         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
7255         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
7256         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
7257         bug #892038
7258         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
7259         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
7260         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
7261         * src/SDCCsymt.c (newSymbol),
7262         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
7263         enumerator_list),
7264         * src/SDCCval.h,
7265         * src/SDCCval.c (newiList): fixed bug #885705
7266
7267 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7268
7269         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
7270         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
7271
7272 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7273
7274         * device/include/c8051f120.h,
7275         * device/include/c8051f300.h,
7276         * device/include/c8051f310.h: added/updated header files for Silicon
7277         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7278         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
7279         in new section Submitting patches
7280
7281 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7282
7283         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
7284         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7285         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7286         genGenPointerSet),
7287         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
7288         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7289         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7290         genGenPointerSet),
7291         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
7292         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7293         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7294         genGenPointerSet),
7295         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
7296         genFarPointerGet, genCodePointerGet, genGenPointerGet,
7297         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
7298         genGenPointerSet): fixed bug #892400
7299         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
7300         to eliminate build warnings.
7301         * src/SDCCast.c (processParms),
7302         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
7303         fixed bug 751859
7304         * support/valdiag/valdiag.py: added GCC to the list of defines active
7305         when compiling with gcc
7306
7307 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7308
7309         * support/Util/SDCCerr.h,
7310         * support/Util/SDCCerr.c,
7311         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
7312         with an incomplete type (fixed bug #883734)
7313         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
7314
7315 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7316
7317         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
7318
7319 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7320
7321         * src/SDCCast.c (decorateType),
7322         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
7323         function pointer implementation
7324         * support/regression/tests/funptrs.c: added tests to verify both forms
7325         of function pointers work correctly. Added tests to verify parameters
7326         are passed in the correct order.
7327
7328 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
7329
7330         * device.c (regCompare): registers are sorted by ascending
7331         address and increasing size,
7332         * main.c (_pic16_finaliseOptions): removed the declaration
7333         of compiler macro MCU. Now a macro of the format pic18fxxxx
7334         will be defined from the command line
7335
7336 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
7337             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
7338
7339         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
7340         PCOP_RLCF was overwritten!
7341         * gen.c (genSkip): commented out calls to pic16_emitcode,
7342         * (genCmpEQ): fixed "long" compares, only high word did get compared,
7343         * (genlshTwo),
7344         * (genRRC): added debugging info,
7345         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
7346         overwritten while shifting,
7347         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
7348         overwritten while shifting,
7349         * (AccLsh),
7350         * (AccRsh),
7351         * (shiftLLeftOrResult),
7352         * (shiftRLeftOrResult),
7353         * (shiftRLong),
7354         * (shiftLLong): Implemented with pic16_emitpcode
7355         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
7356         * (genLeftShift): Fixed bug, operand for shift by variable always
7357         was "and"ed with 0x0f,
7358         * (genLeftShiftLiteral),
7359         * (genrshTwo),
7360         * (genRightShiftLiteral): added debugging info,
7361         * (genrshFour): added comment,
7362         * (genRightShift): determined signedness from operand "left"
7363         instead of "result"
7364
7365 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7366
7367         * src/SDCCicode.c (geniCodeParms),
7368         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
7369         function pointers, fixed function pointer bugs #861242 and #861896
7370
7371 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7372
7373         * device/include/c8051f000.h,
7374         * device/include/c8051f120.h,
7375         * device/include/c8051f300.h: added header files for Silicon
7376         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
7377
7378 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
7379
7380         * src/SDCCast.c (processParams): added new type flow and restructured
7381         (gatherAutoInit): added new type flow
7382         (addCast): cosmetic changes
7383         (getLeftResultType): added new type flow for array indices, patch
7384         provided by Stas, see FR #877103
7385         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
7386         array index patch by Stas
7387         * src/SDCCast.h: added prototype getResultTypeFromType()
7388         * src/SDCCval.h,
7389         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
7390         * src/pic/glue.c (pic14emitStaticSeg),
7391         * src/pic16/glue.c (pic16emitStaticSeg),
7392         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
7393         for initialization of symbols
7394         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
7395         * support/Util/SDCCerr.h:
7396         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
7397         * .version: bumped version number to 2.3.8
7398         * device/include/Makefile.in (install),
7399         * doc/Makefile (install): changed to 'rm `find ...`' construct to
7400         avoid warnings
7401
7402 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
7403
7404         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
7405         Slade Rich fixed an optimization bug
7406         * src/pic/pcodepeep.c,
7407         * src/pic/pcoderegs.c
7408         * doc/Makefile (install): added test for directory
7409
7410 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7411
7412         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
7413         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
7414         * src/pic/ralloc.c (getRegPtr, getRegGpr),
7415         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
7416         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
7417         * as/mcs51/asexpr.c (term),
7418         * as/hc08/asexpr.c (term): fixed bug #887146
7419
7420 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7421
7422         * src/z80/gen.c (genMult): handle single byte result product
7423         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
7424         DUMMY_READ_VOLATILE (fixed bug #886367)
7425
7426 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7427
7428         * support/regression/tests/libmullong.c: fixed logic, on little endian
7429         hosts we ended without a mullong_wrapper()
7430
7431 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7432
7433         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
7434         virus/worm forged address usage.
7435
7436 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
7437
7438         Fixed promotion, it should be done on AST level:
7439         * src/SDCCast.c (addCast): added promotion to int
7440         (decorateType): updated call to upCast()
7441         * src/SDCCicode.c (geniCodeLeftShift): removed call to
7442         usualUnaryConversions()
7443
7444 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
7445
7446         * support/regression/tests/literalop.c (mulWrapper): Added a
7447         wrapper to remove integer overflow warnings.
7448
7449         * support/regression/tests/float_trans.c: Made work on host.
7450
7451         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
7452         location of sz80.
7453
7454         * support/regression/generate-cases.py (main): Changed from inline
7455         to a main method.
7456
7457         * doc/Makefile (install): Changed to depth first to get rid of
7458         missing directory install warning.
7459
7460         * as/Makefile (install-doc): Made work on Mac.
7461
7462 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
7463
7464         * src/SDCCast.c: added an additional type flow in decorateType() of
7465         opposite direction, see feature request #860006; it's enabled at runtime
7466         by setting the environment variable SDCC_NEWTYPEFLOW
7467         * src/SDCCast.h: changed prototype of decorateType()
7468         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
7469         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
7470         'char' to 'int' can be omitted, if both operands are 'unsigned char';
7471         see feature request #877103
7472         * src/SDCCval.c: updated call of decorateType()
7473         (valBitwise): fixed bug #882876
7474         (valMinus): added promotion
7475         (valLogicAndOr): result is unsigned
7476         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
7477         * src/SDCCsymt.c (computeType),
7478         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
7479         must not cause an unsigned operation
7480         * src/pic/glue (pic14emitRegularMap),
7481         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
7482
7483 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
7484
7485         * src/pic/pcode.c (PCodeID): commented out left over debug code
7486
7487 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
7488
7489         * support/valdiag/tests/overflow.c: added shift tests
7490         * src/pic/device.c,
7491         * src/pic/gen.c,
7492         * src/pic/gen.h,
7493         * src/pic/glue.c,
7494         * src/pic/main.c,
7495         * src/pic/pcode.c,
7496         * src/pic/pcode.h,
7497         * src/pic/pcodepeep.c,
7498         * src/pic/pcoderegs.c,
7499         * src/pic/ralloc.c,
7500         * src/pic/ralloc.h: applied patch from Slade Rich;
7501         added support for multiple code pages and multiple RAM banks on the
7502         PIC 14 port. The ASM files now no longer simply assume all the
7503         code / RAM are in the same page / bank. This means the linker can
7504         safely allocate code/RAM of separate ASM files to different pages/banks.
7505         * doc/sdccman.lyx: added Slade's tips
7506         * src/mcs51/peeph.def: fixed bug #880768
7507
7508 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7509
7510         * src/hc08/ralloc.c (rematStr): fixed bug #879282
7511         * src/SDCCast.c (decorateType): fixed bug #880197
7512
7513 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
7514
7515         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
7516         getopt.h.
7517
7518         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
7519         strtof is not part of C89 and isn't included with Mac OS X.
7520
7521 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7522
7523         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
7524         shiftL2Left2Result): fixed bug #879326
7525         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
7526         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7527         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
7528         address fetch for clr instruction
7529         * device/lib/hc08/_mulint.c: created optimized assembly version
7530         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
7531
7532 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
7533
7534         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
7535         proposed in FR #877103
7536
7537 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
7538
7539         * src/SDCCval.c (cheapestVal): added missing checks
7540         * src/SDCCicode.c (usualBinaryConversions): fixed condition
7541         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
7542
7543 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
7544
7545         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
7546         equal operands
7547
7548 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
7549
7550         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
7551         loaded with the linker search paths (-L arguments) and the libraries
7552         to be linked with the current source (-l arguments). Changes
7553         currently will affect only the pic16 port.
7554         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
7555         include path the port specific paths and port specific libraries,
7556         * gplink command now contains the $3 argument,
7557         * src/pic16/device.h,
7558         * src/pic16/device.c,: structure PIC_device is made public and
7559         renamed to PIC16_device, the same for variable Pics which is renamed
7560         to Pics16. Updated all references to them.
7561         * src/pic16/glue.c (pic16glue): corrected bug with code
7562         initialization which bypassed the variable initializations block.
7563
7564         * device/lib/pic16/Makefile.rules: removed --penable-stack from
7565         COMPILE_FLAGS and added the --nostdinc option
7566
7567 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7568
7569         * device/include/mc68hc908jb8.h: Register defs for another member
7570         of the hc08 family. Contributed by Bjorn Bringert - thanks!
7571
7572 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
7573
7574         Documenting changes from previous commits.
7575         * configure.in (version 1.56),
7576         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
7577         when generating output files to configure the pic16 library,
7578         but now I've commented it out, since gputils aren't installed in the
7579         SF compile farm, so library won't compile
7580
7581         * device/lib/Makefile.in (version 1.56): initially I've added in
7582         target 'all' the prerequestive 'model-pic16' so it compiled the
7583         pic16 library, but now I've commented it out for the same reasons
7584         above,
7585         * added targets 'model-pic16' and 'objects-pic16' to compile the
7586         library
7587         * added target 'port-specific-objects-pic16' to handle the
7588         generated libraries and copy them into the build/ directory
7589         * added target 'clean-intermediate-pic16' to clean intermediate
7590         files into pic16 directory
7591         * in target 'installdirs' added line to create directory pic16 in
7592         the installation path
7593
7594         * device/include/Makefile.in (version 1.11): in target 'install'
7595         added lines to copy all header files to installation path,
7596         * in target 'installdirs' added line create directory for pic16
7597         headers in the installation path
7598
7599 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
7600
7601         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
7602          a function call
7603
7604 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
7605
7606         * configure,
7607         * device/lib/configure.in,
7608         * device/lib/configure: fixed for autoconf 2.57
7609
7610 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7611
7612         * src/z80/main.c (_parseOptions): fixed the portmode= command line
7613         option so that it actually works. Made it specific to the z80, since
7614         the gbz80 doesn't have these kinds of I/O ports.
7615
7616 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7617
7618         * device/include/z180.h,
7619         * device/lib/_memcpy.c,
7620         * device/lib/_memmove.c,
7621         * device/lib/_mulint.c,
7622         * device/lib/ser_ir.c,
7623         * device/lib/ser_ir_cts_rts.c,
7624         * device/lib/_strcmp.c,
7625         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
7626         * src/z80/main.c (_process_pragma): add support for pragmas bank and
7627         portmode; added deprecation warning for bank= and protmode= forms.
7628         Also, guard against buffer overflow.
7629         * src/z80/gen.c (aopGet): generate better code for sfr banked read
7630
7631 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7632
7633         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
7634         changed interrupt vector table generation to only emit declared vectors.
7635         * device/include/Makefile.in: added missing backslash
7636         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
7637
7638 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7639
7640         Mainly changes to support compilation of the device libraries
7641         * src/pic16/device.c: stack is allocated via symbol and not
7642         via literal number. The symbol is placed in the corresponding
7643         position of the data ram
7644         * (pic16_dump_section): relocatable and absolute uninitialized
7645         data are now emitted in sorted order to reduce section naming,
7646         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
7647         weren't marked as being in the access bank,
7648
7649 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
7650
7651         Added portion of GNU PIC Library under the directory
7652         device/include/pic16 and device/lib/pic16. These files
7653         contain the declarations of SFRs for the PIC18Fxx2 devices.
7654         The directory is initialized via configure from toplevel.
7655
7656 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
7657
7658         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
7659         the spilllocations to be compared correctly
7660
7661 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7662
7663         * src/SDCCast.c (decorateType): fixed bug introduced today
7664
7665 2004-01-12  Borut Razem <borut.razem AT siol.net>
7666
7667         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
7668         doc/sdccman.lyx: upper case pragmas are deprecated
7669
7670 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
7671
7672         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
7673         in simpler and even better code
7674
7675 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
7676
7677         * src/SDCCicode.c (operandOperation): fixed bug #874819
7678         * src/SDCCast.c (decorateType): fixed
7679         char foo (unsigned long ul) { return ul > 0; }
7680
7681 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7682
7683         * doc/sdccman.lyx: Moved and added some sections, small changes
7684         all over. Telling LaTeX to be less strict with word spacing
7685         to better keep the right margin. Changed some notes about
7686         maintainance of the ports in section 3.2.1 - is it OK like this?
7687
7688 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
7689
7690         SDCC source changes:
7691         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
7692         convilong): modified to inform the pic16 port that builtin functions
7693         are external
7694
7695         PIC16 PORT specific changes:
7696         * src/pic16/device.c pic16_dump_equates() added,
7697         processor registers declared internally by the port are emitted in
7698         the translation as equates,
7699         * src/pic16/gen.c: inline code is passed unprocessed to the
7700         translation,
7701         * (pic16_popGetLit2): fnuction modified to take second operand as
7702         pCodeOp pointer and not as literal,
7703         * (popRegFromIdx): prefixed with pic16_,
7704         * (pic16_popCombine2): modified to receive already allocated pCode
7705         operands,
7706         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
7707         * (genFunction): initializes local stack frame and pushes on stack
7708         all the registers used by this function,
7709         * (genEndFunction): restores all registers from stack and restores
7710         stack frame,
7711         * src/pic16/glue.c (pic16emitRegularMap): various changes and
7712         improvements,
7713         * (pic16glue): changed the program startup sequence,
7714         * added new dbName code 'A' for functions placed in absolute section
7715         * src/pic16/main.c: added function attribute _naked,
7716         * added pragma 'code' to place a fnuction at an absolute address,
7717         * added command line arguments --debug-ralloc and --pcode-verbose,
7718         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
7719         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
7720         * (pic16_newpCodeOpLit2): modified to take the second operand as
7721         pCodeOp pointer,
7722         * (pic16_printpBlock): modified to emit each function in a separate
7723         section,
7724         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
7725         UPPER for immediate operands,
7726         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
7727         instruction,
7728         * src/pic16/peeph.def: all peepholes with movff are commented out,
7729         because there is a problem in the pcode peep optimizer,
7730         * src/pic16/ralloc.c: the register allocator can now reuse local
7731         function symbols for another function. This saves register usage.
7732         * src/pic16/ralloc.h: added flag isLocal in structure regs,
7733
7734         Added file src/pic16/NOTES with information about program writing on
7735         the current port version.
7736
7737 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7738
7739         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
7740         and peephole 252 (array access)
7741
7742 2004-01-09  Borut Razem <borut.razem AT siol.net>
7743
7744         * src/SDCCmain.c : fixed #872250: -l command line defined library
7745           files are scanned before standard library files
7746
7747 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7748
7749         * src/SDCCast.c (decorateType): fixed bug #874046
7750
7751 2004-01-09  Borut Razem <borut.razem AT siol.net>
7752
7753         * support/scripts/sdcc.nsi: remove previous installation
7754
7755 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7756
7757         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
7758         bytes for last interrupt vector (mcs51)
7759         * sdcc.spec: fixed typo
7760
7761 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7762
7763         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
7764         gen51Code): more efficient parameter receive for --model-large
7765         ("bug" #845294)
7766
7767 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7768
7769         * src/ds390/main.c,
7770         * src/z80/main.c: added missed needLinkerScript flags (more than
7771         one port structure defined in these file)
7772         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
7773         bug #795325
7774
7775 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
7776
7777         * src/SDCCmain.c: removed various references to DEFAULT_PORT
7778         * src/port.h: added flag needLinkerScript in port->linker
7779         structure to inform whether to create a .lnk file or not,
7780         * src/avr/main.c,
7781         * src/ds390/main.c,
7782         * src/hc08/main.c,
7783         * src/mcs51/main.c,
7784         * src/pic/main.c,
7785         * src/pic16/main.c,
7786         * src/xa51/main.c,
7787         * src/z80/main.c: changed appropriately to configure
7788         needLinkerScript flag
7789         * src/pic/gen.c,
7790         * src/pic16/gen.c (genAddrOf): fixed bug #863624
7791         * src/pic/glue.c: added variable udata_section_name to
7792         override default uninitialized data segment definition for
7793         devices only with SHAREBANK memory (reported from Erik Epetrich)
7794         * (pic14emitOverlay): modified to emit a commented overlay segment
7795         directive when no overlay data exist
7796         * (picglue): modified to emit uninitialized data segment
7797         according to udata_section_name
7798         * src/pic/main.c (_pic14_parseOptions): added command line
7799         options --udata-section-name=[name] to override default
7800         udata definition name
7801         * modified _linkCmd and _asmCmd to include compiler passed
7802         arguments via -W option
7803         * src/pic16/main.c: added $l in _asmCmd, changed extension for
7804         object file from '.rel' to '.o' in port->linker structure,
7805         changed size of fptr from 2 to 3 in port structure
7806
7807 2004-01-07  Borut Razem <borut.razem AT siol.net>
7808
7809         * support/scripts/sdcc.nsi: update PATH
7810         * support/scripts/sdcc.ico: craeted
7811
7812 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * device/include/Makefile.in: fix install
7815         * doc/Makefile: fix install
7816
7817 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7818
7819         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
7820         in bug #860505
7821         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
7822         how the function variable allocation summary is displayed; also
7823         include information about variables allocated to the overlay
7824         segment
7825
7826 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7827
7828         * as/mcs51/lkmain.c: Help about -Y option
7829         * as/mcs51/lkarea.c: Fixed gcc warnings
7830
7831 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7832
7833         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
7834         fixed warning
7835         * support/valdiag/tests/overflow.c: added
7836         * src/SDCCast.c (decorateType),
7837         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
7838         LEFT_OP (left shift)
7839
7840 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7841
7842         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
7843         (default behaviour).
7844
7845 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7846
7847         A python script to validate compiler diagnostic messages. It can be
7848         used to verify that sdcc complains about bad c source code and
7849         gives a good location of the error.
7850         * support/valdiag/Makefile,
7851         * support/valdiag/valdiag.py,
7852         * support/valdiag/tests/*
7853
7854 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7855
7856         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
7857         * src/SDCCsymt.c (newEnumType),
7858         * src/SDCCsymt.h
7859         * support/Util/SDCCerr.c,
7860         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
7861         enum related bugs.
7862         * support/regression/tests/enum.c: added test for enum values that
7863         require at least 2 bytes of storage.
7864
7865 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7866
7867         * src/common.h: added ifndef/define/endif macros
7868         around the header file.
7869         Bug reported from Jesus Calvino-Fraga
7870
7871 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
7872
7873         * sdcc.spec: updated
7874         * device/include/Makefile.in: don't install CVS directories
7875         * device/lib/Makefile.in: added removal of CVS directories after install
7876         * doc/Makefile: fixed install, added local_icons
7877         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
7878         * src/mcs51/gen.c (genRightShift): fixed bug #870788
7879         * src/ds390/gen.c (genRightShift): fixed bug #870788
7880         * src/SDCCast.c (decorateType): fixed bug #870781
7881
7882 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
7883
7884         PIC16 port related changes:
7885         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
7886         added variable stackPos,
7887
7888         * gen.c: genCall, assignResultValue: added support for
7889         pushing/retrieving function parameters to/from stack,
7890         genFunction,genEndFunction: setup stack frame for the
7891         generated function,
7892         genAddrOf: will be changed according to bug 863624
7893
7894         * added files genutils.c and genutils.h which contain gen*
7895         debugged and optimised functions extracted from gen.c
7896
7897         * glue.c: added variable 'externs' which holds extern symbols,
7898         pic16emitRegularMap: is modified to properly handle relocatable
7899          symbols under the new scheme,
7900         pic16createInterruptVect: is modified
7901         pic16printPublics: is modified to emit 'global' assembler directives,
7902         added pic16_printExterns to print extern symbols,
7903         pic16glue: initializes stack/frame pointer in the beginning of
7904         the assembly output. Temporary hack, will be corrected later,
7905         because gplink yet does not support stack and SDCC does not
7906         yet support a type of crt0.o object to create the final binary.
7907
7908         * Removed many lines that contain 8051 legacy code.
7909         * The code is finally placed under a 'code' directive.
7910         * Added port specific options.
7911
7912         * _process_pragma: simplified since now we do not need *special*
7913         include file to define SFR registers. But a separate header
7914         will be needed. This will be developed later.
7915         * _pic16_parseOptions: added, parses port specific options:
7916         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
7917         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
7918         --preplace-udata-with=
7919
7920         * _pic16_setDefaultOptions: modified to initialize section names,
7921         but hack is temporarly out of order since it needs improvement.
7922         * _pic16_genAssemblerPreamble: configuration words are emitted by
7923         their address instead of their name. This part is incomplete and
7924         supports only the 18Fxx2 devices. Other devices will emit an error
7925         during assembly since they do not contain the same set of config
7926         registers
7927         * _pic16_genIVT: is modified,
7928
7929         * pcode.c: added definitions for some hardware registers that are needed
7930         for stack support
7931         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
7932         All PCI entries are updated. Now LFSR is supported.
7933         * Removed pic16_pciTRIS is mentioned by mdubuc in source
7934         * added pic16_newpCodeOpLit2 to support instructions with
7935         two literal arguments
7936         * pic16_pCode2str: corrected code that emits assembler instructions
7937         with two literal operands and those that have an access bit modifier
7938         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
7939         this fixes a bug which caused some labels to be lost, when an
7940         assembler directive was added, i.e. banksel,
7941         * pic16_FixRegisterBanking: improved logic that causes the insertion
7942         of bank switching,
7943         * InlineFunction: functions that are called once, are not any more
7944         inlined. This can be a port option in the future,
7945
7946         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
7947
7948         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
7949         hold the corresponding uninitialized symbols,
7950         * pic16_allocProcessorRegister: registers have explicit marked the
7951         accessBank field,
7952         * pic16_allocInternalRegister: registers are explicit marked as
7953         not used,
7954         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
7955         processing list, so bit registers were lost,
7956         *
7957
7958         * ralloc.h: added field 'accessBank' and original symbol operand
7959         in register definition,
7960         * removed the field isMapped from register definition,
7961
7962         ** Several functions have been removed from various sources:
7963         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
7964         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
7965         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
7966         pic16_assignRelocatableRegisters
7967
7968         ** others have been introduced:
7969         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
7970         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
7971
7972 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
7973
7974         * support/scripts/inc2h.pl: changed definition of BIT_AT
7975         to emit 'sbit at' instead of 'bit at'. This was a request.
7976
7977         PIC16 port related preliminary changes:
7978         * gen.c: prefixed function popRegFromString with
7979         pic16_ and all references to it corrected
7980         * pcode.c: all pic16_pc_* hardware registers prefixed
7981         with underscore (_),
7982         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
7983         * ralloc.c: newReg(): when register is REG_SFR then
7984         set address to rIdx,
7985         pic16_allocProcessorRegister(): marks register wasUsed=0
7986         pic16_writeUsedRegs(): added a call to assign processor
7987         registers via pic16_assignFixedRegisters
7988
7989 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7990
7991         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
7992         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
7993         variables in unused register banks.  Also the SSEG is placed
7994         wherever there is enough space for it, and IDATA can be anywhere
7995         in internal RAM.  For now compile using -Wl-Y[stack_size].
7996         The mem file is different for this option as well, since it
7997         makes no sense of talking about DSEG lenght.
7998
7999 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
8000
8001         * src/SDCClrange.c: fixed bug 869095 that caused segfault
8002         in certain cases, e.g. when ROM assignment, patch provided
8003         from Albert den Haan.
8004
8005 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
8006
8007         Many signedness and type propagation fixes:
8008         * src/SDCCicode.c: made geniCodeCast() static
8009         replaced SPEC_ by IS_ (cosmetic)
8010         (operandOperation): fixed div and mod operation
8011         (usualBinaryConversions): added support for promotion of char
8012         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
8013         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
8014         (geniCodeAdd): an array index will stay unsigned, even if promoted
8015         from char to int
8016         (geniCodeArray): ditto
8017         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
8018         * src/SDCCsymt.c (computeType): added more support for char;
8019         promotion of char is selectable by promoteCharToInt, fixed signedness
8020         for all cases
8021         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
8022         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
8023         * src/SDCCval (val*): replaced signedness calculation by
8024         computeType()
8025         rearranged if-branches (cosmetic)
8026         (valShift): added warning W_SHIFT_CHANGED
8027         (valCompare): fixed problem with different types
8028         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
8029         * support/regression/tests/literalop.c: added many cases
8030         * support/regression/tests/ast_constant_folding.c: changed finally to
8031         'unsigned int'
8032         * .version: new year, new version: 2.3.7
8033         * src/SDCCmain.c (main): applied patch #866468
8034         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
8035         provided by Scott Bronson
8036         * doc/sdccman.lyx: updated documentation for sdcdb
8037         updated and added chapter tips
8038
8039 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8040
8041         * src/SDCCsymt.h: missing from yesterday's commits
8042
8043 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8044
8045         * src/SDCC.y (struct_or_union_specifier),
8046         * support/Util/SDCCerr.c,
8047         * support/Util/SDCCerr.h: verify that struct & union tags are used
8048         as declared.
8049
8050 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8051
8052         * src/SDCCglobl.h: missing from yesterday's commits
8053
8054 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8055
8056         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
8057         sft_attributes, struct_declaration, parameter_declaration,
8058         type_name, start_block, declaration_list),
8059         * src/SDCC.lex (check_type): support redefinition of typedef names
8060
8061 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8062
8063         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
8064         aligned xdata arrays. Erik helped me with the if clause.
8065
8066 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8067
8068         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
8069         warning
8070
8071 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8072
8073         * src/SDCCast.h,
8074         * src/SDCCast.c (newAst_),
8075         * src/SDCCicode.h,
8076         * src/SDCCicode.c (ast2iCode, newiCode),
8077         * src/SDCCglobl.h,
8078         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
8079         expr, statement, expression_statement, selection_statement,
8080         iteration_statement, expr_opt, jump_statement): foundation for tracking
8081         sequence points
8082         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
8083         point code too)
8084
8085 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8086
8087         * support/Util/SDCCerr.c,
8088         * src/SDCCast.h,
8089         * src/SDCCast.c (createCase, createDefault, decorateType),
8090         * src/SDCClabel.c (labelUnreach),
8091         * src/SDCC.y (labeled_statement, jump_statement): More improvements
8092         to error messages.
8093         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
8094         (with thanks to Stas Sergeev)
8095         * device/include/time.h,
8096         * device/lib/time.c (CheckTime): suppress unreachable code warning
8097
8098 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8099
8100         * src/SDCCast.c (createIvalCharPtr),
8101         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
8102         bug #753752)
8103         * support/regression/tests/nullstring.c: tests for these two bugs
8104
8105 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8106
8107         * support/Util/SDCCerr.h,
8108         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
8109         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
8110         about storage class and 'at' used inside struct or union
8111         * src/SDCCBBlock.c (iCodeFromeBBlock),
8112         * src/SDCCcse.c (ifxOptimize),
8113         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
8114         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
8115         printIval, emitStaticSeg, emitOverlay),
8116         * src/SDCClabel.c (deleteIfx),
8117         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
8118         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
8119         gatherAutoInit, processParms),
8120         * support/Util/SDCCerr.h,
8121         * support/Util/SDCCerr.c (werrorfl): Support for better error location
8122         reporting for post-parse errors.
8123
8124 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8125
8126         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
8127         implicit casts via union; they don't work on big endian systems
8128         (possible fix for bug #861138)
8129
8130 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8131
8132         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
8133         * src/mcs51/main.c: fixed the fix for bug #737001
8134
8135 2003-12-15  Borut Razem <borut.razem AT siol.net>
8136
8137         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
8138
8139 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8140
8141         * support/makebin/makebin.c: put output in binary mode
8142
8143 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8144
8145         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
8146         xdata and data memory on startup. Set the environment variable
8147         SDCC_NOGENRAMCLEAR to disable this.
8148         * src/mcs51/peephole.def,
8149         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
8150         (allows non-interrupt and interrupt code to safely compete for a resource
8151         without the non-interrupt code having to disable interrupts)
8152
8153 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8154
8155         * src/SDCCicode.c (geniCodeAdd),
8156         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
8157         with valFromType if type might be a pointer and host is big endian).
8158         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
8159         types, not just integer types.
8160         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
8161         multiply defined with mismatching "at" address.
8162
8163 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8164
8165         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
8166         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
8167         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
8168         with embedded nulls (fixed bug #753752)
8169
8170 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8171
8172         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
8173         Apparently this did not see much testing (endless loop)
8174
8175 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8176
8177         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
8178
8179 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8180
8181         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
8182         gracefully handle NULL memmap pointers
8183
8184 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8185
8186         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
8187         instead of deleting the iCode when an operand is volatile
8188         * src/z80/gen.c (genDummyRead),
8189         * src/mcs51/gen.c (genDummyRead),
8190         * src/ds390/gen.c (genDummyRead),
8191         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
8192         not just IC_RIGHT
8193         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
8194         * src/SDCC.y: fixed bug #850420
8195
8196 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8197
8198         Applied z80 i/o port patch from Peter Townson and fixed some operators
8199         to better handle operands in A register.
8200         * device/include/z180.h
8201         * src/SDCC.y
8202         * src/SDCCglue.c
8203         * src/z80/gen.c
8204         * src/z80/gen.h
8205         * src/z80/main.c
8206         * src/z80/peeph-z80.def
8207         * src/z80/peeph.def
8208         * src/z80/z80.h
8209
8210 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8211
8212         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
8213
8214 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8215
8216         * device/lib/hc08/_mullong.c: Removed extra #endif
8217
8218 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8219
8220         * sim/ucsim/hc08.src/inst.cc,
8221         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
8222         carries from x to h
8223         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
8224         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
8225         * device/include/stdarg.h: fixed varargs for hc08
8226         * device/lib/Makefile.in,
8227         * device/lib/hc08/Makefile,
8228         * device/lib/hc08/_mulint.c,
8229         * device/lib/hc08/_mullong.c: fixed some endian problems
8230
8231 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8232
8233         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
8234         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
8235         * device/lib/_gptrget.c,
8236         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
8237
8238 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8239
8240         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
8241         * src/SDCCast.c (astErrors): fixed bug #846007
8242         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
8243
8244 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8245
8246         * src/SDCCast.c (decorateType): disabled a transformation I added in
8247         revision 1.188 (access to fields of a structure at an absolute address);
8248         it breaks with bitfields, extern declarations, and gcse analysis.
8249         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
8250         could be assigned through a pointer, so don't complain.
8251         * src/SDCCast.c (astErrors),
8252         * src/SDCCast.h,
8253         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
8254
8255 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
8256
8257         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
8258         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
8259         output of __config directives, since gpasm now supports them
8260         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
8261         pre-processor macro, i.e. -DMCU=p18f452
8262         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
8263         and modified to handle 'cast' icode similarly to '=' icode
8264         * src/pic16/device.h (typedef struct PIC_device): added field
8265         'extMIface' to indicate that chip has external memory interface
8266         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
8267         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
8268         18F8720
8269
8270 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8271
8272         * src/SDCC.y (pointer): fixed bug #846006
8273         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
8274         * src/SDCCast.c (decorateType): fixed bug #846009
8275         * src/ds390/peeph.def,
8276         * src/ds390/gen.c (genAnd, genOr),
8277         * src/mcs51/peeph.def,
8278         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
8279
8280 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8281
8282         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
8283         * src/SDCCdflow.c
8284         * src/SDCCcse.c
8285         * src/SDCCcse.h
8286         * src/SDCCBBlock.h
8287         * src/SDCCBBlock.c
8288
8289 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
8290
8291         fixed bug #845089
8292         * src/SDCCbitv.h,
8293         * src/SDCCbitv.c: added function to free a bitvector
8294         * src/SDCClrange.h,
8295         * src/SDCClrange.c: added function to recompute the liveranges
8296         * src/avr/ralloc.c,
8297         * src/ds390/ralloc.c,
8298         * src/hc08/ralloc.c,
8299         * src/mcs51/ralloc.c,
8300         * src/pic/ralloc.c,
8301         * src/pic16/ralloc.c,
8302         * src/xa51/ralloc.c,
8303         * src/z80/ralloc.c: recompute the liveranges after register packing
8304
8305 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
8306
8307         * src/SDCCloop.c (newInduction): fixed bug #845630
8308
8309 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8310
8311         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
8312         inadvertantly left behind from my 2003-11-12 change
8313
8314 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8315
8316         Updated headers I neglected to commit yesterday.
8317         * src/SDCClrange.h,
8318         * src/SDCCicode.h
8319
8320 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8321
8322         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
8323         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
8324         * src/SDCCopt.c (eBBlockFromiCode),
8325         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
8326         the creation of the key hash table from the sequencing so it can be used
8327         earlier (for some GCSE bug fixes still pending)
8328
8329 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8330
8331         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
8332         * support/regression/tests/addsub.c: testing genPlus shortcut
8333
8334 2003-11-15  Borut Razem <borut.razem AT siol.net>
8335
8336         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
8337
8338 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8339
8340         * src/SDCCcse.c (cseBBlock): fixed bug #527779
8341         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
8342         ordering is immaterial.
8343         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
8344
8345 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8346
8347         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
8348         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
8349         (SIGSEV) of bug #840381
8350         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
8351         unlink new file before rename if new and old filenames are the same)
8352
8353 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8354
8355         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
8356         uninitialized variables) for the mcs51. Set environment variable
8357         SDCC_GENRAMCLEAR to test.
8358         xdata initialization slightly shorter
8359
8360 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8361
8362         * src/SDCCsymt.h,
8363         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
8364         #838241 & 780691 (basicly the same bug)
8365         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
8366         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
8367
8368 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * src/SDCCmain.c (linkEdit): "fix" #834252
8371
8372 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8373
8374         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
8375         * src/SDCCast.h,
8376         * src/SDCC.y: fixed bug #819403
8377
8378 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8379
8380         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
8381         the reentrant attribute.
8382         * src/hc08/gen.c (genPackBits): added missing stack readjustment
8383         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
8384         simulation
8385         * src/SDCCast.c (decorateType): fixed bug with storage class not being
8386         updated during pointer dereference; f.e. ~(((char *)1)*) was being
8387         erroneously reduced to a literal.
8388         * src/hc08/ralloc.c (packRegisters, rematStr),
8389         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
8390         some cases
8391
8392 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8393
8394         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
8395         * doc/sdccman.lyx: changed from 'article' to 'book'
8396         * doc/Makefile: readded test_suite_spec and cdbfileformat
8397
8398 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
8399
8400         * device/include/stdlib.h: include malloc.h to comply with ANSI
8401         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
8402
8403 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8404
8405         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
8406         * doc/clean.mk: also remove *.out files
8407         * doc/sdccman.lyx: some additions, larger top/bottom margins
8408
8409 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8410
8411         * src/SDCC.y: fixed bug #837365
8412         * support/regression/tests/bitopcse.c
8413         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
8414         a symbol (might be valop instead)
8415         * device/lib/Makefile.in: added errno.c to HC08SOURCES
8416         * device/lib/clean.mk: added hc08 to the cleaning list
8417
8418 2003-11-04  Borut Razem <borut.razem AT siol.net>
8419
8420         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
8421           made 2003-11-04
8422         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8423           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
8424           malloc is declared in standard stdlib.h
8425
8426 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8427
8428         * device/lib/hc08/Makefile: need to clean .rel not .o files
8429         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
8430
8431 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8432
8433         * src/port.h,
8434         * src/hc08/main.c,
8435         * src/mcs51/main.c,
8436         * src/ds390/main.c,
8437         * src/z80/main.c,
8438         * src/avr/main.c,
8439         * src/pic/main.c,
8440         * src/pic16/main.c,
8441         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
8442         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
8443         tests (which uses the port's oclsExpense function)
8444         * src/SDCC.y,
8445         * src/SDCCast.c,
8446         * src/SDCCicode.c,
8447         * src/hc08/gen.c,
8448         * src/ds390/gen.c,
8449         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
8450
8451 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8452
8453         * src/SDCCcse.c (ifxOptimize),
8454         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
8455         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
8456         deleting the IFX iCode.
8457         * src/hc08/ralloc.c: reduced unneeded slocs
8458         * src/hc08/gen.c: fixed bug in asmopToBoolean
8459
8460 2003-11-04  Borut Razem <borut.razem AT siol.net>
8461
8462         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
8463           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
8464           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
8465           transferred to configure
8466
8467 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
8468
8469         Use headers defined in the C[++] standards:
8470         * sim/ucsim/gui.src/serio.src/fileio.cc
8471         * sim/ucsim/gui.src/serio.src/frontend.cc
8472         * sim/ucsim/gui.src/serio.src/main.cc
8473         * sim/ucsim/gui.src/serio.src/posix_signal.cc
8474         * support/Util/NewAlloc.c
8475         * as/hc08/lklibr.c
8476         * as/mcs51/lklibr.c
8477         * as/z80/aslist.c
8478         * as/z80/assym.c
8479
8480 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8481
8482         * Added MSVC projects for hc08 assembler and linker:
8483         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
8484         /as/hc08/link_hc08.dsp
8485
8486 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
8487
8488         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
8489
8490 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
8491
8492         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
8493
8494 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8495
8496         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
8497
8498 2003-10-31  Borut Razem <borut.razem AT siol.net>
8499
8500         * support/cpp2/cpplib.h,
8501           support/cpp2/cpplib.c,
8502           support/cpp2/cpplex.c,
8503           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
8504           to switch _asm block preprocessing on / off. Default is
8505           #pragma preproc_asm +
8506
8507 2003-10-31  Borut Razem <borut.razem AT siol.net>
8508
8509         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
8510           when outputting comment blocks (when executed with -C option) and
8511           _asm (SDCPP specific) blocks
8512
8513 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8514
8515         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
8516
8517 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
8518
8519         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
8520
8521 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
8522
8523         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
8524         * src/SDCCast.c (decorateType): fixed bug #832664
8525
8526 2003-10-31  Borut Razem <borut.razem AT siol.net>
8527
8528         * support/cpp2/cpplex.c: fixed for SDCPP:
8529           comments(when executed with -C option) and _asm blocks
8530           were included even if they where in skipped #if block.
8531           Applied solution from GCC cpp 3.3.2
8532
8533 2003-10-31  Borut Razem <borut.razem AT siol.net>
8534
8535         * src/SDCC.lex: sdcc now understands both formats:
8536           '# <line_number> <file_name>' and
8537           '#line <line_number> <file_name>'
8538         * support/cpp2/cppmain.c: sdcpp now generates the standard
8539           '# <line_number> <file_name>' instead of former
8540           '#line <line_number> <file_name>'
8541
8542 2003-10-30  Borut Razem <borut.razem AT siol.net>
8543
8544         * support/cpp2/cpphash.h,
8545         * support/cpp2/cpplib.h
8546         * support/cpp2/cpplex.c,
8547         * support/cpp2/cppmain.c,
8548         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
8549
8550 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8551
8552         Fixed a number of problems revealed by bug #827883.
8553         * src/SDCCloop.c (loopInvariants): Spill location of the
8554         result operand should be recomputed if extracted from
8555         a loop. Also, don't extract assignments of an iTemp
8556         from a literal.
8557         * src/SDCCast.c (isConformingBody): loop reversal should
8558         not occur if the control variable is involved with a
8559         relational operator.
8560
8561 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
8562
8563         * .version: bumped to 2.3.6 to reflect the big improvements
8564         made by Erik and Klaus. Thanks!
8565
8566 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
8567
8568         Replaced the livrange code.
8569         * src/SDCClrange.c: added new LR code
8570         * src/SDCCloop.c,
8571         * src/SDCCBBlock.h: removed remainig parts from old LR code
8572         * src/ds390/ralloc.c,
8573         * src/ds390/gen.c: minor fixes to make it work with new code
8574
8575 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8576
8577         * as/hc08/asm.h,
8578         * as/hc08/lkrloc.c,
8579         * src/hc08/gen.c,
8580         * src/hc08/ralloc.c: Fix various warnings related to the hc08
8581         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
8582         (tweaked fix for bug #818696)
8583
8584 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8585
8586         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
8587
8588 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8589
8590         * src/SDCCmain.c,
8591         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
8592         * src/mcs51/gen.c (gencjneshort),
8593         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
8594         more efficient (per Scott Bronson's suggestion)
8595
8596 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8597
8598         Extended the semantics of the critical keyword to include
8599         individual statements. See RFE #827755 and #799831
8600         * src/SDCC.y
8601         * src/SDCCicode.c
8602         * src/SDCCopt.c
8603         * src/SDCCast.c
8604         * support/Util/SDCCerr.c
8605         * support/Util/SDCCerr.h
8606         * src/mcs51/gen.c
8607         * src/ds390/gen.c
8608         * src/hc08/gen.c
8609
8610 2003-10-19  Borut Razem <borut.razem AT siol.net>
8611
8612         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
8613
8614 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8615
8616         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
8617         Fixed bug #818696
8618         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
8619         and predecrement operand is displayed
8620
8621 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8622
8623         * src/SDCCval.c (valMinus): fixed bug #826041
8624
8625 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8626
8627         Some hc08 related updates that I missed earlier
8628         * sim/ucsim/stypes.h
8629         * support/regression/ports/hc08/spec.mk
8630
8631 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8632
8633         New target "hc08" for the Motorola 68hc08 family of micros
8634
8635         * configure
8636         * configure.in
8637         * Makefile
8638         * src/hc08/*
8639         * src/SDCCmain.c
8640         * src/port.h
8641         * sim/ucsim/hc08.src/*
8642         * sim/ucsim/configure.in
8643         * src/ucsim/configure
8644         * sim/ucsim/packages_in.mk
8645         * as/hc08/*
8646         * as/Makefile
8647         * device/include/mc68hc908qy.h
8648         * device/lib/hc08/*
8649         * device/lib/Makefile.in
8650         * support/regression/ports/hc08/*
8651         * support/regression/Makefile
8652
8653 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8654
8655         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
8656         regression test
8657         * src/ds390/gen.c (genCast): fixed bug #821957
8658
8659 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
8660
8661         * device/lib/logf.c: "fixed" overlay bug
8662         * support/regression/ports/host/spec.mk: added m library
8663         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
8664         * support/regression/tests/float_trans: added (for Eric)
8665
8666 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
8667
8668         * src/mcs51/gen.c (genCpl): fixed bug
8669         http://sf.net/mailarchive/message.php?msg_id=6263915
8670
8671 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
8672
8673         * src/SDCCast.c (decorateType): added extended constant folding
8674         * src/SDCCsymt.c (computeType): cleanup
8675         * src/SDCCval.c (valShift): minor optimization
8676         * support/regression/tests/ast_constant_folding.c: added
8677
8678 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8679
8680         * src/SDCCmain.c: removed some unintended changes
8681
8682 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8683
8684         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
8685         * src/z80/gen.c: fixed part of bug #817589
8686         * src/SDCCsymt.c (checkFunction): fixed bug #817895
8687
8688 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
8689
8690         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
8691         * src/SDCCcflow.c
8692         * src/SDCCcse.c
8693         * src/SDCCdflow.c
8694         * src/SDCClabel.c
8695         * src/SDCClrange.c
8696         * src/SDCCmem.c
8697         * src/SDCCopt.c
8698         * src/SDCCpeeph.c
8699         * src/SDCCset.c
8700         * src/avr/ralloc.c
8701         * src/ds390/ralloc.c
8702         * src/izt/ralloc.c
8703         * src/mcs51/ralloc.c
8704         * src/pic/ralloc.c
8705         * src/pic16/ralloc.c
8706         * src/xa51/ralloc.c
8707         * src/z80/ralloc.c
8708         * src/z80/gen.c: removed unused label "release:"
8709
8710 2003-10-06  Borut Razem <borut.razem AT siol.net>
8711
8712         * src/SDCC.lex: removed definition of unused variables
8713           save_optimize and save_options
8714
8715 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
8716
8717         * clean.mk: removed '=' in "-maxdepth=1"
8718         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
8719         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
8720
8721 2003-10-06  Borut Razem <borut.razem AT siol.net>
8722
8723         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
8724           my_unput() replaced by unput()
8725
8726 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
8727
8728         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
8729         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
8730         type-punned pointer will break strict-aliasing rules"
8731         Old LR behaviour is again default; Klaus' LR can be choosen by
8732         defining the environment variable LRKLAUS
8733         * src/SDCCBBlock.h
8734         * src/SDCCloop.c
8735         * src/SDCClrange.c
8736         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
8737         * clean.mk: fixed removal of files in bin/CVS/
8738         * device/lib/clean.mk: fixed removal of directories small and large
8739         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
8740         * src/SDCCicode.c,
8741         * src/SDCCval.c: removed superflous test for pedantic
8742
8743 2003-10-05  Borut Razem <borut.razem AT siol.net>
8744
8745         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
8746           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
8747           message "unmatched #pragma SAVE and #pragma RESTORE"
8748
8749 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8750
8751         * doc/sdccman.lyx: various additions and updates (interrupts, inline
8752           assembly, critical functions, atomic, nojtbound)
8753
8754 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
8755
8756         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
8757         * src/SDCCBBlock.h
8758         * src/SDCCloop.c
8759         * src/SDCCloop.h
8760         * src/SDCClrange.c
8761
8762 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8763
8764         * src/z80/gen.h,
8765         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8766         * src/mcs51/gen.h
8767         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8768         * src/ds390/gen.h
8769         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
8770         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
8771         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
8772
8773 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8774
8775         * src/z80/gen.c (genRet): fixed bug #524753
8776         * src/z80/gen.c (genCast): fixed internal error on cast from
8777         pointer to long
8778         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
8779         fix for bug #477835 to the z80
8780         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
8781         for tracking iCodes in the peephole optimizer for z80
8782
8783 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8784
8785         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
8786         the other part of bug #814548
8787         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
8788
8789 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
8790
8791         * src/SDCCcse.c: fixed part of bug #814548
8792
8793 2003-09-28  Borut Razem <borut.razem AT siol.net>
8794
8795         * src/asm.c: rewrite of printILine() to use temporary file instead
8796           a pipe
8797         * src/xa51/main.c: commented out declaration of int rewinds
8798
8799 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8800
8801         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
8802
8803 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8804
8805         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
8806         * src/asm.c (printILine): Fixed bug #811015
8807
8808 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8809
8810         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
8811         freeing.
8812
8813 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8814
8815         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
8816         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
8817         to correctly handle general case of AOP_PAIRPTR
8818         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
8819
8820 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8821
8822         * src/mcs51/ralloc.c (fillGaps),
8823         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
8824         register positioning bug)
8825
8826 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
8827
8828         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
8829
8830 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8831
8832         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
8833         genCodePointerGet, genGenPointerGet, genFarPointerSet,
8834         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
8835         (ralloc doesn't intentionally do this now, but perhaps later)
8836         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
8837         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
8838         register positioning bugs (Fixed bug #762602 and #795325)
8839         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
8840         (Fixed bug #808779)
8841         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
8842         lines that --i-code-in-asm generates
8843
8844 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8845
8846         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
8847         trying to fclose a FILE* that was already closed.
8848
8849 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8850
8851         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
8852         of const struct should be treated as if const themselves)
8853
8854 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
8855
8856         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
8857
8858 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8859
8860         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
8861         Unix (/n) and DOS (/r/n) line terminations.
8862
8863 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8864
8865         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
8866         bug #613775
8867
8868 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8869
8870         * src/mcs51/gen.c (genFunction, genEndFunction),
8871         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
8872         and restore of EA so that stack offsets to parameters are
8873         correct when using both critical and reentrant/stack-auto.
8874         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
8875         size (can be triggered in error if sloc is shared between
8876         different sized objects)
8877         * device/include/float.h: fixed macros to explicitly use
8878         unsigned long where needed
8879
8880 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
8881
8882         Feature req. 799831: added code to allow nesting of critical functions
8883         * src/mcs51/gen.c (genFunction, genEndFunction)
8884         * src/ds390/gen.c (genFunction, genEndFunction)
8885
8886 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8887
8888         * src/SDCCsymt.c (sclsFromPtr),
8889         * src/SDCCsymt.h,
8890         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
8891         support for standard C idiom of memory mapped variables; for
8892         example, *((xdata int*)0x1234) = 1 is now internally equivalent
8893         to xdata int at 0x1234 tempvar = 1.
8894         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
8895         provided by Akiya ISHIDA
8896
8897 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
8898
8899         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
8900         * src/SDCCval.c (constVal): added reduction from int to char
8901         * src/SDCCval.c (valMult, valDiv): fixed sign handling
8902         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
8903         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
8904         to ignore the sign
8905         * support/regression/tests/shifts.c: fixed
8906
8907 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8908
8909         * src/z80/gen.c (genXor): Fixed bug #805445
8910
8911 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8912
8913         Fixed bug #621531 (const & volatile confusion in the type chain).
8914         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
8915         refer to the const or volatile state of the pointer itself.
8916
8917         * src/SDCCast.c
8918         * src/SDCCglue.c
8919         * src/SDCCicode.c
8920         * src/SDCCsymt.c
8921         * src/SDCCval.c
8922         * src/SDCC.y
8923         * src/SDCCsymt.h
8924         * src/pic/gen.c
8925         * src/pic/ralloc.c
8926         * src/pic16/gen.c
8927         * src/pic16/ralloc.c
8928         * support/regression/tests/const.c
8929
8930 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8931
8932         When checking for duplicated modules, use absolute paths
8933         instead of relative paths.  Files changed:
8934
8935         * as/mcs51/lklib.c
8936         * link/z80/lklib.c
8937
8938 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8939
8940         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
8941
8942 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8943
8944         * device/include/string.h: added size_t typedef, changed
8945         prototypes to use size_t, eliminated separate reentrant and
8946         non-reentrant declarations, added _memmove declaration
8947         * device/lib/_memcpy.c: changed to use size_t instead of int,
8948         changed /4 to >>2 to avoid division library call
8949         * device/lib/_memcmp.c,
8950         * device/lib/_memset.c,
8951         * device/lib/_strncat.c,
8952         * device/lib/_strncpy.c,
8953         * device/lib/_strncmp.c: changed to use size_t instead of int
8954         * device/lib/_memmove.c: new file (fixed bug #772294)
8955         * device/lib/Makefile.in: added _memmove.c
8956         * device/lib/z80/asm_strings.s: fixed bug #772290
8957         * support/regression/tests/bitfields.c: attempt to fix host assertion
8958         failure on amd64-unknown-linux2.2
8959
8960 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8961
8962         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
8963         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
8964         * as/z80/asmain.c (main): fixed bug #801766
8965
8966 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
8967
8968         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
8969         compilers
8970
8971 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8972
8973         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
8974         reported in bug #800609
8975
8976 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
8977
8978         * Top header beautifications in src/pic16 directory:
8979           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
8980           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
8981           pcoderegs.h, ralloc.c, ralloc.h
8982         * main.c: added top header and GPL license notice
8983         * pcode.c: fixed the if-conditional warning
8984
8985 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
8986
8987         * device/lib/_mullong.c: replaced int by short for gcc
8988
8989 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
8990
8991         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
8992         and JUMPTABLE iCodes properly now (worked by accident before)
8993         * src/mcs51/gen.c (leftRightUseAcc),
8994         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
8995         iCode properly now. Use getSize instead of nRegs since a & b
8996         aren't part of the nRegs tally.
8997
8998 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
8999
9000         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
9001         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
9002           before instructions that use the _STATUS register
9003
9004 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
9005
9006         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
9007         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
9008         fetching of the pointer
9009         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
9010         copied from genNearPointerSet()
9011         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
9012         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
9013         If they pop r0/r1 they must be called in the opposite order than aopOp().
9014         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
9015         (resp. --stack-auto), prepared for --xstack
9016
9017 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9018
9019         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
9020
9021 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
9022
9023         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
9024         these ports have their own __sdcc_external_start()
9025
9026 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
9027
9028         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
9029         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
9030         type for bits was changed. It resulted in bit variables becoming
9031         global, which is not permitted in PIC 14 assembly output.
9032
9033 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9034
9035         * doc/sdccman.lyx: various additions and updates. Rearranged sections
9036
9037 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9038
9039         Z80 and MCS51 linkers complaint if a public symbol is defined
9040         in more than one library module:
9041
9042         * as/mcs51/lklib.c
9043         * link/z80/lklib.c
9044         * as/mcs51/Makefile.in
9045
9046 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9047
9048         A few small changes that speed up the peephole optimizer.
9049
9050         * src/SDCCpeeph.c
9051
9052 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9053
9054         Try to make the peephole optimizer smarter by maintaining
9055         an association between the assembly source code and the
9056         iCodes that originated them. Put this information to use
9057         with a new peephole rule condition "notVolatile" so that
9058         the rules can be aggressive yet still safe.
9059
9060         * src/SDCCpeeph.c
9061         * src/SDCCpeeph.h
9062         * src/mcs51/gen.c
9063         * src/mcs51/peeph.def
9064
9065 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9066
9067         Fixed bug #741761
9068
9069         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
9070         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
9071         if the left or right operand symbols have the accuse flag set.
9072
9073 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9074
9075         Changed the type of the result of the ! (NOT) operator to char;
9076         previously it returned the same type as the source. This allows
9077         us to eliminate all the genFloatNot functions (all of its target
9078         implementations were very buggy) since !float can use the same
9079         code as !long now.
9080
9081         * src/SDCCicode.c (ast2iCode): ! returns char
9082         * src/mcs51/gen.c (genNot, genNotFloat),
9083         * src/ds390/gen.c (genNot, genNotFloat),
9084         * src/z80/gen.c (genNot, genNotFloat),
9085         * src/pic/gen.c (genNot, genNotFloat),
9086         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
9087
9088 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
9089
9090         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
9091         1. Interrupt would not compile properly. Ensure PCLATH register is saved
9092            during interrupts. Ensure WSAVE is located at a shared bank address.
9093         2. Fixed page selection in some places
9094         3. Fixed BTFSS/C to where necessary use registers directly and not simply
9095            the registers name strings.
9096         4. Fixed "signed / unsigned compare" compiler warnings.
9097         5. The PIC port manages its own allocation of the general purpose
9098            registers, but makes no attempt to reuse them. As a result when
9099            compiling it soon runs out of general purpose registers. Some
9100            additional code was added to the files pcode.c and device.c to walk
9101            through the function call tree and rename the registers so that they
9102            get reused.
9103
9104         * src/pic/device.c
9105         * src/pic/gen.c
9106         * src/pic/glue.c
9107         * src/pic/pcode.c
9108         * src/pic/pcode.h
9109         * src/pic/ralloc.c
9110         * src/pic/ralloc.h
9111         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
9112         genPlus() & genMinus() when the result is the same as left or right
9113
9114 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9115
9116         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
9117
9118 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9119
9120         Made bitfield a distinct type from bit so that bitfields
9121         convert as per ANSI C and bits retain their traditional
9122         boolean style behaviour. Implemented bitfield support in
9123         the z80 port.
9124
9125         * src/SDCCsymt.h,
9126         * src/SDCCsymt.c,
9127         * src/SDCCast.c,
9128         * src/cdbFile.c,
9129         * src/mcs51/gen.c,
9130         * src/ds390/gen.c: bit v bitfield split
9131         * src/z80/gen.c: New support for bitfields
9132         * support/regression/tests/bitfields.c: reenabled z80,
9133         added more tests
9134
9135 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9136
9137         Rules 246.x, 247.x relate to bitfields, the others speed up
9138         access to xdata mapped I/O devices.
9139
9140         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
9141
9142 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9143
9144         Cleaned up genPackBits and genUnpackBits and added two helper
9145         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
9146         for literal assignments in genPackBits (thanks to Frieder for
9147         reminding me).
9148
9149         * src/mcs51/gen.c
9150         * src/ds390/gen.c
9151
9152 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9153
9154         Fixed bug #748310 (pointer to function type mishandled when the
9155         function name is omitted). Also fixed a SIGSEGV when a function
9156         attribute (reentrant, etc) is used on a non-function or on a
9157         function but misplaced before the parameter list.
9158
9159         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
9160         bug #748310
9161         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
9162         * support/Util/SDCCerr.h,
9163         * support/Util/SDCCerr.c: Added func attr misuse error msg
9164
9165 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9166
9167         Fixed bug #787649 by anonymous
9168         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
9169         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
9170
9171 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9172
9173         Fixed numerous bitfield problems.
9174
9175         * src/SDCC.y: More bitfield related error checking
9176         * src/SDCCsymt.h,
9177         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
9178         * support/Util/SDCCerr.h,
9179         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
9180         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9181         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
9182         * support/regression/tests/bitfields.c: tests added
9183
9184 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9185
9186         Made the constant following the "interrupt" keyword optional. If
9187         omitted, the function will not automatically be given an entry
9188         in the interrupt vector table (similar to #pragma NOIV, but
9189         less syntacticly kludgy). The interrupt number is also now
9190         range checked. Also fixed a bug in the high order bit example
9191         in the manual.
9192
9193         * src/SDCC.y
9194         * src/SDCCmem.c
9195         * src/SDCCglue.c
9196         * src/SDCCsymt.h
9197         * support/Util/SDCCerr.c
9198         * support/Util/SDCCerr.h
9199         * doc/sdccman.lyx
9200
9201 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
9202
9203         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
9204         * src/SDCCicode.c (operandOperation): rewritten some ops
9205         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
9206         * src/SDCCsymt.c (computeType): literals are handled the same way as any
9207         other type
9208         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
9209         be re-activated by defining REDUCE_LITERALS)
9210         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
9211         unsigned, but are signed by default
9212         * src/SDCCval.c (constVal): rearranged
9213         * src/SDCCval.c (valMod): preliminary fix
9214         * src/SDCCval.c (valCastLiteral): use TYPE_* types
9215         * support/regression/literalop.c: added, work in progress
9216
9217 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9218
9219         Generate warnings for useless declarations like "char data;"
9220         that don't do what new users expect.
9221
9222         * src/SDCC.y
9223         * support/Util/SDCCerr.h
9224         * support/Util/SDCCerr.c
9225
9226 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
9227
9228         * src/SDCCval.c (valMult): fix overflow detection of negative int
9229
9230 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9231
9232         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
9233
9234         Changes to support big endian targets:
9235
9236         * src/ports.h
9237         * src/SDCCglue.c
9238         * src/avr/main.c
9239         * src/ds390/main.c
9240         * src/izt/i186.c
9241         * src/mcs51/main.c
9242         * src/pic/main.c
9243         * src/pic16/main.c
9244         * src/xa51/main.c
9245         * src/z80/main.c
9246
9247 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
9248
9249         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
9250         * device/lib/time.c: fixed warning "integer overflow in expression"
9251
9252 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
9253
9254         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
9255         * src/SDCCval.c (constVal): changed default to signed; hex and octal
9256         constants are unsigned; added recognition of "u" flag for unsigned
9257         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
9258         * src/SDCCval.c (valDiv, valMod): fixed signdness
9259         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
9260         signedness of modulo, left and right shift
9261         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
9262         * support/Util/SDCCerr.h: added warning W_INT_OVL
9263         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
9264         * src/SDCCast.c (ast_print): improved output of constants
9265
9266 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9267
9268         Fixed some warnings when building with MSVC:
9269
9270         * as/mcs51/asdata.c
9271         * as/z80/asdata.c
9272         * as/mcs51/asm.h
9273         * as/z80/asm.h
9274         * link/z80/aslink.h
9275         * link/z80/lkdata.c
9276         * link/z80/lkeval.c
9277         * link/z80/lkgb.c
9278         * link/z80/lkihx.c
9279         * link/z80/lks19.c
9280         * link/z80/lksym.c
9281         * support/cpp2/cpplib.c
9282         * src/ds390/gen.c
9283         * src/mcs51/gen.c
9284
9285 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
9286
9287         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
9288
9289 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9290
9291         * support/librarian/clean.mk: Do not remove Makefile.
9292         * support/librarian/Makefile: added.
9293
9294 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9295
9296         Added librarian to MSVC build:
9297         * all.dsp
9298         * sdcc.dsw
9299         * support/librarian/librarian.dsp
9300
9301         'configure' not needed for librarian, removed:
9302         * support/librarian/configure
9303         * support/librarian/configure.in
9304         * support/librarian/config_in.h
9305         * support/librarian/Makefile.in
9306
9307         Hopefully these ones built the librarian and the rest of sdcc properly:
9308         * Makefile
9309         * Makefile.common.in
9310
9311         Messed up 'configure', so revert to previous version:
9312         * configure
9313         * configure.in
9314
9315 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
9316
9317         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
9318         there, while the mantissa of a double is "only" 53 bits wide.
9319
9320 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9321
9322         Adding sdcclib to the build.  MSVC project coming soon.
9323         Files added/changed:
9324
9325         * support/librarian/clean.mk
9326         * support/librarian/configure
9327         * support/librarian/configure.in
9328         * support/librarian/config_in.h
9329         * support/librarian/Makefile.bcc
9330         * support/librarian/Makefile.in
9331         * support/librarian/sdcclib.c
9332         * Makefile.bcc
9333         * Makefile
9334         * Makefile.common.in
9335         * configure
9336         * configure.in
9337
9338 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9339
9340         Linker now complaints if linked modules have conflicting options, for
9341         example, one compiled using --model-large and another one compiled with
9342         --model-small.  The following files were modified:
9343
9344         * as/mcs51/asdata.c
9345         * as/mcs51/aslink.h
9346         * as/mcs51/asm.h
9347         * as/mcs51/asmain.c
9348         * as/mcs51/asout.c
9349         * as/mcs51/i51pst.c
9350         * as/mcs51/lkdata.c
9351         * as/mcs51/lklibr.c
9352         * as/mcs51/lkmain.c
9353         * as/z80/asdata.c
9354         * as/z80/asm.h
9355         * as/z80/asmain.c
9356         * as/z80/asout.c
9357         * as/z80/z80pst.c
9358         * link/z80/aslink.h
9359         * link/z80/lkdata.c
9360         * link/z80/lklibr.c
9361         * link/z80/lkmain.c
9362         * src/SDCCglue.c
9363
9364 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9365
9366         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
9367         as/mcs51/lklibr.c: Generate a warning when a library is not found.
9368
9369 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
9370
9371         * src/z80/mappings.i: fix _mul[us][int,long] entries
9372
9373 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9374
9375         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
9376
9377 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9378
9379         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
9380         * support/regression/tests/bitopcse.c: added
9381         fixed warning:
9382         * src/avr/gen.c:
9383         * src/pic/gen.c:
9384         * src/pic16/gen.c:
9385         * src/z80/gen.c:
9386         * src/xa51/gen.c:
9387
9388 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9389
9390         added support for new library format to z80, gbz80 linkers:
9391         *link/z80/aslink.h
9392         *link/z80/lklex.c
9393         *link/z80/lklib.c
9394         *link/z80/lklist.c
9395
9396 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
9397
9398         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
9399         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
9400
9401 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
9402
9403         added DUMMY_READ_VOLATILE:
9404         * src/SDCC.y:
9405         * src/avr/gen.c:
9406         * src/xa51/gen.c:
9407         * src/z80/gen.c:
9408         * src/pic/gen.c:
9409         * src/pic16/gen.c:
9410         * src/mcs51/gen.c:
9411         * src/ds390/gen.c:
9412         * src/SDCCcse.c (algebraicOpts): many improvements
9413         * src/SDCCcse.h: removed algebraicOpts()
9414         * src/SDCCicode.c (picDummyRead): added
9415
9416 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9417
9418         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
9419         "Insufficient space in data memory".
9420
9421 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9422
9423         * src/mcs51/gen.c: fixed bug #771358
9424         * src/z80/gen.c: fixed bug #759087
9425
9426 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
9427
9428         * src/pic16/glue.c: minor cleanup by Vangelis
9429
9430 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9431
9432         * device/include/regc515c.h: fixed #758477
9433         * device/lib/_gptrget.c: saving some cycles in generic pointer get
9434         * device/lib/_gptrput.c: saved a few bytes
9435         * my tab spacing is 8, yours too?)
9436         * device/lib/_ser.c: process RX bytes earlier than TX bytes
9437         * device/lib/serial.c: process RX bytes earlier than TX bytes
9438         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
9439
9440 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
9441
9442         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
9443
9444 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9445
9446     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
9447
9448 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
9449
9450         * device/lib/Makefile.in: bad fix, reverted to 1.43
9451
9452 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
9453
9454         * device/lib/Makefile.in: added missing z80 object files
9455
9456 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
9457
9458         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
9459         pic16 progress by Vangelis:
9460         * src/SDCCglobl.h:
9461         * src/SDCCmain.c:
9462         * src/pic/Makefile:
9463         * src/pic:
9464         * pic/Makefile:
9465         * pic16/device.c:
9466         * pic16/device.h:
9467         * pic16/gen.c:
9468         * pic16/gen.h:
9469         * pic16/genarith.c:
9470         * pic16/glue.c:
9471         * pic16/main.c:
9472         * pic16/pcode.c:
9473         * pic16/pcode.h:
9474         * pic16/pcodepeep.c:
9475         * pic16/peeph.def:
9476
9477 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9478
9479     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
9480
9481 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9482
9483     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
9484     added gbz80 build to MSVC project.
9485     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
9486     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
9487     from 8051 stuff and setup so it links using a .lnk file.
9488
9489 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9490
9491     * support/librarian/sdcclib.c: sdcc librarian.
9492     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
9493     with sdcclib.
9494
9495 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9496
9497     * as/mcs51/lkmain.c: properly handle extensions in function afile.
9498
9499 2003-07-02  Borut Razem <borut.razem AT siol.net>
9500
9501         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
9502         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
9503         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
9504         src/xa51/main.c, src/z80/main.c:
9505         virtualization of glue() function: each port has it's own glue function,
9506         which is accessed by do_glue function pointer in PORT.general structure
9507
9508 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
9509
9510         * DS800C400 fun, improved ROM interface and tinibios.
9511
9512 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
9513
9514         * More support for DS80C400. Now includes beginning of interface to ROM.
9515
9516 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
9517
9518         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
9519
9520 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9521
9522         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
9523
9524 2003-06-19  Borut Razem <borut.razem AT siol.net>
9525
9526         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
9527
9528 2003-06-19  Borut Razem <borut.razem AT siol.net>
9529
9530         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
9531         fixed Z80 port - crt0.o: cannot open.
9532
9533 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
9534
9535         * support/Util/MySystem.c (merge_command): revert bad fix
9536
9537 2003-06-18  Borut Razem <borut.razem AT siol.net>
9538
9539         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
9540
9541 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9542
9543         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9544         option --use-stdout sends errors to stdout instead of stderr.
9545
9546 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
9547
9548         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
9549
9550 2003-06-15  Borut Razem <borut.razem AT siol.net>
9551
9552         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
9553         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
9554         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
9555         fixed width array of pointers replaced with sets;
9556         multiple include and lib paths ared transferred to preprocessor and linker
9557         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
9558         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
9559         fixed width array of pointers
9560         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
9561         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
9562         fixupPath(), getPathDifference()
9563         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
9564         fixed width array of pointers
9565
9566 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
9567
9568         * src/pic16/ralloc.c: fix warnings
9569         * src/pic16/pcode.c: fix warning
9570
9571 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
9572
9573          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
9574         know all the details, but essentially this set of changes enable
9575         the pic16 port to generate movff instructions and generate assembler
9576         directives,
9577         * src/SDCCmain.c:
9578         * src/pic16/gen.c:
9579         * src/pic16/glue.c:
9580         * src/pic16/pcode.c:
9581         * src/pic16/device.c:
9582         * src/pic16/main.c:
9583         * src/pic16/pcode.h:
9584         * src/pic16/pcoderegs.c:
9585         * src/pic16/ralloc.c:
9586         * src/pic16/ralloc.h:
9587
9588 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9589
9590         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
9591         added option --vc, so sdcc errors and warnings are compatible with
9592         Microsoft Visual Studio.
9593
9594 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9595
9596         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
9597           device/lib/libfloat.lib: added atof function.
9598
9599 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
9600
9601         * doc/sdccman.lyx: updated to Lyx 1.3
9602         * doc/cdbfileformat.lyx: updated to Lyx 1.3
9603         * doc/test_suite_spec.lyx: updated to Lyx 1.3
9604         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
9605
9606 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
9607
9608         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
9609
9610 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9611
9612         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
9613           additions to the "related tools/documentation" section
9614
9615 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
9616
9617         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
9618
9619 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
9620
9621         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
9622         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
9623
9624 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
9625
9626         * doc/sdccman.lyx: fix double dash and other minor things
9627         * doc/Makefile: fix double dash
9628
9629 2003-05-28  Karl Bongers(patches from Martin Helmling)
9630         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
9631           condition and ignore commands.
9632
9633 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9634
9635         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
9636           is in parts still quite out of date, I did changes as far as I felt makes sense
9637           for a non-native english speaker.
9638           Please feel free to add to the manual or to correct my changes.
9639         * doc/Makefile: undid touching the date of intermediate tex files.
9640
9641 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9642
9643         * doc/sdccman.lyx: Manual has an index now
9644
9645 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
9646
9647         Finalize muluint/mulsint and mululong/mulslong merging:
9648         * device/lib/_mulint.c
9649         * device/lib/_mullong.c
9650         * device/lib/gbz80/mul.s
9651         * device/lib/gbz80/stubs.s
9652         * device/lib/z80/mul.s
9653         * device/lib/z80/stubs.s
9654         * src/SDCCsymt.c (initCSupport)
9655
9656 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9657
9658         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
9659         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
9660           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
9661           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
9662           instead of /Zm500.
9663
9664 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
9665
9666         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
9667           the regression tests I'm not brave enough to enable 245.b, 245.c
9668         * doc/sdccman.lyx: added latex preamble for hyperref package.
9669           Using pdflatex this will give you a hyperlinked pdf file with
9670           bookmarks. (prepend '%' before /usepackage if this breaks something)
9671
9672 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9673
9674          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
9675
9676 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
9677
9678         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
9679
9680 2003-05-21    <johan AT balder>
9681
9682         * src/SDCCglue.c (printIval): fixed bug #739934
9683
9684 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9685
9686         Applied patch from bug 737905 (renamed yylineo to mylineno):
9687         * src/altlex.c
9688         * src/SDCCast.c
9689         * src/SDCglobl.h
9690         * src/SDCC.lex
9691         * src/SDCCsymt.c
9692         * src/SDCCval.c
9693         * src/pic16/pcode.c: Cleaned warnings
9694         * src/pic16/pcodeflow.c: Cleaned warnings
9695         * src/pic16/pcoderegs.c: Cleaned warnings
9696
9697 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
9698
9699         * src/pic16/pcode.c: Cleaned warnings
9700         * src/pic16/pcodepeep.c: Cleaned warnings
9701         * src/pic16/ralloc.c: Cleaned warnings
9702
9703 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
9704
9705         * doc/sdccman.lyx: fixed bug 739745
9706         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
9707
9708 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
9709
9710         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
9711         it can be defined with CFLAGS when running configure
9712         * src/SDCCmain.c: fixed compiling + linking with object files
9713
9714 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
9715
9716         * configure.in: configure for pic16 port,
9717             added --disable-pic16-port
9718         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
9719         * src/SDCCmain.c: linkOptions is changed to set *,
9720             added if/endif conditional macros to remove options help
9721             messages from optionsTable when a port is not configured, added
9722             support for the PIc16 port in the ports table, when executing
9723             the compiler with no port specified on command line, a default
9724             port is selected with the new macro DEFAULT_PORT which is
9725             defined in port.h, in setDefaultOptions() linkOptions is removed
9726             from initialization assignment, since now it is a set,
9727             parseCmdLine uses setParseWithComma for linkOptions, in
9728             linkEdit() linkOptions are accessed with new function indexSet()
9729             which returns the i'th item of a set variable. See SDCCset.c, in
9730             linkEdit() when calling buildCmdLine(), added linkOptions as
9731             last argument. Now users can pass arguments to gplink via the
9732             -Wl option, main() uses pic16glue() to glue up pic16 programs
9733         * src/SDCCpeeph.c: various changes to support pic16
9734         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
9735             return the i'th item of the set
9736         * src/SDCCset.h: added function prototype for indexSet()
9737         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
9738         * src/clean.mk: added pic16 in CLEANALLPORTS variable
9739         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
9740             added macro DEFAULT_PORT
9741         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
9742         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
9743             generated
9744         * src/pic16/glue.c: commented out some error producing lines
9745         * src/pic16/main.c: __config directives are commented out to stop
9746             gpasm complaining and test the linkage with gplink, _linkCmd and
9747             _asmCmd changed to be more gplink and gpasm friendly
9748         * src/pic16/peeph.def: peep rule 3 is commented out, since it
9749             produced an error when parsed, peep rule 12 is added to utilize
9750             movff, but it is commented out since the pCode does not support
9751             yet a command with 2 address arguments
9752
9753 2003-05-18    <johan AT balder>
9754
9755         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9756         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
9757 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
9758
9759         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
9760   Added feature to script commands from file.
9761
9762 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
9763
9764         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
9765         * src/SDCCutil.c: include ctype.h for win32
9766
9767 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
9768
9769         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
9770
9771 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
9772
9773         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
9774   Fixed so you can set breakpoints prior to run, run does not stop
9775   on entry now.  Add tbreak.  Other enhancements and fixes for use
9776   with ddd.
9777
9778 2003-05-12  Borut Razem <borut.razem AT siol.net>
9779
9780         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
9781
9782 2003-05-11  Borut Razem <borut.razem AT siol.net>
9783
9784         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
9785         the path of bin directory, so that PATH is the only env. variable, which has to be set
9786         in case of standard installation.
9787         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
9788         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
9789         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
9790
9791 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9792
9793         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
9794         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
9795         temp files are in the port dir; clean the gen/test directory when
9796         generating new test.c
9797         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
9798         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
9799         * support/regression/tests/zeropad.c: added
9800
9801 2003-05-09    <johan AT balder>
9802
9803         * src/SDCCglue.c: fixed bug #597940
9804
9805 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
9806
9807         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9808   cache sfr, optimize next,step, fix off by one sourceline,
9809   support ddd list function.
9810         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
9811
9812 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
9813
9814         * support/regression/HTMLgen.py: added compare_s2f()
9815         * support/regression/Makefile: redo 1.27
9816         * support/regression/generate-cases.py: redo 1.5
9817
9818 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
9819
9820         * support/regression/tests/float.c: workaround 33 bit hex constant
9821         * support/regression/tests/simplefloat.c: fix division for host
9822
9823 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
9824
9825         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
9826         that tame's the PIC's over-aggressive optimizer.
9827
9828 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
9829
9830          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
9831          support for MSVC.
9832
9833 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
9834
9835         Initial support for DS80C400. "Hello world" runs on TINIm400
9836         (with polled I/O).
9837
9838 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
9839
9840          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
9841          * Some notes on ddd usage added in debugger/README
9842          Martin Helmling adding more features and fixes for ddd GUI debugger.
9843          Code added for nexti, stepi, up, down, and other adjustments.
9844
9845 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
9846
9847         * src/pic/pCodepeep.c non-wildcard asmops are now handled
9848         * src/pic/peeph.def Added two rules to optimize carry manipulation
9849         * src/pic/* removed debug printfs
9850
9851 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
9852
9853         * debugger/mcs51/cmd.c: added header newalloc.h
9854
9855 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
9856
9857         * as/Makefile: new EXEEXT
9858         * as/z80/Makefile: remove trailing slash of BUILDIR
9859         * as/z80/clean.mk: new EXEEXT
9860         * Makefile.common.in: add to CFLAGS (and others), don't replace it
9861         * support/cpp2/Makefile.in: new EXEEXT
9862         * src/pic/glue.c (pic14emitRegularMap): fixed warning
9863
9864 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
9865
9866         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
9867         EXEEXT was introduced to fix all related problems with targets
9868         "clean", "install" and "uninstall"; a couple of further flaws
9869         especially with "clean" have been fixed too
9870         * as/mcs51/Makefile.in
9871         * as/mcs51/clean.mk
9872         * as/z80/Makefile
9873         * Makefile
9874         * clean.mk
9875         * debugger/mcs51/Makefile.in
9876         * debugger/mcs51/clean.mk
9877         * link/z80/Makefile
9878         * link/z80/Makefile.in
9879         * link/z80/clean.mk
9880         * link/Makefile
9881         * packihx/Makefile.in
9882         * packihx/clean.mk
9883         * sim/ucsim/Makefile
9884         * sim/ucsim/clean.mk
9885         * sim/ucsim/avr.src/Makefile.in
9886         * sim/ucsim/avr.src/clean.mk
9887         * sim/ucsim/s51.src/Makefile.in
9888         * sim/ucsim/s51.src/clean.mk
9889         * sim/ucsim/xa.src/Makefile.in
9890         * sim/ucsim/xa.src/clean.mk
9891         * sim/ucsim/z80.src/Makefile.in
9892         * sim/ucsim/z80.src/clean.mk
9893         * sim/ucsim/main_in.mk
9894         * sim/ucsim/packages_in.mk
9895         * sim/ucsim/gui.src/Makefile.in
9896         * sim/ucsim/gui.src/serio.src/Makefile.in
9897         * sim/ucsim/gui.src/serio.src/clean.mk
9898         * src/Makefile.in
9899         * src/clean.mk
9900         * support/cpp2/Makefile.in
9901         * support/cpp2/clean.mk
9902         * support/makebin/Makefile
9903         * support/makebin/clean.mk
9904         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
9905         * doc/sdccman.lyx: --program-suffix no longer needed
9906
9907 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
9908
9909          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
9910          Martin Helmling added support for ddd GUI debugger.
9911          Code added to display assembly, set variables, and other commands
9912          to interface to ddd.
9913
9914 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
9915
9916         * as/Makefile: fix target clean
9917         * as/clean.mk: fix target clean
9918         * as/z80/clean.mk: fix target clean
9919
9920 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
9921
9922         * Makefile.common.in: added  AT EXEEXT AT
9923         * configure.in: removed all mingw32 stuff
9924         * configure: rebuilt from configure.in
9925         * doc/sdccman.lyx: updated section "installation"
9926         * support/scripts/sdcc_mingw32: adapted to configure
9927         * support/scripts/sdcc_cygwin_mingw32: added
9928
9929 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
9930
9931         * src/pic Added object file support for the PIC port
9932         * src/pic Applied patch from Craig Franklin (this started the object file support)
9933         * src/regression Updated the PIC regression tests for object files
9934
9935 2003-04-20  Borut Razem <borut.razem AT siol.net>
9936
9937         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
9938           lklex.c: In function `getfid':
9939           lklex.c:203: warning: array subscript has type `char'
9940         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
9941           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
9942         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
9943           stack handling macros
9944
9945 2003-04-19  Borut Razem <borut.razem AT siol.net>
9946
9947         * "handling space characters in file path" task:
9948         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
9949         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
9950         * support/Util/MySystem.h: make it self-sufficient
9951         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
9952           src/z80/main.c, sdcc/as/mcs51/lklex.c:
9953           handling space characters in file path
9954         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
9955           (it will be used by assemblers, which have their own includes, e.g. gpasm)
9956         * support/Util/MySystem.c: handling space characters in executable's path
9957
9958 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
9959
9960         * as/z80/Makefile: fix permanent rebuild of z80
9961         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
9962         * support/regression/tests/bitfields.c: added Johan's bitfields.c
9963
9964 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
9965
9966         * src/SDCCopt.c: add special case optimization to replace modulo by
9967           a power of two with a bitwise AND.
9968
9969 2003-04-18    <johan AT balder>
9970
9971         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
9972
9973 2003-04-17    <johan AT balder>
9974
9975         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
9976         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
9977
9978 2003-04-13  Borut Razem <borut.razem AT siol.net>
9979
9980         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
9981         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
9982           fixed mingw problem in adl_NORMALIZE_PATH
9983
9984 2003-04-12  Borut Razem <borut.razem AT siol.net>
9985
9986         * fixed "#pragma SAVE/RESTORE can not be nested":
9987         * src/SDCC.lex: reworked pragma handling functions
9988         * sdcc/src/SDCCglobl.h: reworked stack handling macros
9989         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
9990
9991 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
9992
9993         * src/SDCCutil.c (pathEquivalent): defined but not used
9994         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
9995         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
9996         * configure: rebuilt from configure.in
9997         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9998         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
9999         * device/include/Makefile.in: replace sdcc_datadir
10000         * device/lib/Makefile.in: replace sdcc_datadir
10001         * Makefile.common.in: add LDFLAGS from configure
10002         * packihx/Makefile.in: use LDFLAGS
10003         * src/Makefile.in: use LDFLAGS
10004         * support/cpp2/Makefile.in: add LDFLAGS from configure
10005         * support/makebin/Makefile: use LDFLAGS
10006         * .version: bumped version number to 2.3.5
10007
10008 2003-04-12  Borut Razem <borut.razem AT siol.net>
10009
10010         * completed "different paths" task:
10011         * src/SDCCmacro.c: fixed bug in handling quotes
10012         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
10013         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
10014
10015 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
10016
10017         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
10018
10019 2003-04-11 kevin Vigor <kevin AT vigor.nu>
10020
10021         * ds390/gen.c ds390/peeph.def: fix bug 706781
10022
10023 2003-04-11  Borut Razem <borut.razem AT siol.net>
10024
10025         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
10026
10027 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
10028
10029         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
10030         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
10031          set - this bit used to not be set...).
10032         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
10033           bad code in PIC Port
10034         * src/regression/and2.c added to test bug 609268
10035         * src/regression/Makefile added and2.c to regression test
10036
10037
10038 2003-04-08    <johan AT CP255758-A>
10039
10040         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
10041         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
10042         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
10043
10044 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
10045
10046         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
10047         fix bug #487815
10048         * support/cpp2/Makefile.in: fix bug #487815
10049         * configure: rebuilt from configure.in
10050         * Makefile.common.in: docdir changed, new path suffixes
10051         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
10052         * sdcc_vc_in.h: reflect changes from sdccconf.h
10053         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
10054         * src/SDCCutil.h: remove BINDIR hack
10055         * doc/sdccman.lyx: update new path hierarchy
10056
10057 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
10058
10059         * src/SDCCpeeph.c: added okToRemoveSLOC test
10060
10061 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
10062
10063         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
10064
10065 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
10066
10067         * src/SDCCpeeph.c: added labelIsReturnOnly test
10068         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
10069
10070 2003-04-05    <johan AT balder>
10071
10072         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
10073         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
10074         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
10075         * src/SDCCast.c: fixed a warning
10076         * src/SDCCast.h: fixed a warning
10077         * src/SDCCicode.c (operandFromAst): fixed a warning
10078
10079 2003-04-04    <johan AT balder>
10080
10081         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
10082         * src/SDCCast.c (decorateType): fixed bug #715076
10083         * src/SDCC.y: fixed bug #702907
10084
10085 2003-04-03    <johan AT balder>
10086
10087         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
10088         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
10089         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
10090         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
10091         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
10092
10093 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
10094
10095         * _decdptr.c: fix return values
10096         * _gptrget.c: fix return values
10097         * _gptrgetc.c: fix return values
10098         * _gptrput.c: fix return values
10099         * _mulint.c: fix return values
10100         * as/z80/Makefile: fix 'make -j' problem
10101
10102 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
10103
10104         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
10105         * configure.in: big cleanup, updated to autoconf 2.5x
10106         * configure: rebuilt from configure.in
10107         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
10108         * sdcc_vc_in.h: reflect changes from sdccconf.h
10109         * doc/Makefile: fixed a flaw in "make install"
10110
10111 2003-04-02    <johan AT balder>
10112
10113         * src/ds390/gen.c (genCmp): no comments
10114         * src/mcs51/gen.c (genCmp): no comments
10115         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
10116         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
10117
10118 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
10119
10120         * support/regression/generate-cases.py: place generated file in given sub directory
10121         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
10122         * support/regression/Makefile: improvements for 'make -j';
10123         side effect: it's simpler and faster now
10124
10125 2003-03-31  Borut Razem <borut.razem AT siol.net>
10126
10127         * src/z80/main.c: link-{port} and as-{port} defined without path
10128         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
10129
10130 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
10131
10132         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
10133
10134 2003-03-30  Borut Razem <borut.razem AT siol.net>
10135
10136         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
10137           changed type of list parameter to set
10138         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
10139         * src/port.h: changed type of do_assemble() parameter to set
10140         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
10141           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
10142           definition of "cppoutfilename" macro with NULL value in preProcess()
10143         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
10144         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
10145         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
10146           replaced with set *binPathSet
10147         * shash_add() deallocates the item, if allready exsists, before adding the new one
10148         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
10149
10150 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
10151
10152         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
10153           a nested for loop bug in the PIC port
10154         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
10155           for loops
10156
10157 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
10158
10159         * support/Util/dbuf.h: remove C++ stuff to make it portable
10160
10161 2003-03-28  Borut Razem <borut.razem AT siol.net>
10162
10163         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
10164           literal strings in stringLiteral()
10165         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
10166         * src/Makefile.bcc, src/Makefile.in, src/src.dsp: added support/Util/dbuf.c
10167           to the project
10168
10169 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
10170
10171         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
10172
10173 2003-03-26    <johan AT balder>
10174
10175         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
10176         * src/ds390/gen.c (saveRegisters): catched symbol abuse
10177         * src/SDCCast.c (decorateType): fixed " -v < 3"
10178
10179 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
10180
10181         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
10182         Added Lenny Story's debug infrastructure changes:
10183         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
10184         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
10185         * src/cdbFile.c: added
10186         * src/SDCCdebug.c: added
10187         * src/SDCCdebug.h: added
10188         * src/SDCCast.c (createFunction)
10189         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
10190         * src/SDCCmain.c (parseCmdLine, main)
10191         * src/SDCCmem.c (redoStackOffsets)
10192         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
10193         * src/SDCCsymt.h
10194         * src/common.h
10195         * src/avr/gen.c (genAVRCode)
10196         * src/ds390/gen.c (gen390Code)
10197         * src/mcs51/gen.c (gen51Code)
10198         * src/pic/gen.c (genpic14Code)
10199         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
10200         * src/xa51/gen.c (genXA51Code)
10201         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
10202
10203 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10204
10205         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
10206         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
10207
10208 2003-03-22    <johan AT balder>
10209
10210         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
10211
10212 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
10213
10214         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
10215         * doc/cdbfileformat.lyx: added, written by Lenny Story
10216         * doc/Makefile: added cdbfileformat.lyx
10217         * doc/clean.mk: added cdbfileformat.lyx
10218
10219 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
10220
10221         * src/mcs51/peeph.def: fix bug #705773
10222
10223 2003-03-20    <johan AT balder>
10224
10225         An sfr/sbit can have an "at #" AND an initializer
10226         * src/SDCCsymt.c (checkSClass):
10227         * src/SDCCmem.c (allocGlobal):
10228         * src/SDCCmem.c (allocLocal):
10229         * src/SDCCast.c (createBlock):
10230
10231 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
10232
10233         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
10234
10235 2003-03-16    <johan AT balder>
10236
10237         Undid the hackup of const and volatile, the problem is much bigger
10238         * src/SDCC.y:1.65
10239         * src/SDCCast.c:1.171
10240         * src/SDCCglue.c:1.138
10241         * src/SDCCicode.c:1.146
10242         * src/SDCCsymt.c:1.150
10243         * src/SDCCval.c:1.65
10244
10245 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
10246
10247         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
10248         * src/ds390/gen.c (genAddrOf): fixed bug #704087
10249
10250 2003-03-13    <johan AT balder>
10251
10252         Hackup const and volatile modifiers in type chains a bit:
10253         * src/SDCC.y:1.63
10254         * src/SDCCast.c:1.169
10255         * src/SDCCglue.c:1.136
10256         * src/SDCCicode.c:1.143
10257         * src/SDCCsymt.c1.146
10258         * src/SDCCsymt.h1.59
10259         * src/SDCCval.c:1.63
10260
10261 2003-03-12    <johan AT balder>
10262
10263         * src/SDCCBBlock.h: more LRH debugging junk
10264         * src/SDCCcflow.h: more LRH debugging junk
10265         * src/SDCCloop.c: more LRH debugging junk
10266         * src/SDCC.y (struct_declaration): fixed bug #697590
10267         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
10268         * src/ds390/gen.c (aopForRemat): fixed bug #700031
10269         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
10270
10271 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10272         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
10273         test function names must now match exactly).
10274         * src/SDCCcse.c: added special case in findCheaperOp to allow
10275         extending a short integer. Makes less awful code for bug 700121 test case.
10276
10277 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10278
10279         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
10280         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
10281
10282 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10283
10284         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
10285         actually called (operandsNotEqual() was called for all
10286         operandsNotEqualX tests).
10287
10288 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
10289
10290         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
10291         with shorter literals. Fixes bug 700121.
10292
10293 2003-03-11    <johan AT balder>
10294
10295         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
10296
10297 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
10298
10299         * src/SDCCloop.c (mergeRegions): an evil beast is dead
10300         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
10301
10302 2003-03-10  Borut Razem <borut.razem AT siol.net>
10303
10304         * src/SDCCmain.c: pipe preprocessor's output
10305         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10306         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10307         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10308         which closes all pipes in pipeSet set
10309         * src/SDCCset.c: free deleted item in function deleteSetItem()
10310         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10311         moved from z80 to src subproject
10312         * .version: increased version number to 2.3.4
10313
10314 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
10315
10316         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
10317         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
10318         * support/regression/ports/xa51/spec.mk: fix typo
10319
10320 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
10321
10322         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
10323
10324 2003-03-09  Borut Razem <borut.razem AT siol.net>
10325
10326         * src/SDCCmain.c: pipe preprocessor's output
10327         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
10328         * sdcc_vc_in.h: define pclose as _pclose for WIN32
10329         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
10330         which closes all pipes in pipeSet set
10331         * src/SDCCset.c: free deleted item in function deleteSetItem()
10332         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
10333         moved from z80 to src subproject
10334
10335 2003-03-09  Borut Razem <borut.razem AT siol.net>
10336
10337         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
10338         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
10339         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
10340         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
10341         * src/SDCCglobl.h: unification of WIN32 native definitions
10342
10343 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10344
10345         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
10346
10347 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10348
10349         * src/configure.in:   check for endianess (even while cross-compiling)
10350         * src/configure:      check for endianess (even while cross-compiling)
10351         * src/configure_in.h: check for endianess (even while cross-compiling)
10352         * src/avr/gen.c:        remove old endianess stuff
10353         * src/mcs51/gen.c:      remove old endianess stuff
10354         * src/ds390/gen.c:      remove old endianess stuff
10355         * src/pic/gen.c:        remove old endianess stuff
10356         * src/pic/genarith.c:   remove old endianess stuff
10357         * src/pic/glue.c:       fix endianess check
10358         * src/pic16/gen.c:      remove old endianess stuff
10359         * src/pic16/genarith.c: remove old endianess stuff
10360         * src/pic16/glue.c:     fix endianess check
10361         * src/xa51/gen.c:       remove old endianess stuff
10362         * src/z80/gen.c:        fix endianess check
10363         * src/SDCCglue.c:       fix endianess check
10364         * src/ds390/peeph.def: fix bug 700036
10365
10366 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
10367
10368         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
10369         * src/configure: find appropriate data-types on host for SDCC's int and long
10370         * src/configure.in: find appropriate data-types on host for SDCC's int and long
10371         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
10372         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
10373
10374 2003-03-07    <johan AT balder>
10375
10376         Just a big NOOP:
10377                 some minor cleanups before the big shot
10378                 OP_DEFS and OP_USES now use Kevin's protection
10379                 new option --nolabelopt
10380
10381         * src/SDCCBBlock.c:
10382         * src/SDCCast.c,:
10383         * src/SDCCcflow.c:
10384         * src/SDCCcse.c:
10385         * src/SDCCicode.c:
10386         * src/SDCCicode.h:
10387         * src/SDCClabel.c:
10388         * src/SDCCloop.c:
10389         * src/SDCCmain.c:
10390         * src/ds390/ralloc.c:
10391         * src/mcs51/ralloc.c:
10392         * src/pic/ralloc.c:
10393         * src/xa51/ralloc.c:
10394         * src/z80/ralloc.c:
10395
10396 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
10397
10398         * src/pic/pcode.c (get_op): fix 64 bit warnings
10399         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
10400         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
10401         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
10402         * support/regression/tests/malloc.c: fix 64 bit warnings
10403
10404 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
10405
10406         * src/mcs51/gen.c (genMinus): fixed bug 696436
10407
10408 2003-03-02  Borut Razem <borut.razem AT siol.net>
10409
10410         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
10411
10412 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
10413
10414         * configure.in: test for mkstemp
10415         * sdccconf_in.h: add HAVE_MKSTEMP
10416
10417 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
10418
10419         * device/include/ctype.h: removed warning while using --stack-auto
10420         * device/include/malloc.h: removed warning while using --stack-auto
10421         * device/include/string.h: removed warning while using --stack-auto
10422
10423 2003-02-23  Borut Razem <borut.razem AT siol.net>
10424
10425         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
10426         because NDEBUG is defined (see man assert)
10427         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
10428
10429 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10430
10431         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
10432         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
10433
10434 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
10435
10436         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
10437         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
10438
10439 2003-02-18    <johan AT balder>
10440
10441         * as/mcs51/asmain.c (asmbl): module can start with a digit
10442         * as/z80/asmain.c (asmbl): module can start with a digit
10443
10444 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
10445
10446         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
10447         * src/asm.c: fix pipe() for Mingw32
10448
10449 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
10450
10451         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
10452         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
10453         make -V work again; --c1mode reads now from stdin
10454         * doc/sdccman.lyx: added --c1mode
10455         * support/Util/SDCCerr.c: new messages for c1 mode
10456         * support/Util/SDCCerr.h: new messages for c1 mode
10457         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
10458
10459 2003-02-15    <johan AT balder>
10460
10461         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
10462
10463 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
10464
10465         * doc/sdccman.lyx: Environment variables, -o and other minor things
10466
10467 2003-02-14    <johan AT balder>
10468
10469         * src/xa51/main.c: before anyone really tries to use it :)
10470
10471         * Install doc's in share/sdcc/doc
10472         * removed some obsolete files
10473         * Do a proper make distclean and uninstall
10474         M Makefile.common.in
10475         R sdccbuild.sh
10476         M as/Makefile
10477         M device/include/Makefile.in
10478         M device/lib/Makefile.in
10479         M doc/sdccman.lyx
10480         M link/Makefile
10481         M sim/ucsim/doc/Makefile.in
10482         M src/clean.mk
10483         R src/avr/peeph.rul
10484         R src/xa51/peeph.rul
10485         M support/cpp2/Makefile.in
10486         M support/makebin/Makefile
10487
10488
10489 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
10490
10491         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
10492
10493 2003-02-10  Borut Razem <borut.razem AT siol.net>
10494
10495         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
10496         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
10497         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
10498         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
10499         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
10500         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
10501         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
10502         src/z80/Makefile.bcc: Borland Makefile cleanup
10503         * as/z80/Makefile.bcc: Added Borland Makefile
10504         * support/cpp2/borland.h: Removed
10505
10506 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
10507
10508         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
10509         * src/SDCC.lex: new pragma NOIV
10510         * src/SDCCglobl.h: new pragma NOIV
10511         * src/SDCCmem.c: new pragma NOIV
10512
10513 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10514
10515         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
10516
10517 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
10518
10519         * src/SDCCmain.c: signal handling is switched off by --debug
10520         * doc/Makefile: small fix for install; use clean.mk again
10521         * doc/clean.mk: clean *.pdf and *.html too
10522
10523 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
10524
10525         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
10526         * device/lib/printfl.c: fix a ds390 bug by making it portable
10527         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
10528         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
10529         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
10530         * debugger/mcs51/cmd.c: converted multi-line string literals
10531         * sim/ucsim/globals.cc: converted multi-line string literals
10532         * src/SDCCmain.c: introduced signal handler to remove temp files
10533         * doc/Makefile: small tweaks, implement clean
10534         * doc: removed generated files
10535
10536 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10537
10538         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
10539         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
10540         Address Record is not correctly generated for DS390."
10541
10542 2003-02-02  Borut Razem <borut.razem AT siol.net>
10543
10544         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
10545         * as/mcs51/asm.h: fixed compilation with Borland C
10546         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
10547         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
10548         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
10549         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
10550         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
10551         src/z80/Makefile.bcc: delete $(LIB) only if exist
10552         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
10553
10554 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
10555
10556         * device/include/malloc.h: introduced NULL
10557         * device/include/string.h: introduced NULL
10558         * device/include/stdlib.h: introduced NULL
10559         * device/lib/_memcpy.c: removed NULL
10560         * device/lib/_strcat.c: removed NULL
10561         * device/lib/_strchr.c: removed NULL
10562         * device/lib/_strcmp.c: removed NULL
10563         * device/lib/_strcpy.c: removed NULL
10564         * device/lib/_strcspn.c: removed NULL
10565         * device/lib/_strlen.c: removed NULL
10566         * device/lib/_strncat.c: removed NULL
10567         * device/lib/_strncmp.c: removed NULL
10568         * device/lib/_strncpy.c: removed NULL
10569         * device/lib/_strpbrk.c: removed NULL
10570         * device/lib/_strrchr.c: removed NULL
10571         * device/lib/_strspn.c: removed NULL
10572         * device/lib/_strstr.c: removed NULL
10573         * device/lib/_strtok.c: removed NULL
10574         * device/lib/malloc.c: removed NULL, include own header
10575
10576 2003-02-02    <johan AT balder>
10577
10578         * 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
10579         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
10580         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
10581         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
10582         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
10583         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
10584
10585 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10586
10587         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
10588         area 'DATA'"
10589
10590 2003-02-01    <johan AT balder>
10591
10592         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
10593
10594 2003-01-31    <johan AT CP255758-A>
10595
10596         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
10597
10598 2003-01-30    <johan AT balder>
10599
10600         * src/SDCCBBlock.c: automatic bug detection
10601         * src/SDCCicode.c: automatic bug detection
10602
10603 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10604
10605         * src/SDCCglobl.h:   now --xram-size 0 works
10606         * src/SDCCmain.c:    now --xram-size 0 works
10607
10608 2003-01-29    <johan AT balder>
10609
10610         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
10611
10612 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10613
10614         * as/mcs51/aslink.h: Added options --xram-size and --code-size
10615         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
10616         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
10617         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
10618         * src/SDCCglobl.h:   Added options --xram-size and --code-size
10619         * src/SDCCmain.c:    Added options --xram-size and --code-size
10620
10621 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
10622
10623         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
10624         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
10625
10626 2003-01-27    <johan AT balder>
10627
10628         * src/SDCC.y: fixed bug #613764
10629
10630 2003-01-26    <johan AT balder>
10631
10632         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
10633         * src/SDCCsymt.h: fixed bug #673374
10634         * src/SDCCglue.c: fixed bug #661910
10635         * src/SDCCast.c: fixed bug #458099 and 673374
10636
10637 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
10638
10639         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
10640         * as/mcs51/strcmpi.h: added
10641         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
10642         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
10643         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
10644         * as/mcs51/assym.c: strcmpi -> as_strcmpi
10645         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
10646         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
10647         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
10648         * as/mcs51/Makefile.aslink: new module strcmpi
10649         * as/mcs51/Makefile.asx8051: new module strcmpi
10650         * as/mcs51/Makefil.bcc: new module strcmpi
10651         * as/mcs51/Makefile.in: new module strcmpi
10652         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
10653
10654 2003-01-26    <johan AT balder>
10655
10656         * src/SDCCglue.c: reverted back to 1.124
10657         * src/SDCCast.c: reverted back to 1.156
10658         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
10659
10660 2003-01-25    <johan AT balder>
10661
10662         * src/SDCCglue.c: A better fix for bug #661910
10663         * src/SDCCast.c: A better fix for bug #661910
10664         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
10665
10666 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10667
10668         * src/Makefile.in: remove spawn.o
10669         * src/SDCCmain.c: remove spawn.h
10670         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
10671         * src/spawn.c: removed
10672         * src/spawn.h: removed
10673         * support/regression/ports/ds390/spec.mk: link with -r
10674
10675 2003-01-24    <johan AT CP255758-A>
10676
10677         * src/ds390/gen.c (aopOp): fixed bug #667458
10678         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
10679         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
10680         (createIvalCharPtr): an ival doesn't always have a storage class anymore
10681
10682 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
10683
10684         * src/mcs51/peeph.def: better assembler identation by Frieder
10685         * src/mcs51/gen.c: better assembler identation by Frieder
10686
10687 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
10688
10689         * as/z80/string.h: removed for gcc 3.2
10690         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
10691         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
10692
10693 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10694
10695         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
10696         * src/SDCCpeeph.c (replaceRule): fix bug #663503
10697         * support/regression/Makefile: separate temp files for ports
10698         * support/regression/generate-cases.py: separate temp files for ports
10699         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10700         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
10701
10702 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
10703
10704         * moved tinitalk to device/examples/ds390
10705
10706 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
10707
10708         * as/mcs51/lkmem.c: rflag is for DS390
10709         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
10710         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
10711                          (linkEdit): move mem- and map-files the same way as ihx-files
10712         * src/z80/main.c (_setDefaultOptions): removed --generic
10713         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
10714         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
10715         * src/pic/glue.c (picglue): --c1mode works again
10716         * src/pic16/glue.c (pic16glue): --c1mode works again
10717         * src/asm.c (printCLine): fix #660034
10718
10719 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
10720
10721         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
10722         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
10723         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
10724         * as/mcs51/lkmem (summary): better fix for sp problem
10725         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
10726         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
10727         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
10728                                               remove --stack-after-data
10729
10730 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
10731
10732         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
10733         * src/SDCCutil.c (join): ugly bug: missing '\0'
10734         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
10735
10736 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10737
10738         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
10739         * src/port.h: typo
10740         * src/pic/main.c (_asmCmd): gpasm supports -o
10741         * src/z80/main.c: more general macros
10742         * device/lib/Makefile.in: remove intermediate files
10743
10744 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
10745
10746         * .version: Bumped version number to 2.3.3
10747         * src/SDCCBBlock.c: new option -o
10748         * src/SDCCglobl.h: new option -o
10749         * src/SDCCglue.c: new option -o
10750         * src/SDCCmain.c: new option -o
10751         * src/asm.c: new option -o
10752         * src/ds390/main.c: new option -o
10753         * src/pic/glue.c: new option -o
10754         * src/pic/pcode.c: new option -o
10755         * src/pic/ralloc.c: new option -o
10756         * src/pic16/glue.c: new option -o
10757         * src/pic16/pcode.c: new option -o
10758         * src/pic16/ralloc.c: new option -o
10759         * src/z80/main.c: new option -o
10760         * device/lib/Makefile.in: use -o
10761         * support/regression/ports/ds390/spec.mk: use -o
10762         * support/regression/ports/gbz80/spec.mk: use -o
10763         * support/regression/ports/mcs51/spec.mk: use -o
10764         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
10765         * support/regression/ports/z80/spec.mk: use -o
10766         * support/regression/ports/ucz80/spec.mk: use -o
10767         * support/regression/ports/xa51/spec.mk: use -o
10768         * support/regression/fwk/lib/timeout.c: fix usage string
10769
10770 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
10771         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
10772
10773 2003-01-07    <johan AT balder>
10774
10775         * src/SDCCast.c (decorateType): fixed bug #600035
10776
10777 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
10778         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
10779         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
10780         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
10781         * src/pic/pcode.c: outcommented unused variable to remove warnings
10782         * src/pic/ralloc.c: outcommented unused variable to remove warnings
10783
10784 2003-01-06    <karl AT turbobit.com>
10785         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
10786    regression tests.
10787
10788 2003-01-06    <johan AT balder>
10789
10790         * src/SDCCicode.c: fixed array add
10791
10792 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
10793         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
10794         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
10795
10796 2003-01-04    <johan AT balder>
10797
10798         * src/SDCCval.c (getNelements): fixed the initialized array of structures
10799
10800 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10801         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
10802
10803 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10804         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
10805         * support/regression/tests/bug-524697.c: fit mem usage into 8032
10806
10807 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
10808         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
10809
10810 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
10811         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
10812
10813 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
10814         * src/mcs51/main.c: removed {bindir}{sep} from aslink
10815
10816 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10817
10818     * in /sdcc/as/mcs51/ changed these files in order to create an
10819     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
10820     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
10821     following files to include the previous two files: aslink.dsp,
10822     Makefile.aslink, Makefile.bcc, and Makefile.in.
10823
10824     * Changed /sdcc/src/SDCCmain.c so it creates files with extension
10825     .adb instead of .cdb
10826
10827 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10828
10829         * /sdcc/as/mcs51/lklist.c: Now reports memory usage using the
10830         value from option --iram-size.
10831
10832 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10833
10834         * /sdcc/as/mcs51/lklist.c: added boundary check before using
10835         dram[] array.
10836
10837 2002-09-18    <wiml AT hhhh.org>
10838
10839         * SDCClrange.h: exposed setFromRange() and setToRange()
10840         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
10841           packRegsForAccUse() (bug 542397)
10842         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
10843           multiple times and emitting the fetch operations more than once
10844           added aopGetUsesAcc() function to allow binary operators to
10845           fetch their operands in the correct order; made genMinus() emit
10846           compact code for X = LITERAL - Y
10847
10848 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10849         * /sdcc/as/mcs51/lklist.c: Fixed incorrect number of parameters to
10850         sprintf() in line 1267.
10851
10852 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10853         * /sdcc/src/SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
10854         like ports.
10855
10856 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
10857         Changes to aslink (All the changes are marked with 'JCF'):
10858
10859         * /sdcc/as/mcs51/aslink.h: External definition of sflag and
10860         summary().
10861
10862         * /sdcc/as/mcs51/lkarea.c: Computes the size of area BSEG_BYTES from
10863         area BSEG.  Also moves, if possible, the DATA area down into the internal
10864         ram so more space is available.
10865
10866         * /sdcc/as/mcs51/lkdata.c: Definition of memory summary output flag
10867         sflag.
10868
10869         * /sdcc/as/mcs51/lklist.c: For the BSEG area report the size in bits,
10870         not bytes.  Function summary() which creates a memory usage summary
10871         file with extension .mem.  Reports of overlaping stack and small stack
10872         size.  If the space for the stack is less than 16 bytes aslink trows a
10873         warning.
10874
10875         * /sdcc/as/mcs51/lkmain.c: Creation of some of the default areas for
10876         the 8051.  Option 'y' for memory summary output file.
10877
10878         Changes to sdcc (All the changes are marked with 'JCF'):
10879
10880         * /sdcc/src/SDCCglobl.h: External definition of RegBankUsed[4].
10881
10882         * /sdcc/src/SDCCglue.c:  If a register bank is used, creates an
10883         overlaying area for it (uses RegBankUsed[4]).
10884
10885         * /sdcc/src/SDCCmain.c: Definition RegBankUsed[4]; marks register
10886         bank zero as used by default.  By default aslink locates the stack
10887         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
10888         the creation of the .mem file.  Delegates the allocation of data area
10889         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
10890         the begining of the stack area to aslink.
10891
10892         * /sdcc/src/SDCCmem.c:  If a register bank is used, marks it so
10893         glue() in SDCCglue.c creates an area for it.
10894
10895 2002-09-03  Borut Razem <borut.razem AT siol.net>
10896         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
10897         sdcc/src/pic/glue.c:
10898         introduced atexit() handler for teporay files removal in case of
10899         errors, assertions, ...
10900
10901 2002-08-29  Borut Razem <borut.razem AT siol.net>
10902         * sdcc/support/cpp2/auto-host_vc_in.h:
10903         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
10904         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
10905         Maybe there is a similar problem with BORLANDC? It should be checked!
10906
10907         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
10908         corrected improper use of assert: the assignment to clr variable was done inside the assert.
10909         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
10910         was not executed, and the compiler (cl) launched a warning:
10911         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
10912
10913 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
10914         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
10915
10916 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
10917         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
10918
10919         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10920           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
10921           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
10922           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10923           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
10924           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
10925           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
10926         - added Release configuration in VS projects
10927         - review of compiler an linker options
10928         - VC .exe files are generated in bin_vc directory, not to interfere
10929           with binaries generated from other projects (cygwin, mingw, bcc ...)
10930
10931         * sdcc/src/yacc.dsp: added
10932
10933         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
10934         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
10935         and insert the version number definitions from .version
10936
10937         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
10938
10939         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
10940         added - genarate auto-host.h using auto-host_vc_in.h as template
10941
10942         * sdcc/sdcc_vc.h,
10943         removed from CVS, generated automatically
10944
10945 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
10946         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
10947
10948 2002-08-11  Borut Razem <borut.razem AT siol.net>
10949         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
10950
10951 2002-08-10  Borut Razem <borut.razem AT siol.net>
10952         * src/SDCCmain.c (main):
10953         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
10954         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
10955         The consequence was that some temporary files were not removed.
10956
10957         * src/SDCCglue.c:
10958         unification of code in functions tempfilename() and tempfile():
10959         function tempnam() is defined in Visual Studio 6.0 and .NET
10960
10961         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
10962
10963         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
10964           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
10965         - removed compiler command line option /WX: Treats all warnings as errors
10966         - update a list of source files, included into the project
10967
10968         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
10969           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
10970         changed project type to Generic Project so that can be correcly converted to VS.NET project
10971
10972         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
10973
10974         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
10975
10976         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
10977
10978         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
10979         added return 0 statements after assert() to make compiler happy
10980
10981         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
10982         added newline in the def file to keep MSC compiler satisfied
10983
10984         * sdcc/src/z80/gen.c:
10985         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
10986           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
10987         - solved MSC error in function aopDump()
10988
10989         * sdcc_vc.h: define PREFIX as "\\sdcc"
10990
10991 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
10992         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
10993
10994 2002-06-22  Scott Dattalo <scott AT dattalo.com>
10995         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
10996         - Rewrote the register banking algorithm.
10997         - Added pCode live-range analysis to registers (for now, only non-used and
10998         singly-used registers optimized away)
10999
11000         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
11001
11002         * 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.
11003
11004 2002-05-10  Scott Dattalo <scott AT dattalo.com>
11005         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
11006
11007 2002-04-22  Michael Hope  <michaelh AT vroom>
11008
11009         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
11010
11011         * configure.in (DD_COPT): Added include support required for gbdk.
11012
11013         * .version: Bumped version number just to increase it.
11014
11015         * src/SDCCmain.c: Added -nostdinc to the default options.
11016
11017 2002-04-15  Michael Hope  <michaelh AT vroom>
11018
11019         * device/lib/z80/printf.c (sprintf): Added.
11020
11021         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
11022
11023         * src/z80/peeph.def: Added transpose redundent load rule.
11024
11025         * src/z80/main.c: Added force callee saves for jaune.
11026
11027         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
11028
11029         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
11030
11031 2002-03-28  Johan Knol  <johan AT balder>
11032
11033         * src/SDCCval.c: fixed bug #532436
11034
11035 2002-03-14  Scott Dattalo <scott AT dattalo.com>
11036         * /src/port.h:
11037         Added "char *Processor" field to the port structure.
11038
11039         * /src/SDCCmain.c:
11040         Added -p option. Allows port dependent processor to be specified.
11041
11042         * all ports:
11043         Initialized the new field char *Processor field to NULL in all ports
11044
11045         * /src/pic/*:
11046         Compiler generated registers for interrupt context saving
11047         were not getting allocated.
11048
11049 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
11050
11051         * /src/SDCCast.c:
11052         Fixed left shift. Will promote the left side of a left shift
11053         if a) left shifting more than size of operand or b) when assigned
11054         to something size > size of left side
11055
11056 2002-03-14  Scott Dattalo <scott AT dattalo.com>
11057         * src/pic/*
11058         tons of changes. Register allocation has been
11059         rewritten. Added customization for the various PICs. Flow
11060         analysis is restructured. ...
11061
11062         * src/pic/device.h:
11063         Added
11064
11065         * src/pic/device.c:
11066         Added. device.c is a PIC port hack to accomodate variations
11067         in PIC devices.
11068
11069 2002-03-13  Michael Hope  <michaelh AT vroom>
11070
11071         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
11072
11073 2002-03-04  johanknol  <johanknol AT manik>
11074
11075         * /src/SDCCval.c: fixed
11076
11077         const unsigned char arr[][2] = { { 0, 1 } };
11078         t18.c:1: error: Initializer element is not constant
11079
11080 2002-03-04  bela  <bela AT manik>
11081
11082         * /device/include/mcs51reg.h:
11083         ds89c420 register definition update
11084
11085 2002-03-03    <johan AT FRIJA>
11086
11087         * support/Util/SDCCerr.c: did something, but don't no why anymore
11088
11089         * support/regression/tests/bug-524691.c: made it a little less shy
11090
11091         * src/SDCCast.c (decorateType): fixed bug #524697
11092
11093         * src/SDCCast.c: made some lineno improvements
11094
11095         * src/SDCCval.c (getNelements): changed warning to error
11096
11097         * src/SDCCglue.c (printIvalArray): changed warning to error
11098
11099         * src/SDCCicode.c: fixed a warning for mingw
11100
11101         * src/SDCCast.c (decorateType): fixed the << promotion for ops
11102
11103         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
11104
11105 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
11106
11107         * src/ds390/peeph.def:
11108         Added some more peephole rules
11109
11110         * src/ds390/gen.c: Various fixes & enhancements
11111
11112         * src/SDCClrange.c, src/SDCClrange.h:
11113         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
11114
11115         * src/ds390/ralloc.c:
11116         various fixes & enhancements (ds390) specific
11117
11118         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
11119         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
11120         from rallocs.
11121
11122         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
11123
11124 2002-03-02    <johan AT FRIJA>
11125
11126         * src/SDCCast.c (decorateType): fixed bug #524708
11127
11128         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
11129
11130         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
11131
11132 2002-03-01  Michael Hope  <michaelh AT vroom>
11133
11134         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
11135
11136         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
11137
11138 2002-03-01    <johan AT FRIJA>
11139
11140         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
11141
11142         * src/SDCCast.c (decorateType): fixed bug #524209
11143
11144         * src/SDCCval.c (valNot): fixed bug #524195
11145
11146 2002-02-26    <johan AT balder>
11147
11148         * src/xa51/gen.c: fixed a warning
11149
11150         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
11151
11152         * src/SDCCast.c (decorateType): fixed bug #522534
11153
11154 2002-02-23    <johan AT balder>
11155
11156         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
11157
11158 2002-02-22    <johan AT balder>
11159
11160         * src/SDCCast.c: fixed bug #514865
11161
11162         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
11163
11164 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
11165
11166         * sdcc/src/SDCCloop.c:
11167         Previous fix was not good. basic blocks that have "break" or "return" are
11168         not really partof a loop , but live ranges used in these blocks should
11169         be live thru the entire loop, so set partOfLoop but don't add them to
11170         loop region
11171
11172 2002-02-21    <johan AT FRIJA>
11173
11174         * src/SDCCcse.c: fixed bug #514308
11175
11176 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
11177
11178         * src/SDCCloop.c:
11179         Fixed BUG #519583. If a conditional block ended in a return/break
11180         statement inside a loop, it was not being considered part of the loop.
11181
11182         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
11183
11184 2002-02-10  Karl Bongers <karl AT turbobit.com>
11185
11186         * debugger/*:
11187         Fixed up SDCDB debugger somewhat.  Updated debugger/README
11188         with lots of comments and notes.
11189
11190         * device/examples/test2.c:
11191         Fix bug, "red" variable not being initialized(compiler complained).
11192
11193         * device/examples/Makefile, examples/test3.c:
11194         Add Makefile in device/examples folder, compiles test3.c
11195         for use as a multiple module SDCDB test case.
11196
11197         * sim/ucsim/cmd.src/cmdset.cc:
11198         Took out debug printfs in ucsim "next" command.
11199
11200         * sim/ucsim/xa.src:
11201         Karl and Johan start ucsim XA support.  Most dissassembly working,
11202         about 75% emulation done(plenty of work remaining).
11203
11204         * sim/ucsim/z80.src:
11205         Add Z80 support to ucsim, add test-ucz80 regression test,
11206         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
11207         Notice z80 compiler fails on examples/test3.c/crc code.
11208
11209 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
11210
11211         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
11212         Added support for --parms-in-bank1
11213
11214         * src/ds390/peeph.def:
11215         added a few more peephole optimzations
11216
11217         * src/ds390/main.c:
11218         1) added __builtin_inp & __builtin_outp used to read in data of given length
11219            from a memory mapped port
11220         2) added __builtin_memcmp
11221         3) added __builtin_swapw swap bytes of a short
11222
11223         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
11224         1) handle multiple send & receives from register bank1
11225         2) ralloc can now allocate DPTR1 to some liveRanges
11226
11227         * src/SDCCsymt.c, src/SDCCsymt.h:
11228         changes to handle multiple sends & receives
11229
11230         * src/SDCCptropt.h:
11231         added some pointer arithmetic optimization
11232
11233         * src/SDCCptropt.c:
11234         added some pointer arithmetic optimizations but not stable yet so not
11235         called from anywhere (will get this working shortly)
11236
11237         * src/SDCCopt.c: fixed for multiple sends & receives
11238
11239         * src/SDCCmain.c:
11240         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
11241         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
11242            set preprocessor defines (depending on options)
11243
11244         * src/SDCCicode.c, src/SDCCicode.h:
11245         changes made to handle multiple sends & receives
11246
11247         * src/SDCCglobl.h:
11248         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
11249
11250         * src/SDCCcse.c, src/SDCCcse.h:
11251         added function findbackward def (to be used in upcoming optimization)
11252
11253         * src/SDCCcflow.c, src/SDCCcflow.h:
11254         added function returnAtEnd - to determine if a basic block terminates with
11255         a RETURN iCode
11256
11257         * src/SDCCast.c, src/SDCCast.h:
11258         added option parms-in-bank1
11259
11260         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
11261         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
11262         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
11263         adjusted for --parms-in-bank1 option
11264
11265         * device/include/string.h:
11266         donot redefine "reentrant" keyword
11267
11268         * device/include/ds80c390.h: Added some more SFRs
11269
11270 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
11271
11272         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
11273
11274 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
11275
11276         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
11277
11278 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
11279
11280         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
11281
11282 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
11283
11284         * Added --xram-movc option
11285
11286 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
11287
11288         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
11289
11290 2002-01-11  Johan Knol
11291
11292         * Added math lib of Jesus Calvino-Fraga
11293
11294 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
11295
11296         * src/SDCCmain.c (processFile): fix processing of ../../src.c
11297         * support/regression/Makefile: new target test-mcs51-stack-auto
11298         * support/regression/ports/mcs51-stack-auto/spec.mk: added
11299
11300 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11301
11302         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
11303
11304 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
11305
11306         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
11307
11308 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
11309
11310         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
11311
11312         * src/SDCCglue.h: add definition for printIvalChar()
11313
11314 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11315
11316         * src/SDCCast.c: fix #498138 by Johan
11317
11318         * src/SDCCglue.c: fix #498138 by Johan
11319
11320 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
11321
11322         * support/regression/Makefile: fix clean
11323
11324         * support/regression/ports/ds390/support.c: fix transmission of last character
11325
11326 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
11327
11328         * /sdcc/src/ds390/gen.c:
11329         a) improved computing address of stack variable
11330         b) took out some #if 0 code
11331         c) improved parmBytes adjustment
11332         d) improved genPlusIncr & genMinusIncr
11333         e) genCmp could generate bad code (when left assigned to DPTR)
11334         f) Fixed bug in hasInc
11335
11336         * /sdcc/src/ds390/ralloc.c:
11337         a) packRegsForSupport could mess up live information (Fixed)
11338         b) packRegsDPTRuse could be incorrect for left & right shift
11339
11340         * /sdcc/src/mcs51/ralloc.c:
11341         packRegsForSupport could mess up the live information (Fixed)
11342
11343         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
11344
11345         * /sdcc/src/SDCCast.c:
11346         can reverse a loop even if function call is present as long
11347         as the loop control variable is local & is not passed as parameter
11348
11349 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11350
11351         * /sdcc/ChangeLog: *** empty log message ***
11352
11353         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
11354         More builtin function additions for TININative
11355
11356         * /sdcc/src/ds390/ralloc.c:
11357         Had broken the regression testsuite
11358
11359         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
11360
11361         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
11362         Added funcattr hasStackParms will be set for reentrant functions when there
11363         are paramteres on the stack, this helps in minimizing frame pointer generation
11364         typeFromStr can handle function pointers now
11365
11366         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
11367         *** empty log message ***
11368
11369 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11370
11371         * /src/ds390/gen.c, /src/ds390/main.c:
11372         More builtin function additions for TININative
11373
11374         * /src/ds390/ralloc.c:
11375         Had broken the regression testsuite
11376
11377         * /src/SDCCast.c: Fixed a bug in dumptree
11378
11379         * /src/SDCCsymt.c, /src/SDCCsymt.h:
11380         Added funcattr hasStackParms will be set for reentrant functions when there
11381         are paramteres on the stack, this helps in minimizing frame pointer generation
11382         typeFromStr can handle function pointers now
11383
11384         * /doc/builtins.txt, /doc/TININative.txt:
11385         *** empty log message ***
11386
11387
11388 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
11389
11390         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
11391         ALPHA version for -mTININative
11392
11393         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
11394         updated to reflect changes in the port structure
11395
11396         * /src/port.h:
11397         added function do_assemble (similar to do_link) if non-null this function
11398         will be called to do assembly (-mTININative) requires a multi command
11399         assembly
11400         added function genAssemblerEnd will be called to generate assembler Epilogue
11401
11402         * /src/SDCCsymt.c:
11403         added _JavaNative to debug info printing
11404
11405         * /src/SDCCmain.c: added option --tini-libid
11406         added port->do_assemble function (-mTININative) has a multi command assemble
11407
11408         * /src/SDCCglue.c: Disabled "constExpr" check
11409         added port->genAssemblerEnd function
11410
11411         * /src/SDCCglobl.h: Added option --tini-libid value
11412
11413         * /src/SDCCast.h:
11414         tookout optimizeCompare from the header (has no external references)
11415
11416         * /src/SDCCast.c: made one more function "static"
11417
11418 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
11419
11420         * src/z80/mappings.i: Added z80asm support.
11421
11422         * src/z80/main.c: Added z80asm support on --asm=z80asm
11423
11424         * src/z80/gen.c: Fixed asm portability issues.
11425
11426         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
11427
11428         * src/SDCCglue.c (printExterns): Added global/extern split.
11429
11430 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
11431
11432         * support/regression/Makefile: added test for mcs51 model large
11433
11434         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
11435
11436         * support/regression/ports/gbz80/spec.mk: added -mgbz80
11437
11438 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
11439
11440         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
11441
11442 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
11443
11444         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
11445
11446         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
11447
11448 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
11449
11450         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
11451
11452         * support/regression/tests/simplefloat.c: Port to mcs51.
11453
11454 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
11455         * support/regression/tests/bug-485362.c: Added.
11456
11457         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
11458
11459         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
11460
11461         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
11462
11463         * src/z80/gen.c (aopDump): Added a dump function.
11464
11465 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
11466         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
11467
11468         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
11469
11470         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
11471
11472         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
11473
11474         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
11475
11476         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
11477
11478         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
11479
11480         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
11481
11482         * support/regression/ports/ds390/support.c: Use tinibios.
11483
11484         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
11485
11486 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
11487
11488         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
11489         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
11490
11491         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
11492
11493         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
11494
11495 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
11496
11497         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
11498
11499         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
11500         (packRegsForIYUse): Created and optimised.
11501
11502 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11503
11504         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
11505 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
11506
11507         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
11508
11509         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
11510
11511         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
11512
11513 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11514
11515         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
11516
11517         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
11518
11519 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11520
11521         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
11522
11523         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
11524
11525         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
11526
11527 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
11528
11529         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
11530         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
11531         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
11532
11533         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
11534
11535         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
11536         (genNotFloat): Added.
11537         (genUminusFloat): Added.
11538
11539         * device/lib/z80/Makefile: Added floating pt stubs.
11540
11541         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
11542
11543         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
11544
11545         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
11546
11547 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
11548
11549         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
11550
11551         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
11552
11553         * sdcc/support/regression/Makefile: Add port ds390.
11554
11555         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
11556
11557         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
11558
11559         * sdcc/support/regression/ports/ds390/spec.mk: Added.
11560
11561         * sdcc/support/regression/ports/ds390/support.c: Added.
11562
11563         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
11564
11565         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
11566
11567         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
11568
11569 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11570
11571         * device/include/malloc.h: Added z80 and gbz80 support.
11572
11573         * device/lib/gbz80/heap.s: Added.
11574
11575         * device/lib/z80/heap.s: Added.
11576
11577         * device/lib/malloc.c: Added z80 and gbz80 support.
11578
11579         * support/regression/tests/malloc.c (testMalloc): Added.
11580
11581         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
11582
11583         * support/regression/tests/bug-478094.c: Added.
11584
11585         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
11586
11587 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
11588
11589         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
11590
11591         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
11592
11593         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
11594
11595         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
11596
11597         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
11598
11599 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
11600
11601         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
11602
11603 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
11604
11605         * support/regression/tests/bug-477927.c: Added.
11606
11607         * src/z80/peeph.def: Added minor rules.
11608
11609         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
11610
11611         * src/z80/peeph.def: Added jump optimisation modification.
11612
11613 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
11614
11615         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
11616
11617 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
11618
11619         * support/regression/tests/funptrs.c: Added.
11620
11621 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
11622
11623         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
11624
11625 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
11626
11627         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
11628
11629         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
11630
11631         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
11632         (movLeft2ResultLong): Created.
11633
11634         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
11635         (joinPushes): Added.  Joins two char pushes into a word push.
11636
11637 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
11638
11639         * support/cpp2/Makefile.in (install): Added creation of dest dir.
11640
11641         * support/makebin/Makefile (install): Added creation of dest dir.
11642
11643 2001-10-24 Karl Bongers <karl AT turbobit.com>
11644
11645         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
11646
11647 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
11648
11649         * src/z80/ralloc.c: Turned off faulty pack for one use.
11650
11651         * src/z80/peeph-gbz80.def: Removed redundent restart options.
11652
11653         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
11654
11655 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
11656
11657         * support/regression/Makefile: Improved clean
11658
11659         * support/regression/ports/gbz80/spec.mk: Added clean
11660
11661         * support/regression/ports/host/spec.mk: Added clean
11662
11663         * support/regression/ports/z80/spec.mk: Added clean
11664
11665         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
11666
11667         * support/regression/ports/mcs51/timeout.c: little improvements
11668
11669 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
11670
11671         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
11672
11673         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
11674
11675         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
11676
11677 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
11678
11679         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
11680
11681         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
11682
11683 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
11684         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
11685
11686         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
11687
11688         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
11689
11690         * src/mcs51/main.c (_linkCmd): Added bin path to command.
11691
11692         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
11693
11694         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
11695
11696         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
11697
11698         * support/regression/tests/longor.c: Added.
11699
11700 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
11701
11702         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
11703
11704         * as/mcs51/aslink.h: define PATH_MAX
11705
11706         * as/mcs51/asm.h: define PATH_MAX
11707
11708         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
11709
11710         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
11711
11712         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
11713
11714         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
11715
11716         * src/SDCCglobl.h: define PATH_MAX
11717
11718         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
11719
11720         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
11721
11722 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
11723
11724         * src/z80/gen.c (gencjneshort): Fixed
11725
11726         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
11727
11728 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
11729
11730         * support/regression/tests/bug-469671.c: Added.
11731
11732         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
11733
11734 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
11735
11736         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
11737
11738         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
11739
11740 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
11741
11742         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
11743
11744         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
11745
11746         * src/device/lib/_mullong.c : removed hint: nooverlay bug
11747
11748         * src/device/lib/_divuint.c : removed hint: nooverlay bug
11749
11750         * src/device/lib/_divulong.c: removed hint: nooverlay bug
11751
11752         * src/device/lib/_moduint.c : removed hint: nooverlay bug
11753
11754         * src/device/lib/_modulong.c: removed hint: nooverlay bug
11755
11756 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
11757
11758         * 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.
11759
11760         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
11761
11762         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
11763
11764 2001-10-07    <johan AT FRIJA>
11765
11766         * device/lib/gets.c (gets): fixed the return value.
11767
11768 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
11769         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
11770
11771         * 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.
11772
11773         * 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.
11774
11775         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
11776
11777         * src/pic/gen.c: Removed Safe_strdup.
11778
11779         * configure.in: Added option to enable libgc support.
11780
11781         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
11782         (bitVectUnion): Optimised.
11783         (bitVectIntersect): Optimised.
11784         (bitVectBitsInCommon): Optimised.
11785         (bitVectCplAnd): Optimised.
11786
11787         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
11788
11789 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11790
11791         * src/SDCCmain.c: distinguish between assembler debug and plain options
11792
11793         * src/avr/main.c:   remove standard assembler options
11794
11795         * src/ds390/main.c: remove standard assembler options
11796
11797         * src/mcs51/main.c: remove standard assembler options
11798
11799         * src/port.h: removed "PENDING" comment
11800
11801 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11802
11803         * src/device/lib/_mulint.c  : new, with assember functions
11804
11805         * src/device/lib/_mullong.c : new, with assember functions
11806
11807         * src/device/lib/_divuint.c : with assember functions
11808
11809         * src/device/lib/_divsint.c : with assember functions
11810
11811         * src/device/lib/_divulong.c: with assember functions
11812
11813         * src/device/lib/_divslong.c: with assember functions
11814
11815         * src/device/lib/_moduint.c : with assember functions
11816
11817         * src/device/lib/_modsint.c : with assember functions
11818
11819         * src/device/lib/_modulong.c: with assember functions
11820
11821         * src/device/lib/_modslong.c: with assember functions
11822
11823         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
11824
11825         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
11826
11827         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
11828                                       replaced _mululong.c and _mulslong.c by _mullong.c
11829
11830 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
11831
11832         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
11833
11834 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11835
11836         * src/SDCCglue.c: test, if win32api is available for MINGW
11837
11838 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
11839
11840         * src/SDCCsymt.c: no more _modifier in printTypeChain()
11841         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
11842         * support/regression/ports/gbz80/spec.mk: removed GENERIC
11843         * support/regression/ports/host/spec.mk: removed GENERIC
11844         * support/regression/ports/mcs51/spec.mk: removed GENERIC
11845         * support/regression/ports/z80/spec.mk: removed GENERIC
11846
11847 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
11848
11849         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
11850
11851         * support/regression/tests/bug-467035.c: Created.
11852
11853 2001-10-01    <johan AT FRIJA>
11854
11855         * src/SDCC.y: fixed bug #466586 part 1
11856
11857 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
11858
11859         * SDCCicode.c: z80 has no generic pointers
11860         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
11861
11862 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
11863
11864         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
11865
11866 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
11867
11868         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
11869
11870         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
11871
11872 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
11873
11874         * configure.in: Fixed up so that ucsim is only configured once.
11875
11876         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
11877
11878         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
11879         (getPathDifference): As above.
11880
11881         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
11882
11883         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
11884
11885 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
11886         * .version: Updated to 2.3.1
11887
11888         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
11889         Added copyright header.
11890
11891         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
11892         (assemble): Added support for macro based assembler commands.
11893         (linkEdit): Added support for macro based linker commands.
11894         (preProcess): Changed the pre-processor to use macros.
11895         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
11896         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
11897
11898         * device/lib/z80/crt0.s: Added module name for debugging.
11899
11900 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
11901
11902         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11903
11904         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
11905
11906         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
11907
11908         * src/Makefile.in: Added SDCCmacro and SDCCutil
11909
11910 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
11911
11912         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
11913
11914 2001-09-16    <johan AT FRIJA>
11915
11916         * 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.
11917
11918 2001-09-15    <johan AT FRIJA>
11919
11920         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
11921         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
11922
11923 2001-09-11    <johan AT FRIJA>
11924
11925         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
11926
11927 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
11928
11929         * support/regression/tests/bug-460444.c: Added test case.
11930
11931         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
11932         (genCast): Added justification for all of the asserts.
11933
11934 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
11935
11936         * support/regression/support.c: _xdata replaced by xdata
11937
11938         * support/regression/spec.mk: removed _generic
11939
11940 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
11941
11942         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
11943
11944         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
11945         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
11946
11947         * src/z80/peeph.def: Added a rule to optimise shift then compare.
11948
11949         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
11950
11951         * support/regression/tests/bug-460010.c: Added test case.
11952
11953         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
11954
11955 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
11956
11957         * support/regression/Makefile: inter-port-clean adjusted for mcs51
11958
11959         * support/regression/testfwk.c: removed workaround for bug #436344
11960
11961         * support/regression/tests/bp.c: use less memory with mcs51
11962
11963         * support/regression/tests/bug-441448.c: use less memory
11964
11965         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
11966
11967         * support/regression/collate-results.py: typo
11968
11969 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
11970
11971         * support/regression/tests/fetchoverlap.c: Added new test case.
11972
11973         * support/regression/tests/bp.c: Added new test case.
11974
11975         * support/regression/tests/bug-448984.c: Added new test case.
11976
11977         * support/regression/tests/pow2shifts.c: Added new test case.
11978
11979         * src/z80/gen.c: Turned off the noise it normally generates for the release.
11980         (genlshTwo): Fixed right shift for count > 8.
11981
11982         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
11983
11984 2001-09-08    <johan AT FRIJA>
11985
11986         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
11987
11988 2001-09-07    <johan AT FRIJA>
11989
11990         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
11991
11992         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
11993
11994 2001-09-06    <johan AT FRIJA>
11995
11996         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
11997         * bernhard noted me at this: "() equals to (void)" (1.38)
11998
11999 2001-09-05    <johan AT FRIJA>
12000
12001         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
12002
12003 2001-09-04    <johan AT FRIJA>
12004
12005         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
12006
12007
12008 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
12009
12010         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
12011
12012 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
12013
12014         * link/z80/aslink.h: Fixed path for PATH_MAX
12015
12016 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
12017
12018         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
12019
12020         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
12021
12022         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
12023
12024         * 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.
12025
12026 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
12027
12028         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
12029         (genCmp): Fixed up genCmp for the GB with longs.
12030
12031         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
12032
12033         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
12034
12035         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
12036
12037         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
12038
12039 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
12040
12041         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
12042
12043 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
12044
12045         * 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.
12046
12047         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
12048
12049 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
12050
12051         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
12052
12053         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
12054
12055 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
12056
12057   * sim/ucsim/configure:    little improvement of Cygwin-detection
12058   * sim/ucsim/configure.in: little improvement of Cygwin-detection
12059   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
12060   * support/regression/tests/bug-221100.c: small changes for mcs51
12061   * support/regression/tests/bug-221168.c: small changes for mcs51
12062   * support/regression/tests/bug-227710.c: small changes for mcs51
12063   * support/regression/tests/staticinit.c: small changes for mcs51
12064   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
12065   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
12066   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
12067
12068 $Revision$