93cf0fba80bfbe54878d324248ffc3d74aa95ebc
[fw/sdcc] / ChangeLog
1 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
4
5 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
6
7         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
8
9 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
10
11         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
12           (hex2dec): made hex_digit unsigned char, removed ascii dependance
13         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
14           (hex2dec): made hex_digit unsigned char, removed ascii dependance
15         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
16         * packihx/packihx.c (hexDigit): made c unsigned char
17         * as/mcs51/lklibr.c (fndsym),
18         * link/z80/lkgb.c (gb),
19         * link/z80/lklibr.c (fndsym),
20         * link/z80/lkrloc.c (relr),
21         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
22         * src/SDCC.lex (checkCurrFile, process_pragma),
23         * src/SDCCglue.c (spacesToUnderscores),
24         * src/SDCCmain.c (setParseWithComma, processFile),
25         * src/asm.c (tvsprintf, printCLine),
26         * src/avr/gen.c (emitcode, aopPut),
27         * src/ds390/gen.c (emitcode),
28         * src/hc08/gen.c (emitcode, emitinline),
29         * src/mcs51/gen.c (emitcode, genInline),
30         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
31           tokenizeLineNode),
32         * src/pic/ralloc.c (debugLog),
33         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
34           tokenizeLineNode),
35         * src/pic16/ralloc.c (debugLog),
36         * src/z80/main.c (_process_pragma):
37            made all ctype.h function calls safe
38         * src/SDCCopt.c: include math.h for fabs
39         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
40           and used them throughout the code to make ctype.h function calls safe
41         * src/ds390/main.c (asmLineNodeFromLineNode),
42         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
43         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
44            unsigned char*
45         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
46           (newpCodeAsmDir): made ctype.h function calls safe
47         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
48           pic16_emitcode):  made lbp unsigned char*
49         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
50           (pic16_newpCodeAsmDir): made ctype.h function calls safe
51         * src/xa51/gen.c (emitcode),
52         * src/z80/gen.c (_emit2): made lbp unsigned char*
53         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
54            char*
55
56 2005-09-05 Raphael Neider <rneider AT web.de>
57
58         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
59           access bank splitpoint
60
61 2005-09-05 Raphael Neider <rneider AT web.de>
62
63         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
64
65 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
66
67         * .version: changed to version 2.5.3
68         * doc/sdccman.lyx: changed version to 2.5.3,
69           documented --codeseg and --constseg and pragma codeseg and constseg,
70           documented bit parameters (reentrant) and bit returning
71         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
72            currFunc->recvSize, but is this ok for all ports?
73           (ast2iCode): result of ~ on unsigned char must be cast to int for
74            bool to work
75         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
76           function pointers in bit space
77         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
78           (processFuncArgs): call port.reg_parm() with reentrancy info
79         * src/port.h,
80         * src/avr/main.c,
81         * src/ds390/main.c,
82         * src/hc08/main.c,
83         * src/pic/main.c,
84         * src/pic16/main.c,
85         * src/xa51/main.c,
86         * src/z80/main.c: port.reg_parm prototype extended with
87           "bool reentrant" parameter
88         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
89           options.stackAuto for allocating bit register parameters
90         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
91           (genSend): set BitBankUsed if it is,
92           (selectRegBank): factored out of genCall for use in genPcall,
93           (genCall): removed redundant dtype assignmen, use selectRegBank,
94           (genPcall): handle returning in Carry properly, save in F0 if needed,
95           (genReceive): handle bit register parameters
96         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
97           (mcs51_assignRegisters): enable bit registers for all reentrant
98            functions and don't set BitBankUsed unconditionally
99         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
100         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
101         * support/regression/tests/funptrs.c: added tests for BOOL and for return
102
103 2005-08-27 Borut Razem <borut.razem AT siol.net>
104
105         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
106         ppc-osx (Darwin) does not support -u option. It seems that it is
107         supported only on Linux - GNU cp
108
109 2005-08-25 Borut Razem <borut.razem AT siol.net>
110
111         * sim/ucsim/gui.src/serio.src/Makefile.in,
112           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
113           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
114           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
115           install and strip, since the strip at /usr/ccs/bin should be used
116           on solaris
117
118 2005-08-24 Borut Razem <borut.razem AT siol.net>
119
120         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
121
122 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
123
124         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
125         ffffffffu
126
127 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
128
129         * as/mcs51/aslink.h: completed lkrloc.c prototypes
130         * as/mcs51/lkmain.c (link_main): fixed warning
131         * device/include/stdbool.h: ds390 has no advanced bit support yet
132         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
133         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
134         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
135           and updated their macros
136         * src/SDCCval.c (constVal): updated comment for renamed b_long
137
138 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
139
140         * as/mcs51/asdata.c: changed ctype['['] to BINOP
141         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
142           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
143           (oprio): set priority for '['
144         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
145            and adb_24_bit
146         * as/mcs51/asm.h: added defines R_BIT and S_BIT
147         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
148         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
149         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
150           added overlayable BIT_BANK area
151         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
152           (summary2): explain 'T' in legenda
153         * as/mcs51/lkrloc.c: replaced old K&R style,
154           (relr): added R_BIT processing,
155           (errmsg): added "Bit-addressable relocation error",
156           (adb_bit): added for converting from byte- to bit-addressable space,
157           (adb_24_bit): added for converting from byte- to bit-addressable space
158         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
159            used in reentrant functions now even as return value
160         * device/lib/_gptrput.c (_gptrput): removed obsolete code
161         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
162           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
163         * src/SDCCglobl.h: added indicator BitBankUsed
164         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
165            the bit registers b0-b7
166         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
167           (geniCodeCast): fixed bug 1263853,
168           (geniCodeLogicAndOr): put result in bool or char,
169           (geniCodeReceive): added parameter func for accessing the return type,
170           (geniCodeFunctionBody): pass func to geniCodeReceive
171         * src/SDCCmain.c: added indicator BitBankUsed
172         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
173         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
174           (checkSClass): don't put automatic bool/bit on stack,
175           (checkFunction): removed check on function cannot return bit
176         * src/SDCCsymt.h: added newBoolLink prototype
177         * src/mcs51/gen.c (rb1regs): added bit registers,
178           (movc): created for assigning to carry,
179           (pushReg, popReg): created for pushing registers,
180           (sameRegs): check both AOP_REG and AOP_CRY types,
181           (aopOp): handle bit registers,
182           (aopPut): optimization no self-assign,
183           (saveRegisters): push reg->base (bits) only once for bit registers,
184            and use pushReg,
185           (unsaveRegisters): pop reg->base only once and use popReg,
186           (assignResultValue): added parameter func and return in carry for bits,
187           (genIpush): optimization no reload in A if not changed,
188           (genSend): bit parameters in reentrant functions are passed in bit
189            registers by first assigning to bits in B, then save registers and
190            copy B to bits,
191           (genCall): handle returning in Carry properly, save it in F0 if needed,
192           (genPcall): updated assignResultValue call, this is not safe yet for bit
193            returning function !!!
194           (genFunction): don't generate equ's for bit registers and use pushReg,
195           (genEndFunction): take care of bit returning functions and use popReg,
196           (genRet): return bit in Carry,
197           (genIfx): optimize bit registers and other directly addressable bits,
198           (genReceive): updated assignResultValue call
199         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
200           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
201            registers when using stack-auto
202         * src/mcs51/ralloc.c (_G): added allBitregs,
203           (regs8051): added the bit registers,
204           (createStackSpil): use macro IS_BIT,
205           (getRegBit): added to allocate a bit register, else spill,
206           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
207           (updateRegUsage): factored out to ease stepping while debugging,
208           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
209            also allocate bit registers,
210           (fillGaps): handle bit registers,
211           (findAllBitregs): added to create bit vector with all bit registers,
212           (mcs51_allBitregs): returns this bit vector,
213           (mcs51_assignRegisters): when using stack-auto use bit registers for
214            passing parameters and creating local variables
215         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
216
217 2005-08-22 Borut Razem <borut.razem AT siol.net>
218
219         * device/lib/Makefile.in: replaced find option -or with -o
220           to make it run on solaris
221
222 2005-08-22 Raphael Neider <rneider AT web.de>
223
224         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
225           fixes #1265442 (crash on Solaris)
226
227 2005-08-20 Borut Razem <borut.razem AT siol.net>
228
229         * configure, configure.in: added tests for libsocket and libnsl libraries,
230           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
231           from support/regression/Makefile.in
232         * support/regression/Makefile.in: added
233         * device/lib/pic16/Makefile.common.in: force make to use bash shell
234         * sim/ucsim/libtool: regenerated on sparc-solaris
235         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
236           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
237           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
238           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
239           sparc-solaris, which doesn't use GNU ld linker
240         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
241         * as/Makefile: find on sparc-solaris does not support -maxdepth option
242
243 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
244
245         * src/mcs51/peeph.def: updated comments
246
247 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
248
249         * device/lib/_gptrget.c,
250         * device/lib/_gptrput.c: slightly shorter
251         * doc/sdccman.lyx: incremented version
252         * src/mcs51/peeph.def: moved peephole comments to the line of first
253           change to better keep line correlation, reanimated 186.e
254         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
255
256 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
257
258         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
259           David Saxton with quotes around file name.
260
261 2005-08-15 Borut Razem <borut.razem AT siol.net>
262
263         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
264           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
265           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
266           make tests run on x86_64 platform
267
268 2005-08-13 Raphael Neider <rneider AT web.de>
269
270         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
271           as it might be executed DURING a build (parallel make is wonderful)
272
273 2005-08-13 Raphael Neider <rneider AT web.de>
274
275         * device/lib/Makefile.in (port-specific-objects-pic16):
276           revert to cp $(PORT)/bin/*.* $(PORTDIR)
277         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
278           dependency
279         * device/lib/pic16/Makefile.rules: build subdirs before creating
280           the library, removed builddir rule, create $(builddir) early in
281           recurse rule, use empty recurse rule for leaf directories
282         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
283           mkdir errors (race condition), removed duplicate suffix "hex"
284           from clean rules
285         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
286         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
287           prevents mkdir -p from aborting on Alpha
288
289 2005-08-12 Raphael Neider <rneider AT web.de>
290
291         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
292           db-statements in order to allow for arrays of pointers in code
293           sections to be placed without interspersed 0-padding, fixes
294           bug #1256215
295         * (emitStatistics): fixed division by zero for pic18f1220
296         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
297           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
298         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
299         * (pic16_pCodeConstString): keep track of already emitted string
300           literals to prevent "duplicate definitions of symbol _str_NR"
301         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
302           debug message
303         * device/lib/Makefile.in: ignore failing PIC16 library builds
304         * device/lib/pic16/Makefile: do not build if gputils are missing
305         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
306
307 2005-08-10 Raphael Neider <rneider AT web.de>
308
309         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
310           my last commit)
311
312 2005-08-10 Raphael Neider <rneider AT web.de>
313
314         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
315           Rokas' patch to add the new fixed point type "__fixed16x16"
316         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
317           functions for __fixed16x16 arithmetics
318         * device/lib/pic16: reimplemented the build system to support
319           a separate build directory, better handling of libio (create
320           the library in a separate subdir for each architecture) and
321           easier configuration (centralized in Makefile.common)
322
323 2005-08-07 Raphael Neider <rneider AT web.de>
324
325         * src/pic16/gen.c (genrshTwo): fixed sign extension
326         * src/pic16/device.c: added pic18f2320, 4220 and 4320
327         * device/include/pic16/pic18f2220.h: changed some bit definitions,
328           added T0CONbits
329         * device/include/pic16/pic18f4220.h: NEW, header for
330           pic18f4220 and pic18f4320
331         * device/include/pic16/pic18fregs.h: added new devices,
332           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
333         * device/include/pic16/signal.h: resolved name clashes
334           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
335           to also allow testing for interrupt enable bits, added
336           comments on how to use the macros
337         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
338         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
339           register definitions for the devices
340         * device/lib/pic16/pics.all: added new devices
341         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
342           allocated memory
343         * device/lib/pic16/libc/stdlib/memfree: do not count
344           the block header as free memory
345         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
346           simplified and added missing end-of-blocklist-marker
347           (reported by Peter Onion, fixes #1252814)
348         * (_mergeHeapBlock): fixed loop condition
349         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
350           len==0, restructured code
351         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
352           up a bit, reduced bitfield accesses, prevent endless loops
353           in case of heap corruption
354         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
355           "unreferenced arguments/must return a value" warnings
356         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
357           replaced BAUDREG with SPBRG
358         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
359           device/lib/pic16/debug/gstack/gstack.c: replaced
360           _naked, _asm, _endasm with __naked, __asm, __endasm
361
362 2005-08-05 Raphael Neider <rneider AT web.de>
363
364         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
365           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
366
367 2005-08-05 Borut Razem <borut.razem AT siol.net>
368
369         * device/lib/Makefile.in: added missing ';'
370         * configure: removed ^M characters
371
372 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
373
374         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
375           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
376           License
377
378 2005-08-04 Borut Razem <borut.razem AT siol.net>
379
380         * configure.in: pic16 libraries build 2nd try - enable running
381           configure in device/lib/pic16
382         * configure: regenerated from configure.in
383         * device/lib/Makefile.in: create $(PORT)/bin directory
384
385 2005-08-03 Raphael Neider <rneider AT web.de>
386
387         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
388           to get/set values via pointers
389         * (genUnpackBits,genPackBits): changed detection of
390           ptr->bitfield vs. sym.bitfield, fixed access via generic
391           pointers, removed dead (wrong) code for multibyte bitfields
392         * (genNearPointerGet, genGenPointerGet): removed useless code,
393           fixed bitfield detection, fixes #1250594
394         * (genNearPointerSet): removed useless code
395         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
396           and introduced macro pic16_emitpcode that conditionally emits
397           the origin of the following pCode (useful for debugging SDCC)
398         * src/pic16/pcode.c: changed (and disabled) some debug outputs
399         * (createDefmap): fixed handling of LFSR for --optimize-df
400
401 2005-08-02 Borut Razem <borut.razem AT siol.net>
402
403         * device/lib/Makefile.in: pic16 libraries build enabled since
404           gputils-0.13.2 are now localy installed at sourceforge's compile farm
405
406 2005-08-02 Raphael Neider <rneider AT web.de>
407
408         * src/pic16/gen.c (genPackBits): removed deprecated warning
409         * (genGenPointerSet): fixed bitfield detection
410
411 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
412
413         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
414
415 2005-07-31 Raphael Neider <rneider AT web.de>
416
417         * device/lib/pic16/libdev/pic18f458.c,
418           device/include/pic16/pic18f458.h: added missing T0CONbits
419
420 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
421
422         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
423
424 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
425
426         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
427
428 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
429
430         * device/include/mcs51/at89c51ed2.h: added.
431
432 2005-07-23 Raphael Neider <rneider AT web.de>
433
434         * src/pic/gen.h: added emitpcode macro for debugging
435         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
436           and replace by macro adding debug information on demand
437         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
438         * (gencjne): tried to fix; replaced with correct (slower) code
439         * (gen{Unp,P}ackBits): fixed single bit access
440         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
441         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
442           previous instruction
443         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
444           register has to be handled with care (forbidding movement
445           of assignments/uses, removing assignments completely, ...)
446         * (pCodeOptime2pCodes): make use of regIsSpecial
447         * added lots of debugging output (commented out)
448         * src/pic/rallloc.c (deassignLRs): prevent operand registers
449           from being reused as result UNLESS it is known to work
450
451 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
452
453         * support/Util/dbuf.h: include <stddef.h> for size_t
454         * .version: changed to version 2.5.2
455
456 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
457
458         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
459
460 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
461
462         * src/hc08/gen.c (genMinus): fixed bug #1241835,
463           (genModOneByte): removed needless psha/pula
464
465 2005-07-22 Raphael Neider <rneider AT web.de>
466
467         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
468           have PIC14 handled like PIC16, fixes broken pic14 linker calls
469         * src/pic/gen.c (resolveIfx): do not "invent" labels
470         * (genSkipc): changed to positive logic
471         * (genSkipCond): removed as no longer needed
472         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
473           backport from PIC16
474         * (genLeftShift): check operands are in different registers
475         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
476           INCF does not update CARRY...
477         * src/pic/main.c: fixed _linkCmd
478         * src/pic/pcode.c (unlinkpCode): added inactive code
479         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
480           alive (do not assign result and operand overlapping registers)
481
482 2005-07-22 Raphael Neider <rneider AT web.de>
483
484         * src/pic/device.c (dump_sfr): replaced register declaration with
485           call to emitSymbolToFile() to avoid duplicate symbols
486         * (assignRelocatableRegisters): do not declare external symbols
487         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
488           right (take size of type, not etype)
489         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
490         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
491         * (packRegsForAccUse): disabled assignment of WREG as
492           the result reg to prevent occurence of just fixed #1235003,
493           fixes #1242954
494         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
495           symbols (avoids duplicate symbols in .asm file)
496         * (pic14emitRegularMap): use emitSymbolToFile()
497         * src/pic/gen.c (aopOp): fixed spillLocation handling
498         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
499         * (genDataPointerSet): removed unneccessary variables/output
500
501 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
502
503         * as/mcs51/lkarea.c: enlarged codemap for banked memory
504         * device/lib/mcs51/crtbank.asm: added # to 0x0F
505
506 2005-07-21 Raphael Neider <rneider AT web.de>
507
508         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
509           architecture cannot handle them efficiently, fixes bug #1235003
510         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
511           check for empty sets before using them (fixes bug #1232190)
512
513 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
514
515         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
516           (lnksect2): generate warnings for memory overlap
517         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
518           constseg to set the name of these segments so you can instruct the linker
519           to place them in banks
520         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
521         * src/SDCCglobl.h: added MODEL_HUGE to enum,
522           added code_seg and const_seg to options
523         * src/SDCCglue.c (emitMaps): use options.const_seg,
524           (createInterruptVect): put interrupt vectors in segment HOME,
525           (glue): put HOME before static segment and put the main glue in HOME,
526           (glue): use options.code_seg
527         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
528         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
529           these segments so you can instruct the linker to place them in banks
530           (linkEdit): use code_loc for HOME segment which should be the first
531           segment in code memory now
532         * src/SDCCmem.c: fixed more stuff like bug 1238386
533         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
534           (changePointer): don't change function pointers to code pointers for
535           banked functions,
536           (compareType): added exceptional check for banked function pointers
537         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
538         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
539           after static in code memory
540         * src/mcs51/gen.c: added aopLiteralLong prototype,
541           (aopForSym): use getSize for functions,
542           (genCall): generate banked calls over one trampoline __sdcc_banked_call
543           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
544           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
545           the segment,
546           (genPcall): use call for literal function pointers and generate banked
547           calls over the one trampoline so there's only one place for the user to
548           modify according to his/hers hardware,
549           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
550           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
551         * src/mcs51/main.c: added keyword banked,
552           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
553         * support/Util/SDCCerr.c,
554         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
555           needed for passing the bank and address to the trampoline
556         * device/lib/mcs51/crtbank.asm: added for bankswitching
557         * device/lib/mcs51/Makefile: added crtbank
558
559 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
560
561         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
562           for fields at offset 0 of a struct or union as reported
563           on 2005-07-07 in the developer mailing list.
564
565 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
566
567         * src/SDCCmem.c: fixed bug 1238386
568
569 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
570
571         * src/mcs51/peeph.def: added labelrefcounting for peepholes
572           (patch #1144962), added peephole 300, enabled 259.x
573         * doc/sdccman.lyx: removed screenshot and provided link instead
574
575 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
576
577         * doc/sdccman.lyx: added section about debugging with ddd
578         * doc/figures/ddd_example.eps: screenshot of debugging session
579
580 2005-07-04 Raphael Neider <rneider AT web.de>
581
582         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
583           like CODE pointers, fixes #1115683
584         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
585           call, fixes bugs #1232211, #1228110,
586           fixed wrong casts to pCodeFlow from pCodeInstructions
587
588 2005-07-04 Raphael Neider <rneider AT web.de>
589
590         * src/pic/gen.c (popGet): changed assert to allow for
591           bit operands
592         * (popGetAddr): changed signature to provide
593           an additional index, patched all call sites
594         * (genCmpEq): handle literal-like operands correctly
595         * (genAddrOf): added sanity checks on __code/__data pointers
596         * (genAssign): added handling of symbols from __code section
597         * (gencjne): do not generate code for comparisons whose result
598           is neither stored nor used, fixes bug #1171114
599         * (AccLsh, AccRsh): operate on operand instead of WREG
600         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
601           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
602           by known count
603         * rewrote complete shift-by-literal logic, commented unused
604           functions out
605         * (genConstPointerGet): get multiple bytes (if result size > 1),
606           fixed handling of non-immediate addresses
607         * (genPointerGet): handle CODE pointers like CONST pointers
608         * (genpic14Code): insert C-SRC lines as Cource-pCodes
609         * ({aop,op}_isLitLike): NEW, single place to decide whether an
610           operand is to be treated as a literal or not
611         * (mov2w,genPcall,genCmpEq),
612           src/pic/genarith.c: use aop_isLitLike() to decide between
613           literal/register contents
614         * (addSign): added missing offset
615         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
616           only emit comment in debug-mode,
617           use {aop,op}_isLitLike throughout the file
618         * src/pic/glue.c: fix initializers for pointers (work in progress)
619         * src/pic/pcode.c (get_op): honor index on _const symbols
620         * ({reset,dump}pCodeStatistics): NEW, estimate code size
621         * (dumppBlock): added pCode size estimation
622         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
623           check for IS_SYMOP before OP_SYMBOL'ing
624         * fixed indentation, compacted switch-statements
625         * (allocReg): find free register and allocate it instead of
626           allocating new registers all the time
627         * (deassignLRs): prevent POINTER_GET's from being assigned the same
628           registers as its operands (necessary only for multibyte GETs)
629
630 2005-07-01 Raphael Neider <rneider AT web.de>
631
632         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
633           debugging .asm-output macros FENTRY + FEXIT
634         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
635           way... I wonder...
636         * (emitpComment): NEW, printf to pCode
637         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
638           offset handling
639         * (popGetAddr): NEW, variant of popGet to access an immediates
640           high(er) bytes instead of the n'th byte of memory they reference,
641           replaced popGet with popGetAddr where neccessary
642         * (genDataPointerGet): reactivated and fixed implementation
643         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
644           accesses
645         * (genDataPointerSet): fixed multibyte assignments
646         * (genpic14Code): fixed --i-code-in-asm handling
647         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
648         * (genPlus): fixed index-out-of-bounds error
649         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
650         * src/pic/ralloc.c: added debugging output macro FENTRY2
651         * (spillThis): fixed indentation, enbraced for-body for clarity
652         * (rematStr): commented out as now unused
653         * (regTypeNum): commented out special spill case (overwrites
654           arbitrary values)
655         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
656
657 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
658
659         * doc/sdccman.lyx: documented sfr16/sfr32,
660           added example for using storage class with function pointers
661         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
662
663 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
664
665         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
666         * device/lib/_itoa.c,
667         * device/lib/_ltoa.c: optimized codesize
668         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
669           but don't know how to suppress the double warning.
670         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
671         * support/Util/SDCCerr.c,
672         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
673
674 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
675
676         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
677           fixed old K&R prototypes
678         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
679         * device/lib/_gptrget.c,
680         * device/lib/_gptrgetc.c,
681         * device/lib/_gptrput.c: changed versions for new memory indicator values,
682           also new versions for small generic pointers and banked generic pointers
683         * src/port.h: added const_name
684         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
685         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
686         * src/SDCCcse.c (findPrevIc): check all associative operators
687         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
688         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
689         * src/SDCCmem.c: updated comments,
690           set far-space to 0 for pdata, results in optimized code
691         * src/SDCCmem.h: added macro CONST_NAME
692         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
693           moving the info into the highest bits, see also gptrget/gptrput
694         * src/src.dsp: added sdcc.ico to project files
695         * src/avr/gen.c (genCast): fixed bug 0x%d
696         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
697         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
698           relation between ptr_type and DCL_TYPE,
699           (genCast): fixed bug 0x%d
700         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
701           (CODE)" for const_name
702         * src/hc08/gen.c (genCast): fixed bug 0x%d
703         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
704           (hc08_port): added "CONST (CODE)" for const_name
705         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
706           (aopForRemat, adjustArithmeticResult): disconnected direct relation
707           between ptr_type and DCL_TYPE,
708           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
709           operand* and took AOP() inside function so sfr-ness can be checked,
710           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
711           new prototype,
712           (genFunction, genEndFunction): optimized stack setup,
713           (genMinus): optimized for literals with ending zeroes (in bytes),
714           (genCast): fixed bug 0x%d
715         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
716           (mcs51_port): added "CONST (CODE)" for const_name
717         * src/mcs51/peeph.def: made rule 226 more generic
718         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
719         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
720         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
721         * src/z80/main.c (z80_port): added NULL for const_name,
722           (gbz80_port): added NULL for const_name
723         * support/regression/tests/bug663539.c,
724         * support/regression/tests/sfr16.c: new tests
725
726 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
727
728         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
729
730 2005-06-24 Raphael Neider <rneider AT web.de>
731
732         * device/lib/pic16/libdev/pic18f[68][567]20.c:
733           corrected typos...
734         * device/include/pic16/signal.h: added USBIF
735           and SIG_USB
736
737 2005-06-24 Raphael Neider <rneider AT web.de>
738
739         * device/lib/pic16/libdev/pic18f2455.c,
740           device/include/pic16/pic18f2455.h: NEW
741         * device/include/pic16/pic18fregs.h,
742           device/lib/pic16/pics.all,
743           src/pic16/device.c: added 18f2455
744         * device/lib/pic16/libdev/pic18f[68][567]20.c,
745           device/include/pic16/{pic18f[68][567].h,usart.h}:
746           replaced MULTIPLE_USARTS define with more relaible
747           compatibility sfrs (for USART access)
748
749 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
750
751         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
752           and the output asm file line is printed on two lines.
753
754 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
755
756         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
757           BGT, BLE, BHI, and BLS instructions
758         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
759           genCmpEq): removed
760         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
761           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
762           fixes bug #1216342
763         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
764
765 2005-06-15 Raphael Neider <rneider AT web.de>
766
767         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
768         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
769         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
770           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
771           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
772
773 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
774
775         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
776           Marcel Telka in bug #1215704
777
778 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
779
780         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
781           located in shared memory bank.
782
783 2005-05-31 Raphael Neider <rneider AT web.de>
784
785         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
786           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
787           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
788
789 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
790
791         * device/lib/_strncpy.c: fixed the fix
792
793 2005-05-26 Raphael Neider <rneider AT web.de>
794
795         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
796           initializers with \0, bug #1208187
797         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
798           intializers with \0, bug #1208187
799
800 2005-05-26 Raphael Neider <rneider AT web.de>
801
802         * src/pic16/glue.c (pic16_printIvalChar): fixed string
803           initializers with \0, bug #1208187
804         * src/pic16/main.c (_process_pragma): added sanity checks
805           for stack position and size, emit warnings when appropriate
806
807 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
808
809         * device/lib/_strncpy.c: fixed not filling with \0
810
811 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
812
813         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
814           createFunction),
815         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
816           compound_statement),
817         * src/SDCCsymt.h,
818         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
819
820 2005-05-24 Raphael Neider <rneider AT web.de>
821
822         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
823
824 2005-05-24 Raphael Neider <rneider AT web.de>
825
826         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
827           TRISE definitions, closes bug #1162453
828
829 2005-05-22 Raphael Neider <rneider AT web.de>
830
831         * src/pic16/main.c (_process_pragma): check for missing
832           arguments to pragmas code and udata
833         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
834           consistency fixes to match other headers (thanks to Jim Paris)
835         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
836
837 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
838
839         * src/SDCCicode.c (isOperandEqual): fixed missing ;
840
841 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
842
843         * support/regression/tests/bug1198642.c: new test
844         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
845         * src/SDCCcse.c (findPrevIc): added comment, please have a look
846         * support/scripts/resource.h,
847         * support/scripts/resource.rc,
848         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
849         * support/scripts/sdcc.ico: added 32x32 icon
850
851 2005-05-18 Raphael Neider <rneider AT web.de>
852
853         * device/lib/pic16/libdev/pic18f*.c,
854         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
855           keywords to "__sfr" and "__at (X)"
856         * device/include/pic16/pic18fregs.h: added pic18f4520
857         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
858           #1203088 (MPLAB compatibility)
859
860 2005-05-17 Raphael Neider <rneider AT web.de>
861
862         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
863         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
864         * device/lib/pic16/pics.all: added new devices
865         * src/pic16/device.c: added support for pic18f4520
866
867 2005-05-16 Raphael Neider <rneider AT web.de>
868         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
869         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
870         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
871           convenience function for bit access
872
873 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
874
875         * device/lib/printf_large.c: fixed bug 1193299
876         * support/regression/tests/bug1057979.c: added test %3.3s
877
878 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
879
880         * device/include/mcs51/8051.h,
881         * device/include/mcs51/8052.h: made parseable with lint
882         * device/include/mcs51/lint.h: added include file for (sp)lint
883         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
884         * doc/cdbfileformat.lyx,
885         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
886
887 2005-05-14 Raphael Neider <rneider AT web.de>
888
889         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
890         * device/lib/pic16/libc/stdlib/itoa.c (new)
891         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
892         * device/lib/pic16/libio/Makefile: exclude subdir according to
893           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
894         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
895         * src/pic16/gen.c (genFunction): prevent annoying warning
896         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
897           nameclashes on BeOS
898         * support/cpp2/cppmain.c (cpp_output_string): new
899         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
900           fixes bug 1116802
901
902 2005-05-13 Borut Razem <borut.razem AT siol.net>
903
904         * src/SDCCmain.c (linkEdit): fixed bug 1195202
905
906 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
907
908         * .version: changed to version 2.5.1; back to bleeding edge development
909
910 2005-05-11 Borut Razem <borut.razem AT siol.net>
911
912         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
913           generate PDF version 1.3 documents
914
915 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
916
917         * .version: changed to version 2.5.0
918
919 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
920
921         * doc/sdccman.lyx: updated weblinks, index and smaller updates
922
923 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
924
925         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
926         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
927         well as many smaller updates.
928         * .version: changed to version 2.5.0-pre1
929
930 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
931
932         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
933
934 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
935
936         * support/regression/tests/bug1185672.c: added
937         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
938           bug 1185672
939         * src/mcs51/gen.c (genCall): added comments, made it look safer
940         * src/mcs51/gen.c (genEndFunction): simplified
941
942 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
943
944         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
945
946 2005-04-14 Borut Razem <borut.razem AT siol.net>
947
948         * fixed bug 1045046 - SIGSEGV with really simple code?:
949           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
950           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
951
952 2005-04-14 Borut Razem <borut.razem AT siol.net>
953
954         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
955           src/pic16/device.h: temporarily disabled experimental #inline pragma
956           for 2.5.0 release
957
958 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
959
960         * device/include/z80/stdio.h,
961         * device/include/z80/string.h: removed these highly incomplete files so
962           SDCC can use the default ones in device/include/
963
964 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
965
966         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
967         gcc warning.
968         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
969         fix sdcpp warnings.
970
971 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
972
973         * device/include/malloc.h: removed redundant __reentrant prototypes
974         * device/lib/_mullong.c: added working xstack variant in asm (C version
975           doesn't pass regression tests)
976         * device/lib/bpx.c: used __data and made bpx char for mcs51
977         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
978           (createFunction): fixed bug with xstackPtr
979         * src/SDCCcse.c: corrected comments
980         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
981           (killDeadCode, eBBlockFromiCode): removed unused code
982         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
983           corrected comments
984         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
985           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
986           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
987           (genModOneByte): fixed warning in MSVC
988         * src/mcs51/main.c (): added comments
989         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
990
991 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
992
993         * src/SDCCmain.c (linkEdit): oops, changed one line too many
994
995 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
996
997         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
998
999 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1000
1001         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1002         characters arrays of larger size than the declared one.
1003
1004 2005-04-10 Borut Razem <borut.razem AT siol.net>
1005
1006         * src/pic/gen.c (genInline),
1007           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1008           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1009           (findNextInstruction), (findPrevInstruction),
1010           (findInstructionUsingLabel),
1011           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1012         * src/pic/pcode.c (findLabel): added missing '\n'
1013         * src/src.dsp: added SDCCdwarf2.c to the project
1014
1015 2005-04-09 Borut Razem <borut.razem AT siol.net>
1016
1017         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1018
1019 2005-04-08 Raphael Neider <rneider AT web.de>
1020
1021         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1022           into the chain after a given one) and mergeDefmapSymbols (combine
1023           defmap entries for each symbol per pcode)
1024         * (createDefmap): have defmap entries merged in the end
1025         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1026           a symbol before replacing one access type's symbol, merge symbols in
1027           the end (replacement symbol might already have an entry)
1028         * (assignValnums): keep reference to written WREG intact
1029
1030 2005-04-08 Raphael Neider <rneider AT web.de>
1031
1032         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1033           Alpha)
1034
1035 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1036
1037         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1038         bytes
1039
1040 2005-04-07 Raphael Neider <rneider AT web.de>
1041
1042         * device/include/pic16/usart.h: added compatibility defines for
1043           devices with more than one USART
1044         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1045
1046 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1047
1048         * device/lib/Makefile.in: updated for port specific include
1049
1050 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1051
1052         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1053
1054 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * device/include/8051.h,
1057         * device/include/8052.h,
1058         * device/include/at89S8252.h,
1059         * device/include/at89c55.h,
1060         * device/include/at89x051.h,
1061         * device/include/at89x51.h,
1062         * device/include/at89x52.h,
1063         * device/include/mcs51reg.h,
1064         * device/include/reg51.h,
1065         * device/include/reg764.h,
1066         * device/include/regc515c.h,
1067         * device/include/sab80515.h: (re)moved these 12 files
1068         * device/include/mcs51/8051.h,
1069         * device/include/mcs51/8052.h,
1070         * device/include/mcs51/at89S8252.h,
1071         * device/include/mcs51/at89c55.h,
1072         * device/include/mcs51/at89x051.h,
1073         * device/include/mcs51/at89x51.h,
1074         * device/include/mcs51/at89x52.h,
1075         * device/include/mcs51/mcs51reg.h,
1076         * device/include/mcs51/reg51.h,
1077         * device/include/mcs51/reg764.h,
1078         * device/include/mcs51/regc515c.h,
1079         * device/include/mcs51/sab80515.h: and added them here
1080
1081 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1082
1083         * device/include/stdarg.h: changed SDCC specific keywords to double
1084           underlined form.
1085         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1086           mcs51 and ds390.
1087         * device/include/hc08/mc68hc908gp32.h,
1088         * device/include/hc08/mc68hc908jb8.h,
1089         * device/include/hc08/mc68hc908jkjl.h,
1090         * device/include/hc08/mc68hc908qy.h: fixed comments
1091         * device/include/mcs51/README: updated
1092         * device/include/mcs51/c8051f120.h: added PINRSF
1093         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1094         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1095           amidst code. Also inline is not supported.
1096
1097 2005-04-06 Raphael Neider <rneider AT web.de>
1098
1099         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1100         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1101           callers stack/frame pointers
1102
1103 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1104
1105         * device/include/pic16/usart.h: added, missing in previous commit,
1106         * device/include/pic16/adc.h: fixed typo,
1107         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1108         commit,
1109         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1110         <p18fxxx.inc>
1111         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1112         uninitialized because a bug appears with gplink
1113         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1114         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1115         complains for unrecognised option
1116
1117 2005-04-05 Raphael Neider <rneider AT web.de>
1118
1119         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1120           structs as well (using memcpy)
1121         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1122           on ISRs (GOTO has no label)
1123         * src/pic16/device.h: added OF_OPTIMIZE_DF
1124         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1125           new data flow analysis/optimization
1126         * src/pic16/pcode.c: added (prototypes for and implementation of)
1127           dataflow analysis functions, fixed pCodeInstructions' inCond and
1128           outCond values, made RCALL a branch instruction
1129         * (pic16_unlinkpCode): keep C line if possible
1130         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1131           C line moved if possible
1132         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1133         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1134           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1135         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1136           new flow)
1137         * (pic16_getJumptabpCode): NEW, needed in...
1138         * (LinkFlow): fixed handling of jumptables, calls and conditional
1139           branches
1140         * (pic16_InsertCommentAfter): NEW
1141         * (pic16_pCodeReplace): made verbose and flow preserving
1142         * (AnalyzeFlow): added call to data flow analysis
1143         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1144         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1145         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1146
1147 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1148
1149         * src/SDCCast.c (decorateType): fixed bug #1105626
1150
1151 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1152
1153         * device/include/asm/pic16/features.h,
1154         * pic18f*.h headers,
1155         * device/include/pic16/adc.h,
1156         * device/include/pic16/delay.h,
1157         * device/include/pic16/i2c.h,
1158         * device/include/pic16/malloc.h,
1159         * device/include/pic16/stdio.h,
1160         * device/include/pic16/stdlib.h,
1161         * device/include/pic16/string.h,
1162         * device/lib/pic16/libc/stdio/printf_tiny.c,
1163         * device/lib/pic16/libc/stdio/printf_small.c,
1164         * device/lib/pic16/libc/stdio/strmgpsim.c,
1165         * device/lib/pic16/libc/stdio/strmmssp.c,
1166         * device/lib/pic16/libc/stdio/strmusart.c,
1167         * device/lib/pic16/libc/stdio/vfprintf.c,
1168         * device/lib/pic16/libc/stdlib/ltoa.c,
1169         * device/lib/pic16/libc/stdlib/putchar.c,
1170         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1171         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1172         * device/lib/pic16/libc/stdlib/memchrram.c,
1173         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1174         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1175         * device/lib/pic16/libio/adc/adcbusy.c,
1176         * device/lib/pic16/libio/adc/adcread.c,
1177         * device/lib/pic16/libio/adc/adcsetch.c,
1178         * device/lib/pic16/libio/usart/ubaud.c,
1179         * device/lib/pic16/libio/usart/ubusy.c,
1180         * device/lib/pic16/libio/usart/udrdy.c,
1181         * device/lib/pic16/libio/usart/uopen.c,
1182         * device/lib/pic16/libio/usart/uputc.c,
1183         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1184         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1185         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1186         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1187         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1188         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1189         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1190         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1191         specific keywords to double underlined form,
1192         * device/lib/pic16/libc/Makefile.rules,
1193         * device/lib/pic16/libsdcc/Makefile.rules,
1194         * device/lib/pic16/libm/Makefile,
1195         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1196         to compile with C standard set in Makefile.common
1197         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1198         rand.c and crc.c in compilation process,
1199         * device/lib/pic16/libsdcc/int/divuint.c,
1200         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1201         `c' from signed to unsigned,
1202         * device/lib/pic16/startup/crt0.c,
1203         * device/lib/pic16/startup/crt0i.c,
1204         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1205         keywords to double underlined form, bug fixes in _do_cinit function
1206         which prevented the correct initialization of the .idata segment,
1207         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1208         core to enter a infinite loop
1209         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1210
1211 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1212
1213         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1214
1215 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1216
1217         * device/include/Makefile.in: add support for hc08 subdirectory
1218         * device/include/hc08/: new subdirectory
1219         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1220         Lucas Loizaga, thanks!
1221         * device/include/hc08/mc68hc908qy.h,
1222         * device/include/hc08/mc68hc908gp32.h,
1223         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1224         their own directory. Changed internal macro names to use the compiler
1225         reserved namespace. Changed SDCC specific keywords to double
1226         underlined form.
1227         * device/include/math.h,
1228         * device/include/malloc.h,
1229         * device/include/stdarg.h,
1230         * device/include/stdbool.h
1231         * device/include/string.h,
1232         * device/include/tinibios.h,
1233         * device/include/ds400rom.h,
1234         * device/include/8051.h,
1235         * device/include/8052.h,
1236         * device/include/80c51xa.h,
1237         * device/include/at89c55.h,
1238         * device/include/at89S8252.h,
1239         * device/include/at89x51.h,
1240         * device/include/at89x52.h,
1241         * device/include/ds80c390.h,
1242         * device/include/reg764.h,
1243         * device/include/regc515c.h,
1244         * device/include/sab80515.h,
1245         * device/include/mcs51/c8051f000.h,
1246         * device/include/mcs51/c8051f018.h,
1247         * device/include/mcs51/c8051f020.h,
1248         * device/include/mcs51/c8051f040.h,
1249         * device/include/mcs51/c8051f060.h,
1250         * device/include/mcs51/c8051f120.h,
1251         * device/include/mcs51/c8051f300.h,
1252         * device/include/mcs51/c8051f310.h,
1253         * device/include/mcs51/c8051f320.h,
1254         * device/include/mcs51/c8051f330.h,
1255         * device/include/mcs51/c8051f350.h,
1256         * device/include/z180.h: Changed SDCC specific keywords to double
1257         underlined form.
1258
1259 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1260
1261         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1262         18F4455,
1263         * (pic16_assignConfigWordValue): disable testing of configuration
1264         register value with config mask,
1265         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1266         function with port->fun_prefix,
1267         * (genFunction): when generating a naked interrupt function never
1268         create an absolute segment placed in interrupt vector address, place
1269         the actual interrupt function at IVA instead, when an interrupt
1270         function is generated with unspecified interrupt then do not create
1271         the absolute section,
1272         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1273         code for generating a call to generic pointer get/put function with
1274         a call to function pic16_callGenericPointer(),
1275         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1276         the call to the generic pointer get/put functions with prefixing the
1277         function name with port->fun_prefix,
1278         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1279         * src/pic16/main.c (_process_pragma): prefix function with
1280         port->fun_prefix,
1281         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1282         calling assembler, old 18Fxxxx macro is deprecated,
1283         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1284         PC_ASMDIR in while condition,
1285         * (findInstruction): add PC_ASMDIR in while condition,
1286         * (buildCallTree): prefix main with port->fun_prefix,
1287         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1288         identifier for variable with banked access in instructions BTFSS,
1289         BTFSC, BCF, BSF, BTG
1290         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1291         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1292         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1293         perform optimization when enviroment variable NO_REG_OPT is set,
1294         * (insideLRBlock): NEW, return 1 if register is inside an
1295         INF_LOCALREGS block,
1296         * (RemoveRegFromLRBlock): remove a register that is completely
1297         eliminated by register optimization, but it is still left in local
1298         register store/restore in/from stack block,
1299         * (Remove2pcodes): after removing register, check to see if it
1300         should be removed from local register store/restore in/from stack
1301         block,
1302         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1303         DUMMY_READ_VOLATILE,
1304
1305         * device/include/pic16/adc.h: minor prototype modifications and
1306         update,
1307         * device/include/pic16/malloc.h: added GPL notice various
1308         modifications,
1309         * device/include/pic16/stdint.h: NEW, standard header for ints
1310         * device/include/pic16/delay.h: NEW, header for delay functions,
1311         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1312         delay1mtcy,
1313         * device/include/pic16/signal.h: NEW, header providing helper macros
1314         for implementing signal handlers,
1315         * device/include/pic16/stdio.h: added prototypes for functions,
1316         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1317         prototypes for stdin and stdout, added macro PUTCHAR to
1318         automatically implement putchar function prototype,
1319         * device/include/pic16/usart.h: modified and updated USART library,
1320         * device/lib/pic16/libio/adc/,
1321         * device/lib/pic16/libio/i2c: some modifications to improve library
1322         performance,
1323         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1324         family of functions,
1325         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1326         family of functions and other sources,
1327         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1328         of the PIC18Fxx[28] devices,
1329         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1330         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1331         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1332         _do_cinit function, because the previous failed when local variables
1333         where not placed in the same memory bank,
1334         * device/lib/pic16/libsdcc/char/: various modifications to improve
1335         library performance,
1336         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1337         information on the new functions of the c library and more...
1338
1339 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1340
1341         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1342
1343 2005-03-26 Raphael Neider <rneider AT web.de>
1344
1345         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1346           if condition == CARRY)
1347         * (genCmp): adapted to new genSkipc semantics
1348         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1349           on rIfx (genCmp was broken)
1350
1351 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1352
1353         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1354         * src/z80/main.c (_keywords[]),
1355         * src/SDCCglobal.h (struct options),
1356         * src/SDCC.y,
1357         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1358         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1359         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1360         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1361         always available in leading double underscore form. The C99 support is
1362         mostly missing, but it's a start.
1363         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1364         reserved identifier "__data".
1365
1366 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1367
1368         * src/mcs51/peeph.def: fixed bug 1170013
1369
1370 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1371
1372         * device/include/mcs51reg.h: fixed bug 842007
1373
1374 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1375
1376         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1377         last time.
1378
1379 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1380
1381         * src/port.h (struct PORT),
1382         * src/avr/ralloc.c (avr_assignRegisters),
1383         * src/avr/main.c,
1384         * src/ds390/ralloc.c (ds390_assignRegisters),
1385         * src/ds390/main.c,
1386         * src/hc08/ralloc.c (hc08_assignRegisters),
1387         * src/hc08/main.c,
1388         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1389         * src/mcs51/main.c,
1390         * src/pic/ralloc.c (pic14_assignRegisters),
1391         * src/pic/main.c,
1392         * src/pic16/ralloc.c (pic16_assignRegisters),
1393         * src/pic16/main.c,
1394         * src/xa51/ralloc.c (xa51_assignRegisters),
1395         * src/xa51/main.c,
1396         * src/z80/ralloc.c (z80_assignRegisters),
1397         * src/z80/ralloc.h,
1398         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1399         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1400         * src/SDCCcse.h,
1401         * src/SDCCdflow.c (computeDataFlow),
1402         * src/SDCCdflow.h,
1403         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1404         * src/SDCCloop.h,
1405         * src/SDCCcflow.c (*),
1406         * src/SDCCcflow.h,
1407         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1408         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1409         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1410         immedDom() returning wrong block; probably fixes bug #1160833)
1411
1412 2005-03-20 Borut Razem <borut.razem AT siol.net>
1413
1414         * support/scripts/inc2h.pl: WIN32 port
1415
1416 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1417
1418         * device/lib/makefile.in: added abs.c and labs.c
1419
1420 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1421
1422         * device/include/stdint.h: added
1423         * device/lib/abs.c: added
1424         * device/lib/labs.c: added
1425         * device/include/stdlib.h: added abs() and labs() prototypes
1426         * device/lib/libsdcc.lib: added abs and labs
1427         * device/include/float.h,
1428         * device/lib/_fsmul.c,
1429         * device/lib/printf_fast.c,
1430         * device/lib/printf_tiny.c: updated comments
1431
1432 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1433
1434         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1435         bug #1164313
1436
1437 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1438
1439         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1440         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1441
1442 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1443
1444         * device/lib/printf_large.c: removed inline assembly for portability and
1445           readability. Use printf_fast if speed or size are more important.
1446         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1447         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1448
1449 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1450
1451         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1452         prevent compiler warning
1453
1454 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1455
1456         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1457         moved to level 0 and declared as static. Also they are explicit
1458         placed in access bank. This was necessery because some times they
1459         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1460         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1461         optimizations. Currently only compare to unsigned char is implemented,
1462         * src/pic16/gen.c: added fReturnIdx array,
1463         * (struct resolvedIfx) is moved to gen.h and made public,
1464         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1465         * (aopForSym): added an optimization to directly store in stack of
1466         the operand of a SEND iCode,
1467         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1468         but as registers instead (AOP_REG) using the fReturnIdx array,
1469         * (pic16_freeAsmop): remove the freed register from the
1470         _G.sregsAlloc field,
1471         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1472         a compare of 'WREG',
1473         * (pic16_popGetTempRegCond): changed function prototype, now
1474         function takes also a bitVector argument v which holds the current
1475         set of registers that are allocated for stack access by aopForSym,
1476         registers allocated in aopForSym for accessing stack symbols are not
1477         any more part of the functions usedRegs field,
1478         * (genCall): some times aopOp is called for a stack variable to be
1479         send, aopForSym might perform the push, if this is true make sure
1480         that genCall doesn't push the variable twice by testing _G.resDirect,
1481         * (genFunction): changed testing for unspecified interrupt number
1482         from 256 to INTNO_UNSPEC,
1483         * modified selection scheme of frame pointer generation. Previously
1484         if function did use local registers a frame pointer was generated,
1485         now a frame pointer is generated only if function has arguments
1486         (that need PLUSW2 register access), or has stack arguments, or the
1487         compiler is not instructed to omit the frame pointer,
1488         * (genEndFunction): before restoring local registers that were saved
1489         in the function preamble, also restore the registers that *might*
1490         have been allocated for stack access,
1491         * (genRet): removed some old comments,
1492         * (genCmp, the active (RN's) version): added a call to the
1493         pic16_genCmp_special function to perform the compare with a more
1494         robust and optimized way,
1495         * (genInline): a feature has been added in inline code generation,
1496         which allows a wildcard variable substitution when writing inline
1497         assembly. Code is incomplete and experimental therefore undocumented,
1498         * (genCast): changed order of aopOp for result and right to allow
1499         aopForSym to directly load the result if possible,
1500         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1501         perform an optimized compare on some selected special occasions,
1502         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1503         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1504         generate an IVT any more,
1505         * src/pic16/main.c (pic16_optionsTable): added command line option
1506         --optimize-cmp,
1507         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1508         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1509         macros,
1510         * src/pic16/NOTES: Raphael Neider added in list of active developers
1511         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1512         jumptable_end to prevent bug #,
1513         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1514         inCond and outCond fields,
1515         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1516         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1517         turn off register spilling,
1518         * (packRegsForOneUse): synced with other ports' versions although it
1519         is not used currently,
1520         * (pic16_packRegisters): added an optimization while reading
1521         structure bitfields, some registers may be saved (malloc code is
1522         decreased by 80 bytes)
1523
1524 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1525
1526         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1527         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1528         this can be optimized more?
1529
1530 2005-03-10 Raphael Neider <rneider AT web.de>
1531
1532         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1533           genNearPointerGet): (hopefully) fixed access to bitfields via
1534           pointers (p->bitN = x; and x = p->bitN; failed)
1535
1536 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1537
1538         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1539
1540 2005-03-09 Raphael Neider <rneider AT web.de>
1541
1542         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1543
1544 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1545
1546         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1547         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1548           (regTypeNum): set REG_BIT type if necessary
1549         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1550         * support/regression/tests/critical.c: check bug 1144613
1551
1552 2005-03-02 Raphael Neider <rneider AT web.de>
1553
1554         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1555
1556 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1557
1558         * src/avr/ralloc.c (serialRegAssign),
1559         * src/ds390/ralloc.c (serialRegAssign),
1560         * src/hc08/ralloc.c (serialRegAssign),
1561         * src/mcs51/ralloc.c (serialRegAssign),
1562         * src/pic/ralloc.c (serialRegAssign),
1563         * src/pic16/ralloc.c (serialRegAssign),
1564         * src/xa51/ralloc.c (serialRegAssign),
1565         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1566
1567 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1568
1569         * src/SDCCast.c (decorateType): fixed bug 1124787
1570
1571 2005-02-20 Hubert Sack <sack AT digiplan.de>
1572         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1573
1574         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1575         patch #1121755
1576
1577 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1578
1579         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1580         to keep the correct label reference count when adding/removing references
1581         to labels. A peephole file using this is appended to patch #1144962.
1582
1583 2005-02-14 Raphael Neider <rneider AT web.de>
1584
1585         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1586         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1587         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1588           retrievals of result operand's value on assignment
1589
1590 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1591
1592         * device/include/pic16/string.h: modified prototype for memccpy()
1593         to memccpy(void *, void *, char, size_t)
1594         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1595         check whether to omit frame pointer or not,
1596         * (genInline): convert all occurences of "\n" to LF in inline
1597         assembler blocks, this helps formatting the inline text,
1598         * (pic16_loadFSR0): modified prototype,
1599         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1600         removed some 8051 legacy code,
1601         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1602         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1603         before allocating temporary registers in functions,
1604
1605 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1606
1607         * support/regression/tests/bitvars.c: corrected the "fix"
1608
1609 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1610
1611         * support/regression/tests/bitvars.c,
1612         * support/regression/tests/bitwise.c,
1613         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1614
1615 2005-02-10 Raphael Neider <rneider AT web.de>
1616
1617         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1618           different size for Alpha
1619         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1620
1621 2005-02-09 Raphael Neider <rneider AT web.de>
1622
1623         * src/SDCC.lex(doPragma) : save and restore warning options as well
1624           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1625         * have #pragma less_pedantic set the errorlevel to WARNING
1626           (fixes #1117001)
1627         * (cloneOptimize) : fixed wrong malloc's size
1628         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1629           facilitate correct handling of #pragma (save|restore)
1630
1631 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1632
1633         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1634
1635 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1636
1637         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1638
1639 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1640
1641         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1642
1643 2005-02-02 Raphael Neider <rneider AT web.de>
1644
1645         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1646         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1647         * (pic16_storeForReturn): fixed to allow returning function pointers
1648         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1649         * device/include/pic16/{stddef.h,stdbool.h}: added
1650
1651 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1652
1653         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1654
1655 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1656
1657         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1658         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1659          appeared to be required
1660
1661 2005-01-31 Borut Razem <borut.razem AT siol.net>
1662
1663         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1664           include/mcs51 and include/z80 directories to the package
1665
1666 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1667
1668         * src/hc08/gen.c (genFunction): fixed bug #1112752
1669
1670 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1671
1672         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1673
1674 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1675
1676         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1677
1678 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1679
1680         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1681
1682 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1683
1684         * device/include/c8051fxxx.h: removed these 6 files
1685         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1686
1687 2005-01-26 Raphael Neider <rneider AT web.de>
1688
1689         * src/pic16/gen.c (genAssign): fixed assignment from longs
1690           in codespace (were cut to three bytes)
1691         * (genDummyRead): implemented (except for CODESPACE...),
1692           fixed bug #1108575
1693         * src/pic16/glue.c (emitStatistics): beautified
1694         * device/lib/pic16/libm/Makefile: added include path
1695
1696 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1697
1698         * src/z80/gen.c (aopPut): fixed bug #1103902
1699
1700 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1701
1702         * device/lib/expf.c: fixed bug #1095792
1703
1704 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1705
1706         * device/lib/pic16/libm: added Math library sources
1707
1708 2005-01-24 Raphael Neider <rneider AT web.de>
1709
1710         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1711           to enable upcast to pCodeOpReg2 (there is no type tag to
1712           differenciate the two and pic16_popGet2p cast into PCOR2)
1713         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1714           (sizeof(sectNames) changed to sizeof(sectName))
1715           Both patches fix segfaults under MinGW.
1716
1717 2005-01-23 Raphael Neider <rneider AT web.de>
1718
1719         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1720           Safe_[mc]?alloc()'ed variables
1721         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1722           of (byte sized) temporaries (assign them to WREG for now)
1723         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1724           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1725           this might fix SIGSEGVs on MinGW...
1726         * src/SDCCopt.c (killDeadCode): restored original behaviour
1727           (volatile operands might get thrown away though)
1728
1729 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1730
1731         * src/pic16/gen.c: fixed bug #1106975,
1732         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1733         pointer update, INTCON is saved, global interrupts are disabled and
1734         restored after updateing TOS.
1735         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1736         * added function attribute 'shadowregs' to take advantage of shadow
1737         registers,
1738         * added function attribute 'wparam' as an alternative to the wparam
1739         pragma,
1740         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1741         user declares a non-ISR function as 'shadowregs',
1742         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1743
1744 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1745
1746         * .version: bumped version number to 2.4.8
1747         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1748         pic16 port,
1749         * device/lib/pic16/libio/i2c/: I2C module support library,
1750         * device/include/pic16/i2c.h: I2C support library header,
1751         * device/lib/pic16/libc/stdio/: standard IO support sources,
1752         * (printf_small.c): printf_small() source, supports float print,
1753         * (printf_tiny.c): printf_tiny() source, does not support floats,
1754         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1755         enable global optimizations for entire library source, other
1756         Makefiles in the source tree are also modified to reflect this,
1757         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1758         function,
1759         * doc/sdccman.lyx: updated to reflect new changes,
1760         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1761         sym->onStack if-case,
1762         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1763         sbit, idata, _idata, xdata, _xdata,
1764         * added pragma library, to link an external library, (see doc),
1765         * removed command line options, --pomit-config-words, --pomit-ivt,
1766         --pleave-reset-vector,
1767         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1768         when calling assembler to reflect memory model used, also define
1769         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1770         reflect stack model used,
1771         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1772         on stack return NULL,
1773
1774 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1775
1776         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1777           of the operands is volatile. Fixes #1020220
1778
1779 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1780
1781         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1782         * (OptimizeRegUsage): make sure that there is really no other flow where
1783           the first pCode is used
1784
1785 2005-01-22 Raphael Neider <rneider AT web.de>
1786
1787         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1788           to fix #1106967 (pCode->seq are not set up correctly)
1789
1790 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1791
1792         * src/SDCCglue.c (glue): make sure code area is declared before the
1793         static initialization area.
1794
1795 2005-01-21 Raphael Neider <rneider AT web.de>
1796
1797         * device/lib/Makefile.in: fixed test for pic16 install dir
1798         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1799           optimizations
1800         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1801           added --optimize-goto compiler switch and pragma wparam documentation
1802         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1803         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1804           and PRODH closing bug #1071770 (peephole optimizer)
1805
1806 2005-01-19 Raphael Neider <rneider AT web.de>
1807
1808         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1809           cmdLine buffers (used when calling sdcpp...) are large enough
1810           (MAX_PATH=256 truncates arguments leading to system halts when
1811           used in MinGW...)
1812         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1813         * (genUminus): rewritten to for efficiency
1814         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1815           used uninitialized in some cases)
1816         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1817           copy the third byte from the int -- now assumes 0x80 (data memory)
1818         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1819           operands (genAddLit expects the iCode's operands to swapped as
1820           well), fixed leftover bytes (crashed for short left operands)
1821         * (pic16_genMinusDec): performance improvements, removed false
1822           PIC14 emitSKPNCs
1823         * (pic16_genMinus): fixed to cope with differently sized operands
1824         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1825           for --obanksel > 1
1826         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1827         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1828           new banksel optimization
1829         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1830           analysis for temporary registers (segfaults...)
1831         * src/pic16/peeph.def: added rule
1832
1833 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1834
1835         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1836         which converts a float number to its ASCII representation
1837         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1838         functions to convert the fractional and integer part of a float to ASCII,
1839         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1840         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1841         ram
1842         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1843         _STATMEM macros,
1844         * device/include/pic16/adc.h: added GPL info,
1845         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1846         a pCodeOp as tested operand,
1847         * (genNearPointerGet): optimized bit testing, does not use
1848         intermediate register for bit value, test directly instead with
1849         BTFSS, BTFSC, works only for single bits,
1850         * (genpic16Code): dump the name of the iCode in the asm,
1851         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1852         renamed to pic16_decodeOp,
1853         * (serialRegAssign): do not allocate a temporary register for iCode
1854         sequences that test a single bit for 1/0
1855
1856 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1857
1858         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1859         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1860         access stack and frame pointers. They are initially assigned to
1861         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1862         accessing SFRs. Updated all occurences of modification of stack or
1863         frame pointer in gen.c and pcode.c,
1864         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1865         assigning of a literal value to pointers,
1866         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1867         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1868         selected
1869
1870 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1871
1872         * doc/sdccman.lyx: update documentation about stack pragma, added
1873         some info for stack memory models
1874
1875 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1876
1877         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1878
1879 2005-01-08 Raphael Neider <rneider AT web.de>
1880
1881         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1882           udata sections to fix bug #1097823
1883
1884 2005-01-05 Raphael Neider <rneider AT web.de>
1885
1886         * src/pic16/gen.c (genGenericShift): added handling of differently
1887           sized left operand and result
1888
1889 2005-01-04 Raphael Neider <rneider AT web.de>
1890
1891         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1892         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1893           to hold the condition bit)
1894         * added new version of genCmp (old code available via #define)
1895         * added new version of genShiftLeft/genShiftRight in a generic
1896           way, now supports shifting by negative values
1897         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1898           shiftCount (expected by genGenericShift)
1899         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1900         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1901           dump
1902         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1903           is an invalid literal too...)
1904
1905 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1906
1907         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1908         from Raphael Neider,
1909         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1910         for 8-bit literals. This fixes some literal operands which are sign
1911         extended to 16-bits ints when instruction needs only 8-bits.
1912
1913 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1914
1915         * device/lib/logf.c: added mcs51 assembly version
1916         * device/lib/expf.c: added mcs51 assembly version
1917         * device/lib/_logexpf.c: new shared asm code for expf and logf
1918         * device/include/math.h: add defines for assembly math library
1919         * device/lib/Makefile.in: build new _logexpf.c
1920         * device/lib/libfloat.lib: use new _logexpf.c
1921
1922 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1923
1924         * src/pic/device.c
1925         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1926           device types which have less than 0x7f registers.
1927
1928 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1929
1930         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1931
1932 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1933
1934         * device/lib/printf_fast.c: only build on supported arch.
1935         * device/lib/printf_tiny.c: only build on supported arch.
1936         * device/lib/printf_fast_f.c: only build if asm float lib
1937         * device/lib/_fsget1arg.c: only build if asm float lib
1938         * device/lib/_fsget2args.c: only build if asm float lib
1939         * device/lib/_fsnormalize.c: only build if asm float lib
1940         * device/lib/_fsreturnval.c: only build if asm float lib
1941         * device/lib/_fsrshift.c: only build if asm float lib
1942         * device/lib/_fsswapargs.c: only build if asm float lib
1943         * device/include/stdio.h: don't provide print_fast,
1944           print_fast_f, print_tiny prototypes if --xstack used
1945
1946 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1947
1948         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1949         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1950           to the SOURCES
1951
1952 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1953
1954         * device/lib/printf_fast_f.c: same as printf_fast, but
1955           with floating point enabled
1956         * device/lib/printf_fast.c: minor tweaks
1957         * device/include/stdio.h: add printf_fast_f
1958
1959 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1960
1961         * src/SDCCmain.c: make --float-reent default for mcs51
1962         * device/lib/_fsadd.c: added mcs51 assembly version
1963         * device/lib/_fssub.c: added mcs51 assembly version
1964         * device/lib/_fsmul.c: added mcs51 assembly version
1965         * device/lib/_fsdiv.c: added mcs51 assembly version
1966         * device/lib/_fseq.c: added mcs51 assembly version
1967         * device/lib/_fsneq.c: added mcs51 assembly version
1968         * device/lib/_fsgt.c: added mcs51 assembly version
1969         * device/lib/_fslt.c: added mcs51 assembly version
1970         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1971         * device/lib/Makefile.in: add _fscmp to build
1972         * device/lib/libfloat.lib: add _fscmp to build
1973
1974 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1975
1976         * device/lib/_fs2slong.c: added mcs51 assembly version
1977         * device/lib/_fs2sint.c: added mcs51 assembly version
1978         * device/lib/_fs2schar.c: added mcs51 assembly version
1979         * device/lib/_fs2ulong.c: added mcs51 assembly version
1980         * device/lib/_fs2uint.c: added mcs51 assembly version
1981         * device/lib/_fs2uchar.c: added mcs51 assembly version
1982         * device/lib/_slong2fs.c: added mcs51 assembly version
1983         * device/lib/_sint2fs.c: added mcs51 assembly version
1984         * device/lib/_schar2fs.c: added mcs51 assembly version
1985         * device/lib/_ulong2fs.c: added mcs51 assembly version
1986         * device/lib/_uint2fs.c: added mcs51 assembly version
1987         * device/lib/_uchar2fs.c: added mcs51 assembly version
1988         * device/include/float.h: added #define to select asm vs c
1989
1990 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1991
1992         * device/lib/printf_fast.c: improvements to float output
1993         * device/include/float.h: add defines for assembly float library
1994         * device/lib/_fsget1arg.c: receive 1 float arg
1995         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1996         * device/lib/_fsnormalize.c: normalize a float
1997         * device/lib/_fsreturnval.c: return float, various helper routines
1998         * device/lib/_fsrshift.c: right shift a float's mantissa
1999         * device/lib/_fsswapargs.c: swap 2 floats
2000         * device/lib/Makefile.in: build these 6 new files for mcs51
2001         * device/lib/libfloat.lib: add these 6 files to the library
2002
2003 2004-12-26 Borut Razem <borut.razem AT siol.net>
2004
2005         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2006           built by gcc 3.4.2
2007
2008 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2009
2010         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2011           and fully reentrant and register bank neutral.
2012         * device/lib/printf_fast.c: added float (not enabled by default),
2013           added compact/slower integer (also not enabled by default),
2014           improved size/speed of fast integer code, other minor changes
2015         * device/include/stdio.h, device/lib/Makefile.in,
2016           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2017
2018 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2019
2020         * src/pic16/pcode.c: declaring variables other than at the start of a
2021           block is not supported in C by VC6.
2022
2023 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2024
2025         * applied a previous patch from Raphael Neider that wasn't included
2026         in the previous commits, which fixes infinite loops within jumptable
2027         improvements,
2028         * made some fixes that previous patches introduced
2029
2030 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2031
2032         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2033         that fixes an issue with AOP_PCODE asmop's offset,
2034         * (pic16_popCopyReg): update instance field too,
2035         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2036         function of pic port,
2037         * (genCmp, genAnd, genAssign),
2038         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2039
2040 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2041
2042         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2043         variables initial values to idata section,
2044         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2045         variables in some functions. This utilizes parmBytes field of iCode
2046         structure to hold the offset of the variable in stack. (might be
2047         able to use the stack field too?)
2048         * applied patch from Raphael Neider # ### , # ###
2049         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2050         variable initial values in idata section,
2051         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2052         for static variables with initial value
2053         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2054         applied fix in while loop from Raphael Neider.
2055
2056 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2057
2058         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2059         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2060         * src/ds390/ralloc.c (serialRegAssign): spill bits
2061         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2062         * support/Util/SDCCerr.c,
2063         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2064         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2065         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2066
2067 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2068
2069         * device/include/sdcc-lib.h: inserted LGPL, added includes
2070           asm/ds390/features.h and asm/mcs51/features.h
2071         * device/include/asm/default/features.h,
2072         * device/include/asm/gbz80/features.h,
2073         * device/include/asm/z80/features.h: added empty _AUTOMEM
2074           and _STATMEM
2075         * device/include/asm/ds390/features.h,
2076         * device/include/asm/mcs51/features.h: added files with defines for
2077           _AUTOMEM and _STATMEM indicating automatic and static storage class
2078         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2079         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2080         * src/SDCCicode.c (geniCodeCast),
2081         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2082         * src/SDCCloop.c (loopInduction): removed unused variable lr
2083         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2084           to convertToFcall to include char modulo (RFE 1065037), added check
2085           if left operand is unsigned and use abs of literal value
2086         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2087           as it doesn't work after conversion from peephole.def to peephole.rul
2088         * src/mcs51/gen.c (toBoolean): added check for size,
2089           (genModOneByte): optimized code for signed char modulo a literal
2090           power of 2 (thanks to Hubert Sack),
2091           (genRRC): removed unnecessary "clr c",
2092           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2093         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2094           jump optimization,
2095           swapped rules 256.c and 256.d,
2096           extended 256.d by using new multiple checks (thanks Erik),
2097           added rules 256.e and 256.f,
2098           updated rule 261.a and 261.b to new generated code
2099         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2100
2101 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2102
2103         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2104           induction related bugs, including first part of bug #1074377
2105
2106 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2107
2108         * applied patch from bug-report #1076292,
2109         * applied patches for genAnd and Goto-optimizations for Raphael
2110         Neider,
2111         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2112         dump a less iCode information,
2113         * src/pic16/device.h (pic16_options_t): added field debgen,
2114         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2115         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2116         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2117         puclic,
2118         * (various functions): added macros FENTRY and FENTRY2 to functions,
2119         to emit function prologue,
2120         * (various functions): fixed indentation,
2121         * (genNearPointerGet): fixed loading of FSR0,
2122         * (genPackBits): applied patch from Raphael Neider to fix updating
2123         of FSR0 and touching only the modified bits,
2124         * src/pic16/genarith.c (various functions): added macros FENTRY to
2125         emit function prologue in comments,
2126         * src/pic16/pcode.h: added functions debugf2, debugf3,
2127         * src/pic16/ralloc.c: partial fix for packForPush caused
2128         segmentation fault,
2129
2130 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2131
2132         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2133           <stsp AT users.sourceforge.net> with reversed byte order
2134         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2135
2136 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2137
2138         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2139           bug #1074377
2140         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2141         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2142
2143 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2144
2145         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2146
2147 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2148
2149         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2150           conditions,
2151           (setFromConditionArgs): friendly operand parser for peephole rules,
2152           (operandBaseName, operandsNotRelated): new peephole condition
2153           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2154           architecture specific register naming into account, handles n-way
2155           comparisons, and supports quoted literals
2156         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2157
2158 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2159
2160         * src/mcs51/peeph.def: fixed bug #1076940
2161
2162 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2163
2164         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2165
2166 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2167
2168         Adding support for replacing ljmps with sjmps in jumptables
2169         generated for switch statements. For now you need to set the
2170         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2171         Now 4 algorithms for mcs51 jumptable generation are used:
2172         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2173         addresses loaded pc-relative for up to 112 cases and stack-pushing
2174         target addresses loaded with offset from dptr for up to 256 cases.
2175
2176         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2177         * src/mcs51/main.c: adapted constants for switch table generation
2178         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2179
2180 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2181
2182         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2183         * support/regression/tests/bug1057979.c: added test for bug 1073386
2184
2185 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2186
2187         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2188         compilers
2189
2190 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2191
2192         * src/pic16/device.h,
2193         * src/pic16/genarith.c,
2194         * src/pic16/glue.c,
2195         * src/pic16/main.c,
2196         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2197
2198 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2199
2200         Large cummulative patch for pic16 port.
2201         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2202         to call when a stack overflow occurs,
2203         * (malloc.h): added CVS Id tag,
2204         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2205         variable,
2206         * added libc directory. The current version of LibC contains string
2207         functions, ctype functions and macros and some functions of the
2208         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2209         be extensively tested in the future. Standard disclaimer here.
2210         Library is not automatically build yet. But one can build it by
2211         invoking 'make' inside the libc directory.
2212         * added ADC library under libio. Preliminary version yet.
2213
2214         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2215         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2216         aopForRemat() now and not by pic16_aopOp(),
2217         * (pic16_popGetTempReg): removed warning messgae when allocating
2218         temporary registers, its a buggy feature and will be removed,
2219         * (pic16_popGet): set register instance field in AOP_CRY,
2220         * (pic16_outBitC): fixed for results in size greater than 1,
2221         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2222         * (pic16_storeForReturn): optimized return of 0,
2223         * (genCmp): experimental code for new genCmp which uses PIC18's
2224         special compare&skip instructions. Initial tests fail some times
2225         with variables grater than 1 byte in size, so new code is disabled,
2226         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2227         a single bit,
2228         * (genCast): began a fix to optimize the casting of a bit to another
2229         bit, now assigning a bitfield to another bitfield will fail, sorry,
2230         * src/pic16/main.c: disabled the use of lr-support feature,
2231         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2232         * added some function prototypes, added function _debugf prototype,
2233         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2234         bits with offset (case PO_GPR_BIT),
2235         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2236         command line,
2237         * (isBankInstruction): modified to return 0 for no banking instruction,
2238         and 1 for banking instruction,
2239         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2240         caused stop processing pCodes after a inline assembly block,
2241         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2242         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2243         registers when it shouldn't,
2244         * src/pic16/ralloc.c (allocReg): add preliminary support for
2245         supporting a limited set of temporary registers,
2246
2247 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2248
2249         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2250           genDataPointerSet): ensure assignments always copy in MSB to LSB
2251           order,
2252           (loadRegFromAop): recognize CLRH optimization,
2253           (genFunction): optimize RECEIVE iCodes in reentrant functions
2254
2255 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2256
2257         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2258           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2259           selected.
2260         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2261         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2262           contiguous with data
2263
2264 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2265
2266         * device/lib/_gptrget.c (_gptrget),
2267         * device/lib/_gptrgetc.c (_gptrgetc),
2268         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2269           instead of sjmp to ret
2270         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2271           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2272
2273 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2274
2275         * .version: bumped version to 2.4.7
2276         * device/lib/_gptrget.c (_gptrget): is now _naked
2277         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2278         * device/lib/_gptrput.c (_gptrput): is now _naked
2279         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2280           (createFunction): fixed xstack
2281         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2282         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2283           or bit either,
2284           (geniCodeCritical): store original interrupt state in an iTemp bit
2285           var unless stack-auto
2286         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2287         * src/SDCCmain.c (setIncludePath): added include/target to search path
2288         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2289         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2290           prototype,
2291           (processFuncArgs): put bit vars in bit area
2292         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2293           unsaveRBank): fixed xstack,
2294           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2295           (genFunction, genEndFunction): fixed xstack,
2296           (genAssign): optimization don't walk backwards through mem
2297         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2298         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2299         * support/regression/Makefile: also make library (for stack-auto) when
2300           making "all" and added "test-mcs51-xstack-auto"
2301         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2302         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2303         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2304         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2305         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2306           make-library by MAKE_LIBRARY
2307         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2308           regression tests for xstack
2309         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2310         * support/regression/tests/critical.c: test for critical on mcs51
2311
2312 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2313
2314         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2315           built version of sdcc instead of installed version
2316
2317 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2318
2319         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2320         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2321           vprintf.c now
2322         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2323         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2324           WARNING: remove device/lib/build/z80/printf.o by hand when
2325           updating from previous build!
2326         * device/lib/z80/printf.c: updated comment
2327         * support/regression/tests/bug1057979.c: test all ports now
2328         * support/regression/tests/bug1065458.c: file added
2329
2330 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2331
2332         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2333           *_start and *_end symbols for static functions
2334
2335 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2336
2337         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2338           and search crt0.o in all library paths,
2339           (setIncludePath): proper handling of --nostdinc,
2340           (setLibPath): proper handling of --nostdlib
2341         * support/regression/Makefile,
2342         * support/regression/ports/ds390/spec.mk,
2343         * support/regression/ports/gbz80/spec.mk,
2344         * support/regression/ports/hc08/spec.mk,
2345         * support/regression/ports/mcs51/spec.mk,
2346         * support/regression/ports/mcs51-large/spec.mk,
2347         * support/regression/ports/mcs51-stack-auto/spec.mk,
2348         * support/regression/ports/z80/spec.mk: use include and lib files from
2349           built version of sdcc instead of installed version
2350         * doc/sdccman.lyx: fixed typo in --nostdinc
2351
2352 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2353
2354         * src/pic/pcode.c,
2355         * src/pic/device.c,
2356         * src/pic/ralloc.c,
2357         * src/pic/gen.c : added support to generate code for struct bit fields.
2358
2359 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2360
2361         * as/xa51/xa_version.h,
2362         * device/include/errno.h,
2363         * device/include/regc515c.h,
2364         * device/lib/_itoa.c,
2365         * device/lib/_ltoa.c,
2366         * device/lib/ser_ir_cts_rts.c,
2367         * sim/ucsim/xa.src/glob.cc,
2368         * sim/ucsim/xa.src/inst_gen.cc,
2369         * sim/ucsim/xa.src/xa_bit.cc,
2370         * sim/ucsim/xa.src/xa_sfr.cc,
2371         * sim/ucsim/z80.src/inst_dd.cc,
2372         * sim/ucsim/z80.src/inst_fdcb.cc,
2373         * support/scripts/keil2sdcc.pl,
2374         * src/pic16/pic16.dsp,
2375         * src/pic16/pic16a.dsp: corrected cvs line endings
2376         * device/lib/printf_large.c: fixed bug 1057979
2377         * src/pic16/gen.c: fixed non-C standard code
2378         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2379         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2380         * support/regression/ports/mcs51/support.c: reload T1 asap
2381         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2382           pdata use and clear idata startup behaviour
2383         * support/regression/tests/bug1057979.c: added
2384
2385 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2386
2387         * device/examples/ds390/ow390/ad26.h,
2388         * device/examples/ds390/ow390/cnt1d.h,
2389         * device/examples/ds390/ow390/crcutil.c,
2390         * device/examples/ds390/ow390/ownet.h,
2391         * device/examples/ds390/ow390/owsesu.c,
2392         * device/examples/ds390/ow390/swt12.h,
2393         * device/examples/ds390/ow390/swtoper.c,
2394         * device/examples/ds390/ow390/temp10.h,
2395         * device/examples/ds390/ow390/thermodl.c,
2396         * device/examples/ds390/tinitalk/tinitalk.dsp,
2397         * device/examples/ds390/tinitalk/tinitalk.dsw,
2398         * device/examples/mcs51/clock/hw.h,
2399         * device/examples/mcs51/simple2/go.bat,
2400         * device/examples/serialcomm/windows/serial.h,
2401         * device/examples/xa51/dummy.c,
2402         * device/examples/xa51/hello.c,
2403         * device/include/80c51xa.h,
2404         * device/include/at89x051.h: corrected cvs line endings
2405
2406 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2407
2408         * src/pic16/main.c (options): added command line --gstack, to trace
2409         stack over/under flows,
2410         * added pragma 'wparam' to allow passing first byte of function
2411         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2412         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2413         call to __gstack_test function and sets up the symbol as extern,
2414         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2415         * popaop): added call to pic16_testStackOverflow,
2416         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2417         wparamList list,
2418         * (genCall, genPcall): now all parameters are passed via stack
2419         except in functions that are pass to wparam pragma in which WREG is
2420         used too,
2421         * (genPcall): REENTRANT flag is checked to see if variable prototype
2422         contains reentrant keyword, don't call a non-reentrant function, via
2423         a reentrant function pointer or vice versa, functions are never
2424         passed via WREG,
2425         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2426         D.Winkler,
2427         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2428         SIGSEGV when accessing a NULL register stucture,
2429         * (pic16_printGPointerType): modified to handle UPPER modifier for
2430         function initializers, changed prototype of function to simpler one,
2431         * (pic16_printIvalFuncPtr): check to see if function is already
2432         added in externs list,
2433         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2434         optimized a move from W to SFR with a move to the same register
2435         later after a CALL,
2436         * device/lib/pic16/debug: NEW directory, contains debug features
2437         which are enabled when linking with libdebug.lib, currently command
2438         line option --gstack enables stack pointer tracing for over/under
2439         flow, corresponding sources are in debug/gstack
2440
2441 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2442
2443         * doc/sdccman.lyx: updated SDCC version,
2444         * (PIC16 port): update list of command line options,
2445         * src/pic16/device.h (structure pic16_options_t): added field gstack
2446         to enable stack overflow tracing on push/pops,
2447         * src/pic16/device.c (statistics structure): added statistics
2448         structure,
2449         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2450         pic16_dump_int_registers): increase statistics counters for each
2451         * variable which is encountered
2452         * (pic16_dump_usection): emit each .udata variable to its own udata
2453         section,
2454         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2455         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2456         parameters via stack, otherwise use old scheme,
2457         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2458         assembler output file,
2459         * src/pic16/main.c: added command line options --gstack to enable
2460         push/pop tracing for stack overflow,
2461         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2462         instructions): added size of each instruction,
2463         * (pic16_countInstruction): estimate size of instructions in
2464         the_pFile list, inline assembly blocks are not counted,
2465         * (pic16_FixRegisterBanking): trace previous register usage, when
2466         banksel optimizations is greater than 0, don't emit a redudant
2467         banksel directive,
2468
2469 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2470
2471         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2472         * src/pic16/ralloc.c : applied same fix for pic16.
2473         * src/pic/gen.c : tidied it up a little.
2474
2475 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2476
2477         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2478         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2479
2480 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2481
2482         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2483
2484 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2485
2486         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2487         non-reentrant function __modsint in the interrupt function (thus
2488         corrupting math operations during serial I/O)
2489         * device/lib/ser_ir.c: as above, changed buffersize
2490         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2491         256.c,d for zeroing
2492         * doc/Makefile: added option -t for rsync
2493
2494 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2495
2496         * src/SDCCast.h (struct ast),
2497         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2498
2499 2004-10-20 Borut Razem <borut.razem AT siol.net>
2500
2501         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2502         package
2503
2504 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2505
2506         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2507         makefile targets,
2508         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2509         support functions to replace long sequences of MOVFF's from access
2510         bank registers to stack and vice versa,
2511         * src/pic16/device.h: added new field opt_flags, where optimization
2512         flags can be set to enable certain features,
2513         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2514         * pBlock, (genFunction, genEndFunction): surroung loop for
2515         saving/loading used registers in stack with PC_INFO pCodes,
2516         INF_LREGS. Code in between can then be optimized by pCode optimizer
2517         to support function calls,
2518         * (genDataPointerSet): fixed bug which loaded float fields in
2519         structures with corrupt data,
2520         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2521         in a standard way debug info on stderr. Feature used for developing
2522         and debugging only,
2523         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2524         obsolete chunks of code,
2525         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2526         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2527         * pic16/src/pcode.c (pic16_newpCodeInfo,
2528         * (pic16_newpCodeOpLocalRegs),
2529         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2530         feature,
2531         * (pic16_pCodeConstString): printing of the initial value of a
2532         symbol as a comment is inhibited since parsing was already done by
2533         copyStr and output is corrupt,
2534         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2535
2536 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2537
2538         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2539
2540 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2541
2542         * as/mcs51/lkarea.c: removed old K&R style,
2543           (lnksect): changed check on boundary error,
2544           (lnksect2): changed check on boundary error,
2545           (lnksect2): extend XSTK to end of page if size = 1
2546         * as/mcs51/lkmain.c: removed old K&R style,
2547           (Areas51): create l_IRAM symbol
2548         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2549         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2550           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2551         * device/lib/_mullong.c: added version to be compiled with xstack
2552         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2553         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2554         * device/lib/mcs51/crtxstack.asm: fixed comment
2555         * src/SDCCglue.c: maxInterrupts defaults to 0,
2556           (emitMaps): added pdata,
2557           (createInterruptVect): (re)moved default,
2558           (glue): added pdata,
2559           (glue): moved __start__xstack to XSTK with default size 1
2560         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2561           and options.float_rent when options.stackAuto is set,
2562           (linkEdit): only write XDATA_NAME if provided on command line
2563         * src/SDCCmem.h,
2564         * src/SDCCmem.c: added pdata
2565         * src/port.h: added pdata_name to PORT
2566         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2567           (saveRegisters, unsaveRegisters): removed usage of B,
2568           (genMinus): fixed accumulator clash,
2569           (genJumpTab): added comment, this needs another look
2570         * src/mcs51/gen.c: added check for "B in use" paranoia,
2571           added pushB() and popB()
2572         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2573           chance
2574         * src/avr/main.c,
2575         * src/ds390/main.c,
2576         * src/hc08/main.c,
2577         * src/mcs51/main.c,
2578         * src/pic/main.c,
2579         * src/pic16/main.c,
2580         * src/xa51/main.c,
2581         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2582           added PSEG (PAG,XDATA) or NULL to port specifier
2583         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2584         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2585           (_mcs51_genInitStartup): removed __start__xstack equ,
2586           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2587         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2588         * src/z80/gen.c (_rleAppend): fixed warnings
2589         * support/regression/tests/zeropad.c: added pdata test
2590         * .version: bumped to 2.4.6
2591
2592 2004-10-17 Borut Razem <borut.razem AT siol.net>
2593
2594         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2595         as a part of nightly build
2596
2597 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2598
2599         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2600         WREG holds the first byte function parameters,
2601         * (aopForSym): take special case for symbols which are in FARSPACE
2602         but in CODESPACE too,
2603         * (assignResultValue): modified to take into account _G.useWreg,
2604         * (genCall): don't use wreg for parameter passing when function is
2605         declared as reentrant, too, added optimization INCF to stack
2606         pointer when stack parameter count is 1,
2607         * (genFunction, genEndFunction): refurnished and fixed to not using
2608         wreg for passing parameters when function has varargs or is
2609         reentrant, fixed bug with symbol name compare for generating
2610         functions in absolute address,
2611         * (pic16_storeForReturn): refurnished,
2612         * (genCmp): began writing a new version of the function, not ready
2613         yet, therefore it is disabled,
2614         * (genAssign): do not read code memory when assigning a function to
2615         a pointer function,
2616         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2617         array of characters, not pointer,
2618         * (pic16initialComments): in debug mode emit an .ident directive for
2619         the assembler,
2620         * (_process_pragma): emit a new warning type (internal to pic16)
2621         when setting stack to default length, emit a similar warning when
2622         placing a function at absolute address and address is not word aligned
2623         * (_pic16_parseOptions): added 'return TRUE' statement,
2624         * (_pic16_linkEdit): if compiling a source, then add the source's
2625         file object, first in the list of objects to link,
2626
2627 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2628
2629         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2630         * src/pic/main.c : removed VC warning.
2631         * src/pic/gen.c : changed comment.
2632
2633 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2634
2635         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2636         reference to a deprecated symbol _GPTRREG was causing failure to
2637         link. Thanks G. M. Gallant for the info.
2638
2639 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2640
2641         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2642         comments for Bugs item #954788.
2643
2644 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2645
2646         * src/pic16/device.c (pic16_dump_gsection,
2647         * pic16_groupRegistersInSection): handle symbols declared to be in
2648         access bank differently,
2649         * src/pic16/gen.c (struct _G): added field resDirect,
2650         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2651         send values read from stack directly to result and don't allocate
2652         temporary values,
2653         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2654         same registers,
2655         * (pic16_sameRegsOfs): NEW,
2656         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2657         free because they were not allocated from temporary pool,
2658         * pic16_popRegFromString): workaround to fix a problem with
2659         allocating variables twice or never,
2660         * (genGenPointerGet): using PRODL instead of FSR0H,
2661         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2662         instead of FSR0H,
2663         * (genAssign): take advantage of the _G.resDirect flag,
2664         * (genCast): around line 11844, use mov2f instead of directly
2665         MOVFF'ing between operands to account for literal values,
2666         * src/pic16/genutils.c: some new debug functions for gpsim have been
2667         added,
2668         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2669         float with integer part only,
2670         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2671         place variables in access bank
2672         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2673         updated sources to reflect recent changes in gen.c
2674
2675 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2676
2677         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2678         sources that searched for headers in installation path, now the
2679         device/include/pic16 is used,
2680         * src/pic16/glue.c (pic16glue),
2681         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2682         .line directives if not in debug mode, this suppresses assembler's
2683         warnings for ignored directives
2684
2685 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2686
2687         * src/port.h: made reset_regparms prototype void parameter explicit.
2688         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2689         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2690         * doc/sdccman.lyx: documented warning disabling and how to use
2691           printf_large to make it print floats.
2692         * device/include/stdbool.h: NEW
2693         * device/lib/_atof.c,
2694         * device/lib/_divuint.c,
2695         * device/lib/_divulong.c,
2696         * device/lib/expf.c,
2697         * device/lib/printf_large.c,
2698         * device/lib/sincosf.c,
2699         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2700         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2701           a completely reentrant lib.
2702
2703 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2704
2705         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2706         * device/include/pic16/stdio.h: fixed bug with colon
2707
2708 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2709
2710         * device/include/pic16/stdio.h,
2711         * device/include/pic16/stdlib.h,
2712         * device/include/pic16/math.h: NEW
2713         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2714         declared as _naked to reduce overhead
2715         * device/lib/Makefile.in (target port-specific-objects-pic16):
2716         changed * to *.* so to ignore the CVS directory,
2717         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2718         stacked variables back in stack,
2719         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2720         corruption
2721
2722 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2723
2724         * .version: bumped version number to 2.4.5
2725         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2726         * support/Util/SDCCerr.c (messages structure): added entry for
2727         W_POSSBUG2
2728
2729         Large cumulative patch for pic16 port and libraries.
2730         * device/include/pic16/sdcc-lib.h,
2731         * device/include/pic16/stdarg.h,
2732         * device/include/asm/pic16/features.h,
2733         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2734         * device/include/pic16/float.h: changes reentrant keyword with
2735         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2736         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2737         updated target build-libraries to include objects from gptr,
2738         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2739         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2740         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2741         all function headings,
2742         * src/SDCCmain.c: added global parameter userIncDirsSet,
2743         * (parseCmdLine): when option -I is encountered add directory to
2744         userIncDirsSet too,
2745         * src/version.awk: added space between control and long,
2746         * src/pic16/NOTES: added some notes for the port,
2747         * src/pic16/gen.c: added prototype for mov2fp function,
2748         * (fReturnpic16[]): properly named return value registers,
2749         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2750         * (aopForSym): added code to handle symbols with onStack flag set,
2751         symbols onStack are allocated PTRSIZE bytes,
2752         * (aopFreeAsmop): handles special case where asmops are stack objects,
2753         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2754         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2755         added argument lock to trace flaws in allocating temporary registers
2756         when developing port,
2757         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2758         * (pic16_popRegFromString): reenabled allocating a direct register
2759         from string,
2760         * (assignResultValue): various beautifications,
2761         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2762         referenced function argument,
2763         * (genIpush): reenabled to allow stacked arguments, handles only
2764         ic->parmPush iCodes,
2765         * (genCall, genPcall): major changes to allow for variable argument
2766         functions, fixed a bug with falsely restoring stack pointer after
2767         returning from call,
2768         * (genFunction): pending code for critical function,
2769         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2770         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2771         * (genNearPointerGet): fixed bug with indirect reading, was always
2772         reading from INDF0
2773         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2774         pointers,
2775         * (genAddrOf): rewrote code to take address of a stacked function parameter
2776         * (genCast): fixed casting to generic pointer type,
2777         * src/pic16/gen.h: added AOP_STA,
2778         * (struct asmop): added field stk,
2779         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2780         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2781         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2782         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2783         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2784         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2785         generic pointers,
2786         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2787         and library paths,
2788         * (pic16_port structure): generic pointer size is set to 3,
2789         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2790         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2791         compiler warning,
2792         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2793         operand is an iTemp,
2794
2795 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2796
2797         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2798         * debugger/mcs51/simi.c: addapt new syntax of s51
2799
2800 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2801
2802         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2803         * src/pic16/pcode.c: commented out some calls to free() in order to
2804         fix bug #989576,
2805
2806 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2807
2808         * src/SDCCicode.h,
2809         * src/SDCCicode.c (isiCodeInFunctionCall),
2810         * src/avr/ralloc.c (selectSpil),
2811         * src/pic/ralloc.c (selectSpil),
2812         * src/pic16/ralloc.c (selectSpil),
2813         * src/ds390/ralloc.c (selectSpil),
2814         * src/hc08/ralloc.c (selectSpil),
2815         * src/xa51/ralloc.c (selectSpil),
2816         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2817         stack in the middle of a function call sequence (fixes bug #1020268)
2818         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2819         costs associated with the minimum switch case.
2820
2821 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2822
2823         * src/SDCC.lex: fixed bug #1030549
2824
2825 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2826
2827         * src/SDCCcse.h (struct cseDef),
2828         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2829         over a function call if the CSE is derived from a symbol whose
2830         address has been taken (fixes bug #1029883)
2831         * support/regression/tests/bug-1029883: a new regression test for
2832         this bug
2833
2834 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2835
2836         * src/hc08/gen.c (emitinline): fixed bug #1029778
2837         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2838         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2839         and starts toward RFE #905167)
2840
2841 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2842
2843         * src/pic16/gen.c (mov2f): New function to move an operand to
2844         another without considering if it is a literal or a register,
2845         * (pic16_sameRegs): don't check if they are both AOP_REG,
2846         * (AccRsh): removed andmask=0 lines,
2847         * (genLeftShift): duplicated to be improved in future versions,
2848         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2849         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2850         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2851         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2852         * (insertBankSwitch): fixed inserting banksel directives algorithm
2853         for instructions that follow a skip instruction, this fixes a report
2854         for broken subtraction code generation,
2855         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2856         iCode is a left op, just in case result and right share the same
2857         registers
2858
2859 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2860
2861         * src/hc08/main.c,
2862         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2863         preservation of HX
2864         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2865         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2866         on 2004-09-12; it was buggy
2867
2868 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2869
2870         * src/SDCCsymt.h: removed RESULT_CHECK
2871         * src/SDCCast.c,
2872         * src/SDCCglue.c,
2873         * src/SDCCval.c,
2874         * src/pic/glue.c,
2875         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2876
2877 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2878
2879         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2880         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2881         configuration values no more rejected by compiler, they are assigned
2882         to configuration registers with a warning message instead,
2883         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2884         the for-loop so last conf register is emitted too,
2885         * (_pic16_initPaths): link library libsdcc.lib by default,
2886         * (_hasNativeMulFor): modified test for multiplication according to
2887         Raphael Neider's remarks. Integer multiplication is also done with
2888         support functions,
2889         * device/include/pic16/pic18fregs.h: corrected type error in while
2890         testing and including 18f6720 header file
2891
2892 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2893
2894         * src/pic16/device.h (pic16_options): removed field use_crt,
2895         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2896         until an optimization to handle single bits is added,
2897         * (pic16_loadFSR0): moved before genUnpackBits,
2898         * (genAnd): some white lines removed,
2899         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2900         leave_reset flags in pic16_options when using crt modules,
2901
2902 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2903
2904         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2905           for bugs 898889 & 979599. Also used some safer print instructions.
2906
2907 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2908
2909         * src/pic16/device.h (pic16_options_t): added field use_crt,
2910         crt_name, no_crt,
2911         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2912         catch a probable future bug,
2913         * src/pic16/gen.c: aopIdx function commented out,
2914         * (genAssign): commented out old code which used aopIdx,
2915         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2916         code, added if conditionals to take into account the --use-crt
2917         command line options,
2918         * src/pic16/main.c (pic16_optionsTable): added new command line
2919         options, --use-crt= and --no-crt,
2920         * (_pic16_linkEdit): now the proper crt object is added in the
2921         linker command line except than when --no-crt is specified,
2922         * src/pic16/pcode.c,
2923         * src/pic16/pcode.h: added some structures and functions for a new
2924         optimization scheme to compansate for instruction overhead between
2925         same iCodes, this scheme is currently under development and is not
2926         working in any way,
2927         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2928         to && operator,
2929         * device/lib/pic16/startup/crt0i.c,
2930         * device/lib/pic16/startup/crt0iz.c: added global char variable
2931         __uflags to force the generation of an idata section
2932
2933 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2934
2935         * doc/Makefile,
2936         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2937         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2938
2939 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2940
2941         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2942         Frieder) and clarified the default code optimization mode
2943
2944 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2945
2946         * src/SDCC.lex (doPragma, process_pragma),
2947         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2948         "opt_code_size", and "opt_code_balanced"
2949         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2950         regrouped options by category, added support for category headers
2951         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2952         and "--opt-code-size"
2953         * doc/sdccman.lyx: documented these new options and pragmas
2954         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2955         preference into account
2956
2957 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2958
2959         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2960           geniCodePreDec): Fixed bug 904237 by generating a warning
2961         * src/SDCCerr.h,
2962         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2963
2964 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2965
2966         * src/pic/device.c : When no max ram set validate full memory range.
2967         * src/pic/pcode.c,
2968         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2969
2970 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * device/lib/_gptrget.c,
2973         * device/lib/_gptrput.c: updated comment
2974         * device/lib/calloc.c,
2975         * device/lib/free.c,
2976         * device/lib/malloc.c,
2977         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2978         * src/SDCCcse.c (cseBBlock),
2979         * src/SDCCicode.c (printOperand, geniCodeArray),
2980         * src/SDCCicode.h (struct operand): fixed bug 868103
2981         * support/regression/tests/bug-868103.c: added
2982         * src/SDCCast.c (searchLitOp),
2983         * src/SDCCcse.h (struct cseDef),
2984         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2985         * src/SDCCicode.h (struct operand),
2986         * src/SDCCsymt.h (struct sym_link),
2987         * src/avr/gen.c (hasInc),
2988         * src/ds390/gen.c (hasInc),
2989         * src/hc08/gen.c (genPlusIncr, hasInc),
2990         * src/mcs51/gen.c (hasInc),
2991         * src/pic16/glue.c (pic16_printIvalChar),
2992         * src/pic16/ralloc.c (regWithIdx),
2993         * src/xa51/gen.c (hasInc) : removed warnings
2994         * src/SDCCast.c (createBlock): added comment ???
2995         * src/hc08/ralloc.c: updated comments
2996
2997 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2998
2999         * doc/sdccman.lyx: updated section on switch statements, added
3000         section about semaphore locking
3001         * doc/Makefile: added option -info for latex2html
3002         * device/lib/_gptrget.c,
3003         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3004
3005 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3006
3007         * src/pic/device.h,
3008         * src/pic/device.c,
3009         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3010          maxram is less than 0x100.
3011
3012 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3013
3014         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3015
3016 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3017
3018         * src/port.h,
3019         * src/mcs51/main.c,
3020         * src/ds390/main.c,
3021         * src/z80/main.c,
3022         * src/hc08/main.c,
3023         * src/pic/main.c,
3024         * src/pic16/main.c,
3025         * src/avr/main.c,
3026         * src/xa51/main.c
3027         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3028         a jump table is the best form for a switch statement, including
3029         automatic insertion of missing cases to make the case range
3030         continuous. Developed in collaboration with Frieder Ferlemann.
3031
3032 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3033
3034         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3035         accumulator result if it needs sign extension
3036
3037 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3038
3039         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3040
3041 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3042
3043         * device/lib/gbz80/printf.c,
3044         * device/lib/z80/printf.c: removed define for NULL
3045
3046 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3047
3048         * as/xa51/xa_link.c,
3049         * device/examples/ds390/ow390/ad26.c,
3050         * device/examples/ds390/ow390/cnt1d.c,
3051         * device/examples/ds390/ow390/counter.c,
3052         * device/examples/ds390/ow390/ds2480.h,
3053         * device/examples/ds390/ow390/ds2480ut.c,
3054         * device/examples/ds390/ow390/findtype.c,
3055         * device/examples/ds390/ow390/gethumd.c,
3056         * device/examples/ds390/ow390/owllu.c,
3057         * device/examples/ds390/ow390/ownetu.c,
3058         * device/examples/ds390/ow390/swt12.c,
3059         * device/examples/ds390/ow390/swtloop.c,
3060         * device/examples/ds390/ow390/temp.c,
3061         * device/examples/ds390/ow390/temp10.c,
3062         * device/examples/ds390/ow390/thermo21.c,
3063         * device/examples/ds390/ow390/tinilnk.c,
3064         * device/examples/ds390/ow390/tstfind.c,
3065         * device/examples/serialcomm/windows/serial.cpp,
3066         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3067         * device/include/reg51.h: fixed line endings for cvs
3068
3069 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3070
3071         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3072         packRegsForAccUse, packRegisters): new accumulator register
3073         packing algorithm
3074         * support/regression/ports/hc08/support.c (_putchar): suppress
3075         warning of unused variable
3076         * src/SDCCicode.c: added SWAP entry to codeTable
3077
3078 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3079
3080         * device/lib/sprintf.c: forgot to add this file before previous commit
3081
3082 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3083
3084         * src/pic16/gen.c (genPackBits): added operand right in function
3085         parameters, load result directly if p_type is POINTER (that is
3086         called by genNearPointerSet)
3087         * (genUnPackBits): added operand left in function parameters,
3088         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3089         FSR0 if accessing bitfields,
3090
3091 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3092
3093         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3094           _print_format; updated printf, sprintf, vsprintf
3095         * device/include/asm/default/features.h: corrected comment/define
3096         * device/lib/Makefile.in: added sprintf.c
3097         * device/lib/libsdcc.lib: added sprintf module
3098         * device/lib/printf_large.c,
3099         * device/lib/vprintf.c,
3100         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3101           into these 3 files
3102         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3103         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3104         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3105           hc08 test
3106         * support/regression/tests/zeropad.c: define idata as data for hc08
3107
3108 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3109
3110         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3111         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3112         labels are referenced at least once (even if a reference is not found)
3113         * src/hc08/gen.c (emitcode): set isComment flag for comments
3114         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3115         loads), rules 6a..6b (optimize jumps to return)
3116
3117 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3118
3119         * device/lib/acosf.c (acosf),
3120         * device/lib/asinf.c (asinf),
3121         * device/lib/atanf.c (atanf),
3122         * device/lib/ceilf.c (ceilf),
3123         * device/lib/cosf.c (cosf),
3124         * device/lib/coshf.c (coshf),
3125         * device/lib/cotf.c (cotf),
3126         * device/lib/fabsf.c (fabsf),
3127         * device/lib/floorf.c (floorf),
3128         * device/lib/log10f.c (log10f),
3129         * device/lib/logf.c (logf),
3130         * device/lib/sinf.c (sinf),
3131         * device/lib/sinhf.c (sinhf),
3132         * device/lib/sqrtf.c (sqrtf),
3133         * device/lib/tanf.c (tanf),
3134         * device/lib/tanhf.c (tanhf),
3135         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3136         replaced all instances of "reentrant" in the library functions
3137         defined in math.h with this macro.
3138         * support/regression/tests/float_trans.c: reenabled test for hc08
3139
3140 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3141
3142         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3143         erroneously deleted
3144
3145 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3146
3147         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3148         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3149         multi-byte volatile operands are used
3150         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3151         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3152         initialization to area GSINIT0 so that it would always precede
3153         any static initializers in GSINIT
3154         * support/regression/tests/zeropad.c: fixed idata define for hc08
3155         * support/regression/tests/bug-927659.c,
3156         * support/regression/tests/float_trans.c: disabled tests for hc08
3157         pending missing library routines
3158         * .version: increased version number to 2.4.4 - hc08 port now passes
3159         regression tests
3160
3161
3162 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3163
3164         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3165         * Makefile.common.in,
3166         * as/Makefile,
3167         * as/hc08/Makefile.in,
3168         * as/mcs51/Makefile.in,
3169         * as/z80/Makefile.in,
3170         * debugger/mcs51/Makefile.in,
3171         * device/include/Makefile.in,
3172         * device/lib/Makefile.in,
3173         * doc/Makefile,
3174         * link/Makefile,
3175         * link/z80/Makefile.in,
3176         * packihx/Makefile.in,
3177         * sim/ucsim/main_in.mk,
3178         * sim/ucsim/avr.src/Makefile.in,
3179         * sim/ucsim/doc/Makefile.in,
3180         * sim/ucsim/gui.src/serio.src/Makefile.in,
3181         * sim/ucsim/hc08.src/Makefile.in,
3182         * sim/ucsim/s51.src/Makefile.in,
3183         * sim/ucsim/xa.src/Makefile.in,
3184         * sim/ucsim/z80.src/Makefile.in,
3185         * src/Makefile.in,
3186         * support/cpp2/Makefile.in,
3187         * support/librarian/Makefile,
3188         * support/makebin/Makefile: added DESTDIR to the install path proposed
3189         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3190         * doc/sdccman.lyx: added DESTDIR documentation
3191
3192 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3193
3194         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3195         instruction for interrupt handlers, use fast returns when returning
3196         from high priority interrupts
3197
3198 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3199
3200         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3201         code generation
3202         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3203         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3204         bugs, ported much of Bernhard's code from mcs51
3205         * src/mcs51/gen.c (genSend),
3206         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3207         than one when calling a reentrant function
3208         * device/lib/_mullong.c: defined an alternate struct layout for big
3209         endian ports (hc08)
3210
3211 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3212
3213         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3214         test
3215
3216 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3217
3218         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3219         are sane and complete before asking the port its prefered parameter
3220         passing method (fixes bug #1017633)
3221         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3222         and _ret3
3223
3224 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3225
3226         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3227         problem in bitfields >= 8 bits.
3228
3229 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3230
3231         * src/SDCCsymt.c: undid changes that were not meant to be committed
3232
3233 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3234
3235         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3236
3237 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3238
3239         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3240           copied and wrong bit got inverted
3241
3242 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3243
3244         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3245         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3246         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3247         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3248         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3249         assignments to bitfields at known addresses
3250         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3251         reads from bitfields at known addresses
3252         * src/hc08/ralloc.c (packRegisters),
3253         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3254         genhc08Code): optimize pointer get values used as conditionals
3255         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3256         and branch
3257
3258 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3259
3260         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3261         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3262         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3263         as conditionals
3264
3265 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3266
3267         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3268
3269 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3270
3271         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3272         related problems
3273
3274 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3275
3276         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3277
3278 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3279
3280         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3281         mcs51 port
3282
3283 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3284
3285         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3286
3287 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3288
3289         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3290         cases use more compact code.
3291
3292 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3293
3294         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3295
3296 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3297
3298         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3299
3300 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3301
3302         * src/SDCCsymt.h,
3303         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3304         parameter of changePointer() from symbol* to sym_link*
3305         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3306         * src/SDCCsymt.c (compareType): void* type is castable to other
3307         pointers, but not necesarily an exact match.
3308         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3309         is no longer blindly treated as an exact match.
3310         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3311
3312 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3313
3314         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3315
3316 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3317
3318         * src/pic/gen.c,
3319         * src/pic/pcode.c,
3320         * src/pic/ralloc.h,
3321         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3322
3323 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3324
3325         * src/pic/device.c,
3326         * src/pic/device.h,
3327         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3328
3329 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3330
3331         * src/mcs51/gen.c (emitcode): fixed bug #992819
3332
3333 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3334
3335         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3336           there's no need to make it worse
3337
3338 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3339
3340         * src/mcs51/ralloc.c (deassignLR),
3341         * src/ds390/ralloc.c (deassignLR),
3342         * src/hc08/ralloc.c (deassignLR),
3343         * src/z80/ralloc.c (deassignLR),
3344         * src/pic/ralloc.c (deassignLR),
3345         * src/pic16/ralloc.c (deassignLR),
3346         * src/avr/ralloc.c (deassignLR),
3347         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3348         rlivePoint): fixed another part of bug #971834
3349
3350 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3351
3352         * src/z80/main.c: enabled "critical" keyword
3353         * src/z80/mappings.i,
3354         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3355         functions (fixes bug #979646)
3356         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3357
3358 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3359
3360         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3361           such as c:\mydir.
3362
3363 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3364
3365         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3366           doesn't disable too much optimizations
3367
3368 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3369
3370         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3371
3372 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3373
3374         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3375
3376 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3377
3378         * src/pic/gen.c tidied up tabs
3379         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3380         * src/pic/main.c tidied up tabs
3381         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3382         * src/pic/pcoderegs.c tidied up tabs
3383         * src/pic/ralloc.c tidied up tabs
3384
3385 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3386
3387         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3388         to S_FIXED for pic16 port and when symbol is not in level 0,
3389         allocate for S_REGISTER storage class and pic16 port, too,
3390         * src/pic16/device.h: prototype for checkSym,
3391         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3392         * (pic16_assignConfigWordValue): test the value and the mask to
3393         validate that the value is suitable for the configuration word,
3394         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3395         collect extern declared symbols, don't emit symbol twice, check
3396         first if symbol is in publics set first,
3397         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3398         * added command line '--fstack' which enables an experimental
3399         feature for stack access, too buggy to be used yet...
3400         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3401         * (pic16_allocDirReg): when register has storage class S_REGISTER
3402         allocate in pic16_dynAccessRegs,
3403         * device/include/pic16/pic18f????.h: modified configuration word
3404         naming convention, words started as CONFIG0H but should be CONFIG1H
3405
3406 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3407
3408         * device/include/mcs51reg.h: fixed bug 970993
3409
3410 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3411
3412         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3413         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3414         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3415         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3416         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3417         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3418           error/warning numbers,
3419           added function setWarningDisabled()
3420         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3421         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3422           _memcmp.c _memmove.c calloc.c realloc.c free.c
3423         * support/regression/tests/malloc.c: added tests for new functionality
3424         * support/regression/tests/zeropad.c: added tests for truncated initializers
3425           and initialized char arrays starting with '\x0'
3426         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3427
3428 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3429
3430         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3431
3432 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3433
3434         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3435         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3436         peephole 177.e. Thanks to anonymous
3437
3438 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3439
3440         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3441         function isn't used in the source but referenced as a
3442         variable initializer then declare it as extern in .asm file
3443
3444 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3445
3446         * .version: increased version number to 2.4.3
3447
3448         Adding version extension according to ChangeLog CVS revision
3449         * src/Makefile.in (target all): added dependency 'version.h'
3450         * (rule version.h): added rule to create version.h from ChangeLog,
3451         * (rule dep): added dependency version.h,
3452         * src/version.awk: AWK script to create version.h
3453         * src/SDCCdwarf2.c (dwWriteModule),
3454         * src/SDCCglue.c (initialComments),
3455         * src/SDCCmain.c (printVersionInfo): modified to write after
3456         version string the version extension number,
3457         * src/SDCCutil.c: included "version.h"
3458         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3459         number,
3460         * src/SDCCutil.h: added prototype for getBuildNumber
3461
3462         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3463         includeDirsSet, too,
3464         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3465         const char [] is found in function prototype...
3466
3467         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3468         moving to WREG with source is already in WREG,
3469         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3470         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3471         * (aopForSym): stack'ed symbols are partially supported, added
3472         if-clause to support symbols in FARSPACE,
3473         * (sameRegs): added test for AOP_ACC to see if registers are same,
3474         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3475         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3476         * (pic16_popRegFromString): will not allocate a new register if it
3477         doesn't find one by name, bug may have introduced...
3478         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3479         * (genIpush): revived to use pic16 port's stack,
3480         * (genAddrOf): added incomplete case for stack'ed operand,
3481         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3482         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3483         can handle multibyte operands,
3484         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3485         * (pic16initialComments): added message for MPLAB compatibility
3486         mode enabled,
3487         * src/pic16/main.h: prototype for pic16_mplab_comp,
3488         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3489         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3490         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3491         because of increased complexity of procedure,
3492         * (_process_pragma): stack pragma changed to format 'stack pos len',
3493         emit symbol '_stack_end' to conform with gplink,
3494         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3495         to search for register,
3496         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3497         PO_GPR_REGISTER,
3498         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3499         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3500         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3501         case for PO_GPR_REGISTER,
3502         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3503         dies, the new era is ahead !...
3504         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3505         pic16_dynInternalRegs,
3506         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3507         * (pic16_allocDirReg): minor optimizations and bug fixes,
3508         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3509
3510         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3511         load stack and frame pointer with address of 'stack_end' symbol
3512
3513 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3514
3515         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3516         without source code but only variable initializers
3517
3518 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3519
3520         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3521         external are not declared as extern to reduce overhead while linking
3522
3523 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3524
3525         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3526
3527 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3528
3529         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3530           Yee Keat for the patch
3531         * src/SDCCast.c (decorateType): fixed bug #979599
3532         * src/ds390/gen.h: removed local fReturnSizeDS390
3533         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3534         * src/ds390/gen.c (genAnd, genOr, genXor),
3535         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3536
3537 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3538
3539         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3540         add relFilesSet to $3, manipulate $2 to handle linking of object
3541         files without source files in command line,
3542         * device/include/pic16 (all headers): added ID location macros,
3543         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3544         entries for ID location bytes,
3545         * (pic16_assignIdByteValue): NEW,
3546         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3547         added field dumpcalltree to pic16_options_t,
3548         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3549         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3550         emitting rFalseIfx label after check_carry label,
3551         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3552         pic16_emitDIRegs), NEW
3553         * (pic16glue): dump .calltree file when option --calltree found,
3554         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3555         * (_pic16_genAssemblerPreamble): emit ID locations after
3556         configuration registers,
3557         * (pic16_linkCmd): modifications of the link command,
3558         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3559         * (pic16_pCodeInitRegisters): don't init stack registers,
3560         * (pic16_findPrevInstruction): fixed bug,
3561         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3562         bug with immediate registers,
3563         * (buildCallTree): traces stack push and pop,
3564         * (pct2): dump also stack usage for each function,
3565         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3566         * (pic16_allocDirReg): various modifications,
3567         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3568         fixed to 1,
3569
3570 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3571
3572         * src/pic16/pcode.c: removed buggy double colon
3573
3574 2004-07-01 Borut Razem <borut.razem AT siol.net>
3575
3576         * support/scripts/sdcc.nsi: added include/pic16 to setup
3577
3578 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3579
3580         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3581         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3582         target 'clean',
3583         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3584         specific command line arguments. Also added sample lkr script
3585         for placing a variable at a specific memory bank.
3586         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3587         at a specific memory bank,
3588         * (pic16_dump_isection): fixed bug which caused string literals to
3589         be omitted when dumping idata section,
3590         * (pic16_groupRegistersInSection): added code to handle registers
3591         in specific memory banks,
3592         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3593         public, all references are renamed too,
3594         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3595         AOP_DPTR2,
3596         * (pic16_storeForReturn): added case to handle when dest is WREG,
3597         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3598         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3599         pic16_rel_udata, check to see if that register is marked as being
3600         a member of a specific memory bank,
3601         * (pic16_printIvalCharPtr): added code to add string literals either
3602         to code or the idata sections,
3603         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3604         also accept the 'udata' pragma,
3605         * src/pic16/main.h: new structure types sectName and sectSym
3606         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3607         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3608         * (pic16_findPrevInstruction): fixed, it returned nothing,
3609         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3610         instruction combinations,
3611         * (pic16_FixRegisterBanking): heavily reorganised,
3612         * (pic16_AnalyzeBanking): if generating banksel directives is
3613         disabled, then don't call FixRegisterBanking at all,
3614         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3615         completely removed,
3616         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3617
3618 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3619
3620         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3621         Phuah Yee Keat <yk.phuah AT nestac.com>
3622
3623 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3624
3625         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3626         correctly the IVT even if it is relocated to some other location
3627
3628 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3629
3630         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3631         * device/include/pic16/pic18f2220.h: NEW,
3632         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3633         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3634         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3635         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3636         nodefaultlibs, ivt_loc is the location of the interrupt vector
3637         table, and nodefaultlibs signs that default libraries should not be
3638         linked in link stage,
3639         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3640         according to --ivt-loc argument,
3641         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3642         when pragma stack is found,
3643
3644 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3645
3646         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3647         256 (range check), 257 (do while), 258.a-f (bit banging
3648         f.e. on 3-wire SPI bus)
3649
3650 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3651
3652         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3653         variables used exclusively within a loop
3654
3655 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3656
3657         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3658
3659 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3660
3661         * src/SDCClrange.c (computeClash): fixed bug #971834
3662
3663 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3664
3665         * src/mcs51/gen.c (genCmp): fixed bug #975903
3666         * src/hc08/gen.c (operandsEqu),
3667         * src/ds390/gen.c (operandsEqu),
3668         * src/z80/gen.c (operandsEqu),
3669         * src/pic/gen.c (operandsEqu),
3670         * src/pic16/gen.c (operandsEqu),
3671         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3672         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3673
3674 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3675
3676         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3677
3678 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3679
3680         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3681         default case in switch statement,
3682         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3683         to eliminate problem with initialisation of pointers, but problem
3684         still exists,
3685         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3686         * (emitStaticSegment): removed various lines emitting debug info,
3687         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3688         added processor registers for utilizing EEPROM,
3689         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3690         configurable and set 8
3691
3692 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3693
3694         * .version: increased version number to 2.4.2,
3695
3696         Cumulative patch for pic16 port
3697         * src/pic16/device.c: changed scheme to dump initial values for
3698         variables in idata segment, all print_idata* functions were removed,
3699         now the pic16_printIval* will be called,
3700         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3701         * _pic16_printPointerType, pic16_printPointerType,
3702         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3703         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3704         NEW, similar to the respective functions in SDCCglue.c,
3705         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3706         way, emitting hex bytes,
3707         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3708
3709 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3710
3711         * src/avr/ralloc.c (serialRegAssign),
3712         * src/xa51/ralloc.c (serialRegAssign),
3713         * src/pic/ralloc.c (serialRegAssign),
3714         * src/pic16/ralloc.c (serialRegAssign),
3715         * src/hc08/ralloc.c (serialRegAssign),
3716         * src/z80/ralloc.c (serialRegAssign),
3717         * src/ds390/ralloc.c (serialRegAssign),
3718         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3719
3720 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3721
3722         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3723         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3724
3725 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3726
3727         Cumulative patch for pic16 port:
3728         * src/pic16/device.h (typedef PIC16_device) modified fields for
3729         defining microcontrollers,
3730         * src/pic16/device.c: added new info for all devices in Pics16 array,
3731         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3732         to be optimised out by the pCode optimiser,
3733         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3734         specially, bug reported by G.M. Gallant,
3735         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3736         as force'd so that cannot be optimised out by pCode optimiser,
3737         * src/pic16/pcode.c,
3738         * src/pic16/pcodepeeph.c,
3739         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3740         they are disabled by default, but can be enabled explicit with
3741         command argument --denable-peeps, for testing,
3742         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3743         --pomit-ivt in COMPILE_FLAGS
3744
3745 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3746
3747         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3748           compilation on MSVC
3749
3750 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3751
3752         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3753
3754 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3755
3756         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3757         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3758
3759 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3760
3761         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3762         would only assign 0x300001 register.
3763
3764 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3765
3766         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3767         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3768
3769 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3770
3771         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3772         for ds80c400
3773         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3774         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3775         added peephole 254 (left shift), 255 (jump table)
3776
3777 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3778
3779         * device/lib/Makefile.in: removed comment line with model-pic16,
3780         * (target port-specific-objects-pic16): the libraries and objects
3781         are copied to the build directory form the device/lib/pic16/bin
3782         directory
3783
3784         Cumulative patch concerning pic16 port:
3785         * library directory has been re-organized,
3786         * added support for PIC18F1220,
3787         * added headers and library sources for chips 18f1220,18f6520,
3788         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3789
3790         * configuration registers setting has changed, now each supported
3791         device has a complete description of the registers it uses,
3792         * all initialisations are moved to idata sections, these section
3793         can be absolute or relocatable,
3794         * fixed initialisation of codespace variables,
3795         * fixed warning about PCLATU and gpsim,
3796         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3797         * (genAssign): use table reads when assigning from variables in codespace,
3798         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3799         char/int variables placed in codespace,
3800         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3801         registers set in .asm file, no need for --pomit-config-words anymore,
3802         * (pic16glue): some 8051 legacy segments are commented out
3803         (to be removed completely),
3804         * added support for alternative assembler and linker with --asm=
3805         and --link= command line arguments,
3806         * peepholes are disabled automatically in the port, no need to
3807         specify on command line,
3808         * port supports natively char/int/long multiplication, but converts
3809         all divisions to support functions,
3810         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3811         to the file set in variable $2,
3812         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3813         strings in ASCII format and not in hex,
3814         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3815         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3816         allocate proper register if iCodes aren't temporary,
3817
3818 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3819
3820         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3821
3822 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3823
3824         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3825         is commented out
3826
3827 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3828
3829         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3830         computed address is reused
3831         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3832         multi-byte bitfields
3833
3834 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3835
3836         * src/z80/gen.c: (genArrayInit): must check for pointers too
3837
3838 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3839
3840         * support/regression/tests/zeropad.c: never meant to commit the
3841           nestedstruct test: removed, added check for GCC version
3842
3843 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3844
3845         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3846         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3847         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3848           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3849           bugs 928906 and 954082 half-empty initializers
3850         * src/SDCCsymt.h,
3851         * src/SDCCsymt.c (getAllocSize): added for above fix
3852         * src/z80/gen.c (genArrayInit): fixed bug 741044
3853         * support/regression/tests/zeropad.c: added tests
3854
3855 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3856
3857         * src/pic16/device.c (pic16_dump_section): corrected bug which
3858         caused some symbols of the libraries to be misplaced
3859
3860 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3861
3862         * src/pic16/glue.c,
3863         * src/pic16/ralloc.h,
3864         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3865         to fix conflict with pic port
3866
3867 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3868
3869         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3870         externs configuration variables,
3871         * src/pic16/ralloc.h,
3872         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3873         prototype in header, commented out some debug messages
3874
3875 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3876
3877         * src/pic16/glue.c,
3878         * src/pic16/main.c,
3879         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3880         for gpasm COFF object generation. Thanks to D. Hawkins for
3881         his patch info
3882
3883 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3884
3885         * src/ds390/main.c,
3886         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3887         Brock for spotting this)
3888         * src/ds390/gen.c (genEndFunction),
3889         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3890         interrupt handler and critical. Disable push/pop optimizations when
3891         peephole optimizations disabled.
3892
3893 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3894
3895         Updated pic16 library sources and headers.
3896         * device/lib/pic16/pic18f*/ ,
3897         * device/include/pic16/*.h: modified to handle structured SFR
3898         definitions
3899
3900 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3901
3902         * src/port.h (PORT structure): added hook initPaths, now each
3903         port can declare its own default search paths,
3904         which can been seen with the --print-search-dirs option,
3905         see pic16 port for example,
3906         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3907         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3908         * (doPrintSearchDirs): NEW, replaces in a central manner the
3909         printing of search dirs which was split in set*Paths functions,
3910         * (main): added call to port->initPaths and doPrintSearchDirs,
3911         * src/avr/main.c,
3912         * src/ds390/main.c,
3913         * src/hc08/main.c,
3914         * src/izt/i186.c,
3915         * src/izt/tlcs900h.c,
3916         * src/mcs51/main.c,
3917         * src/pic/main.c,
3918         * src/pic16/main.c: modified port structures to reflect addition of
3919         initPaths hook,
3920
3921         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3922         * (pic16_dump_section): for registers in same address reserve memory once,
3923         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3924         to no_banksel,
3925         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3926         result is greater in size than right or left,
3927         * (pic16_genUMult8X8_8): there are some cases where the result can
3928         be 16 bits size, so handle these,
3929         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3930         * (pic16_outBitC): modified to emit pcodes,
3931         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3932         or not,
3933         * (genDivOneByte): implemented algorithm to divide 8-bits,
3934         * (genCmp): uncommented goto, but issues still exist,
3935         * (genAnd): fixed a bug with variables >8bits,
3936         * (genPackBits): optimization added that uses BCF/BSF to change a
3937         single bit,
3938         * (genAssign): fixed bug when assigning floating point literals,
3939         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3940         __sdcc_gsinit_startup label,
3941         * src/pic16/main.c (_pic16_init): removed search directory
3942         initialisations,
3943         * (_pic16_initPaths): NEW, used to initialise search directories,
3944         * (_hasNativeMulFor): support functions for all except char/int
3945         multiplication, and char division,
3946         * (PIC16_port struct): modified entry for native mul support,
3947         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3948         no_banksel option,
3949         * (buildCallTree): call to register_usage is ifdef'ed out,
3950
3951 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3952
3953         * device/include/string.h: applied Stas Sergeev's patch to make this
3954         header file compatible with the preprocessor -Wundef option
3955         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3956         failure (fixes bug #941458)
3957
3958 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3959
3960         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3961         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3962         that the variable, not the function, should be static
3963         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3964         to be consistent with non-literal case
3965
3966 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3967
3968         * src/SDCCast.c (isConformingBody): fixed bug #949967
3969         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3970         convilong): fixed bug #952086
3971
3972 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3973
3974         * src/SDCCmem.c (allocVariables): fixed bug #955321
3975
3976 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3977
3978         * src/hc08/main.c (_hc08_genAssemblerEnd),
3979         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3980         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3981         completely eliminated the use of a temporary file
3982         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3983         when more than one file linked
3984         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3985
3986 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3989         which fixes bug #543481
3990         * support/regression/tests/bug-751703.c: fixed comments left from a
3991         cut and paste error
3992         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3993         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3994         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3995         scopes
3996         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3997         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3998         are now changed to underscores in moduleName
3999
4000 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4001
4002         * as/mcs51/lkmem.c: better fix for bug #954173
4003
4004 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4005         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4006
4007         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4008         * device/include/c8051f000.h,
4009         * device/include/c8051f120.h,
4010         * device/include/c8051f300.h,
4011         * device/include/c8051f310.h,
4012         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4013         PWM16) and detab'ed
4014
4015 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4016
4017         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4018         and mailing lists, doc'ed --no-peep-comments, removed reference
4019         to knoppix (newest version has no LyX/LaTeX), other minor changes
4020         * src/SDCCglue.c (glue): save 2 bytes stack space with
4021         option --main-return. The ljmp could probably be avoided too
4022
4023 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4024
4025         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4026
4027 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4028
4029         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4030         * src/SDCCopt.c (isLocalWithoutDef),
4031         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4032         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4033         (credit to Maarten Brock for patch #949363, on which this is based)
4034         * support/regression/tests/bug-751703.c: some test cases of extern used
4035         within inner scopes.
4036
4037 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4038
4039         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4040         SPEC_STRUCT
4041         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4042         struct definitions
4043         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4044         dwWriteLabel): fix to create valid debugger symbols even when
4045         the module name has non-alphanumeric symbols in it
4046         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4047         when a variable's allocation has been optimized away
4048
4049
4050 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4051
4052         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4053         * src/hc08/main.c,
4054         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4055         * src/mcs51/main.c,
4056         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4057         * src/ds390/main.c,
4058         * src/z80/gen.c (z80_emitDebuggerSymbol),
4059         * src/z80/main.c,
4060         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4061         * src/pic/main.c,
4062         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4063         * src/pic16/main.c,
4064         * src/avr/gen.c (avr_emitDebuggerSymbol),
4065         * src/avr/main.c,
4066         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4067         * src/xa51/main.c,
4068         * src/SDCCdebug.c (emitDebuggerSymbol),
4069         * src/SDCCdebug.h,
4070         * src/port.h: added a debugger struct to the port struct. Added a
4071         callback for defining debugger symbols
4072
4073         * src/SDCCast.c (createLabel),
4074         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4075         with isitmp = 1
4076         * src/SDCCicode.h,
4077         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4078         iCode back to the ast for the function
4079
4080         * src/hc08/ralloc.c (hc08_assignRegisters),
4081         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4082         unneeded fields from the regs struct.
4083         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4084         pushReg() & pullReg() functions instead of emitcode()
4085
4086         * src/hc08/gen.c (genLabel, genhc08Code),
4087         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4088
4089         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4090         debugger hooks
4091
4092         * src/hc08/gen.c (genEndFunction, genhc08Code),
4093         * src/hc08/gen.h,
4094         * src/mcs51/gen.c (genEndFunction, gen51Code),
4095         * src/mcs51/gen.h,
4096         * src/ds390/gen.c (genEndFunction, gen390Code),
4097         * src/ds390/gen.h,
4098         * src/z80/gen.c (genEndFunction, genZ80Code),
4099         * src/z80/gen.h,
4100         * src/z80/z80.h,
4101         * src/pic/gen.c (genEndFunction, genpic14Code),
4102         * src/pic/gen.h,
4103         * src/pic16/gen.c (genEndFunction, genpic16Code),
4104         * src/pic16/gen.h,
4105         * src/avr/gen.c (genEndFunction, genAVRCode),
4106         * src/avr/gen.h,
4107         * src/xa51/gen.c (genEndFunction, genXA51Code),
4108         * src/xa51/gen.h,
4109         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4110         specific code to cdbFile.c and out of the backend code generators
4111
4112         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4113         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4114         starting address is now 0
4115
4116         * as/hc08/asm.h,
4117         * as/hc08/m08pst.c,
4118         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4119         assembler directive for DWARF support
4120         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4121
4122         * src/src.dsp,
4123         * src/Makefile.in,
4124         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4125
4126 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4127
4128         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4129         and inappropriate peephole optimization in jump tables
4130
4131 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4132
4133         * as/hc08/m08pst.c,
4134         * src/SDCCglue.c: sdccopt works for the hc08 port now
4135
4136 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4137
4138         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4139
4140 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4141
4142         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4143
4144 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4145
4146         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4147         rules
4148         * src/SDCCmain.c,
4149         * src/SDCCglobl.h,
4150         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4151         comments from the peephole optimizer replacement rules
4152         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4153         symbols
4154         * src/SDCCcse.c (updateSpillLocation),
4155         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4156         equivalents
4157         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4158         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4159         objects far pointers
4160
4161 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4162
4163         * src/SDCCsymt.h: a missing part of my last change
4164         * src/pic/ralloc.c (regTypeNum),
4165         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4166
4167 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4168
4169         * src/SDCCicode.h,
4170         * src/SDCCicode.c (aggrToPtrDclType),
4171         * src/SDCCptropt.h,
4172         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4173         ptrPseudoSymConvert),
4174         * src/pic/ralloc.c (regTypeNum),
4175         * src/pic16/ralloc.c (regTypeNum),
4176         * src/hc08/ralloc.c (regTypeNum),
4177         * src/ds390/ralloc.c (regTypeNum),
4178         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4179         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4180
4181 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4182
4183         * link/z80/lkmain.c (afile),
4184         * as/hc08/lkmain.c (afile),
4185         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4186         prevent a pointer problem when a filename has no directory and
4187         no extension specified.
4188
4189 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4190
4191         * link/z80/lkmain.c (afile): allow periods in directory names
4192         * link/z80/lkmain.c (afile),
4193         * as/mcs51/lkmain.c (afile),
4194         * as/hc08/lkmain.c (afile): allow linker script file to have an
4195         extension other than ".lnk"
4196         * link/z80/lklex.c (getfid),
4197         * link/z80/lkmain.c (parse),
4198         * as/mcs51/lklex.c (getfid),
4199         * as/mcs51/lkmain.c (parse),
4200         * as/hc08/lklex.c (getfid),
4201         * as/hc08/lkmain.c (parse): Support comments in the linker script
4202         file on lines by themselves and after filenames
4203
4204 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4205
4206         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4207
4208 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4209
4210         * src/z80/peeph-z80.def: removed some peephole rules that don't
4211         work with multibyte arithmetic (fixed bug #937126)
4212         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4213         to registers and not global variables
4214         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4215         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4216         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4217         checking for assignments not internally generated (fixed bug #931895)
4218         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4219         structure member (fixed bug #930072)
4220
4221 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4222
4223         * src/SDCCmain.c (linkEdit),
4224         * src/hc08/main.c (_hc08_parseOptions),
4225         * as/hc08/Makefile.in,
4226         * as/hc08/aslink.h,
4227         * as/hc08/asm.h,
4228         * as/hc08/m08pst.c,
4229         * as/hc08/lkrloc.c (relr, rele),
4230         * as/hc08/lkarea.c (lnkarea)
4231         * as/hc08/lkmain.c (afile, parse),
4232         * as/hc08/lkelf.c: support for ELF output
4233         * as/hc08/lks19.c (s19),
4234         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4235
4236 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4237
4238         * as/mcs51/lkihx.c: Fixed bug #899105.
4239
4240 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4241
4242         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4243         .dsp files from Unix to DOS.
4244
4245 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4246
4247         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4248         function pointers; we have been compliant for several months now.
4249         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4250         change that was accidently commented out
4251         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4252         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4253         bug #922319
4254
4255 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4256
4257         * src/hc08/gen.c: output of all of the internal debugging information
4258         is now controlled by the D() macro; it is disabled by default
4259
4260 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4263         harder to keep the same registers during a CAST iCode
4264         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4265         long via int can be done in a single cast, if the signedness is
4266         correct.
4267         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4268         putchar() in tinibios.c in ds390's library
4269
4270 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4271
4272         * src/SDCCast.c (decorateType): fixed bug #898889,
4273         cast result of a literal complement too
4274         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4275         fixed check for bitfields
4276
4277 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4278
4279         * src/SDCCicode.c (geniCodeLogic): made it static,
4280         (geniCodeLogicAndOr): added in order to fix bug #905492,
4281         (ast2iCode): fixed bug #905492
4282         * support/regression/tests/bug-905492.c: added
4283         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4284         (processParms): fixed bug #927659: don't copy parms, this will clear
4285         decorated flag
4286         * support/regression/tests/bug-927659.c: added
4287
4288 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4289
4290         * src/SDCCast.c (addCast): don't cast float to char
4291         * device/lib/libsdcc.lib: added _memmove
4292
4293 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4294
4295         * device/lib/large/Makefile: fixed parallel execution by
4296         replacing `make` by `$(MAKE)`
4297
4298 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4299
4300         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4301         offsets (fixes bug #923936)
4302
4303 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4304
4305         * device/lib/small/Makefile: fixed parallel execution by
4306         replacing `make` by `$(MAKE)`
4307
4308 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4309
4310         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4311
4312 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4313
4314         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4315         * src/regression/Makefile: Regression test was not running.
4316
4317 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4318
4319         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4320         complement if possible
4321         * src/SDCCval.c (valComplement),
4322         * src/SDCCicode.c (operandOperation): fixed complement of literal
4323         * support/regression/tests/onebyte.c (testComplement): added
4324
4325 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4326
4327         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4328         return an optimized tree; actually replace actParm with the new tree
4329         * src/SDCCast.h: added some parantheses to remove side effects
4330         * support/regression/tests/bug-920866.c
4331
4332 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4333         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4334         Bit operands were not being handled properly in the pic14 port.
4335         (now src/regression/add.c passes again).
4336
4337 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4338
4339         * src/SDCC.y (labeled_statement): case and default no longer require
4340         a following statement (RFE #893037)
4341
4342 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4343
4344         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4345         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4346         disabled (fixes bug #916294)
4347         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4348         "mov a,acc"; patch provided by Lenny Story
4349         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4350
4351 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4352
4353         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4354         functions
4355         * src/ds390/gen.c (genFunction, genEndFunction),
4356         * src/ds390/ralloc.c (ds390_assignRegisters),
4357         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4358         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4359         pushed if there are parameters passed on the stack. Also, a cleaner
4360         way to decide if r0/r1 should be pushed/popped. (Together they fix
4361         bug #918693)
4362
4363 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4364
4365         * doc/sdccman.lyx,
4366         * device/lib/mcs51/crtpagesfr.asm,
4367         * device/lib/mcs51/crtxinit.asm,
4368         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4369         to avoid confusion with Si Lab's SFRPAGE register.
4370
4371 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4372
4373         * src/SDCCglue.c (emitMaps): allow public sfr variables
4374         * src/SDCCglue.c (initialComments): include compiler build date
4375         with compiler version and put the timestamp of the generated
4376         assembly file on a serperate line to be less confusing.
4377         * src/port.h: added genInitStartup hook
4378         * src/avr/main.c,
4379         * src/ds390/main.c,
4380         * src/hc08/main.c,
4381         * src/pic/main.c,
4382         * src/pic16/main.c,
4383         * src/xa51/main.c,
4384         * src/z80/main.c: genInitStartup initialize as NULL (default to
4385         historical behaviour)
4386         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4387         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4388         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4389         library instead of hard coding it into the compiler.
4390         * support/regression/ports/mcs51-stack-auto/spec.mk,
4391         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4392         * device/lib/mcs51/Makefile,
4393         * device/lib/small/Makefile,
4394         * device/lib/large/Makefile,
4395         * device/lib/mcs51/crtpagesfr.asm,
4396         * device/lib/mcs51/crtstart.asm,
4397         * device/lib/mcs51/crtxclear.asm,
4398         * device/lib/mcs51/crtxinit.asm,
4399         * device/lib/mcs51/crtclear.asm,
4400         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4401         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4402         and into user configurable files.
4403         * device/lib/clean.mk: clean mcs51 directory too
4404         * support/regression/tests/longlit.c: added static to T1 declaration
4405         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4406         accesses in the initialization code
4407
4408 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4409
4410         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4411         OSCTRIMVAL as noted in bug #916008
4412
4413 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4414
4415         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4416         in loops with multiple exits (reported as incorrect registers
4417         used by Martin Helmling in Sdcc-user list)
4418
4419 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4420
4421         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4422         made ds390 register extensions look less like error messages
4423
4424 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4425
4426         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4427         reported by Adam Wozniak in Sdcc-user list
4428
4429 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4430
4431         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4432         arithmetic optimizations, added debug output
4433
4434 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4435
4436         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4437         * sdcc.spec: updated and split sdcc into 3 rpms
4438         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4439         needed for literals of LEFT_OP and '+'
4440         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4441         introduced RESULT_TYPE_NOPROM
4442         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4443         left shift
4444         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4445         limited promotion to int only for '*'
4446         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4447
4448 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4449
4450         * src/pic16/gen.c (genSkip),
4451         (genc16bit2lit), (gencjneshort): commented out
4452         (is_LitOp): new helper function, checks operand type
4453         (genCmpEq): rewritten
4454
4455 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4456
4457         * support/regression/tests/bug-908454.c: added
4458
4459 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4460
4461         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4462         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4463         (geniCodeCast): cosmetic, don't preserve bit storage class
4464         (geniCodeLeftShift): added promotion
4465         (geniCodeLogic): fixed regression
4466         * src/SDCCsymt.c (computeTypeOr): accept bits too
4467         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4468
4469 2004-03-07  Borut Razem <borut.razem AT siol.net>
4470
4471         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4472
4473 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4474
4475         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4476         version of pic16_genPackRegisters which does not check if ic is a
4477         CAST operator,
4478         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4479         function cause string1.c regression test fails
4480
4481 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4482
4483         * sim/ucsim/configure.in,
4484         * sim/ucsim/configure,
4485         * sim/ucsim/doc/Makefile.in: use docdir
4486         * src/SDCC.y: fixed sbit atrributes
4487         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4488         * src/SDCCast.c (decorateType): |^& need special promotion handling
4489         * src/SDCCast.h,
4490         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4491         * src/SDCCsymt.h (computeType),
4492         * src/SDCCicode.c: computeType() needs op
4493         * src/SDCCsymt.c (checkTypeSanity),
4494         * doc/sddman.lyx: "plain" bitfields are unsigned
4495         * src/SDCCsymt.c (computeTypeOr): added
4496         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4497         |^& ops
4498         * src/SDCCval.c (val*): computeType() needs op
4499         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4500         * support/regression/tests/onebyte.c: added tests for |^&
4501
4502 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4503
4504         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4505         for writing icode into asm output.
4506
4507 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4508
4509         * src/pic16/device.c: added some debug lines enabled
4510         with macro DEBUG_CHECK,
4511         * src/pic16/genarith.c: more debug in genPlus,
4512         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4513         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4514         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4515         * (aopForSym): onStack symbols are re-placed in data memspace,
4516         and onStack flag is cleared,
4517         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4518         copy temporary pcodeop,
4519         * (genPcall): added warning for not updating PCLATU,
4520         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4521         always true for pic16 port,
4522         * (genMultOneWord): NEW, supports integer multiplication,
4523         * (genMult): modified to call genMultOneWord,
4524         * (ifxForOp): added warning when return NULL,
4525         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4526         flag is set before call to operandFromSymbol for implicit
4527         added structures,
4528         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4529         options.intlong_rent are set by default,
4530         * (_hasNativeMulFor): modified to allow port generation of integer
4531         multiplication,
4532         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4533         set regtype to REG_SFR for all registers, restricting seting the
4534         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4535
4536 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4537
4538         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4539         more than 500 times in the regression tests
4540
4541 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4542
4543         * support/Util/SDCCerr.h,
4544         * support/Util/SDCCerr.c,
4545         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4546         enumerator_list),
4547         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4548         for symbol conflicts.
4549         * support/valdiags/tests/enum.c,
4550         * support/valdiags/tests/tentdecl.c,
4551         * support/valdiags/tests/struct.c: expect possible error messages
4552         referring to original symbol definitions.
4553         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4554         * src/SDCCsymt.h,
4555         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4556
4557 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4558
4559         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4560
4561 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4562
4563         * src/pic16/ralloc.c (newReg): fixed bug #908929
4564
4565 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4566
4567         * src/ds390/gen.c: added missing #include "main.h"
4568
4569 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4570
4571         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4572         checking if symbol is already in set,
4573         * src/pic16/device.h: prototype for checkAddSym,
4574         * src/pic16/gen.c: (_G): added entry interruptvector,
4575         * (assignResultValue): removed some commented out lines,
4576         * (genFunction): check for ISR via sym->type, absolute section for
4577         interrupt code is created via a new pBlock, the goto instruction is
4578         placed now correctly at the interrupt vector position, changed all
4579         references from ivec to _G.interruptvector,
4580         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4581         is the interrupt is a high priority one, same for return from ISR,
4582         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4583         externs to calls of checkAddSym,
4584         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4585         pic16_pcode_verbose flag is set,
4586         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4587         * src/pic16/pcoderegs.c: message about how many registers are saved
4588         will only be emitted if pic16_pcode_verbose flag is set,
4589
4590 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4591
4592         * src/ds390/ralloc.h,
4593         * src/ds390/ralloc.c (ds390_regWithIdx),
4594         * src/ds390/gen.c (emitcode),
4595         * src/ds390/main.h,
4596         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4597         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4598         ds390operandCompare, getRegsRead, getRegsWritten,
4599         initializeAsmLineNode): customized instruction size calculation for
4600         ds390, started basis for some register optimizations
4601         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4602         corresponding assembly output
4603         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4604         missing push/pop of r0/r1. Optimized push/pops
4605
4606 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4607
4608         * src/mcs51/main.c (instructionSize): fixed ACALL size
4609         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4610
4611 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4612
4613         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4614         the sorting of rlist with NULL elements
4615         * (print_idataType, print_idata): NEW to create idata sections
4616         * src/pic16/device.h: idataSymSet new variable
4617         * src/pic16/gen.c (genFunction): fixed some bugs in string
4618         comparing, improved the absolute section creation for ISRs,
4619         added FSR0L/FSR0H in registers that are saved in an ISR,
4620         * (genInline): fixed the processing of inline snippets,
4621         now they undergo no process by the peephole optimizer
4622         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4623         are placed in idataSymSet,
4624         * (pic16emitStaticSeg): extern symbols are added in externs,
4625         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4626         switching when aboslute variables are placed in access bank memory
4627         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4628         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4629         commented out with #if,
4630         * (pic16_packRegisters): reintroduce the check for CAST because some
4631         symbols are not correctly handled,
4632         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4633         pCodeInstruction instead of pCode,
4634         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4635         pCodeAsmDir definition,
4636         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4637         directive, then the argument directive is emitted without the leading
4638         tab, hack for inline labels which must be in the first column,
4639         * (compareLabel,pic16_findNextInstruction),
4640         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4641         * (insertBankSwitch): modified for the new pCodeAsmDir,
4642
4643 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4644         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4645
4646         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4647         instance,
4648         * (pushSide): commented out with #if,
4649         * (assignResultValue): fixed some typos in saving
4650         registers,
4651         * (genPcall): FIXED and sync'ed with genCall,
4652         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4653         * (genNearPointerGet): fixed to handle some more cases,
4654         implementation scheme via table reads,
4655         * (genConstPointerGet): modified to access code memory correct,
4656         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4657         and improved to handle some cases
4658         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4659         instead of "RETLW" for init data
4660         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4661         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4662         variables are placed in access bank memory (<0x80 and >=0xf80),
4663         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4664         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4665         TBLWT_POSTDEC,TBLWT_PREINC
4666         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4667         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4668         directives
4669         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4670         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4671         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4672         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4673
4674 2004-02-29  Borut Razem <borut.razem AT siol.net>
4675
4676         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4677         support/Util/findme.h, support/Util/system.h: enhance binary relative
4678         search for lib and include by using findProgramPath()
4679
4680 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4681
4682         * src/SDCCpeeph.h,
4683         * src/SDCCpeeph.c (pcDistance),
4684         * src/port.h,
4685         * src/mcs51/ralloc.h,
4686         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4687         * src/mcs51/main.h,
4688         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4689         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4690         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4691         size calculation port specific, started basis for some register
4692         optimizations
4693         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4694         missing push/pop of r0/r1. Optimized push/pops
4695         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4696         * device/lib/_modsint.c (_modsint),
4697         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4698         and stack version so regression tests pass
4699
4700 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4701
4702         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4703         * src/SDCCast.c (decorateType): catch another small optimization
4704         with '?' operator
4705         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4706         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4707         modified to finally use computeType() all over SDCC,
4708         see Feature Request #877103
4709         * src/SDCCval.h: cosmetic
4710         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4711         valCompare(); regression tested in muldiv.c
4712         * support/regression/tests/muldiv.c (testMod): mod sign follows
4713         dividend only
4714
4715 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4716
4717         * src/SDCCast.c (decorateType): fixed bug #902362
4718         * doc/INSTALL.txt: fixed install instructions for win32
4719
4720 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4721
4722         * device/include/Makefile.in (install): fixed by replacing spaces
4723         by tabs
4724         * doc/README.txt,
4725         * doc/INSTALL.txt: updated for release
4726         * doc/sdccman.lyx: added warning for --xstack being buggy
4727
4728 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4729
4730         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4731         to eliminate build warnings.
4732         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4733
4734 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4735            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4736
4737         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4738         removed -penable-stack, added comment for stack pragma, added
4739         warning for not initializing the stack/frame registers, removed
4740         comment at interrupts section
4741
4742         Stack is made permanent, there is no ability to disable stack usage.
4743         * src/pic16/device.h,
4744         * src/pic16/device.c: removed all references to USE_STACK macro,
4745         * src/pic16/device.c (pic16_dump_section): when no elements in
4746         rlist, free rlist before return,
4747         * (pic16_dump_int_registers): NEW, internal registers are a new set
4748         of general purpose registers reused by each function,
4749         * (checkAddReg): returns 1 if registers is added to set,
4750         * (pic16_groupRegistersInSection): when a registers is of type
4751         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4752         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4753         SRCASECMP macro is moved here from device.c
4754         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4755         PO_PCLATU, PO_PRODL, PO_PRODH,
4756         * (pic16_pCodeOpType, genMinus,
4757         changed compares to "a" register, with AOP_ACC,
4758         * (pic16_genPlus): fixed some bugs and indented properly,
4759         * (pic16_addSign): changed size to size+offset in the MOVWF
4760         instruction,
4761         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4762         multiply 8-bit operand by literal, result is 8-bit,
4763         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4764         multiply 2 8-bit operand, result is 8-bit,
4765         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4766         genUMult8X*_16,
4767         * src/pic16/gen.c: changed accUse to contain WREG only,
4768         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4769         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4770         true, do not use immediate addressing any more unless sym is a
4771         pointer in codespace,
4772         * (aopForRemat): do not use immediate addressing when symbol not in
4773         codespace and when symbol's address is requested,
4774         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4775         accUse size (= 1),
4776         * (aopGet): added case for AOP_ACC and don't return "accumulator
4777         bug" but WREG instead,
4778         * (popGetTempReg): pushes contents of temporary register in stack,
4779         * (popReleaseTempReg): pops contents of temporary register from
4780         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4781         * (pic16_popGet): separated case AOP_ACC to return register WREG
4782         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4783         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4784         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4785         the use of immediate pointers to certain cases only.
4786
4787         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4788         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4789         * (assignResultValue, genCall, genRet): modified to use the new
4790         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4791         genPcall is still broken,
4792         * (genFunction): added code to create 'A' type pBlocks when
4793         interrupt functions are generated, code not extensively tested yet,
4794         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4795         * (genEndFunction): modified so ISRs pop stored registers from stack,
4796         * (genMultOneByte): cleanup,
4797         * (AccRsh): added flag andmask, to and result with appropriate mask,
4798         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4799         * (genDataPointerGet): fixed and reenabled its use,
4800         * (genNearDataPointerGet): bugs fixed,
4801         * (genDataPointerSet): bugs fixed,
4802         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4803         pic16_DumpSymbol, pic16_DumpOp,
4804         * src/pic16/genutils.h: function prototypes for the above functions,
4805         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4806         pointers,
4807         * (pic16emitRegularMap): many many many improvements, but needs a
4808         major cleanup,
4809         * src/pic16/main.c: enable_stack in pic16_options is removed,
4810         * (_pic16_parseOptions): removed command line options -penable-stack,
4811         * (_process_pragma): emit stack symbol only when stack pragma is
4812         processed,
4813         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4814         redirected to FSR0L/FSR0H pair,
4815         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4816         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4817         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4818         for immediates,
4819         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4820         * (dumpPicOptype): NEW,
4821         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4822         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4823         with movff instruction,
4824         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4825         added pic16_int_regs, some packRegsFor* functions are commented out,
4826         because produce errors,
4827         * src/pic16/NOTES: minor modifications
4828
4829 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4830
4831         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4832         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4833         --pack-iram.
4834         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4835         * as/mcs51/lkaomf51.c: fixed bug #895763
4836
4837 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4838
4839         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4840
4841 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4842
4843         * doc/sdccman.lyx: added details about the HC08 storage classes and
4844         interrupts, fixed the register usage info for z80 & gbz80
4845
4846 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4847
4848         * doc/sdccman.lyx: added more pic16 port documentation
4849         * device/include/pic16/: added header pic18fregs.h
4850
4851 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4852
4853         * doc/sdccman.lyx: added Vangelis' contribution
4854
4855 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4856
4857         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4858         extend to the next CALL or PCALL, not just to the next CALL.
4859
4860 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4861
4862         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4863
4864 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4865
4866         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4867         bug #895752 and a better fix for bug #716790
4868
4869 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4870
4871         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4872
4873 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4874
4875         * doc/sdccman.lyx: minor changes, minor changed
4876
4877 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4878
4879         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4880         which can't handle SDCC_NEWONEBYTEOPS,
4881         (geniCodeMultiply): removed conversion from mult to shift for pic14
4882         and pic16
4883
4884 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4885
4886         * src/hc08/gen.h,
4887         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4888         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4889         thus fixing bug #895406
4890
4891 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4892
4893         * device/lib/_modsint.c,
4894         * device/lib/_modslong.c: sign follows divisor only
4895         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4896         signs or signedness can be ignored
4897         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4898         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4899         added optimization for IFX,
4900         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4901         arguments;
4902         reenabled optimization for IFX, which was removed on 2004-01-11
4903         * src/SDCCast.h: added return type IFX
4904         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4905         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4906         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4907         SDCC_OLDONEBYTEOPS selects the old behaviour
4908         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4909         changed again and commented promotion rule
4910         * src/SDCCval.c (valDiv): promotion no longer necessary
4911         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4912         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4913         rewritten
4914         * support/regression/tests/onebyte.c: added
4915
4916 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4917
4918         * gen.c (genInline): reverted to old code for assemnling inline
4919         code because of bug reported James Chadd
4920
4921 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4922
4923         * ralloc.h: missing declarations from previous patch,
4924         seems that patch for ralloc.h was never applied, fixed
4925
4926 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4927            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4928
4929         * pcode.c,
4930         * pcode.h,
4931         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4932         indirect addressing. Marked FSR0 as deprecated
4933         * gen.c (pointerCode): commented out, not needed now
4934         (pic16_popGet2p): new MOVFF helper function
4935         (genGenPointerGet),
4936         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4937         (shiftRLong): removed duplicate debugging info
4938
4939 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4940
4941         * src/ds390/gen.c (genNearPointerGet),
4942         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4943         optimization with bits, but not bitfields.
4944         * src/ds390/ralloc.c (packRegisters),
4945         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4946
4947 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4948
4949         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4950
4951 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4952
4953         * src/SDCCsymt.h,
4954         * src/SDCCicode.c (operandFromSymbol),
4955         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4956         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4957         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4958         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4959         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4960         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4961         bug #892038
4962         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4963         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4964         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4965         * src/SDCCsymt.c (newSymbol),
4966         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4967         enumerator_list),
4968         * src/SDCCval.h,
4969         * src/SDCCval.c (newiList): fixed bug #885705
4970
4971 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4972
4973         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4974         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4975
4976 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4977
4978         * device/include/c8051f120.h,
4979         * device/include/c8051f300.h,
4980         * device/include/c8051f310.h: added/updated header files for Silicon
4981         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4982         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4983         in new section Submitting patches
4984
4985 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4986
4987         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4988         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4989         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4990         genGenPointerSet),
4991         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4992         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4993         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4994         genGenPointerSet),
4995         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4996         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4997         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4998         genGenPointerSet),
4999         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5000         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5001         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5002         genGenPointerSet): fixed bug #892400
5003         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5004         to eliminate build warnings.
5005         * src/SDCCast.c (processParms),
5006         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5007         fixed bug 751859
5008         * support/valdiag/valdiag.py: added GCC to the list of defines active
5009         when compiling with gcc
5010
5011 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5012
5013         * support/Util/SDCCerr.h,
5014         * support/Util/SDCCerr.c,
5015         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5016         with an incomplete type (fixed bug #883734)
5017         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5018
5019 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5020
5021         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5022
5023 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5024
5025         * src/SDCCast.c (decorateType),
5026         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5027         function pointer implementation
5028         * support/regression/tests/funptrs.c: added tests to verify both forms
5029         of function pointers work correctly. Added tests to verify parameters
5030         are passed in the correct order.
5031
5032 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5033
5034         * device.c (regCompare): registers are sorted by ascending
5035         address and increasing size,
5036         * main.c (_pic16_finaliseOptions): removed the declaration
5037         of compiler macro MCU. Now a macro of the format pic18fxxxx
5038         will be defined from the command line
5039
5040 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5041             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5042
5043         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5044         PCOP_RLCF was overwritten!
5045         * gen.c (genSkip): commented out calls to pic16_emitcode,
5046         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5047         * (genlshTwo),
5048         * (genRRC): added debugging info,
5049         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5050         overwritten while shifting,
5051         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5052         overwritten while shifting,
5053         * (AccLsh),
5054         * (AccRsh),
5055         * (shiftLLeftOrResult),
5056         * (shiftRLeftOrResult),
5057         * (shiftRLong),
5058         * (shiftLLong): Implemented with pic16_emitpcode
5059         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5060         * (genLeftShift): Fixed bug, operand for shift by variable always
5061         was "and"ed with 0x0f,
5062         * (genLeftShiftLiteral),
5063         * (genrshTwo),
5064         * (genRightShiftLiteral): added debugging info,
5065         * (genrshFour): added comment,
5066         * (genRightShift): determined signedness from operand "left"
5067         instead of "result"
5068
5069 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5070
5071         * src/SDCCicode.c (geniCodeParms),
5072         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5073         function pointers, fixed function pointer bugs #861242 and #861896
5074
5075 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5076
5077         * device/include/c8051f000.h,
5078         * device/include/c8051f120.h,
5079         * device/include/c8051f300.h: added header files for Silicon
5080         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5081
5082 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5083
5084         * src/SDCCast.c (processParams): added new type flow and restructured
5085         (gatherAutoInit): added new type flow
5086         (addCast): cosmetic changes
5087         (getLeftResultType): added new type flow for array indices, patch
5088         provided by Stas, see FR #877103
5089         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5090         array index patch by Stas
5091         * src/SDCCast.h: added prototype getResultTypeFromType()
5092         * src/SDCCval.h,
5093         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5094         * src/pic/glue.c (pic14emitStaticSeg),
5095         * src/pic16/glue.c (pic16emitStaticSeg),
5096         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5097         for initialization of symbols
5098         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5099         * support/Util/SDCCerr.h:
5100         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5101         * .version: bumped version number to 2.3.8
5102         * device/include/Makefile.in (install),
5103         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5104         avoid warnings
5105
5106 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5107
5108         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5109         Slade Rich fixed an optimization bug
5110         * src/pic/pcodepeep.c,
5111         * src/pic/pcoderegs.c
5112         * doc/Makefile (install): added test for directory
5113
5114 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5115
5116         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5117         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5118         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5119         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5120         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5121         * as/mcs51/asexpr.c (term),
5122         * as/hc08/asexpr.c (term): fixed bug #887146
5123
5124 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5125
5126         * src/z80/gen.c (genMult): handle single byte result product
5127         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5128         DUMMY_READ_VOLATILE (fixed bug #886367)
5129
5130 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5131
5132         * support/regression/tests/libmullong.c: fixed logic, on little endian
5133         hosts we ended without a mullong_wrapper()
5134
5135 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5138         virus/worm forged address usage.
5139
5140 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5141
5142         Fixed promotion, it should be done on AST level:
5143         * src/SDCCast.c (addCast): added promotion to int
5144         (decorateType): updated call to upCast()
5145         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5146         usualUnaryConversions()
5147
5148 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5149
5150         * support/regression/tests/literalop.c (mulWrapper): Added a
5151         wrapper to remove integer overflow warnings.
5152
5153         * support/regression/tests/float_trans.c: Made work on host.
5154
5155         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5156         location of sz80.
5157
5158         * support/regression/generate-cases.py (main): Changed from inline
5159         to a main method.
5160
5161         * doc/Makefile (install): Changed to depth first to get rid of
5162         missing directory install warning.
5163
5164         * as/Makefile (install-doc): Made work on Mac.
5165
5166 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5167
5168         * src/SDCCast.c: added an additional type flow in decorateType() of
5169         opposite direction, see feature request #860006; it's enabled at runtime
5170         by setting the environment variable SDCC_NEWTYPEFLOW
5171         * src/SDCCast.h: changed prototype of decorateType()
5172         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5173         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5174         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5175         see feature request #877103
5176         * src/SDCCval.c: updated call of decorateType()
5177         (valBitwise): fixed bug #882876
5178         (valMinus): added promotion
5179         (valLogicAndOr): result is unsigned
5180         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5181         * src/SDCCsymt.c (computeType),
5182         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5183         must not cause an unsigned operation
5184         * src/pic/glue (pic14emitRegularMap),
5185         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5186
5187 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5188
5189         * src/pic/pcode.c (PCodeID): commented out left over debug code
5190
5191 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5192
5193         * support/valdiag/tests/overflow.c: added shift tests
5194         * src/pic/device.c,
5195         * src/pic/gen.c,
5196         * src/pic/gen.h,
5197         * src/pic/glue.c,
5198         * src/pic/main.c,
5199         * src/pic/pcode.c,
5200         * src/pic/pcode.h,
5201         * src/pic/pcodepeep.c,
5202         * src/pic/pcoderegs.c,
5203         * src/pic/ralloc.c,
5204         * src/pic/ralloc.h: applied patch from Slade Rich;
5205         added support for multiple code pages and multiple RAM banks on the
5206         PIC 14 port. The ASM files now no longer simply assume all the
5207         code / RAM are in the same page / bank. This means the linker can
5208         safely allocate code/RAM of separate ASM files to different pages/banks.
5209         * doc/sdccman.lyx: added Slade's tips
5210         * src/mcs51/peeph.def: fixed bug #880768
5211
5212 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5213
5214         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5215         * src/SDCCast.c (decorateType): fixed bug #880197
5216
5217 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5218
5219         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5220         getopt.h.
5221
5222         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5223         strtof is not part of C89 and isn't included with Mac OS X.
5224
5225 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5226
5227         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5228         shiftL2Left2Result): fixed bug #879326
5229         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5230         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5231         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5232         address fetch for clr instruction
5233         * device/lib/hc08/_mulint.c: created optimized assembly version
5234         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5235
5236 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5237
5238         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5239         proposed in FR #877103
5240
5241 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5242
5243         * src/SDCCval.c (cheapestVal): added missing checks
5244         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5245         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5246
5247 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5248
5249         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5250         equal operands
5251
5252 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5253
5254         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5255         loaded with the linker search paths (-L arguments) and the libraries
5256         to be linked with the current source (-l arguments). Changes
5257         currently will affect only the pic16 port.
5258         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5259         include path the port specific paths and port specific libraries,
5260         * gplink command now contains the $3 argument,
5261         * src/pic16/device.h,
5262         * src/pic16/device.c,: structure PIC_device is made public and
5263         renamed to PIC16_device, the same for variable Pics which is renamed
5264         to Pics16. Updated all references to them.
5265         * src/pic16/glue.c (pic16glue): corrected bug with code
5266         initialization which bypassed the variable initializations block.
5267
5268         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5269         COMPILE_FLAGS and added the --nostdinc option
5270
5271 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5272
5273         * device/include/mc68hc908jb8.h: Register defs for another member
5274         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5275
5276 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5277
5278         Documenting changes from previous commits.
5279         * configure.in (version 1.56),
5280         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5281         when generating output files to configure the pic16 library,
5282         but now I've commented it out, since gputils aren't installed in the
5283         SF compile farm, so library won't compile
5284
5285         * device/lib/Makefile.in (version 1.56): initially I've added in
5286         target 'all' the prerequestive 'model-pic16' so it compiled the
5287         pic16 library, but now I've commented it out for the same reasons
5288         above,
5289         * added targets 'model-pic16' and 'objects-pic16' to compile the
5290         library
5291         * added target 'port-specific-objects-pic16' to handle the
5292         generated libraries and copy them into the build/ directory
5293         * added target 'clean-intermediate-pic16' to clean intermediate
5294         files into pic16 directory
5295         * in target 'installdirs' added line to create directory pic16 in
5296         the installation path
5297
5298         * device/include/Makefile.in (version 1.11): in target 'install'
5299         added lines to copy all header files to installation path,
5300         * in target 'installdirs' added line create directory for pic16
5301         headers in the installation path
5302
5303 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5304
5305         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5306          a function call
5307
5308 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5309
5310         * configure,
5311         * device/lib/configure.in,
5312         * device/lib/configure: fixed for autoconf 2.57
5313
5314 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5315
5316         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5317         option so that it actually works. Made it specific to the z80, since
5318         the gbz80 doesn't have these kinds of I/O ports.
5319
5320 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * device/include/z180.h,
5323         * device/lib/_memcpy.c,
5324         * device/lib/_memmove.c,
5325         * device/lib/_mulint.c,
5326         * device/lib/ser_ir.c,
5327         * device/lib/ser_ir_cts_rts.c,
5328         * device/lib/_strcmp.c,
5329         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5330         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5331         portmode; added deprecation warning for bank= and protmode= forms.
5332         Also, guard against buffer overflow.
5333         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5334
5335 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5338         changed interrupt vector table generation to only emit declared vectors.
5339         * device/include/Makefile.in: added missing backslash
5340         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5341
5342 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5343
5344         Mainly changes to support compilation of the device libraries
5345         * src/pic16/device.c: stack is allocated via symbol and not
5346         via literal number. The symbol is placed in the corresponding
5347         position of the data ram
5348         * (pic16_dump_section): relocatable and absolute uninitialized
5349         data are now emitted in sorted order to reduce section naming,
5350         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5351         weren't marked as being in the access bank,
5352
5353 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5354
5355         Added portion of GNU PIC Library under the directory
5356         device/include/pic16 and device/lib/pic16. These files
5357         contain the declarations of SFRs for the PIC18Fxx2 devices.
5358         The directory is initialized via configure from toplevel.
5359
5360 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5361
5362         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5363         the spilllocations to be compared correctly
5364
5365 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5366
5367         * src/SDCCast.c (decorateType): fixed bug introduced today
5368
5369 2004-01-12  Borut Razem <borut.razem AT siol.net>
5370
5371         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5372         doc/sdccman.lyx: upper case pragmas are deprecated
5373
5374 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5375
5376         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5377         in simpler and even better code
5378
5379 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5380
5381         * src/SDCCicode.c (operandOperation): fixed bug #874819
5382         * src/SDCCast.c (decorateType): fixed
5383         char foo (unsigned long ul) { return ul > 0; }
5384
5385 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5386
5387         * doc/sdccman.lyx: Moved and added some sections, small changes
5388         all over. Telling LaTeX to be less strict with word spacing
5389         to better keep the right margin. Changed some notes about
5390         maintainance of the ports in section 3.2.1 - is it OK like this?
5391
5392 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5393
5394         SDCC source changes:
5395         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5396         convilong): modified to inform the pic16 port that builtin functions
5397         are external
5398
5399         PIC16 PORT specific changes:
5400         * src/pic16/device.c pic16_dump_equates() added,
5401         processor registers declared internally by the port are emitted in
5402         the translation as equates,
5403         * src/pic16/gen.c: inline code is passed unprocessed to the
5404         translation,
5405         * (pic16_popGetLit2): fnuction modified to take second operand as
5406         pCodeOp pointer and not as literal,
5407         * (popRegFromIdx): prefixed with pic16_,
5408         * (pic16_popCombine2): modified to receive already allocated pCode
5409         operands,
5410         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5411         * (genFunction): initializes local stack frame and pushes on stack
5412         all the registers used by this function,
5413         * (genEndFunction): restores all registers from stack and restores
5414         stack frame,
5415         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5416         improvements,
5417         * (pic16glue): changed the program startup sequence,
5418         * added new dbName code 'A' for functions placed in absolute section
5419         * src/pic16/main.c: added function attribute _naked,
5420         * added pragma 'code' to place a fnuction at an absolute address,
5421         * added command line arguments --debug-ralloc and --pcode-verbose,
5422         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5423         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5424         * (pic16_newpCodeOpLit2): modified to take the second operand as
5425         pCodeOp pointer,
5426         * (pic16_printpBlock): modified to emit each function in a separate
5427         section,
5428         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5429         UPPER for immediate operands,
5430         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5431         instruction,
5432         * src/pic16/peeph.def: all peepholes with movff are commented out,
5433         because there is a problem in the pcode peep optimizer,
5434         * src/pic16/ralloc.c: the register allocator can now reuse local
5435         function symbols for another function. This saves register usage.
5436         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5437
5438         Added file src/pic16/NOTES with information about program writing on
5439         the current port version.
5440
5441 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5442
5443         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5444         and peephole 252 (array access)
5445
5446 2004-01-09  Borut Razem <borut.razem AT siol.net>
5447
5448         * src/SDCCmain.c : fixed #872250: -l command line defined library
5449           files are scanned before standard library files
5450
5451 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5452
5453         * src/SDCCast.c (decorateType): fixed bug #874046
5454
5455 2004-01-09  Borut Razem <borut.razem AT siol.net>
5456
5457         * support/scripts/sdcc.nsi: remove previous installation
5458
5459 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5460
5461         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5462         bytes for last interrupt vector (mcs51)
5463         * sdcc.spec: fixed typo
5464
5465 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5466
5467         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5468         gen51Code): more efficient parameter receive for --model-large
5469         ("bug" #845294)
5470
5471 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5472
5473         * src/ds390/main.c,
5474         * src/z80/main.c: added missed needLinkerScript flags (more than
5475         one port structure defined in these file)
5476         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5477         bug #795325
5478
5479 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5480
5481         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5482         * src/port.h: added flag needLinkerScript in port->linker
5483         structure to inform whether to create a .lnk file or not,
5484         * src/avr/main.c,
5485         * src/ds390/main.c,
5486         * src/hc08/main.c,
5487         * src/mcs51/main.c,
5488         * src/pic/main.c,
5489         * src/pic16/main.c,
5490         * src/xa51/main.c,
5491         * src/z80/main.c: changed appropriately to configure
5492         needLinkerScript flag
5493         * src/pic/gen.c,
5494         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5495         * src/pic/glue.c: added variable udata_section_name to
5496         override default uninitialized data segment definition for
5497         devices only with SHAREBANK memory (reported from Erik Epetrich)
5498         * (pic14emitOverlay): modified to emit a commented overlay segment
5499         directive when no overlay data exist
5500         * (picglue): modified to emit uninitialized data segment
5501         according to udata_section_name
5502         * src/pic/main.c (_pic14_parseOptions): added command line
5503         options --udata-section-name=[name] to override default
5504         udata definition name
5505         * modified _linkCmd and _asmCmd to include compiler passed
5506         arguments via -W option
5507         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5508         object file from '.rel' to '.o' in port->linker structure,
5509         changed size of fptr from 2 to 3 in port structure
5510
5511 2004-01-07  Borut Razem <borut.razem AT siol.net>
5512
5513         * support/scripts/sdcc.nsi: update PATH
5514         * support/scripts/sdcc.ico: craeted
5515
5516 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5517
5518         * device/include/Makefile.in: fix install
5519         * doc/Makefile: fix install
5520
5521 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5522
5523         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5524         in bug #860505
5525         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5526         how the function variable allocation summary is displayed; also
5527         include information about variables allocated to the overlay
5528         segment
5529
5530 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5531
5532         * as/mcs51/lkmain.c: Help about -Y option
5533         * as/mcs51/lkarea.c: Fixed gcc warnings
5534
5535 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5536
5537         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5538         fixed warning
5539         * support/valdiag/tests/overflow.c: added
5540         * src/SDCCast.c (decorateType),
5541         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5542         LEFT_OP (left shift)
5543
5544 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5545
5546         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5547         (default behaviour).
5548
5549 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5550
5551         A python script to validate compiler diagnostic messages. It can be
5552         used to verify that sdcc complains about bad c source code and
5553         gives a good location of the error.
5554         * support/valdiag/Makefile,
5555         * support/valdiag/valdiag.py,
5556         * support/valdiag/tests/*
5557
5558 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5559
5560         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5561         * src/SDCCsymt.c (newEnumType),
5562         * src/SDCCsymt.h
5563         * support/Util/SDCCerr.c,
5564         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5565         enum related bugs.
5566         * support/regression/tests/enum.c: added test for enum values that
5567         require at least 2 bytes of storage.
5568
5569 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5570
5571         * src/common.h: added ifndef/define/endif macros
5572         around the header file.
5573         Bug reported from Jesus Calvino-Fraga
5574
5575 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5576
5577         * sdcc.spec: updated
5578         * device/include/Makefile.in: don't install CVS directories
5579         * device/lib/Makefile.in: added removal of CVS directories after install
5580         * doc/Makefile: fixed install, added local_icons
5581         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5582         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5583         * src/ds390/gen.c (genRightShift): fixed bug #870788
5584         * src/SDCCast.c (decorateType): fixed bug #870781
5585
5586 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5587
5588         PIC16 port related changes:
5589         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5590         added variable stackPos,
5591
5592         * gen.c: genCall, assignResultValue: added support for
5593         pushing/retrieving function parameters to/from stack,
5594         genFunction,genEndFunction: setup stack frame for the
5595         generated function,
5596         genAddrOf: will be changed according to bug 863624
5597
5598         * added files genutils.c and genutils.h which contain gen*
5599         debugged and optimised functions extracted from gen.c
5600
5601         * glue.c: added variable 'externs' which holds extern symbols,
5602         pic16emitRegularMap: is modified to properly handle relocatable
5603          symbols under the new scheme,
5604         pic16createInterruptVect: is modified
5605         pic16printPublics: is modified to emit 'global' assembler directives,
5606         added pic16_printExterns to print extern symbols,
5607         pic16glue: initializes stack/frame pointer in the beginning of
5608         the assembly output. Temporary hack, will be corrected later,
5609         because gplink yet does not support stack and SDCC does not
5610         yet support a type of crt0.o object to create the final binary.
5611
5612         * Removed many lines that contain 8051 legacy code.
5613         * The code is finally placed under a 'code' directive.
5614         * Added port specific options.
5615
5616         * _process_pragma: simplified since now we do not need *special*
5617         include file to define SFR registers. But a separate header
5618         will be needed. This will be developed later.
5619         * _pic16_parseOptions: added, parses port specific options:
5620         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5621         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5622         --preplace-udata-with=
5623
5624         * _pic16_setDefaultOptions: modified to initialize section names,
5625         but hack is temporarly out of order since it needs improvement.
5626         * _pic16_genAssemblerPreamble: configuration words are emitted by
5627         their address instead of their name. This part is incomplete and
5628         supports only the 18Fxx2 devices. Other devices will emit an error
5629         during assembly since they do not contain the same set of config
5630         registers
5631         * _pic16_genIVT: is modified,
5632
5633         * pcode.c: added definitions for some hardware registers that are needed
5634         for stack support
5635         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5636         All PCI entries are updated. Now LFSR is supported.
5637         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5638         * added pic16_newpCodeOpLit2 to support instructions with
5639         two literal arguments
5640         * pic16_pCode2str: corrected code that emits assembler instructions
5641         with two literal operands and those that have an access bit modifier
5642         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5643         this fixes a bug which caused some labels to be lost, when an
5644         assembler directive was added, i.e. banksel,
5645         * pic16_FixRegisterBanking: improved logic that causes the insertion
5646         of bank switching,
5647         * InlineFunction: functions that are called once, are not any more
5648         inlined. This can be a port option in the future,
5649
5650         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5651
5652         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5653         hold the corresponding uninitialized symbols,
5654         * pic16_allocProcessorRegister: registers have explicit marked the
5655         accessBank field,
5656         * pic16_allocInternalRegister: registers are explicit marked as
5657         not used,
5658         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5659         processing list, so bit registers were lost,
5660         *
5661
5662         * ralloc.h: added field 'accessBank' and original symbol operand
5663         in register definition,
5664         * removed the field isMapped from register definition,
5665
5666         ** Several functions have been removed from various sources:
5667         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5668         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5669         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5670         pic16_assignRelocatableRegisters
5671
5672         ** others have been introduced:
5673         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5674         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5675
5676 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5677
5678         * support/scripts/inc2h.pl: changed definition of BIT_AT
5679         to emit 'sbit at' instead of 'bit at'. This was a request.
5680
5681         PIC16 port related preliminary changes:
5682         * gen.c: prefixed function popRegFromString with
5683         pic16_ and all references to it corrected
5684         * pcode.c: all pic16_pc_* hardware registers prefixed
5685         with underscore (_),
5686         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5687         * ralloc.c: newReg(): when register is REG_SFR then
5688         set address to rIdx,
5689         pic16_allocProcessorRegister(): marks register wasUsed=0
5690         pic16_writeUsedRegs(): added a call to assign processor
5691         registers via pic16_assignFixedRegisters
5692
5693 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5694
5695         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5696         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5697         variables in unused register banks.  Also the SSEG is placed
5698         wherever there is enough space for it, and IDATA can be anywhere
5699         in internal RAM.  For now compile using -Wl-Y[stack_size].
5700         The mem file is different for this option as well, since it
5701         makes no sense of talking about DSEG lenght.
5702
5703 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5704
5705         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5706         in certain cases, e.g. when ROM assignment, patch provided
5707         from Albert den Haan.
5708
5709 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5710
5711         Many signedness and type propagation fixes:
5712         * src/SDCCicode.c: made geniCodeCast() static
5713         replaced SPEC_ by IS_ (cosmetic)
5714         (operandOperation): fixed div and mod operation
5715         (usualBinaryConversions): added support for promotion of char
5716         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5717         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5718         (geniCodeAdd): an array index will stay unsigned, even if promoted
5719         from char to int
5720         (geniCodeArray): ditto
5721         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5722         * src/SDCCsymt.c (computeType): added more support for char;
5723         promotion of char is selectable by promoteCharToInt, fixed signedness
5724         for all cases
5725         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5726         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5727         * src/SDCCval (val*): replaced signedness calculation by
5728         computeType()
5729         rearranged if-branches (cosmetic)
5730         (valShift): added warning W_SHIFT_CHANGED
5731         (valCompare): fixed problem with different types
5732         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5733         * support/regression/tests/literalop.c: added many cases
5734         * support/regression/tests/ast_constant_folding.c: changed finally to
5735         'unsigned int'
5736         * .version: new year, new version: 2.3.7
5737         * src/SDCCmain.c (main): applied patch #866468
5738         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5739         provided by Scott Bronson
5740         * doc/sdccman.lyx: updated documentation for sdcdb
5741         updated and added chapter tips
5742
5743 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5744
5745         * src/SDCCsymt.h: missing from yesterday's commits
5746
5747 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5748
5749         * src/SDCC.y (struct_or_union_specifier),
5750         * support/Util/SDCCerr.c,
5751         * support/Util/SDCCerr.h: verify that struct & union tags are used
5752         as declared.
5753
5754 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * src/SDCCglobl.h: missing from yesterday's commits
5757
5758 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5759
5760         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5761         sft_attributes, struct_declaration, parameter_declaration,
5762         type_name, start_block, declaration_list),
5763         * src/SDCC.lex (check_type): support redefinition of typedef names
5764
5765 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5766
5767         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5768         aligned xdata arrays. Erik helped me with the if clause.
5769
5770 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5771
5772         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5773         warning
5774
5775 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCCast.h,
5778         * src/SDCCast.c (newAst_),
5779         * src/SDCCicode.h,
5780         * src/SDCCicode.c (ast2iCode, newiCode),
5781         * src/SDCCglobl.h,
5782         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5783         expr, statement, expression_statement, selection_statement,
5784         iteration_statement, expr_opt, jump_statement): foundation for tracking
5785         sequence points
5786         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5787         point code too)
5788
5789 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5790
5791         * support/Util/SDCCerr.c,
5792         * src/SDCCast.h,
5793         * src/SDCCast.c (createCase, createDefault, decorateType),
5794         * src/SDCClabel.c (labelUnreach),
5795         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5796         to error messages.
5797         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5798         (with thanks to Stas Sergeev)
5799         * device/include/time.h,
5800         * device/lib/time.c (CheckTime): suppress unreachable code warning
5801
5802 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5803
5804         * src/SDCCast.c (createIvalCharPtr),
5805         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5806         bug #753752)
5807         * support/regression/tests/nullstring.c: tests for these two bugs
5808
5809 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5810
5811         * support/Util/SDCCerr.h,
5812         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5813         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5814         about storage class and 'at' used inside struct or union
5815         * src/SDCCBBlock.c (iCodeFromeBBlock),
5816         * src/SDCCcse.c (ifxOptimize),
5817         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5818         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5819         printIval, emitStaticSeg, emitOverlay),
5820         * src/SDCClabel.c (deleteIfx),
5821         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5822         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5823         gatherAutoInit, processParms),
5824         * support/Util/SDCCerr.h,
5825         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5826         reporting for post-parse errors.
5827
5828 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5829
5830         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5831         implicit casts via union; they don't work on big endian systems
5832         (possible fix for bug #861138)
5833
5834 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5835
5836         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5837         * src/mcs51/main.c: fixed the fix for bug #737001
5838
5839 2003-12-15  Borut Razem <borut.razem AT siol.net>
5840
5841         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5842
5843 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5844
5845         * support/makebin/makebin.c: put output in binary mode
5846
5847 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5848
5849         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5850         xdata and data memory on startup. Set the environment variable
5851         SDCC_NOGENRAMCLEAR to disable this.
5852         * src/mcs51/peephole.def,
5853         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5854         (allows non-interrupt and interrupt code to safely compete for a resource
5855         without the non-interrupt code having to disable interrupts)
5856
5857 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5858
5859         * src/SDCCicode.c (geniCodeAdd),
5860         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5861         with valFromType if type might be a pointer and host is big endian).
5862         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5863         types, not just integer types.
5864         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5865         multiply defined with mismatching "at" address.
5866
5867 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5870         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5871         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5872         with embedded nulls (fixed bug #753752)
5873
5874 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5875
5876         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5877         Apparently this did not see much testing (endless loop)
5878
5879 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5880
5881         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5882
5883 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5884
5885         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5886         gracefully handle NULL memmap pointers
5887
5888 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5889
5890         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5891         instead of deleting the iCode when an operand is volatile
5892         * src/z80/gen.c (genDummyRead),
5893         * src/mcs51/gen.c (genDummyRead),
5894         * src/ds390/gen.c (genDummyRead),
5895         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5896         not just IC_RIGHT
5897         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5898         * src/SDCC.y: fixed bug #850420
5899
5900 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5901
5902         Applied z80 i/o port patch from Peter Townson and fixed some operators
5903         to better handle operands in A register.
5904         * device/include/z180.h
5905         * src/SDCC.y
5906         * src/SDCCglue.c
5907         * src/z80/gen.c
5908         * src/z80/gen.h
5909         * src/z80/main.c
5910         * src/z80/peeph-z80.def
5911         * src/z80/peeph.def
5912         * src/z80/z80.h
5913
5914 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5915
5916         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5917
5918 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5919
5920         * device/lib/hc08/_mullong.c: Removed extra #endif
5921
5922 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5923
5924         * sim/ucsim/hc08.src/inst.cc,
5925         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5926         carries from x to h
5927         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5928         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5929         * device/include/stdarg.h: fixed varargs for hc08
5930         * device/lib/Makefile.in,
5931         * device/lib/hc08/Makefile,
5932         * device/lib/hc08/_mulint.c,
5933         * device/lib/hc08/_mullong.c: fixed some endian problems
5934
5935 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5936
5937         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5938         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5939         * device/lib/_gptrget.c,
5940         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5941
5942 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5943
5944         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5945         * src/SDCCast.c (astErrors): fixed bug #846007
5946         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5947
5948 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5949
5950         * src/SDCCast.c (decorateType): disabled a transformation I added in
5951         revision 1.188 (access to fields of a structure at an absolute address);
5952         it breaks with bitfields, extern declarations, and gcse analysis.
5953         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5954         could be assigned through a pointer, so don't complain.
5955         * src/SDCCast.c (astErrors),
5956         * src/SDCCast.h,
5957         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5958
5959 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5960
5961         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5962         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5963         output of __config directives, since gpasm now supports them
5964         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5965         pre-processor macro, i.e. -DMCU=p18f452
5966         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5967         and modified to handle 'cast' icode similarly to '=' icode
5968         * src/pic16/device.h (typedef struct PIC_device): added field
5969         'extMIface' to indicate that chip has external memory interface
5970         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5971         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5972         18F8720
5973
5974 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5975
5976         * src/SDCC.y (pointer): fixed bug #846006
5977         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5978         * src/SDCCast.c (decorateType): fixed bug #846009
5979         * src/ds390/peeph.def,
5980         * src/ds390/gen.c (genAnd, genOr),
5981         * src/mcs51/peeph.def,
5982         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5983
5984 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5985
5986         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5987         * src/SDCCdflow.c
5988         * src/SDCCcse.c
5989         * src/SDCCcse.h
5990         * src/SDCCBBlock.h
5991         * src/SDCCBBlock.c
5992
5993 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5994
5995         fixed bug #845089
5996         * src/SDCCbitv.h,
5997         * src/SDCCbitv.c: added function to free a bitvector
5998         * src/SDCClrange.h,
5999         * src/SDCClrange.c: added function to recompute the liveranges
6000         * src/avr/ralloc.c,
6001         * src/ds390/ralloc.c,
6002         * src/hc08/ralloc.c,
6003         * src/mcs51/ralloc.c,
6004         * src/pic/ralloc.c,
6005         * src/pic16/ralloc.c,
6006         * src/xa51/ralloc.c,
6007         * src/z80/ralloc.c: recompute the liveranges after register packing
6008
6009 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6010
6011         * src/SDCCloop.c (newInduction): fixed bug #845630
6012
6013 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6014
6015         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6016         inadvertantly left behind from my 2003-11-12 change
6017
6018 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6019
6020         Updated headers I neglected to commit yesterday.
6021         * src/SDCClrange.h,
6022         * src/SDCCicode.h
6023
6024 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6025
6026         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6027         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6028         * src/SDCCopt.c (eBBlockFromiCode),
6029         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6030         the creation of the key hash table from the sequencing so it can be used
6031         earlier (for some GCSE bug fixes still pending)
6032
6033 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6034
6035         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6036         * support/regression/tests/addsub.c: testing genPlus shortcut
6037
6038 2003-11-15  Borut Razem <borut.razem AT siol.net>
6039
6040         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6041
6042 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6043
6044         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6045         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6046         ordering is immaterial.
6047         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6048
6049 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6052         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6053         (SIGSEV) of bug #840381
6054         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6055         unlink new file before rename if new and old filenames are the same)
6056
6057 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6058
6059         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6060         uninitialized variables) for the mcs51. Set environment variable
6061         SDCC_GENRAMCLEAR to test.
6062         xdata initialization slightly shorter
6063
6064 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * src/SDCCsymt.h,
6067         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6068         #838241 & 780691 (basicly the same bug)
6069         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6070         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6071
6072 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6073
6074         * src/SDCCmain.c (linkEdit): "fix" #834252
6075
6076 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6077
6078         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6079         * src/SDCCast.h,
6080         * src/SDCC.y: fixed bug #819403
6081
6082 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6083
6084         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6085         the reentrant attribute.
6086         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6087         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6088         simulation
6089         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6090         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6091         erroneously reduced to a literal.
6092         * src/hc08/ralloc.c (packRegisters, rematStr),
6093         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6094         some cases
6095
6096 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6097
6098         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6099         * doc/sdccman.lyx: changed from 'article' to 'book'
6100         * doc/Makefile: readded test_suite_spec and cdbfileformat
6101
6102 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6103
6104         * device/include/stdlib.h: include malloc.h to comply with ANSI
6105         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6106
6107 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6108
6109         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6110         * doc/clean.mk: also remove *.out files
6111         * doc/sdccman.lyx: some additions, larger top/bottom margins
6112
6113 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6114
6115         * src/SDCC.y: fixed bug #837365
6116         * support/regression/tests/bitopcse.c
6117         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6118         a symbol (might be valop instead)
6119         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6120         * device/lib/clean.mk: added hc08 to the cleaning list
6121
6122 2003-11-04  Borut Razem <borut.razem AT siol.net>
6123
6124         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6125           made 2003-11-04
6126         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6127           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6128           malloc is declared in standard stdlib.h
6129
6130 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * device/lib/hc08/Makefile: need to clean .rel not .o files
6133         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6134
6135 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6136
6137         * src/port.h,
6138         * src/hc08/main.c,
6139         * src/mcs51/main.c,
6140         * src/ds390/main.c,
6141         * src/z80/main.c,
6142         * src/avr/main.c,
6143         * src/pic/main.c,
6144         * src/pic16/main.c,
6145         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6146         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6147         tests (which uses the port's oclsExpense function)
6148         * src/SDCC.y,
6149         * src/SDCCast.c,
6150         * src/SDCCicode.c,
6151         * src/hc08/gen.c,
6152         * src/ds390/gen.c,
6153         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6154
6155 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6156
6157         * src/SDCCcse.c (ifxOptimize),
6158         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6159         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6160         deleting the IFX iCode.
6161         * src/hc08/ralloc.c: reduced unneeded slocs
6162         * src/hc08/gen.c: fixed bug in asmopToBoolean
6163
6164 2003-11-04  Borut Razem <borut.razem AT siol.net>
6165
6166         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6167           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6168           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6169           transferred to configure
6170
6171 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6172
6173         Use headers defined in the C[++] standards:
6174         * sim/ucsim/gui.src/serio.src/fileio.cc
6175         * sim/ucsim/gui.src/serio.src/frontend.cc
6176         * sim/ucsim/gui.src/serio.src/main.cc
6177         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6178         * support/Util/NewAlloc.c
6179         * as/hc08/lklibr.c
6180         * as/mcs51/lklibr.c
6181         * as/z80/aslist.c
6182         * as/z80/assym.c
6183
6184 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6185
6186         * Added MSVC projects for hc08 assembler and linker:
6187         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6188         /as/hc08/link_hc08.dsp
6189
6190 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6191
6192         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6193
6194 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6195
6196         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6197
6198 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6199
6200         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6201
6202 2003-10-31  Borut Razem <borut.razem AT siol.net>
6203
6204         * support/cpp2/cpplib.h,
6205           support/cpp2/cpplib.c,
6206           support/cpp2/cpplex.c,
6207           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6208           to switch _asm block preprocessing on / off. Default is
6209           #pragma preproc_asm +
6210
6211 2003-10-31  Borut Razem <borut.razem AT siol.net>
6212
6213         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6214           when outputting comment blocks (when executed with -C option) and
6215           _asm (SDCPP specific) blocks
6216
6217 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6218
6219         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6220
6221 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6222
6223         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6224
6225 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6226
6227         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6228         * src/SDCCast.c (decorateType): fixed bug #832664
6229
6230 2003-10-31  Borut Razem <borut.razem AT siol.net>
6231
6232         * support\cpp2\cpplex.c: fixed for SDCPP:
6233           comments(when executed with -C option) and _asm blocks
6234           were included even if they where in skipped #if block.
6235           Applied solution from GCC cpp 3.3.2
6236
6237 2003-10-31  Borut Razem <borut.razem AT siol.net>
6238
6239         * src/SDCC.lex: sdcc now understands both formats:
6240           '# <line_number> <file_name>' and
6241           '#line <line_number> <file_name>'
6242         * support/cpp2/cppmain.c: sdcpp now generates the standard
6243           '# <line_number> <file_name>' instead of former
6244           '#line <line_number> <file_name>'
6245
6246 2003-10-30  Borut Razem <borut.razem AT siol.net>
6247
6248         * support/cpp2/cpphash.h,
6249         * support/cpp2/cpplib.h
6250         * support/cpp2/cpplex.c,
6251         * support/cpp2/cppmain.c,
6252         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6253
6254 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         Fixed a number of problems revealed by bug #827883.
6257         * src/SDCCloop.c (loopInvariants): Spill location of the
6258         result operand should be recomputed if extracted from
6259         a loop. Also, don't extract assignments of an iTemp
6260         from a literal.
6261         * src/SDCCast.c (isConformingBody): loop reversal should
6262         not occur if the control variable is involved with a
6263         relational operator.
6264
6265 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6266
6267         * .version: bumped to 2.3.6 to reflect the big improvements
6268         made by Erik and Klaus. Thanks!
6269
6270 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6271
6272         Replaced the livrange code.
6273         * src/SDCClrange.c: added new LR code
6274         * src/SDCCloop.c,
6275         * src/SDCCBBlock.h: removed remainig parts from old LR code
6276         * src/ds390/ralloc.c,
6277         * src/ds390/gen.c: minor fixes to make it work with new code
6278
6279 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6280
6281         * as/hc08/asm.h,
6282         * as/hc08/lkrloc.c,
6283         * src/hc08/gen.c,
6284         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6285         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6286         (tweaked fix for bug #818696)
6287
6288 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6289
6290         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6291
6292 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6293
6294         * src/SDCCmain.c,
6295         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6296         * src/mcs51/gen.c (gencjneshort),
6297         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6298         more efficient (per Scott Bronson's suggestion)
6299
6300 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6301
6302         Extended the semantics of the critical keyword to include
6303         individual statements. See RFE #827755 and #799831
6304         * src/SDCC.y
6305         * src/SDCCicode.c
6306         * src/SDCCopt.c
6307         * src/SDCCast.c
6308         * support/Util/SDCCerr.c
6309         * support/Util/SDCCerr.h
6310         * src/mcs51/gen.c
6311         * src/ds390/gen.c
6312         * src/hc08/gen.c
6313
6314 2003-10-19  Borut Razem <borut.razem AT siol.net>
6315
6316         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6317
6318 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6319
6320         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6321         Fixed bug #818696
6322         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6323         and predecrement operand is displayed
6324
6325 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6326
6327         * src/SDCCval.c (valMinus): fixed bug #826041
6328
6329 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6330
6331         Some hc08 related updates that I missed earlier
6332         * sim/ucsim/stypes.h
6333         * support/regression/ports/hc08/spec.mk
6334
6335 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6336
6337         New target "hc08" for the Motorola 68hc08 family of micros
6338
6339         * configure
6340         * configure.in
6341         * Makefile
6342         * src/hc08/*
6343         * src/SDCCmain.c
6344         * src/port.h
6345         * sim/ucsim/hc08.src/*
6346         * sim/ucsim/configure.in
6347         * src/ucsim/configure
6348         * sim/ucsim/packages_in.mk
6349         * as/hc08/*
6350         * as/Makefile
6351         * device/include/mc68hc908qy.h
6352         * device/lib/hc08/*
6353         * device/lib/Makefile.in
6354         * support/regression/ports/hc08/*
6355         * support/regression/Makefile
6356
6357 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6358
6359         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6360         regression test
6361         * src/ds390/gen.c (genCast): fixed bug #821957
6362
6363 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6364
6365         * device/lib/logf.c: "fixed" overlay bug
6366         * support/regression/ports/host/spec.mk: added m library
6367         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6368         * support/regression/tests/float_trans: added (for Eric)
6369
6370 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6371
6372         * src/mcs51/gen.c (genCpl): fixed bug
6373         http://sf.net/mailarchive/message.php?msg_id=6263915
6374
6375 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6376
6377         * src/SDCCast.c (decorateType): added extended constant folding
6378         * src/SDCCsymt.c (computeType): cleanup
6379         * src/SDCCval.c (valShift): minor optimization
6380         * support/regression/tests/ast_constant_folding.c: added
6381
6382 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6383
6384         * src/SDCCmain.c: removed some unintended changes
6385
6386 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6387
6388         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6389         * src/z80/gen.c: fixed part of bug #817589
6390         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6391
6392 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6393
6394         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6395         * src/SDCCcflow.c
6396         * src/SDCCcse.c
6397         * src/SDCCdflow.c
6398         * src/SDCClabel.c
6399         * src/SDCClrange.c
6400         * src/SDCCmem.c
6401         * src/SDCCopt.c
6402         * src/SDCCpeeph.c
6403         * src/SDCCset.c
6404         * src/avr/ralloc.c
6405         * src/ds390/ralloc.c
6406         * src/izt/ralloc.c
6407         * src/mcs51/ralloc.c
6408         * src/pic/ralloc.c
6409         * src/pic16/ralloc.c
6410         * src/xa51/ralloc.c
6411         * src/z80/ralloc.c
6412         * src/z80/gen.c: removed unused label "release:"
6413
6414 2003-10-06  Borut Razem <borut.razem AT siol.net>
6415
6416         * src/SDCC.lex: removed definition of unused variables
6417           save_optimize and save_options
6418
6419 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6420
6421         * clean.mk: removed '=' in "-maxdepth=1"
6422         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6423         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6424
6425 2003-10-06  Borut Razem <borut.razem AT siol.net>
6426
6427         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6428           my_unput() replaced by unput()
6429
6430 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6431
6432         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6433         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6434         type-punned pointer will break strict-aliasing rules"
6435         Old LR behaviour is again default; Klaus' LR can be choosen by
6436         defining the environment variable LRKLAUS
6437         * src/SDCCBBlock.h
6438         * src/SDCCloop.c
6439         * src/SDCClrange.c
6440         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6441         * clean.mk: fixed removal of files in bin/CVS/
6442         * device/lib/clean.mk: fixed removal of directories small and large
6443         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6444         * src/SDCCicode.c,
6445         * src/SDCCval.c: removed superflous test for pedantic
6446
6447 2003-10-05  Borut Razem <borut.razem AT siol.net>
6448
6449         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6450           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6451           message "unmatched #pragma SAVE and #pragma RESTORE"
6452
6453 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6454
6455         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6456           assembly, critical functions, atomic, nojtbound)
6457
6458 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6459
6460         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6461         * src/SDCCBBlock.h
6462         * src/SDCCloop.c
6463         * src/SDCCloop.h
6464         * src/SDCClrange.c
6465
6466 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6467
6468         * src/z80/gen.h,
6469         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6470         * src/mcs51/gen.h
6471         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6472         * src/ds390/gen.h
6473         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6474         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6475         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6476
6477 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6478
6479         * src/z80/gen.c (genRet): fixed bug #524753
6480         * src/z80/gen.c (genCast): fixed internal error on cast from
6481         pointer to long
6482         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6483         fix for bug #477835 to the z80
6484         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6485         for tracking iCodes in the peephole optimizer for z80
6486
6487 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6488
6489         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6490         the other part of bug #814548
6491         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6492
6493 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6494
6495         * src/SDCCcse.c: fixed part of bug #814548
6496
6497 2003-09-28  Borut Razem <borut.razem AT siol.net>
6498
6499         * src/asm.c: rewrite of printILine() to use temporary file instead
6500           a pipe
6501         * src/xa51/main.c: commented out declaration of int rewinds
6502
6503 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6504
6505         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6506
6507 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6508
6509         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6510         * src/asm.c (printILine): Fixed bug #811015
6511
6512 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6513
6514         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6515         freeing.
6516
6517 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6520         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6521         to correctly handle general case of AOP_PAIRPTR
6522         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6523
6524 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6525
6526         * src/mcs51/ralloc.c (fillGaps),
6527         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6528         register positioning bug)
6529
6530 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6531
6532         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6533
6534 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6535
6536         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6537         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6538         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6539         (ralloc doesn't intentionally do this now, but perhaps later)
6540         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6541         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6542         register positioning bugs (Fixed bug #762602 and #795325)
6543         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6544         (Fixed bug #808779)
6545         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6546         lines that --i-code-in-asm generates
6547
6548 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6549
6550         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6551         trying to fclose a FILE* that was already closed.
6552
6553 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6554
6555         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6556         of const struct should be treated as if const themselves)
6557
6558 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6559
6560         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6561
6562 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6563
6564         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6565         Unix (/n) and DOS (/r/n) line terminations.
6566
6567 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6568
6569         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6570         bug #613775
6571
6572 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6573
6574         * src/mcs51/gen.c (genFunction, genEndFunction),
6575         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6576         and restore of EA so that stack offsets to parameters are
6577         correct when using both critical and reentrant/stack-auto.
6578         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6579         size (can be triggered in error if sloc is shared between
6580         different sized objects)
6581         * device/include/float.h: fixed macros to explicitly use
6582         unsigned long where needed
6583
6584 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6585
6586         Feature req. 799831: added code to allow nesting of critical functions
6587         * src/mcs51/gen.c (genFunction, genEndFunction)
6588         * src/ds390/gen.c (genFunction, genEndFunction)
6589
6590 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6591
6592         * src/SDCCsymt.c (sclsFromPtr),
6593         * src/SDCCsymt.h,
6594         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6595         support for standard C idiom of memory mapped variables; for
6596         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6597         to xdata int at 0x1234 tempvar = 1.
6598         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6599         provided by Akiya ISHIDA
6600
6601 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6602
6603         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6604         * src/SDCCval.c (constVal): added reduction from int to char
6605         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6606         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6607         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6608         to ignore the sign
6609         * support/regression/tests/shifts.c: fixed
6610
6611 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6612
6613         * src/z80/gen.c (genXor): Fixed bug #805445
6614
6615 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6616
6617         Fixed bug #621531 (const & volatile confusion in the type chain).
6618         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6619         refer to the const or volatile state of the pointer itself.
6620
6621         * src/SDCCast.c
6622         * src/SDCCglue.c
6623         * src/SDCCicode.c
6624         * src/SDCCsymt.c
6625         * src/SDCCval.c
6626         * src/SDCC.y
6627         * src/SDCCsymt.h
6628         * src/pic/gen.c
6629         * src/pic/ralloc.c
6630         * src/pic16/gen.c
6631         * src/pic16/ralloc.c
6632         * support/regression/tests/const.c
6633
6634 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6635
6636         When checking for duplicated modules, use absolute paths
6637         instead of relative paths.  Files changed:
6638
6639         * as/mcs51/lklib.c
6640         * link/z80/lklib.c
6641
6642 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6643
6644         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6645
6646 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6647
6648         * device/include/string.h: added size_t typedef, changed
6649         prototypes to use size_t, eliminated separate reentrant and
6650         non-reentrant declarations, added _memmove declaration
6651         * device/lib/_memcpy.c: changed to use size_t instead of int,
6652         changed /4 to >>2 to avoid division library call
6653         * device/lib/_memcmp.c,
6654         * device/lib/_memset.c,
6655         * device/lib/_strncat.c,
6656         * device/lib/_strncpy.c,
6657         * device/lib/_strncmp.c: changed to use size_t instead of int
6658         * device/lib/_memmove.c: new file (fixed bug #772294)
6659         * device/lib/Makefile.in: added _memmove.c
6660         * device/lib/z80/asm_strings.s: fixed bug #772290
6661         * support/regression/tests/bitfields.c: attempt to fix host assertion
6662         failure on amd64-unknown-linux2.2
6663
6664 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6665
6666         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6667         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6668         * as/z80/asmain.c (main): fixed bug #801766
6669
6670 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6671
6672         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6673         compilers
6674
6675 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6676
6677         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6678         reported in bug #800609
6679
6680 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6681
6682         * Top header beautifications in src/pic16 directory:
6683           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6684           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6685           pcoderegs.h, ralloc.c, ralloc.h
6686         * main.c: added top header and GPL license notice
6687         * pcode.c: fixed the if-conditional warning
6688
6689 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6690
6691         * device/lib/_mullong.c: replaced int by short for gcc
6692
6693 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6694
6695         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6696         and JUMPTABLE iCodes properly now (worked by accident before)
6697         * src/mcs51/gen.c (leftRightUseAcc),
6698         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6699         iCode properly now. Use getSize instead of nRegs since a & b
6700         aren't part of the nRegs tally.
6701
6702 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6703
6704         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6705         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6706           before instructions that use the _STATUS register
6707
6708 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6709
6710         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6711         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6712         fetching of the pointer
6713         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6714         copied from genNearPointerSet()
6715         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6716         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6717         If they pop r0/r1 they must be called in the opposite order than aopOp().
6718         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6719         (resp. --stack-auto), prepared for --xstack
6720
6721 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6722
6723         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6724
6725 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6726
6727         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6728         these ports have their own __sdcc_external_start()
6729
6730 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6731
6732         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6733         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6734         type for bits was changed. It resulted in bit variables becoming
6735         global, which is not permitted in PIC 14 assembly output.
6736
6737 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6738
6739         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6740
6741 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6742
6743         Z80 and MCS51 linkers complaint if a public symbol is defined
6744         in more than one library module:
6745
6746         * as/mcs51/lklib.c
6747         * link/z80/lklib.c
6748         * as/mcs51/Makefile.in
6749
6750 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6751
6752         A few small changes that speed up the peephole optimizer.
6753
6754         * src/SDCCpeeph.c
6755
6756 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6757
6758         Try to make the peephole optimizer smarter by maintaining
6759         an association between the assembly source code and the
6760         iCodes that originated them. Put this information to use
6761         with a new peephole rule condition "notVolatile" so that
6762         the rules can be aggressive yet still safe.
6763
6764         * src/SDCCpeeph.c
6765         * src/SDCCpeeph.h
6766         * src/mcs51/gen.c
6767         * src/mcs51/peeph.def
6768
6769 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6770
6771         Fixed bug #741761
6772
6773         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6774         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6775         if the left or right operand symbols have the accuse flag set.
6776
6777 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6778
6779         Changed the type of the result of the ! (NOT) operator to char;
6780         previously it returned the same type as the source. This allows
6781         us to eliminate all the genFloatNot functions (all of its target
6782         implementations were very buggy) since !float can use the same
6783         code as !long now.
6784
6785         * src/SDCCicode.c (ast2iCode): ! returns char
6786         * src/mcs51/gen.c (genNot, genNotFloat),
6787         * src/ds390/gen.c (genNot, genNotFloat),
6788         * src/z80/gen.c (genNot, genNotFloat),
6789         * src/pic/gen.c (genNot, genNotFloat),
6790         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6791
6792 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6793
6794         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6795         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6796            during interrupts. Ensure WSAVE is located at a shared bank address.
6797         2. Fixed page selection in some places
6798         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6799            the registers name strings.
6800         4. Fixed "signed / unsigned compare" compiler warnings.
6801         5. The PIC port manages its own allocation of the general purpose
6802            registers, but makes no attempt to reuse them. As a result when
6803            compiling it soon runs out of general purpose registers. Some
6804            additional code was added to the files pcode.c and device.c to walk
6805            through the function call tree and rename the registers so that they
6806            get reused.
6807
6808         * src/pic/device.c
6809         * src/pic/gen.c
6810         * src/pic/glue.c
6811         * src/pic/pcode.c
6812         * src/pic/pcode.h
6813         * src/pic/ralloc.c
6814         * src/pic/ralloc.h
6815         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6816         genPlus() & genMinus() when the result is the same as left or right
6817
6818 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6819
6820         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6821
6822 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6823
6824         Made bitfield a distinct type from bit so that bitfields
6825         convert as per ANSI C and bits retain their traditional
6826         boolean style behaviour. Implemented bitfield support in
6827         the z80 port.
6828
6829         * src/SDCCsymt.h,
6830         * src/SDCCsymt.c,
6831         * src/SDCCast.c,
6832         * src/cdbFile.c,
6833         * src/mcs51/gen.c,
6834         * src/ds390/gen.c: bit v bitfield split
6835         * src/z80/gen.c: New support for bitfields
6836         * support/regression/tests/bitfields.c: reenabled z80,
6837         added more tests
6838
6839 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6840
6841         Rules 246.x, 247.x relate to bitfields, the others speed up
6842         access to xdata mapped I/O devices.
6843
6844         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6845
6846 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6847
6848         Cleaned up genPackBits and genUnpackBits and added two helper
6849         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6850         for literal assignments in genPackBits (thanks to Frieder for
6851         reminding me).
6852
6853         * src/mcs51/gen.c
6854         * src/ds390/gen.c
6855
6856 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6857
6858         Fixed bug #748310 (pointer to function type mishandled when the
6859         function name is omitted). Also fixed a SIGSEGV when a function
6860         attribute (reentrant, etc) is used on a non-function or on a
6861         function but misplaced before the parameter list.
6862
6863         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6864         bug #748310
6865         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6866         * support/Util/SDCCerr.h,
6867         * support/Util/SDCCerr.c: Added func attr misuse error msg
6868
6869 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6870
6871         Fixed bug #787649 by anonymous
6872         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6873         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6874
6875 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6876
6877         Fixed numerous bitfield problems.
6878
6879         * src/SDCC.y: More bitfield related error checking
6880         * src/SDCCsymt.h,
6881         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6882         * support/Util/SDCCerr.h,
6883         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6884         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6885         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6886         * support/regression/tests/bitfields.c: tests added
6887
6888 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6889
6890         Made the constant following the "interrupt" keyword optional. If
6891         omitted, the function will not automatically be given an entry
6892         in the interrupt vector table (similar to #pragma NOIV, but
6893         less syntacticly kludgy). The interrupt number is also now
6894         range checked. Also fixed a bug in the high order bit example
6895         in the manual.
6896
6897         * src/SDCC.y
6898         * src/SDCCmem.c
6899         * src/SDCCglue.c
6900         * src/SDCCsymt.h
6901         * support/Util/SDCCerr.c
6902         * support/Util/SDCCerr.h
6903         * doc/sdccman.lyx
6904
6905 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6906
6907         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6908         * src/SDCCicode.c (operandOperation): rewritten some ops
6909         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6910         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6911         other type
6912         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6913         be re-activated by defining REDUCE_LITERALS)
6914         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6915         unsigned, but are signed by default
6916         * src/SDCCval.c (constVal): rearranged
6917         * src/SDCCval.c (valMod): preliminary fix
6918         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6919         * support/regression/literalop.c: added, work in progress
6920
6921 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6922
6923         Generate warnings for useless declarations like "char data;"
6924         that don't do what new users expect.
6925
6926         * src/SDCC.y
6927         * support/Util/SDCCerr.h
6928         * support/Util/SDCCerr.c
6929
6930 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6931
6932         * src/SDCCval.c (valMult): fix overflow detection of negative int
6933
6934 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6935
6936         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6937
6938         Changes to support big endian targets:
6939
6940         * src/ports.h
6941         * src/SDCCglue.c
6942         * src/avr/main.c
6943         * src/ds390/main.c
6944         * src/izt/i186.c
6945         * src/mcs51/main.c
6946         * src/pic/main.c
6947         * src/pic16/main.c
6948         * src/xa51/main.c
6949         * src/z80/main.c
6950
6951 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6952
6953         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6954         * device/lib/time.c: fixed warning "integer overflow in expression"
6955
6956 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6957
6958         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6959         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6960         constants are unsigned; added recognition of "u" flag for unsigned
6961         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6962         * src/SDCCval.c (valDiv, valMod): fixed signdness
6963         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6964         signedness of modulo, left and right shift
6965         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6966         * support/Util/SDCCerr.h: added warning W_INT_OVL
6967         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6968         * src/SDCCast.c (ast_print): improved output of constants
6969
6970 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6971
6972         Fixed some warnings when building with MSVC:
6973
6974         * as\mcs51\asdata.c
6975         * as\z80\asdata.c
6976         * as\mcs51\asm.h
6977         * as\z80\asm.h
6978         * link\z80\aslink.h
6979         * link\z80\lkdata.c
6980         * link\z80\lkeval.c
6981         * link\z80\lkgb.c
6982         * link\z80\lkihx.c
6983         * link\z80\lks19.c
6984         * link\z80\lksym.c
6985         * support\cpp2\cpplib.c
6986         * src\ds390\gen.c
6987         * src\mcs51\gen.c
6988
6989 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6990
6991         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6992
6993 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6994
6995         * support\librarian\clean.mk: Do not remove Makefile.
6996         * support\librarian\Makefile: added.
6997
6998 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6999
7000         Added librarian to MSVC build:
7001         * all.dsp
7002         * sdcc.dsw
7003         * support\librarian\librarian.dsp
7004
7005         'configure' not needed for librarian, removed:
7006         * support\librarian\configure
7007         * support\librarian\configure.in
7008         * support\librarian\config_in.h
7009         * support\librarian\Makefile.in
7010
7011         Hopefully these ones built the librarian and the rest of sdcc properly:
7012         * Makefile
7013         * Makefile.common.in
7014
7015         Messed up 'configure', so revert to previous version:
7016         * configure
7017         * configure.in
7018
7019 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7020
7021         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7022         there, while the mantissa of a double is "only" 53 bits wide.
7023
7024 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7025
7026         Adding sdcclib to the build.  MSVC project coming soon.
7027         Files added/changed:
7028
7029         * support\librarian\clean.mk
7030         * support\librarian\configure
7031         * support\librarian\configure.in
7032         * support\librarian\config_in.h
7033         * support\librarian\Makefile.bcc
7034         * support\librarian\Makefile.in
7035         * support\librarian\sdcclib.c
7036         * Makefile.bcc
7037         * Makefile
7038         * Makefile.common.in
7039         * configure
7040         * configure.in
7041
7042 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7043
7044         Linker now complaints if linked modules have conflicting options, for
7045         example, one compiled using --model-large and another one compiled with
7046         --model-small.  The following files were modified:
7047
7048         * as\mcs51\asdata.c
7049         * as\mcs51\aslink.h
7050         * as\mcs51\asm.h
7051         * as\mcs51\asmain.c
7052         * as\mcs51\asout.c
7053         * as\mcs51\i51pst.c
7054         * as\mcs51\lkdata.c
7055         * as\mcs51\lklibr.c
7056         * as\mcs51\lkmain.c
7057         * as\z80\asdata.c
7058         * as\z80\asm.h
7059         * as\z80\asmain.c
7060         * as\z80\asout.c
7061         * as\z80\z80pst.c
7062         * link\z80\aslink.h
7063         * link\z80\lkdata.c
7064         * link\z80\lklibr.c
7065         * link\z80\lkmain.c
7066         * src\SDCCglue.c
7067
7068 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7069
7070         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7071         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7072
7073 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7074
7075         * src/z80/mappings.i: fix _mul[us][int,long] entries
7076
7077 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7078
7079         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7080
7081 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7082
7083         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7084         * support/regression/tests/bitopcse.c: added
7085         fixed warning:
7086         * src/avr/gen.c:
7087         * src/pic/gen.c:
7088         * src/pic16/gen.c:
7089         * src/z80/gen.c:
7090         * src/xa51/gen.c:
7091
7092 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7093
7094         added support for new library format to z80, gbz80 linkers:
7095         *link/z80/aslink.h
7096         *link/z80/lklex.c
7097         *link/z80/lklib.c
7098         *link/z80/lklist.c
7099
7100 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7101
7102         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7103         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7104
7105 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7106
7107         added DUMMY_READ_VOLATILE:
7108         * src/SDCC.y:
7109         * src/avr/gen.c:
7110         * src/xa51/gen.c:
7111         * src/z80/gen.c:
7112         * src/pic/gen.c:
7113         * src/pic16/gen.c:
7114         * src/mcs51/gen.c:
7115         * src/ds390/gen.c:
7116         * src/SDCCcse.c (algebraicOpts): many improvements
7117         * src/SDCCcse.h: removed algebraicOpts()
7118         * src/SDCCicode.c (picDummyRead): added
7119
7120 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7121
7122         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7123         "Insufficient space in data memory".
7124
7125 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7126
7127         * src/mcs51/gen.c: fixed bug #771358
7128         * src/z80/gen.c: fixed bug #759087
7129
7130 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7131
7132         * src/pic16/glue.c: minor cleanup by Vangelis
7133
7134 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7135
7136         * device/include/regc515c.h: fixed #758477
7137         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7138         * device/lib/_gptrput.c: saved a few bytes
7139         * my tab spacing is 8, yours too?)
7140         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7141         * device/lib/serial.c: process RX bytes earlier than TX bytes
7142         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7143
7144 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7145
7146         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7147
7148 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7149
7150     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7151
7152 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7153
7154         * device/lib/Makefile.in: bad fix, reverted to 1.43
7155
7156 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7157
7158         * device/lib/Makefile.in: added missing z80 object files
7159
7160 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7161
7162         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7163         pic16 progress by Vangelis:
7164         * src/SDCCglobl.h:
7165         * src/SDCCmain.c:
7166         * src/pic/Makefile:
7167         * src/pic:
7168         * pic/Makefile:
7169         * pic16/device.c:
7170         * pic16/device.h:
7171         * pic16/gen.c:
7172         * pic16/gen.h:
7173         * pic16/genarith.c:
7174         * pic16/glue.c:
7175         * pic16/main.c:
7176         * pic16/pcode.c:
7177         * pic16/pcode.h:
7178         * pic16/pcodepeep.c:
7179         * pic16/peeph.def:
7180
7181 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7182
7183     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7184
7185 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7186
7187     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7188     added gbz80 build to MSVC project.
7189     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7190     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7191     from 8051 stuff and setup so it links using a .lnk file.
7192
7193 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7194
7195     * support/librarian/sdcclib.c: sdcc librarian.
7196     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7197     with sdcclib.
7198
7199 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7200
7201     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7202
7203 2003-07-02  Borut Razem <borut.razem AT siol.net>
7204
7205         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7206         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7207         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7208         src/xa51/main.c, src/z80/main.c:
7209         virtualization of glue() function: each port has it's own glue function,
7210         which is accessed by do_glue function pointer in PORT.general structure
7211
7212 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7213
7214         * DS800C400 fun, improved ROM interface and tinibios.
7215
7216 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7217
7218         * More support for DS80C400. Now includes beginning of interface to ROM.
7219
7220 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7221
7222         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7223
7224 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7225
7226         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7227
7228 2003-06-19  Borut Razem <borut.razem AT siol.net>
7229
7230         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7231
7232 2003-06-19  Borut Razem <borut.razem AT siol.net>
7233
7234         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7235         fixed Z80 port - crt0.o: cannot open.
7236
7237 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7238
7239         * support/Util/MySystem.c (merge_command): revert bad fix
7240
7241 2003-06-18  Borut Razem <borut.razem AT siol.net>
7242
7243         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7244
7245 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7246
7247         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7248         option --use-stdout sends errors to stdout instead of stderr.
7249
7250 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7251
7252         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7253
7254 2003-06-15  Borut Razem <borut.razem AT siol.net>
7255
7256         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7257         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7258         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7259         fixed width array of pointers replaced with sets;
7260         multiple include and lib paths ared transferred to preprocessor and linker
7261         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7262         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7263         fixed width array of pointers
7264         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7265         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7266         fixupPath(), getPathDifference()
7267         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7268         fixed width array of pointers
7269
7270 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7271
7272         * src/pic16/ralloc.c: fix warnings
7273         * src/pic16/pcode.c: fix warning
7274
7275 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7276
7277          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7278         know all the details, but essentially this set of changes enable
7279         the pic16 port to generate movff instructions and generate assembler
7280         directives,
7281         * src/SDCCmain.c:
7282         * src/pic16/gen.c:
7283         * src/pic16/glue.c:
7284         * src/pic16/pcode.c:
7285         * src/pic16/device.c:
7286         * src/pic16/main.c:
7287         * src/pic16/pcode.h:
7288         * src/pic16/pcoderegs.c:
7289         * src/pic16/ralloc.c:
7290         * src/pic16/ralloc.h:
7291
7292 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7293
7294         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7295         added option --vc, so sdcc errors and warnings are compatible with
7296         Microsoft Visual Studio.
7297
7298 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7299
7300         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7301           device/lib/libfloat.lib: added atof function.
7302
7303 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7304
7305         * doc/sdccman.lyx: updated to Lyx 1.3
7306         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7307         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7308         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7309
7310 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7311
7312         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7313
7314 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7315
7316         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7317           additions to the "related tools/documentation" section
7318
7319 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7320
7321         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7322
7323 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7324
7325         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7326         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7327
7328 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7329
7330         * doc/sdccman.lyx: fix double dash and other minor things
7331         * doc/Makefile: fix double dash
7332
7333 2003-05-28  Karl Bongers(patches from Martin Helmling)
7334         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7335           condition and ignore commands.
7336
7337 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7338
7339         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7340           is in parts still quite out of date, I did changes as far as I felt makes sense
7341           for a non-native english speaker.
7342           Please feel free to add to the manual or to correct my changes.
7343         * doc/Makefile: undid touching the date of intermediate tex files.
7344
7345 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7346
7347         * doc/sdccman.lyx: Manual has an index now
7348
7349 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7350
7351         Finalize muluint/mulsint and mululong/mulslong merging:
7352         * device/lib/_mulint.c
7353         * device/lib/_mullong.c
7354         * device/lib/gbz80/mul.s
7355         * device/lib/gbz80/stubs.s
7356         * device/lib/z80/mul.s
7357         * device/lib/z80/stubs.s
7358         * src/SDCCsymt.c (initCSupport)
7359
7360 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7361
7362         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7363         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7364           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7365           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7366           instead of /Zm500.
7367
7368 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7369
7370         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7371           the regression tests I'm not brave enough to enable 245.b, 245.c
7372         * doc/sdccman.lyx: added latex preamble for hyperref package.
7373           Using pdflatex this will give you a hyperlinked pdf file with
7374           bookmarks. (prepend '%' before /usepackage if this breaks something)
7375
7376 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7377
7378          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7379
7380 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7381
7382         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7383
7384 2003-05-21    <johan AT balder>
7385
7386         * src/SDCCglue.c (printIval): fixed bug #739934
7387
7388 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7389
7390         Applied patch from bug 737905 (renamed yylineo to mylineno):
7391         * src/altlex.c
7392         * src/SDCCast.c
7393         * src/SDCglobl.h
7394         * src/SDCC.lex
7395         * src/SDCCsymt.c
7396         * src/SDCCval.c
7397         * src/pic16/pcode.c: Cleaned warnings
7398         * src/pic16/pcodeflow.c: Cleaned warnings
7399         * src/pic16/pcoderegs.c: Cleaned warnings
7400
7401 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7402
7403         * src/pic16/pcode.c: Cleaned warnings
7404         * src/pic16/pcodepeep.c: Cleaned warnings
7405         * src/pic16/ralloc.c: Cleaned warnings
7406
7407 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * doc/sdccman.lyx: fixed bug 739745
7410         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7411
7412 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7413
7414         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7415         it can be defined with CFLAGS when running configure
7416         * src/SDCCmain.c: fixed compiling + linking with object files
7417
7418 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7419
7420         * configure.in: configure for pic16 port,
7421             added --disable-pic16-port
7422         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7423         * src/SDCCmain.c: linkOptions is changed to set *,
7424             added if/endif conditional macros to remove options help
7425             messages from optionsTable when a port is not configured, added
7426             support for the PIc16 port in the ports table, when executing
7427             the compiler with no port specified on command line, a default
7428             port is selected with the new macro DEFAULT_PORT which is
7429             defined in port.h, in setDefaultOptions() linkOptions is removed
7430             from initialization assignment, since now it is a set,
7431             parseCmdLine uses setParseWithComma for linkOptions, in
7432             linkEdit() linkOptions are accessed with new function indexSet()
7433             which returns the i'th item of a set variable. See SDCCset.c, in
7434             linkEdit() when calling buildCmdLine(), added linkOptions as
7435             last argument. Now users can pass arguments to gplink via the
7436             -Wl option, main() uses pic16glue() to glue up pic16 programs
7437         * src/SDCCpeeph.c: various changes to support pic16
7438         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7439             return the i'th item of the set
7440         * src/SDCCset.h: added function prototype for indexSet()
7441         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7442         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7443         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7444             added macro DEFAULT_PORT
7445         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7446         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7447             generated
7448         * src/pic16/glue.c: commented out some error producing lines
7449         * src/pic16/main.c: __config directives are commented out to stop
7450             gpasm complaining and test the linkage with gplink, _linkCmd and
7451             _asmCmd changed to be more gplink and gpasm friendly
7452         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7453             produced an error when parsed, peep rule 12 is added to utilize
7454             movff, but it is commented out since the pCode does not support
7455             yet a command with 2 address arguments
7456
7457 2003-05-18    <johan AT balder>
7458
7459         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7460         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7461 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7462
7463         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7464   Added feature to script commands from file.
7465
7466 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7467
7468         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7469         * src/SDCCutil.c: include ctype.h for win32
7470
7471 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7472
7473         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7474
7475 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7476
7477         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7478   Fixed so you can set breakpoints prior to run, run does not stop
7479   on entry now.  Add tbreak.  Other enhancements and fixes for use
7480   with ddd.
7481
7482 2003-05-12  Borut Razem <borut.razem AT siol.net>
7483
7484         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7485
7486 2003-05-11  Borut Razem <borut.razem AT siol.net>
7487
7488         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7489         the path of bin directory, so that PATH is the only env. variable, which has to be set
7490         in case of standard installation.
7491         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7492         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7493         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7494
7495 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7498         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7499         temp files are in the port dir; clean the gen/test directory when
7500         generating new test.c
7501         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7502         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7503         * support/regression/tests/zeropad.c: added
7504
7505 2003-05-09    <johan AT balder>
7506
7507         * src/SDCCglue.c: fixed bug #597940
7508
7509 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7510
7511         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7512   cache sfr, optimize next,step, fix off by one sourceline,
7513   support ddd list function.
7514         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7515
7516 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         * support/regression/HTMLgen.py: added compare_s2f()
7519         * support/regression/Makefile: redo 1.27
7520         * support/regression/generate-cases.py: redo 1.5
7521
7522 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7523
7524         * support/regression/tests/float.c: workaround 33 bit hex constant
7525         * support/regression/tests/simplefloat.c: fix division for host
7526
7527 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7528
7529         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7530         that tame's the PIC's over-aggressive optimizer.
7531
7532 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7533
7534          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7535          support for MSVC.
7536
7537 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7538
7539         Initial support for DS80C400. "Hello world" runs on TINIm400
7540         (with polled I/O).
7541
7542 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7543
7544          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7545          * Some notes on ddd usage added in debugger/README
7546          Martin Helmling adding more features and fixes for ddd GUI debugger.
7547          Code added for nexti, stepi, up, down, and other adjustments.
7548
7549 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7550
7551         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7552         * src/pic/peeph.def Added two rules to optimize carry manipulation
7553         * src/pic/* removed debug printfs
7554
7555 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7556
7557         * debugger/mcs51/cmd.c: added header newalloc.h
7558
7559 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7560
7561         * as/Makefile: new EXEEXT
7562         * as/z80/Makefile: remove trailing slash of BUILDIR
7563         * as/z80/clean.mk: new EXEEXT
7564         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7565         * support/cpp2/Makefile.in: new EXEEXT
7566         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7567
7568 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7569
7570         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7571         EXEEXT was introduced to fix all related problems with targets
7572         "clean", "install" and "uninstall"; a couple of further flaws
7573         especially with "clean" have been fixed too
7574         * as/mcs51/Makefile.in
7575         * as/mcs51/clean.mk
7576         * as/z80/Makefile
7577         * Makefile
7578         * clean.mk
7579         * debugger/mcs51/Makefile.in
7580         * debugger/mcs51/clean.mk
7581         * link/z80/Makefile
7582         * link/z80/Makefile.in
7583         * link/z80/clean.mk
7584         * link/Makefile
7585         * packihx/Makefile.in
7586         * packihx/clean.mk
7587         * sim/ucsim/Makefile
7588         * sim/ucsim/clean.mk
7589         * sim/ucsim/avr.src/Makefile.in
7590         * sim/ucsim/avr.src/clean.mk
7591         * sim/ucsim/s51.src/Makefile.in
7592         * sim/ucsim/s51.src/clean.mk
7593         * sim/ucsim/xa.src/Makefile.in
7594         * sim/ucsim/xa.src/clean.mk
7595         * sim/ucsim/z80.src/Makefile.in
7596         * sim/ucsim/z80.src/clean.mk
7597         * sim/ucsim/main_in.mk
7598         * sim/ucsim/packages_in.mk
7599         * sim/ucsim/gui.src/Makefile.in
7600         * sim/ucsim/gui.src/serio.src/Makefile.in
7601         * sim/ucsim/gui.src/serio.src/clean.mk
7602         * src/Makefile.in
7603         * src/clean.mk
7604         * support/cpp2/Makefile.in
7605         * support/cpp2/clean.mk
7606         * support/makebin/Makefile
7607         * support/makebin/clean.mk
7608         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7609         * doc/sdccman.lyx: --program-suffix no longer needed
7610
7611 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7612
7613          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7614          Martin Helmling added support for ddd GUI debugger.
7615          Code added to display assembly, set variables, and other commands
7616          to interface to ddd.
7617
7618 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7619
7620         * as/Makefile: fix target clean
7621         * as/clean.mk: fix target clean
7622         * as/z80/clean.mk: fix target clean
7623
7624 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7625
7626         * Makefile.common.in: added  AT EXEEXT AT
7627         * configure.in: removed all mingw32 stuff
7628         * configure: rebuilt from configure.in
7629         * doc/sdccman.lyx: updated section "installation"
7630         * support/scripts/sdcc_mingw32: adapted to configure
7631         * support/scripts/sdcc_cygwin_mingw32: added
7632
7633 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7634
7635         * src/pic Added object file support for the PIC port
7636         * src/pic Applied patch from Craig Franklin (this started the object file support)
7637         * src/regression Updated the PIC regression tests for object files
7638
7639 2003-04-20  Borut Razem <borut.razem AT siol.net>
7640
7641         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7642           lklex.c: In function `getfid':
7643           lklex.c:203: warning: array subscript has type `char'
7644         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7645           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7646         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7647           stack handling macros
7648
7649 2003-04-19  Borut Razem <borut.razem AT siol.net>
7650
7651         * "handling space characters in file path" task:
7652         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7653         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7654         * support/Util/MySystem.h: make it self-sufficient
7655         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7656           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7657           handling space characters in file path
7658         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7659           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7660         * support/Util/MySystem.c: handling space characters in executable's path
7661
7662 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7663
7664         * as/z80/Makefile: fix permanent rebuild of z80
7665         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7666         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7667
7668 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7669
7670         * src/SDCCopt.c: add special case optimization to replace modulo by
7671           a power of two with a bitwise AND.
7672
7673 2003-04-18    <johan AT balder>
7674
7675         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7676
7677 2003-04-17    <johan AT balder>
7678
7679         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7680         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7681
7682 2003-04-13  Borut Razem <borut.razem AT siol.net>
7683
7684         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7685         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7686           fixed mingw problem in adl_NORMALIZE_PATH
7687
7688 2003-04-12  Borut Razem <borut.razem AT siol.net>
7689
7690         * fixed "#pragma SAVE/RESTORE can not be nested":
7691         * src/SDCC.lex: reworked pragma handling functions
7692         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7693         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7694
7695 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7696
7697         * src/SDCCutil.c (pathEquivalent): defined but not used
7698         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7699         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7700         * configure: rebuilt from configure.in
7701         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7702         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7703         * device/include/Makefile.in: replace sdcc_datadir
7704         * device/lib/Makefile.in: replace sdcc_datadir
7705         * Makefile.common.in: add LDFLAGS from configure
7706         * packihx/Makefile.in: use LDFLAGS
7707         * src/Makefile.in: use LDFLAGS
7708         * support/cpp2/Makefile.in: add LDFLAGS from configure
7709         * support/makebin/Makefile: use LDFLAGS
7710         * .version: bumped version number to 2.3.5
7711
7712 2003-04-12  Borut Razem <borut.razem AT siol.net>
7713
7714         * completed "different paths" task:
7715         * src/SDCCmacro.c: fixed bug in handling quotes
7716         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7717         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7718
7719 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7720
7721         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7722
7723 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7724
7725         * ds390/gen.c ds390/peeph.def: fix bug 706781
7726
7727 2003-04-11  Borut Razem <borut.razem AT siol.net>
7728
7729         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7730
7731 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7732
7733         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7734         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7735          set - this bit used to not be set...).
7736         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7737           bad code in PIC Port
7738         * src/regression/and2.c added to test bug 609268
7739         * src/regression/Makefile added and2.c to regression test
7740
7741
7742 2003-04-08    <johan AT CP255758-A>
7743
7744         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7745         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7746         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7747
7748 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7749
7750         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7751         fix bug #487815
7752         * support/cpp2/Makefile.in: fix bug #487815
7753         * configure: rebuilt from configure.in
7754         * Makefile.common.in: docdir changed, new path suffixes
7755         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7756         * sdcc_vc_in.h: reflect changes from sdccconf.h
7757         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7758         * src/SDCCutil.h: remove BINDIR hack
7759         * doc/sdccman.lyx: update new path hierarchy
7760
7761 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7762
7763         * src/SDCCpeeph.c: added okToRemoveSLOC test
7764
7765 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7766
7767         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7768
7769 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7770
7771         * src/SDCCpeeph.c: added labelIsReturnOnly test
7772         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7773
7774 2003-04-05    <johan AT balder>
7775
7776         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7777         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7778         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7779         * src/SDCCast.c: fixed a warning
7780         * src/SDCCast.h: fixed a warning
7781         * src/SDCCicode.c (operandFromAst): fixed a warning
7782
7783 2003-04-04    <johan AT balder>
7784
7785         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7786         * src/SDCCast.c (decorateType): fixed bug #715076
7787         * src/SDCC.y: fixed bug #702907
7788
7789 2003-04-03    <johan AT balder>
7790
7791         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7792         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7793         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7794         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7795         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7796
7797 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7798
7799         * _decdptr.c: fix return values
7800         * _gptrget.c: fix return values
7801         * _gptrgetc.c: fix return values
7802         * _gptrput.c: fix return values
7803         * _mulint.c: fix return values
7804         * as/z80/Makefile: fix 'make -j' problem
7805
7806 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7807
7808         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7809         * configure.in: big cleanup, updated to autoconf 2.5x
7810         * configure: rebuilt from configure.in
7811         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7812         * sdcc_vc_in.h: reflect changes from sdccconf.h
7813         * doc/Makefile: fixed a flaw in "make install"
7814
7815 2003-04-02    <johan AT balder>
7816
7817         * src/ds390/gen.c (genCmp): no comments
7818         * src/mcs51/gen.c (genCmp): no comments
7819         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7820         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7821
7822 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7823
7824         * support/regression/generate-cases.py: place generated file in given sub directory
7825         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7826         * support/regression/Makefile: improvements for 'make -j';
7827         side effect: it's simpler and faster now
7828
7829 2003-03-31  Borut Razem <borut.razem AT siol.net>
7830
7831         * src/z80/main.c: link-{port} and as-{port} defined without path
7832         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7833
7834 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7835
7836         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7837
7838 2003-03-30  Borut Razem <borut.razem AT siol.net>
7839
7840         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7841           changed type of list parameter to set
7842         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7843         * src/port.h: changed type of do_assemble() parameter to set
7844         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7845           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7846           definition of "cppoutfilename" macro with NULL value in preProcess()
7847         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7848         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7849         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7850           replaced with set *binPathSet
7851         * shash_add() deallocates the item, if allready exsists, before adding the new one
7852         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7853
7854 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7855
7856         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7857           a nested for loop bug in the PIC port
7858         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7859           for loops
7860
7861 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7862
7863         * support/Util/dbuf.h: remove C++ stuff to make it portable
7864
7865 2003-03-28  Borut Razem <borut.razem AT siol.net>
7866
7867         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7868           literal strings in stringLiteral()
7869         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7870         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7871           to the project
7872
7873 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7874
7875         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7876
7877 2003-03-26    <johan AT balder>
7878
7879         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7880         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7881         * src/SDCCast.c (decorateType): fixed " -v < 3"
7882
7883 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7884
7885         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7886         Added Lenny Story's debug infrastructure changes:
7887         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7888         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7889         * src/cdbFile.c: added
7890         * src/SDCCdebug.c: added
7891         * src/SDCCdebug.h: added
7892         * src/SDCCast.c (createFunction)
7893         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7894         * src/SDCCmain.c (parseCmdLine, main)
7895         * src/SDCCmem.c (redoStackOffsets)
7896         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7897         * src/SDCCsymt.h
7898         * src/common.h
7899         * src/avr/gen.c (genAVRCode)
7900         * src/ds390/gen.c (gen390Code)
7901         * src/mcs51/gen.c (gen51Code)
7902         * src/pic/gen.c (genpic14Code)
7903         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7904         * src/xa51/gen.c (genXA51Code)
7905         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7906
7907 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7908
7909         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7910         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7911
7912 2003-03-22    <johan AT balder>
7913
7914         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7915
7916 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7917
7918         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7919         * doc/cdbfileformat.lyx: added, written by Lenny Story
7920         * doc/Makefile: added cdbfileformat.lyx
7921         * doc/clean.mk: added cdbfileformat.lyx
7922
7923 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7924
7925         * src/mcs51/peeph.def: fix bug #705773
7926
7927 2003-03-20    <johan AT balder>
7928
7929         An sfr/sbit can have an "at #" AND an initializer
7930         * src/SDCCsymt.c (checkSClass):
7931         * src/SDCCmem.c (allocGlobal):
7932         * src/SDCCmem.c (allocLocal):
7933         * src/SDCCast.c (createBlock):
7934
7935 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7936
7937         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7938
7939 2003-03-16    <johan AT balder>
7940
7941         Undid the hackup of const and volatile, the problem is much bigger
7942         * src/SDCC.y:1.65
7943         * src/SDCCast.c:1.171
7944         * src/SDCCglue.c:1.138
7945         * src/SDCCicode.c:1.146
7946         * src/SDCCsymt.c:1.150
7947         * src/SDCCval.c:1.65
7948
7949 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7950
7951         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7952         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7953
7954 2003-03-13    <johan AT balder>
7955
7956         Hackup const and volatile modifiers in type chains a bit:
7957         * src/SDCC.y:1.63
7958         * src/SDCCast.c:1.169
7959         * src/SDCCglue.c:1.136
7960         * src/SDCCicode.c:1.143
7961         * src/SDCCsymt.c1.146
7962         * src/SDCCsymt.h1.59
7963         * src/SDCCval.c:1.63
7964
7965 2003-03-12    <johan AT balder>
7966
7967         * src/SDCCBBlock.h: more LRH debugging junk
7968         * src/SDCCcflow.h: more LRH debugging junk
7969         * src/SDCCloop.c: more LRH debugging junk
7970         * src/SDCC.y (struct_declaration): fixed bug #697590
7971         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7972         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7973         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7974
7975 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7976         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7977         test function names must now match exactly).
7978         * src/SDCCcse.c: added special case in findCheaperOp to allow
7979         extending a short integer. Makes less awful code for bug 700121 test case.
7980
7981 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7982
7983         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7984         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7985
7986 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7987
7988         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7989         actually called (operandsNotEqual() was called for all
7990         operandsNotEqualX tests).
7991
7992 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7993
7994         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7995         with shorter literals. Fixes bug 700121.
7996
7997 2003-03-11    <johan AT balder>
7998
7999         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8000
8001 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8002
8003         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8004         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8005
8006 2003-03-10  Borut Razem <borut.razem AT siol.net>
8007
8008         * src/SDCCmain.c: pipe preprocessor's output
8009         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8010         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8011         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8012         which closes all pipes in pipeSet set
8013         * src/SDCCset.c: free deleted item in function deleteSetItem()
8014         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8015         moved from z80 to src subproject
8016         * .version: increased version number to 2.3.4
8017
8018 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8019
8020         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8021         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8022         * support/regression/ports/xa51/spec.mk: fix typo
8023
8024 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8025
8026         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8027
8028 2003-03-09  Borut Razem <borut.razem AT siol.net>
8029
8030         * src/SDCCmain.c: pipe preprocessor's output
8031         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8032         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8033         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8034         which closes all pipes in pipeSet set
8035         * src/SDCCset.c: free deleted item in function deleteSetItem()
8036         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8037         moved from z80 to src subproject
8038
8039 2003-03-09  Borut Razem <borut.razem AT siol.net>
8040
8041         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8042         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8043         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8044         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8045         * src/SDCCglobl.h: unification of WIN32 native definitions
8046
8047 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8048
8049         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8050
8051 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8052
8053         * src/configure.in:   check for endianess (even while cross-compiling)
8054         * src/configure:      check for endianess (even while cross-compiling)
8055         * src/configure_in.h: check for endianess (even while cross-compiling)
8056         * src/avr/gen.c:        remove old endianess stuff
8057         * src/mcs51/gen.c:      remove old endianess stuff
8058         * src/ds390/gen.c:      remove old endianess stuff
8059         * src/pic/gen.c:        remove old endianess stuff
8060         * src/pic/genarith.c:   remove old endianess stuff
8061         * src/pic/glue.c:       fix endianess check
8062         * src/pic16/gen.c:      remove old endianess stuff
8063         * src/pic16/genarith.c: remove old endianess stuff
8064         * src/pic16/glue.c:     fix endianess check
8065         * src/xa51/gen.c:       remove old endianess stuff
8066         * src/z80/gen.c:        fix endianess check
8067         * src/SDCCglue.c:       fix endianess check
8068         * src/ds390/peeph.def: fix bug 700036
8069
8070 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8071
8072         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8073         * src/configure: find appropriate data-types on host for SDCC's int and long
8074         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8075         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8076         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8077
8078 2003-03-07    <johan AT balder>
8079
8080         Just a big NOOP:
8081                 some minor cleanups before the big shot
8082                 OP_DEFS and OP_USES now use Kevin's protection
8083                 new option --nolabelopt
8084
8085         * src/SDCCBBlock.c:
8086         * src/SDCCast.c,:
8087         * src/SDCCcflow.c:
8088         * src/SDCCcse.c:
8089         * src/SDCCicode.c:
8090         * src/SDCCicode.h:
8091         * src/SDCClabel.c:
8092         * src/SDCCloop.c:
8093         * src/SDCCmain.c:
8094         * src/ds390/ralloc.c:
8095         * src/mcs51/ralloc.c:
8096         * src/pic/ralloc.c:
8097         * src/xa51/ralloc.c:
8098         * src/z80/ralloc.c:
8099
8100 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8101
8102         * src/pic/pcode.c (get_op): fix 64 bit warnings
8103         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8104         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8105         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8106         * support/regression/tests/malloc.c: fix 64 bit warnings
8107
8108 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8109
8110         * src/mcs51/gen.c (genMinus): fixed bug 696436
8111
8112 2003-03-02  Borut Razem <borut.razem AT siol.net>
8113
8114         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8115
8116 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8117
8118         * configure.in: test for mkstemp
8119         * sdccconf_in.h: add HAVE_MKSTEMP
8120
8121 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8122
8123         * device/include/ctype.h: removed warning while using --stack-auto
8124         * device/include/malloc.h: removed warning while using --stack-auto
8125         * device/include/string.h: removed warning while using --stack-auto
8126
8127 2003-02-23  Borut Razem <borut.razem AT siol.net>
8128
8129         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8130         because NDEBUG is defined (see man assert)
8131         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8132
8133 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8134
8135         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8136         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8137
8138 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8139
8140         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8141         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8142
8143 2003-02-18    <johan AT balder>
8144
8145         * as/mcs51/asmain.c (asmbl): module can start with a digit
8146         * as/z80/asmain.c (asmbl): module can start with a digit
8147
8148 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8149
8150         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8151         * src/asm.c: fix pipe() for Mingw32
8152
8153 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8156         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8157         make -V work again; --c1mode reads now from stdin
8158         * doc/sdccman.lyx: added --c1mode
8159         * support/Util/SDCCerr.c: new messages for c1 mode
8160         * support/Util/SDCCerr.h: new messages for c1 mode
8161         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8162
8163 2003-02-15    <johan AT balder>
8164
8165         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8166
8167 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8168
8169         * doc/sdccman.lyx: Environment variables, -o and other minor things
8170
8171 2003-02-14    <johan AT balder>
8172
8173         * src/xa51/main.c: before anyone really tries to use it :)
8174
8175         * Install doc's in share/sdcc/doc
8176         * removed some obsolete files
8177         * Do a proper make distclean and uninstall
8178         M Makefile.common.in
8179         R sdccbuild.sh
8180         M as/Makefile
8181         M device/include/Makefile.in
8182         M device/lib/Makefile.in
8183         M doc/sdccman.lyx
8184         M link/Makefile
8185         M sim/ucsim/doc/Makefile.in
8186         M src/clean.mk
8187         R src/avr/peeph.rul
8188         R src/xa51/peeph.rul
8189         M support/cpp2/Makefile.in
8190         M support/makebin/Makefile
8191
8192
8193 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8194
8195         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8196
8197 2003-02-10  Borut Razem <borut.razem AT siol.net>
8198
8199         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8200         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8201         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8202         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8203         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8204         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8205         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8206         src/z80/Makefile.bcc: Borland Makefile cleanup
8207         * as/z80/Makefile.bcc: Added Borland Makefile
8208         * support/cpp2/borland.h: Removed
8209
8210 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8211
8212         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8213         * src/SDCC.lex: new pragma NOIV
8214         * src/SDCCglobl.h: new pragma NOIV
8215         * src/SDCCmem.c: new pragma NOIV
8216
8217 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8220
8221 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8222
8223         * src/SDCCmain.c: signal handling is switched off by --debug
8224         * doc/Makefile: small fix for install; use clean.mk again
8225         * doc/clean.mk: clean *.pdf and *.html too
8226
8227 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8228
8229         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8230         * device/lib/printfl.c: fix a ds390 bug by making it portable
8231         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8232         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8233         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8234         * debugger/mcs51/cmd.c: converted multi-line string literals
8235         * sim/ucsim/globals.cc: converted multi-line string literals
8236         * src/SDCCmain.c: introduced signal handler to remove temp files
8237         * doc/Makefile: small tweaks, implement clean
8238         * doc: removed generated files
8239
8240 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8241
8242         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8243         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8244         Address Record is not correctly generated for DS390."
8245
8246 2003-02-02  Borut Razem <borut.razem AT siol.net>
8247
8248         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8249         * as/mcs51/asm.h: fixed compilation with Borland C
8250         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8251         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8252         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8253         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8254         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8255         src/z80/Makefile.bcc: delete $(LIB) only if exist
8256         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8257
8258 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8259
8260         * device/include/malloc.h: introduced NULL
8261         * device/include/string.h: introduced NULL
8262         * device/include/stdlib.h: introduced NULL
8263         * device/lib/_memcpy.c: removed NULL
8264         * device/lib/_strcat.c: removed NULL
8265         * device/lib/_strchr.c: removed NULL
8266         * device/lib/_strcmp.c: removed NULL
8267         * device/lib/_strcpy.c: removed NULL
8268         * device/lib/_strcspn.c: removed NULL
8269         * device/lib/_strlen.c: removed NULL
8270         * device/lib/_strncat.c: removed NULL
8271         * device/lib/_strncmp.c: removed NULL
8272         * device/lib/_strncpy.c: removed NULL
8273         * device/lib/_strpbrk.c: removed NULL
8274         * device/lib/_strrchr.c: removed NULL
8275         * device/lib/_strspn.c: removed NULL
8276         * device/lib/_strstr.c: removed NULL
8277         * device/lib/_strtok.c: removed NULL
8278         * device/lib/malloc.c: removed NULL, include own header
8279
8280 2003-02-02    <johan AT balder>
8281
8282         * 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
8283         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8284         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8285         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8286         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8287         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8288
8289 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8290
8291         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8292         area 'DATA'"
8293
8294 2003-02-01    <johan AT balder>
8295
8296         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8297
8298 2003-01-31    <johan AT CP255758-A>
8299
8300         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8301
8302 2003-01-30    <johan AT balder>
8303
8304         * src/SDCCBBlock.c: automatic bug detection
8305         * src/SDCCicode.c: automatic bug detection
8306
8307 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8308
8309         * src/SDCCglobl.h:   now --xram-size 0 works
8310         * src/SDCCmain.c:    now --xram-size 0 works
8311
8312 2003-01-29    <johan AT balder>
8313
8314         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8315
8316 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8317
8318         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8319         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8320         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8321         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8322         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8323         * src/SDCCmain.c:    Added options --xram-size and --code-size
8324
8325 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8326
8327         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8328         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8329
8330 2003-01-27    <johan AT balder>
8331
8332         * src/SDCC.y: fixed bug #613764
8333
8334 2003-01-26    <johan AT balder>
8335
8336         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8337         * src/SDCCsymt.h: fixed bug #673374
8338         * src/SDCCglue.c: fixed bug #661910
8339         * src/SDCCast.c: fixed bug #458099 and 673374
8340
8341 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8342
8343         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8344         * as/mcs51/strcmpi.h: added
8345         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8346         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8347         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8348         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8349         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8350         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8351         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8352         * as/mcs51/Makefile.aslink: new module strcmpi
8353         * as/mcs51/Makefile.asx8051: new module strcmpi
8354         * as/mcs51/Makefil.bcc: new module strcmpi
8355         * as/mcs51/Makefile.in: new module strcmpi
8356         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8357
8358 2003-01-26    <johan AT balder>
8359
8360         * src/SDCCglue.c: reverted back to 1.124
8361         * src/SDCCast.c: reverted back to 1.156
8362         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8363
8364 2003-01-25    <johan AT balder>
8365
8366         * src/SDCCglue.c: A better fix for bug #661910
8367         * src/SDCCast.c: A better fix for bug #661910
8368         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8369
8370 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8371
8372         * src/Makefile.in: remove spawn.o
8373         * src/SDCCmain.c: remove spawn.h
8374         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8375         * src/spawn.c: removed
8376         * src/spawn.h: removed
8377         * support/regression/ports/ds390/spec.mk: link with -r
8378
8379 2003-01-24    <johan AT CP255758-A>
8380
8381         * src/ds390/gen.c (aopOp): fixed bug #667458
8382         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8383         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8384         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8385
8386 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8387
8388         * src/mcs51/peeph.def: better assembler identation by Frieder
8389         * src/mcs51/gen.c: better assembler identation by Frieder
8390
8391 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8392
8393         * as/z80/string.h: removed for gcc 3.2
8394         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8395         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8396
8397 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8398
8399         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8400         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8401         * support/regression/Makefile: separate temp files for ports
8402         * support/regression/generate-cases.py: separate temp files for ports
8403         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8404         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8405
8406 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8407
8408         * moved tinitalk to device/examples/ds390
8409
8410 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8411
8412         * as/mcs51/lkmem.c: rflag is for DS390
8413         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8414         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8415                          (linkEdit): move mem- and map-files the same way as ihx-files
8416         * src/z80/main.c (_setDefaultOptions): removed --generic
8417         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8418         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8419         * src/pic/glue.c (picglue): --c1mode works again
8420         * src/pic16/glue.c (pic16glue): --c1mode works again
8421         * src/asm.c (printCLine): fix #660034
8422
8423 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8424
8425         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8426         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8427         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8428         * as/mcs51/lkmem (summary): better fix for sp problem
8429         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8430         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8431         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8432                                               remove --stack-after-data
8433
8434 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8435
8436         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8437         * src/SDCCutil.c (join): ugly bug: missing '\0'
8438         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8439
8440 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8441
8442         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8443         * src/port.h: typo
8444         * src/pic/main.c (_asmCmd): gpasm supports -o
8445         * src/z80/main.c: more general macros
8446         * device/lib/Makefile.in: remove intermediate files
8447
8448 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8449
8450         * .version: Bumped version number to 2.3.3
8451         * src/SDCCBBlock.c: new option -o
8452         * src/SDCCglobl.h: new option -o
8453         * src/SDCCglue.c: new option -o
8454         * src/SDCCmain.c: new option -o
8455         * src/asm.c: new option -o
8456         * src/ds390/main.c: new option -o
8457         * src/pic/glue.c: new option -o
8458         * src/pic/pcode.c: new option -o
8459         * src/pic/ralloc.c: new option -o
8460         * src/pic16/glue.c: new option -o
8461         * src/pic16/pcode.c: new option -o
8462         * src/pic16/ralloc.c: new option -o
8463         * src/z80/main.c: new option -o
8464         * device/lib/Makefile.in: use -o
8465         * support/regression/ports/ds390/spec.mk: use -o
8466         * support/regression/ports/gbz80/spec.mk: use -o
8467         * support/regression/ports/mcs51/spec.mk: use -o
8468         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8469         * support/regression/ports/z80/spec.mk: use -o
8470         * support/regression/ports/ucz80/spec.mk: use -o
8471         * support/regression/ports/xa51/spec.mk: use -o
8472         * support/regression/fwk/lib/timeout.c: fix usage string
8473
8474 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8475         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8476
8477 2003-01-07    <johan AT balder>
8478
8479         * src/SDCCast.c (decorateType): fixed bug #600035
8480
8481 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8482         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8483         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8484         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8485         * src/pic/pcode.c: outcommented unused variable to remove warnings
8486         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8487
8488 2003-01-06    <karl AT turbobit.com>
8489         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8490    regression tests.
8491
8492 2003-01-06    <johan AT balder>
8493
8494         * src/SDCCicode.c: fixed array add
8495
8496 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8497         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8498         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8499
8500 2003-01-04    <johan AT balder>
8501
8502         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8503
8504 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8505         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8506
8507 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8508         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8509         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8510
8511 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8512         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8513
8514 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8515         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8516
8517 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8518         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8519
8520 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8521
8522     * in \sdcc\as\mcs51\ changed these files in order to create an
8523     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8524     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8525     following files to include the previous two files: aslink.dsp,
8526     Makefile.aslink, Makefile.bcc, and Makefile.in.
8527
8528     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8529     .adb instead of .cdb
8530
8531 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8532
8533         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8534         value from option --iram-size.
8535
8536 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8537
8538         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8539         dram[] array.
8540
8541 2002-09-18    <wiml AT hhhh.org>
8542
8543         * SDCClrange.h: exposed setFromRange() and setToRange()
8544         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8545           packRegsForAccUse() (bug 542397)
8546         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8547           multiple times and emitting the fetch operations more than once
8548           added aopGetUsesAcc() function to allow binary operators to
8549           fetch their operands in the correct order; made genMinus() emit
8550           compact code for X = LITERAL - Y
8551
8552 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8553         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8554         sprintf() in line 1267.
8555
8556 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8557         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8558         like ports.
8559
8560 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8561         Changes to aslink (All the changes are marked with 'JCF'):
8562
8563         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8564         summary().
8565
8566         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8567         area BSEG.  Also moves, if possible, the DATA area down into the internal
8568         ram so more space is available.
8569
8570         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8571         sflag.
8572
8573         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8574         not bytes.  Function summary() which creates a memory usage summary
8575         file with extension .mem.  Reports of overlaping stack and small stack
8576         size.  If the space for the stack is less than 16 bytes aslink trows a
8577         warning.
8578
8579         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8580         the 8051.  Option 'y' for memory summary output file.
8581
8582         Changes to sdcc (All the changes are marked with 'JCF'):
8583
8584         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8585
8586         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8587         overlaying area for it (uses RegBankUsed[4]).
8588
8589         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8590         bank zero as used by default.  By default aslink locates the stack
8591         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8592         the creation of the .mem file.  Delegates the allocation of data area
8593         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8594         the begining of the stack area to aslink.
8595
8596         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8597         glue() in SDCCglue.c creates an area for it.
8598
8599 2002-09-03  Borut Razem <borut.razem AT siol.net>
8600         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8601         sdcc/src/pic/glue.c:
8602         introduced atexit() handler for teporay files removal in case of
8603         errors, assertions, ...
8604
8605 2002-08-29  Borut Razem <borut.razem AT siol.net>
8606         * sdcc/support/cpp2/auto-host_vc_in.h:
8607         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8608         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8609         Maybe there is a similar problem with BORLANDC? It should be checked!
8610
8611         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8612         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8613         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8614         was not executed, and the compiler (cl) launched a warning:
8615         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8616
8617 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8618         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8619
8620 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8621         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8622
8623         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8624           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8625           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8626           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8627           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8628           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8629           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8630         - added Release configuration in VS projects
8631         - review of compiler an linker options
8632         - VC .exe files are generated in bin_vc directory, not to interfere
8633           with binaries generated from other projects (cygwin, mingw, bcc ...)
8634
8635         * sdcc/src/yacc.dsp: added
8636
8637         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8638         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8639         and insert the version number definitions from .version
8640
8641         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8642
8643         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8644         added - genarate auto-host.h using auto-host_vc_in.h as template
8645
8646         * sdcc/sdcc_vc.h,
8647         removed from CVS, generated automatically
8648
8649 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8650         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8651
8652 2002-08-11  Borut Razem <borut.razem AT siol.net>
8653         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8654
8655 2002-08-10  Borut Razem <borut.razem AT siol.net>
8656         * src/SDCCmain.c (main):
8657         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8658         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8659         The consequence was that some temporary files were not removed.
8660
8661         * src/SDCCglue.c:
8662         unification of code in functions tempfilename() and tempfile():
8663         function tempnam() is defined in Visual Studio 6.0 and .NET
8664
8665         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8666
8667         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8668           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8669         - removed compiler command line option /WX: Treats all warnings as errors
8670         - update a list of source files, included into the project
8671
8672         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8673           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8674         changed project type to Generic Project so that can be correcly converted to VS.NET project
8675
8676         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8677
8678         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8679
8680         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8681
8682         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8683         added return 0 statements after assert() to make compiler happy
8684
8685         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8686         added newline in the def file to keep MSC compiler satisfied
8687
8688         * sdcc/src/z80/gen.c:
8689         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8690           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8691         - solved MSC error in function aopDump()
8692
8693         * sdcc_vc.h: define PREFIX as "\\sdcc"
8694
8695 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8696         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8697
8698 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8699         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8700         - Rewrote the register banking algorithm.
8701         - Added pCode live-range analysis to registers (for now, only non-used and
8702         singly-used registers optimized away)
8703
8704         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8705
8706         * 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.
8707
8708 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8709         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8710
8711 2002-04-22  Michael Hope  <michaelh AT vroom>
8712
8713         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8714
8715         * configure.in (DD_COPT): Added include support required for gbdk.
8716
8717         * .version: Bumped version number just to increase it.
8718
8719         * src/SDCCmain.c: Added -nostdinc to the default options.
8720
8721 2002-04-15  Michael Hope  <michaelh AT vroom>
8722
8723         * device/lib/z80/printf.c (sprintf): Added.
8724
8725         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8726
8727         * src/z80/peeph.def: Added transpose redundent load rule.
8728
8729         * src/z80/main.c: Added force callee saves for jaune.
8730
8731         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8732
8733         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8734
8735 2002-03-28  Johan Knol  <johan AT balder>
8736
8737         * src/SDCCval.c: fixed bug #532436
8738
8739 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8740         * /src/port.h:
8741         Added "char *Processor" field to the port structure.
8742
8743         * /src/SDCCmain.c:
8744         Added -p option. Allows port dependent processor to be specified.
8745
8746         * all ports:
8747         Initialized the new field char *Processor field to NULL in all ports
8748
8749         * /src/pic/*:
8750         Compiler generated registers for interrupt context saving
8751         were not getting allocated.
8752
8753 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8754
8755         * /src/SDCCast.c:
8756         Fixed left shift. Will promote the left side of a left shift
8757         if a) left shifting more than size of operand or b) when assigned
8758         to something size > size of left side
8759
8760 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8761         * src/pic/*
8762         tons of changes. Register allocation has been
8763         rewritten. Added customization for the various PICs. Flow
8764         analysis is restructured. ...
8765
8766         * src/pic/device.h:
8767         Added
8768
8769         * src/pic/device.c:
8770         Added. device.c is a PIC port hack to accomodate variations
8771         in PIC devices.
8772
8773 2002-03-13  Michael Hope  <michaelh AT vroom>
8774
8775         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8776
8777 2002-03-04  johanknol  <johanknol AT manik>
8778
8779         * /src/SDCCval.c: fixed
8780
8781         const unsigned char arr[][2] = { { 0, 1 } };
8782         t18.c:1: error: Initializer element is not constant
8783
8784 2002-03-04  bela  <bela AT manik>
8785
8786         * /device/include/mcs51reg.h:
8787         ds89c420 register definition update
8788
8789 2002-03-03    <johan AT FRIJA>
8790
8791         * support/Util/SDCCerr.c: did something, but don't no why anymore
8792
8793         * support/regression/tests/bug-524691.c: made it a little less shy
8794
8795         * src/SDCCast.c (decorateType): fixed bug #524697
8796
8797         * src/SDCCast.c: made some lineno improvements
8798
8799         * src/SDCCval.c (getNelements): changed warning to error
8800
8801         * src/SDCCglue.c (printIvalArray): changed warning to error
8802
8803         * src/SDCCicode.c: fixed a warning for mingw
8804
8805         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8806
8807         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8808
8809 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8810
8811         * src/ds390/peeph.def:
8812         Added some more peephole rules
8813
8814         * src/ds390/gen.c: Various fixes & enhancements
8815
8816         * src/SDCClrange.c, src/SDCClrange.h:
8817         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8818
8819         * src/ds390/ralloc.c:
8820         various fixes & enhancements (ds390) specific
8821
8822         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8823         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8824         from rallocs.
8825
8826         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8827
8828 2002-03-02    <johan AT FRIJA>
8829
8830         * src/SDCCast.c (decorateType): fixed bug #524708
8831
8832         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8833
8834         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8835
8836 2002-03-01  Michael Hope  <michaelh AT vroom>
8837
8838         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8839
8840         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8841
8842 2002-03-01    <johan AT FRIJA>
8843
8844         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8845
8846         * src/SDCCast.c (decorateType): fixed bug #524209
8847
8848         * src/SDCCval.c (valNot): fixed bug #524195
8849
8850 2002-02-26    <johan AT balder>
8851
8852         * src/xa51/gen.c: fixed a warning
8853
8854         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8855
8856         * src/SDCCast.c (decorateType): fixed bug #522534
8857
8858 2002-02-23    <johan AT balder>
8859
8860         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8861
8862 2002-02-22    <johan AT balder>
8863
8864         * src/SDCCast.c: fixed bug #514865
8865
8866         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8867
8868 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8869
8870         * sdcc/src/SDCCloop.c:
8871         Previous fix was not good. basic blocks that have "break" or "return" are
8872         not really partof a loop , but live ranges used in these blocks should
8873         be live thru the entire loop, so set partOfLoop but don't add them to
8874         loop region
8875
8876 2002-02-21    <johan AT FRIJA>
8877
8878         * src/SDCCcse.c: fixed bug #514308
8879
8880 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8881
8882         * src/SDCCloop.c:
8883         Fixed BUG #519583. If a conditional block ended in a return/break
8884         statement inside a loop, it was not being considered part of the loop.
8885
8886         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8887
8888 2002-02-10  Karl Bongers <karl AT turbobit.com>
8889
8890         * debugger/*:
8891         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8892         with lots of comments and notes.
8893
8894         * device/examples/test2.c:
8895         Fix bug, "red" variable not being initialized(compiler complained).
8896
8897         * device/examples/Makefile, examples/test3.c:
8898         Add Makefile in device/examples folder, compiles test3.c
8899         for use as a multiple module SDCDB test case.
8900
8901         * sim/ucsim/cmd.src/cmdset.cc:
8902         Took out debug printfs in ucsim "next" command.
8903
8904         * sim/ucsim/xa.src:
8905         Karl and Johan start ucsim XA support.  Most dissassembly working,
8906         about 75% emulation done(plenty of work remaining).
8907
8908         * sim/ucsim/z80.src:
8909         Add Z80 support to ucsim, add test-ucz80 regression test,
8910         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8911         Notice z80 compiler fails on examples/test3.c/crc code.
8912
8913 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8914
8915         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8916         Added support for --parms-in-bank1
8917
8918         * src/ds390/peeph.def:
8919         added a few more peephole optimzations
8920
8921         * src/ds390/main.c:
8922         1) added __builtin_inp & __builtin_outp used to read in data of given length
8923            from a memory mapped port
8924         2) added __builtin_memcmp
8925         3) added __builtin_swapw swap bytes of a short
8926
8927         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8928         1) handle multiple send & receives from register bank1
8929         2) ralloc can now allocate DPTR1 to some liveRanges
8930
8931         * src/SDCCsymt.c, src/SDCCsymt.h:
8932         changes to handle multiple sends & receives
8933
8934         * src/SDCCptropt.h:
8935         added some pointer arithmetic optimization
8936
8937         * src/SDCCptropt.c:
8938         added some pointer arithmetic optimizations but not stable yet so not
8939         called from anywhere (will get this working shortly)
8940
8941         * src/SDCCopt.c: fixed for multiple sends & receives
8942
8943         * src/SDCCmain.c:
8944         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8945         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8946            set preprocessor defines (depending on options)
8947
8948         * src/SDCCicode.c, src/SDCCicode.h:
8949         changes made to handle multiple sends & receives
8950
8951         * src/SDCCglobl.h:
8952         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8953
8954         * src/SDCCcse.c, src/SDCCcse.h:
8955         added function findbackward def (to be used in upcoming optimization)
8956
8957         * src/SDCCcflow.c, src/SDCCcflow.h:
8958         added function returnAtEnd - to determine if a basic block terminates with
8959         a RETURN iCode
8960
8961         * src/SDCCast.c, src/SDCCast.h:
8962         added option parms-in-bank1
8963
8964         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8965         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8966         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8967         adjusted for --parms-in-bank1 option
8968
8969         * device/include/string.h:
8970         donot redefine "reentrant" keyword
8971
8972         * device/include/ds80c390.h: Added some more SFRs
8973
8974 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8975
8976         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8977
8978 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8979
8980         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8981
8982 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8983
8984         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8985
8986 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8987
8988         * Added --xram-movc option
8989
8990 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8991
8992         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8993
8994 2002-01-11  Johan Knol
8995
8996         * Added math lib of Jesus Calvino-Fraga
8997
8998 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8999
9000         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9001         * support/regression/Makefile: new target test-mcs51-stack-auto
9002         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9003
9004 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9005
9006         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9007
9008 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9009
9010         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9011
9012 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9013
9014         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9015
9016         * src/SDCCglue.h: add definition for printIvalChar()
9017
9018 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9019
9020         * src/SDCCast.c: fix #498138 by Johan
9021
9022         * src/SDCCglue.c: fix #498138 by Johan
9023
9024 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9025
9026         * support/regression/Makefile: fix clean
9027
9028         * support/regression/ports/ds390/support.c: fix transmission of last character
9029
9030 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9031
9032         * /sdcc/src/ds390/gen.c:
9033         a) improved computing address of stack variable
9034         b) took out some #if 0 code
9035         c) improved parmBytes adjustment
9036         d) improved genPlusIncr & genMinusIncr
9037         e) genCmp could generate bad code (when left assigned to DPTR)
9038         f) Fixed bug in hasInc
9039
9040         * /sdcc/src/ds390/ralloc.c:
9041         a) packRegsForSupport could mess up live information (Fixed)
9042         b) packRegsDPTRuse could be incorrect for left & right shift
9043
9044         * /sdcc/src/mcs51/ralloc.c:
9045         packRegsForSupport could mess up the live information (Fixed)
9046
9047         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9048
9049         * /sdcc/src/SDCCast.c:
9050         can reverse a loop even if function call is present as long
9051         as the loop control variable is local & is not passed as parameter
9052
9053 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9054
9055         * /sdcc/ChangeLog: *** empty log message ***
9056
9057         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9058         More builtin function additions for TININative
9059
9060         * /sdcc/src/ds390/ralloc.c:
9061         Had broken the regression testsuite
9062
9063         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9064
9065         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9066         Added funcattr hasStackParms will be set for reentrant functions when there
9067         are paramteres on the stack, this helps in minimizing frame pointer generation
9068         typeFromStr can handle function pointers now
9069
9070         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9071         *** empty log message ***
9072
9073 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9074
9075         * /src/ds390/gen.c, /src/ds390/main.c:
9076         More builtin function additions for TININative
9077
9078         * /src/ds390/ralloc.c:
9079         Had broken the regression testsuite
9080
9081         * /src/SDCCast.c: Fixed a bug in dumptree
9082
9083         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9084         Added funcattr hasStackParms will be set for reentrant functions when there
9085         are paramteres on the stack, this helps in minimizing frame pointer generation
9086         typeFromStr can handle function pointers now
9087
9088         * /doc/builtins.txt, /doc/TININative.txt:
9089         *** empty log message ***
9090
9091
9092 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9093
9094         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9095         ALPHA version for -mTININative
9096
9097         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9098         updated to reflect changes in the port structure
9099
9100         * /src/port.h:
9101         added function do_assemble (similar to do_link) if non-null this function
9102         will be called to do assembly (-mTININative) requires a multi command
9103         assembly
9104         added function genAssemblerEnd will be called to generate assembler Epilogue
9105
9106         * /src/SDCCsymt.c:
9107         added _JavaNative to debug info printing
9108
9109         * /src/SDCCmain.c: added option --tini-libid
9110         added port->do_assemble function (-mTININative) has a multi command assemble
9111
9112         * /src/SDCCglue.c: Disabled "constExpr" check
9113         added port->genAssemblerEnd function
9114
9115         * /src/SDCCglobl.h: Added option --tini-libid value
9116
9117         * /src/SDCCast.h:
9118         tookout optimizeCompare from the header (has no external references)
9119
9120         * /src/SDCCast.c: made one more function "static"
9121
9122 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9123
9124         * src/z80/mappings.i: Added z80asm support.
9125
9126         * src/z80/main.c: Added z80asm support on --asm=z80asm
9127
9128         * src/z80/gen.c: Fixed asm portability issues.
9129
9130         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9131
9132         * src/SDCCglue.c (printExterns): Added global/extern split.
9133
9134 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9135
9136         * support/regression/Makefile: added test for mcs51 model large
9137
9138         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9139
9140         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9141
9142 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9143
9144         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9145
9146 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9147
9148         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9149
9150         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9151
9152 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9153
9154         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9155
9156         * support/regression/tests/simplefloat.c: Port to mcs51.
9157
9158 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9159         * support/regression/tests/bug-485362.c: Added.
9160
9161         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9162
9163         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9164
9165         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9166
9167         * src/z80/gen.c (aopDump): Added a dump function.
9168
9169 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9170         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9171
9172         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9173
9174         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9175
9176         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9177
9178         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9179
9180         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9181
9182         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9183
9184         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9185
9186         * support/regression/ports/ds390/support.c: Use tinibios.
9187
9188         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9189
9190 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9191
9192         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9193         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9194
9195         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9196
9197         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9198
9199 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9200
9201         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9202
9203         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9204         (packRegsForIYUse): Created and optimised.
9205
9206 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9207
9208         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9209 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9210
9211         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9212
9213         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9214
9215         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9216
9217 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9218
9219         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9220
9221         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9222
9223 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9224
9225         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9226
9227         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9228
9229         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9230
9231 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9232
9233         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9234         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9235         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9236
9237         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9238
9239         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9240         (genNotFloat): Added.
9241         (genUminusFloat): Added.
9242
9243         * device/lib/z80/Makefile: Added floating pt stubs.
9244
9245         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9246
9247         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9248
9249         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9250
9251 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9252
9253         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9254
9255         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9256
9257         * sdcc/support/regression/Makefile: Add port ds390.
9258
9259         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9260
9261         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9262
9263         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9264
9265         * sdcc/support/regression/ports/ds390/support.c: Added.
9266
9267         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9268
9269         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9270
9271         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9272
9273 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9274
9275         * device/include/malloc.h: Added z80 and gbz80 support.
9276
9277         * device/lib/gbz80/heap.s: Added.
9278
9279         * device/lib/z80/heap.s: Added.
9280
9281         * device/lib/malloc.c: Added z80 and gbz80 support.
9282
9283         * support/regression/tests/malloc.c (testMalloc): Added.
9284
9285         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9286
9287         * support/regression/tests/bug-478094.c: Added.
9288
9289         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9290
9291 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9292
9293         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9294
9295         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9296
9297         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9298
9299         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9300
9301         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9302
9303 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9304
9305         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9306
9307 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9308
9309         * support/regression/tests/bug-477927.c: Added.
9310
9311         * src/z80/peeph.def: Added minor rules.
9312
9313         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9314
9315         * src/z80/peeph.def: Added jump optimisation modification.
9316
9317 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9318
9319         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9320
9321 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9322
9323         * support/regression/tests/funptrs.c: Added.
9324
9325 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9326
9327         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9328
9329 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9330
9331         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9332
9333         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9334
9335         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9336         (movLeft2ResultLong): Created.
9337
9338         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9339         (joinPushes): Added.  Joins two char pushes into a word push.
9340
9341 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9342
9343         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9344
9345         * support/makebin/Makefile (install): Added creation of dest dir.
9346
9347 2001-10-24 Karl Bongers <karl AT turbobit.com>
9348
9349         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9350
9351 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9352
9353         * src/z80/ralloc.c: Turned off faulty pack for one use.
9354
9355         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9356
9357         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9358
9359 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9360
9361         * support/regression/Makefile: Improved clean
9362
9363         * support/regression/ports/gbz80/spec.mk: Added clean
9364
9365         * support/regression/ports/host/spec.mk: Added clean
9366
9367         * support/regression/ports/z80/spec.mk: Added clean
9368
9369         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9370
9371         * support/regression/ports/mcs51/timeout.c: little improvements
9372
9373 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9374
9375         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9376
9377         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9378
9379         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9380
9381 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9382
9383         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9384
9385         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9386
9387 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9388         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9389
9390         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9391
9392         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9393
9394         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9395
9396         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9397
9398         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9399
9400         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9401
9402         * support/regression/tests/longor.c: Added.
9403
9404 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9405
9406         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9407
9408         * as/mcs51/aslink.h: define PATH_MAX
9409
9410         * as/mcs51/asm.h: define PATH_MAX
9411
9412         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9413
9414         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9415
9416         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9417
9418         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9419
9420         * src/SDCCglobl.h: define PATH_MAX
9421
9422         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9423
9424         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9425
9426 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9427
9428         * src/z80/gen.c (gencjneshort): Fixed
9429
9430         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9431
9432 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9433
9434         * support/regression/tests/bug-469671.c: Added.
9435
9436         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9437
9438 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9439
9440         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9441
9442         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9443
9444 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9445
9446         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9447
9448         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9449
9450         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9451
9452         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9453
9454         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9455
9456         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9457
9458         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9459
9460 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9461
9462         * 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.
9463
9464         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9465
9466         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9467
9468 2001-10-07    <johan AT FRIJA>
9469
9470         * device/lib/gets.c (gets): fixed the return value.
9471
9472 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9473         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9474
9475         * 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.
9476
9477         * 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.
9478
9479         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9480
9481         * src/pic/gen.c: Removed Safe_strdup.
9482
9483         * configure.in: Added option to enable libgc support.
9484
9485         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9486         (bitVectUnion): Optimised.
9487         (bitVectIntersect): Optimised.
9488         (bitVectBitsInCommon): Optimised.
9489         (bitVectCplAnd): Optimised.
9490
9491         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9492
9493 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9494
9495         * src/SDCCmain.c: distinguish between assembler debug and plain options
9496
9497         * src/avr/main.c:   remove standard assembler options
9498
9499         * src/ds390/main.c: remove standard assembler options
9500
9501         * src/mcs51/main.c: remove standard assembler options
9502
9503         * src/port.h: removed "PENDING" comment
9504
9505 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9506
9507         * src/device/lib/_mulint.c  : new, with assember functions
9508
9509         * src/device/lib/_mullong.c : new, with assember functions
9510
9511         * src/device/lib/_divuint.c : with assember functions
9512
9513         * src/device/lib/_divsint.c : with assember functions
9514
9515         * src/device/lib/_divulong.c: with assember functions
9516
9517         * src/device/lib/_divslong.c: with assember functions
9518
9519         * src/device/lib/_moduint.c : with assember functions
9520
9521         * src/device/lib/_modsint.c : with assember functions
9522
9523         * src/device/lib/_modulong.c: with assember functions
9524
9525         * src/device/lib/_modslong.c: with assember functions
9526
9527         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9528
9529         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9530
9531         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9532                                       replaced _mululong.c and _mulslong.c by _mullong.c
9533
9534 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9535
9536         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9537
9538 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9539
9540         * src/SDCCglue.c: test, if win32api is available for MINGW
9541
9542 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9543
9544         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9545         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9546         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9547         * support/regression/ports/host/spec.mk: removed GENERIC
9548         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9549         * support/regression/ports/z80/spec.mk: removed GENERIC
9550
9551 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9552
9553         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9554
9555         * support/regression/tests/bug-467035.c: Created.
9556
9557 2001-10-01    <johan AT FRIJA>
9558
9559         * src/SDCC.y: fixed bug #466586 part 1
9560
9561 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9562
9563         * SDCCicode.c: z80 has no generic pointers
9564         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9565
9566 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9567
9568         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9569
9570 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9571
9572         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9573
9574         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9575
9576 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9577
9578         * configure.in: Fixed up so that ucsim is only configured once.
9579
9580         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9581
9582         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9583         (getPathDifference): As above.
9584
9585         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9586
9587         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9588
9589 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9590         * .version: Updated to 2.3.1
9591
9592         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9593         Added copyright header.
9594
9595         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9596         (assemble): Added support for macro based assembler commands.
9597         (linkEdit): Added support for macro based linker commands.
9598         (preProcess): Changed the pre-processor to use macros.
9599         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9600         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9601
9602         * device/lib/z80/crt0.s: Added module name for debugging.
9603
9604 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9605
9606         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9607
9608         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9609
9610         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9611
9612         * src/Makefile.in: Added SDCCmacro and SDCCutil
9613
9614 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9615
9616         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9617
9618 2001-09-16    <johan AT FRIJA>
9619
9620         * 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.
9621
9622 2001-09-15    <johan AT FRIJA>
9623
9624         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9625         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9626
9627 2001-09-11    <johan AT FRIJA>
9628
9629         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9630
9631 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9632
9633         * support/regression/tests/bug-460444.c: Added test case.
9634
9635         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9636         (genCast): Added justification for all of the asserts.
9637
9638 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9639
9640         * support/regression/support.c: _xdata replaced by xdata
9641
9642         * support/regression/spec.mk: removed _generic
9643
9644 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9645
9646         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9647
9648         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9649         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9650
9651         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9652
9653         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9654
9655         * support/regression/tests/bug-460010.c: Added test case.
9656
9657         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9658
9659 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9660
9661         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9662
9663         * support/regression/testfwk.c: removed workaround for bug #436344
9664
9665         * support/regression/tests/bp.c: use less memory with mcs51
9666
9667         * support/regression/tests/bug-441448.c: use less memory
9668
9669         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9670
9671         * support/regression/collate-results.py: typo
9672
9673 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9674
9675         * support/regression/tests/fetchoverlap.c: Added new test case.
9676
9677         * support/regression/tests/bp.c: Added new test case.
9678
9679         * support/regression/tests/bug-448984.c: Added new test case.
9680
9681         * support/regression/tests/pow2shifts.c: Added new test case.
9682
9683         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9684         (genlshTwo): Fixed right shift for count > 8.
9685
9686         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9687
9688 2001-09-08    <johan AT FRIJA>
9689
9690         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9691
9692 2001-09-07    <johan AT FRIJA>
9693
9694         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9695
9696         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9697
9698 2001-09-06    <johan AT FRIJA>
9699
9700         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9701         * bernhard noted me at this: "() equals to (void)" (1.38)
9702
9703 2001-09-05    <johan AT FRIJA>
9704
9705         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9706
9707 2001-09-04    <johan AT FRIJA>
9708
9709         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9710
9711
9712 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9713
9714         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9715
9716 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9717
9718         * link/z80/aslink.h: Fixed path for PATH_MAX
9719
9720 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9721
9722         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9723
9724         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9725
9726         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9727
9728         * 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.
9729
9730 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9731
9732         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9733         (genCmp): Fixed up genCmp for the GB with longs.
9734
9735         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9736
9737         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9738
9739         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9740
9741         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9742
9743 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9744
9745         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9746
9747 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9748
9749         * 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.
9750
9751         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9752
9753 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9754
9755         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9756
9757         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9758
9759 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9760
9761   * sim/ucsim/configure:    little improvement of Cygwin-detection
9762   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9763   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9764   * support/regression/tests/bug-221100.c: small changes for mcs51
9765   * support/regression/tests/bug-221168.c: small changes for mcs51
9766   * support/regression/tests/bug-227710.c: small changes for mcs51
9767   * support/regression/tests/staticinit.c: small changes for mcs51
9768   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9769   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9770   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9771
9772 $Revision$