2885d07d39937a33ae92314b4cec12ce24a7fc16
[fw/sdcc] / ChangeLog
1 2005-09-21 Raphael Neider <rneider AT web.de>
2
3         * device/include/pic16/pic18f1220.h,
4           device/lib/pic16/libdev/pic18f1220.c: added ECCPAS sfr and bitfield
5         * device/lib/pic16/Makefile.rules: added missing opening paren
6         * src/pic16/gen.c (pic16_genNot,pic16_genCpl): removed as these
7           are provided in genutils.c,
8           (genUminusFloat,genUminus,genCmpEq): added asserts on different
9           operand/result sizes,
10           (genCmp): assert on NULL pointers first, then check deref'ed values
11         * src/pic16/genutils.c (pic16_genCpl): fixed for different operand/
12           result size
13
14 2005-09-18 Raphael Neider <rneider AT web.de>
15
16         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
17           as these are now unused,
18           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
19         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
20           local, avoids uninitialized pointer dereference on r->name
21         * src/pic16/ralloc.c (newReg): fixed indentation
22
23 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
24
25         * src/SDCCval.c (constVal): fixed bug 730366
26         * support/Util/SDCCerr.c,
27         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
28
29 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
30
31         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
32
33 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
34
35         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
36
37 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
38
39         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
40           (hex2dec): made hex_digit unsigned char, removed ascii dependance
41         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
42           (hex2dec): made hex_digit unsigned char, removed ascii dependance
43         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
44         * packihx/packihx.c (hexDigit): made c unsigned char
45         * as/mcs51/lklibr.c (fndsym),
46         * link/z80/lkgb.c (gb),
47         * link/z80/lklibr.c (fndsym),
48         * link/z80/lkrloc.c (relr),
49         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
50         * src/SDCC.lex (checkCurrFile, process_pragma),
51         * src/SDCCglue.c (spacesToUnderscores),
52         * src/SDCCmain.c (setParseWithComma, processFile),
53         * src/asm.c (tvsprintf, printCLine),
54         * src/avr/gen.c (emitcode, aopPut),
55         * src/ds390/gen.c (emitcode),
56         * src/hc08/gen.c (emitcode, emitinline),
57         * src/mcs51/gen.c (emitcode, genInline),
58         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
59           tokenizeLineNode),
60         * src/pic/ralloc.c (debugLog),
61         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
62           tokenizeLineNode),
63         * src/pic16/ralloc.c (debugLog),
64         * src/z80/main.c (_process_pragma):
65            made all ctype.h function calls safe
66         * src/SDCCopt.c: include math.h for fabs
67         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
68           and used them throughout the code to make ctype.h function calls safe
69         * src/ds390/main.c (asmLineNodeFromLineNode),
70         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
71         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
72            unsigned char*
73         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
74           (newpCodeAsmDir): made ctype.h function calls safe
75         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
76           pic16_emitcode):  made lbp unsigned char*
77         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
78           (pic16_newpCodeAsmDir): made ctype.h function calls safe
79         * src/xa51/gen.c (emitcode),
80         * src/z80/gen.c (_emit2): made lbp unsigned char*
81         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
82            char*
83
84 2005-09-05 Raphael Neider <rneider AT web.de>
85
86         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
87           access bank splitpoint
88
89 2005-09-05 Raphael Neider <rneider AT web.de>
90
91         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
92
93 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
94
95         * .version: changed to version 2.5.3
96         * doc/sdccman.lyx: changed version to 2.5.3,
97           documented --codeseg and --constseg and pragma codeseg and constseg,
98           documented bit parameters (reentrant) and bit returning
99         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
100            currFunc->recvSize, but is this ok for all ports?
101           (ast2iCode): result of ~ on unsigned char must be cast to int for
102            bool to work
103         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
104           function pointers in bit space
105         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
106           (processFuncArgs): call port.reg_parm() with reentrancy info
107         * src/port.h,
108         * src/avr/main.c,
109         * src/ds390/main.c,
110         * src/hc08/main.c,
111         * src/pic/main.c,
112         * src/pic16/main.c,
113         * src/xa51/main.c,
114         * src/z80/main.c: port.reg_parm prototype extended with
115           "bool reentrant" parameter
116         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
117           options.stackAuto for allocating bit register parameters
118         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
119           (genSend): set BitBankUsed if it is,
120           (selectRegBank): factored out of genCall for use in genPcall,
121           (genCall): removed redundant dtype assignmen, use selectRegBank,
122           (genPcall): handle returning in Carry properly, save in F0 if needed,
123           (genReceive): handle bit register parameters
124         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
125           (mcs51_assignRegisters): enable bit registers for all reentrant
126            functions and don't set BitBankUsed unconditionally
127         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
128         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
129         * support/regression/tests/funptrs.c: added tests for BOOL and for return
130
131 2005-08-27 Borut Razem <borut.razem AT siol.net>
132
133         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
134         ppc-osx (Darwin) does not support -u option. It seems that it is
135         supported only on Linux - GNU cp
136
137 2005-08-25 Borut Razem <borut.razem AT siol.net>
138
139         * sim/ucsim/gui.src/serio.src/Makefile.in,
140           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
141           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
142           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
143           install and strip, since the strip at /usr/ccs/bin should be used
144           on solaris
145
146 2005-08-24 Borut Razem <borut.razem AT siol.net>
147
148         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
149
150 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
151
152         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
153         ffffffffu
154
155 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
156
157         * as/mcs51/aslink.h: completed lkrloc.c prototypes
158         * as/mcs51/lkmain.c (link_main): fixed warning
159         * device/include/stdbool.h: ds390 has no advanced bit support yet
160         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
161         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
162         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
163           and updated their macros
164         * src/SDCCval.c (constVal): updated comment for renamed b_long
165
166 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
167
168         * as/mcs51/asdata.c: changed ctype['['] to BINOP
169         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
170           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
171           (oprio): set priority for '['
172         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
173            and adb_24_bit
174         * as/mcs51/asm.h: added defines R_BIT and S_BIT
175         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
176         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
177         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
178           added overlayable BIT_BANK area
179         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
180           (summary2): explain 'T' in legenda
181         * as/mcs51/lkrloc.c: replaced old K&R style,
182           (relr): added R_BIT processing,
183           (errmsg): added "Bit-addressable relocation error",
184           (adb_bit): added for converting from byte- to bit-addressable space,
185           (adb_24_bit): added for converting from byte- to bit-addressable space
186         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
187            used in reentrant functions now even as return value
188         * device/lib/_gptrput.c (_gptrput): removed obsolete code
189         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
190           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
191         * src/SDCCglobl.h: added indicator BitBankUsed
192         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
193            the bit registers b0-b7
194         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
195           (geniCodeCast): fixed bug 1263853,
196           (geniCodeLogicAndOr): put result in bool or char,
197           (geniCodeReceive): added parameter func for accessing the return type,
198           (geniCodeFunctionBody): pass func to geniCodeReceive
199         * src/SDCCmain.c: added indicator BitBankUsed
200         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
201         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
202           (checkSClass): don't put automatic bool/bit on stack,
203           (checkFunction): removed check on function cannot return bit
204         * src/SDCCsymt.h: added newBoolLink prototype
205         * src/mcs51/gen.c (rb1regs): added bit registers,
206           (movc): created for assigning to carry,
207           (pushReg, popReg): created for pushing registers,
208           (sameRegs): check both AOP_REG and AOP_CRY types,
209           (aopOp): handle bit registers,
210           (aopPut): optimization no self-assign,
211           (saveRegisters): push reg->base (bits) only once for bit registers,
212            and use pushReg,
213           (unsaveRegisters): pop reg->base only once and use popReg,
214           (assignResultValue): added parameter func and return in carry for bits,
215           (genIpush): optimization no reload in A if not changed,
216           (genSend): bit parameters in reentrant functions are passed in bit
217            registers by first assigning to bits in B, then save registers and
218            copy B to bits,
219           (genCall): handle returning in Carry properly, save it in F0 if needed,
220           (genPcall): updated assignResultValue call, this is not safe yet for bit
221            returning function !!!
222           (genFunction): don't generate equ's for bit registers and use pushReg,
223           (genEndFunction): take care of bit returning functions and use popReg,
224           (genRet): return bit in Carry,
225           (genIfx): optimize bit registers and other directly addressable bits,
226           (genReceive): updated assignResultValue call
227         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
228           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
229            registers when using stack-auto
230         * src/mcs51/ralloc.c (_G): added allBitregs,
231           (regs8051): added the bit registers,
232           (createStackSpil): use macro IS_BIT,
233           (getRegBit): added to allocate a bit register, else spill,
234           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
235           (updateRegUsage): factored out to ease stepping while debugging,
236           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
237            also allocate bit registers,
238           (fillGaps): handle bit registers,
239           (findAllBitregs): added to create bit vector with all bit registers,
240           (mcs51_allBitregs): returns this bit vector,
241           (mcs51_assignRegisters): when using stack-auto use bit registers for
242            passing parameters and creating local variables
243         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
244
245 2005-08-22 Borut Razem <borut.razem AT siol.net>
246
247         * device/lib/Makefile.in: replaced find option -or with -o
248           to make it run on solaris
249
250 2005-08-22 Raphael Neider <rneider AT web.de>
251
252         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
253           fixes #1265442 (crash on Solaris)
254
255 2005-08-20 Borut Razem <borut.razem AT siol.net>
256
257         * configure, configure.in: added tests for libsocket and libnsl libraries,
258           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
259           from support/regression/Makefile.in
260         * support/regression/Makefile.in: added
261         * device/lib/pic16/Makefile.common.in: force make to use bash shell
262         * sim/ucsim/libtool: regenerated on sparc-solaris
263         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
264           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
265           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
266           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
267           sparc-solaris, which doesn't use GNU ld linker
268         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
269         * as/Makefile: find on sparc-solaris does not support -maxdepth option
270
271 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
272
273         * src/mcs51/peeph.def: updated comments
274
275 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
276
277         * device/lib/_gptrget.c,
278         * device/lib/_gptrput.c: slightly shorter
279         * doc/sdccman.lyx: incremented version
280         * src/mcs51/peeph.def: moved peephole comments to the line of first
281           change to better keep line correlation, reanimated 186.e
282         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
283
284 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
285
286         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
287           David Saxton with quotes around file name.
288
289 2005-08-15 Borut Razem <borut.razem AT siol.net>
290
291         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
292           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
293           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
294           make tests run on x86_64 platform
295
296 2005-08-13 Raphael Neider <rneider AT web.de>
297
298         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
299           as it might be executed DURING a build (parallel make is wonderful)
300
301 2005-08-13 Raphael Neider <rneider AT web.de>
302
303         * device/lib/Makefile.in (port-specific-objects-pic16):
304           revert to cp $(PORT)/bin/*.* $(PORTDIR)
305         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
306           dependency
307         * device/lib/pic16/Makefile.rules: build subdirs before creating
308           the library, removed builddir rule, create $(builddir) early in
309           recurse rule, use empty recurse rule for leaf directories
310         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
311           mkdir errors (race condition), removed duplicate suffix "hex"
312           from clean rules
313         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
314         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
315           prevents mkdir -p from aborting on Alpha
316
317 2005-08-12 Raphael Neider <rneider AT web.de>
318
319         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
320           db-statements in order to allow for arrays of pointers in code
321           sections to be placed without interspersed 0-padding, fixes
322           bug #1256215
323         * (emitStatistics): fixed division by zero for pic18f1220
324         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
325           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
326         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
327         * (pic16_pCodeConstString): keep track of already emitted string
328           literals to prevent "duplicate definitions of symbol _str_NR"
329         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
330           debug message
331         * device/lib/Makefile.in: ignore failing PIC16 library builds
332         * device/lib/pic16/Makefile: do not build if gputils are missing
333         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
334
335 2005-08-10 Raphael Neider <rneider AT web.de>
336
337         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
338           my last commit)
339
340 2005-08-10 Raphael Neider <rneider AT web.de>
341
342         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
343           Rokas' patch to add the new fixed point type "__fixed16x16"
344         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
345           functions for __fixed16x16 arithmetics
346         * device/lib/pic16: reimplemented the build system to support
347           a separate build directory, better handling of libio (create
348           the library in a separate subdir for each architecture) and
349           easier configuration (centralized in Makefile.common)
350
351 2005-08-07 Raphael Neider <rneider AT web.de>
352
353         * src/pic16/gen.c (genrshTwo): fixed sign extension
354         * src/pic16/device.c: added pic18f2320, 4220 and 4320
355         * device/include/pic16/pic18f2220.h: changed some bit definitions,
356           added T0CONbits
357         * device/include/pic16/pic18f4220.h: NEW, header for
358           pic18f4220 and pic18f4320
359         * device/include/pic16/pic18fregs.h: added new devices,
360           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
361         * device/include/pic16/signal.h: resolved name clashes
362           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
363           to also allow testing for interrupt enable bits, added
364           comments on how to use the macros
365         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
366         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
367           register definitions for the devices
368         * device/lib/pic16/pics.all: added new devices
369         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
370           allocated memory
371         * device/lib/pic16/libc/stdlib/memfree: do not count
372           the block header as free memory
373         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
374           simplified and added missing end-of-blocklist-marker
375           (reported by Peter Onion, fixes #1252814)
376         * (_mergeHeapBlock): fixed loop condition
377         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
378           len==0, restructured code
379         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
380           up a bit, reduced bitfield accesses, prevent endless loops
381           in case of heap corruption
382         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
383           "unreferenced arguments/must return a value" warnings
384         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
385           replaced BAUDREG with SPBRG
386         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
387           device/lib/pic16/debug/gstack/gstack.c: replaced
388           _naked, _asm, _endasm with __naked, __asm, __endasm
389
390 2005-08-05 Raphael Neider <rneider AT web.de>
391
392         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
393           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
394
395 2005-08-05 Borut Razem <borut.razem AT siol.net>
396
397         * device/lib/Makefile.in: added missing ';'
398         * configure: removed ^M characters
399
400 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
401
402         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
403           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
404           License
405
406 2005-08-04 Borut Razem <borut.razem AT siol.net>
407
408         * configure.in: pic16 libraries build 2nd try - enable running
409           configure in device/lib/pic16
410         * configure: regenerated from configure.in
411         * device/lib/Makefile.in: create $(PORT)/bin directory
412
413 2005-08-03 Raphael Neider <rneider AT web.de>
414
415         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
416           to get/set values via pointers
417         * (genUnpackBits,genPackBits): changed detection of
418           ptr->bitfield vs. sym.bitfield, fixed access via generic
419           pointers, removed dead (wrong) code for multibyte bitfields
420         * (genNearPointerGet, genGenPointerGet): removed useless code,
421           fixed bitfield detection, fixes #1250594
422         * (genNearPointerSet): removed useless code
423         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
424           and introduced macro pic16_emitpcode that conditionally emits
425           the origin of the following pCode (useful for debugging SDCC)
426         * src/pic16/pcode.c: changed (and disabled) some debug outputs
427         * (createDefmap): fixed handling of LFSR for --optimize-df
428
429 2005-08-02 Borut Razem <borut.razem AT siol.net>
430
431         * device/lib/Makefile.in: pic16 libraries build enabled since
432           gputils-0.13.2 are now localy installed at sourceforge's compile farm
433
434 2005-08-02 Raphael Neider <rneider AT web.de>
435
436         * src/pic16/gen.c (genPackBits): removed deprecated warning
437         * (genGenPointerSet): fixed bitfield detection
438
439 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
440
441         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
442
443 2005-07-31 Raphael Neider <rneider AT web.de>
444
445         * device/lib/pic16/libdev/pic18f458.c,
446           device/include/pic16/pic18f458.h: added missing T0CONbits
447
448 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
449
450         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
451
452 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
453
454         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
455
456 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
457
458         * device/include/mcs51/at89c51ed2.h: added.
459
460 2005-07-23 Raphael Neider <rneider AT web.de>
461
462         * src/pic/gen.h: added emitpcode macro for debugging
463         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
464           and replace by macro adding debug information on demand
465         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
466         * (gencjne): tried to fix; replaced with correct (slower) code
467         * (gen{Unp,P}ackBits): fixed single bit access
468         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
469         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
470           previous instruction
471         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
472           register has to be handled with care (forbidding movement
473           of assignments/uses, removing assignments completely, ...)
474         * (pCodeOptime2pCodes): make use of regIsSpecial
475         * added lots of debugging output (commented out)
476         * src/pic/rallloc.c (deassignLRs): prevent operand registers
477           from being reused as result UNLESS it is known to work
478
479 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
480
481         * support/Util/dbuf.h: include <stddef.h> for size_t
482         * .version: changed to version 2.5.2
483
484 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
485
486         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
487
488 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
489
490         * src/hc08/gen.c (genMinus): fixed bug #1241835,
491           (genModOneByte): removed needless psha/pula
492
493 2005-07-22 Raphael Neider <rneider AT web.de>
494
495         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
496           have PIC14 handled like PIC16, fixes broken pic14 linker calls
497         * src/pic/gen.c (resolveIfx): do not "invent" labels
498         * (genSkipc): changed to positive logic
499         * (genSkipCond): removed as no longer needed
500         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
501           backport from PIC16
502         * (genLeftShift): check operands are in different registers
503         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
504           INCF does not update CARRY...
505         * src/pic/main.c: fixed _linkCmd
506         * src/pic/pcode.c (unlinkpCode): added inactive code
507         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
508           alive (do not assign result and operand overlapping registers)
509
510 2005-07-22 Raphael Neider <rneider AT web.de>
511
512         * src/pic/device.c (dump_sfr): replaced register declaration with
513           call to emitSymbolToFile() to avoid duplicate symbols
514         * (assignRelocatableRegisters): do not declare external symbols
515         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
516           right (take size of type, not etype)
517         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
518         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
519         * (packRegsForAccUse): disabled assignment of WREG as
520           the result reg to prevent occurence of just fixed #1235003,
521           fixes #1242954
522         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
523           symbols (avoids duplicate symbols in .asm file)
524         * (pic14emitRegularMap): use emitSymbolToFile()
525         * src/pic/gen.c (aopOp): fixed spillLocation handling
526         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
527         * (genDataPointerSet): removed unneccessary variables/output
528
529 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
530
531         * as/mcs51/lkarea.c: enlarged codemap for banked memory
532         * device/lib/mcs51/crtbank.asm: added # to 0x0F
533
534 2005-07-21 Raphael Neider <rneider AT web.de>
535
536         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
537           architecture cannot handle them efficiently, fixes bug #1235003
538         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
539           check for empty sets before using them (fixes bug #1232190)
540
541 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
542
543         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
544           (lnksect2): generate warnings for memory overlap
545         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
546           constseg to set the name of these segments so you can instruct the linker
547           to place them in banks
548         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
549         * src/SDCCglobl.h: added MODEL_HUGE to enum,
550           added code_seg and const_seg to options
551         * src/SDCCglue.c (emitMaps): use options.const_seg,
552           (createInterruptVect): put interrupt vectors in segment HOME,
553           (glue): put HOME before static segment and put the main glue in HOME,
554           (glue): use options.code_seg
555         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
556         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
557           these segments so you can instruct the linker to place them in banks
558           (linkEdit): use code_loc for HOME segment which should be the first
559           segment in code memory now
560         * src/SDCCmem.c: fixed more stuff like bug 1238386
561         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
562           (changePointer): don't change function pointers to code pointers for
563           banked functions,
564           (compareType): added exceptional check for banked function pointers
565         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
566         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
567           after static in code memory
568         * src/mcs51/gen.c: added aopLiteralLong prototype,
569           (aopForSym): use getSize for functions,
570           (genCall): generate banked calls over one trampoline __sdcc_banked_call
571           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
572           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
573           the segment,
574           (genPcall): use call for literal function pointers and generate banked
575           calls over the one trampoline so there's only one place for the user to
576           modify according to his/hers hardware,
577           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
578           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
579         * src/mcs51/main.c: added keyword banked,
580           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
581         * support/Util/SDCCerr.c,
582         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
583           needed for passing the bank and address to the trampoline
584         * device/lib/mcs51/crtbank.asm: added for bankswitching
585         * device/lib/mcs51/Makefile: added crtbank
586
587 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
588
589         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
590           for fields at offset 0 of a struct or union as reported
591           on 2005-07-07 in the developer mailing list.
592
593 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
594
595         * src/SDCCmem.c: fixed bug 1238386
596
597 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
598
599         * src/mcs51/peeph.def: added labelrefcounting for peepholes
600           (patch #1144962), added peephole 300, enabled 259.x
601         * doc/sdccman.lyx: removed screenshot and provided link instead
602
603 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
604
605         * doc/sdccman.lyx: added section about debugging with ddd
606         * doc/figures/ddd_example.eps: screenshot of debugging session
607
608 2005-07-04 Raphael Neider <rneider AT web.de>
609
610         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
611           like CODE pointers, fixes #1115683
612         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
613           call, fixes bugs #1232211, #1228110,
614           fixed wrong casts to pCodeFlow from pCodeInstructions
615
616 2005-07-04 Raphael Neider <rneider AT web.de>
617
618         * src/pic/gen.c (popGet): changed assert to allow for
619           bit operands
620         * (popGetAddr): changed signature to provide
621           an additional index, patched all call sites
622         * (genCmpEq): handle literal-like operands correctly
623         * (genAddrOf): added sanity checks on __code/__data pointers
624         * (genAssign): added handling of symbols from __code section
625         * (gencjne): do not generate code for comparisons whose result
626           is neither stored nor used, fixes bug #1171114
627         * (AccLsh, AccRsh): operate on operand instead of WREG
628         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
629           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
630           by known count
631         * rewrote complete shift-by-literal logic, commented unused
632           functions out
633         * (genConstPointerGet): get multiple bytes (if result size > 1),
634           fixed handling of non-immediate addresses
635         * (genPointerGet): handle CODE pointers like CONST pointers
636         * (genpic14Code): insert C-SRC lines as Cource-pCodes
637         * ({aop,op}_isLitLike): NEW, single place to decide whether an
638           operand is to be treated as a literal or not
639         * (mov2w,genPcall,genCmpEq),
640           src/pic/genarith.c: use aop_isLitLike() to decide between
641           literal/register contents
642         * (addSign): added missing offset
643         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
644           only emit comment in debug-mode,
645           use {aop,op}_isLitLike throughout the file
646         * src/pic/glue.c: fix initializers for pointers (work in progress)
647         * src/pic/pcode.c (get_op): honor index on _const symbols
648         * ({reset,dump}pCodeStatistics): NEW, estimate code size
649         * (dumppBlock): added pCode size estimation
650         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
651           check for IS_SYMOP before OP_SYMBOL'ing
652         * fixed indentation, compacted switch-statements
653         * (allocReg): find free register and allocate it instead of
654           allocating new registers all the time
655         * (deassignLRs): prevent POINTER_GET's from being assigned the same
656           registers as its operands (necessary only for multibyte GETs)
657
658 2005-07-01 Raphael Neider <rneider AT web.de>
659
660         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
661           debugging .asm-output macros FENTRY + FEXIT
662         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
663           way... I wonder...
664         * (emitpComment): NEW, printf to pCode
665         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
666           offset handling
667         * (popGetAddr): NEW, variant of popGet to access an immediates
668           high(er) bytes instead of the n'th byte of memory they reference,
669           replaced popGet with popGetAddr where neccessary
670         * (genDataPointerGet): reactivated and fixed implementation
671         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
672           accesses
673         * (genDataPointerSet): fixed multibyte assignments
674         * (genpic14Code): fixed --i-code-in-asm handling
675         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
676         * (genPlus): fixed index-out-of-bounds error
677         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
678         * src/pic/ralloc.c: added debugging output macro FENTRY2
679         * (spillThis): fixed indentation, enbraced for-body for clarity
680         * (rematStr): commented out as now unused
681         * (regTypeNum): commented out special spill case (overwrites
682           arbitrary values)
683         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
684
685 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
686
687         * doc/sdccman.lyx: documented sfr16/sfr32,
688           added example for using storage class with function pointers
689         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
690
691 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
692
693         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
694         * device/lib/_itoa.c,
695         * device/lib/_ltoa.c: optimized codesize
696         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
697           but don't know how to suppress the double warning.
698         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
699         * support/Util/SDCCerr.c,
700         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
701
702 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
703
704         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
705           fixed old K&R prototypes
706         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
707         * device/lib/_gptrget.c,
708         * device/lib/_gptrgetc.c,
709         * device/lib/_gptrput.c: changed versions for new memory indicator values,
710           also new versions for small generic pointers and banked generic pointers
711         * src/port.h: added const_name
712         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
713         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
714         * src/SDCCcse.c (findPrevIc): check all associative operators
715         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
716         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
717         * src/SDCCmem.c: updated comments,
718           set far-space to 0 for pdata, results in optimized code
719         * src/SDCCmem.h: added macro CONST_NAME
720         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
721           moving the info into the highest bits, see also gptrget/gptrput
722         * src/src.dsp: added sdcc.ico to project files
723         * src/avr/gen.c (genCast): fixed bug 0x%d
724         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
725         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
726           relation between ptr_type and DCL_TYPE,
727           (genCast): fixed bug 0x%d
728         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
729           (CODE)" for const_name
730         * src/hc08/gen.c (genCast): fixed bug 0x%d
731         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
732           (hc08_port): added "CONST (CODE)" for const_name
733         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
734           (aopForRemat, adjustArithmeticResult): disconnected direct relation
735           between ptr_type and DCL_TYPE,
736           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
737           operand* and took AOP() inside function so sfr-ness can be checked,
738           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
739           new prototype,
740           (genFunction, genEndFunction): optimized stack setup,
741           (genMinus): optimized for literals with ending zeroes (in bytes),
742           (genCast): fixed bug 0x%d
743         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
744           (mcs51_port): added "CONST (CODE)" for const_name
745         * src/mcs51/peeph.def: made rule 226 more generic
746         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
747         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
748         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
749         * src/z80/main.c (z80_port): added NULL for const_name,
750           (gbz80_port): added NULL for const_name
751         * support/regression/tests/bug663539.c,
752         * support/regression/tests/sfr16.c: new tests
753
754 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
755
756         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
757
758 2005-06-24 Raphael Neider <rneider AT web.de>
759
760         * device/lib/pic16/libdev/pic18f[68][567]20.c:
761           corrected typos...
762         * device/include/pic16/signal.h: added USBIF
763           and SIG_USB
764
765 2005-06-24 Raphael Neider <rneider AT web.de>
766
767         * device/lib/pic16/libdev/pic18f2455.c,
768           device/include/pic16/pic18f2455.h: NEW
769         * device/include/pic16/pic18fregs.h,
770           device/lib/pic16/pics.all,
771           src/pic16/device.c: added 18f2455
772         * device/lib/pic16/libdev/pic18f[68][567]20.c,
773           device/include/pic16/{pic18f[68][567].h,usart.h}:
774           replaced MULTIPLE_USARTS define with more relaible
775           compatibility sfrs (for USART access)
776
777 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
778
779         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
780           and the output asm file line is printed on two lines.
781
782 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
783
784         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
785           BGT, BLE, BHI, and BLS instructions
786         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
787           genCmpEq): removed
788         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
789           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
790           fixes bug #1216342
791         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
792
793 2005-06-15 Raphael Neider <rneider AT web.de>
794
795         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
796         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
797         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
798           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
799           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
800
801 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
802
803         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
804           Marcel Telka in bug #1215704
805
806 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
807
808         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
809           located in shared memory bank.
810
811 2005-05-31 Raphael Neider <rneider AT web.de>
812
813         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
814           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
815           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
816
817 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
818
819         * device/lib/_strncpy.c: fixed the fix
820
821 2005-05-26 Raphael Neider <rneider AT web.de>
822
823         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
824           initializers with \0, bug #1208187
825         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
826           intializers with \0, bug #1208187
827
828 2005-05-26 Raphael Neider <rneider AT web.de>
829
830         * src/pic16/glue.c (pic16_printIvalChar): fixed string
831           initializers with \0, bug #1208187
832         * src/pic16/main.c (_process_pragma): added sanity checks
833           for stack position and size, emit warnings when appropriate
834
835 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
836
837         * device/lib/_strncpy.c: fixed not filling with \0
838
839 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
840
841         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
842           createFunction),
843         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
844           compound_statement),
845         * src/SDCCsymt.h,
846         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
847
848 2005-05-24 Raphael Neider <rneider AT web.de>
849
850         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
851
852 2005-05-24 Raphael Neider <rneider AT web.de>
853
854         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
855           TRISE definitions, closes bug #1162453
856
857 2005-05-22 Raphael Neider <rneider AT web.de>
858
859         * src/pic16/main.c (_process_pragma): check for missing
860           arguments to pragmas code and udata
861         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
862           consistency fixes to match other headers (thanks to Jim Paris)
863         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
864
865 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
866
867         * src/SDCCicode.c (isOperandEqual): fixed missing ;
868
869 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
870
871         * support/regression/tests/bug1198642.c: new test
872         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
873         * src/SDCCcse.c (findPrevIc): added comment, please have a look
874         * support/scripts/resource.h,
875         * support/scripts/resource.rc,
876         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
877         * support/scripts/sdcc.ico: added 32x32 icon
878
879 2005-05-18 Raphael Neider <rneider AT web.de>
880
881         * device/lib/pic16/libdev/pic18f*.c,
882         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
883           keywords to "__sfr" and "__at (X)"
884         * device/include/pic16/pic18fregs.h: added pic18f4520
885         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
886           #1203088 (MPLAB compatibility)
887
888 2005-05-17 Raphael Neider <rneider AT web.de>
889
890         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
891         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
892         * device/lib/pic16/pics.all: added new devices
893         * src/pic16/device.c: added support for pic18f4520
894
895 2005-05-16 Raphael Neider <rneider AT web.de>
896         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
897         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
898         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
899           convenience function for bit access
900
901 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
902
903         * device/lib/printf_large.c: fixed bug 1193299
904         * support/regression/tests/bug1057979.c: added test %3.3s
905
906 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
907
908         * device/include/mcs51/8051.h,
909         * device/include/mcs51/8052.h: made parseable with lint
910         * device/include/mcs51/lint.h: added include file for (sp)lint
911         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
912         * doc/cdbfileformat.lyx,
913         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
914
915 2005-05-14 Raphael Neider <rneider AT web.de>
916
917         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
918         * device/lib/pic16/libc/stdlib/itoa.c (new)
919         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
920         * device/lib/pic16/libio/Makefile: exclude subdir according to
921           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
922         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
923         * src/pic16/gen.c (genFunction): prevent annoying warning
924         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
925           nameclashes on BeOS
926         * support/cpp2/cppmain.c (cpp_output_string): new
927         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
928           fixes bug 1116802
929
930 2005-05-13 Borut Razem <borut.razem AT siol.net>
931
932         * src/SDCCmain.c (linkEdit): fixed bug 1195202
933
934 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
935
936         * .version: changed to version 2.5.1; back to bleeding edge development
937
938 2005-05-11 Borut Razem <borut.razem AT siol.net>
939
940         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
941           generate PDF version 1.3 documents
942
943 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
944
945         * .version: changed to version 2.5.0
946
947 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
948
949         * doc/sdccman.lyx: updated weblinks, index and smaller updates
950
951 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
952
953         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
954         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
955         well as many smaller updates.
956         * .version: changed to version 2.5.0-pre1
957
958 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
959
960         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
961
962 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
963
964         * support/regression/tests/bug1185672.c: added
965         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
966           bug 1185672
967         * src/mcs51/gen.c (genCall): added comments, made it look safer
968         * src/mcs51/gen.c (genEndFunction): simplified
969
970 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
971
972         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
973
974 2005-04-14 Borut Razem <borut.razem AT siol.net>
975
976         * fixed bug 1045046 - SIGSEGV with really simple code?:
977           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
978           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
979
980 2005-04-14 Borut Razem <borut.razem AT siol.net>
981
982         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
983           src/pic16/device.h: temporarily disabled experimental #inline pragma
984           for 2.5.0 release
985
986 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * device/include/z80/stdio.h,
989         * device/include/z80/string.h: removed these highly incomplete files so
990           SDCC can use the default ones in device/include/
991
992 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
993
994         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
995         gcc warning.
996         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
997         fix sdcpp warnings.
998
999 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * device/include/malloc.h: removed redundant __reentrant prototypes
1002         * device/lib/_mullong.c: added working xstack variant in asm (C version
1003           doesn't pass regression tests)
1004         * device/lib/bpx.c: used __data and made bpx char for mcs51
1005         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
1006           (createFunction): fixed bug with xstackPtr
1007         * src/SDCCcse.c: corrected comments
1008         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
1009           (killDeadCode, eBBlockFromiCode): removed unused code
1010         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
1011           corrected comments
1012         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1013           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1014           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1015           (genModOneByte): fixed warning in MSVC
1016         * src/mcs51/main.c (): added comments
1017         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1018
1019 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1020
1021         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1022
1023 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1024
1025         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1026
1027 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1028
1029         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1030         characters arrays of larger size than the declared one.
1031
1032 2005-04-10 Borut Razem <borut.razem AT siol.net>
1033
1034         * src/pic/gen.c (genInline),
1035           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1036           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1037           (findNextInstruction), (findPrevInstruction),
1038           (findInstructionUsingLabel),
1039           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1040         * src/pic/pcode.c (findLabel): added missing '\n'
1041         * src/src.dsp: added SDCCdwarf2.c to the project
1042
1043 2005-04-09 Borut Razem <borut.razem AT siol.net>
1044
1045         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1046
1047 2005-04-08 Raphael Neider <rneider AT web.de>
1048
1049         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1050           into the chain after a given one) and mergeDefmapSymbols (combine
1051           defmap entries for each symbol per pcode)
1052         * (createDefmap): have defmap entries merged in the end
1053         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1054           a symbol before replacing one access type's symbol, merge symbols in
1055           the end (replacement symbol might already have an entry)
1056         * (assignValnums): keep reference to written WREG intact
1057
1058 2005-04-08 Raphael Neider <rneider AT web.de>
1059
1060         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1061           Alpha)
1062
1063 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1064
1065         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1066         bytes
1067
1068 2005-04-07 Raphael Neider <rneider AT web.de>
1069
1070         * device/include/pic16/usart.h: added compatibility defines for
1071           devices with more than one USART
1072         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1073
1074 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1075
1076         * device/lib/Makefile.in: updated for port specific include
1077
1078 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1079
1080         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1081
1082 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1083
1084         * device/include/8051.h,
1085         * device/include/8052.h,
1086         * device/include/at89S8252.h,
1087         * device/include/at89c55.h,
1088         * device/include/at89x051.h,
1089         * device/include/at89x51.h,
1090         * device/include/at89x52.h,
1091         * device/include/mcs51reg.h,
1092         * device/include/reg51.h,
1093         * device/include/reg764.h,
1094         * device/include/regc515c.h,
1095         * device/include/sab80515.h: (re)moved these 12 files
1096         * device/include/mcs51/8051.h,
1097         * device/include/mcs51/8052.h,
1098         * device/include/mcs51/at89S8252.h,
1099         * device/include/mcs51/at89c55.h,
1100         * device/include/mcs51/at89x051.h,
1101         * device/include/mcs51/at89x51.h,
1102         * device/include/mcs51/at89x52.h,
1103         * device/include/mcs51/mcs51reg.h,
1104         * device/include/mcs51/reg51.h,
1105         * device/include/mcs51/reg764.h,
1106         * device/include/mcs51/regc515c.h,
1107         * device/include/mcs51/sab80515.h: and added them here
1108
1109 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1110
1111         * device/include/stdarg.h: changed SDCC specific keywords to double
1112           underlined form.
1113         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1114           mcs51 and ds390.
1115         * device/include/hc08/mc68hc908gp32.h,
1116         * device/include/hc08/mc68hc908jb8.h,
1117         * device/include/hc08/mc68hc908jkjl.h,
1118         * device/include/hc08/mc68hc908qy.h: fixed comments
1119         * device/include/mcs51/README: updated
1120         * device/include/mcs51/c8051f120.h: added PINRSF
1121         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1122         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1123           amidst code. Also inline is not supported.
1124
1125 2005-04-06 Raphael Neider <rneider AT web.de>
1126
1127         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1128         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1129           callers stack/frame pointers
1130
1131 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1132
1133         * device/include/pic16/usart.h: added, missing in previous commit,
1134         * device/include/pic16/adc.h: fixed typo,
1135         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1136         commit,
1137         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1138         <p18fxxx.inc>
1139         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1140         uninitialized because a bug appears with gplink
1141         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1142         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1143         complains for unrecognised option
1144
1145 2005-04-05 Raphael Neider <rneider AT web.de>
1146
1147         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1148           structs as well (using memcpy)
1149         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1150           on ISRs (GOTO has no label)
1151         * src/pic16/device.h: added OF_OPTIMIZE_DF
1152         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1153           new data flow analysis/optimization
1154         * src/pic16/pcode.c: added (prototypes for and implementation of)
1155           dataflow analysis functions, fixed pCodeInstructions' inCond and
1156           outCond values, made RCALL a branch instruction
1157         * (pic16_unlinkpCode): keep C line if possible
1158         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1159           C line moved if possible
1160         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1161         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1162           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1163         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1164           new flow)
1165         * (pic16_getJumptabpCode): NEW, needed in...
1166         * (LinkFlow): fixed handling of jumptables, calls and conditional
1167           branches
1168         * (pic16_InsertCommentAfter): NEW
1169         * (pic16_pCodeReplace): made verbose and flow preserving
1170         * (AnalyzeFlow): added call to data flow analysis
1171         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1172         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1173         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1174
1175 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1176
1177         * src/SDCCast.c (decorateType): fixed bug #1105626
1178
1179 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1180
1181         * device/include/asm/pic16/features.h,
1182         * pic18f*.h headers,
1183         * device/include/pic16/adc.h,
1184         * device/include/pic16/delay.h,
1185         * device/include/pic16/i2c.h,
1186         * device/include/pic16/malloc.h,
1187         * device/include/pic16/stdio.h,
1188         * device/include/pic16/stdlib.h,
1189         * device/include/pic16/string.h,
1190         * device/lib/pic16/libc/stdio/printf_tiny.c,
1191         * device/lib/pic16/libc/stdio/printf_small.c,
1192         * device/lib/pic16/libc/stdio/strmgpsim.c,
1193         * device/lib/pic16/libc/stdio/strmmssp.c,
1194         * device/lib/pic16/libc/stdio/strmusart.c,
1195         * device/lib/pic16/libc/stdio/vfprintf.c,
1196         * device/lib/pic16/libc/stdlib/ltoa.c,
1197         * device/lib/pic16/libc/stdlib/putchar.c,
1198         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1199         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1200         * device/lib/pic16/libc/stdlib/memchrram.c,
1201         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1202         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1203         * device/lib/pic16/libio/adc/adcbusy.c,
1204         * device/lib/pic16/libio/adc/adcread.c,
1205         * device/lib/pic16/libio/adc/adcsetch.c,
1206         * device/lib/pic16/libio/usart/ubaud.c,
1207         * device/lib/pic16/libio/usart/ubusy.c,
1208         * device/lib/pic16/libio/usart/udrdy.c,
1209         * device/lib/pic16/libio/usart/uopen.c,
1210         * device/lib/pic16/libio/usart/uputc.c,
1211         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1212         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1213         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1214         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1215         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1216         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1217         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1218         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1219         specific keywords to double underlined form,
1220         * device/lib/pic16/libc/Makefile.rules,
1221         * device/lib/pic16/libsdcc/Makefile.rules,
1222         * device/lib/pic16/libm/Makefile,
1223         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1224         to compile with C standard set in Makefile.common
1225         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1226         rand.c and crc.c in compilation process,
1227         * device/lib/pic16/libsdcc/int/divuint.c,
1228         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1229         `c' from signed to unsigned,
1230         * device/lib/pic16/startup/crt0.c,
1231         * device/lib/pic16/startup/crt0i.c,
1232         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1233         keywords to double underlined form, bug fixes in _do_cinit function
1234         which prevented the correct initialization of the .idata segment,
1235         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1236         core to enter a infinite loop
1237         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1238
1239 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1240
1241         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1242
1243 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1244
1245         * device/include/Makefile.in: add support for hc08 subdirectory
1246         * device/include/hc08/: new subdirectory
1247         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1248         Lucas Loizaga, thanks!
1249         * device/include/hc08/mc68hc908qy.h,
1250         * device/include/hc08/mc68hc908gp32.h,
1251         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1252         their own directory. Changed internal macro names to use the compiler
1253         reserved namespace. Changed SDCC specific keywords to double
1254         underlined form.
1255         * device/include/math.h,
1256         * device/include/malloc.h,
1257         * device/include/stdarg.h,
1258         * device/include/stdbool.h
1259         * device/include/string.h,
1260         * device/include/tinibios.h,
1261         * device/include/ds400rom.h,
1262         * device/include/8051.h,
1263         * device/include/8052.h,
1264         * device/include/80c51xa.h,
1265         * device/include/at89c55.h,
1266         * device/include/at89S8252.h,
1267         * device/include/at89x51.h,
1268         * device/include/at89x52.h,
1269         * device/include/ds80c390.h,
1270         * device/include/reg764.h,
1271         * device/include/regc515c.h,
1272         * device/include/sab80515.h,
1273         * device/include/mcs51/c8051f000.h,
1274         * device/include/mcs51/c8051f018.h,
1275         * device/include/mcs51/c8051f020.h,
1276         * device/include/mcs51/c8051f040.h,
1277         * device/include/mcs51/c8051f060.h,
1278         * device/include/mcs51/c8051f120.h,
1279         * device/include/mcs51/c8051f300.h,
1280         * device/include/mcs51/c8051f310.h,
1281         * device/include/mcs51/c8051f320.h,
1282         * device/include/mcs51/c8051f330.h,
1283         * device/include/mcs51/c8051f350.h,
1284         * device/include/z180.h: Changed SDCC specific keywords to double
1285         underlined form.
1286
1287 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1288
1289         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1290         18F4455,
1291         * (pic16_assignConfigWordValue): disable testing of configuration
1292         register value with config mask,
1293         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1294         function with port->fun_prefix,
1295         * (genFunction): when generating a naked interrupt function never
1296         create an absolute segment placed in interrupt vector address, place
1297         the actual interrupt function at IVA instead, when an interrupt
1298         function is generated with unspecified interrupt then do not create
1299         the absolute section,
1300         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1301         code for generating a call to generic pointer get/put function with
1302         a call to function pic16_callGenericPointer(),
1303         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1304         the call to the generic pointer get/put functions with prefixing the
1305         function name with port->fun_prefix,
1306         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1307         * src/pic16/main.c (_process_pragma): prefix function with
1308         port->fun_prefix,
1309         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1310         calling assembler, old 18Fxxxx macro is deprecated,
1311         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1312         PC_ASMDIR in while condition,
1313         * (findInstruction): add PC_ASMDIR in while condition,
1314         * (buildCallTree): prefix main with port->fun_prefix,
1315         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1316         identifier for variable with banked access in instructions BTFSS,
1317         BTFSC, BCF, BSF, BTG
1318         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1319         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1320         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1321         perform optimization when enviroment variable NO_REG_OPT is set,
1322         * (insideLRBlock): NEW, return 1 if register is inside an
1323         INF_LOCALREGS block,
1324         * (RemoveRegFromLRBlock): remove a register that is completely
1325         eliminated by register optimization, but it is still left in local
1326         register store/restore in/from stack block,
1327         * (Remove2pcodes): after removing register, check to see if it
1328         should be removed from local register store/restore in/from stack
1329         block,
1330         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1331         DUMMY_READ_VOLATILE,
1332
1333         * device/include/pic16/adc.h: minor prototype modifications and
1334         update,
1335         * device/include/pic16/malloc.h: added GPL notice various
1336         modifications,
1337         * device/include/pic16/stdint.h: NEW, standard header for ints
1338         * device/include/pic16/delay.h: NEW, header for delay functions,
1339         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1340         delay1mtcy,
1341         * device/include/pic16/signal.h: NEW, header providing helper macros
1342         for implementing signal handlers,
1343         * device/include/pic16/stdio.h: added prototypes for functions,
1344         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1345         prototypes for stdin and stdout, added macro PUTCHAR to
1346         automatically implement putchar function prototype,
1347         * device/include/pic16/usart.h: modified and updated USART library,
1348         * device/lib/pic16/libio/adc/,
1349         * device/lib/pic16/libio/i2c: some modifications to improve library
1350         performance,
1351         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1352         family of functions,
1353         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1354         family of functions and other sources,
1355         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1356         of the PIC18Fxx[28] devices,
1357         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1358         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1359         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1360         _do_cinit function, because the previous failed when local variables
1361         where not placed in the same memory bank,
1362         * device/lib/pic16/libsdcc/char/: various modifications to improve
1363         library performance,
1364         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1365         information on the new functions of the c library and more...
1366
1367 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1368
1369         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1370
1371 2005-03-26 Raphael Neider <rneider AT web.de>
1372
1373         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1374           if condition == CARRY)
1375         * (genCmp): adapted to new genSkipc semantics
1376         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1377           on rIfx (genCmp was broken)
1378
1379 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1380
1381         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1382         * src/z80/main.c (_keywords[]),
1383         * src/SDCCglobal.h (struct options),
1384         * src/SDCC.y,
1385         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1386         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1387         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1388         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1389         always available in leading double underscore form. The C99 support is
1390         mostly missing, but it's a start.
1391         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1392         reserved identifier "__data".
1393
1394 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1395
1396         * src/mcs51/peeph.def: fixed bug 1170013
1397
1398 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1399
1400         * device/include/mcs51reg.h: fixed bug 842007
1401
1402 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1403
1404         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1405         last time.
1406
1407 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1408
1409         * src/port.h (struct PORT),
1410         * src/avr/ralloc.c (avr_assignRegisters),
1411         * src/avr/main.c,
1412         * src/ds390/ralloc.c (ds390_assignRegisters),
1413         * src/ds390/main.c,
1414         * src/hc08/ralloc.c (hc08_assignRegisters),
1415         * src/hc08/main.c,
1416         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1417         * src/mcs51/main.c,
1418         * src/pic/ralloc.c (pic14_assignRegisters),
1419         * src/pic/main.c,
1420         * src/pic16/ralloc.c (pic16_assignRegisters),
1421         * src/pic16/main.c,
1422         * src/xa51/ralloc.c (xa51_assignRegisters),
1423         * src/xa51/main.c,
1424         * src/z80/ralloc.c (z80_assignRegisters),
1425         * src/z80/ralloc.h,
1426         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1427         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1428         * src/SDCCcse.h,
1429         * src/SDCCdflow.c (computeDataFlow),
1430         * src/SDCCdflow.h,
1431         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1432         * src/SDCCloop.h,
1433         * src/SDCCcflow.c (*),
1434         * src/SDCCcflow.h,
1435         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1436         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1437         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1438         immedDom() returning wrong block; probably fixes bug #1160833)
1439
1440 2005-03-20 Borut Razem <borut.razem AT siol.net>
1441
1442         * support/scripts/inc2h.pl: WIN32 port
1443
1444 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1445
1446         * device/lib/makefile.in: added abs.c and labs.c
1447
1448 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1449
1450         * device/include/stdint.h: added
1451         * device/lib/abs.c: added
1452         * device/lib/labs.c: added
1453         * device/include/stdlib.h: added abs() and labs() prototypes
1454         * device/lib/libsdcc.lib: added abs and labs
1455         * device/include/float.h,
1456         * device/lib/_fsmul.c,
1457         * device/lib/printf_fast.c,
1458         * device/lib/printf_tiny.c: updated comments
1459
1460 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1461
1462         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1463         bug #1164313
1464
1465 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1466
1467         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1468         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1469
1470 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1471
1472         * device/lib/printf_large.c: removed inline assembly for portability and
1473           readability. Use printf_fast if speed or size are more important.
1474         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1475         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1476
1477 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1478
1479         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1480         prevent compiler warning
1481
1482 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1483
1484         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1485         moved to level 0 and declared as static. Also they are explicit
1486         placed in access bank. This was necessery because some times they
1487         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1488         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1489         optimizations. Currently only compare to unsigned char is implemented,
1490         * src/pic16/gen.c: added fReturnIdx array,
1491         * (struct resolvedIfx) is moved to gen.h and made public,
1492         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1493         * (aopForSym): added an optimization to directly store in stack of
1494         the operand of a SEND iCode,
1495         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1496         but as registers instead (AOP_REG) using the fReturnIdx array,
1497         * (pic16_freeAsmop): remove the freed register from the
1498         _G.sregsAlloc field,
1499         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1500         a compare of 'WREG',
1501         * (pic16_popGetTempRegCond): changed function prototype, now
1502         function takes also a bitVector argument v which holds the current
1503         set of registers that are allocated for stack access by aopForSym,
1504         registers allocated in aopForSym for accessing stack symbols are not
1505         any more part of the functions usedRegs field,
1506         * (genCall): some times aopOp is called for a stack variable to be
1507         send, aopForSym might perform the push, if this is true make sure
1508         that genCall doesn't push the variable twice by testing _G.resDirect,
1509         * (genFunction): changed testing for unspecified interrupt number
1510         from 256 to INTNO_UNSPEC,
1511         * modified selection scheme of frame pointer generation. Previously
1512         if function did use local registers a frame pointer was generated,
1513         now a frame pointer is generated only if function has arguments
1514         (that need PLUSW2 register access), or has stack arguments, or the
1515         compiler is not instructed to omit the frame pointer,
1516         * (genEndFunction): before restoring local registers that were saved
1517         in the function preamble, also restore the registers that *might*
1518         have been allocated for stack access,
1519         * (genRet): removed some old comments,
1520         * (genCmp, the active (RN's) version): added a call to the
1521         pic16_genCmp_special function to perform the compare with a more
1522         robust and optimized way,
1523         * (genInline): a feature has been added in inline code generation,
1524         which allows a wildcard variable substitution when writing inline
1525         assembly. Code is incomplete and experimental therefore undocumented,
1526         * (genCast): changed order of aopOp for result and right to allow
1527         aopForSym to directly load the result if possible,
1528         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1529         perform an optimized compare on some selected special occasions,
1530         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1531         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1532         generate an IVT any more,
1533         * src/pic16/main.c (pic16_optionsTable): added command line option
1534         --optimize-cmp,
1535         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1536         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1537         macros,
1538         * src/pic16/NOTES: Raphael Neider added in list of active developers
1539         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1540         jumptable_end to prevent bug #,
1541         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1542         inCond and outCond fields,
1543         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1544         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1545         turn off register spilling,
1546         * (packRegsForOneUse): synced with other ports' versions although it
1547         is not used currently,
1548         * (pic16_packRegisters): added an optimization while reading
1549         structure bitfields, some registers may be saved (malloc code is
1550         decreased by 80 bytes)
1551
1552 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1553
1554         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1555         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1556         this can be optimized more?
1557
1558 2005-03-10 Raphael Neider <rneider AT web.de>
1559
1560         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1561           genNearPointerGet): (hopefully) fixed access to bitfields via
1562           pointers (p->bitN = x; and x = p->bitN; failed)
1563
1564 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1565
1566         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1567
1568 2005-03-09 Raphael Neider <rneider AT web.de>
1569
1570         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1571
1572 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1573
1574         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1575         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1576           (regTypeNum): set REG_BIT type if necessary
1577         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1578         * support/regression/tests/critical.c: check bug 1144613
1579
1580 2005-03-02 Raphael Neider <rneider AT web.de>
1581
1582         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1583
1584 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1585
1586         * src/avr/ralloc.c (serialRegAssign),
1587         * src/ds390/ralloc.c (serialRegAssign),
1588         * src/hc08/ralloc.c (serialRegAssign),
1589         * src/mcs51/ralloc.c (serialRegAssign),
1590         * src/pic/ralloc.c (serialRegAssign),
1591         * src/pic16/ralloc.c (serialRegAssign),
1592         * src/xa51/ralloc.c (serialRegAssign),
1593         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1594
1595 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1596
1597         * src/SDCCast.c (decorateType): fixed bug 1124787
1598
1599 2005-02-20 Hubert Sack <sack AT digiplan.de>
1600         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1601
1602         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1603         patch #1121755
1604
1605 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1606
1607         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1608         to keep the correct label reference count when adding/removing references
1609         to labels. A peephole file using this is appended to patch #1144962.
1610
1611 2005-02-14 Raphael Neider <rneider AT web.de>
1612
1613         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1614         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1615         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1616           retrievals of result operand's value on assignment
1617
1618 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1619
1620         * device/include/pic16/string.h: modified prototype for memccpy()
1621         to memccpy(void *, void *, char, size_t)
1622         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1623         check whether to omit frame pointer or not,
1624         * (genInline): convert all occurences of "\n" to LF in inline
1625         assembler blocks, this helps formatting the inline text,
1626         * (pic16_loadFSR0): modified prototype,
1627         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1628         removed some 8051 legacy code,
1629         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1630         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1631         before allocating temporary registers in functions,
1632
1633 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1634
1635         * support/regression/tests/bitvars.c: corrected the "fix"
1636
1637 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1638
1639         * support/regression/tests/bitvars.c,
1640         * support/regression/tests/bitwise.c,
1641         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1642
1643 2005-02-10 Raphael Neider <rneider AT web.de>
1644
1645         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1646           different size for Alpha
1647         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1648
1649 2005-02-09 Raphael Neider <rneider AT web.de>
1650
1651         * src/SDCC.lex(doPragma) : save and restore warning options as well
1652           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1653         * have #pragma less_pedantic set the errorlevel to WARNING
1654           (fixes #1117001)
1655         * (cloneOptimize) : fixed wrong malloc's size
1656         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1657           facilitate correct handling of #pragma (save|restore)
1658
1659 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1660
1661         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1662
1663 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1664
1665         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1666
1667 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1668
1669         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1670
1671 2005-02-02 Raphael Neider <rneider AT web.de>
1672
1673         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1674         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1675         * (pic16_storeForReturn): fixed to allow returning function pointers
1676         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1677         * device/include/pic16/{stddef.h,stdbool.h}: added
1678
1679 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1680
1681         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1682
1683 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1684
1685         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1686         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1687          appeared to be required
1688
1689 2005-01-31 Borut Razem <borut.razem AT siol.net>
1690
1691         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1692           include/mcs51 and include/z80 directories to the package
1693
1694 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1695
1696         * src/hc08/gen.c (genFunction): fixed bug #1112752
1697
1698 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1699
1700         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1701
1702 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1703
1704         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1705
1706 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1707
1708         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1709
1710 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1711
1712         * device/include/c8051fxxx.h: removed these 6 files
1713         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1714
1715 2005-01-26 Raphael Neider <rneider AT web.de>
1716
1717         * src/pic16/gen.c (genAssign): fixed assignment from longs
1718           in codespace (were cut to three bytes)
1719         * (genDummyRead): implemented (except for CODESPACE...),
1720           fixed bug #1108575
1721         * src/pic16/glue.c (emitStatistics): beautified
1722         * device/lib/pic16/libm/Makefile: added include path
1723
1724 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1725
1726         * src/z80/gen.c (aopPut): fixed bug #1103902
1727
1728 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1729
1730         * device/lib/expf.c: fixed bug #1095792
1731
1732 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1733
1734         * device/lib/pic16/libm: added Math library sources
1735
1736 2005-01-24 Raphael Neider <rneider AT web.de>
1737
1738         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1739           to enable upcast to pCodeOpReg2 (there is no type tag to
1740           differenciate the two and pic16_popGet2p cast into PCOR2)
1741         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1742           (sizeof(sectNames) changed to sizeof(sectName))
1743           Both patches fix segfaults under MinGW.
1744
1745 2005-01-23 Raphael Neider <rneider AT web.de>
1746
1747         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1748           Safe_[mc]?alloc()'ed variables
1749         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1750           of (byte sized) temporaries (assign them to WREG for now)
1751         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1752           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1753           this might fix SIGSEGVs on MinGW...
1754         * src/SDCCopt.c (killDeadCode): restored original behaviour
1755           (volatile operands might get thrown away though)
1756
1757 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1758
1759         * src/pic16/gen.c: fixed bug #1106975,
1760         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1761         pointer update, INTCON is saved, global interrupts are disabled and
1762         restored after updateing TOS.
1763         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1764         * added function attribute 'shadowregs' to take advantage of shadow
1765         registers,
1766         * added function attribute 'wparam' as an alternative to the wparam
1767         pragma,
1768         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1769         user declares a non-ISR function as 'shadowregs',
1770         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1771
1772 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1773
1774         * .version: bumped version number to 2.4.8
1775         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1776         pic16 port,
1777         * device/lib/pic16/libio/i2c/: I2C module support library,
1778         * device/include/pic16/i2c.h: I2C support library header,
1779         * device/lib/pic16/libc/stdio/: standard IO support sources,
1780         * (printf_small.c): printf_small() source, supports float print,
1781         * (printf_tiny.c): printf_tiny() source, does not support floats,
1782         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1783         enable global optimizations for entire library source, other
1784         Makefiles in the source tree are also modified to reflect this,
1785         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1786         function,
1787         * doc/sdccman.lyx: updated to reflect new changes,
1788         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1789         sym->onStack if-case,
1790         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1791         sbit, idata, _idata, xdata, _xdata,
1792         * added pragma library, to link an external library, (see doc),
1793         * removed command line options, --pomit-config-words, --pomit-ivt,
1794         --pleave-reset-vector,
1795         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1796         when calling assembler to reflect memory model used, also define
1797         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1798         reflect stack model used,
1799         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1800         on stack return NULL,
1801
1802 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1803
1804         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1805           of the operands is volatile. Fixes #1020220
1806
1807 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1808
1809         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1810         * (OptimizeRegUsage): make sure that there is really no other flow where
1811           the first pCode is used
1812
1813 2005-01-22 Raphael Neider <rneider AT web.de>
1814
1815         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1816           to fix #1106967 (pCode->seq are not set up correctly)
1817
1818 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1819
1820         * src/SDCCglue.c (glue): make sure code area is declared before the
1821         static initialization area.
1822
1823 2005-01-21 Raphael Neider <rneider AT web.de>
1824
1825         * device/lib/Makefile.in: fixed test for pic16 install dir
1826         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1827           optimizations
1828         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1829           added --optimize-goto compiler switch and pragma wparam documentation
1830         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1831         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1832           and PRODH closing bug #1071770 (peephole optimizer)
1833
1834 2005-01-19 Raphael Neider <rneider AT web.de>
1835
1836         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1837           cmdLine buffers (used when calling sdcpp...) are large enough
1838           (MAX_PATH=256 truncates arguments leading to system halts when
1839           used in MinGW...)
1840         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1841         * (genUminus): rewritten to for efficiency
1842         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1843           used uninitialized in some cases)
1844         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1845           copy the third byte from the int -- now assumes 0x80 (data memory)
1846         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1847           operands (genAddLit expects the iCode's operands to swapped as
1848           well), fixed leftover bytes (crashed for short left operands)
1849         * (pic16_genMinusDec): performance improvements, removed false
1850           PIC14 emitSKPNCs
1851         * (pic16_genMinus): fixed to cope with differently sized operands
1852         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1853           for --obanksel > 1
1854         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1855         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1856           new banksel optimization
1857         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1858           analysis for temporary registers (segfaults...)
1859         * src/pic16/peeph.def: added rule
1860
1861 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1862
1863         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1864         which converts a float number to its ASCII representation
1865         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1866         functions to convert the fractional and integer part of a float to ASCII,
1867         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1868         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1869         ram
1870         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1871         _STATMEM macros,
1872         * device/include/pic16/adc.h: added GPL info,
1873         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1874         a pCodeOp as tested operand,
1875         * (genNearPointerGet): optimized bit testing, does not use
1876         intermediate register for bit value, test directly instead with
1877         BTFSS, BTFSC, works only for single bits,
1878         * (genpic16Code): dump the name of the iCode in the asm,
1879         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1880         renamed to pic16_decodeOp,
1881         * (serialRegAssign): do not allocate a temporary register for iCode
1882         sequences that test a single bit for 1/0
1883
1884 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1885
1886         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1887         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1888         access stack and frame pointers. They are initially assigned to
1889         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1890         accessing SFRs. Updated all occurences of modification of stack or
1891         frame pointer in gen.c and pcode.c,
1892         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1893         assigning of a literal value to pointers,
1894         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1895         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1896         selected
1897
1898 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1899
1900         * doc/sdccman.lyx: update documentation about stack pragma, added
1901         some info for stack memory models
1902
1903 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1904
1905         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1906
1907 2005-01-08 Raphael Neider <rneider AT web.de>
1908
1909         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1910           udata sections to fix bug #1097823
1911
1912 2005-01-05 Raphael Neider <rneider AT web.de>
1913
1914         * src/pic16/gen.c (genGenericShift): added handling of differently
1915           sized left operand and result
1916
1917 2005-01-04 Raphael Neider <rneider AT web.de>
1918
1919         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1920         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1921           to hold the condition bit)
1922         * added new version of genCmp (old code available via #define)
1923         * added new version of genShiftLeft/genShiftRight in a generic
1924           way, now supports shifting by negative values
1925         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1926           shiftCount (expected by genGenericShift)
1927         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1928         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1929           dump
1930         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1931           is an invalid literal too...)
1932
1933 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1934
1935         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1936         from Raphael Neider,
1937         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1938         for 8-bit literals. This fixes some literal operands which are sign
1939         extended to 16-bits ints when instruction needs only 8-bits.
1940
1941 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1942
1943         * device/lib/logf.c: added mcs51 assembly version
1944         * device/lib/expf.c: added mcs51 assembly version
1945         * device/lib/_logexpf.c: new shared asm code for expf and logf
1946         * device/include/math.h: add defines for assembly math library
1947         * device/lib/Makefile.in: build new _logexpf.c
1948         * device/lib/libfloat.lib: use new _logexpf.c
1949
1950 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1951
1952         * src/pic/device.c
1953         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1954           device types which have less than 0x7f registers.
1955
1956 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1957
1958         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1959
1960 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1961
1962         * device/lib/printf_fast.c: only build on supported arch.
1963         * device/lib/printf_tiny.c: only build on supported arch.
1964         * device/lib/printf_fast_f.c: only build if asm float lib
1965         * device/lib/_fsget1arg.c: only build if asm float lib
1966         * device/lib/_fsget2args.c: only build if asm float lib
1967         * device/lib/_fsnormalize.c: only build if asm float lib
1968         * device/lib/_fsreturnval.c: only build if asm float lib
1969         * device/lib/_fsrshift.c: only build if asm float lib
1970         * device/lib/_fsswapargs.c: only build if asm float lib
1971         * device/include/stdio.h: don't provide print_fast,
1972           print_fast_f, print_tiny prototypes if --xstack used
1973
1974 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1975
1976         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1977         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1978           to the SOURCES
1979
1980 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1981
1982         * device/lib/printf_fast_f.c: same as printf_fast, but
1983           with floating point enabled
1984         * device/lib/printf_fast.c: minor tweaks
1985         * device/include/stdio.h: add printf_fast_f
1986
1987 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1988
1989         * src/SDCCmain.c: make --float-reent default for mcs51
1990         * device/lib/_fsadd.c: added mcs51 assembly version
1991         * device/lib/_fssub.c: added mcs51 assembly version
1992         * device/lib/_fsmul.c: added mcs51 assembly version
1993         * device/lib/_fsdiv.c: added mcs51 assembly version
1994         * device/lib/_fseq.c: added mcs51 assembly version
1995         * device/lib/_fsneq.c: added mcs51 assembly version
1996         * device/lib/_fsgt.c: added mcs51 assembly version
1997         * device/lib/_fslt.c: added mcs51 assembly version
1998         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1999         * device/lib/Makefile.in: add _fscmp to build
2000         * device/lib/libfloat.lib: add _fscmp to build
2001
2002 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
2003
2004         * device/lib/_fs2slong.c: added mcs51 assembly version
2005         * device/lib/_fs2sint.c: added mcs51 assembly version
2006         * device/lib/_fs2schar.c: added mcs51 assembly version
2007         * device/lib/_fs2ulong.c: added mcs51 assembly version
2008         * device/lib/_fs2uint.c: added mcs51 assembly version
2009         * device/lib/_fs2uchar.c: added mcs51 assembly version
2010         * device/lib/_slong2fs.c: added mcs51 assembly version
2011         * device/lib/_sint2fs.c: added mcs51 assembly version
2012         * device/lib/_schar2fs.c: added mcs51 assembly version
2013         * device/lib/_ulong2fs.c: added mcs51 assembly version
2014         * device/lib/_uint2fs.c: added mcs51 assembly version
2015         * device/lib/_uchar2fs.c: added mcs51 assembly version
2016         * device/include/float.h: added #define to select asm vs c
2017
2018 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2019
2020         * device/lib/printf_fast.c: improvements to float output
2021         * device/include/float.h: add defines for assembly float library
2022         * device/lib/_fsget1arg.c: receive 1 float arg
2023         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2024         * device/lib/_fsnormalize.c: normalize a float
2025         * device/lib/_fsreturnval.c: return float, various helper routines
2026         * device/lib/_fsrshift.c: right shift a float's mantissa
2027         * device/lib/_fsswapargs.c: swap 2 floats
2028         * device/lib/Makefile.in: build these 6 new files for mcs51
2029         * device/lib/libfloat.lib: add these 6 files to the library
2030
2031 2004-12-26 Borut Razem <borut.razem AT siol.net>
2032
2033         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2034           built by gcc 3.4.2
2035
2036 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2037
2038         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2039           and fully reentrant and register bank neutral.
2040         * device/lib/printf_fast.c: added float (not enabled by default),
2041           added compact/slower integer (also not enabled by default),
2042           improved size/speed of fast integer code, other minor changes
2043         * device/include/stdio.h, device/lib/Makefile.in,
2044           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2045
2046 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2047
2048         * src/pic16/pcode.c: declaring variables other than at the start of a
2049           block is not supported in C by VC6.
2050
2051 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2052
2053         * applied a previous patch from Raphael Neider that wasn't included
2054         in the previous commits, which fixes infinite loops within jumptable
2055         improvements,
2056         * made some fixes that previous patches introduced
2057
2058 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2059
2060         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2061         that fixes an issue with AOP_PCODE asmop's offset,
2062         * (pic16_popCopyReg): update instance field too,
2063         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2064         function of pic port,
2065         * (genCmp, genAnd, genAssign),
2066         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2067
2068 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2069
2070         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2071         variables initial values to idata section,
2072         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2073         variables in some functions. This utilizes parmBytes field of iCode
2074         structure to hold the offset of the variable in stack. (might be
2075         able to use the stack field too?)
2076         * applied patch from Raphael Neider # ### , # ###
2077         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2078         variable initial values in idata section,
2079         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2080         for static variables with initial value
2081         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2082         applied fix in while loop from Raphael Neider.
2083
2084 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2085
2086         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2087         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2088         * src/ds390/ralloc.c (serialRegAssign): spill bits
2089         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2090         * support/Util/SDCCerr.c,
2091         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2092         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2093         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2094
2095 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2096
2097         * device/include/sdcc-lib.h: inserted LGPL, added includes
2098           asm/ds390/features.h and asm/mcs51/features.h
2099         * device/include/asm/default/features.h,
2100         * device/include/asm/gbz80/features.h,
2101         * device/include/asm/z80/features.h: added empty _AUTOMEM
2102           and _STATMEM
2103         * device/include/asm/ds390/features.h,
2104         * device/include/asm/mcs51/features.h: added files with defines for
2105           _AUTOMEM and _STATMEM indicating automatic and static storage class
2106         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2107         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2108         * src/SDCCicode.c (geniCodeCast),
2109         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2110         * src/SDCCloop.c (loopInduction): removed unused variable lr
2111         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2112           to convertToFcall to include char modulo (RFE 1065037), added check
2113           if left operand is unsigned and use abs of literal value
2114         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2115           as it doesn't work after conversion from peephole.def to peephole.rul
2116         * src/mcs51/gen.c (toBoolean): added check for size,
2117           (genModOneByte): optimized code for signed char modulo a literal
2118           power of 2 (thanks to Hubert Sack),
2119           (genRRC): removed unnecessary "clr c",
2120           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2121         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2122           jump optimization,
2123           swapped rules 256.c and 256.d,
2124           extended 256.d by using new multiple checks (thanks Erik),
2125           added rules 256.e and 256.f,
2126           updated rule 261.a and 261.b to new generated code
2127         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2128
2129 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2130
2131         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2132           induction related bugs, including first part of bug #1074377
2133
2134 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2135
2136         * applied patch from bug-report #1076292,
2137         * applied patches for genAnd and Goto-optimizations for Raphael
2138         Neider,
2139         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2140         dump a less iCode information,
2141         * src/pic16/device.h (pic16_options_t): added field debgen,
2142         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2143         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2144         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2145         puclic,
2146         * (various functions): added macros FENTRY and FENTRY2 to functions,
2147         to emit function prologue,
2148         * (various functions): fixed indentation,
2149         * (genNearPointerGet): fixed loading of FSR0,
2150         * (genPackBits): applied patch from Raphael Neider to fix updating
2151         of FSR0 and touching only the modified bits,
2152         * src/pic16/genarith.c (various functions): added macros FENTRY to
2153         emit function prologue in comments,
2154         * src/pic16/pcode.h: added functions debugf2, debugf3,
2155         * src/pic16/ralloc.c: partial fix for packForPush caused
2156         segmentation fault,
2157
2158 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2159
2160         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2161           <stsp AT users.sourceforge.net> with reversed byte order
2162         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2163
2164 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2165
2166         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2167           bug #1074377
2168         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2169         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2170
2171 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2172
2173         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2174
2175 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2176
2177         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2178           conditions,
2179           (setFromConditionArgs): friendly operand parser for peephole rules,
2180           (operandBaseName, operandsNotRelated): new peephole condition
2181           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2182           architecture specific register naming into account, handles n-way
2183           comparisons, and supports quoted literals
2184         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2185
2186 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2187
2188         * src/mcs51/peeph.def: fixed bug #1076940
2189
2190 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2191
2192         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2193
2194 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2195
2196         Adding support for replacing ljmps with sjmps in jumptables
2197         generated for switch statements. For now you need to set the
2198         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2199         Now 4 algorithms for mcs51 jumptable generation are used:
2200         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2201         addresses loaded pc-relative for up to 112 cases and stack-pushing
2202         target addresses loaded with offset from dptr for up to 256 cases.
2203
2204         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2205         * src/mcs51/main.c: adapted constants for switch table generation
2206         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2207
2208 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2209
2210         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2211         * support/regression/tests/bug1057979.c: added test for bug 1073386
2212
2213 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2214
2215         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2216         compilers
2217
2218 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2219
2220         * src/pic16/device.h,
2221         * src/pic16/genarith.c,
2222         * src/pic16/glue.c,
2223         * src/pic16/main.c,
2224         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2225
2226 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2227
2228         Large cummulative patch for pic16 port.
2229         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2230         to call when a stack overflow occurs,
2231         * (malloc.h): added CVS Id tag,
2232         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2233         variable,
2234         * added libc directory. The current version of LibC contains string
2235         functions, ctype functions and macros and some functions of the
2236         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2237         be extensively tested in the future. Standard disclaimer here.
2238         Library is not automatically build yet. But one can build it by
2239         invoking 'make' inside the libc directory.
2240         * added ADC library under libio. Preliminary version yet.
2241
2242         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2243         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2244         aopForRemat() now and not by pic16_aopOp(),
2245         * (pic16_popGetTempReg): removed warning messgae when allocating
2246         temporary registers, its a buggy feature and will be removed,
2247         * (pic16_popGet): set register instance field in AOP_CRY,
2248         * (pic16_outBitC): fixed for results in size greater than 1,
2249         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2250         * (pic16_storeForReturn): optimized return of 0,
2251         * (genCmp): experimental code for new genCmp which uses PIC18's
2252         special compare&skip instructions. Initial tests fail some times
2253         with variables grater than 1 byte in size, so new code is disabled,
2254         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2255         a single bit,
2256         * (genCast): began a fix to optimize the casting of a bit to another
2257         bit, now assigning a bitfield to another bitfield will fail, sorry,
2258         * src/pic16/main.c: disabled the use of lr-support feature,
2259         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2260         * added some function prototypes, added function _debugf prototype,
2261         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2262         bits with offset (case PO_GPR_BIT),
2263         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2264         command line,
2265         * (isBankInstruction): modified to return 0 for no banking instruction,
2266         and 1 for banking instruction,
2267         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2268         caused stop processing pCodes after a inline assembly block,
2269         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2270         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2271         registers when it shouldn't,
2272         * src/pic16/ralloc.c (allocReg): add preliminary support for
2273         supporting a limited set of temporary registers,
2274
2275 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2276
2277         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2278           genDataPointerSet): ensure assignments always copy in MSB to LSB
2279           order,
2280           (loadRegFromAop): recognize CLRH optimization,
2281           (genFunction): optimize RECEIVE iCodes in reentrant functions
2282
2283 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2284
2285         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2286           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2287           selected.
2288         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2289         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2290           contiguous with data
2291
2292 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2293
2294         * device/lib/_gptrget.c (_gptrget),
2295         * device/lib/_gptrgetc.c (_gptrgetc),
2296         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2297           instead of sjmp to ret
2298         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2299           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2300
2301 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2302
2303         * .version: bumped version to 2.4.7
2304         * device/lib/_gptrget.c (_gptrget): is now _naked
2305         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2306         * device/lib/_gptrput.c (_gptrput): is now _naked
2307         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2308           (createFunction): fixed xstack
2309         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2310         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2311           or bit either,
2312           (geniCodeCritical): store original interrupt state in an iTemp bit
2313           var unless stack-auto
2314         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2315         * src/SDCCmain.c (setIncludePath): added include/target to search path
2316         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2317         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2318           prototype,
2319           (processFuncArgs): put bit vars in bit area
2320         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2321           unsaveRBank): fixed xstack,
2322           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2323           (genFunction, genEndFunction): fixed xstack,
2324           (genAssign): optimization don't walk backwards through mem
2325         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2326         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2327         * support/regression/Makefile: also make library (for stack-auto) when
2328           making "all" and added "test-mcs51-xstack-auto"
2329         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2330         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2331         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2332         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2333         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2334           make-library by MAKE_LIBRARY
2335         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2336           regression tests for xstack
2337         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2338         * support/regression/tests/critical.c: test for critical on mcs51
2339
2340 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2341
2342         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2343           built version of sdcc instead of installed version
2344
2345 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2346
2347         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2348         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2349           vprintf.c now
2350         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2351         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2352           WARNING: remove device/lib/build/z80/printf.o by hand when
2353           updating from previous build!
2354         * device/lib/z80/printf.c: updated comment
2355         * support/regression/tests/bug1057979.c: test all ports now
2356         * support/regression/tests/bug1065458.c: file added
2357
2358 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2359
2360         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2361           *_start and *_end symbols for static functions
2362
2363 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2364
2365         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2366           and search crt0.o in all library paths,
2367           (setIncludePath): proper handling of --nostdinc,
2368           (setLibPath): proper handling of --nostdlib
2369         * support/regression/Makefile,
2370         * support/regression/ports/ds390/spec.mk,
2371         * support/regression/ports/gbz80/spec.mk,
2372         * support/regression/ports/hc08/spec.mk,
2373         * support/regression/ports/mcs51/spec.mk,
2374         * support/regression/ports/mcs51-large/spec.mk,
2375         * support/regression/ports/mcs51-stack-auto/spec.mk,
2376         * support/regression/ports/z80/spec.mk: use include and lib files from
2377           built version of sdcc instead of installed version
2378         * doc/sdccman.lyx: fixed typo in --nostdinc
2379
2380 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2381
2382         * src/pic/pcode.c,
2383         * src/pic/device.c,
2384         * src/pic/ralloc.c,
2385         * src/pic/gen.c : added support to generate code for struct bit fields.
2386
2387 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2388
2389         * as/xa51/xa_version.h,
2390         * device/include/errno.h,
2391         * device/include/regc515c.h,
2392         * device/lib/_itoa.c,
2393         * device/lib/_ltoa.c,
2394         * device/lib/ser_ir_cts_rts.c,
2395         * sim/ucsim/xa.src/glob.cc,
2396         * sim/ucsim/xa.src/inst_gen.cc,
2397         * sim/ucsim/xa.src/xa_bit.cc,
2398         * sim/ucsim/xa.src/xa_sfr.cc,
2399         * sim/ucsim/z80.src/inst_dd.cc,
2400         * sim/ucsim/z80.src/inst_fdcb.cc,
2401         * support/scripts/keil2sdcc.pl,
2402         * src/pic16/pic16.dsp,
2403         * src/pic16/pic16a.dsp: corrected cvs line endings
2404         * device/lib/printf_large.c: fixed bug 1057979
2405         * src/pic16/gen.c: fixed non-C standard code
2406         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2407         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2408         * support/regression/ports/mcs51/support.c: reload T1 asap
2409         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2410           pdata use and clear idata startup behaviour
2411         * support/regression/tests/bug1057979.c: added
2412
2413 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2414
2415         * device/examples/ds390/ow390/ad26.h,
2416         * device/examples/ds390/ow390/cnt1d.h,
2417         * device/examples/ds390/ow390/crcutil.c,
2418         * device/examples/ds390/ow390/ownet.h,
2419         * device/examples/ds390/ow390/owsesu.c,
2420         * device/examples/ds390/ow390/swt12.h,
2421         * device/examples/ds390/ow390/swtoper.c,
2422         * device/examples/ds390/ow390/temp10.h,
2423         * device/examples/ds390/ow390/thermodl.c,
2424         * device/examples/ds390/tinitalk/tinitalk.dsp,
2425         * device/examples/ds390/tinitalk/tinitalk.dsw,
2426         * device/examples/mcs51/clock/hw.h,
2427         * device/examples/mcs51/simple2/go.bat,
2428         * device/examples/serialcomm/windows/serial.h,
2429         * device/examples/xa51/dummy.c,
2430         * device/examples/xa51/hello.c,
2431         * device/include/80c51xa.h,
2432         * device/include/at89x051.h: corrected cvs line endings
2433
2434 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2435
2436         * src/pic16/main.c (options): added command line --gstack, to trace
2437         stack over/under flows,
2438         * added pragma 'wparam' to allow passing first byte of function
2439         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2440         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2441         call to __gstack_test function and sets up the symbol as extern,
2442         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2443         * popaop): added call to pic16_testStackOverflow,
2444         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2445         wparamList list,
2446         * (genCall, genPcall): now all parameters are passed via stack
2447         except in functions that are pass to wparam pragma in which WREG is
2448         used too,
2449         * (genPcall): REENTRANT flag is checked to see if variable prototype
2450         contains reentrant keyword, don't call a non-reentrant function, via
2451         a reentrant function pointer or vice versa, functions are never
2452         passed via WREG,
2453         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2454         D.Winkler,
2455         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2456         SIGSEGV when accessing a NULL register stucture,
2457         * (pic16_printGPointerType): modified to handle UPPER modifier for
2458         function initializers, changed prototype of function to simpler one,
2459         * (pic16_printIvalFuncPtr): check to see if function is already
2460         added in externs list,
2461         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2462         optimized a move from W to SFR with a move to the same register
2463         later after a CALL,
2464         * device/lib/pic16/debug: NEW directory, contains debug features
2465         which are enabled when linking with libdebug.lib, currently command
2466         line option --gstack enables stack pointer tracing for over/under
2467         flow, corresponding sources are in debug/gstack
2468
2469 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2470
2471         * doc/sdccman.lyx: updated SDCC version,
2472         * (PIC16 port): update list of command line options,
2473         * src/pic16/device.h (structure pic16_options_t): added field gstack
2474         to enable stack overflow tracing on push/pops,
2475         * src/pic16/device.c (statistics structure): added statistics
2476         structure,
2477         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2478         pic16_dump_int_registers): increase statistics counters for each
2479         * variable which is encountered
2480         * (pic16_dump_usection): emit each .udata variable to its own udata
2481         section,
2482         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2483         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2484         parameters via stack, otherwise use old scheme,
2485         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2486         assembler output file,
2487         * src/pic16/main.c: added command line options --gstack to enable
2488         push/pop tracing for stack overflow,
2489         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2490         instructions): added size of each instruction,
2491         * (pic16_countInstruction): estimate size of instructions in
2492         the_pFile list, inline assembly blocks are not counted,
2493         * (pic16_FixRegisterBanking): trace previous register usage, when
2494         banksel optimizations is greater than 0, don't emit a redudant
2495         banksel directive,
2496
2497 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2498
2499         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2500         * src/pic16/ralloc.c : applied same fix for pic16.
2501         * src/pic/gen.c : tidied it up a little.
2502
2503 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2504
2505         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2506         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2507
2508 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2509
2510         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2511
2512 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2513
2514         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2515         non-reentrant function __modsint in the interrupt function (thus
2516         corrupting math operations during serial I/O)
2517         * device/lib/ser_ir.c: as above, changed buffersize
2518         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2519         256.c,d for zeroing
2520         * doc/Makefile: added option -t for rsync
2521
2522 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2523
2524         * src/SDCCast.h (struct ast),
2525         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2526
2527 2004-10-20 Borut Razem <borut.razem AT siol.net>
2528
2529         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2530         package
2531
2532 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2533
2534         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2535         makefile targets,
2536         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2537         support functions to replace long sequences of MOVFF's from access
2538         bank registers to stack and vice versa,
2539         * src/pic16/device.h: added new field opt_flags, where optimization
2540         flags can be set to enable certain features,
2541         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2542         * pBlock, (genFunction, genEndFunction): surroung loop for
2543         saving/loading used registers in stack with PC_INFO pCodes,
2544         INF_LREGS. Code in between can then be optimized by pCode optimizer
2545         to support function calls,
2546         * (genDataPointerSet): fixed bug which loaded float fields in
2547         structures with corrupt data,
2548         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2549         in a standard way debug info on stderr. Feature used for developing
2550         and debugging only,
2551         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2552         obsolete chunks of code,
2553         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2554         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2555         * pic16/src/pcode.c (pic16_newpCodeInfo,
2556         * (pic16_newpCodeOpLocalRegs),
2557         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2558         feature,
2559         * (pic16_pCodeConstString): printing of the initial value of a
2560         symbol as a comment is inhibited since parsing was already done by
2561         copyStr and output is corrupt,
2562         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2563
2564 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2565
2566         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2567
2568 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2569
2570         * as/mcs51/lkarea.c: removed old K&R style,
2571           (lnksect): changed check on boundary error,
2572           (lnksect2): changed check on boundary error,
2573           (lnksect2): extend XSTK to end of page if size = 1
2574         * as/mcs51/lkmain.c: removed old K&R style,
2575           (Areas51): create l_IRAM symbol
2576         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2577         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2578           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2579         * device/lib/_mullong.c: added version to be compiled with xstack
2580         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2581         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2582         * device/lib/mcs51/crtxstack.asm: fixed comment
2583         * src/SDCCglue.c: maxInterrupts defaults to 0,
2584           (emitMaps): added pdata,
2585           (createInterruptVect): (re)moved default,
2586           (glue): added pdata,
2587           (glue): moved __start__xstack to XSTK with default size 1
2588         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2589           and options.float_rent when options.stackAuto is set,
2590           (linkEdit): only write XDATA_NAME if provided on command line
2591         * src/SDCCmem.h,
2592         * src/SDCCmem.c: added pdata
2593         * src/port.h: added pdata_name to PORT
2594         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2595           (saveRegisters, unsaveRegisters): removed usage of B,
2596           (genMinus): fixed accumulator clash,
2597           (genJumpTab): added comment, this needs another look
2598         * src/mcs51/gen.c: added check for "B in use" paranoia,
2599           added pushB() and popB()
2600         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2601           chance
2602         * src/avr/main.c,
2603         * src/ds390/main.c,
2604         * src/hc08/main.c,
2605         * src/mcs51/main.c,
2606         * src/pic/main.c,
2607         * src/pic16/main.c,
2608         * src/xa51/main.c,
2609         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2610           added PSEG (PAG,XDATA) or NULL to port specifier
2611         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2612         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2613           (_mcs51_genInitStartup): removed __start__xstack equ,
2614           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2615         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2616         * src/z80/gen.c (_rleAppend): fixed warnings
2617         * support/regression/tests/zeropad.c: added pdata test
2618         * .version: bumped to 2.4.6
2619
2620 2004-10-17 Borut Razem <borut.razem AT siol.net>
2621
2622         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2623         as a part of nightly build
2624
2625 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2626
2627         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2628         WREG holds the first byte function parameters,
2629         * (aopForSym): take special case for symbols which are in FARSPACE
2630         but in CODESPACE too,
2631         * (assignResultValue): modified to take into account _G.useWreg,
2632         * (genCall): don't use wreg for parameter passing when function is
2633         declared as reentrant, too, added optimization INCF to stack
2634         pointer when stack parameter count is 1,
2635         * (genFunction, genEndFunction): refurnished and fixed to not using
2636         wreg for passing parameters when function has varargs or is
2637         reentrant, fixed bug with symbol name compare for generating
2638         functions in absolute address,
2639         * (pic16_storeForReturn): refurnished,
2640         * (genCmp): began writing a new version of the function, not ready
2641         yet, therefore it is disabled,
2642         * (genAssign): do not read code memory when assigning a function to
2643         a pointer function,
2644         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2645         array of characters, not pointer,
2646         * (pic16initialComments): in debug mode emit an .ident directive for
2647         the assembler,
2648         * (_process_pragma): emit a new warning type (internal to pic16)
2649         when setting stack to default length, emit a similar warning when
2650         placing a function at absolute address and address is not word aligned
2651         * (_pic16_parseOptions): added 'return TRUE' statement,
2652         * (_pic16_linkEdit): if compiling a source, then add the source's
2653         file object, first in the list of objects to link,
2654
2655 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2656
2657         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2658         * src/pic/main.c : removed VC warning.
2659         * src/pic/gen.c : changed comment.
2660
2661 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2662
2663         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2664         reference to a deprecated symbol _GPTRREG was causing failure to
2665         link. Thanks G. M. Gallant for the info.
2666
2667 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2668
2669         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2670         comments for Bugs item #954788.
2671
2672 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2673
2674         * src/pic16/device.c (pic16_dump_gsection,
2675         * pic16_groupRegistersInSection): handle symbols declared to be in
2676         access bank differently,
2677         * src/pic16/gen.c (struct _G): added field resDirect,
2678         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2679         send values read from stack directly to result and don't allocate
2680         temporary values,
2681         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2682         same registers,
2683         * (pic16_sameRegsOfs): NEW,
2684         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2685         free because they were not allocated from temporary pool,
2686         * pic16_popRegFromString): workaround to fix a problem with
2687         allocating variables twice or never,
2688         * (genGenPointerGet): using PRODL instead of FSR0H,
2689         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2690         instead of FSR0H,
2691         * (genAssign): take advantage of the _G.resDirect flag,
2692         * (genCast): around line 11844, use mov2f instead of directly
2693         MOVFF'ing between operands to account for literal values,
2694         * src/pic16/genutils.c: some new debug functions for gpsim have been
2695         added,
2696         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2697         float with integer part only,
2698         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2699         place variables in access bank
2700         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2701         updated sources to reflect recent changes in gen.c
2702
2703 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2704
2705         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2706         sources that searched for headers in installation path, now the
2707         device/include/pic16 is used,
2708         * src/pic16/glue.c (pic16glue),
2709         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2710         .line directives if not in debug mode, this suppresses assembler's
2711         warnings for ignored directives
2712
2713 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2714
2715         * src/port.h: made reset_regparms prototype void parameter explicit.
2716         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2717         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2718         * doc/sdccman.lyx: documented warning disabling and how to use
2719           printf_large to make it print floats.
2720         * device/include/stdbool.h: NEW
2721         * device/lib/_atof.c,
2722         * device/lib/_divuint.c,
2723         * device/lib/_divulong.c,
2724         * device/lib/expf.c,
2725         * device/lib/printf_large.c,
2726         * device/lib/sincosf.c,
2727         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2728         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2729           a completely reentrant lib.
2730
2731 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2732
2733         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2734         * device/include/pic16/stdio.h: fixed bug with colon
2735
2736 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2737
2738         * device/include/pic16/stdio.h,
2739         * device/include/pic16/stdlib.h,
2740         * device/include/pic16/math.h: NEW
2741         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2742         declared as _naked to reduce overhead
2743         * device/lib/Makefile.in (target port-specific-objects-pic16):
2744         changed * to *.* so to ignore the CVS directory,
2745         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2746         stacked variables back in stack,
2747         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2748         corruption
2749
2750 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2751
2752         * .version: bumped version number to 2.4.5
2753         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2754         * support/Util/SDCCerr.c (messages structure): added entry for
2755         W_POSSBUG2
2756
2757         Large cumulative patch for pic16 port and libraries.
2758         * device/include/pic16/sdcc-lib.h,
2759         * device/include/pic16/stdarg.h,
2760         * device/include/asm/pic16/features.h,
2761         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2762         * device/include/pic16/float.h: changes reentrant keyword with
2763         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2764         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2765         updated target build-libraries to include objects from gptr,
2766         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2767         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2768         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2769         all function headings,
2770         * src/SDCCmain.c: added global parameter userIncDirsSet,
2771         * (parseCmdLine): when option -I is encountered add directory to
2772         userIncDirsSet too,
2773         * src/version.awk: added space between control and long,
2774         * src/pic16/NOTES: added some notes for the port,
2775         * src/pic16/gen.c: added prototype for mov2fp function,
2776         * (fReturnpic16[]): properly named return value registers,
2777         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2778         * (aopForSym): added code to handle symbols with onStack flag set,
2779         symbols onStack are allocated PTRSIZE bytes,
2780         * (aopFreeAsmop): handles special case where asmops are stack objects,
2781         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2782         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2783         added argument lock to trace flaws in allocating temporary registers
2784         when developing port,
2785         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2786         * (pic16_popRegFromString): reenabled allocating a direct register
2787         from string,
2788         * (assignResultValue): various beautifications,
2789         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2790         referenced function argument,
2791         * (genIpush): reenabled to allow stacked arguments, handles only
2792         ic->parmPush iCodes,
2793         * (genCall, genPcall): major changes to allow for variable argument
2794         functions, fixed a bug with falsely restoring stack pointer after
2795         returning from call,
2796         * (genFunction): pending code for critical function,
2797         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2798         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2799         * (genNearPointerGet): fixed bug with indirect reading, was always
2800         reading from INDF0
2801         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2802         pointers,
2803         * (genAddrOf): rewrote code to take address of a stacked function parameter
2804         * (genCast): fixed casting to generic pointer type,
2805         * src/pic16/gen.h: added AOP_STA,
2806         * (struct asmop): added field stk,
2807         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2808         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2809         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2810         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2811         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2812         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2813         generic pointers,
2814         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2815         and library paths,
2816         * (pic16_port structure): generic pointer size is set to 3,
2817         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2818         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2819         compiler warning,
2820         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2821         operand is an iTemp,
2822
2823 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2824
2825         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2826         * debugger/mcs51/simi.c: addapt new syntax of s51
2827
2828 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2829
2830         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2831         * src/pic16/pcode.c: commented out some calls to free() in order to
2832         fix bug #989576,
2833
2834 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2835
2836         * src/SDCCicode.h,
2837         * src/SDCCicode.c (isiCodeInFunctionCall),
2838         * src/avr/ralloc.c (selectSpil),
2839         * src/pic/ralloc.c (selectSpil),
2840         * src/pic16/ralloc.c (selectSpil),
2841         * src/ds390/ralloc.c (selectSpil),
2842         * src/hc08/ralloc.c (selectSpil),
2843         * src/xa51/ralloc.c (selectSpil),
2844         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2845         stack in the middle of a function call sequence (fixes bug #1020268)
2846         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2847         costs associated with the minimum switch case.
2848
2849 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2850
2851         * src/SDCC.lex: fixed bug #1030549
2852
2853 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2854
2855         * src/SDCCcse.h (struct cseDef),
2856         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2857         over a function call if the CSE is derived from a symbol whose
2858         address has been taken (fixes bug #1029883)
2859         * support/regression/tests/bug-1029883: a new regression test for
2860         this bug
2861
2862 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2863
2864         * src/hc08/gen.c (emitinline): fixed bug #1029778
2865         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2866         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2867         and starts toward RFE #905167)
2868
2869 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2870
2871         * src/pic16/gen.c (mov2f): New function to move an operand to
2872         another without considering if it is a literal or a register,
2873         * (pic16_sameRegs): don't check if they are both AOP_REG,
2874         * (AccRsh): removed andmask=0 lines,
2875         * (genLeftShift): duplicated to be improved in future versions,
2876         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2877         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2878         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2879         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2880         * (insertBankSwitch): fixed inserting banksel directives algorithm
2881         for instructions that follow a skip instruction, this fixes a report
2882         for broken subtraction code generation,
2883         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2884         iCode is a left op, just in case result and right share the same
2885         registers
2886
2887 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2888
2889         * src/hc08/main.c,
2890         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2891         preservation of HX
2892         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2893         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2894         on 2004-09-12; it was buggy
2895
2896 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2897
2898         * src/SDCCsymt.h: removed RESULT_CHECK
2899         * src/SDCCast.c,
2900         * src/SDCCglue.c,
2901         * src/SDCCval.c,
2902         * src/pic/glue.c,
2903         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2904
2905 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2906
2907         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2908         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2909         configuration values no more rejected by compiler, they are assigned
2910         to configuration registers with a warning message instead,
2911         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2912         the for-loop so last conf register is emitted too,
2913         * (_pic16_initPaths): link library libsdcc.lib by default,
2914         * (_hasNativeMulFor): modified test for multiplication according to
2915         Raphael Neider's remarks. Integer multiplication is also done with
2916         support functions,
2917         * device/include/pic16/pic18fregs.h: corrected type error in while
2918         testing and including 18f6720 header file
2919
2920 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2921
2922         * src/pic16/device.h (pic16_options): removed field use_crt,
2923         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2924         until an optimization to handle single bits is added,
2925         * (pic16_loadFSR0): moved before genUnpackBits,
2926         * (genAnd): some white lines removed,
2927         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2928         leave_reset flags in pic16_options when using crt modules,
2929
2930 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2931
2932         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2933           for bugs 898889 & 979599. Also used some safer print instructions.
2934
2935 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2936
2937         * src/pic16/device.h (pic16_options_t): added field use_crt,
2938         crt_name, no_crt,
2939         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2940         catch a probable future bug,
2941         * src/pic16/gen.c: aopIdx function commented out,
2942         * (genAssign): commented out old code which used aopIdx,
2943         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2944         code, added if conditionals to take into account the --use-crt
2945         command line options,
2946         * src/pic16/main.c (pic16_optionsTable): added new command line
2947         options, --use-crt= and --no-crt,
2948         * (_pic16_linkEdit): now the proper crt object is added in the
2949         linker command line except than when --no-crt is specified,
2950         * src/pic16/pcode.c,
2951         * src/pic16/pcode.h: added some structures and functions for a new
2952         optimization scheme to compansate for instruction overhead between
2953         same iCodes, this scheme is currently under development and is not
2954         working in any way,
2955         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2956         to && operator,
2957         * device/lib/pic16/startup/crt0i.c,
2958         * device/lib/pic16/startup/crt0iz.c: added global char variable
2959         __uflags to force the generation of an idata section
2960
2961 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2962
2963         * doc/Makefile,
2964         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2965         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2966
2967 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2968
2969         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2970         Frieder) and clarified the default code optimization mode
2971
2972 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2973
2974         * src/SDCC.lex (doPragma, process_pragma),
2975         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2976         "opt_code_size", and "opt_code_balanced"
2977         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2978         regrouped options by category, added support for category headers
2979         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2980         and "--opt-code-size"
2981         * doc/sdccman.lyx: documented these new options and pragmas
2982         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2983         preference into account
2984
2985 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2986
2987         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2988           geniCodePreDec): Fixed bug 904237 by generating a warning
2989         * src/SDCCerr.h,
2990         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2991
2992 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2993
2994         * src/pic/device.c : When no max ram set validate full memory range.
2995         * src/pic/pcode.c,
2996         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2997
2998 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2999
3000         * device/lib/_gptrget.c,
3001         * device/lib/_gptrput.c: updated comment
3002         * device/lib/calloc.c,
3003         * device/lib/free.c,
3004         * device/lib/malloc.c,
3005         * device/lib/realloc.c: added LGPL, made them reentrant-safe
3006         * src/SDCCcse.c (cseBBlock),
3007         * src/SDCCicode.c (printOperand, geniCodeArray),
3008         * src/SDCCicode.h (struct operand): fixed bug 868103
3009         * support/regression/tests/bug-868103.c: added
3010         * src/SDCCast.c (searchLitOp),
3011         * src/SDCCcse.h (struct cseDef),
3012         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3013         * src/SDCCicode.h (struct operand),
3014         * src/SDCCsymt.h (struct sym_link),
3015         * src/avr/gen.c (hasInc),
3016         * src/ds390/gen.c (hasInc),
3017         * src/hc08/gen.c (genPlusIncr, hasInc),
3018         * src/mcs51/gen.c (hasInc),
3019         * src/pic16/glue.c (pic16_printIvalChar),
3020         * src/pic16/ralloc.c (regWithIdx),
3021         * src/xa51/gen.c (hasInc) : removed warnings
3022         * src/SDCCast.c (createBlock): added comment ???
3023         * src/hc08/ralloc.c: updated comments
3024
3025 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3026
3027         * doc/sdccman.lyx: updated section on switch statements, added
3028         section about semaphore locking
3029         * doc/Makefile: added option -info for latex2html
3030         * device/lib/_gptrget.c,
3031         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3032
3033 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3034
3035         * src/pic/device.h,
3036         * src/pic/device.c,
3037         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3038          maxram is less than 0x100.
3039
3040 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3041
3042         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3043
3044 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3045
3046         * src/port.h,
3047         * src/mcs51/main.c,
3048         * src/ds390/main.c,
3049         * src/z80/main.c,
3050         * src/hc08/main.c,
3051         * src/pic/main.c,
3052         * src/pic16/main.c,
3053         * src/avr/main.c,
3054         * src/xa51/main.c
3055         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3056         a jump table is the best form for a switch statement, including
3057         automatic insertion of missing cases to make the case range
3058         continuous. Developed in collaboration with Frieder Ferlemann.
3059
3060 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3061
3062         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3063         accumulator result if it needs sign extension
3064
3065 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3066
3067         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3068
3069 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3070
3071         * device/lib/gbz80/printf.c,
3072         * device/lib/z80/printf.c: removed define for NULL
3073
3074 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3075
3076         * as/xa51/xa_link.c,
3077         * device/examples/ds390/ow390/ad26.c,
3078         * device/examples/ds390/ow390/cnt1d.c,
3079         * device/examples/ds390/ow390/counter.c,
3080         * device/examples/ds390/ow390/ds2480.h,
3081         * device/examples/ds390/ow390/ds2480ut.c,
3082         * device/examples/ds390/ow390/findtype.c,
3083         * device/examples/ds390/ow390/gethumd.c,
3084         * device/examples/ds390/ow390/owllu.c,
3085         * device/examples/ds390/ow390/ownetu.c,
3086         * device/examples/ds390/ow390/swt12.c,
3087         * device/examples/ds390/ow390/swtloop.c,
3088         * device/examples/ds390/ow390/temp.c,
3089         * device/examples/ds390/ow390/temp10.c,
3090         * device/examples/ds390/ow390/thermo21.c,
3091         * device/examples/ds390/ow390/tinilnk.c,
3092         * device/examples/ds390/ow390/tstfind.c,
3093         * device/examples/serialcomm/windows/serial.cpp,
3094         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3095         * device/include/reg51.h: fixed line endings for cvs
3096
3097 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3098
3099         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3100         packRegsForAccUse, packRegisters): new accumulator register
3101         packing algorithm
3102         * support/regression/ports/hc08/support.c (_putchar): suppress
3103         warning of unused variable
3104         * src/SDCCicode.c: added SWAP entry to codeTable
3105
3106 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3107
3108         * device/lib/sprintf.c: forgot to add this file before previous commit
3109
3110 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3111
3112         * src/pic16/gen.c (genPackBits): added operand right in function
3113         parameters, load result directly if p_type is POINTER (that is
3114         called by genNearPointerSet)
3115         * (genUnPackBits): added operand left in function parameters,
3116         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3117         FSR0 if accessing bitfields,
3118
3119 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3120
3121         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3122           _print_format; updated printf, sprintf, vsprintf
3123         * device/include/asm/default/features.h: corrected comment/define
3124         * device/lib/Makefile.in: added sprintf.c
3125         * device/lib/libsdcc.lib: added sprintf module
3126         * device/lib/printf_large.c,
3127         * device/lib/vprintf.c,
3128         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3129           into these 3 files
3130         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3131         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3132         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3133           hc08 test
3134         * support/regression/tests/zeropad.c: define idata as data for hc08
3135
3136 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3137
3138         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3139         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3140         labels are referenced at least once (even if a reference is not found)
3141         * src/hc08/gen.c (emitcode): set isComment flag for comments
3142         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3143         loads), rules 6a..6b (optimize jumps to return)
3144
3145 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3146
3147         * device/lib/acosf.c (acosf),
3148         * device/lib/asinf.c (asinf),
3149         * device/lib/atanf.c (atanf),
3150         * device/lib/ceilf.c (ceilf),
3151         * device/lib/cosf.c (cosf),
3152         * device/lib/coshf.c (coshf),
3153         * device/lib/cotf.c (cotf),
3154         * device/lib/fabsf.c (fabsf),
3155         * device/lib/floorf.c (floorf),
3156         * device/lib/log10f.c (log10f),
3157         * device/lib/logf.c (logf),
3158         * device/lib/sinf.c (sinf),
3159         * device/lib/sinhf.c (sinhf),
3160         * device/lib/sqrtf.c (sqrtf),
3161         * device/lib/tanf.c (tanf),
3162         * device/lib/tanhf.c (tanhf),
3163         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3164         replaced all instances of "reentrant" in the library functions
3165         defined in math.h with this macro.
3166         * support/regression/tests/float_trans.c: reenabled test for hc08
3167
3168 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3169
3170         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3171         erroneously deleted
3172
3173 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3174
3175         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3176         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3177         multi-byte volatile operands are used
3178         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3179         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3180         initialization to area GSINIT0 so that it would always precede
3181         any static initializers in GSINIT
3182         * support/regression/tests/zeropad.c: fixed idata define for hc08
3183         * support/regression/tests/bug-927659.c,
3184         * support/regression/tests/float_trans.c: disabled tests for hc08
3185         pending missing library routines
3186         * .version: increased version number to 2.4.4 - hc08 port now passes
3187         regression tests
3188
3189
3190 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3191
3192         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3193         * Makefile.common.in,
3194         * as/Makefile,
3195         * as/hc08/Makefile.in,
3196         * as/mcs51/Makefile.in,
3197         * as/z80/Makefile.in,
3198         * debugger/mcs51/Makefile.in,
3199         * device/include/Makefile.in,
3200         * device/lib/Makefile.in,
3201         * doc/Makefile,
3202         * link/Makefile,
3203         * link/z80/Makefile.in,
3204         * packihx/Makefile.in,
3205         * sim/ucsim/main_in.mk,
3206         * sim/ucsim/avr.src/Makefile.in,
3207         * sim/ucsim/doc/Makefile.in,
3208         * sim/ucsim/gui.src/serio.src/Makefile.in,
3209         * sim/ucsim/hc08.src/Makefile.in,
3210         * sim/ucsim/s51.src/Makefile.in,
3211         * sim/ucsim/xa.src/Makefile.in,
3212         * sim/ucsim/z80.src/Makefile.in,
3213         * src/Makefile.in,
3214         * support/cpp2/Makefile.in,
3215         * support/librarian/Makefile,
3216         * support/makebin/Makefile: added DESTDIR to the install path proposed
3217         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3218         * doc/sdccman.lyx: added DESTDIR documentation
3219
3220 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3221
3222         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3223         instruction for interrupt handlers, use fast returns when returning
3224         from high priority interrupts
3225
3226 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3227
3228         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3229         code generation
3230         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3231         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3232         bugs, ported much of Bernhard's code from mcs51
3233         * src/mcs51/gen.c (genSend),
3234         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3235         than one when calling a reentrant function
3236         * device/lib/_mullong.c: defined an alternate struct layout for big
3237         endian ports (hc08)
3238
3239 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3240
3241         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3242         test
3243
3244 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3245
3246         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3247         are sane and complete before asking the port its prefered parameter
3248         passing method (fixes bug #1017633)
3249         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3250         and _ret3
3251
3252 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3253
3254         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3255         problem in bitfields >= 8 bits.
3256
3257 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3258
3259         * src/SDCCsymt.c: undid changes that were not meant to be committed
3260
3261 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3262
3263         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3264
3265 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3266
3267         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3268           copied and wrong bit got inverted
3269
3270 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3271
3272         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3273         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3274         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3275         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3276         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3277         assignments to bitfields at known addresses
3278         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3279         reads from bitfields at known addresses
3280         * src/hc08/ralloc.c (packRegisters),
3281         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3282         genhc08Code): optimize pointer get values used as conditionals
3283         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3284         and branch
3285
3286 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3287
3288         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3289         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3290         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3291         as conditionals
3292
3293 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3294
3295         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3296
3297 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3300         related problems
3301
3302 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3303
3304         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3305
3306 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3307
3308         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3309         mcs51 port
3310
3311 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3312
3313         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3314
3315 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3316
3317         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3318         cases use more compact code.
3319
3320 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3321
3322         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3323
3324 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3325
3326         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3327
3328 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3329
3330         * src/SDCCsymt.h,
3331         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3332         parameter of changePointer() from symbol* to sym_link*
3333         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3334         * src/SDCCsymt.c (compareType): void* type is castable to other
3335         pointers, but not necesarily an exact match.
3336         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3337         is no longer blindly treated as an exact match.
3338         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3339
3340 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3341
3342         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3343
3344 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3345
3346         * src/pic/gen.c,
3347         * src/pic/pcode.c,
3348         * src/pic/ralloc.h,
3349         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3350
3351 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3352
3353         * src/pic/device.c,
3354         * src/pic/device.h,
3355         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3356
3357 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3358
3359         * src/mcs51/gen.c (emitcode): fixed bug #992819
3360
3361 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3362
3363         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3364           there's no need to make it worse
3365
3366 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3367
3368         * src/mcs51/ralloc.c (deassignLR),
3369         * src/ds390/ralloc.c (deassignLR),
3370         * src/hc08/ralloc.c (deassignLR),
3371         * src/z80/ralloc.c (deassignLR),
3372         * src/pic/ralloc.c (deassignLR),
3373         * src/pic16/ralloc.c (deassignLR),
3374         * src/avr/ralloc.c (deassignLR),
3375         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3376         rlivePoint): fixed another part of bug #971834
3377
3378 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3379
3380         * src/z80/main.c: enabled "critical" keyword
3381         * src/z80/mappings.i,
3382         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3383         functions (fixes bug #979646)
3384         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3385
3386 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3387
3388         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3389           such as c:\mydir.
3390
3391 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3392
3393         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3394           doesn't disable too much optimizations
3395
3396 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3397
3398         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3399
3400 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3401
3402         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3403
3404 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3405
3406         * src/pic/gen.c tidied up tabs
3407         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3408         * src/pic/main.c tidied up tabs
3409         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3410         * src/pic/pcoderegs.c tidied up tabs
3411         * src/pic/ralloc.c tidied up tabs
3412
3413 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3414
3415         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3416         to S_FIXED for pic16 port and when symbol is not in level 0,
3417         allocate for S_REGISTER storage class and pic16 port, too,
3418         * src/pic16/device.h: prototype for checkSym,
3419         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3420         * (pic16_assignConfigWordValue): test the value and the mask to
3421         validate that the value is suitable for the configuration word,
3422         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3423         collect extern declared symbols, don't emit symbol twice, check
3424         first if symbol is in publics set first,
3425         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3426         * added command line '--fstack' which enables an experimental
3427         feature for stack access, too buggy to be used yet...
3428         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3429         * (pic16_allocDirReg): when register has storage class S_REGISTER
3430         allocate in pic16_dynAccessRegs,
3431         * device/include/pic16/pic18f????.h: modified configuration word
3432         naming convention, words started as CONFIG0H but should be CONFIG1H
3433
3434 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3435
3436         * device/include/mcs51reg.h: fixed bug 970993
3437
3438 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3439
3440         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3441         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3442         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3443         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3444         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3445         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3446           error/warning numbers,
3447           added function setWarningDisabled()
3448         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3449         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3450           _memcmp.c _memmove.c calloc.c realloc.c free.c
3451         * support/regression/tests/malloc.c: added tests for new functionality
3452         * support/regression/tests/zeropad.c: added tests for truncated initializers
3453           and initialized char arrays starting with '\x0'
3454         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3455
3456 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3457
3458         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3459
3460 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3461
3462         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3463         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3464         peephole 177.e. Thanks to anonymous
3465
3466 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3467
3468         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3469         function isn't used in the source but referenced as a
3470         variable initializer then declare it as extern in .asm file
3471
3472 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3473
3474         * .version: increased version number to 2.4.3
3475
3476         Adding version extension according to ChangeLog CVS revision
3477         * src/Makefile.in (target all): added dependency 'version.h'
3478         * (rule version.h): added rule to create version.h from ChangeLog,
3479         * (rule dep): added dependency version.h,
3480         * src/version.awk: AWK script to create version.h
3481         * src/SDCCdwarf2.c (dwWriteModule),
3482         * src/SDCCglue.c (initialComments),
3483         * src/SDCCmain.c (printVersionInfo): modified to write after
3484         version string the version extension number,
3485         * src/SDCCutil.c: included "version.h"
3486         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3487         number,
3488         * src/SDCCutil.h: added prototype for getBuildNumber
3489
3490         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3491         includeDirsSet, too,
3492         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3493         const char [] is found in function prototype...
3494
3495         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3496         moving to WREG with source is already in WREG,
3497         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3498         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3499         * (aopForSym): stack'ed symbols are partially supported, added
3500         if-clause to support symbols in FARSPACE,
3501         * (sameRegs): added test for AOP_ACC to see if registers are same,
3502         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3503         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3504         * (pic16_popRegFromString): will not allocate a new register if it
3505         doesn't find one by name, bug may have introduced...
3506         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3507         * (genIpush): revived to use pic16 port's stack,
3508         * (genAddrOf): added incomplete case for stack'ed operand,
3509         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3510         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3511         can handle multibyte operands,
3512         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3513         * (pic16initialComments): added message for MPLAB compatibility
3514         mode enabled,
3515         * src/pic16/main.h: prototype for pic16_mplab_comp,
3516         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3517         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3518         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3519         because of increased complexity of procedure,
3520         * (_process_pragma): stack pragma changed to format 'stack pos len',
3521         emit symbol '_stack_end' to conform with gplink,
3522         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3523         to search for register,
3524         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3525         PO_GPR_REGISTER,
3526         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3527         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3528         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3529         case for PO_GPR_REGISTER,
3530         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3531         dies, the new era is ahead !...
3532         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3533         pic16_dynInternalRegs,
3534         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3535         * (pic16_allocDirReg): minor optimizations and bug fixes,
3536         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3537
3538         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3539         load stack and frame pointer with address of 'stack_end' symbol
3540
3541 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3542
3543         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3544         without source code but only variable initializers
3545
3546 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3547
3548         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3549         external are not declared as extern to reduce overhead while linking
3550
3551 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3552
3553         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3554
3555 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3556
3557         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3558           Yee Keat for the patch
3559         * src/SDCCast.c (decorateType): fixed bug #979599
3560         * src/ds390/gen.h: removed local fReturnSizeDS390
3561         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3562         * src/ds390/gen.c (genAnd, genOr, genXor),
3563         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3564
3565 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3566
3567         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3568         add relFilesSet to $3, manipulate $2 to handle linking of object
3569         files without source files in command line,
3570         * device/include/pic16 (all headers): added ID location macros,
3571         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3572         entries for ID location bytes,
3573         * (pic16_assignIdByteValue): NEW,
3574         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3575         added field dumpcalltree to pic16_options_t,
3576         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3577         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3578         emitting rFalseIfx label after check_carry label,
3579         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3580         pic16_emitDIRegs), NEW
3581         * (pic16glue): dump .calltree file when option --calltree found,
3582         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3583         * (_pic16_genAssemblerPreamble): emit ID locations after
3584         configuration registers,
3585         * (pic16_linkCmd): modifications of the link command,
3586         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3587         * (pic16_pCodeInitRegisters): don't init stack registers,
3588         * (pic16_findPrevInstruction): fixed bug,
3589         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3590         bug with immediate registers,
3591         * (buildCallTree): traces stack push and pop,
3592         * (pct2): dump also stack usage for each function,
3593         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3594         * (pic16_allocDirReg): various modifications,
3595         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3596         fixed to 1,
3597
3598 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3599
3600         * src/pic16/pcode.c: removed buggy double colon
3601
3602 2004-07-01 Borut Razem <borut.razem AT siol.net>
3603
3604         * support/scripts/sdcc.nsi: added include/pic16 to setup
3605
3606 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3607
3608         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3609         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3610         target 'clean',
3611         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3612         specific command line arguments. Also added sample lkr script
3613         for placing a variable at a specific memory bank.
3614         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3615         at a specific memory bank,
3616         * (pic16_dump_isection): fixed bug which caused string literals to
3617         be omitted when dumping idata section,
3618         * (pic16_groupRegistersInSection): added code to handle registers
3619         in specific memory banks,
3620         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3621         public, all references are renamed too,
3622         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3623         AOP_DPTR2,
3624         * (pic16_storeForReturn): added case to handle when dest is WREG,
3625         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3626         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3627         pic16_rel_udata, check to see if that register is marked as being
3628         a member of a specific memory bank,
3629         * (pic16_printIvalCharPtr): added code to add string literals either
3630         to code or the idata sections,
3631         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3632         also accept the 'udata' pragma,
3633         * src/pic16/main.h: new structure types sectName and sectSym
3634         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3635         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3636         * (pic16_findPrevInstruction): fixed, it returned nothing,
3637         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3638         instruction combinations,
3639         * (pic16_FixRegisterBanking): heavily reorganised,
3640         * (pic16_AnalyzeBanking): if generating banksel directives is
3641         disabled, then don't call FixRegisterBanking at all,
3642         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3643         completely removed,
3644         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3645
3646 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3647
3648         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3649         Phuah Yee Keat <yk.phuah AT nestac.com>
3650
3651 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3652
3653         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3654         correctly the IVT even if it is relocated to some other location
3655
3656 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3657
3658         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3659         * device/include/pic16/pic18f2220.h: NEW,
3660         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3661         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3662         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3663         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3664         nodefaultlibs, ivt_loc is the location of the interrupt vector
3665         table, and nodefaultlibs signs that default libraries should not be
3666         linked in link stage,
3667         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3668         according to --ivt-loc argument,
3669         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3670         when pragma stack is found,
3671
3672 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3673
3674         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3675         256 (range check), 257 (do while), 258.a-f (bit banging
3676         f.e. on 3-wire SPI bus)
3677
3678 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3679
3680         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3681         variables used exclusively within a loop
3682
3683 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3684
3685         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3686
3687 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3688
3689         * src/SDCClrange.c (computeClash): fixed bug #971834
3690
3691 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3692
3693         * src/mcs51/gen.c (genCmp): fixed bug #975903
3694         * src/hc08/gen.c (operandsEqu),
3695         * src/ds390/gen.c (operandsEqu),
3696         * src/z80/gen.c (operandsEqu),
3697         * src/pic/gen.c (operandsEqu),
3698         * src/pic16/gen.c (operandsEqu),
3699         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3700         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3701
3702 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3703
3704         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3705
3706 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3707
3708         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3709         default case in switch statement,
3710         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3711         to eliminate problem with initialisation of pointers, but problem
3712         still exists,
3713         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3714         * (emitStaticSegment): removed various lines emitting debug info,
3715         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3716         added processor registers for utilizing EEPROM,
3717         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3718         configurable and set 8
3719
3720 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3721
3722         * .version: increased version number to 2.4.2,
3723
3724         Cumulative patch for pic16 port
3725         * src/pic16/device.c: changed scheme to dump initial values for
3726         variables in idata segment, all print_idata* functions were removed,
3727         now the pic16_printIval* will be called,
3728         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3729         * _pic16_printPointerType, pic16_printPointerType,
3730         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3731         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3732         NEW, similar to the respective functions in SDCCglue.c,
3733         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3734         way, emitting hex bytes,
3735         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3736
3737 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3738
3739         * src/avr/ralloc.c (serialRegAssign),
3740         * src/xa51/ralloc.c (serialRegAssign),
3741         * src/pic/ralloc.c (serialRegAssign),
3742         * src/pic16/ralloc.c (serialRegAssign),
3743         * src/hc08/ralloc.c (serialRegAssign),
3744         * src/z80/ralloc.c (serialRegAssign),
3745         * src/ds390/ralloc.c (serialRegAssign),
3746         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3747
3748 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3749
3750         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3751         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3752
3753 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3754
3755         Cumulative patch for pic16 port:
3756         * src/pic16/device.h (typedef PIC16_device) modified fields for
3757         defining microcontrollers,
3758         * src/pic16/device.c: added new info for all devices in Pics16 array,
3759         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3760         to be optimised out by the pCode optimiser,
3761         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3762         specially, bug reported by G.M. Gallant,
3763         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3764         as force'd so that cannot be optimised out by pCode optimiser,
3765         * src/pic16/pcode.c,
3766         * src/pic16/pcodepeeph.c,
3767         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3768         they are disabled by default, but can be enabled explicit with
3769         command argument --denable-peeps, for testing,
3770         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3771         --pomit-ivt in COMPILE_FLAGS
3772
3773 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3774
3775         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3776           compilation on MSVC
3777
3778 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3779
3780         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3781
3782 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3783
3784         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3785         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3786
3787 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3788
3789         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3790         would only assign 0x300001 register.
3791
3792 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3795         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3796
3797 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3798
3799         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3800         for ds80c400
3801         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3802         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3803         added peephole 254 (left shift), 255 (jump table)
3804
3805 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3806
3807         * device/lib/Makefile.in: removed comment line with model-pic16,
3808         * (target port-specific-objects-pic16): the libraries and objects
3809         are copied to the build directory form the device/lib/pic16/bin
3810         directory
3811
3812         Cumulative patch concerning pic16 port:
3813         * library directory has been re-organized,
3814         * added support for PIC18F1220,
3815         * added headers and library sources for chips 18f1220,18f6520,
3816         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3817
3818         * configuration registers setting has changed, now each supported
3819         device has a complete description of the registers it uses,
3820         * all initialisations are moved to idata sections, these section
3821         can be absolute or relocatable,
3822         * fixed initialisation of codespace variables,
3823         * fixed warning about PCLATU and gpsim,
3824         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3825         * (genAssign): use table reads when assigning from variables in codespace,
3826         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3827         char/int variables placed in codespace,
3828         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3829         registers set in .asm file, no need for --pomit-config-words anymore,
3830         * (pic16glue): some 8051 legacy segments are commented out
3831         (to be removed completely),
3832         * added support for alternative assembler and linker with --asm=
3833         and --link= command line arguments,
3834         * peepholes are disabled automatically in the port, no need to
3835         specify on command line,
3836         * port supports natively char/int/long multiplication, but converts
3837         all divisions to support functions,
3838         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3839         to the file set in variable $2,
3840         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3841         strings in ASCII format and not in hex,
3842         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3843         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3844         allocate proper register if iCodes aren't temporary,
3845
3846 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3847
3848         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3849
3850 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3851
3852         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3853         is commented out
3854
3855 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3856
3857         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3858         computed address is reused
3859         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3860         multi-byte bitfields
3861
3862 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3863
3864         * src/z80/gen.c: (genArrayInit): must check for pointers too
3865
3866 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3867
3868         * support/regression/tests/zeropad.c: never meant to commit the
3869           nestedstruct test: removed, added check for GCC version
3870
3871 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3872
3873         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3874         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3875         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3876           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3877           bugs 928906 and 954082 half-empty initializers
3878         * src/SDCCsymt.h,
3879         * src/SDCCsymt.c (getAllocSize): added for above fix
3880         * src/z80/gen.c (genArrayInit): fixed bug 741044
3881         * support/regression/tests/zeropad.c: added tests
3882
3883 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3884
3885         * src/pic16/device.c (pic16_dump_section): corrected bug which
3886         caused some symbols of the libraries to be misplaced
3887
3888 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3889
3890         * src/pic16/glue.c,
3891         * src/pic16/ralloc.h,
3892         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3893         to fix conflict with pic port
3894
3895 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3896
3897         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3898         externs configuration variables,
3899         * src/pic16/ralloc.h,
3900         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3901         prototype in header, commented out some debug messages
3902
3903 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3904
3905         * src/pic16/glue.c,
3906         * src/pic16/main.c,
3907         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3908         for gpasm COFF object generation. Thanks to D. Hawkins for
3909         his patch info
3910
3911 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3912
3913         * src/ds390/main.c,
3914         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3915         Brock for spotting this)
3916         * src/ds390/gen.c (genEndFunction),
3917         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3918         interrupt handler and critical. Disable push/pop optimizations when
3919         peephole optimizations disabled.
3920
3921 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3922
3923         Updated pic16 library sources and headers.
3924         * device/lib/pic16/pic18f*/ ,
3925         * device/include/pic16/*.h: modified to handle structured SFR
3926         definitions
3927
3928 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3929
3930         * src/port.h (PORT structure): added hook initPaths, now each
3931         port can declare its own default search paths,
3932         which can been seen with the --print-search-dirs option,
3933         see pic16 port for example,
3934         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3935         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3936         * (doPrintSearchDirs): NEW, replaces in a central manner the
3937         printing of search dirs which was split in set*Paths functions,
3938         * (main): added call to port->initPaths and doPrintSearchDirs,
3939         * src/avr/main.c,
3940         * src/ds390/main.c,
3941         * src/hc08/main.c,
3942         * src/izt/i186.c,
3943         * src/izt/tlcs900h.c,
3944         * src/mcs51/main.c,
3945         * src/pic/main.c,
3946         * src/pic16/main.c: modified port structures to reflect addition of
3947         initPaths hook,
3948
3949         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3950         * (pic16_dump_section): for registers in same address reserve memory once,
3951         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3952         to no_banksel,
3953         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3954         result is greater in size than right or left,
3955         * (pic16_genUMult8X8_8): there are some cases where the result can
3956         be 16 bits size, so handle these,
3957         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3958         * (pic16_outBitC): modified to emit pcodes,
3959         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3960         or not,
3961         * (genDivOneByte): implemented algorithm to divide 8-bits,
3962         * (genCmp): uncommented goto, but issues still exist,
3963         * (genAnd): fixed a bug with variables >8bits,
3964         * (genPackBits): optimization added that uses BCF/BSF to change a
3965         single bit,
3966         * (genAssign): fixed bug when assigning floating point literals,
3967         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3968         __sdcc_gsinit_startup label,
3969         * src/pic16/main.c (_pic16_init): removed search directory
3970         initialisations,
3971         * (_pic16_initPaths): NEW, used to initialise search directories,
3972         * (_hasNativeMulFor): support functions for all except char/int
3973         multiplication, and char division,
3974         * (PIC16_port struct): modified entry for native mul support,
3975         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3976         no_banksel option,
3977         * (buildCallTree): call to register_usage is ifdef'ed out,
3978
3979 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3980
3981         * device/include/string.h: applied Stas Sergeev's patch to make this
3982         header file compatible with the preprocessor -Wundef option
3983         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3984         failure (fixes bug #941458)
3985
3986 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3989         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3990         that the variable, not the function, should be static
3991         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3992         to be consistent with non-literal case
3993
3994 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3995
3996         * src/SDCCast.c (isConformingBody): fixed bug #949967
3997         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3998         convilong): fixed bug #952086
3999
4000 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4001
4002         * src/SDCCmem.c (allocVariables): fixed bug #955321
4003
4004 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4005
4006         * src/hc08/main.c (_hc08_genAssemblerEnd),
4007         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
4008         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
4009         completely eliminated the use of a temporary file
4010         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
4011         when more than one file linked
4012         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4013
4014 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4015
4016         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4017         which fixes bug #543481
4018         * support/regression/tests/bug-751703.c: fixed comments left from a
4019         cut and paste error
4020         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4021         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4022         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4023         scopes
4024         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4025         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4026         are now changed to underscores in moduleName
4027
4028 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4029
4030         * as/mcs51/lkmem.c: better fix for bug #954173
4031
4032 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4033         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4034
4035         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4036         * device/include/c8051f000.h,
4037         * device/include/c8051f120.h,
4038         * device/include/c8051f300.h,
4039         * device/include/c8051f310.h,
4040         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4041         PWM16) and detab'ed
4042
4043 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4044
4045         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4046         and mailing lists, doc'ed --no-peep-comments, removed reference
4047         to knoppix (newest version has no LyX/LaTeX), other minor changes
4048         * src/SDCCglue.c (glue): save 2 bytes stack space with
4049         option --main-return. The ljmp could probably be avoided too
4050
4051 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4052
4053         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4054
4055 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4056
4057         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4058         * src/SDCCopt.c (isLocalWithoutDef),
4059         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4060         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4061         (credit to Maarten Brock for patch #949363, on which this is based)
4062         * support/regression/tests/bug-751703.c: some test cases of extern used
4063         within inner scopes.
4064
4065 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4068         SPEC_STRUCT
4069         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4070         struct definitions
4071         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4072         dwWriteLabel): fix to create valid debugger symbols even when
4073         the module name has non-alphanumeric symbols in it
4074         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4075         when a variable's allocation has been optimized away
4076
4077
4078 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4079
4080         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4081         * src/hc08/main.c,
4082         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4083         * src/mcs51/main.c,
4084         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4085         * src/ds390/main.c,
4086         * src/z80/gen.c (z80_emitDebuggerSymbol),
4087         * src/z80/main.c,
4088         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4089         * src/pic/main.c,
4090         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4091         * src/pic16/main.c,
4092         * src/avr/gen.c (avr_emitDebuggerSymbol),
4093         * src/avr/main.c,
4094         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4095         * src/xa51/main.c,
4096         * src/SDCCdebug.c (emitDebuggerSymbol),
4097         * src/SDCCdebug.h,
4098         * src/port.h: added a debugger struct to the port struct. Added a
4099         callback for defining debugger symbols
4100
4101         * src/SDCCast.c (createLabel),
4102         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4103         with isitmp = 1
4104         * src/SDCCicode.h,
4105         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4106         iCode back to the ast for the function
4107
4108         * src/hc08/ralloc.c (hc08_assignRegisters),
4109         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4110         unneeded fields from the regs struct.
4111         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4112         pushReg() & pullReg() functions instead of emitcode()
4113
4114         * src/hc08/gen.c (genLabel, genhc08Code),
4115         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4116
4117         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4118         debugger hooks
4119
4120         * src/hc08/gen.c (genEndFunction, genhc08Code),
4121         * src/hc08/gen.h,
4122         * src/mcs51/gen.c (genEndFunction, gen51Code),
4123         * src/mcs51/gen.h,
4124         * src/ds390/gen.c (genEndFunction, gen390Code),
4125         * src/ds390/gen.h,
4126         * src/z80/gen.c (genEndFunction, genZ80Code),
4127         * src/z80/gen.h,
4128         * src/z80/z80.h,
4129         * src/pic/gen.c (genEndFunction, genpic14Code),
4130         * src/pic/gen.h,
4131         * src/pic16/gen.c (genEndFunction, genpic16Code),
4132         * src/pic16/gen.h,
4133         * src/avr/gen.c (genEndFunction, genAVRCode),
4134         * src/avr/gen.h,
4135         * src/xa51/gen.c (genEndFunction, genXA51Code),
4136         * src/xa51/gen.h,
4137         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4138         specific code to cdbFile.c and out of the backend code generators
4139
4140         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4141         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4142         starting address is now 0
4143
4144         * as/hc08/asm.h,
4145         * as/hc08/m08pst.c,
4146         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4147         assembler directive for DWARF support
4148         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4149
4150         * src/src.dsp,
4151         * src/Makefile.in,
4152         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4153
4154 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4155
4156         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4157         and inappropriate peephole optimization in jump tables
4158
4159 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4160
4161         * as/hc08/m08pst.c,
4162         * src/SDCCglue.c: sdccopt works for the hc08 port now
4163
4164 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4165
4166         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4167
4168 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4169
4170         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4171
4172 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4173
4174         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4175         rules
4176         * src/SDCCmain.c,
4177         * src/SDCCglobl.h,
4178         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4179         comments from the peephole optimizer replacement rules
4180         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4181         symbols
4182         * src/SDCCcse.c (updateSpillLocation),
4183         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4184         equivalents
4185         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4186         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4187         objects far pointers
4188
4189 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4190
4191         * src/SDCCsymt.h: a missing part of my last change
4192         * src/pic/ralloc.c (regTypeNum),
4193         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4194
4195 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4196
4197         * src/SDCCicode.h,
4198         * src/SDCCicode.c (aggrToPtrDclType),
4199         * src/SDCCptropt.h,
4200         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4201         ptrPseudoSymConvert),
4202         * src/pic/ralloc.c (regTypeNum),
4203         * src/pic16/ralloc.c (regTypeNum),
4204         * src/hc08/ralloc.c (regTypeNum),
4205         * src/ds390/ralloc.c (regTypeNum),
4206         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4207         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4208
4209 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4210
4211         * link/z80/lkmain.c (afile),
4212         * as/hc08/lkmain.c (afile),
4213         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4214         prevent a pointer problem when a filename has no directory and
4215         no extension specified.
4216
4217 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4218
4219         * link/z80/lkmain.c (afile): allow periods in directory names
4220         * link/z80/lkmain.c (afile),
4221         * as/mcs51/lkmain.c (afile),
4222         * as/hc08/lkmain.c (afile): allow linker script file to have an
4223         extension other than ".lnk"
4224         * link/z80/lklex.c (getfid),
4225         * link/z80/lkmain.c (parse),
4226         * as/mcs51/lklex.c (getfid),
4227         * as/mcs51/lkmain.c (parse),
4228         * as/hc08/lklex.c (getfid),
4229         * as/hc08/lkmain.c (parse): Support comments in the linker script
4230         file on lines by themselves and after filenames
4231
4232 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4233
4234         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4235
4236 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4237
4238         * src/z80/peeph-z80.def: removed some peephole rules that don't
4239         work with multibyte arithmetic (fixed bug #937126)
4240         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4241         to registers and not global variables
4242         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4243         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4244         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4245         checking for assignments not internally generated (fixed bug #931895)
4246         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4247         structure member (fixed bug #930072)
4248
4249 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4250
4251         * src/SDCCmain.c (linkEdit),
4252         * src/hc08/main.c (_hc08_parseOptions),
4253         * as/hc08/Makefile.in,
4254         * as/hc08/aslink.h,
4255         * as/hc08/asm.h,
4256         * as/hc08/m08pst.c,
4257         * as/hc08/lkrloc.c (relr, rele),
4258         * as/hc08/lkarea.c (lnkarea)
4259         * as/hc08/lkmain.c (afile, parse),
4260         * as/hc08/lkelf.c: support for ELF output
4261         * as/hc08/lks19.c (s19),
4262         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4263
4264 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4265
4266         * as/mcs51/lkihx.c: Fixed bug #899105.
4267
4268 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4269
4270         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4271         .dsp files from Unix to DOS.
4272
4273 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4274
4275         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4276         function pointers; we have been compliant for several months now.
4277         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4278         change that was accidently commented out
4279         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4280         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4281         bug #922319
4282
4283 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4284
4285         * src/hc08/gen.c: output of all of the internal debugging information
4286         is now controlled by the D() macro; it is disabled by default
4287
4288 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4289
4290         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4291         harder to keep the same registers during a CAST iCode
4292         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4293         long via int can be done in a single cast, if the signedness is
4294         correct.
4295         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4296         putchar() in tinibios.c in ds390's library
4297
4298 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4299
4300         * src/SDCCast.c (decorateType): fixed bug #898889,
4301         cast result of a literal complement too
4302         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4303         fixed check for bitfields
4304
4305 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4306
4307         * src/SDCCicode.c (geniCodeLogic): made it static,
4308         (geniCodeLogicAndOr): added in order to fix bug #905492,
4309         (ast2iCode): fixed bug #905492
4310         * support/regression/tests/bug-905492.c: added
4311         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4312         (processParms): fixed bug #927659: don't copy parms, this will clear
4313         decorated flag
4314         * support/regression/tests/bug-927659.c: added
4315
4316 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4317
4318         * src/SDCCast.c (addCast): don't cast float to char
4319         * device/lib/libsdcc.lib: added _memmove
4320
4321 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4322
4323         * device/lib/large/Makefile: fixed parallel execution by
4324         replacing `make` by `$(MAKE)`
4325
4326 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4327
4328         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4329         offsets (fixes bug #923936)
4330
4331 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4332
4333         * device/lib/small/Makefile: fixed parallel execution by
4334         replacing `make` by `$(MAKE)`
4335
4336 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4337
4338         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4339
4340 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4341
4342         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4343         * src/regression/Makefile: Regression test was not running.
4344
4345 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4346
4347         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4348         complement if possible
4349         * src/SDCCval.c (valComplement),
4350         * src/SDCCicode.c (operandOperation): fixed complement of literal
4351         * support/regression/tests/onebyte.c (testComplement): added
4352
4353 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4354
4355         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4356         return an optimized tree; actually replace actParm with the new tree
4357         * src/SDCCast.h: added some parantheses to remove side effects
4358         * support/regression/tests/bug-920866.c
4359
4360 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4361         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4362         Bit operands were not being handled properly in the pic14 port.
4363         (now src/regression/add.c passes again).
4364
4365 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4366
4367         * src/SDCC.y (labeled_statement): case and default no longer require
4368         a following statement (RFE #893037)
4369
4370 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4371
4372         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4373         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4374         disabled (fixes bug #916294)
4375         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4376         "mov a,acc"; patch provided by Lenny Story
4377         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4378
4379 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4380
4381         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4382         functions
4383         * src/ds390/gen.c (genFunction, genEndFunction),
4384         * src/ds390/ralloc.c (ds390_assignRegisters),
4385         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4386         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4387         pushed if there are parameters passed on the stack. Also, a cleaner
4388         way to decide if r0/r1 should be pushed/popped. (Together they fix
4389         bug #918693)
4390
4391 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4392
4393         * doc/sdccman.lyx,
4394         * device/lib/mcs51/crtpagesfr.asm,
4395         * device/lib/mcs51/crtxinit.asm,
4396         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4397         to avoid confusion with Si Lab's SFRPAGE register.
4398
4399 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4400
4401         * src/SDCCglue.c (emitMaps): allow public sfr variables
4402         * src/SDCCglue.c (initialComments): include compiler build date
4403         with compiler version and put the timestamp of the generated
4404         assembly file on a serperate line to be less confusing.
4405         * src/port.h: added genInitStartup hook
4406         * src/avr/main.c,
4407         * src/ds390/main.c,
4408         * src/hc08/main.c,
4409         * src/pic/main.c,
4410         * src/pic16/main.c,
4411         * src/xa51/main.c,
4412         * src/z80/main.c: genInitStartup initialize as NULL (default to
4413         historical behaviour)
4414         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4415         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4416         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4417         library instead of hard coding it into the compiler.
4418         * support/regression/ports/mcs51-stack-auto/spec.mk,
4419         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4420         * device/lib/mcs51/Makefile,
4421         * device/lib/small/Makefile,
4422         * device/lib/large/Makefile,
4423         * device/lib/mcs51/crtpagesfr.asm,
4424         * device/lib/mcs51/crtstart.asm,
4425         * device/lib/mcs51/crtxclear.asm,
4426         * device/lib/mcs51/crtxinit.asm,
4427         * device/lib/mcs51/crtclear.asm,
4428         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4429         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4430         and into user configurable files.
4431         * device/lib/clean.mk: clean mcs51 directory too
4432         * support/regression/tests/longlit.c: added static to T1 declaration
4433         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4434         accesses in the initialization code
4435
4436 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4437
4438         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4439         OSCTRIMVAL as noted in bug #916008
4440
4441 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4442
4443         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4444         in loops with multiple exits (reported as incorrect registers
4445         used by Martin Helmling in Sdcc-user list)
4446
4447 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4448
4449         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4450         made ds390 register extensions look less like error messages
4451
4452 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4453
4454         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4455         reported by Adam Wozniak in Sdcc-user list
4456
4457 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4458
4459         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4460         arithmetic optimizations, added debug output
4461
4462 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4463
4464         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4465         * sdcc.spec: updated and split sdcc into 3 rpms
4466         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4467         needed for literals of LEFT_OP and '+'
4468         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4469         introduced RESULT_TYPE_NOPROM
4470         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4471         left shift
4472         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4473         limited promotion to int only for '*'
4474         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4475
4476 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4477
4478         * src/pic16/gen.c (genSkip),
4479         (genc16bit2lit), (gencjneshort): commented out
4480         (is_LitOp): new helper function, checks operand type
4481         (genCmpEq): rewritten
4482
4483 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4484
4485         * support/regression/tests/bug-908454.c: added
4486
4487 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4488
4489         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4490         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4491         (geniCodeCast): cosmetic, don't preserve bit storage class
4492         (geniCodeLeftShift): added promotion
4493         (geniCodeLogic): fixed regression
4494         * src/SDCCsymt.c (computeTypeOr): accept bits too
4495         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4496
4497 2004-03-07  Borut Razem <borut.razem AT siol.net>
4498
4499         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4500
4501 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4502
4503         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4504         version of pic16_genPackRegisters which does not check if ic is a
4505         CAST operator,
4506         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4507         function cause string1.c regression test fails
4508
4509 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4510
4511         * sim/ucsim/configure.in,
4512         * sim/ucsim/configure,
4513         * sim/ucsim/doc/Makefile.in: use docdir
4514         * src/SDCC.y: fixed sbit atrributes
4515         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4516         * src/SDCCast.c (decorateType): |^& need special promotion handling
4517         * src/SDCCast.h,
4518         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4519         * src/SDCCsymt.h (computeType),
4520         * src/SDCCicode.c: computeType() needs op
4521         * src/SDCCsymt.c (checkTypeSanity),
4522         * doc/sddman.lyx: "plain" bitfields are unsigned
4523         * src/SDCCsymt.c (computeTypeOr): added
4524         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4525         |^& ops
4526         * src/SDCCval.c (val*): computeType() needs op
4527         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4528         * support/regression/tests/onebyte.c: added tests for |^&
4529
4530 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4531
4532         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4533         for writing icode into asm output.
4534
4535 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4536
4537         * src/pic16/device.c: added some debug lines enabled
4538         with macro DEBUG_CHECK,
4539         * src/pic16/genarith.c: more debug in genPlus,
4540         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4541         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4542         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4543         * (aopForSym): onStack symbols are re-placed in data memspace,
4544         and onStack flag is cleared,
4545         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4546         copy temporary pcodeop,
4547         * (genPcall): added warning for not updating PCLATU,
4548         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4549         always true for pic16 port,
4550         * (genMultOneWord): NEW, supports integer multiplication,
4551         * (genMult): modified to call genMultOneWord,
4552         * (ifxForOp): added warning when return NULL,
4553         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4554         flag is set before call to operandFromSymbol for implicit
4555         added structures,
4556         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4557         options.intlong_rent are set by default,
4558         * (_hasNativeMulFor): modified to allow port generation of integer
4559         multiplication,
4560         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4561         set regtype to REG_SFR for all registers, restricting seting the
4562         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4563
4564 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4565
4566         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4567         more than 500 times in the regression tests
4568
4569 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4570
4571         * support/Util/SDCCerr.h,
4572         * support/Util/SDCCerr.c,
4573         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4574         enumerator_list),
4575         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4576         for symbol conflicts.
4577         * support/valdiags/tests/enum.c,
4578         * support/valdiags/tests/tentdecl.c,
4579         * support/valdiags/tests/struct.c: expect possible error messages
4580         referring to original symbol definitions.
4581         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4582         * src/SDCCsymt.h,
4583         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4584
4585 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4586
4587         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4588
4589 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4590
4591         * src/pic16/ralloc.c (newReg): fixed bug #908929
4592
4593 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4594
4595         * src/ds390/gen.c: added missing #include "main.h"
4596
4597 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4598
4599         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4600         checking if symbol is already in set,
4601         * src/pic16/device.h: prototype for checkAddSym,
4602         * src/pic16/gen.c: (_G): added entry interruptvector,
4603         * (assignResultValue): removed some commented out lines,
4604         * (genFunction): check for ISR via sym->type, absolute section for
4605         interrupt code is created via a new pBlock, the goto instruction is
4606         placed now correctly at the interrupt vector position, changed all
4607         references from ivec to _G.interruptvector,
4608         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4609         is the interrupt is a high priority one, same for return from ISR,
4610         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4611         externs to calls of checkAddSym,
4612         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4613         pic16_pcode_verbose flag is set,
4614         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4615         * src/pic16/pcoderegs.c: message about how many registers are saved
4616         will only be emitted if pic16_pcode_verbose flag is set,
4617
4618 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4619
4620         * src/ds390/ralloc.h,
4621         * src/ds390/ralloc.c (ds390_regWithIdx),
4622         * src/ds390/gen.c (emitcode),
4623         * src/ds390/main.h,
4624         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4625         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4626         ds390operandCompare, getRegsRead, getRegsWritten,
4627         initializeAsmLineNode): customized instruction size calculation for
4628         ds390, started basis for some register optimizations
4629         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4630         corresponding assembly output
4631         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4632         missing push/pop of r0/r1. Optimized push/pops
4633
4634 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4635
4636         * src/mcs51/main.c (instructionSize): fixed ACALL size
4637         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4638
4639 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4640
4641         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4642         the sorting of rlist with NULL elements
4643         * (print_idataType, print_idata): NEW to create idata sections
4644         * src/pic16/device.h: idataSymSet new variable
4645         * src/pic16/gen.c (genFunction): fixed some bugs in string
4646         comparing, improved the absolute section creation for ISRs,
4647         added FSR0L/FSR0H in registers that are saved in an ISR,
4648         * (genInline): fixed the processing of inline snippets,
4649         now they undergo no process by the peephole optimizer
4650         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4651         are placed in idataSymSet,
4652         * (pic16emitStaticSeg): extern symbols are added in externs,
4653         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4654         switching when aboslute variables are placed in access bank memory
4655         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4656         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4657         commented out with #if,
4658         * (pic16_packRegisters): reintroduce the check for CAST because some
4659         symbols are not correctly handled,
4660         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4661         pCodeInstruction instead of pCode,
4662         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4663         pCodeAsmDir definition,
4664         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4665         directive, then the argument directive is emitted without the leading
4666         tab, hack for inline labels which must be in the first column,
4667         * (compareLabel,pic16_findNextInstruction),
4668         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4669         * (insertBankSwitch): modified for the new pCodeAsmDir,
4670
4671 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4672         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4673
4674         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4675         instance,
4676         * (pushSide): commented out with #if,
4677         * (assignResultValue): fixed some typos in saving
4678         registers,
4679         * (genPcall): FIXED and sync'ed with genCall,
4680         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4681         * (genNearPointerGet): fixed to handle some more cases,
4682         implementation scheme via table reads,
4683         * (genConstPointerGet): modified to access code memory correct,
4684         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4685         and improved to handle some cases
4686         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4687         instead of "RETLW" for init data
4688         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4689         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4690         variables are placed in access bank memory (<0x80 and >=0xf80),
4691         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4692         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4693         TBLWT_POSTDEC,TBLWT_PREINC
4694         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4695         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4696         directives
4697         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4698         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4699         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4700         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4701
4702 2004-02-29  Borut Razem <borut.razem AT siol.net>
4703
4704         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4705         support/Util/findme.h, support/Util/system.h: enhance binary relative
4706         search for lib and include by using findProgramPath()
4707
4708 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4709
4710         * src/SDCCpeeph.h,
4711         * src/SDCCpeeph.c (pcDistance),
4712         * src/port.h,
4713         * src/mcs51/ralloc.h,
4714         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4715         * src/mcs51/main.h,
4716         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4717         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4718         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4719         size calculation port specific, started basis for some register
4720         optimizations
4721         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4722         missing push/pop of r0/r1. Optimized push/pops
4723         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4724         * device/lib/_modsint.c (_modsint),
4725         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4726         and stack version so regression tests pass
4727
4728 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4729
4730         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4731         * src/SDCCast.c (decorateType): catch another small optimization
4732         with '?' operator
4733         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4734         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4735         modified to finally use computeType() all over SDCC,
4736         see Feature Request #877103
4737         * src/SDCCval.h: cosmetic
4738         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4739         valCompare(); regression tested in muldiv.c
4740         * support/regression/tests/muldiv.c (testMod): mod sign follows
4741         dividend only
4742
4743 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4744
4745         * src/SDCCast.c (decorateType): fixed bug #902362
4746         * doc/INSTALL.txt: fixed install instructions for win32
4747
4748 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4749
4750         * device/include/Makefile.in (install): fixed by replacing spaces
4751         by tabs
4752         * doc/README.txt,
4753         * doc/INSTALL.txt: updated for release
4754         * doc/sdccman.lyx: added warning for --xstack being buggy
4755
4756 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4757
4758         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4759         to eliminate build warnings.
4760         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4761
4762 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4763            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4764
4765         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4766         removed -penable-stack, added comment for stack pragma, added
4767         warning for not initializing the stack/frame registers, removed
4768         comment at interrupts section
4769
4770         Stack is made permanent, there is no ability to disable stack usage.
4771         * src/pic16/device.h,
4772         * src/pic16/device.c: removed all references to USE_STACK macro,
4773         * src/pic16/device.c (pic16_dump_section): when no elements in
4774         rlist, free rlist before return,
4775         * (pic16_dump_int_registers): NEW, internal registers are a new set
4776         of general purpose registers reused by each function,
4777         * (checkAddReg): returns 1 if registers is added to set,
4778         * (pic16_groupRegistersInSection): when a registers is of type
4779         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4780         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4781         SRCASECMP macro is moved here from device.c
4782         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4783         PO_PCLATU, PO_PRODL, PO_PRODH,
4784         * (pic16_pCodeOpType, genMinus,
4785         changed compares to "a" register, with AOP_ACC,
4786         * (pic16_genPlus): fixed some bugs and indented properly,
4787         * (pic16_addSign): changed size to size+offset in the MOVWF
4788         instruction,
4789         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4790         multiply 8-bit operand by literal, result is 8-bit,
4791         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4792         multiply 2 8-bit operand, result is 8-bit,
4793         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4794         genUMult8X*_16,
4795         * src/pic16/gen.c: changed accUse to contain WREG only,
4796         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4797         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4798         true, do not use immediate addressing any more unless sym is a
4799         pointer in codespace,
4800         * (aopForRemat): do not use immediate addressing when symbol not in
4801         codespace and when symbol's address is requested,
4802         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4803         accUse size (= 1),
4804         * (aopGet): added case for AOP_ACC and don't return "accumulator
4805         bug" but WREG instead,
4806         * (popGetTempReg): pushes contents of temporary register in stack,
4807         * (popReleaseTempReg): pops contents of temporary register from
4808         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4809         * (pic16_popGet): separated case AOP_ACC to return register WREG
4810         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4811         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4812         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4813         the use of immediate pointers to certain cases only.
4814
4815         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4816         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4817         * (assignResultValue, genCall, genRet): modified to use the new
4818         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4819         genPcall is still broken,
4820         * (genFunction): added code to create 'A' type pBlocks when
4821         interrupt functions are generated, code not extensively tested yet,
4822         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4823         * (genEndFunction): modified so ISRs pop stored registers from stack,
4824         * (genMultOneByte): cleanup,
4825         * (AccRsh): added flag andmask, to and result with appropriate mask,
4826         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4827         * (genDataPointerGet): fixed and reenabled its use,
4828         * (genNearDataPointerGet): bugs fixed,
4829         * (genDataPointerSet): bugs fixed,
4830         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4831         pic16_DumpSymbol, pic16_DumpOp,
4832         * src/pic16/genutils.h: function prototypes for the above functions,
4833         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4834         pointers,
4835         * (pic16emitRegularMap): many many many improvements, but needs a
4836         major cleanup,
4837         * src/pic16/main.c: enable_stack in pic16_options is removed,
4838         * (_pic16_parseOptions): removed command line options -penable-stack,
4839         * (_process_pragma): emit stack symbol only when stack pragma is
4840         processed,
4841         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4842         redirected to FSR0L/FSR0H pair,
4843         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4844         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4845         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4846         for immediates,
4847         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4848         * (dumpPicOptype): NEW,
4849         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4850         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4851         with movff instruction,
4852         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4853         added pic16_int_regs, some packRegsFor* functions are commented out,
4854         because produce errors,
4855         * src/pic16/NOTES: minor modifications
4856
4857 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4858
4859         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4860         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4861         --pack-iram.
4862         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4863         * as/mcs51/lkaomf51.c: fixed bug #895763
4864
4865 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4866
4867         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4868
4869 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4870
4871         * doc/sdccman.lyx: added details about the HC08 storage classes and
4872         interrupts, fixed the register usage info for z80 & gbz80
4873
4874 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4875
4876         * doc/sdccman.lyx: added more pic16 port documentation
4877         * device/include/pic16/: added header pic18fregs.h
4878
4879 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4880
4881         * doc/sdccman.lyx: added Vangelis' contribution
4882
4883 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4884
4885         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4886         extend to the next CALL or PCALL, not just to the next CALL.
4887
4888 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4889
4890         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4891
4892 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4893
4894         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4895         bug #895752 and a better fix for bug #716790
4896
4897 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4898
4899         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4900
4901 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4902
4903         * doc/sdccman.lyx: minor changes, minor changed
4904
4905 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4906
4907         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4908         which can't handle SDCC_NEWONEBYTEOPS,
4909         (geniCodeMultiply): removed conversion from mult to shift for pic14
4910         and pic16
4911
4912 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/hc08/gen.h,
4915         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4916         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4917         thus fixing bug #895406
4918
4919 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4920
4921         * device/lib/_modsint.c,
4922         * device/lib/_modslong.c: sign follows divisor only
4923         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4924         signs or signedness can be ignored
4925         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4926         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4927         added optimization for IFX,
4928         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4929         arguments;
4930         reenabled optimization for IFX, which was removed on 2004-01-11
4931         * src/SDCCast.h: added return type IFX
4932         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4933         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4934         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4935         SDCC_OLDONEBYTEOPS selects the old behaviour
4936         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4937         changed again and commented promotion rule
4938         * src/SDCCval.c (valDiv): promotion no longer necessary
4939         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4940         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4941         rewritten
4942         * support/regression/tests/onebyte.c: added
4943
4944 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4945
4946         * gen.c (genInline): reverted to old code for assemnling inline
4947         code because of bug reported James Chadd
4948
4949 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4950
4951         * ralloc.h: missing declarations from previous patch,
4952         seems that patch for ralloc.h was never applied, fixed
4953
4954 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4955            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4956
4957         * pcode.c,
4958         * pcode.h,
4959         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4960         indirect addressing. Marked FSR0 as deprecated
4961         * gen.c (pointerCode): commented out, not needed now
4962         (pic16_popGet2p): new MOVFF helper function
4963         (genGenPointerGet),
4964         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4965         (shiftRLong): removed duplicate debugging info
4966
4967 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4968
4969         * src/ds390/gen.c (genNearPointerGet),
4970         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4971         optimization with bits, but not bitfields.
4972         * src/ds390/ralloc.c (packRegisters),
4973         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4974
4975 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4976
4977         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4978
4979 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4980
4981         * src/SDCCsymt.h,
4982         * src/SDCCicode.c (operandFromSymbol),
4983         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4984         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4985         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4986         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4987         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4988         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4989         bug #892038
4990         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4991         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4992         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4993         * src/SDCCsymt.c (newSymbol),
4994         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4995         enumerator_list),
4996         * src/SDCCval.h,
4997         * src/SDCCval.c (newiList): fixed bug #885705
4998
4999 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5000
5001         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
5002         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
5003
5004 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5005
5006         * device/include/c8051f120.h,
5007         * device/include/c8051f300.h,
5008         * device/include/c8051f310.h: added/updated header files for Silicon
5009         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5010         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
5011         in new section Submitting patches
5012
5013 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5014
5015         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5016         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5017         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5018         genGenPointerSet),
5019         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5020         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5021         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5022         genGenPointerSet),
5023         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5024         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5025         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5026         genGenPointerSet),
5027         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5028         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5029         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5030         genGenPointerSet): fixed bug #892400
5031         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5032         to eliminate build warnings.
5033         * src/SDCCast.c (processParms),
5034         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5035         fixed bug 751859
5036         * support/valdiag/valdiag.py: added GCC to the list of defines active
5037         when compiling with gcc
5038
5039 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5040
5041         * support/Util/SDCCerr.h,
5042         * support/Util/SDCCerr.c,
5043         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5044         with an incomplete type (fixed bug #883734)
5045         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5046
5047 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5048
5049         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5050
5051 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5052
5053         * src/SDCCast.c (decorateType),
5054         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5055         function pointer implementation
5056         * support/regression/tests/funptrs.c: added tests to verify both forms
5057         of function pointers work correctly. Added tests to verify parameters
5058         are passed in the correct order.
5059
5060 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5061
5062         * device.c (regCompare): registers are sorted by ascending
5063         address and increasing size,
5064         * main.c (_pic16_finaliseOptions): removed the declaration
5065         of compiler macro MCU. Now a macro of the format pic18fxxxx
5066         will be defined from the command line
5067
5068 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5069             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5070
5071         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5072         PCOP_RLCF was overwritten!
5073         * gen.c (genSkip): commented out calls to pic16_emitcode,
5074         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5075         * (genlshTwo),
5076         * (genRRC): added debugging info,
5077         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5078         overwritten while shifting,
5079         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5080         overwritten while shifting,
5081         * (AccLsh),
5082         * (AccRsh),
5083         * (shiftLLeftOrResult),
5084         * (shiftRLeftOrResult),
5085         * (shiftRLong),
5086         * (shiftLLong): Implemented with pic16_emitpcode
5087         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5088         * (genLeftShift): Fixed bug, operand for shift by variable always
5089         was "and"ed with 0x0f,
5090         * (genLeftShiftLiteral),
5091         * (genrshTwo),
5092         * (genRightShiftLiteral): added debugging info,
5093         * (genrshFour): added comment,
5094         * (genRightShift): determined signedness from operand "left"
5095         instead of "result"
5096
5097 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5098
5099         * src/SDCCicode.c (geniCodeParms),
5100         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5101         function pointers, fixed function pointer bugs #861242 and #861896
5102
5103 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5104
5105         * device/include/c8051f000.h,
5106         * device/include/c8051f120.h,
5107         * device/include/c8051f300.h: added header files for Silicon
5108         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5109
5110 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5111
5112         * src/SDCCast.c (processParams): added new type flow and restructured
5113         (gatherAutoInit): added new type flow
5114         (addCast): cosmetic changes
5115         (getLeftResultType): added new type flow for array indices, patch
5116         provided by Stas, see FR #877103
5117         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5118         array index patch by Stas
5119         * src/SDCCast.h: added prototype getResultTypeFromType()
5120         * src/SDCCval.h,
5121         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5122         * src/pic/glue.c (pic14emitStaticSeg),
5123         * src/pic16/glue.c (pic16emitStaticSeg),
5124         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5125         for initialization of symbols
5126         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5127         * support/Util/SDCCerr.h:
5128         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5129         * .version: bumped version number to 2.3.8
5130         * device/include/Makefile.in (install),
5131         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5132         avoid warnings
5133
5134 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5135
5136         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5137         Slade Rich fixed an optimization bug
5138         * src/pic/pcodepeep.c,
5139         * src/pic/pcoderegs.c
5140         * doc/Makefile (install): added test for directory
5141
5142 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5143
5144         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5145         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5146         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5147         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5148         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5149         * as/mcs51/asexpr.c (term),
5150         * as/hc08/asexpr.c (term): fixed bug #887146
5151
5152 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5153
5154         * src/z80/gen.c (genMult): handle single byte result product
5155         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5156         DUMMY_READ_VOLATILE (fixed bug #886367)
5157
5158 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5159
5160         * support/regression/tests/libmullong.c: fixed logic, on little endian
5161         hosts we ended without a mullong_wrapper()
5162
5163 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5166         virus/worm forged address usage.
5167
5168 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5169
5170         Fixed promotion, it should be done on AST level:
5171         * src/SDCCast.c (addCast): added promotion to int
5172         (decorateType): updated call to upCast()
5173         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5174         usualUnaryConversions()
5175
5176 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5177
5178         * support/regression/tests/literalop.c (mulWrapper): Added a
5179         wrapper to remove integer overflow warnings.
5180
5181         * support/regression/tests/float_trans.c: Made work on host.
5182
5183         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5184         location of sz80.
5185
5186         * support/regression/generate-cases.py (main): Changed from inline
5187         to a main method.
5188
5189         * doc/Makefile (install): Changed to depth first to get rid of
5190         missing directory install warning.
5191
5192         * as/Makefile (install-doc): Made work on Mac.
5193
5194 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5195
5196         * src/SDCCast.c: added an additional type flow in decorateType() of
5197         opposite direction, see feature request #860006; it's enabled at runtime
5198         by setting the environment variable SDCC_NEWTYPEFLOW
5199         * src/SDCCast.h: changed prototype of decorateType()
5200         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5201         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5202         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5203         see feature request #877103
5204         * src/SDCCval.c: updated call of decorateType()
5205         (valBitwise): fixed bug #882876
5206         (valMinus): added promotion
5207         (valLogicAndOr): result is unsigned
5208         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5209         * src/SDCCsymt.c (computeType),
5210         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5211         must not cause an unsigned operation
5212         * src/pic/glue (pic14emitRegularMap),
5213         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5214
5215 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5216
5217         * src/pic/pcode.c (PCodeID): commented out left over debug code
5218
5219 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5220
5221         * support/valdiag/tests/overflow.c: added shift tests
5222         * src/pic/device.c,
5223         * src/pic/gen.c,
5224         * src/pic/gen.h,
5225         * src/pic/glue.c,
5226         * src/pic/main.c,
5227         * src/pic/pcode.c,
5228         * src/pic/pcode.h,
5229         * src/pic/pcodepeep.c,
5230         * src/pic/pcoderegs.c,
5231         * src/pic/ralloc.c,
5232         * src/pic/ralloc.h: applied patch from Slade Rich;
5233         added support for multiple code pages and multiple RAM banks on the
5234         PIC 14 port. The ASM files now no longer simply assume all the
5235         code / RAM are in the same page / bank. This means the linker can
5236         safely allocate code/RAM of separate ASM files to different pages/banks.
5237         * doc/sdccman.lyx: added Slade's tips
5238         * src/mcs51/peeph.def: fixed bug #880768
5239
5240 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5243         * src/SDCCast.c (decorateType): fixed bug #880197
5244
5245 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5246
5247         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5248         getopt.h.
5249
5250         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5251         strtof is not part of C89 and isn't included with Mac OS X.
5252
5253 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5254
5255         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5256         shiftL2Left2Result): fixed bug #879326
5257         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5258         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5259         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5260         address fetch for clr instruction
5261         * device/lib/hc08/_mulint.c: created optimized assembly version
5262         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5263
5264 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5265
5266         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5267         proposed in FR #877103
5268
5269 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5270
5271         * src/SDCCval.c (cheapestVal): added missing checks
5272         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5273         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5274
5275 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5276
5277         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5278         equal operands
5279
5280 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5281
5282         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5283         loaded with the linker search paths (-L arguments) and the libraries
5284         to be linked with the current source (-l arguments). Changes
5285         currently will affect only the pic16 port.
5286         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5287         include path the port specific paths and port specific libraries,
5288         * gplink command now contains the $3 argument,
5289         * src/pic16/device.h,
5290         * src/pic16/device.c,: structure PIC_device is made public and
5291         renamed to PIC16_device, the same for variable Pics which is renamed
5292         to Pics16. Updated all references to them.
5293         * src/pic16/glue.c (pic16glue): corrected bug with code
5294         initialization which bypassed the variable initializations block.
5295
5296         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5297         COMPILE_FLAGS and added the --nostdinc option
5298
5299 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5300
5301         * device/include/mc68hc908jb8.h: Register defs for another member
5302         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5303
5304 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5305
5306         Documenting changes from previous commits.
5307         * configure.in (version 1.56),
5308         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5309         when generating output files to configure the pic16 library,
5310         but now I've commented it out, since gputils aren't installed in the
5311         SF compile farm, so library won't compile
5312
5313         * device/lib/Makefile.in (version 1.56): initially I've added in
5314         target 'all' the prerequestive 'model-pic16' so it compiled the
5315         pic16 library, but now I've commented it out for the same reasons
5316         above,
5317         * added targets 'model-pic16' and 'objects-pic16' to compile the
5318         library
5319         * added target 'port-specific-objects-pic16' to handle the
5320         generated libraries and copy them into the build/ directory
5321         * added target 'clean-intermediate-pic16' to clean intermediate
5322         files into pic16 directory
5323         * in target 'installdirs' added line to create directory pic16 in
5324         the installation path
5325
5326         * device/include/Makefile.in (version 1.11): in target 'install'
5327         added lines to copy all header files to installation path,
5328         * in target 'installdirs' added line create directory for pic16
5329         headers in the installation path
5330
5331 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5332
5333         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5334          a function call
5335
5336 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5337
5338         * configure,
5339         * device/lib/configure.in,
5340         * device/lib/configure: fixed for autoconf 2.57
5341
5342 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5343
5344         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5345         option so that it actually works. Made it specific to the z80, since
5346         the gbz80 doesn't have these kinds of I/O ports.
5347
5348 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5349
5350         * device/include/z180.h,
5351         * device/lib/_memcpy.c,
5352         * device/lib/_memmove.c,
5353         * device/lib/_mulint.c,
5354         * device/lib/ser_ir.c,
5355         * device/lib/ser_ir_cts_rts.c,
5356         * device/lib/_strcmp.c,
5357         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5358         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5359         portmode; added deprecation warning for bank= and protmode= forms.
5360         Also, guard against buffer overflow.
5361         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5362
5363 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5364
5365         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5366         changed interrupt vector table generation to only emit declared vectors.
5367         * device/include/Makefile.in: added missing backslash
5368         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5369
5370 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5371
5372         Mainly changes to support compilation of the device libraries
5373         * src/pic16/device.c: stack is allocated via symbol and not
5374         via literal number. The symbol is placed in the corresponding
5375         position of the data ram
5376         * (pic16_dump_section): relocatable and absolute uninitialized
5377         data are now emitted in sorted order to reduce section naming,
5378         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5379         weren't marked as being in the access bank,
5380
5381 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5382
5383         Added portion of GNU PIC Library under the directory
5384         device/include/pic16 and device/lib/pic16. These files
5385         contain the declarations of SFRs for the PIC18Fxx2 devices.
5386         The directory is initialized via configure from toplevel.
5387
5388 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5389
5390         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5391         the spilllocations to be compared correctly
5392
5393 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5394
5395         * src/SDCCast.c (decorateType): fixed bug introduced today
5396
5397 2004-01-12  Borut Razem <borut.razem AT siol.net>
5398
5399         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5400         doc/sdccman.lyx: upper case pragmas are deprecated
5401
5402 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5403
5404         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5405         in simpler and even better code
5406
5407 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5408
5409         * src/SDCCicode.c (operandOperation): fixed bug #874819
5410         * src/SDCCast.c (decorateType): fixed
5411         char foo (unsigned long ul) { return ul > 0; }
5412
5413 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5414
5415         * doc/sdccman.lyx: Moved and added some sections, small changes
5416         all over. Telling LaTeX to be less strict with word spacing
5417         to better keep the right margin. Changed some notes about
5418         maintainance of the ports in section 3.2.1 - is it OK like this?
5419
5420 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5421
5422         SDCC source changes:
5423         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5424         convilong): modified to inform the pic16 port that builtin functions
5425         are external
5426
5427         PIC16 PORT specific changes:
5428         * src/pic16/device.c pic16_dump_equates() added,
5429         processor registers declared internally by the port are emitted in
5430         the translation as equates,
5431         * src/pic16/gen.c: inline code is passed unprocessed to the
5432         translation,
5433         * (pic16_popGetLit2): fnuction modified to take second operand as
5434         pCodeOp pointer and not as literal,
5435         * (popRegFromIdx): prefixed with pic16_,
5436         * (pic16_popCombine2): modified to receive already allocated pCode
5437         operands,
5438         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5439         * (genFunction): initializes local stack frame and pushes on stack
5440         all the registers used by this function,
5441         * (genEndFunction): restores all registers from stack and restores
5442         stack frame,
5443         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5444         improvements,
5445         * (pic16glue): changed the program startup sequence,
5446         * added new dbName code 'A' for functions placed in absolute section
5447         * src/pic16/main.c: added function attribute _naked,
5448         * added pragma 'code' to place a fnuction at an absolute address,
5449         * added command line arguments --debug-ralloc and --pcode-verbose,
5450         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5451         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5452         * (pic16_newpCodeOpLit2): modified to take the second operand as
5453         pCodeOp pointer,
5454         * (pic16_printpBlock): modified to emit each function in a separate
5455         section,
5456         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5457         UPPER for immediate operands,
5458         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5459         instruction,
5460         * src/pic16/peeph.def: all peepholes with movff are commented out,
5461         because there is a problem in the pcode peep optimizer,
5462         * src/pic16/ralloc.c: the register allocator can now reuse local
5463         function symbols for another function. This saves register usage.
5464         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5465
5466         Added file src/pic16/NOTES with information about program writing on
5467         the current port version.
5468
5469 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5470
5471         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5472         and peephole 252 (array access)
5473
5474 2004-01-09  Borut Razem <borut.razem AT siol.net>
5475
5476         * src/SDCCmain.c : fixed #872250: -l command line defined library
5477           files are scanned before standard library files
5478
5479 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5480
5481         * src/SDCCast.c (decorateType): fixed bug #874046
5482
5483 2004-01-09  Borut Razem <borut.razem AT siol.net>
5484
5485         * support/scripts/sdcc.nsi: remove previous installation
5486
5487 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5488
5489         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5490         bytes for last interrupt vector (mcs51)
5491         * sdcc.spec: fixed typo
5492
5493 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5494
5495         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5496         gen51Code): more efficient parameter receive for --model-large
5497         ("bug" #845294)
5498
5499 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * src/ds390/main.c,
5502         * src/z80/main.c: added missed needLinkerScript flags (more than
5503         one port structure defined in these file)
5504         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5505         bug #795325
5506
5507 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5508
5509         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5510         * src/port.h: added flag needLinkerScript in port->linker
5511         structure to inform whether to create a .lnk file or not,
5512         * src/avr/main.c,
5513         * src/ds390/main.c,
5514         * src/hc08/main.c,
5515         * src/mcs51/main.c,
5516         * src/pic/main.c,
5517         * src/pic16/main.c,
5518         * src/xa51/main.c,
5519         * src/z80/main.c: changed appropriately to configure
5520         needLinkerScript flag
5521         * src/pic/gen.c,
5522         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5523         * src/pic/glue.c: added variable udata_section_name to
5524         override default uninitialized data segment definition for
5525         devices only with SHAREBANK memory (reported from Erik Epetrich)
5526         * (pic14emitOverlay): modified to emit a commented overlay segment
5527         directive when no overlay data exist
5528         * (picglue): modified to emit uninitialized data segment
5529         according to udata_section_name
5530         * src/pic/main.c (_pic14_parseOptions): added command line
5531         options --udata-section-name=[name] to override default
5532         udata definition name
5533         * modified _linkCmd and _asmCmd to include compiler passed
5534         arguments via -W option
5535         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5536         object file from '.rel' to '.o' in port->linker structure,
5537         changed size of fptr from 2 to 3 in port structure
5538
5539 2004-01-07  Borut Razem <borut.razem AT siol.net>
5540
5541         * support/scripts/sdcc.nsi: update PATH
5542         * support/scripts/sdcc.ico: craeted
5543
5544 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5545
5546         * device/include/Makefile.in: fix install
5547         * doc/Makefile: fix install
5548
5549 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5550
5551         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5552         in bug #860505
5553         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5554         how the function variable allocation summary is displayed; also
5555         include information about variables allocated to the overlay
5556         segment
5557
5558 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5559
5560         * as/mcs51/lkmain.c: Help about -Y option
5561         * as/mcs51/lkarea.c: Fixed gcc warnings
5562
5563 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5564
5565         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5566         fixed warning
5567         * support/valdiag/tests/overflow.c: added
5568         * src/SDCCast.c (decorateType),
5569         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5570         LEFT_OP (left shift)
5571
5572 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5573
5574         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5575         (default behaviour).
5576
5577 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5578
5579         A python script to validate compiler diagnostic messages. It can be
5580         used to verify that sdcc complains about bad c source code and
5581         gives a good location of the error.
5582         * support/valdiag/Makefile,
5583         * support/valdiag/valdiag.py,
5584         * support/valdiag/tests/*
5585
5586 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5587
5588         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5589         * src/SDCCsymt.c (newEnumType),
5590         * src/SDCCsymt.h
5591         * support/Util/SDCCerr.c,
5592         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5593         enum related bugs.
5594         * support/regression/tests/enum.c: added test for enum values that
5595         require at least 2 bytes of storage.
5596
5597 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5598
5599         * src/common.h: added ifndef/define/endif macros
5600         around the header file.
5601         Bug reported from Jesus Calvino-Fraga
5602
5603 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5604
5605         * sdcc.spec: updated
5606         * device/include/Makefile.in: don't install CVS directories
5607         * device/lib/Makefile.in: added removal of CVS directories after install
5608         * doc/Makefile: fixed install, added local_icons
5609         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5610         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5611         * src/ds390/gen.c (genRightShift): fixed bug #870788
5612         * src/SDCCast.c (decorateType): fixed bug #870781
5613
5614 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5615
5616         PIC16 port related changes:
5617         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5618         added variable stackPos,
5619
5620         * gen.c: genCall, assignResultValue: added support for
5621         pushing/retrieving function parameters to/from stack,
5622         genFunction,genEndFunction: setup stack frame for the
5623         generated function,
5624         genAddrOf: will be changed according to bug 863624
5625
5626         * added files genutils.c and genutils.h which contain gen*
5627         debugged and optimised functions extracted from gen.c
5628
5629         * glue.c: added variable 'externs' which holds extern symbols,
5630         pic16emitRegularMap: is modified to properly handle relocatable
5631          symbols under the new scheme,
5632         pic16createInterruptVect: is modified
5633         pic16printPublics: is modified to emit 'global' assembler directives,
5634         added pic16_printExterns to print extern symbols,
5635         pic16glue: initializes stack/frame pointer in the beginning of
5636         the assembly output. Temporary hack, will be corrected later,
5637         because gplink yet does not support stack and SDCC does not
5638         yet support a type of crt0.o object to create the final binary.
5639
5640         * Removed many lines that contain 8051 legacy code.
5641         * The code is finally placed under a 'code' directive.
5642         * Added port specific options.
5643
5644         * _process_pragma: simplified since now we do not need *special*
5645         include file to define SFR registers. But a separate header
5646         will be needed. This will be developed later.
5647         * _pic16_parseOptions: added, parses port specific options:
5648         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5649         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5650         --preplace-udata-with=
5651
5652         * _pic16_setDefaultOptions: modified to initialize section names,
5653         but hack is temporarly out of order since it needs improvement.
5654         * _pic16_genAssemblerPreamble: configuration words are emitted by
5655         their address instead of their name. This part is incomplete and
5656         supports only the 18Fxx2 devices. Other devices will emit an error
5657         during assembly since they do not contain the same set of config
5658         registers
5659         * _pic16_genIVT: is modified,
5660
5661         * pcode.c: added definitions for some hardware registers that are needed
5662         for stack support
5663         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5664         All PCI entries are updated. Now LFSR is supported.
5665         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5666         * added pic16_newpCodeOpLit2 to support instructions with
5667         two literal arguments
5668         * pic16_pCode2str: corrected code that emits assembler instructions
5669         with two literal operands and those that have an access bit modifier
5670         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5671         this fixes a bug which caused some labels to be lost, when an
5672         assembler directive was added, i.e. banksel,
5673         * pic16_FixRegisterBanking: improved logic that causes the insertion
5674         of bank switching,
5675         * InlineFunction: functions that are called once, are not any more
5676         inlined. This can be a port option in the future,
5677
5678         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5679
5680         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5681         hold the corresponding uninitialized symbols,
5682         * pic16_allocProcessorRegister: registers have explicit marked the
5683         accessBank field,
5684         * pic16_allocInternalRegister: registers are explicit marked as
5685         not used,
5686         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5687         processing list, so bit registers were lost,
5688         *
5689
5690         * ralloc.h: added field 'accessBank' and original symbol operand
5691         in register definition,
5692         * removed the field isMapped from register definition,
5693
5694         ** Several functions have been removed from various sources:
5695         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5696         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5697         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5698         pic16_assignRelocatableRegisters
5699
5700         ** others have been introduced:
5701         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5702         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5703
5704 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5705
5706         * support/scripts/inc2h.pl: changed definition of BIT_AT
5707         to emit 'sbit at' instead of 'bit at'. This was a request.
5708
5709         PIC16 port related preliminary changes:
5710         * gen.c: prefixed function popRegFromString with
5711         pic16_ and all references to it corrected
5712         * pcode.c: all pic16_pc_* hardware registers prefixed
5713         with underscore (_),
5714         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5715         * ralloc.c: newReg(): when register is REG_SFR then
5716         set address to rIdx,
5717         pic16_allocProcessorRegister(): marks register wasUsed=0
5718         pic16_writeUsedRegs(): added a call to assign processor
5719         registers via pic16_assignFixedRegisters
5720
5721 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5722
5723         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5724         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5725         variables in unused register banks.  Also the SSEG is placed
5726         wherever there is enough space for it, and IDATA can be anywhere
5727         in internal RAM.  For now compile using -Wl-Y[stack_size].
5728         The mem file is different for this option as well, since it
5729         makes no sense of talking about DSEG lenght.
5730
5731 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5732
5733         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5734         in certain cases, e.g. when ROM assignment, patch provided
5735         from Albert den Haan.
5736
5737 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5738
5739         Many signedness and type propagation fixes:
5740         * src/SDCCicode.c: made geniCodeCast() static
5741         replaced SPEC_ by IS_ (cosmetic)
5742         (operandOperation): fixed div and mod operation
5743         (usualBinaryConversions): added support for promotion of char
5744         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5745         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5746         (geniCodeAdd): an array index will stay unsigned, even if promoted
5747         from char to int
5748         (geniCodeArray): ditto
5749         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5750         * src/SDCCsymt.c (computeType): added more support for char;
5751         promotion of char is selectable by promoteCharToInt, fixed signedness
5752         for all cases
5753         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5754         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5755         * src/SDCCval (val*): replaced signedness calculation by
5756         computeType()
5757         rearranged if-branches (cosmetic)
5758         (valShift): added warning W_SHIFT_CHANGED
5759         (valCompare): fixed problem with different types
5760         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5761         * support/regression/tests/literalop.c: added many cases
5762         * support/regression/tests/ast_constant_folding.c: changed finally to
5763         'unsigned int'
5764         * .version: new year, new version: 2.3.7
5765         * src/SDCCmain.c (main): applied patch #866468
5766         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5767         provided by Scott Bronson
5768         * doc/sdccman.lyx: updated documentation for sdcdb
5769         updated and added chapter tips
5770
5771 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5772
5773         * src/SDCCsymt.h: missing from yesterday's commits
5774
5775 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCC.y (struct_or_union_specifier),
5778         * support/Util/SDCCerr.c,
5779         * support/Util/SDCCerr.h: verify that struct & union tags are used
5780         as declared.
5781
5782 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5783
5784         * src/SDCCglobl.h: missing from yesterday's commits
5785
5786 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5787
5788         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5789         sft_attributes, struct_declaration, parameter_declaration,
5790         type_name, start_block, declaration_list),
5791         * src/SDCC.lex (check_type): support redefinition of typedef names
5792
5793 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5794
5795         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5796         aligned xdata arrays. Erik helped me with the if clause.
5797
5798 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5799
5800         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5801         warning
5802
5803 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5804
5805         * src/SDCCast.h,
5806         * src/SDCCast.c (newAst_),
5807         * src/SDCCicode.h,
5808         * src/SDCCicode.c (ast2iCode, newiCode),
5809         * src/SDCCglobl.h,
5810         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5811         expr, statement, expression_statement, selection_statement,
5812         iteration_statement, expr_opt, jump_statement): foundation for tracking
5813         sequence points
5814         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5815         point code too)
5816
5817 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5818
5819         * support/Util/SDCCerr.c,
5820         * src/SDCCast.h,
5821         * src/SDCCast.c (createCase, createDefault, decorateType),
5822         * src/SDCClabel.c (labelUnreach),
5823         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5824         to error messages.
5825         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5826         (with thanks to Stas Sergeev)
5827         * device/include/time.h,
5828         * device/lib/time.c (CheckTime): suppress unreachable code warning
5829
5830 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5831
5832         * src/SDCCast.c (createIvalCharPtr),
5833         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5834         bug #753752)
5835         * support/regression/tests/nullstring.c: tests for these two bugs
5836
5837 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5838
5839         * support/Util/SDCCerr.h,
5840         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5841         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5842         about storage class and 'at' used inside struct or union
5843         * src/SDCCBBlock.c (iCodeFromeBBlock),
5844         * src/SDCCcse.c (ifxOptimize),
5845         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5846         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5847         printIval, emitStaticSeg, emitOverlay),
5848         * src/SDCClabel.c (deleteIfx),
5849         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5850         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5851         gatherAutoInit, processParms),
5852         * support/Util/SDCCerr.h,
5853         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5854         reporting for post-parse errors.
5855
5856 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5859         implicit casts via union; they don't work on big endian systems
5860         (possible fix for bug #861138)
5861
5862 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5863
5864         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5865         * src/mcs51/main.c: fixed the fix for bug #737001
5866
5867 2003-12-15  Borut Razem <borut.razem AT siol.net>
5868
5869         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5870
5871 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5872
5873         * support/makebin/makebin.c: put output in binary mode
5874
5875 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5876
5877         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5878         xdata and data memory on startup. Set the environment variable
5879         SDCC_NOGENRAMCLEAR to disable this.
5880         * src/mcs51/peephole.def,
5881         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5882         (allows non-interrupt and interrupt code to safely compete for a resource
5883         without the non-interrupt code having to disable interrupts)
5884
5885 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5886
5887         * src/SDCCicode.c (geniCodeAdd),
5888         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5889         with valFromType if type might be a pointer and host is big endian).
5890         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5891         types, not just integer types.
5892         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5893         multiply defined with mismatching "at" address.
5894
5895 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5898         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5899         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5900         with embedded nulls (fixed bug #753752)
5901
5902 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5903
5904         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5905         Apparently this did not see much testing (endless loop)
5906
5907 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5908
5909         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5910
5911 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5912
5913         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5914         gracefully handle NULL memmap pointers
5915
5916 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5919         instead of deleting the iCode when an operand is volatile
5920         * src/z80/gen.c (genDummyRead),
5921         * src/mcs51/gen.c (genDummyRead),
5922         * src/ds390/gen.c (genDummyRead),
5923         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5924         not just IC_RIGHT
5925         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5926         * src/SDCC.y: fixed bug #850420
5927
5928 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5929
5930         Applied z80 i/o port patch from Peter Townson and fixed some operators
5931         to better handle operands in A register.
5932         * device/include/z180.h
5933         * src/SDCC.y
5934         * src/SDCCglue.c
5935         * src/z80/gen.c
5936         * src/z80/gen.h
5937         * src/z80/main.c
5938         * src/z80/peeph-z80.def
5939         * src/z80/peeph.def
5940         * src/z80/z80.h
5941
5942 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5943
5944         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5945
5946 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5947
5948         * device/lib/hc08/_mullong.c: Removed extra #endif
5949
5950 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5951
5952         * sim/ucsim/hc08.src/inst.cc,
5953         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5954         carries from x to h
5955         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5956         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5957         * device/include/stdarg.h: fixed varargs for hc08
5958         * device/lib/Makefile.in,
5959         * device/lib/hc08/Makefile,
5960         * device/lib/hc08/_mulint.c,
5961         * device/lib/hc08/_mullong.c: fixed some endian problems
5962
5963 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5964
5965         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5966         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5967         * device/lib/_gptrget.c,
5968         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5969
5970 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5971
5972         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5973         * src/SDCCast.c (astErrors): fixed bug #846007
5974         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5975
5976 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5977
5978         * src/SDCCast.c (decorateType): disabled a transformation I added in
5979         revision 1.188 (access to fields of a structure at an absolute address);
5980         it breaks with bitfields, extern declarations, and gcse analysis.
5981         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5982         could be assigned through a pointer, so don't complain.
5983         * src/SDCCast.c (astErrors),
5984         * src/SDCCast.h,
5985         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5986
5987 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5988
5989         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5990         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5991         output of __config directives, since gpasm now supports them
5992         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5993         pre-processor macro, i.e. -DMCU=p18f452
5994         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5995         and modified to handle 'cast' icode similarly to '=' icode
5996         * src/pic16/device.h (typedef struct PIC_device): added field
5997         'extMIface' to indicate that chip has external memory interface
5998         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5999         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
6000         18F8720
6001
6002 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6003
6004         * src/SDCC.y (pointer): fixed bug #846006
6005         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
6006         * src/SDCCast.c (decorateType): fixed bug #846009
6007         * src/ds390/peeph.def,
6008         * src/ds390/gen.c (genAnd, genOr),
6009         * src/mcs51/peeph.def,
6010         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
6011
6012 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6015         * src/SDCCdflow.c
6016         * src/SDCCcse.c
6017         * src/SDCCcse.h
6018         * src/SDCCBBlock.h
6019         * src/SDCCBBlock.c
6020
6021 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6022
6023         fixed bug #845089
6024         * src/SDCCbitv.h,
6025         * src/SDCCbitv.c: added function to free a bitvector
6026         * src/SDCClrange.h,
6027         * src/SDCClrange.c: added function to recompute the liveranges
6028         * src/avr/ralloc.c,
6029         * src/ds390/ralloc.c,
6030         * src/hc08/ralloc.c,
6031         * src/mcs51/ralloc.c,
6032         * src/pic/ralloc.c,
6033         * src/pic16/ralloc.c,
6034         * src/xa51/ralloc.c,
6035         * src/z80/ralloc.c: recompute the liveranges after register packing
6036
6037 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6038
6039         * src/SDCCloop.c (newInduction): fixed bug #845630
6040
6041 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6042
6043         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6044         inadvertantly left behind from my 2003-11-12 change
6045
6046 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6047
6048         Updated headers I neglected to commit yesterday.
6049         * src/SDCClrange.h,
6050         * src/SDCCicode.h
6051
6052 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6053
6054         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6055         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6056         * src/SDCCopt.c (eBBlockFromiCode),
6057         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6058         the creation of the key hash table from the sequencing so it can be used
6059         earlier (for some GCSE bug fixes still pending)
6060
6061 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6062
6063         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6064         * support/regression/tests/addsub.c: testing genPlus shortcut
6065
6066 2003-11-15  Borut Razem <borut.razem AT siol.net>
6067
6068         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6069
6070 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6071
6072         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6073         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6074         ordering is immaterial.
6075         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6076
6077 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6078
6079         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6080         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6081         (SIGSEV) of bug #840381
6082         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6083         unlink new file before rename if new and old filenames are the same)
6084
6085 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6086
6087         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6088         uninitialized variables) for the mcs51. Set environment variable
6089         SDCC_GENRAMCLEAR to test.
6090         xdata initialization slightly shorter
6091
6092 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6093
6094         * src/SDCCsymt.h,
6095         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6096         #838241 & 780691 (basicly the same bug)
6097         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6098         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6099
6100 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6101
6102         * src/SDCCmain.c (linkEdit): "fix" #834252
6103
6104 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6105
6106         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6107         * src/SDCCast.h,
6108         * src/SDCC.y: fixed bug #819403
6109
6110 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6111
6112         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6113         the reentrant attribute.
6114         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6115         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6116         simulation
6117         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6118         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6119         erroneously reduced to a literal.
6120         * src/hc08/ralloc.c (packRegisters, rematStr),
6121         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6122         some cases
6123
6124 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6125
6126         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6127         * doc/sdccman.lyx: changed from 'article' to 'book'
6128         * doc/Makefile: readded test_suite_spec and cdbfileformat
6129
6130 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6131
6132         * device/include/stdlib.h: include malloc.h to comply with ANSI
6133         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6134
6135 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6136
6137         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6138         * doc/clean.mk: also remove *.out files
6139         * doc/sdccman.lyx: some additions, larger top/bottom margins
6140
6141 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6142
6143         * src/SDCC.y: fixed bug #837365
6144         * support/regression/tests/bitopcse.c
6145         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6146         a symbol (might be valop instead)
6147         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6148         * device/lib/clean.mk: added hc08 to the cleaning list
6149
6150 2003-11-04  Borut Razem <borut.razem AT siol.net>
6151
6152         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6153           made 2003-11-04
6154         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6155           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6156           malloc is declared in standard stdlib.h
6157
6158 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6159
6160         * device/lib/hc08/Makefile: need to clean .rel not .o files
6161         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6162
6163 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6164
6165         * src/port.h,
6166         * src/hc08/main.c,
6167         * src/mcs51/main.c,
6168         * src/ds390/main.c,
6169         * src/z80/main.c,
6170         * src/avr/main.c,
6171         * src/pic/main.c,
6172         * src/pic16/main.c,
6173         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6174         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6175         tests (which uses the port's oclsExpense function)
6176         * src/SDCC.y,
6177         * src/SDCCast.c,
6178         * src/SDCCicode.c,
6179         * src/hc08/gen.c,
6180         * src/ds390/gen.c,
6181         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6182
6183 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6184
6185         * src/SDCCcse.c (ifxOptimize),
6186         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6187         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6188         deleting the IFX iCode.
6189         * src/hc08/ralloc.c: reduced unneeded slocs
6190         * src/hc08/gen.c: fixed bug in asmopToBoolean
6191
6192 2003-11-04  Borut Razem <borut.razem AT siol.net>
6193
6194         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6195           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6196           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6197           transferred to configure
6198
6199 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6200
6201         Use headers defined in the C[++] standards:
6202         * sim/ucsim/gui.src/serio.src/fileio.cc
6203         * sim/ucsim/gui.src/serio.src/frontend.cc
6204         * sim/ucsim/gui.src/serio.src/main.cc
6205         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6206         * support/Util/NewAlloc.c
6207         * as/hc08/lklibr.c
6208         * as/mcs51/lklibr.c
6209         * as/z80/aslist.c
6210         * as/z80/assym.c
6211
6212 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6213
6214         * Added MSVC projects for hc08 assembler and linker:
6215         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6216         /as/hc08/link_hc08.dsp
6217
6218 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6219
6220         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6221
6222 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6223
6224         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6225
6226 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6227
6228         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6229
6230 2003-10-31  Borut Razem <borut.razem AT siol.net>
6231
6232         * support/cpp2/cpplib.h,
6233           support/cpp2/cpplib.c,
6234           support/cpp2/cpplex.c,
6235           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6236           to switch _asm block preprocessing on / off. Default is
6237           #pragma preproc_asm +
6238
6239 2003-10-31  Borut Razem <borut.razem AT siol.net>
6240
6241         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6242           when outputting comment blocks (when executed with -C option) and
6243           _asm (SDCPP specific) blocks
6244
6245 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6246
6247         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6248
6249 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6250
6251         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6252
6253 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6254
6255         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6256         * src/SDCCast.c (decorateType): fixed bug #832664
6257
6258 2003-10-31  Borut Razem <borut.razem AT siol.net>
6259
6260         * support\cpp2\cpplex.c: fixed for SDCPP:
6261           comments(when executed with -C option) and _asm blocks
6262           were included even if they where in skipped #if block.
6263           Applied solution from GCC cpp 3.3.2
6264
6265 2003-10-31  Borut Razem <borut.razem AT siol.net>
6266
6267         * src/SDCC.lex: sdcc now understands both formats:
6268           '# <line_number> <file_name>' and
6269           '#line <line_number> <file_name>'
6270         * support/cpp2/cppmain.c: sdcpp now generates the standard
6271           '# <line_number> <file_name>' instead of former
6272           '#line <line_number> <file_name>'
6273
6274 2003-10-30  Borut Razem <borut.razem AT siol.net>
6275
6276         * support/cpp2/cpphash.h,
6277         * support/cpp2/cpplib.h
6278         * support/cpp2/cpplex.c,
6279         * support/cpp2/cppmain.c,
6280         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6281
6282 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6283
6284         Fixed a number of problems revealed by bug #827883.
6285         * src/SDCCloop.c (loopInvariants): Spill location of the
6286         result operand should be recomputed if extracted from
6287         a loop. Also, don't extract assignments of an iTemp
6288         from a literal.
6289         * src/SDCCast.c (isConformingBody): loop reversal should
6290         not occur if the control variable is involved with a
6291         relational operator.
6292
6293 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6294
6295         * .version: bumped to 2.3.6 to reflect the big improvements
6296         made by Erik and Klaus. Thanks!
6297
6298 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6299
6300         Replaced the livrange code.
6301         * src/SDCClrange.c: added new LR code
6302         * src/SDCCloop.c,
6303         * src/SDCCBBlock.h: removed remainig parts from old LR code
6304         * src/ds390/ralloc.c,
6305         * src/ds390/gen.c: minor fixes to make it work with new code
6306
6307 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * as/hc08/asm.h,
6310         * as/hc08/lkrloc.c,
6311         * src/hc08/gen.c,
6312         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6313         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6314         (tweaked fix for bug #818696)
6315
6316 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6317
6318         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6319
6320 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6321
6322         * src/SDCCmain.c,
6323         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6324         * src/mcs51/gen.c (gencjneshort),
6325         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6326         more efficient (per Scott Bronson's suggestion)
6327
6328 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6329
6330         Extended the semantics of the critical keyword to include
6331         individual statements. See RFE #827755 and #799831
6332         * src/SDCC.y
6333         * src/SDCCicode.c
6334         * src/SDCCopt.c
6335         * src/SDCCast.c
6336         * support/Util/SDCCerr.c
6337         * support/Util/SDCCerr.h
6338         * src/mcs51/gen.c
6339         * src/ds390/gen.c
6340         * src/hc08/gen.c
6341
6342 2003-10-19  Borut Razem <borut.razem AT siol.net>
6343
6344         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6345
6346 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6349         Fixed bug #818696
6350         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6351         and predecrement operand is displayed
6352
6353 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6354
6355         * src/SDCCval.c (valMinus): fixed bug #826041
6356
6357 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6358
6359         Some hc08 related updates that I missed earlier
6360         * sim/ucsim/stypes.h
6361         * support/regression/ports/hc08/spec.mk
6362
6363 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6364
6365         New target "hc08" for the Motorola 68hc08 family of micros
6366
6367         * configure
6368         * configure.in
6369         * Makefile
6370         * src/hc08/*
6371         * src/SDCCmain.c
6372         * src/port.h
6373         * sim/ucsim/hc08.src/*
6374         * sim/ucsim/configure.in
6375         * src/ucsim/configure
6376         * sim/ucsim/packages_in.mk
6377         * as/hc08/*
6378         * as/Makefile
6379         * device/include/mc68hc908qy.h
6380         * device/lib/hc08/*
6381         * device/lib/Makefile.in
6382         * support/regression/ports/hc08/*
6383         * support/regression/Makefile
6384
6385 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6386
6387         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6388         regression test
6389         * src/ds390/gen.c (genCast): fixed bug #821957
6390
6391 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6392
6393         * device/lib/logf.c: "fixed" overlay bug
6394         * support/regression/ports/host/spec.mk: added m library
6395         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6396         * support/regression/tests/float_trans: added (for Eric)
6397
6398 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6399
6400         * src/mcs51/gen.c (genCpl): fixed bug
6401         http://sf.net/mailarchive/message.php?msg_id=6263915
6402
6403 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6404
6405         * src/SDCCast.c (decorateType): added extended constant folding
6406         * src/SDCCsymt.c (computeType): cleanup
6407         * src/SDCCval.c (valShift): minor optimization
6408         * support/regression/tests/ast_constant_folding.c: added
6409
6410 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6411
6412         * src/SDCCmain.c: removed some unintended changes
6413
6414 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6415
6416         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6417         * src/z80/gen.c: fixed part of bug #817589
6418         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6419
6420 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6421
6422         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6423         * src/SDCCcflow.c
6424         * src/SDCCcse.c
6425         * src/SDCCdflow.c
6426         * src/SDCClabel.c
6427         * src/SDCClrange.c
6428         * src/SDCCmem.c
6429         * src/SDCCopt.c
6430         * src/SDCCpeeph.c
6431         * src/SDCCset.c
6432         * src/avr/ralloc.c
6433         * src/ds390/ralloc.c
6434         * src/izt/ralloc.c
6435         * src/mcs51/ralloc.c
6436         * src/pic/ralloc.c
6437         * src/pic16/ralloc.c
6438         * src/xa51/ralloc.c
6439         * src/z80/ralloc.c
6440         * src/z80/gen.c: removed unused label "release:"
6441
6442 2003-10-06  Borut Razem <borut.razem AT siol.net>
6443
6444         * src/SDCC.lex: removed definition of unused variables
6445           save_optimize and save_options
6446
6447 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6448
6449         * clean.mk: removed '=' in "-maxdepth=1"
6450         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6451         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6452
6453 2003-10-06  Borut Razem <borut.razem AT siol.net>
6454
6455         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6456           my_unput() replaced by unput()
6457
6458 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6459
6460         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6461         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6462         type-punned pointer will break strict-aliasing rules"
6463         Old LR behaviour is again default; Klaus' LR can be choosen by
6464         defining the environment variable LRKLAUS
6465         * src/SDCCBBlock.h
6466         * src/SDCCloop.c
6467         * src/SDCClrange.c
6468         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6469         * clean.mk: fixed removal of files in bin/CVS/
6470         * device/lib/clean.mk: fixed removal of directories small and large
6471         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6472         * src/SDCCicode.c,
6473         * src/SDCCval.c: removed superflous test for pedantic
6474
6475 2003-10-05  Borut Razem <borut.razem AT siol.net>
6476
6477         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6478           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6479           message "unmatched #pragma SAVE and #pragma RESTORE"
6480
6481 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6482
6483         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6484           assembly, critical functions, atomic, nojtbound)
6485
6486 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6487
6488         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6489         * src/SDCCBBlock.h
6490         * src/SDCCloop.c
6491         * src/SDCCloop.h
6492         * src/SDCClrange.c
6493
6494 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6495
6496         * src/z80/gen.h,
6497         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6498         * src/mcs51/gen.h
6499         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6500         * src/ds390/gen.h
6501         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6502         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6503         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6504
6505 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6506
6507         * src/z80/gen.c (genRet): fixed bug #524753
6508         * src/z80/gen.c (genCast): fixed internal error on cast from
6509         pointer to long
6510         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6511         fix for bug #477835 to the z80
6512         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6513         for tracking iCodes in the peephole optimizer for z80
6514
6515 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6516
6517         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6518         the other part of bug #814548
6519         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6520
6521 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6522
6523         * src/SDCCcse.c: fixed part of bug #814548
6524
6525 2003-09-28  Borut Razem <borut.razem AT siol.net>
6526
6527         * src/asm.c: rewrite of printILine() to use temporary file instead
6528           a pipe
6529         * src/xa51/main.c: commented out declaration of int rewinds
6530
6531 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6532
6533         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6534
6535 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6538         * src/asm.c (printILine): Fixed bug #811015
6539
6540 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6541
6542         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6543         freeing.
6544
6545 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6546
6547         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6548         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6549         to correctly handle general case of AOP_PAIRPTR
6550         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6551
6552 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6553
6554         * src/mcs51/ralloc.c (fillGaps),
6555         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6556         register positioning bug)
6557
6558 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6559
6560         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6561
6562 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6563
6564         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6565         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6566         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6567         (ralloc doesn't intentionally do this now, but perhaps later)
6568         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6569         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6570         register positioning bugs (Fixed bug #762602 and #795325)
6571         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6572         (Fixed bug #808779)
6573         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6574         lines that --i-code-in-asm generates
6575
6576 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6577
6578         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6579         trying to fclose a FILE* that was already closed.
6580
6581 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6582
6583         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6584         of const struct should be treated as if const themselves)
6585
6586 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6587
6588         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6589
6590 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6591
6592         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6593         Unix (/n) and DOS (/r/n) line terminations.
6594
6595 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6596
6597         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6598         bug #613775
6599
6600 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/mcs51/gen.c (genFunction, genEndFunction),
6603         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6604         and restore of EA so that stack offsets to parameters are
6605         correct when using both critical and reentrant/stack-auto.
6606         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6607         size (can be triggered in error if sloc is shared between
6608         different sized objects)
6609         * device/include/float.h: fixed macros to explicitly use
6610         unsigned long where needed
6611
6612 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6613
6614         Feature req. 799831: added code to allow nesting of critical functions
6615         * src/mcs51/gen.c (genFunction, genEndFunction)
6616         * src/ds390/gen.c (genFunction, genEndFunction)
6617
6618 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6619
6620         * src/SDCCsymt.c (sclsFromPtr),
6621         * src/SDCCsymt.h,
6622         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6623         support for standard C idiom of memory mapped variables; for
6624         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6625         to xdata int at 0x1234 tempvar = 1.
6626         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6627         provided by Akiya ISHIDA
6628
6629 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6630
6631         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6632         * src/SDCCval.c (constVal): added reduction from int to char
6633         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6634         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6635         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6636         to ignore the sign
6637         * support/regression/tests/shifts.c: fixed
6638
6639 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6640
6641         * src/z80/gen.c (genXor): Fixed bug #805445
6642
6643 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6644
6645         Fixed bug #621531 (const & volatile confusion in the type chain).
6646         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6647         refer to the const or volatile state of the pointer itself.
6648
6649         * src/SDCCast.c
6650         * src/SDCCglue.c
6651         * src/SDCCicode.c
6652         * src/SDCCsymt.c
6653         * src/SDCCval.c
6654         * src/SDCC.y
6655         * src/SDCCsymt.h
6656         * src/pic/gen.c
6657         * src/pic/ralloc.c
6658         * src/pic16/gen.c
6659         * src/pic16/ralloc.c
6660         * support/regression/tests/const.c
6661
6662 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6663
6664         When checking for duplicated modules, use absolute paths
6665         instead of relative paths.  Files changed:
6666
6667         * as/mcs51/lklib.c
6668         * link/z80/lklib.c
6669
6670 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6671
6672         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6673
6674 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6675
6676         * device/include/string.h: added size_t typedef, changed
6677         prototypes to use size_t, eliminated separate reentrant and
6678         non-reentrant declarations, added _memmove declaration
6679         * device/lib/_memcpy.c: changed to use size_t instead of int,
6680         changed /4 to >>2 to avoid division library call
6681         * device/lib/_memcmp.c,
6682         * device/lib/_memset.c,
6683         * device/lib/_strncat.c,
6684         * device/lib/_strncpy.c,
6685         * device/lib/_strncmp.c: changed to use size_t instead of int
6686         * device/lib/_memmove.c: new file (fixed bug #772294)
6687         * device/lib/Makefile.in: added _memmove.c
6688         * device/lib/z80/asm_strings.s: fixed bug #772290
6689         * support/regression/tests/bitfields.c: attempt to fix host assertion
6690         failure on amd64-unknown-linux2.2
6691
6692 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6695         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6696         * as/z80/asmain.c (main): fixed bug #801766
6697
6698 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6699
6700         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6701         compilers
6702
6703 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6704
6705         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6706         reported in bug #800609
6707
6708 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6709
6710         * Top header beautifications in src/pic16 directory:
6711           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6712           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6713           pcoderegs.h, ralloc.c, ralloc.h
6714         * main.c: added top header and GPL license notice
6715         * pcode.c: fixed the if-conditional warning
6716
6717 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6718
6719         * device/lib/_mullong.c: replaced int by short for gcc
6720
6721 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6724         and JUMPTABLE iCodes properly now (worked by accident before)
6725         * src/mcs51/gen.c (leftRightUseAcc),
6726         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6727         iCode properly now. Use getSize instead of nRegs since a & b
6728         aren't part of the nRegs tally.
6729
6730 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6731
6732         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6733         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6734           before instructions that use the _STATUS register
6735
6736 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6737
6738         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6739         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6740         fetching of the pointer
6741         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6742         copied from genNearPointerSet()
6743         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6744         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6745         If they pop r0/r1 they must be called in the opposite order than aopOp().
6746         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6747         (resp. --stack-auto), prepared for --xstack
6748
6749 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6750
6751         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6752
6753 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6754
6755         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6756         these ports have their own __sdcc_external_start()
6757
6758 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6759
6760         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6761         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6762         type for bits was changed. It resulted in bit variables becoming
6763         global, which is not permitted in PIC 14 assembly output.
6764
6765 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6766
6767         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6768
6769 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6770
6771         Z80 and MCS51 linkers complaint if a public symbol is defined
6772         in more than one library module:
6773
6774         * as/mcs51/lklib.c
6775         * link/z80/lklib.c
6776         * as/mcs51/Makefile.in
6777
6778 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6779
6780         A few small changes that speed up the peephole optimizer.
6781
6782         * src/SDCCpeeph.c
6783
6784 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         Try to make the peephole optimizer smarter by maintaining
6787         an association between the assembly source code and the
6788         iCodes that originated them. Put this information to use
6789         with a new peephole rule condition "notVolatile" so that
6790         the rules can be aggressive yet still safe.
6791
6792         * src/SDCCpeeph.c
6793         * src/SDCCpeeph.h
6794         * src/mcs51/gen.c
6795         * src/mcs51/peeph.def
6796
6797 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6798
6799         Fixed bug #741761
6800
6801         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6802         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6803         if the left or right operand symbols have the accuse flag set.
6804
6805 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6806
6807         Changed the type of the result of the ! (NOT) operator to char;
6808         previously it returned the same type as the source. This allows
6809         us to eliminate all the genFloatNot functions (all of its target
6810         implementations were very buggy) since !float can use the same
6811         code as !long now.
6812
6813         * src/SDCCicode.c (ast2iCode): ! returns char
6814         * src/mcs51/gen.c (genNot, genNotFloat),
6815         * src/ds390/gen.c (genNot, genNotFloat),
6816         * src/z80/gen.c (genNot, genNotFloat),
6817         * src/pic/gen.c (genNot, genNotFloat),
6818         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6819
6820 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6821
6822         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6823         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6824            during interrupts. Ensure WSAVE is located at a shared bank address.
6825         2. Fixed page selection in some places
6826         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6827            the registers name strings.
6828         4. Fixed "signed / unsigned compare" compiler warnings.
6829         5. The PIC port manages its own allocation of the general purpose
6830            registers, but makes no attempt to reuse them. As a result when
6831            compiling it soon runs out of general purpose registers. Some
6832            additional code was added to the files pcode.c and device.c to walk
6833            through the function call tree and rename the registers so that they
6834            get reused.
6835
6836         * src/pic/device.c
6837         * src/pic/gen.c
6838         * src/pic/glue.c
6839         * src/pic/pcode.c
6840         * src/pic/pcode.h
6841         * src/pic/ralloc.c
6842         * src/pic/ralloc.h
6843         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6844         genPlus() & genMinus() when the result is the same as left or right
6845
6846 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6849
6850 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6851
6852         Made bitfield a distinct type from bit so that bitfields
6853         convert as per ANSI C and bits retain their traditional
6854         boolean style behaviour. Implemented bitfield support in
6855         the z80 port.
6856
6857         * src/SDCCsymt.h,
6858         * src/SDCCsymt.c,
6859         * src/SDCCast.c,
6860         * src/cdbFile.c,
6861         * src/mcs51/gen.c,
6862         * src/ds390/gen.c: bit v bitfield split
6863         * src/z80/gen.c: New support for bitfields
6864         * support/regression/tests/bitfields.c: reenabled z80,
6865         added more tests
6866
6867 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6868
6869         Rules 246.x, 247.x relate to bitfields, the others speed up
6870         access to xdata mapped I/O devices.
6871
6872         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6873
6874 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6875
6876         Cleaned up genPackBits and genUnpackBits and added two helper
6877         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6878         for literal assignments in genPackBits (thanks to Frieder for
6879         reminding me).
6880
6881         * src/mcs51/gen.c
6882         * src/ds390/gen.c
6883
6884 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6885
6886         Fixed bug #748310 (pointer to function type mishandled when the
6887         function name is omitted). Also fixed a SIGSEGV when a function
6888         attribute (reentrant, etc) is used on a non-function or on a
6889         function but misplaced before the parameter list.
6890
6891         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6892         bug #748310
6893         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6894         * support/Util/SDCCerr.h,
6895         * support/Util/SDCCerr.c: Added func attr misuse error msg
6896
6897 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6898
6899         Fixed bug #787649 by anonymous
6900         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6901         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6902
6903 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         Fixed numerous bitfield problems.
6906
6907         * src/SDCC.y: More bitfield related error checking
6908         * src/SDCCsymt.h,
6909         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6910         * support/Util/SDCCerr.h,
6911         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6912         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6913         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6914         * support/regression/tests/bitfields.c: tests added
6915
6916 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6917
6918         Made the constant following the "interrupt" keyword optional. If
6919         omitted, the function will not automatically be given an entry
6920         in the interrupt vector table (similar to #pragma NOIV, but
6921         less syntacticly kludgy). The interrupt number is also now
6922         range checked. Also fixed a bug in the high order bit example
6923         in the manual.
6924
6925         * src/SDCC.y
6926         * src/SDCCmem.c
6927         * src/SDCCglue.c
6928         * src/SDCCsymt.h
6929         * support/Util/SDCCerr.c
6930         * support/Util/SDCCerr.h
6931         * doc/sdccman.lyx
6932
6933 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6934
6935         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6936         * src/SDCCicode.c (operandOperation): rewritten some ops
6937         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6938         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6939         other type
6940         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6941         be re-activated by defining REDUCE_LITERALS)
6942         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6943         unsigned, but are signed by default
6944         * src/SDCCval.c (constVal): rearranged
6945         * src/SDCCval.c (valMod): preliminary fix
6946         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6947         * support/regression/literalop.c: added, work in progress
6948
6949 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         Generate warnings for useless declarations like "char data;"
6952         that don't do what new users expect.
6953
6954         * src/SDCC.y
6955         * support/Util/SDCCerr.h
6956         * support/Util/SDCCerr.c
6957
6958 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6959
6960         * src/SDCCval.c (valMult): fix overflow detection of negative int
6961
6962 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6963
6964         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6965
6966         Changes to support big endian targets:
6967
6968         * src/ports.h
6969         * src/SDCCglue.c
6970         * src/avr/main.c
6971         * src/ds390/main.c
6972         * src/izt/i186.c
6973         * src/mcs51/main.c
6974         * src/pic/main.c
6975         * src/pic16/main.c
6976         * src/xa51/main.c
6977         * src/z80/main.c
6978
6979 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6980
6981         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6982         * device/lib/time.c: fixed warning "integer overflow in expression"
6983
6984 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6985
6986         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6987         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6988         constants are unsigned; added recognition of "u" flag for unsigned
6989         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6990         * src/SDCCval.c (valDiv, valMod): fixed signdness
6991         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6992         signedness of modulo, left and right shift
6993         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6994         * support/Util/SDCCerr.h: added warning W_INT_OVL
6995         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6996         * src/SDCCast.c (ast_print): improved output of constants
6997
6998 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6999
7000         Fixed some warnings when building with MSVC:
7001
7002         * as\mcs51\asdata.c
7003         * as\z80\asdata.c
7004         * as\mcs51\asm.h
7005         * as\z80\asm.h
7006         * link\z80\aslink.h
7007         * link\z80\lkdata.c
7008         * link\z80\lkeval.c
7009         * link\z80\lkgb.c
7010         * link\z80\lkihx.c
7011         * link\z80\lks19.c
7012         * link\z80\lksym.c
7013         * support\cpp2\cpplib.c
7014         * src\ds390\gen.c
7015         * src\mcs51\gen.c
7016
7017 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7018
7019         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7020
7021 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7022
7023         * support\librarian\clean.mk: Do not remove Makefile.
7024         * support\librarian\Makefile: added.
7025
7026 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7027
7028         Added librarian to MSVC build:
7029         * all.dsp
7030         * sdcc.dsw
7031         * support\librarian\librarian.dsp
7032
7033         'configure' not needed for librarian, removed:
7034         * support\librarian\configure
7035         * support\librarian\configure.in
7036         * support\librarian\config_in.h
7037         * support\librarian\Makefile.in
7038
7039         Hopefully these ones built the librarian and the rest of sdcc properly:
7040         * Makefile
7041         * Makefile.common.in
7042
7043         Messed up 'configure', so revert to previous version:
7044         * configure
7045         * configure.in
7046
7047 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7048
7049         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7050         there, while the mantissa of a double is "only" 53 bits wide.
7051
7052 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7053
7054         Adding sdcclib to the build.  MSVC project coming soon.
7055         Files added/changed:
7056
7057         * support\librarian\clean.mk
7058         * support\librarian\configure
7059         * support\librarian\configure.in
7060         * support\librarian\config_in.h
7061         * support\librarian\Makefile.bcc
7062         * support\librarian\Makefile.in
7063         * support\librarian\sdcclib.c
7064         * Makefile.bcc
7065         * Makefile
7066         * Makefile.common.in
7067         * configure
7068         * configure.in
7069
7070 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7071
7072         Linker now complaints if linked modules have conflicting options, for
7073         example, one compiled using --model-large and another one compiled with
7074         --model-small.  The following files were modified:
7075
7076         * as\mcs51\asdata.c
7077         * as\mcs51\aslink.h
7078         * as\mcs51\asm.h
7079         * as\mcs51\asmain.c
7080         * as\mcs51\asout.c
7081         * as\mcs51\i51pst.c
7082         * as\mcs51\lkdata.c
7083         * as\mcs51\lklibr.c
7084         * as\mcs51\lkmain.c
7085         * as\z80\asdata.c
7086         * as\z80\asm.h
7087         * as\z80\asmain.c
7088         * as\z80\asout.c
7089         * as\z80\z80pst.c
7090         * link\z80\aslink.h
7091         * link\z80\lkdata.c
7092         * link\z80\lklibr.c
7093         * link\z80\lkmain.c
7094         * src\SDCCglue.c
7095
7096 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7097
7098         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7099         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7100
7101 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7102
7103         * src/z80/mappings.i: fix _mul[us][int,long] entries
7104
7105 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7106
7107         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7108
7109 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7110
7111         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7112         * support/regression/tests/bitopcse.c: added
7113         fixed warning:
7114         * src/avr/gen.c:
7115         * src/pic/gen.c:
7116         * src/pic16/gen.c:
7117         * src/z80/gen.c:
7118         * src/xa51/gen.c:
7119
7120 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7121
7122         added support for new library format to z80, gbz80 linkers:
7123         *link/z80/aslink.h
7124         *link/z80/lklex.c
7125         *link/z80/lklib.c
7126         *link/z80/lklist.c
7127
7128 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7129
7130         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7131         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7132
7133 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7134
7135         added DUMMY_READ_VOLATILE:
7136         * src/SDCC.y:
7137         * src/avr/gen.c:
7138         * src/xa51/gen.c:
7139         * src/z80/gen.c:
7140         * src/pic/gen.c:
7141         * src/pic16/gen.c:
7142         * src/mcs51/gen.c:
7143         * src/ds390/gen.c:
7144         * src/SDCCcse.c (algebraicOpts): many improvements
7145         * src/SDCCcse.h: removed algebraicOpts()
7146         * src/SDCCicode.c (picDummyRead): added
7147
7148 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7149
7150         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7151         "Insufficient space in data memory".
7152
7153 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7154
7155         * src/mcs51/gen.c: fixed bug #771358
7156         * src/z80/gen.c: fixed bug #759087
7157
7158 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7159
7160         * src/pic16/glue.c: minor cleanup by Vangelis
7161
7162 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7163
7164         * device/include/regc515c.h: fixed #758477
7165         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7166         * device/lib/_gptrput.c: saved a few bytes
7167         * my tab spacing is 8, yours too?)
7168         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7169         * device/lib/serial.c: process RX bytes earlier than TX bytes
7170         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7171
7172 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7173
7174         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7175
7176 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7177
7178     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7179
7180 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7181
7182         * device/lib/Makefile.in: bad fix, reverted to 1.43
7183
7184 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7185
7186         * device/lib/Makefile.in: added missing z80 object files
7187
7188 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7189
7190         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7191         pic16 progress by Vangelis:
7192         * src/SDCCglobl.h:
7193         * src/SDCCmain.c:
7194         * src/pic/Makefile:
7195         * src/pic:
7196         * pic/Makefile:
7197         * pic16/device.c:
7198         * pic16/device.h:
7199         * pic16/gen.c:
7200         * pic16/gen.h:
7201         * pic16/genarith.c:
7202         * pic16/glue.c:
7203         * pic16/main.c:
7204         * pic16/pcode.c:
7205         * pic16/pcode.h:
7206         * pic16/pcodepeep.c:
7207         * pic16/peeph.def:
7208
7209 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7210
7211     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7212
7213 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7214
7215     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7216     added gbz80 build to MSVC project.
7217     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7218     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7219     from 8051 stuff and setup so it links using a .lnk file.
7220
7221 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7222
7223     * support/librarian/sdcclib.c: sdcc librarian.
7224     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7225     with sdcclib.
7226
7227 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7228
7229     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7230
7231 2003-07-02  Borut Razem <borut.razem AT siol.net>
7232
7233         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7234         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7235         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7236         src/xa51/main.c, src/z80/main.c:
7237         virtualization of glue() function: each port has it's own glue function,
7238         which is accessed by do_glue function pointer in PORT.general structure
7239
7240 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7241
7242         * DS800C400 fun, improved ROM interface and tinibios.
7243
7244 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7245
7246         * More support for DS80C400. Now includes beginning of interface to ROM.
7247
7248 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7251
7252 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7253
7254         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7255
7256 2003-06-19  Borut Razem <borut.razem AT siol.net>
7257
7258         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7259
7260 2003-06-19  Borut Razem <borut.razem AT siol.net>
7261
7262         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7263         fixed Z80 port - crt0.o: cannot open.
7264
7265 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * support/Util/MySystem.c (merge_command): revert bad fix
7268
7269 2003-06-18  Borut Razem <borut.razem AT siol.net>
7270
7271         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7272
7273 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7274
7275         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7276         option --use-stdout sends errors to stdout instead of stderr.
7277
7278 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7279
7280         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7281
7282 2003-06-15  Borut Razem <borut.razem AT siol.net>
7283
7284         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7285         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7286         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7287         fixed width array of pointers replaced with sets;
7288         multiple include and lib paths ared transferred to preprocessor and linker
7289         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7290         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7291         fixed width array of pointers
7292         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7293         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7294         fixupPath(), getPathDifference()
7295         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7296         fixed width array of pointers
7297
7298 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7299
7300         * src/pic16/ralloc.c: fix warnings
7301         * src/pic16/pcode.c: fix warning
7302
7303 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7304
7305          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7306         know all the details, but essentially this set of changes enable
7307         the pic16 port to generate movff instructions and generate assembler
7308         directives,
7309         * src/SDCCmain.c:
7310         * src/pic16/gen.c:
7311         * src/pic16/glue.c:
7312         * src/pic16/pcode.c:
7313         * src/pic16/device.c:
7314         * src/pic16/main.c:
7315         * src/pic16/pcode.h:
7316         * src/pic16/pcoderegs.c:
7317         * src/pic16/ralloc.c:
7318         * src/pic16/ralloc.h:
7319
7320 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7321
7322         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7323         added option --vc, so sdcc errors and warnings are compatible with
7324         Microsoft Visual Studio.
7325
7326 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7327
7328         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7329           device/lib/libfloat.lib: added atof function.
7330
7331 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7332
7333         * doc/sdccman.lyx: updated to Lyx 1.3
7334         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7335         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7336         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7337
7338 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7339
7340         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7341
7342 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7343
7344         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7345           additions to the "related tools/documentation" section
7346
7347 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7348
7349         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7350
7351 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7352
7353         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7354         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7355
7356 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7357
7358         * doc/sdccman.lyx: fix double dash and other minor things
7359         * doc/Makefile: fix double dash
7360
7361 2003-05-28  Karl Bongers(patches from Martin Helmling)
7362         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7363           condition and ignore commands.
7364
7365 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7366
7367         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7368           is in parts still quite out of date, I did changes as far as I felt makes sense
7369           for a non-native english speaker.
7370           Please feel free to add to the manual or to correct my changes.
7371         * doc/Makefile: undid touching the date of intermediate tex files.
7372
7373 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7374
7375         * doc/sdccman.lyx: Manual has an index now
7376
7377 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7378
7379         Finalize muluint/mulsint and mululong/mulslong merging:
7380         * device/lib/_mulint.c
7381         * device/lib/_mullong.c
7382         * device/lib/gbz80/mul.s
7383         * device/lib/gbz80/stubs.s
7384         * device/lib/z80/mul.s
7385         * device/lib/z80/stubs.s
7386         * src/SDCCsymt.c (initCSupport)
7387
7388 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7389
7390         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7391         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7392           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7393           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7394           instead of /Zm500.
7395
7396 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7397
7398         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7399           the regression tests I'm not brave enough to enable 245.b, 245.c
7400         * doc/sdccman.lyx: added latex preamble for hyperref package.
7401           Using pdflatex this will give you a hyperlinked pdf file with
7402           bookmarks. (prepend '%' before /usepackage if this breaks something)
7403
7404 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7405
7406          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7407
7408 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7409
7410         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7411
7412 2003-05-21    <johan AT balder>
7413
7414         * src/SDCCglue.c (printIval): fixed bug #739934
7415
7416 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         Applied patch from bug 737905 (renamed yylineo to mylineno):
7419         * src/altlex.c
7420         * src/SDCCast.c
7421         * src/SDCglobl.h
7422         * src/SDCC.lex
7423         * src/SDCCsymt.c
7424         * src/SDCCval.c
7425         * src/pic16/pcode.c: Cleaned warnings
7426         * src/pic16/pcodeflow.c: Cleaned warnings
7427         * src/pic16/pcoderegs.c: Cleaned warnings
7428
7429 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7430
7431         * src/pic16/pcode.c: Cleaned warnings
7432         * src/pic16/pcodepeep.c: Cleaned warnings
7433         * src/pic16/ralloc.c: Cleaned warnings
7434
7435 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7436
7437         * doc/sdccman.lyx: fixed bug 739745
7438         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7439
7440 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7443         it can be defined with CFLAGS when running configure
7444         * src/SDCCmain.c: fixed compiling + linking with object files
7445
7446 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7447
7448         * configure.in: configure for pic16 port,
7449             added --disable-pic16-port
7450         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7451         * src/SDCCmain.c: linkOptions is changed to set *,
7452             added if/endif conditional macros to remove options help
7453             messages from optionsTable when a port is not configured, added
7454             support for the PIc16 port in the ports table, when executing
7455             the compiler with no port specified on command line, a default
7456             port is selected with the new macro DEFAULT_PORT which is
7457             defined in port.h, in setDefaultOptions() linkOptions is removed
7458             from initialization assignment, since now it is a set,
7459             parseCmdLine uses setParseWithComma for linkOptions, in
7460             linkEdit() linkOptions are accessed with new function indexSet()
7461             which returns the i'th item of a set variable. See SDCCset.c, in
7462             linkEdit() when calling buildCmdLine(), added linkOptions as
7463             last argument. Now users can pass arguments to gplink via the
7464             -Wl option, main() uses pic16glue() to glue up pic16 programs
7465         * src/SDCCpeeph.c: various changes to support pic16
7466         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7467             return the i'th item of the set
7468         * src/SDCCset.h: added function prototype for indexSet()
7469         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7470         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7471         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7472             added macro DEFAULT_PORT
7473         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7474         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7475             generated
7476         * src/pic16/glue.c: commented out some error producing lines
7477         * src/pic16/main.c: __config directives are commented out to stop
7478             gpasm complaining and test the linkage with gplink, _linkCmd and
7479             _asmCmd changed to be more gplink and gpasm friendly
7480         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7481             produced an error when parsed, peep rule 12 is added to utilize
7482             movff, but it is commented out since the pCode does not support
7483             yet a command with 2 address arguments
7484
7485 2003-05-18    <johan AT balder>
7486
7487         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7488         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7489 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7490
7491         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7492   Added feature to script commands from file.
7493
7494 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7495
7496         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7497         * src/SDCCutil.c: include ctype.h for win32
7498
7499 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7500
7501         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7502
7503 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7504
7505         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7506   Fixed so you can set breakpoints prior to run, run does not stop
7507   on entry now.  Add tbreak.  Other enhancements and fixes for use
7508   with ddd.
7509
7510 2003-05-12  Borut Razem <borut.razem AT siol.net>
7511
7512         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7513
7514 2003-05-11  Borut Razem <borut.razem AT siol.net>
7515
7516         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7517         the path of bin directory, so that PATH is the only env. variable, which has to be set
7518         in case of standard installation.
7519         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7520         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7521         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7522
7523 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7524
7525         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7526         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7527         temp files are in the port dir; clean the gen/test directory when
7528         generating new test.c
7529         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7530         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7531         * support/regression/tests/zeropad.c: added
7532
7533 2003-05-09    <johan AT balder>
7534
7535         * src/SDCCglue.c: fixed bug #597940
7536
7537 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7538
7539         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7540   cache sfr, optimize next,step, fix off by one sourceline,
7541   support ddd list function.
7542         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7543
7544 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7545
7546         * support/regression/HTMLgen.py: added compare_s2f()
7547         * support/regression/Makefile: redo 1.27
7548         * support/regression/generate-cases.py: redo 1.5
7549
7550 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7551
7552         * support/regression/tests/float.c: workaround 33 bit hex constant
7553         * support/regression/tests/simplefloat.c: fix division for host
7554
7555 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7556
7557         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7558         that tame's the PIC's over-aggressive optimizer.
7559
7560 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7561
7562          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7563          support for MSVC.
7564
7565 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7566
7567         Initial support for DS80C400. "Hello world" runs on TINIm400
7568         (with polled I/O).
7569
7570 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7571
7572          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7573          * Some notes on ddd usage added in debugger/README
7574          Martin Helmling adding more features and fixes for ddd GUI debugger.
7575          Code added for nexti, stepi, up, down, and other adjustments.
7576
7577 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7578
7579         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7580         * src/pic/peeph.def Added two rules to optimize carry manipulation
7581         * src/pic/* removed debug printfs
7582
7583 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7584
7585         * debugger/mcs51/cmd.c: added header newalloc.h
7586
7587 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7588
7589         * as/Makefile: new EXEEXT
7590         * as/z80/Makefile: remove trailing slash of BUILDIR
7591         * as/z80/clean.mk: new EXEEXT
7592         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7593         * support/cpp2/Makefile.in: new EXEEXT
7594         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7595
7596 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7597
7598         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7599         EXEEXT was introduced to fix all related problems with targets
7600         "clean", "install" and "uninstall"; a couple of further flaws
7601         especially with "clean" have been fixed too
7602         * as/mcs51/Makefile.in
7603         * as/mcs51/clean.mk
7604         * as/z80/Makefile
7605         * Makefile
7606         * clean.mk
7607         * debugger/mcs51/Makefile.in
7608         * debugger/mcs51/clean.mk
7609         * link/z80/Makefile
7610         * link/z80/Makefile.in
7611         * link/z80/clean.mk
7612         * link/Makefile
7613         * packihx/Makefile.in
7614         * packihx/clean.mk
7615         * sim/ucsim/Makefile
7616         * sim/ucsim/clean.mk
7617         * sim/ucsim/avr.src/Makefile.in
7618         * sim/ucsim/avr.src/clean.mk
7619         * sim/ucsim/s51.src/Makefile.in
7620         * sim/ucsim/s51.src/clean.mk
7621         * sim/ucsim/xa.src/Makefile.in
7622         * sim/ucsim/xa.src/clean.mk
7623         * sim/ucsim/z80.src/Makefile.in
7624         * sim/ucsim/z80.src/clean.mk
7625         * sim/ucsim/main_in.mk
7626         * sim/ucsim/packages_in.mk
7627         * sim/ucsim/gui.src/Makefile.in
7628         * sim/ucsim/gui.src/serio.src/Makefile.in
7629         * sim/ucsim/gui.src/serio.src/clean.mk
7630         * src/Makefile.in
7631         * src/clean.mk
7632         * support/cpp2/Makefile.in
7633         * support/cpp2/clean.mk
7634         * support/makebin/Makefile
7635         * support/makebin/clean.mk
7636         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7637         * doc/sdccman.lyx: --program-suffix no longer needed
7638
7639 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7640
7641          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7642          Martin Helmling added support for ddd GUI debugger.
7643          Code added to display assembly, set variables, and other commands
7644          to interface to ddd.
7645
7646 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7647
7648         * as/Makefile: fix target clean
7649         * as/clean.mk: fix target clean
7650         * as/z80/clean.mk: fix target clean
7651
7652 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7653
7654         * Makefile.common.in: added  AT EXEEXT AT
7655         * configure.in: removed all mingw32 stuff
7656         * configure: rebuilt from configure.in
7657         * doc/sdccman.lyx: updated section "installation"
7658         * support/scripts/sdcc_mingw32: adapted to configure
7659         * support/scripts/sdcc_cygwin_mingw32: added
7660
7661 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7662
7663         * src/pic Added object file support for the PIC port
7664         * src/pic Applied patch from Craig Franklin (this started the object file support)
7665         * src/regression Updated the PIC regression tests for object files
7666
7667 2003-04-20  Borut Razem <borut.razem AT siol.net>
7668
7669         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7670           lklex.c: In function `getfid':
7671           lklex.c:203: warning: array subscript has type `char'
7672         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7673           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7674         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7675           stack handling macros
7676
7677 2003-04-19  Borut Razem <borut.razem AT siol.net>
7678
7679         * "handling space characters in file path" task:
7680         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7681         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7682         * support/Util/MySystem.h: make it self-sufficient
7683         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7684           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7685           handling space characters in file path
7686         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7687           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7688         * support/Util/MySystem.c: handling space characters in executable's path
7689
7690 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7691
7692         * as/z80/Makefile: fix permanent rebuild of z80
7693         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7694         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7695
7696 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7697
7698         * src/SDCCopt.c: add special case optimization to replace modulo by
7699           a power of two with a bitwise AND.
7700
7701 2003-04-18    <johan AT balder>
7702
7703         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7704
7705 2003-04-17    <johan AT balder>
7706
7707         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7708         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7709
7710 2003-04-13  Borut Razem <borut.razem AT siol.net>
7711
7712         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7713         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7714           fixed mingw problem in adl_NORMALIZE_PATH
7715
7716 2003-04-12  Borut Razem <borut.razem AT siol.net>
7717
7718         * fixed "#pragma SAVE/RESTORE can not be nested":
7719         * src/SDCC.lex: reworked pragma handling functions
7720         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7721         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7722
7723 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7724
7725         * src/SDCCutil.c (pathEquivalent): defined but not used
7726         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7727         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7728         * configure: rebuilt from configure.in
7729         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7730         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7731         * device/include/Makefile.in: replace sdcc_datadir
7732         * device/lib/Makefile.in: replace sdcc_datadir
7733         * Makefile.common.in: add LDFLAGS from configure
7734         * packihx/Makefile.in: use LDFLAGS
7735         * src/Makefile.in: use LDFLAGS
7736         * support/cpp2/Makefile.in: add LDFLAGS from configure
7737         * support/makebin/Makefile: use LDFLAGS
7738         * .version: bumped version number to 2.3.5
7739
7740 2003-04-12  Borut Razem <borut.razem AT siol.net>
7741
7742         * completed "different paths" task:
7743         * src/SDCCmacro.c: fixed bug in handling quotes
7744         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7745         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7746
7747 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7748
7749         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7750
7751 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7752
7753         * ds390/gen.c ds390/peeph.def: fix bug 706781
7754
7755 2003-04-11  Borut Razem <borut.razem AT siol.net>
7756
7757         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7758
7759 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7760
7761         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7762         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7763          set - this bit used to not be set...).
7764         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7765           bad code in PIC Port
7766         * src/regression/and2.c added to test bug 609268
7767         * src/regression/Makefile added and2.c to regression test
7768
7769
7770 2003-04-08    <johan AT CP255758-A>
7771
7772         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7773         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7774         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7775
7776 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7777
7778         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7779         fix bug #487815
7780         * support/cpp2/Makefile.in: fix bug #487815
7781         * configure: rebuilt from configure.in
7782         * Makefile.common.in: docdir changed, new path suffixes
7783         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7784         * sdcc_vc_in.h: reflect changes from sdccconf.h
7785         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7786         * src/SDCCutil.h: remove BINDIR hack
7787         * doc/sdccman.lyx: update new path hierarchy
7788
7789 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7790
7791         * src/SDCCpeeph.c: added okToRemoveSLOC test
7792
7793 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7794
7795         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7796
7797 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7798
7799         * src/SDCCpeeph.c: added labelIsReturnOnly test
7800         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7801
7802 2003-04-05    <johan AT balder>
7803
7804         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7805         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7806         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7807         * src/SDCCast.c: fixed a warning
7808         * src/SDCCast.h: fixed a warning
7809         * src/SDCCicode.c (operandFromAst): fixed a warning
7810
7811 2003-04-04    <johan AT balder>
7812
7813         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7814         * src/SDCCast.c (decorateType): fixed bug #715076
7815         * src/SDCC.y: fixed bug #702907
7816
7817 2003-04-03    <johan AT balder>
7818
7819         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7820         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7821         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7822         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7823         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7824
7825 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7826
7827         * _decdptr.c: fix return values
7828         * _gptrget.c: fix return values
7829         * _gptrgetc.c: fix return values
7830         * _gptrput.c: fix return values
7831         * _mulint.c: fix return values
7832         * as/z80/Makefile: fix 'make -j' problem
7833
7834 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7835
7836         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7837         * configure.in: big cleanup, updated to autoconf 2.5x
7838         * configure: rebuilt from configure.in
7839         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7840         * sdcc_vc_in.h: reflect changes from sdccconf.h
7841         * doc/Makefile: fixed a flaw in "make install"
7842
7843 2003-04-02    <johan AT balder>
7844
7845         * src/ds390/gen.c (genCmp): no comments
7846         * src/mcs51/gen.c (genCmp): no comments
7847         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7848         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7849
7850 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7851
7852         * support/regression/generate-cases.py: place generated file in given sub directory
7853         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7854         * support/regression/Makefile: improvements for 'make -j';
7855         side effect: it's simpler and faster now
7856
7857 2003-03-31  Borut Razem <borut.razem AT siol.net>
7858
7859         * src/z80/main.c: link-{port} and as-{port} defined without path
7860         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7861
7862 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7863
7864         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7865
7866 2003-03-30  Borut Razem <borut.razem AT siol.net>
7867
7868         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7869           changed type of list parameter to set
7870         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7871         * src/port.h: changed type of do_assemble() parameter to set
7872         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7873           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7874           definition of "cppoutfilename" macro with NULL value in preProcess()
7875         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7876         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7877         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7878           replaced with set *binPathSet
7879         * shash_add() deallocates the item, if allready exsists, before adding the new one
7880         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7881
7882 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7883
7884         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7885           a nested for loop bug in the PIC port
7886         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7887           for loops
7888
7889 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7890
7891         * support/Util/dbuf.h: remove C++ stuff to make it portable
7892
7893 2003-03-28  Borut Razem <borut.razem AT siol.net>
7894
7895         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7896           literal strings in stringLiteral()
7897         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7898         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7899           to the project
7900
7901 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7902
7903         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7904
7905 2003-03-26    <johan AT balder>
7906
7907         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7908         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7909         * src/SDCCast.c (decorateType): fixed " -v < 3"
7910
7911 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7912
7913         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7914         Added Lenny Story's debug infrastructure changes:
7915         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7916         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7917         * src/cdbFile.c: added
7918         * src/SDCCdebug.c: added
7919         * src/SDCCdebug.h: added
7920         * src/SDCCast.c (createFunction)
7921         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7922         * src/SDCCmain.c (parseCmdLine, main)
7923         * src/SDCCmem.c (redoStackOffsets)
7924         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7925         * src/SDCCsymt.h
7926         * src/common.h
7927         * src/avr/gen.c (genAVRCode)
7928         * src/ds390/gen.c (gen390Code)
7929         * src/mcs51/gen.c (gen51Code)
7930         * src/pic/gen.c (genpic14Code)
7931         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7932         * src/xa51/gen.c (genXA51Code)
7933         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7934
7935 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7936
7937         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7938         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7939
7940 2003-03-22    <johan AT balder>
7941
7942         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7943
7944 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7945
7946         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7947         * doc/cdbfileformat.lyx: added, written by Lenny Story
7948         * doc/Makefile: added cdbfileformat.lyx
7949         * doc/clean.mk: added cdbfileformat.lyx
7950
7951 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7952
7953         * src/mcs51/peeph.def: fix bug #705773
7954
7955 2003-03-20    <johan AT balder>
7956
7957         An sfr/sbit can have an "at #" AND an initializer
7958         * src/SDCCsymt.c (checkSClass):
7959         * src/SDCCmem.c (allocGlobal):
7960         * src/SDCCmem.c (allocLocal):
7961         * src/SDCCast.c (createBlock):
7962
7963 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7966
7967 2003-03-16    <johan AT balder>
7968
7969         Undid the hackup of const and volatile, the problem is much bigger
7970         * src/SDCC.y:1.65
7971         * src/SDCCast.c:1.171
7972         * src/SDCCglue.c:1.138
7973         * src/SDCCicode.c:1.146
7974         * src/SDCCsymt.c:1.150
7975         * src/SDCCval.c:1.65
7976
7977 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7978
7979         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7980         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7981
7982 2003-03-13    <johan AT balder>
7983
7984         Hackup const and volatile modifiers in type chains a bit:
7985         * src/SDCC.y:1.63
7986         * src/SDCCast.c:1.169
7987         * src/SDCCglue.c:1.136
7988         * src/SDCCicode.c:1.143
7989         * src/SDCCsymt.c1.146
7990         * src/SDCCsymt.h1.59
7991         * src/SDCCval.c:1.63
7992
7993 2003-03-12    <johan AT balder>
7994
7995         * src/SDCCBBlock.h: more LRH debugging junk
7996         * src/SDCCcflow.h: more LRH debugging junk
7997         * src/SDCCloop.c: more LRH debugging junk
7998         * src/SDCC.y (struct_declaration): fixed bug #697590
7999         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
8000         * src/ds390/gen.c (aopForRemat): fixed bug #700031
8001         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
8002
8003 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8004         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
8005         test function names must now match exactly).
8006         * src/SDCCcse.c: added special case in findCheaperOp to allow
8007         extending a short integer. Makes less awful code for bug 700121 test case.
8008
8009 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8010
8011         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
8012         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8013
8014 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8015
8016         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8017         actually called (operandsNotEqual() was called for all
8018         operandsNotEqualX tests).
8019
8020 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8021
8022         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8023         with shorter literals. Fixes bug 700121.
8024
8025 2003-03-11    <johan AT balder>
8026
8027         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8028
8029 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8030
8031         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8032         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8033
8034 2003-03-10  Borut Razem <borut.razem AT siol.net>
8035
8036         * src/SDCCmain.c: pipe preprocessor's output
8037         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8038         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8039         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8040         which closes all pipes in pipeSet set
8041         * src/SDCCset.c: free deleted item in function deleteSetItem()
8042         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8043         moved from z80 to src subproject
8044         * .version: increased version number to 2.3.4
8045
8046 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8047
8048         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8049         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8050         * support/regression/ports/xa51/spec.mk: fix typo
8051
8052 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8053
8054         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8055
8056 2003-03-09  Borut Razem <borut.razem AT siol.net>
8057
8058         * src/SDCCmain.c: pipe preprocessor's output
8059         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8060         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8061         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8062         which closes all pipes in pipeSet set
8063         * src/SDCCset.c: free deleted item in function deleteSetItem()
8064         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8065         moved from z80 to src subproject
8066
8067 2003-03-09  Borut Razem <borut.razem AT siol.net>
8068
8069         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8070         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8071         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8072         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8073         * src/SDCCglobl.h: unification of WIN32 native definitions
8074
8075 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8076
8077         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8078
8079 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8080
8081         * src/configure.in:   check for endianess (even while cross-compiling)
8082         * src/configure:      check for endianess (even while cross-compiling)
8083         * src/configure_in.h: check for endianess (even while cross-compiling)
8084         * src/avr/gen.c:        remove old endianess stuff
8085         * src/mcs51/gen.c:      remove old endianess stuff
8086         * src/ds390/gen.c:      remove old endianess stuff
8087         * src/pic/gen.c:        remove old endianess stuff
8088         * src/pic/genarith.c:   remove old endianess stuff
8089         * src/pic/glue.c:       fix endianess check
8090         * src/pic16/gen.c:      remove old endianess stuff
8091         * src/pic16/genarith.c: remove old endianess stuff
8092         * src/pic16/glue.c:     fix endianess check
8093         * src/xa51/gen.c:       remove old endianess stuff
8094         * src/z80/gen.c:        fix endianess check
8095         * src/SDCCglue.c:       fix endianess check
8096         * src/ds390/peeph.def: fix bug 700036
8097
8098 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8099
8100         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8101         * src/configure: find appropriate data-types on host for SDCC's int and long
8102         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8103         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8104         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8105
8106 2003-03-07    <johan AT balder>
8107
8108         Just a big NOOP:
8109                 some minor cleanups before the big shot
8110                 OP_DEFS and OP_USES now use Kevin's protection
8111                 new option --nolabelopt
8112
8113         * src/SDCCBBlock.c:
8114         * src/SDCCast.c,:
8115         * src/SDCCcflow.c:
8116         * src/SDCCcse.c:
8117         * src/SDCCicode.c:
8118         * src/SDCCicode.h:
8119         * src/SDCClabel.c:
8120         * src/SDCCloop.c:
8121         * src/SDCCmain.c:
8122         * src/ds390/ralloc.c:
8123         * src/mcs51/ralloc.c:
8124         * src/pic/ralloc.c:
8125         * src/xa51/ralloc.c:
8126         * src/z80/ralloc.c:
8127
8128 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8129
8130         * src/pic/pcode.c (get_op): fix 64 bit warnings
8131         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8132         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8133         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8134         * support/regression/tests/malloc.c: fix 64 bit warnings
8135
8136 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8137
8138         * src/mcs51/gen.c (genMinus): fixed bug 696436
8139
8140 2003-03-02  Borut Razem <borut.razem AT siol.net>
8141
8142         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8143
8144 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8145
8146         * configure.in: test for mkstemp
8147         * sdccconf_in.h: add HAVE_MKSTEMP
8148
8149 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8150
8151         * device/include/ctype.h: removed warning while using --stack-auto
8152         * device/include/malloc.h: removed warning while using --stack-auto
8153         * device/include/string.h: removed warning while using --stack-auto
8154
8155 2003-02-23  Borut Razem <borut.razem AT siol.net>
8156
8157         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8158         because NDEBUG is defined (see man assert)
8159         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8160
8161 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8162
8163         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8164         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8165
8166 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8167
8168         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8169         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8170
8171 2003-02-18    <johan AT balder>
8172
8173         * as/mcs51/asmain.c (asmbl): module can start with a digit
8174         * as/z80/asmain.c (asmbl): module can start with a digit
8175
8176 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8177
8178         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8179         * src/asm.c: fix pipe() for Mingw32
8180
8181 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8182
8183         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8184         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8185         make -V work again; --c1mode reads now from stdin
8186         * doc/sdccman.lyx: added --c1mode
8187         * support/Util/SDCCerr.c: new messages for c1 mode
8188         * support/Util/SDCCerr.h: new messages for c1 mode
8189         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8190
8191 2003-02-15    <johan AT balder>
8192
8193         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8194
8195 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8196
8197         * doc/sdccman.lyx: Environment variables, -o and other minor things
8198
8199 2003-02-14    <johan AT balder>
8200
8201         * src/xa51/main.c: before anyone really tries to use it :)
8202
8203         * Install doc's in share/sdcc/doc
8204         * removed some obsolete files
8205         * Do a proper make distclean and uninstall
8206         M Makefile.common.in
8207         R sdccbuild.sh
8208         M as/Makefile
8209         M device/include/Makefile.in
8210         M device/lib/Makefile.in
8211         M doc/sdccman.lyx
8212         M link/Makefile
8213         M sim/ucsim/doc/Makefile.in
8214         M src/clean.mk
8215         R src/avr/peeph.rul
8216         R src/xa51/peeph.rul
8217         M support/cpp2/Makefile.in
8218         M support/makebin/Makefile
8219
8220
8221 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8224
8225 2003-02-10  Borut Razem <borut.razem AT siol.net>
8226
8227         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8228         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8229         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8230         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8231         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8232         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8233         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8234         src/z80/Makefile.bcc: Borland Makefile cleanup
8235         * as/z80/Makefile.bcc: Added Borland Makefile
8236         * support/cpp2/borland.h: Removed
8237
8238 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8239
8240         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8241         * src/SDCC.lex: new pragma NOIV
8242         * src/SDCCglobl.h: new pragma NOIV
8243         * src/SDCCmem.c: new pragma NOIV
8244
8245 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8246
8247         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8248
8249 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8250
8251         * src/SDCCmain.c: signal handling is switched off by --debug
8252         * doc/Makefile: small fix for install; use clean.mk again
8253         * doc/clean.mk: clean *.pdf and *.html too
8254
8255 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8256
8257         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8258         * device/lib/printfl.c: fix a ds390 bug by making it portable
8259         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8260         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8261         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8262         * debugger/mcs51/cmd.c: converted multi-line string literals
8263         * sim/ucsim/globals.cc: converted multi-line string literals
8264         * src/SDCCmain.c: introduced signal handler to remove temp files
8265         * doc/Makefile: small tweaks, implement clean
8266         * doc: removed generated files
8267
8268 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8269
8270         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8271         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8272         Address Record is not correctly generated for DS390."
8273
8274 2003-02-02  Borut Razem <borut.razem AT siol.net>
8275
8276         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8277         * as/mcs51/asm.h: fixed compilation with Borland C
8278         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8279         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8280         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8281         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8282         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8283         src/z80/Makefile.bcc: delete $(LIB) only if exist
8284         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8285
8286 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8287
8288         * device/include/malloc.h: introduced NULL
8289         * device/include/string.h: introduced NULL
8290         * device/include/stdlib.h: introduced NULL
8291         * device/lib/_memcpy.c: removed NULL
8292         * device/lib/_strcat.c: removed NULL
8293         * device/lib/_strchr.c: removed NULL
8294         * device/lib/_strcmp.c: removed NULL
8295         * device/lib/_strcpy.c: removed NULL
8296         * device/lib/_strcspn.c: removed NULL
8297         * device/lib/_strlen.c: removed NULL
8298         * device/lib/_strncat.c: removed NULL
8299         * device/lib/_strncmp.c: removed NULL
8300         * device/lib/_strncpy.c: removed NULL
8301         * device/lib/_strpbrk.c: removed NULL
8302         * device/lib/_strrchr.c: removed NULL
8303         * device/lib/_strspn.c: removed NULL
8304         * device/lib/_strstr.c: removed NULL
8305         * device/lib/_strtok.c: removed NULL
8306         * device/lib/malloc.c: removed NULL, include own header
8307
8308 2003-02-02    <johan AT balder>
8309
8310         * 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
8311         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8312         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8313         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8314         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8315         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8316
8317 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8318
8319         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8320         area 'DATA'"
8321
8322 2003-02-01    <johan AT balder>
8323
8324         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8325
8326 2003-01-31    <johan AT CP255758-A>
8327
8328         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8329
8330 2003-01-30    <johan AT balder>
8331
8332         * src/SDCCBBlock.c: automatic bug detection
8333         * src/SDCCicode.c: automatic bug detection
8334
8335 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8336
8337         * src/SDCCglobl.h:   now --xram-size 0 works
8338         * src/SDCCmain.c:    now --xram-size 0 works
8339
8340 2003-01-29    <johan AT balder>
8341
8342         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8343
8344 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8345
8346         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8347         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8348         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8349         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8350         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8351         * src/SDCCmain.c:    Added options --xram-size and --code-size
8352
8353 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8354
8355         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8356         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8357
8358 2003-01-27    <johan AT balder>
8359
8360         * src/SDCC.y: fixed bug #613764
8361
8362 2003-01-26    <johan AT balder>
8363
8364         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8365         * src/SDCCsymt.h: fixed bug #673374
8366         * src/SDCCglue.c: fixed bug #661910
8367         * src/SDCCast.c: fixed bug #458099 and 673374
8368
8369 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8370
8371         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8372         * as/mcs51/strcmpi.h: added
8373         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8374         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8375         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8376         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8377         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8378         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8379         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8380         * as/mcs51/Makefile.aslink: new module strcmpi
8381         * as/mcs51/Makefile.asx8051: new module strcmpi
8382         * as/mcs51/Makefil.bcc: new module strcmpi
8383         * as/mcs51/Makefile.in: new module strcmpi
8384         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8385
8386 2003-01-26    <johan AT balder>
8387
8388         * src/SDCCglue.c: reverted back to 1.124
8389         * src/SDCCast.c: reverted back to 1.156
8390         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8391
8392 2003-01-25    <johan AT balder>
8393
8394         * src/SDCCglue.c: A better fix for bug #661910
8395         * src/SDCCast.c: A better fix for bug #661910
8396         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8397
8398 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8399
8400         * src/Makefile.in: remove spawn.o
8401         * src/SDCCmain.c: remove spawn.h
8402         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8403         * src/spawn.c: removed
8404         * src/spawn.h: removed
8405         * support/regression/ports/ds390/spec.mk: link with -r
8406
8407 2003-01-24    <johan AT CP255758-A>
8408
8409         * src/ds390/gen.c (aopOp): fixed bug #667458
8410         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8411         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8412         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8413
8414 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8415
8416         * src/mcs51/peeph.def: better assembler identation by Frieder
8417         * src/mcs51/gen.c: better assembler identation by Frieder
8418
8419 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8420
8421         * as/z80/string.h: removed for gcc 3.2
8422         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8423         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8424
8425 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8426
8427         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8428         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8429         * support/regression/Makefile: separate temp files for ports
8430         * support/regression/generate-cases.py: separate temp files for ports
8431         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8432         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8433
8434 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * moved tinitalk to device/examples/ds390
8437
8438 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8439
8440         * as/mcs51/lkmem.c: rflag is for DS390
8441         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8442         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8443                          (linkEdit): move mem- and map-files the same way as ihx-files
8444         * src/z80/main.c (_setDefaultOptions): removed --generic
8445         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8446         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8447         * src/pic/glue.c (picglue): --c1mode works again
8448         * src/pic16/glue.c (pic16glue): --c1mode works again
8449         * src/asm.c (printCLine): fix #660034
8450
8451 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8452
8453         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8454         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8455         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8456         * as/mcs51/lkmem (summary): better fix for sp problem
8457         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8458         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8459         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8460                                               remove --stack-after-data
8461
8462 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8463
8464         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8465         * src/SDCCutil.c (join): ugly bug: missing '\0'
8466         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8467
8468 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8469
8470         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8471         * src/port.h: typo
8472         * src/pic/main.c (_asmCmd): gpasm supports -o
8473         * src/z80/main.c: more general macros
8474         * device/lib/Makefile.in: remove intermediate files
8475
8476 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8477
8478         * .version: Bumped version number to 2.3.3
8479         * src/SDCCBBlock.c: new option -o
8480         * src/SDCCglobl.h: new option -o
8481         * src/SDCCglue.c: new option -o
8482         * src/SDCCmain.c: new option -o
8483         * src/asm.c: new option -o
8484         * src/ds390/main.c: new option -o
8485         * src/pic/glue.c: new option -o
8486         * src/pic/pcode.c: new option -o
8487         * src/pic/ralloc.c: new option -o
8488         * src/pic16/glue.c: new option -o
8489         * src/pic16/pcode.c: new option -o
8490         * src/pic16/ralloc.c: new option -o
8491         * src/z80/main.c: new option -o
8492         * device/lib/Makefile.in: use -o
8493         * support/regression/ports/ds390/spec.mk: use -o
8494         * support/regression/ports/gbz80/spec.mk: use -o
8495         * support/regression/ports/mcs51/spec.mk: use -o
8496         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8497         * support/regression/ports/z80/spec.mk: use -o
8498         * support/regression/ports/ucz80/spec.mk: use -o
8499         * support/regression/ports/xa51/spec.mk: use -o
8500         * support/regression/fwk/lib/timeout.c: fix usage string
8501
8502 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8503         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8504
8505 2003-01-07    <johan AT balder>
8506
8507         * src/SDCCast.c (decorateType): fixed bug #600035
8508
8509 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8510         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8511         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8512         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8513         * src/pic/pcode.c: outcommented unused variable to remove warnings
8514         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8515
8516 2003-01-06    <karl AT turbobit.com>
8517         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8518    regression tests.
8519
8520 2003-01-06    <johan AT balder>
8521
8522         * src/SDCCicode.c: fixed array add
8523
8524 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8525         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8526         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8527
8528 2003-01-04    <johan AT balder>
8529
8530         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8531
8532 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8533         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8534
8535 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8536         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8537         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8538
8539 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8540         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8541
8542 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8543         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8544
8545 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8546         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8547
8548 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8549
8550     * in \sdcc\as\mcs51\ changed these files in order to create an
8551     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8552     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8553     following files to include the previous two files: aslink.dsp,
8554     Makefile.aslink, Makefile.bcc, and Makefile.in.
8555
8556     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8557     .adb instead of .cdb
8558
8559 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8560
8561         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8562         value from option --iram-size.
8563
8564 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8565
8566         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8567         dram[] array.
8568
8569 2002-09-18    <wiml AT hhhh.org>
8570
8571         * SDCClrange.h: exposed setFromRange() and setToRange()
8572         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8573           packRegsForAccUse() (bug 542397)
8574         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8575           multiple times and emitting the fetch operations more than once
8576           added aopGetUsesAcc() function to allow binary operators to
8577           fetch their operands in the correct order; made genMinus() emit
8578           compact code for X = LITERAL - Y
8579
8580 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8581         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8582         sprintf() in line 1267.
8583
8584 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8585         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8586         like ports.
8587
8588 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8589         Changes to aslink (All the changes are marked with 'JCF'):
8590
8591         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8592         summary().
8593
8594         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8595         area BSEG.  Also moves, if possible, the DATA area down into the internal
8596         ram so more space is available.
8597
8598         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8599         sflag.
8600
8601         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8602         not bytes.  Function summary() which creates a memory usage summary
8603         file with extension .mem.  Reports of overlaping stack and small stack
8604         size.  If the space for the stack is less than 16 bytes aslink trows a
8605         warning.
8606
8607         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8608         the 8051.  Option 'y' for memory summary output file.
8609
8610         Changes to sdcc (All the changes are marked with 'JCF'):
8611
8612         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8613
8614         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8615         overlaying area for it (uses RegBankUsed[4]).
8616
8617         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8618         bank zero as used by default.  By default aslink locates the stack
8619         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8620         the creation of the .mem file.  Delegates the allocation of data area
8621         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8622         the begining of the stack area to aslink.
8623
8624         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8625         glue() in SDCCglue.c creates an area for it.
8626
8627 2002-09-03  Borut Razem <borut.razem AT siol.net>
8628         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8629         sdcc/src/pic/glue.c:
8630         introduced atexit() handler for teporay files removal in case of
8631         errors, assertions, ...
8632
8633 2002-08-29  Borut Razem <borut.razem AT siol.net>
8634         * sdcc/support/cpp2/auto-host_vc_in.h:
8635         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8636         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8637         Maybe there is a similar problem with BORLANDC? It should be checked!
8638
8639         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8640         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8641         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8642         was not executed, and the compiler (cl) launched a warning:
8643         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8644
8645 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8646         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8647
8648 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8649         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8650
8651         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8652           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8653           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8654           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8655           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8656           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8657           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8658         - added Release configuration in VS projects
8659         - review of compiler an linker options
8660         - VC .exe files are generated in bin_vc directory, not to interfere
8661           with binaries generated from other projects (cygwin, mingw, bcc ...)
8662
8663         * sdcc/src/yacc.dsp: added
8664
8665         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8666         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8667         and insert the version number definitions from .version
8668
8669         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8670
8671         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8672         added - genarate auto-host.h using auto-host_vc_in.h as template
8673
8674         * sdcc/sdcc_vc.h,
8675         removed from CVS, generated automatically
8676
8677 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8678         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8679
8680 2002-08-11  Borut Razem <borut.razem AT siol.net>
8681         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8682
8683 2002-08-10  Borut Razem <borut.razem AT siol.net>
8684         * src/SDCCmain.c (main):
8685         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8686         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8687         The consequence was that some temporary files were not removed.
8688
8689         * src/SDCCglue.c:
8690         unification of code in functions tempfilename() and tempfile():
8691         function tempnam() is defined in Visual Studio 6.0 and .NET
8692
8693         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8694
8695         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8696           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8697         - removed compiler command line option /WX: Treats all warnings as errors
8698         - update a list of source files, included into the project
8699
8700         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8701           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8702         changed project type to Generic Project so that can be correcly converted to VS.NET project
8703
8704         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8705
8706         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8707
8708         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8709
8710         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8711         added return 0 statements after assert() to make compiler happy
8712
8713         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8714         added newline in the def file to keep MSC compiler satisfied
8715
8716         * sdcc/src/z80/gen.c:
8717         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8718           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8719         - solved MSC error in function aopDump()
8720
8721         * sdcc_vc.h: define PREFIX as "\\sdcc"
8722
8723 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8724         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8725
8726 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8727         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8728         - Rewrote the register banking algorithm.
8729         - Added pCode live-range analysis to registers (for now, only non-used and
8730         singly-used registers optimized away)
8731
8732         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8733
8734         * 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.
8735
8736 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8737         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8738
8739 2002-04-22  Michael Hope  <michaelh AT vroom>
8740
8741         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8742
8743         * configure.in (DD_COPT): Added include support required for gbdk.
8744
8745         * .version: Bumped version number just to increase it.
8746
8747         * src/SDCCmain.c: Added -nostdinc to the default options.
8748
8749 2002-04-15  Michael Hope  <michaelh AT vroom>
8750
8751         * device/lib/z80/printf.c (sprintf): Added.
8752
8753         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8754
8755         * src/z80/peeph.def: Added transpose redundent load rule.
8756
8757         * src/z80/main.c: Added force callee saves for jaune.
8758
8759         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8760
8761         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8762
8763 2002-03-28  Johan Knol  <johan AT balder>
8764
8765         * src/SDCCval.c: fixed bug #532436
8766
8767 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8768         * /src/port.h:
8769         Added "char *Processor" field to the port structure.
8770
8771         * /src/SDCCmain.c:
8772         Added -p option. Allows port dependent processor to be specified.
8773
8774         * all ports:
8775         Initialized the new field char *Processor field to NULL in all ports
8776
8777         * /src/pic/*:
8778         Compiler generated registers for interrupt context saving
8779         were not getting allocated.
8780
8781 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8782
8783         * /src/SDCCast.c:
8784         Fixed left shift. Will promote the left side of a left shift
8785         if a) left shifting more than size of operand or b) when assigned
8786         to something size > size of left side
8787
8788 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8789         * src/pic/*
8790         tons of changes. Register allocation has been
8791         rewritten. Added customization for the various PICs. Flow
8792         analysis is restructured. ...
8793
8794         * src/pic/device.h:
8795         Added
8796
8797         * src/pic/device.c:
8798         Added. device.c is a PIC port hack to accomodate variations
8799         in PIC devices.
8800
8801 2002-03-13  Michael Hope  <michaelh AT vroom>
8802
8803         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8804
8805 2002-03-04  johanknol  <johanknol AT manik>
8806
8807         * /src/SDCCval.c: fixed
8808
8809         const unsigned char arr[][2] = { { 0, 1 } };
8810         t18.c:1: error: Initializer element is not constant
8811
8812 2002-03-04  bela  <bela AT manik>
8813
8814         * /device/include/mcs51reg.h:
8815         ds89c420 register definition update
8816
8817 2002-03-03    <johan AT FRIJA>
8818
8819         * support/Util/SDCCerr.c: did something, but don't no why anymore
8820
8821         * support/regression/tests/bug-524691.c: made it a little less shy
8822
8823         * src/SDCCast.c (decorateType): fixed bug #524697
8824
8825         * src/SDCCast.c: made some lineno improvements
8826
8827         * src/SDCCval.c (getNelements): changed warning to error
8828
8829         * src/SDCCglue.c (printIvalArray): changed warning to error
8830
8831         * src/SDCCicode.c: fixed a warning for mingw
8832
8833         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8834
8835         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8836
8837 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8838
8839         * src/ds390/peeph.def:
8840         Added some more peephole rules
8841
8842         * src/ds390/gen.c: Various fixes & enhancements
8843
8844         * src/SDCClrange.c, src/SDCClrange.h:
8845         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8846
8847         * src/ds390/ralloc.c:
8848         various fixes & enhancements (ds390) specific
8849
8850         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8851         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8852         from rallocs.
8853
8854         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8855
8856 2002-03-02    <johan AT FRIJA>
8857
8858         * src/SDCCast.c (decorateType): fixed bug #524708
8859
8860         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8861
8862         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8863
8864 2002-03-01  Michael Hope  <michaelh AT vroom>
8865
8866         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8867
8868         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8869
8870 2002-03-01    <johan AT FRIJA>
8871
8872         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8873
8874         * src/SDCCast.c (decorateType): fixed bug #524209
8875
8876         * src/SDCCval.c (valNot): fixed bug #524195
8877
8878 2002-02-26    <johan AT balder>
8879
8880         * src/xa51/gen.c: fixed a warning
8881
8882         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8883
8884         * src/SDCCast.c (decorateType): fixed bug #522534
8885
8886 2002-02-23    <johan AT balder>
8887
8888         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8889
8890 2002-02-22    <johan AT balder>
8891
8892         * src/SDCCast.c: fixed bug #514865
8893
8894         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8895
8896 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8897
8898         * sdcc/src/SDCCloop.c:
8899         Previous fix was not good. basic blocks that have "break" or "return" are
8900         not really partof a loop , but live ranges used in these blocks should
8901         be live thru the entire loop, so set partOfLoop but don't add them to
8902         loop region
8903
8904 2002-02-21    <johan AT FRIJA>
8905
8906         * src/SDCCcse.c: fixed bug #514308
8907
8908 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8909
8910         * src/SDCCloop.c:
8911         Fixed BUG #519583. If a conditional block ended in a return/break
8912         statement inside a loop, it was not being considered part of the loop.
8913
8914         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8915
8916 2002-02-10  Karl Bongers <karl AT turbobit.com>
8917
8918         * debugger/*:
8919         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8920         with lots of comments and notes.
8921
8922         * device/examples/test2.c:
8923         Fix bug, "red" variable not being initialized(compiler complained).
8924
8925         * device/examples/Makefile, examples/test3.c:
8926         Add Makefile in device/examples folder, compiles test3.c
8927         for use as a multiple module SDCDB test case.
8928
8929         * sim/ucsim/cmd.src/cmdset.cc:
8930         Took out debug printfs in ucsim "next" command.
8931
8932         * sim/ucsim/xa.src:
8933         Karl and Johan start ucsim XA support.  Most dissassembly working,
8934         about 75% emulation done(plenty of work remaining).
8935
8936         * sim/ucsim/z80.src:
8937         Add Z80 support to ucsim, add test-ucz80 regression test,
8938         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8939         Notice z80 compiler fails on examples/test3.c/crc code.
8940
8941 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8942
8943         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8944         Added support for --parms-in-bank1
8945
8946         * src/ds390/peeph.def:
8947         added a few more peephole optimzations
8948
8949         * src/ds390/main.c:
8950         1) added __builtin_inp & __builtin_outp used to read in data of given length
8951            from a memory mapped port
8952         2) added __builtin_memcmp
8953         3) added __builtin_swapw swap bytes of a short
8954
8955         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8956         1) handle multiple send & receives from register bank1
8957         2) ralloc can now allocate DPTR1 to some liveRanges
8958
8959         * src/SDCCsymt.c, src/SDCCsymt.h:
8960         changes to handle multiple sends & receives
8961
8962         * src/SDCCptropt.h:
8963         added some pointer arithmetic optimization
8964
8965         * src/SDCCptropt.c:
8966         added some pointer arithmetic optimizations but not stable yet so not
8967         called from anywhere (will get this working shortly)
8968
8969         * src/SDCCopt.c: fixed for multiple sends & receives
8970
8971         * src/SDCCmain.c:
8972         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8973         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8974            set preprocessor defines (depending on options)
8975
8976         * src/SDCCicode.c, src/SDCCicode.h:
8977         changes made to handle multiple sends & receives
8978
8979         * src/SDCCglobl.h:
8980         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8981
8982         * src/SDCCcse.c, src/SDCCcse.h:
8983         added function findbackward def (to be used in upcoming optimization)
8984
8985         * src/SDCCcflow.c, src/SDCCcflow.h:
8986         added function returnAtEnd - to determine if a basic block terminates with
8987         a RETURN iCode
8988
8989         * src/SDCCast.c, src/SDCCast.h:
8990         added option parms-in-bank1
8991
8992         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8993         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8994         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8995         adjusted for --parms-in-bank1 option
8996
8997         * device/include/string.h:
8998         donot redefine "reentrant" keyword
8999
9000         * device/include/ds80c390.h: Added some more SFRs
9001
9002 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
9003
9004         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
9005
9006 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
9007
9008         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
9009
9010 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
9011
9012         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9013
9014 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9015
9016         * Added --xram-movc option
9017
9018 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9019
9020         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9021
9022 2002-01-11  Johan Knol
9023
9024         * Added math lib of Jesus Calvino-Fraga
9025
9026 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9027
9028         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9029         * support/regression/Makefile: new target test-mcs51-stack-auto
9030         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9031
9032 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9033
9034         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9035
9036 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9037
9038         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9039
9040 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9041
9042         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9043
9044         * src/SDCCglue.h: add definition for printIvalChar()
9045
9046 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9047
9048         * src/SDCCast.c: fix #498138 by Johan
9049
9050         * src/SDCCglue.c: fix #498138 by Johan
9051
9052 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9053
9054         * support/regression/Makefile: fix clean
9055
9056         * support/regression/ports/ds390/support.c: fix transmission of last character
9057
9058 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9059
9060         * /sdcc/src/ds390/gen.c:
9061         a) improved computing address of stack variable
9062         b) took out some #if 0 code
9063         c) improved parmBytes adjustment
9064         d) improved genPlusIncr & genMinusIncr
9065         e) genCmp could generate bad code (when left assigned to DPTR)
9066         f) Fixed bug in hasInc
9067
9068         * /sdcc/src/ds390/ralloc.c:
9069         a) packRegsForSupport could mess up live information (Fixed)
9070         b) packRegsDPTRuse could be incorrect for left & right shift
9071
9072         * /sdcc/src/mcs51/ralloc.c:
9073         packRegsForSupport could mess up the live information (Fixed)
9074
9075         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9076
9077         * /sdcc/src/SDCCast.c:
9078         can reverse a loop even if function call is present as long
9079         as the loop control variable is local & is not passed as parameter
9080
9081 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9082
9083         * /sdcc/ChangeLog: *** empty log message ***
9084
9085         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9086         More builtin function additions for TININative
9087
9088         * /sdcc/src/ds390/ralloc.c:
9089         Had broken the regression testsuite
9090
9091         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9092
9093         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9094         Added funcattr hasStackParms will be set for reentrant functions when there
9095         are paramteres on the stack, this helps in minimizing frame pointer generation
9096         typeFromStr can handle function pointers now
9097
9098         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9099         *** empty log message ***
9100
9101 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9102
9103         * /src/ds390/gen.c, /src/ds390/main.c:
9104         More builtin function additions for TININative
9105
9106         * /src/ds390/ralloc.c:
9107         Had broken the regression testsuite
9108
9109         * /src/SDCCast.c: Fixed a bug in dumptree
9110
9111         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9112         Added funcattr hasStackParms will be set for reentrant functions when there
9113         are paramteres on the stack, this helps in minimizing frame pointer generation
9114         typeFromStr can handle function pointers now
9115
9116         * /doc/builtins.txt, /doc/TININative.txt:
9117         *** empty log message ***
9118
9119
9120 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9121
9122         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9123         ALPHA version for -mTININative
9124
9125         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9126         updated to reflect changes in the port structure
9127
9128         * /src/port.h:
9129         added function do_assemble (similar to do_link) if non-null this function
9130         will be called to do assembly (-mTININative) requires a multi command
9131         assembly
9132         added function genAssemblerEnd will be called to generate assembler Epilogue
9133
9134         * /src/SDCCsymt.c:
9135         added _JavaNative to debug info printing
9136
9137         * /src/SDCCmain.c: added option --tini-libid
9138         added port->do_assemble function (-mTININative) has a multi command assemble
9139
9140         * /src/SDCCglue.c: Disabled "constExpr" check
9141         added port->genAssemblerEnd function
9142
9143         * /src/SDCCglobl.h: Added option --tini-libid value
9144
9145         * /src/SDCCast.h:
9146         tookout optimizeCompare from the header (has no external references)
9147
9148         * /src/SDCCast.c: made one more function "static"
9149
9150 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9151
9152         * src/z80/mappings.i: Added z80asm support.
9153
9154         * src/z80/main.c: Added z80asm support on --asm=z80asm
9155
9156         * src/z80/gen.c: Fixed asm portability issues.
9157
9158         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9159
9160         * src/SDCCglue.c (printExterns): Added global/extern split.
9161
9162 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9163
9164         * support/regression/Makefile: added test for mcs51 model large
9165
9166         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9167
9168         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9169
9170 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9171
9172         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9173
9174 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9175
9176         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9177
9178         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9179
9180 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9181
9182         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9183
9184         * support/regression/tests/simplefloat.c: Port to mcs51.
9185
9186 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9187         * support/regression/tests/bug-485362.c: Added.
9188
9189         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9190
9191         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9192
9193         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9194
9195         * src/z80/gen.c (aopDump): Added a dump function.
9196
9197 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9198         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9199
9200         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9201
9202         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9203
9204         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9205
9206         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9207
9208         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9209
9210         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9211
9212         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9213
9214         * support/regression/ports/ds390/support.c: Use tinibios.
9215
9216         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9217
9218 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9219
9220         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9221         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9222
9223         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9224
9225         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9226
9227 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9228
9229         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9230
9231         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9232         (packRegsForIYUse): Created and optimised.
9233
9234 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9235
9236         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9237 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9238
9239         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9240
9241         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9242
9243         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9244
9245 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9246
9247         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9248
9249         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9250
9251 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9252
9253         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9254
9255         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9256
9257         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9258
9259 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9260
9261         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9262         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9263         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9264
9265         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9266
9267         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9268         (genNotFloat): Added.
9269         (genUminusFloat): Added.
9270
9271         * device/lib/z80/Makefile: Added floating pt stubs.
9272
9273         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9274
9275         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9276
9277         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9278
9279 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9280
9281         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9282
9283         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9284
9285         * sdcc/support/regression/Makefile: Add port ds390.
9286
9287         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9288
9289         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9290
9291         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9292
9293         * sdcc/support/regression/ports/ds390/support.c: Added.
9294
9295         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9296
9297         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9298
9299         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9300
9301 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9302
9303         * device/include/malloc.h: Added z80 and gbz80 support.
9304
9305         * device/lib/gbz80/heap.s: Added.
9306
9307         * device/lib/z80/heap.s: Added.
9308
9309         * device/lib/malloc.c: Added z80 and gbz80 support.
9310
9311         * support/regression/tests/malloc.c (testMalloc): Added.
9312
9313         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9314
9315         * support/regression/tests/bug-478094.c: Added.
9316
9317         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9318
9319 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9320
9321         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9322
9323         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9324
9325         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9326
9327         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9328
9329         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9330
9331 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9332
9333         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9334
9335 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9336
9337         * support/regression/tests/bug-477927.c: Added.
9338
9339         * src/z80/peeph.def: Added minor rules.
9340
9341         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9342
9343         * src/z80/peeph.def: Added jump optimisation modification.
9344
9345 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9346
9347         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9348
9349 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9350
9351         * support/regression/tests/funptrs.c: Added.
9352
9353 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9354
9355         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9356
9357 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9358
9359         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9360
9361         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9362
9363         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9364         (movLeft2ResultLong): Created.
9365
9366         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9367         (joinPushes): Added.  Joins two char pushes into a word push.
9368
9369 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9370
9371         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9372
9373         * support/makebin/Makefile (install): Added creation of dest dir.
9374
9375 2001-10-24 Karl Bongers <karl AT turbobit.com>
9376
9377         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9378
9379 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9380
9381         * src/z80/ralloc.c: Turned off faulty pack for one use.
9382
9383         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9384
9385         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9386
9387 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9388
9389         * support/regression/Makefile: Improved clean
9390
9391         * support/regression/ports/gbz80/spec.mk: Added clean
9392
9393         * support/regression/ports/host/spec.mk: Added clean
9394
9395         * support/regression/ports/z80/spec.mk: Added clean
9396
9397         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9398
9399         * support/regression/ports/mcs51/timeout.c: little improvements
9400
9401 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9402
9403         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9404
9405         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9406
9407         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9408
9409 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9410
9411         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9412
9413         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9414
9415 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9416         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9417
9418         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9419
9420         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9421
9422         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9423
9424         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9425
9426         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9427
9428         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9429
9430         * support/regression/tests/longor.c: Added.
9431
9432 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9433
9434         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9435
9436         * as/mcs51/aslink.h: define PATH_MAX
9437
9438         * as/mcs51/asm.h: define PATH_MAX
9439
9440         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9441
9442         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9443
9444         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9445
9446         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9447
9448         * src/SDCCglobl.h: define PATH_MAX
9449
9450         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9451
9452         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9453
9454 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9455
9456         * src/z80/gen.c (gencjneshort): Fixed
9457
9458         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9459
9460 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9461
9462         * support/regression/tests/bug-469671.c: Added.
9463
9464         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9465
9466 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9467
9468         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9469
9470         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9471
9472 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9473
9474         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9475
9476         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9477
9478         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9479
9480         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9481
9482         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9483
9484         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9485
9486         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9487
9488 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9489
9490         * 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.
9491
9492         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9493
9494         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9495
9496 2001-10-07    <johan AT FRIJA>
9497
9498         * device/lib/gets.c (gets): fixed the return value.
9499
9500 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9501         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9502
9503         * 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.
9504
9505         * 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.
9506
9507         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9508
9509         * src/pic/gen.c: Removed Safe_strdup.
9510
9511         * configure.in: Added option to enable libgc support.
9512
9513         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9514         (bitVectUnion): Optimised.
9515         (bitVectIntersect): Optimised.
9516         (bitVectBitsInCommon): Optimised.
9517         (bitVectCplAnd): Optimised.
9518
9519         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9520
9521 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9522
9523         * src/SDCCmain.c: distinguish between assembler debug and plain options
9524
9525         * src/avr/main.c:   remove standard assembler options
9526
9527         * src/ds390/main.c: remove standard assembler options
9528
9529         * src/mcs51/main.c: remove standard assembler options
9530
9531         * src/port.h: removed "PENDING" comment
9532
9533 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9534
9535         * src/device/lib/_mulint.c  : new, with assember functions
9536
9537         * src/device/lib/_mullong.c : new, with assember functions
9538
9539         * src/device/lib/_divuint.c : with assember functions
9540
9541         * src/device/lib/_divsint.c : with assember functions
9542
9543         * src/device/lib/_divulong.c: with assember functions
9544
9545         * src/device/lib/_divslong.c: with assember functions
9546
9547         * src/device/lib/_moduint.c : with assember functions
9548
9549         * src/device/lib/_modsint.c : with assember functions
9550
9551         * src/device/lib/_modulong.c: with assember functions
9552
9553         * src/device/lib/_modslong.c: with assember functions
9554
9555         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9556
9557         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9558
9559         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9560                                       replaced _mululong.c and _mulslong.c by _mullong.c
9561
9562 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9563
9564         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9565
9566 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9567
9568         * src/SDCCglue.c: test, if win32api is available for MINGW
9569
9570 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9571
9572         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9573         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9574         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9575         * support/regression/ports/host/spec.mk: removed GENERIC
9576         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9577         * support/regression/ports/z80/spec.mk: removed GENERIC
9578
9579 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9580
9581         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9582
9583         * support/regression/tests/bug-467035.c: Created.
9584
9585 2001-10-01    <johan AT FRIJA>
9586
9587         * src/SDCC.y: fixed bug #466586 part 1
9588
9589 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9590
9591         * SDCCicode.c: z80 has no generic pointers
9592         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9593
9594 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9595
9596         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9597
9598 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9599
9600         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9601
9602         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9603
9604 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9605
9606         * configure.in: Fixed up so that ucsim is only configured once.
9607
9608         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9609
9610         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9611         (getPathDifference): As above.
9612
9613         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9614
9615         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9616
9617 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9618         * .version: Updated to 2.3.1
9619
9620         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9621         Added copyright header.
9622
9623         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9624         (assemble): Added support for macro based assembler commands.
9625         (linkEdit): Added support for macro based linker commands.
9626         (preProcess): Changed the pre-processor to use macros.
9627         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9628         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9629
9630         * device/lib/z80/crt0.s: Added module name for debugging.
9631
9632 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9633
9634         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9635
9636         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9637
9638         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9639
9640         * src/Makefile.in: Added SDCCmacro and SDCCutil
9641
9642 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9643
9644         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9645
9646 2001-09-16    <johan AT FRIJA>
9647
9648         * 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.
9649
9650 2001-09-15    <johan AT FRIJA>
9651
9652         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9653         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9654
9655 2001-09-11    <johan AT FRIJA>
9656
9657         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9658
9659 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9660
9661         * support/regression/tests/bug-460444.c: Added test case.
9662
9663         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9664         (genCast): Added justification for all of the asserts.
9665
9666 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9667
9668         * support/regression/support.c: _xdata replaced by xdata
9669
9670         * support/regression/spec.mk: removed _generic
9671
9672 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9673
9674         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9675
9676         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9677         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9678
9679         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9680
9681         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9682
9683         * support/regression/tests/bug-460010.c: Added test case.
9684
9685         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9686
9687 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9688
9689         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9690
9691         * support/regression/testfwk.c: removed workaround for bug #436344
9692
9693         * support/regression/tests/bp.c: use less memory with mcs51
9694
9695         * support/regression/tests/bug-441448.c: use less memory
9696
9697         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9698
9699         * support/regression/collate-results.py: typo
9700
9701 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9702
9703         * support/regression/tests/fetchoverlap.c: Added new test case.
9704
9705         * support/regression/tests/bp.c: Added new test case.
9706
9707         * support/regression/tests/bug-448984.c: Added new test case.
9708
9709         * support/regression/tests/pow2shifts.c: Added new test case.
9710
9711         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9712         (genlshTwo): Fixed right shift for count > 8.
9713
9714         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9715
9716 2001-09-08    <johan AT FRIJA>
9717
9718         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9719
9720 2001-09-07    <johan AT FRIJA>
9721
9722         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9723
9724         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9725
9726 2001-09-06    <johan AT FRIJA>
9727
9728         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9729         * bernhard noted me at this: "() equals to (void)" (1.38)
9730
9731 2001-09-05    <johan AT FRIJA>
9732
9733         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9734
9735 2001-09-04    <johan AT FRIJA>
9736
9737         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9738
9739
9740 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9741
9742         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9743
9744 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9745
9746         * link/z80/aslink.h: Fixed path for PATH_MAX
9747
9748 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9749
9750         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9751
9752         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9753
9754         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9755
9756         * 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.
9757
9758 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9759
9760         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9761         (genCmp): Fixed up genCmp for the GB with longs.
9762
9763         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9764
9765         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9766
9767         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9768
9769         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9770
9771 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9772
9773         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9774
9775 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9776
9777         * 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.
9778
9779         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9780
9781 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9782
9783         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9784
9785         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9786
9787 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9788
9789   * sim/ucsim/configure:    little improvement of Cygwin-detection
9790   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9791   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9792   * support/regression/tests/bug-221100.c: small changes for mcs51
9793   * support/regression/tests/bug-221168.c: small changes for mcs51
9794   * support/regression/tests/bug-227710.c: small changes for mcs51
9795   * support/regression/tests/staticinit.c: small changes for mcs51
9796   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9797   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9798   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9799
9800 $Revision$