* .version: changed to version 2.5.3
[fw/sdcc] / ChangeLog
1 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * .version: changed to version 2.5.3
4         * doc/sdccman.lyx: changed version to 2.5.3,
5           documented --codeseg and --constseg and pragma codeseg and constseg,
6           documented bit parameters (reentrant) and bit returning
7         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
8            currFunc->recvSize, but is this ok for all ports?
9           (ast2iCode): result of ~ on unsigned char must be cast to int for
10            bool to work
11         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
12           function pointers in bit space
13         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
14           (processFuncArgs): call port.reg_parm() with reentrancy info
15         * src/port.h,
16         * src/avr/main.c,
17         * src/ds390/main.c,
18         * src/hc08/main.c,
19         * src/pic/main.c,
20         * src/pic16/main.c,
21         * src/xa51/main.c,
22         * src/z80/main.c: port.reg_parm prototype extended with
23           "bool reentrant" parameter
24         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
25           options.stackAuto for allocating bit register parameters
26         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
27           (genSend): set BitBankUsed if it is,
28           (selectRegBank): factored out of genCall for use in genPcall,
29           (genCall): removed redundant dtype assignmen, use selectRegBank,
30           (genPcall): handle returning in Carry properly, save in F0 if needed,
31           (genReceive): handle bit register parameters
32         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
33           (mcs51_assignRegisters): enable bit registers for all reentrant
34            functions and don't set BitBankUsed unconditionally
35         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
36         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
37         * support/regression/tests/funptrs.c: added tests for BOOL and for return
38
39 2005-08-27 Borut Razem <borut.razem AT siol.net>
40
41         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
42         ppc-osx (Darwin) does not support -u option. It seems that it is
43         supported only on Linux - GNU cp
44
45 2005-08-25 Borut Razem <borut.razem AT siol.net>
46
47         * sim/ucsim/gui.src/serio.src/Makefile.in,
48           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
49           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
50           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
51           install and strip, since the strip at /usr/ccs/bin should be used
52           on solaris
53
54 2005-08-24 Borut Razem <borut.razem AT siol.net>
55
56         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
57
58 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
59
60         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
61         ffffffffu
62
63 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
64
65         * as/mcs51/aslink.h: completed lkrloc.c prototypes
66         * as/mcs51/lkmain.c (link_main): fixed warning
67         * device/include/stdbool.h: ds390 has no advanced bit support yet
68         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
69         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
70         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
71           and updated their macros
72         * src/SDCCval.c (constVal): updated comment for renamed b_long
73
74 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
75
76         * as/mcs51/asdata.c: changed ctype['['] to BINOP
77         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
78           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
79           (oprio): set priority for '['
80         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
81            and adb_24_bit
82         * as/mcs51/asm.h: added defines R_BIT and S_BIT
83         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
84         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
85         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
86           added overlayable BIT_BANK area
87         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
88           (summary2): explain 'T' in legenda
89         * as/mcs51/lkrloc.c: replaced old K&R style,
90           (relr): added R_BIT processing,
91           (errmsg): added "Bit-addressable relocation error",
92           (adb_bit): added for converting from byte- to bit-addressable space,
93           (adb_24_bit): added for converting from byte- to bit-addressable space
94         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
95            used in reentrant functions now even as return value
96         * device/lib/_gptrput.c (_gptrput): removed obsolete code
97         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
98           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
99         * src/SDCCglobl.h: added indicator BitBankUsed
100         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
101            the bit registers b0-b7
102         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
103           (geniCodeCast): fixed bug 1263853,
104           (geniCodeLogicAndOr): put result in bool or char,
105           (geniCodeReceive): added parameter func for accessing the return type,
106           (geniCodeFunctionBody): pass func to geniCodeReceive
107         * src/SDCCmain.c: added indicator BitBankUsed
108         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
109         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
110           (checkSClass): don't put automatic bool/bit on stack,
111           (checkFunction): removed check on function cannot return bit
112         * src/SDCCsymt.h: added newBoolLink prototype
113         * src/mcs51/gen.c (rb1regs): added bit registers,
114           (movc): created for assigning to carry,
115           (pushReg, popReg): created for pushing registers,
116           (sameRegs): check both AOP_REG and AOP_CRY types,
117           (aopOp): handle bit registers,
118           (aopPut): optimization no self-assign,
119           (saveRegisters): push reg->base (bits) only once for bit registers,
120            and use pushReg,
121           (unsaveRegisters): pop reg->base only once and use popReg,
122           (assignResultValue): added parameter func and return in carry for bits,
123           (genIpush): optimization no reload in A if not changed,
124           (genSend): bit parameters in reentrant functions are passed in bit
125            registers by first assigning to bits in B, then save registers and
126            copy B to bits,
127           (genCall): handle returning in Carry properly, save it in F0 if needed,
128           (genPcall): updated assignResultValue call, this is not safe yet for bit
129            returning function !!!
130           (genFunction): don't generate equ's for bit registers and use pushReg,
131           (genEndFunction): take care of bit returning functions and use popReg,
132           (genRet): return bit in Carry,
133           (genIfx): optimize bit registers and other directly addressable bits,
134           (genReceive): updated assignResultValue call
135         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
136           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
137            registers when using stack-auto
138         * src/mcs51/ralloc.c (_G): added allBitregs,
139           (regs8051): added the bit registers,
140           (createStackSpil): use macro IS_BIT,
141           (getRegBit): added to allocate a bit register, else spill,
142           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
143           (updateRegUsage): factored out to ease stepping while debugging,
144           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
145            also allocate bit registers,
146           (fillGaps): handle bit registers,
147           (findAllBitregs): added to create bit vector with all bit registers,
148           (mcs51_allBitregs): returns this bit vector,
149           (mcs51_assignRegisters): when using stack-auto use bit registers for
150            passing parameters and creating local variables
151         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
152
153 2005-08-22 Borut Razem <borut.razem AT siol.net>
154
155         * device/lib/Makefile.in: replaced find option -or with -o
156           to make it run on solaris
157
158 2005-08-22 Raphael Neider <rneider AT web.de>
159
160         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
161           fixes #1265442 (crash on Solaris)
162
163 2005-08-20 Borut Razem <borut.razem AT siol.net>
164
165         * configure, configure.in: added tests for libsocket and libnsl libraries,
166           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
167           from support/regression/Makefile.in
168         * support/regression/Makefile.in: added
169         * device/lib/pic16/Makefile.common.in: force make to use bash shell
170         * sim/ucsim/libtool: regenerated on sparc-solaris
171         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
172           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
173           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
174           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
175           sparc-solaris, which doesn't use GNU ld linker
176         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
177         * as/Makefile: find on sparc-solaris does not support -maxdepth option
178
179 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
180
181         * src/mcs51/peeph.def: updated comments
182
183 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
184
185         * device/lib/_gptrget.c,
186         * device/lib/_gptrput.c: slightly shorter
187         * doc/sdccman.lyx: incremented version
188         * src/mcs51/peeph.def: moved peephole comments to the line of first
189           change to better keep line correlation, reanimated 186.e
190         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
191
192 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
193
194         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
195           David Saxton with quotes around file name.
196
197 2005-08-15 Borut Razem <borut.razem AT siol.net>
198
199         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
200           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
201           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
202           make tests run on x86_64 platform
203
204 2005-08-13 Raphael Neider <rneider AT web.de>
205
206         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
207           as it might be executed DURING a build (parallel make is wonderful)
208
209 2005-08-13 Raphael Neider <rneider AT web.de>
210
211         * device/lib/Makefile.in (port-specific-objects-pic16):
212           revert to cp $(PORT)/bin/*.* $(PORTDIR)
213         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
214           dependency
215         * device/lib/pic16/Makefile.rules: build subdirs before creating
216           the library, removed builddir rule, create $(builddir) early in
217           recurse rule, use empty recurse rule for leaf directories
218         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
219           mkdir errors (race condition), removed duplicate suffix "hex"
220           from clean rules
221         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
222         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
223           prevents mkdir -p from aborting on Alpha
224
225 2005-08-12 Raphael Neider <rneider AT web.de>
226
227         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
228           db-statements in order to allow for arrays of pointers in code
229           sections to be placed without interspersed 0-padding, fixes
230           bug #1256215
231         * (emitStatistics): fixed division by zero for pic18f1220
232         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
233           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
234         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
235         * (pic16_pCodeConstString): keep track of already emitted string
236           literals to prevent "duplicate definitions of symbol _str_NR"
237         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
238           debug message
239         * device/lib/Makefile.in: ignore failing PIC16 library builds
240         * device/lib/pic16/Makefile: do not build if gputils are missing
241         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
242
243 2005-08-10 Raphael Neider <rneider AT web.de>
244
245         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
246           my last commit)
247
248 2005-08-10 Raphael Neider <rneider AT web.de>
249
250         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
251           Rokas' patch to add the new fixed point type "__fixed16x16"
252         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
253           functions for __fixed16x16 arithmetics
254         * device/lib/pic16: reimplemented the build system to support
255           a separate build directory, better handling of libio (create
256           the library in a separate subdir for each architecture) and
257           easier configuration (centralized in Makefile.common)
258
259 2005-08-07 Raphael Neider <rneider AT web.de>
260
261         * src/pic16/gen.c (genrshTwo): fixed sign extension
262         * src/pic16/device.c: added pic18f2320, 4220 and 4320
263         * device/include/pic16/pic18f2220.h: changed some bit definitions,
264           added T0CONbits
265         * device/include/pic16/pic18f4220.h: NEW, header for
266           pic18f4220 and pic18f4320
267         * device/include/pic16/pic18fregs.h: added new devices,
268           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
269         * device/include/pic16/signal.h: resolved name clashes
270           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
271           to also allow testing for interrupt enable bits, added
272           comments on how to use the macros
273         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
274         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
275           register definitions for the devices
276         * device/lib/pic16/pics.all: added new devices
277         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
278           allocated memory
279         * device/lib/pic16/libc/stdlib/memfree: do not count
280           the block header as free memory
281         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
282           simplified and added missing end-of-blocklist-marker
283           (reported by Peter Onion, fixes #1252814)
284         * (_mergeHeapBlock): fixed loop condition
285         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
286           len==0, restructured code
287         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
288           up a bit, reduced bitfield accesses, prevent endless loops
289           in case of heap corruption
290         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
291           "unreferenced arguments/must return a value" warnings
292         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
293           replaced BAUDREG with SPBRG
294         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
295           device/lib/pic16/debug/gstack/gstack.c: replaced
296           _naked, _asm, _endasm with __naked, __asm, __endasm
297
298 2005-08-05 Raphael Neider <rneider AT web.de>
299
300         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
301           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
302
303 2005-08-05 Borut Razem <borut.razem AT siol.net>
304
305         * device/lib/Makefile.in: added missing ';'
306         * configure: removed ^M characters
307
308 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
309
310         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
311           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
312           License
313
314 2005-08-04 Borut Razem <borut.razem AT siol.net>
315
316         * configure.in: pic16 libraries build 2nd try - enable running
317           configure in device/lib/pic16
318         * configure: regenerated from configure.in
319         * device/lib/Makefile.in: create $(PORT)/bin directory
320
321 2005-08-03 Raphael Neider <rneider AT web.de>
322
323         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
324           to get/set values via pointers
325         * (genUnpackBits,genPackBits): changed detection of
326           ptr->bitfield vs. sym.bitfield, fixed access via generic
327           pointers, removed dead (wrong) code for multibyte bitfields
328         * (genNearPointerGet, genGenPointerGet): removed useless code,
329           fixed bitfield detection, fixes #1250594
330         * (genNearPointerSet): removed useless code
331         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
332           and introduced macro pic16_emitpcode that conditionally emits
333           the origin of the following pCode (useful for debugging SDCC)
334         * src/pic16/pcode.c: changed (and disabled) some debug outputs
335         * (createDefmap): fixed handling of LFSR for --optimize-df
336
337 2005-08-02 Borut Razem <borut.razem AT siol.net>
338
339         * device/lib/Makefile.in: pic16 libraries build enabled since
340           gputils-0.13.2 are now localy installed at sourceforge's compile farm
341
342 2005-08-02 Raphael Neider <rneider AT web.de>
343
344         * src/pic16/gen.c (genPackBits): removed deprecated warning
345         * (genGenPointerSet): fixed bitfield detection
346
347 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
348
349         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
350
351 2005-07-31 Raphael Neider <rneider AT web.de>
352
353         * device/lib/pic16/libdev/pic18f458.c,
354           device/include/pic16/pic18f458.h: added missing T0CONbits
355
356 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
357
358         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
359
360 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
361
362         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
363
364 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
365
366         * device/include/mcs51/at89c51ed2.h: added.
367
368 2005-07-23 Raphael Neider <rneider AT web.de>
369
370         * src/pic/gen.h: added emitpcode macro for debugging
371         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
372           and replace by macro adding debug information on demand
373         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
374         * (gencjne): tried to fix; replaced with correct (slower) code
375         * (gen{Unp,P}ackBits): fixed single bit access
376         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
377         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
378           previous instruction
379         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
380           register has to be handled with care (forbidding movement
381           of assignments/uses, removing assignments completely, ...)
382         * (pCodeOptime2pCodes): make use of regIsSpecial
383         * added lots of debugging output (commented out)
384         * src/pic/rallloc.c (deassignLRs): prevent operand registers
385           from being reused as result UNLESS it is known to work
386
387 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
388
389         * support/Util/dbuf.h: include <stddef.h> for size_t
390         * .version: changed to version 2.5.2
391
392 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
393
394         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
395
396 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
397
398         * src/hc08/gen.c (genMinus): fixed bug #1241835,
399           (genModOneByte): removed needless psha/pula
400
401 2005-07-22 Raphael Neider <rneider AT web.de>
402
403         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
404           have PIC14 handled like PIC16, fixes broken pic14 linker calls
405         * src/pic/gen.c (resolveIfx): do not "invent" labels
406         * (genSkipc): changed to positive logic
407         * (genSkipCond): removed as no longer needed
408         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
409           backport from PIC16
410         * (genLeftShift): check operands are in different registers
411         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
412           INCF does not update CARRY...
413         * src/pic/main.c: fixed _linkCmd
414         * src/pic/pcode.c (unlinkpCode): added inactive code
415         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
416           alive (do not assign result and operand overlapping registers)
417
418 2005-07-22 Raphael Neider <rneider AT web.de>
419
420         * src/pic/device.c (dump_sfr): replaced register declaration with
421           call to emitSymbolToFile() to avoid duplicate symbols
422         * (assignRelocatableRegisters): do not declare external symbols
423         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
424           right (take size of type, not etype)
425         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
426         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
427         * (packRegsForAccUse): disabled assignment of WREG as
428           the result reg to prevent occurence of just fixed #1235003,
429           fixes #1242954
430         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
431           symbols (avoids duplicate symbols in .asm file)
432         * (pic14emitRegularMap): use emitSymbolToFile()
433         * src/pic/gen.c (aopOp): fixed spillLocation handling
434         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
435         * (genDataPointerSet): removed unneccessary variables/output
436
437 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
438
439         * as/mcs51/lkarea.c: enlarged codemap for banked memory
440         * device/lib/mcs51/crtbank.asm: added # to 0x0F
441
442 2005-07-21 Raphael Neider <rneider AT web.de>
443
444         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
445           architecture cannot handle them efficiently, fixes bug #1235003
446         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
447           check for empty sets before using them (fixes bug #1232190)
448
449 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
450
451         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
452           (lnksect2): generate warnings for memory overlap
453         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
454           constseg to set the name of these segments so you can instruct the linker
455           to place them in banks
456         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
457         * src/SDCCglobl.h: added MODEL_HUGE to enum,
458           added code_seg and const_seg to options
459         * src/SDCCglue.c (emitMaps): use options.const_seg,
460           (createInterruptVect): put interrupt vectors in segment HOME,
461           (glue): put HOME before static segment and put the main glue in HOME,
462           (glue): use options.code_seg
463         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
464         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
465           these segments so you can instruct the linker to place them in banks
466           (linkEdit): use code_loc for HOME segment which should be the first
467           segment in code memory now
468         * src/SDCCmem.c: fixed more stuff like bug 1238386
469         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
470           (changePointer): don't change function pointers to code pointers for
471           banked functions,
472           (compareType): added exceptional check for banked function pointers
473         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
474         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
475           after static in code memory
476         * src/mcs51/gen.c: added aopLiteralLong prototype,
477           (aopForSym): use getSize for functions,
478           (genCall): generate banked calls over one trampoline __sdcc_banked_call
479           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
480           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
481           the segment,
482           (genPcall): use call for literal function pointers and generate banked
483           calls over the one trampoline so there's only one place for the user to
484           modify according to his/hers hardware,
485           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
486           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
487         * src/mcs51/main.c: added keyword banked,
488           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
489         * support/Util/SDCCerr.c,
490         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
491           needed for passing the bank and address to the trampoline
492         * device/lib/mcs51/crtbank.asm: added for bankswitching
493         * device/lib/mcs51/Makefile: added crtbank
494
495 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
496
497         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
498           for fields at offset 0 of a struct or union as reported
499           on 2005-07-07 in the developer mailing list.
500
501 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
502
503         * src/SDCCmem.c: fixed bug 1238386
504
505 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
506
507         * src/mcs51/peeph.def: added labelrefcounting for peepholes
508           (patch #1144962), added peephole 300, enabled 259.x
509         * doc/sdccman.lyx: removed screenshot and provided link instead
510
511 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
512
513         * doc/sdccman.lyx: added section about debugging with ddd
514         * doc/figures/ddd_example.eps: screenshot of debugging session
515
516 2005-07-04 Raphael Neider <rneider AT web.de>
517
518         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
519           like CODE pointers, fixes #1115683
520         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
521           call, fixes bugs #1232211, #1228110,
522           fixed wrong casts to pCodeFlow from pCodeInstructions
523
524 2005-07-04 Raphael Neider <rneider AT web.de>
525
526         * src/pic/gen.c (popGet): changed assert to allow for
527           bit operands
528         * (popGetAddr): changed signature to provide
529           an additional index, patched all call sites
530         * (genCmpEq): handle literal-like operands correctly
531         * (genAddrOf): added sanity checks on __code/__data pointers
532         * (genAssign): added handling of symbols from __code section
533         * (gencjne): do not generate code for comparisons whose result
534           is neither stored nor used, fixes bug #1171114
535         * (AccLsh, AccRsh): operate on operand instead of WREG
536         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
537           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
538           by known count
539         * rewrote complete shift-by-literal logic, commented unused
540           functions out
541         * (genConstPointerGet): get multiple bytes (if result size > 1),
542           fixed handling of non-immediate addresses
543         * (genPointerGet): handle CODE pointers like CONST pointers
544         * (genpic14Code): insert C-SRC lines as Cource-pCodes
545         * ({aop,op}_isLitLike): NEW, single place to decide whether an
546           operand is to be treated as a literal or not
547         * (mov2w,genPcall,genCmpEq),
548           src/pic/genarith.c: use aop_isLitLike() to decide between
549           literal/register contents
550         * (addSign): added missing offset
551         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
552           only emit comment in debug-mode,
553           use {aop,op}_isLitLike throughout the file
554         * src/pic/glue.c: fix initializers for pointers (work in progress)
555         * src/pic/pcode.c (get_op): honor index on _const symbols
556         * ({reset,dump}pCodeStatistics): NEW, estimate code size
557         * (dumppBlock): added pCode size estimation
558         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
559           check for IS_SYMOP before OP_SYMBOL'ing
560         * fixed indentation, compacted switch-statements
561         * (allocReg): find free register and allocate it instead of
562           allocating new registers all the time
563         * (deassignLRs): prevent POINTER_GET's from being assigned the same
564           registers as its operands (necessary only for multibyte GETs)
565
566 2005-07-01 Raphael Neider <rneider AT web.de>
567
568         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
569           debugging .asm-output macros FENTRY + FEXIT
570         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
571           way... I wonder...
572         * (emitpComment): NEW, printf to pCode
573         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
574           offset handling
575         * (popGetAddr): NEW, variant of popGet to access an immediates
576           high(er) bytes instead of the n'th byte of memory they reference,
577           replaced popGet with popGetAddr where neccessary
578         * (genDataPointerGet): reactivated and fixed implementation
579         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
580           accesses
581         * (genDataPointerSet): fixed multibyte assignments
582         * (genpic14Code): fixed --i-code-in-asm handling
583         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
584         * (genPlus): fixed index-out-of-bounds error
585         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
586         * src/pic/ralloc.c: added debugging output macro FENTRY2
587         * (spillThis): fixed indentation, enbraced for-body for clarity
588         * (rematStr): commented out as now unused
589         * (regTypeNum): commented out special spill case (overwrites
590           arbitrary values)
591         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
592
593 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
594
595         * doc/sdccman.lyx: documented sfr16/sfr32,
596           added example for using storage class with function pointers
597         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
598
599 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
600
601         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
602         * device/lib/_itoa.c,
603         * device/lib/_ltoa.c: optimized codesize
604         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
605           but don't know how to suppress the double warning.
606         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
607         * support/Util/SDCCerr.c,
608         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
609
610 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
611
612         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
613           fixed old K&R prototypes
614         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
615         * device/lib/_gptrget.c,
616         * device/lib/_gptrgetc.c,
617         * device/lib/_gptrput.c: changed versions for new memory indicator values,
618           also new versions for small generic pointers and banked generic pointers
619         * src/port.h: added const_name
620         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
621         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
622         * src/SDCCcse.c (findPrevIc): check all associative operators
623         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
624         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
625         * src/SDCCmem.c: updated comments,
626           set far-space to 0 for pdata, results in optimized code
627         * src/SDCCmem.h: added macro CONST_NAME
628         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
629           moving the info into the highest bits, see also gptrget/gptrput
630         * src/src.dsp: added sdcc.ico to project files
631         * src/avr/gen.c (genCast): fixed bug 0x%d
632         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
633         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
634           relation between ptr_type and DCL_TYPE,
635           (genCast): fixed bug 0x%d
636         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
637           (CODE)" for const_name
638         * src/hc08/gen.c (genCast): fixed bug 0x%d
639         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
640           (hc08_port): added "CONST (CODE)" for const_name
641         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
642           (aopForRemat, adjustArithmeticResult): disconnected direct relation
643           between ptr_type and DCL_TYPE,
644           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
645           operand* and took AOP() inside function so sfr-ness can be checked,
646           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
647           new prototype,
648           (genFunction, genEndFunction): optimized stack setup,
649           (genMinus): optimized for literals with ending zeroes (in bytes),
650           (genCast): fixed bug 0x%d
651         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
652           (mcs51_port): added "CONST (CODE)" for const_name
653         * src/mcs51/peeph.def: made rule 226 more generic
654         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
655         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
656         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
657         * src/z80/main.c (z80_port): added NULL for const_name,
658           (gbz80_port): added NULL for const_name
659         * support/regression/tests/bug663539.c,
660         * support/regression/tests/sfr16.c: new tests
661
662 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
663
664         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
665
666 2005-06-24 Raphael Neider <rneider AT web.de>
667
668         * device/lib/pic16/libdev/pic18f[68][567]20.c:
669           corrected typos...
670         * device/include/pic16/signal.h: added USBIF
671           and SIG_USB
672
673 2005-06-24 Raphael Neider <rneider AT web.de>
674
675         * device/lib/pic16/libdev/pic18f2455.c,
676           device/include/pic16/pic18f2455.h: NEW
677         * device/include/pic16/pic18fregs.h,
678           device/lib/pic16/pics.all,
679           src/pic16/device.c: added 18f2455
680         * device/lib/pic16/libdev/pic18f[68][567]20.c,
681           device/include/pic16/{pic18f[68][567].h,usart.h}:
682           replaced MULTIPLE_USARTS define with more relaible
683           compatibility sfrs (for USART access)
684
685 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
686
687         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
688           and the output asm file line is printed on two lines.
689
690 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
691
692         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
693           BGT, BLE, BHI, and BLS instructions
694         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
695           genCmpEq): removed
696         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
697           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
698           fixes bug #1216342
699         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
700
701 2005-06-15 Raphael Neider <rneider AT web.de>
702
703         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
704         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
705         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
706           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
707           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
708
709 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
710
711         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
712           Marcel Telka in bug #1215704
713
714 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
715
716         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
717           located in shared memory bank.
718
719 2005-05-31 Raphael Neider <rneider AT web.de>
720
721         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
722           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
723           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
724
725 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
726
727         * device/lib/_strncpy.c: fixed the fix
728
729 2005-05-26 Raphael Neider <rneider AT web.de>
730
731         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
732           initializers with \0, bug #1208187
733         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
734           intializers with \0, bug #1208187
735
736 2005-05-26 Raphael Neider <rneider AT web.de>
737
738         * src/pic16/glue.c (pic16_printIvalChar): fixed string
739           initializers with \0, bug #1208187
740         * src/pic16/main.c (_process_pragma): added sanity checks
741           for stack position and size, emit warnings when appropriate
742
743 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
744
745         * device/lib/_strncpy.c: fixed not filling with \0
746
747 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
748
749         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
750           createFunction),
751         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
752           compound_statement),
753         * src/SDCCsymt.h,
754         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
755
756 2005-05-24 Raphael Neider <rneider AT web.de>
757
758         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
759
760 2005-05-24 Raphael Neider <rneider AT web.de>
761
762         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
763           TRISE definitions, closes bug #1162453
764
765 2005-05-22 Raphael Neider <rneider AT web.de>
766
767         * src/pic16/main.c (_process_pragma): check for missing
768           arguments to pragmas code and udata
769         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
770           consistency fixes to match other headers (thanks to Jim Paris)
771         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
772
773 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
774
775         * src/SDCCicode.c (isOperandEqual): fixed missing ;
776
777 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
778
779         * support/regression/tests/bug1198642.c: new test
780         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
781         * src/SDCCcse.c (findPrevIc): added comment, please have a look
782         * support/scripts/resource.h,
783         * support/scripts/resource.rc,
784         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
785         * support/scripts/sdcc.ico: added 32x32 icon
786
787 2005-05-18 Raphael Neider <rneider AT web.de>
788
789         * device/lib/pic16/libdev/pic18f*.c,
790         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
791           keywords to "__sfr" and "__at (X)"
792         * device/include/pic16/pic18fregs.h: added pic18f4520
793         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
794           #1203088 (MPLAB compatibility)
795
796 2005-05-17 Raphael Neider <rneider AT web.de>
797
798         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
799         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
800         * device/lib/pic16/pics.all: added new devices
801         * src/pic16/device.c: added support for pic18f4520
802
803 2005-05-16 Raphael Neider <rneider AT web.de>
804         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
805         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
806         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
807           convenience function for bit access
808
809 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
810
811         * device/lib/printf_large.c: fixed bug 1193299
812         * support/regression/tests/bug1057979.c: added test %3.3s
813
814 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
815
816         * device/include/mcs51/8051.h,
817         * device/include/mcs51/8052.h: made parseable with lint
818         * device/include/mcs51/lint.h: added include file for (sp)lint
819         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
820         * doc/cdbfileformat.lyx,
821         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
822
823 2005-05-14 Raphael Neider <rneider AT web.de>
824
825         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
826         * device/lib/pic16/libc/stdlib/itoa.c (new)
827         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
828         * device/lib/pic16/libio/Makefile: exclude subdir according to
829           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
830         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
831         * src/pic16/gen.c (genFunction): prevent annoying warning
832         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
833           nameclashes on BeOS
834         * support/cpp2/cppmain.c (cpp_output_string): new
835         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
836           fixes bug 1116802
837
838 2005-05-13 Borut Razem <borut.razem AT siol.net>
839
840         * src/SDCCmain.c (linkEdit): fixed bug 1195202
841
842 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
843
844         * .version: changed to version 2.5.1; back to bleeding edge development
845
846 2005-05-11 Borut Razem <borut.razem AT siol.net>
847
848         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
849           generate PDF version 1.3 documents
850
851 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
852
853         * .version: changed to version 2.5.0
854
855 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
856
857         * doc/sdccman.lyx: updated weblinks, index and smaller updates
858
859 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
860
861         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
862         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
863         well as many smaller updates.
864         * .version: changed to version 2.5.0-pre1
865
866 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
867
868         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
869
870 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
871
872         * support/regression/tests/bug1185672.c: added
873         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
874           bug 1185672
875         * src/mcs51/gen.c (genCall): added comments, made it look safer
876         * src/mcs51/gen.c (genEndFunction): simplified
877
878 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
879
880         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
881
882 2005-04-14 Borut Razem <borut.razem AT siol.net>
883
884         * fixed bug 1045046 - SIGSEGV with really simple code?:
885           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
886           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
887
888 2005-04-14 Borut Razem <borut.razem AT siol.net>
889
890         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
891           src/pic16/device.h: temporarily disabled experimental #inline pragma
892           for 2.5.0 release
893
894 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
895
896         * device/include/z80/stdio.h,
897         * device/include/z80/string.h: removed these highly incomplete files so
898           SDCC can use the default ones in device/include/
899
900 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
901
902         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
903         gcc warning.
904         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
905         fix sdcpp warnings.
906
907 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
908
909         * device/include/malloc.h: removed redundant __reentrant prototypes
910         * device/lib/_mullong.c: added working xstack variant in asm (C version
911           doesn't pass regression tests)
912         * device/lib/bpx.c: used __data and made bpx char for mcs51
913         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
914           (createFunction): fixed bug with xstackPtr
915         * src/SDCCcse.c: corrected comments
916         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
917           (killDeadCode, eBBlockFromiCode): removed unused code
918         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
919           corrected comments
920         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
921           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
922           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
923           (genModOneByte): fixed warning in MSVC
924         * src/mcs51/main.c (): added comments
925         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
926
927 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
928
929         * src/SDCCmain.c (linkEdit): oops, changed one line too many
930
931 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
932
933         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
934
935 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
936
937         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
938         characters arrays of larger size than the declared one.
939
940 2005-04-10 Borut Razem <borut.razem AT siol.net>
941
942         * src/pic/gen.c (genInline),
943           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
944           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
945           (findNextInstruction), (findPrevInstruction),
946           (findInstructionUsingLabel),
947           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
948         * src/pic/pcode.c (findLabel): added missing '\n'
949         * src/src.dsp: added SDCCdwarf2.c to the project
950
951 2005-04-09 Borut Razem <borut.razem AT siol.net>
952
953         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
954
955 2005-04-08 Raphael Neider <rneider AT web.de>
956
957         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
958           into the chain after a given one) and mergeDefmapSymbols (combine
959           defmap entries for each symbol per pcode)
960         * (createDefmap): have defmap entries merged in the end
961         * (defmapReplaceSymRef): split defmap entries covering two accesses to
962           a symbol before replacing one access type's symbol, merge symbols in
963           the end (replacement symbol might already have an entry)
964         * (assignValnums): keep reference to written WREG intact
965
966 2005-04-08 Raphael Neider <rneider AT web.de>
967
968         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
969           Alpha)
970
971 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
972
973         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
974         bytes
975
976 2005-04-07 Raphael Neider <rneider AT web.de>
977
978         * device/include/pic16/usart.h: added compatibility defines for
979           devices with more than one USART
980         * device/include/pic16/pic18f[68][567]20.h: activated above defines
981
982 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
983
984         * device/lib/Makefile.in: updated for port specific include
985
986 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * support/regression/ports/mcs51/spec.mk: added mcs51 include
989
990 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
991
992         * device/include/8051.h,
993         * device/include/8052.h,
994         * device/include/at89S8252.h,
995         * device/include/at89c55.h,
996         * device/include/at89x051.h,
997         * device/include/at89x51.h,
998         * device/include/at89x52.h,
999         * device/include/mcs51reg.h,
1000         * device/include/reg51.h,
1001         * device/include/reg764.h,
1002         * device/include/regc515c.h,
1003         * device/include/sab80515.h: (re)moved these 12 files
1004         * device/include/mcs51/8051.h,
1005         * device/include/mcs51/8052.h,
1006         * device/include/mcs51/at89S8252.h,
1007         * device/include/mcs51/at89c55.h,
1008         * device/include/mcs51/at89x051.h,
1009         * device/include/mcs51/at89x51.h,
1010         * device/include/mcs51/at89x52.h,
1011         * device/include/mcs51/mcs51reg.h,
1012         * device/include/mcs51/reg51.h,
1013         * device/include/mcs51/reg764.h,
1014         * device/include/mcs51/regc515c.h,
1015         * device/include/mcs51/sab80515.h: and added them here
1016
1017 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1018
1019         * device/include/stdarg.h: changed SDCC specific keywords to double
1020           underlined form.
1021         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1022           mcs51 and ds390.
1023         * device/include/hc08/mc68hc908gp32.h,
1024         * device/include/hc08/mc68hc908jb8.h,
1025         * device/include/hc08/mc68hc908jkjl.h,
1026         * device/include/hc08/mc68hc908qy.h: fixed comments
1027         * device/include/mcs51/README: updated
1028         * device/include/mcs51/c8051f120.h: added PINRSF
1029         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1030         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1031           amidst code. Also inline is not supported.
1032
1033 2005-04-06 Raphael Neider <rneider AT web.de>
1034
1035         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1036         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1037           callers stack/frame pointers
1038
1039 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1040
1041         * device/include/pic16/usart.h: added, missing in previous commit,
1042         * device/include/pic16/adc.h: fixed typo,
1043         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1044         commit,
1045         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1046         <p18fxxx.inc>
1047         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1048         uninitialized because a bug appears with gplink
1049         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1050         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1051         complains for unrecognised option
1052
1053 2005-04-05 Raphael Neider <rneider AT web.de>
1054
1055         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1056           structs as well (using memcpy)
1057         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1058           on ISRs (GOTO has no label)
1059         * src/pic16/device.h: added OF_OPTIMIZE_DF
1060         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1061           new data flow analysis/optimization
1062         * src/pic16/pcode.c: added (prototypes for and implementation of)
1063           dataflow analysis functions, fixed pCodeInstructions' inCond and
1064           outCond values, made RCALL a branch instruction
1065         * (pic16_unlinkpCode): keep C line if possible
1066         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1067           C line moved if possible
1068         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1069         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1070           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1071         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1072           new flow)
1073         * (pic16_getJumptabpCode): NEW, needed in...
1074         * (LinkFlow): fixed handling of jumptables, calls and conditional
1075           branches
1076         * (pic16_InsertCommentAfter): NEW
1077         * (pic16_pCodeReplace): made verbose and flow preserving
1078         * (AnalyzeFlow): added call to data flow analysis
1079         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1080         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1081         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1082
1083 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1084
1085         * src/SDCCast.c (decorateType): fixed bug #1105626
1086
1087 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1088
1089         * device/include/asm/pic16/features.h,
1090         * pic18f*.h headers,
1091         * device/include/pic16/adc.h,
1092         * device/include/pic16/delay.h,
1093         * device/include/pic16/i2c.h,
1094         * device/include/pic16/malloc.h,
1095         * device/include/pic16/stdio.h,
1096         * device/include/pic16/stdlib.h,
1097         * device/include/pic16/string.h,
1098         * device/lib/pic16/libc/stdio/printf_tiny.c,
1099         * device/lib/pic16/libc/stdio/printf_small.c,
1100         * device/lib/pic16/libc/stdio/strmgpsim.c,
1101         * device/lib/pic16/libc/stdio/strmmssp.c,
1102         * device/lib/pic16/libc/stdio/strmusart.c,
1103         * device/lib/pic16/libc/stdio/vfprintf.c,
1104         * device/lib/pic16/libc/stdlib/ltoa.c,
1105         * device/lib/pic16/libc/stdlib/putchar.c,
1106         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1107         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1108         * device/lib/pic16/libc/stdlib/memchrram.c,
1109         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1110         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1111         * device/lib/pic16/libio/adc/adcbusy.c,
1112         * device/lib/pic16/libio/adc/adcread.c,
1113         * device/lib/pic16/libio/adc/adcsetch.c,
1114         * device/lib/pic16/libio/usart/ubaud.c,
1115         * device/lib/pic16/libio/usart/ubusy.c,
1116         * device/lib/pic16/libio/usart/udrdy.c,
1117         * device/lib/pic16/libio/usart/uopen.c,
1118         * device/lib/pic16/libio/usart/uputc.c,
1119         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1120         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1121         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1122         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1123         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1124         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1125         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1126         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1127         specific keywords to double underlined form,
1128         * device/lib/pic16/libc/Makefile.rules,
1129         * device/lib/pic16/libsdcc/Makefile.rules,
1130         * device/lib/pic16/libm/Makefile,
1131         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1132         to compile with C standard set in Makefile.common
1133         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1134         rand.c and crc.c in compilation process,
1135         * device/lib/pic16/libsdcc/int/divuint.c,
1136         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1137         `c' from signed to unsigned,
1138         * device/lib/pic16/startup/crt0.c,
1139         * device/lib/pic16/startup/crt0i.c,
1140         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1141         keywords to double underlined form, bug fixes in _do_cinit function
1142         which prevented the correct initialization of the .idata segment,
1143         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1144         core to enter a infinite loop
1145         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1146
1147 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1148
1149         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1150
1151 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1152
1153         * device/include/Makefile.in: add support for hc08 subdirectory
1154         * device/include/hc08/: new subdirectory
1155         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1156         Lucas Loizaga, thanks!
1157         * device/include/hc08/mc68hc908qy.h,
1158         * device/include/hc08/mc68hc908gp32.h,
1159         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1160         their own directory. Changed internal macro names to use the compiler
1161         reserved namespace. Changed SDCC specific keywords to double
1162         underlined form.
1163         * device/include/math.h,
1164         * device/include/malloc.h,
1165         * device/include/stdarg.h,
1166         * device/include/stdbool.h
1167         * device/include/string.h,
1168         * device/include/tinibios.h,
1169         * device/include/ds400rom.h,
1170         * device/include/8051.h,
1171         * device/include/8052.h,
1172         * device/include/80c51xa.h,
1173         * device/include/at89c55.h,
1174         * device/include/at89S8252.h,
1175         * device/include/at89x51.h,
1176         * device/include/at89x52.h,
1177         * device/include/ds80c390.h,
1178         * device/include/reg764.h,
1179         * device/include/regc515c.h,
1180         * device/include/sab80515.h,
1181         * device/include/mcs51/c8051f000.h,
1182         * device/include/mcs51/c8051f018.h,
1183         * device/include/mcs51/c8051f020.h,
1184         * device/include/mcs51/c8051f040.h,
1185         * device/include/mcs51/c8051f060.h,
1186         * device/include/mcs51/c8051f120.h,
1187         * device/include/mcs51/c8051f300.h,
1188         * device/include/mcs51/c8051f310.h,
1189         * device/include/mcs51/c8051f320.h,
1190         * device/include/mcs51/c8051f330.h,
1191         * device/include/mcs51/c8051f350.h,
1192         * device/include/z180.h: Changed SDCC specific keywords to double
1193         underlined form.
1194
1195 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1196
1197         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1198         18F4455,
1199         * (pic16_assignConfigWordValue): disable testing of configuration
1200         register value with config mask,
1201         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1202         function with port->fun_prefix,
1203         * (genFunction): when generating a naked interrupt function never
1204         create an absolute segment placed in interrupt vector address, place
1205         the actual interrupt function at IVA instead, when an interrupt
1206         function is generated with unspecified interrupt then do not create
1207         the absolute section,
1208         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1209         code for generating a call to generic pointer get/put function with
1210         a call to function pic16_callGenericPointer(),
1211         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1212         the call to the generic pointer get/put functions with prefixing the
1213         function name with port->fun_prefix,
1214         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1215         * src/pic16/main.c (_process_pragma): prefix function with
1216         port->fun_prefix,
1217         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1218         calling assembler, old 18Fxxxx macro is deprecated,
1219         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1220         PC_ASMDIR in while condition,
1221         * (findInstruction): add PC_ASMDIR in while condition,
1222         * (buildCallTree): prefix main with port->fun_prefix,
1223         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1224         identifier for variable with banked access in instructions BTFSS,
1225         BTFSC, BCF, BSF, BTG
1226         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1227         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1228         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1229         perform optimization when enviroment variable NO_REG_OPT is set,
1230         * (insideLRBlock): NEW, return 1 if register is inside an
1231         INF_LOCALREGS block,
1232         * (RemoveRegFromLRBlock): remove a register that is completely
1233         eliminated by register optimization, but it is still left in local
1234         register store/restore in/from stack block,
1235         * (Remove2pcodes): after removing register, check to see if it
1236         should be removed from local register store/restore in/from stack
1237         block,
1238         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1239         DUMMY_READ_VOLATILE,
1240
1241         * device/include/pic16/adc.h: minor prototype modifications and
1242         update,
1243         * device/include/pic16/malloc.h: added GPL notice various
1244         modifications,
1245         * device/include/pic16/stdint.h: NEW, standard header for ints
1246         * device/include/pic16/delay.h: NEW, header for delay functions,
1247         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1248         delay1mtcy,
1249         * device/include/pic16/signal.h: NEW, header providing helper macros
1250         for implementing signal handlers,
1251         * device/include/pic16/stdio.h: added prototypes for functions,
1252         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1253         prototypes for stdin and stdout, added macro PUTCHAR to
1254         automatically implement putchar function prototype,
1255         * device/include/pic16/usart.h: modified and updated USART library,
1256         * device/lib/pic16/libio/adc/,
1257         * device/lib/pic16/libio/i2c: some modifications to improve library
1258         performance,
1259         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1260         family of functions,
1261         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1262         family of functions and other sources,
1263         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1264         of the PIC18Fxx[28] devices,
1265         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1266         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1267         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1268         _do_cinit function, because the previous failed when local variables
1269         where not placed in the same memory bank,
1270         * device/lib/pic16/libsdcc/char/: various modifications to improve
1271         library performance,
1272         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1273         information on the new functions of the c library and more...
1274
1275 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1276
1277         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1278
1279 2005-03-26 Raphael Neider <rneider AT web.de>
1280
1281         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1282           if condition == CARRY)
1283         * (genCmp): adapted to new genSkipc semantics
1284         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1285           on rIfx (genCmp was broken)
1286
1287 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1288
1289         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1290         * src/z80/main.c (_keywords[]),
1291         * src/SDCCglobal.h (struct options),
1292         * src/SDCC.y,
1293         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1294         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1295         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1296         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1297         always available in leading double underscore form. The C99 support is
1298         mostly missing, but it's a start.
1299         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1300         reserved identifier "__data".
1301
1302 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1303
1304         * src/mcs51/peeph.def: fixed bug 1170013
1305
1306 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1307
1308         * device/include/mcs51reg.h: fixed bug 842007
1309
1310 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1311
1312         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1313         last time.
1314
1315 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1316
1317         * src/port.h (struct PORT),
1318         * src/avr/ralloc.c (avr_assignRegisters),
1319         * src/avr/main.c,
1320         * src/ds390/ralloc.c (ds390_assignRegisters),
1321         * src/ds390/main.c,
1322         * src/hc08/ralloc.c (hc08_assignRegisters),
1323         * src/hc08/main.c,
1324         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1325         * src/mcs51/main.c,
1326         * src/pic/ralloc.c (pic14_assignRegisters),
1327         * src/pic/main.c,
1328         * src/pic16/ralloc.c (pic16_assignRegisters),
1329         * src/pic16/main.c,
1330         * src/xa51/ralloc.c (xa51_assignRegisters),
1331         * src/xa51/main.c,
1332         * src/z80/ralloc.c (z80_assignRegisters),
1333         * src/z80/ralloc.h,
1334         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1335         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1336         * src/SDCCcse.h,
1337         * src/SDCCdflow.c (computeDataFlow),
1338         * src/SDCCdflow.h,
1339         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1340         * src/SDCCloop.h,
1341         * src/SDCCcflow.c (*),
1342         * src/SDCCcflow.h,
1343         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1344         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1345         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1346         immedDom() returning wrong block; probably fixes bug #1160833)
1347
1348 2005-03-20 Borut Razem <borut.razem AT siol.net>
1349
1350         * support/scripts/inc2h.pl: WIN32 port
1351
1352 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1353
1354         * device/lib/makefile.in: added abs.c and labs.c
1355
1356 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1357
1358         * device/include/stdint.h: added
1359         * device/lib/abs.c: added
1360         * device/lib/labs.c: added
1361         * device/include/stdlib.h: added abs() and labs() prototypes
1362         * device/lib/libsdcc.lib: added abs and labs
1363         * device/include/float.h,
1364         * device/lib/_fsmul.c,
1365         * device/lib/printf_fast.c,
1366         * device/lib/printf_tiny.c: updated comments
1367
1368 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1369
1370         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1371         bug #1164313
1372
1373 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1374
1375         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1376         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1377
1378 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1379
1380         * device/lib/printf_large.c: removed inline assembly for portability and
1381           readability. Use printf_fast if speed or size are more important.
1382         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1383         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1384
1385 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1386
1387         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1388         prevent compiler warning
1389
1390 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1391
1392         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1393         moved to level 0 and declared as static. Also they are explicit
1394         placed in access bank. This was necessery because some times they
1395         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1396         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1397         optimizations. Currently only compare to unsigned char is implemented,
1398         * src/pic16/gen.c: added fReturnIdx array,
1399         * (struct resolvedIfx) is moved to gen.h and made public,
1400         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1401         * (aopForSym): added an optimization to directly store in stack of
1402         the operand of a SEND iCode,
1403         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1404         but as registers instead (AOP_REG) using the fReturnIdx array,
1405         * (pic16_freeAsmop): remove the freed register from the
1406         _G.sregsAlloc field,
1407         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1408         a compare of 'WREG',
1409         * (pic16_popGetTempRegCond): changed function prototype, now
1410         function takes also a bitVector argument v which holds the current
1411         set of registers that are allocated for stack access by aopForSym,
1412         registers allocated in aopForSym for accessing stack symbols are not
1413         any more part of the functions usedRegs field,
1414         * (genCall): some times aopOp is called for a stack variable to be
1415         send, aopForSym might perform the push, if this is true make sure
1416         that genCall doesn't push the variable twice by testing _G.resDirect,
1417         * (genFunction): changed testing for unspecified interrupt number
1418         from 256 to INTNO_UNSPEC,
1419         * modified selection scheme of frame pointer generation. Previously
1420         if function did use local registers a frame pointer was generated,
1421         now a frame pointer is generated only if function has arguments
1422         (that need PLUSW2 register access), or has stack arguments, or the
1423         compiler is not instructed to omit the frame pointer,
1424         * (genEndFunction): before restoring local registers that were saved
1425         in the function preamble, also restore the registers that *might*
1426         have been allocated for stack access,
1427         * (genRet): removed some old comments,
1428         * (genCmp, the active (RN's) version): added a call to the
1429         pic16_genCmp_special function to perform the compare with a more
1430         robust and optimized way,
1431         * (genInline): a feature has been added in inline code generation,
1432         which allows a wildcard variable substitution when writing inline
1433         assembly. Code is incomplete and experimental therefore undocumented,
1434         * (genCast): changed order of aopOp for result and right to allow
1435         aopForSym to directly load the result if possible,
1436         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1437         perform an optimized compare on some selected special occasions,
1438         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1439         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1440         generate an IVT any more,
1441         * src/pic16/main.c (pic16_optionsTable): added command line option
1442         --optimize-cmp,
1443         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1444         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1445         macros,
1446         * src/pic16/NOTES: Raphael Neider added in list of active developers
1447         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1448         jumptable_end to prevent bug #,
1449         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1450         inCond and outCond fields,
1451         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1452         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1453         turn off register spilling,
1454         * (packRegsForOneUse): synced with other ports' versions although it
1455         is not used currently,
1456         * (pic16_packRegisters): added an optimization while reading
1457         structure bitfields, some registers may be saved (malloc code is
1458         decreased by 80 bytes)
1459
1460 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1461
1462         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1463         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1464         this can be optimized more?
1465
1466 2005-03-10 Raphael Neider <rneider AT web.de>
1467
1468         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1469           genNearPointerGet): (hopefully) fixed access to bitfields via
1470           pointers (p->bitN = x; and x = p->bitN; failed)
1471
1472 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1473
1474         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1475
1476 2005-03-09 Raphael Neider <rneider AT web.de>
1477
1478         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1479
1480 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1481
1482         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1483         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1484           (regTypeNum): set REG_BIT type if necessary
1485         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1486         * support/regression/tests/critical.c: check bug 1144613
1487
1488 2005-03-02 Raphael Neider <rneider AT web.de>
1489
1490         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1491
1492 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1493
1494         * src/avr/ralloc.c (serialRegAssign),
1495         * src/ds390/ralloc.c (serialRegAssign),
1496         * src/hc08/ralloc.c (serialRegAssign),
1497         * src/mcs51/ralloc.c (serialRegAssign),
1498         * src/pic/ralloc.c (serialRegAssign),
1499         * src/pic16/ralloc.c (serialRegAssign),
1500         * src/xa51/ralloc.c (serialRegAssign),
1501         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1502
1503 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1504
1505         * src/SDCCast.c (decorateType): fixed bug 1124787
1506
1507 2005-02-20 Hubert Sack <sack AT digiplan.de>
1508         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1509
1510         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1511         patch #1121755
1512
1513 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1514
1515         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1516         to keep the correct label reference count when adding/removing references
1517         to labels. A peephole file using this is appended to patch #1144962.
1518
1519 2005-02-14 Raphael Neider <rneider AT web.de>
1520
1521         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1522         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1523         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1524           retrievals of result operand's value on assignment
1525
1526 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1527
1528         * device/include/pic16/string.h: modified prototype for memccpy()
1529         to memccpy(void *, void *, char, size_t)
1530         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1531         check whether to omit frame pointer or not,
1532         * (genInline): convert all occurences of "\n" to LF in inline
1533         assembler blocks, this helps formatting the inline text,
1534         * (pic16_loadFSR0): modified prototype,
1535         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1536         removed some 8051 legacy code,
1537         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1538         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1539         before allocating temporary registers in functions,
1540
1541 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1542
1543         * support/regression/tests/bitvars.c: corrected the "fix"
1544
1545 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1546
1547         * support/regression/tests/bitvars.c,
1548         * support/regression/tests/bitwise.c,
1549         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1550
1551 2005-02-10 Raphael Neider <rneider AT web.de>
1552
1553         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1554           different size for Alpha
1555         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1556
1557 2005-02-09 Raphael Neider <rneider AT web.de>
1558
1559         * src/SDCC.lex(doPragma) : save and restore warning options as well
1560           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1561         * have #pragma less_pedantic set the errorlevel to WARNING
1562           (fixes #1117001)
1563         * (cloneOptimize) : fixed wrong malloc's size
1564         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1565           facilitate correct handling of #pragma (save|restore)
1566
1567 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1568
1569         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1570
1571 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1572
1573         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1574
1575 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1576
1577         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1578
1579 2005-02-02 Raphael Neider <rneider AT web.de>
1580
1581         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1582         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1583         * (pic16_storeForReturn): fixed to allow returning function pointers
1584         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1585         * device/include/pic16/{stddef.h,stdbool.h}: added
1586
1587 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1588
1589         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1590
1591 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1592
1593         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1594         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1595          appeared to be required
1596
1597 2005-01-31 Borut Razem <borut.razem AT siol.net>
1598
1599         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1600           include/mcs51 and include/z80 directories to the package
1601
1602 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1603
1604         * src/hc08/gen.c (genFunction): fixed bug #1112752
1605
1606 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1607
1608         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1609
1610 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1611
1612         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1613
1614 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1615
1616         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1617
1618 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1619
1620         * device/include/c8051fxxx.h: removed these 6 files
1621         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1622
1623 2005-01-26 Raphael Neider <rneider AT web.de>
1624
1625         * src/pic16/gen.c (genAssign): fixed assignment from longs
1626           in codespace (were cut to three bytes)
1627         * (genDummyRead): implemented (except for CODESPACE...),
1628           fixed bug #1108575
1629         * src/pic16/glue.c (emitStatistics): beautified
1630         * device/lib/pic16/libm/Makefile: added include path
1631
1632 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1633
1634         * src/z80/gen.c (aopPut): fixed bug #1103902
1635
1636 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1637
1638         * device/lib/expf.c: fixed bug #1095792
1639
1640 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1641
1642         * device/lib/pic16/libm: added Math library sources
1643
1644 2005-01-24 Raphael Neider <rneider AT web.de>
1645
1646         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1647           to enable upcast to pCodeOpReg2 (there is no type tag to
1648           differenciate the two and pic16_popGet2p cast into PCOR2)
1649         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1650           (sizeof(sectNames) changed to sizeof(sectName))
1651           Both patches fix segfaults under MinGW.
1652
1653 2005-01-23 Raphael Neider <rneider AT web.de>
1654
1655         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1656           Safe_[mc]?alloc()'ed variables
1657         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1658           of (byte sized) temporaries (assign them to WREG for now)
1659         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1660           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1661           this might fix SIGSEGVs on MinGW...
1662         * src/SDCCopt.c (killDeadCode): restored original behaviour
1663           (volatile operands might get thrown away though)
1664
1665 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1666
1667         * src/pic16/gen.c: fixed bug #1106975,
1668         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1669         pointer update, INTCON is saved, global interrupts are disabled and
1670         restored after updateing TOS.
1671         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1672         * added function attribute 'shadowregs' to take advantage of shadow
1673         registers,
1674         * added function attribute 'wparam' as an alternative to the wparam
1675         pragma,
1676         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1677         user declares a non-ISR function as 'shadowregs',
1678         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1679
1680 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1681
1682         * .version: bumped version number to 2.4.8
1683         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1684         pic16 port,
1685         * device/lib/pic16/libio/i2c/: I2C module support library,
1686         * device/include/pic16/i2c.h: I2C support library header,
1687         * device/lib/pic16/libc/stdio/: standard IO support sources,
1688         * (printf_small.c): printf_small() source, supports float print,
1689         * (printf_tiny.c): printf_tiny() source, does not support floats,
1690         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1691         enable global optimizations for entire library source, other
1692         Makefiles in the source tree are also modified to reflect this,
1693         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1694         function,
1695         * doc/sdccman.lyx: updated to reflect new changes,
1696         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1697         sym->onStack if-case,
1698         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1699         sbit, idata, _idata, xdata, _xdata,
1700         * added pragma library, to link an external library, (see doc),
1701         * removed command line options, --pomit-config-words, --pomit-ivt,
1702         --pleave-reset-vector,
1703         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1704         when calling assembler to reflect memory model used, also define
1705         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1706         reflect stack model used,
1707         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1708         on stack return NULL,
1709
1710 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1711
1712         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1713           of the operands is volatile. Fixes #1020220
1714
1715 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1716
1717         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1718         * (OptimizeRegUsage): make sure that there is really no other flow where
1719           the first pCode is used
1720
1721 2005-01-22 Raphael Neider <rneider AT web.de>
1722
1723         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1724           to fix #1106967 (pCode->seq are not set up correctly)
1725
1726 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1727
1728         * src/SDCCglue.c (glue): make sure code area is declared before the
1729         static initialization area.
1730
1731 2005-01-21 Raphael Neider <rneider AT web.de>
1732
1733         * device/lib/Makefile.in: fixed test for pic16 install dir
1734         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1735           optimizations
1736         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1737           added --optimize-goto compiler switch and pragma wparam documentation
1738         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1739         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1740           and PRODH closing bug #1071770 (peephole optimizer)
1741
1742 2005-01-19 Raphael Neider <rneider AT web.de>
1743
1744         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1745           cmdLine buffers (used when calling sdcpp...) are large enough
1746           (MAX_PATH=256 truncates arguments leading to system halts when
1747           used in MinGW...)
1748         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1749         * (genUminus): rewritten to for efficiency
1750         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1751           used uninitialized in some cases)
1752         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1753           copy the third byte from the int -- now assumes 0x80 (data memory)
1754         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1755           operands (genAddLit expects the iCode's operands to swapped as
1756           well), fixed leftover bytes (crashed for short left operands)
1757         * (pic16_genMinusDec): performance improvements, removed false
1758           PIC14 emitSKPNCs
1759         * (pic16_genMinus): fixed to cope with differently sized operands
1760         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1761           for --obanksel > 1
1762         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1763         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1764           new banksel optimization
1765         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1766           analysis for temporary registers (segfaults...)
1767         * src/pic16/peeph.def: added rule
1768
1769 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1770
1771         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1772         which converts a float number to its ASCII representation
1773         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1774         functions to convert the fractional and integer part of a float to ASCII,
1775         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1776         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1777         ram
1778         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1779         _STATMEM macros,
1780         * device/include/pic16/adc.h: added GPL info,
1781         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1782         a pCodeOp as tested operand,
1783         * (genNearPointerGet): optimized bit testing, does not use
1784         intermediate register for bit value, test directly instead with
1785         BTFSS, BTFSC, works only for single bits,
1786         * (genpic16Code): dump the name of the iCode in the asm,
1787         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1788         renamed to pic16_decodeOp,
1789         * (serialRegAssign): do not allocate a temporary register for iCode
1790         sequences that test a single bit for 1/0
1791
1792 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1793
1794         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1795         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1796         access stack and frame pointers. They are initially assigned to
1797         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1798         accessing SFRs. Updated all occurences of modification of stack or
1799         frame pointer in gen.c and pcode.c,
1800         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1801         assigning of a literal value to pointers,
1802         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1803         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1804         selected
1805
1806 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1807
1808         * doc/sdccman.lyx: update documentation about stack pragma, added
1809         some info for stack memory models
1810
1811 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1812
1813         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1814
1815 2005-01-08 Raphael Neider <rneider AT web.de>
1816
1817         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1818           udata sections to fix bug #1097823
1819
1820 2005-01-05 Raphael Neider <rneider AT web.de>
1821
1822         * src/pic16/gen.c (genGenericShift): added handling of differently
1823           sized left operand and result
1824
1825 2005-01-04 Raphael Neider <rneider AT web.de>
1826
1827         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1828         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1829           to hold the condition bit)
1830         * added new version of genCmp (old code available via #define)
1831         * added new version of genShiftLeft/genShiftRight in a generic
1832           way, now supports shifting by negative values
1833         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1834           shiftCount (expected by genGenericShift)
1835         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1836         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1837           dump
1838         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1839           is an invalid literal too...)
1840
1841 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1842
1843         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1844         from Raphael Neider,
1845         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1846         for 8-bit literals. This fixes some literal operands which are sign
1847         extended to 16-bits ints when instruction needs only 8-bits.
1848
1849 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1850
1851         * device/lib/logf.c: added mcs51 assembly version
1852         * device/lib/expf.c: added mcs51 assembly version
1853         * device/lib/_logexpf.c: new shared asm code for expf and logf
1854         * device/include/math.h: add defines for assembly math library
1855         * device/lib/Makefile.in: build new _logexpf.c
1856         * device/lib/libfloat.lib: use new _logexpf.c
1857
1858 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1859
1860         * src/pic/device.c
1861         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1862           device types which have less than 0x7f registers.
1863
1864 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1865
1866         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1867
1868 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1869
1870         * device/lib/printf_fast.c: only build on supported arch.
1871         * device/lib/printf_tiny.c: only build on supported arch.
1872         * device/lib/printf_fast_f.c: only build if asm float lib
1873         * device/lib/_fsget1arg.c: only build if asm float lib
1874         * device/lib/_fsget2args.c: only build if asm float lib
1875         * device/lib/_fsnormalize.c: only build if asm float lib
1876         * device/lib/_fsreturnval.c: only build if asm float lib
1877         * device/lib/_fsrshift.c: only build if asm float lib
1878         * device/lib/_fsswapargs.c: only build if asm float lib
1879         * device/include/stdio.h: don't provide print_fast,
1880           print_fast_f, print_tiny prototypes if --xstack used
1881
1882 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1883
1884         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1885         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1886           to the SOURCES
1887
1888 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1889
1890         * device/lib/printf_fast_f.c: same as printf_fast, but
1891           with floating point enabled
1892         * device/lib/printf_fast.c: minor tweaks
1893         * device/include/stdio.h: add printf_fast_f
1894
1895 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1896
1897         * src/SDCCmain.c: make --float-reent default for mcs51
1898         * device/lib/_fsadd.c: added mcs51 assembly version
1899         * device/lib/_fssub.c: added mcs51 assembly version
1900         * device/lib/_fsmul.c: added mcs51 assembly version
1901         * device/lib/_fsdiv.c: added mcs51 assembly version
1902         * device/lib/_fseq.c: added mcs51 assembly version
1903         * device/lib/_fsneq.c: added mcs51 assembly version
1904         * device/lib/_fsgt.c: added mcs51 assembly version
1905         * device/lib/_fslt.c: added mcs51 assembly version
1906         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1907         * device/lib/Makefile.in: add _fscmp to build
1908         * device/lib/libfloat.lib: add _fscmp to build
1909
1910 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1911
1912         * device/lib/_fs2slong.c: added mcs51 assembly version
1913         * device/lib/_fs2sint.c: added mcs51 assembly version
1914         * device/lib/_fs2schar.c: added mcs51 assembly version
1915         * device/lib/_fs2ulong.c: added mcs51 assembly version
1916         * device/lib/_fs2uint.c: added mcs51 assembly version
1917         * device/lib/_fs2uchar.c: added mcs51 assembly version
1918         * device/lib/_slong2fs.c: added mcs51 assembly version
1919         * device/lib/_sint2fs.c: added mcs51 assembly version
1920         * device/lib/_schar2fs.c: added mcs51 assembly version
1921         * device/lib/_ulong2fs.c: added mcs51 assembly version
1922         * device/lib/_uint2fs.c: added mcs51 assembly version
1923         * device/lib/_uchar2fs.c: added mcs51 assembly version
1924         * device/include/float.h: added #define to select asm vs c
1925
1926 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1927
1928         * device/lib/printf_fast.c: improvements to float output
1929         * device/include/float.h: add defines for assembly float library
1930         * device/lib/_fsget1arg.c: receive 1 float arg
1931         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1932         * device/lib/_fsnormalize.c: normalize a float
1933         * device/lib/_fsreturnval.c: return float, various helper routines
1934         * device/lib/_fsrshift.c: right shift a float's mantissa
1935         * device/lib/_fsswapargs.c: swap 2 floats
1936         * device/lib/Makefile.in: build these 6 new files for mcs51
1937         * device/lib/libfloat.lib: add these 6 files to the library
1938
1939 2004-12-26 Borut Razem <borut.razem AT siol.net>
1940
1941         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1942           built by gcc 3.4.2
1943
1944 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1945
1946         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1947           and fully reentrant and register bank neutral.
1948         * device/lib/printf_fast.c: added float (not enabled by default),
1949           added compact/slower integer (also not enabled by default),
1950           improved size/speed of fast integer code, other minor changes
1951         * device/include/stdio.h, device/lib/Makefile.in,
1952           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1953
1954 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1955
1956         * src/pic16/pcode.c: declaring variables other than at the start of a
1957           block is not supported in C by VC6.
1958
1959 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1960
1961         * applied a previous patch from Raphael Neider that wasn't included
1962         in the previous commits, which fixes infinite loops within jumptable
1963         improvements,
1964         * made some fixes that previous patches introduced
1965
1966 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1967
1968         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1969         that fixes an issue with AOP_PCODE asmop's offset,
1970         * (pic16_popCopyReg): update instance field too,
1971         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1972         function of pic port,
1973         * (genCmp, genAnd, genAssign),
1974         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1975
1976 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1977
1978         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1979         variables initial values to idata section,
1980         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1981         variables in some functions. This utilizes parmBytes field of iCode
1982         structure to hold the offset of the variable in stack. (might be
1983         able to use the stack field too?)
1984         * applied patch from Raphael Neider # ### , # ###
1985         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1986         variable initial values in idata section,
1987         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1988         for static variables with initial value
1989         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1990         applied fix in while loop from Raphael Neider.
1991
1992 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1993
1994         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1995         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1996         * src/ds390/ralloc.c (serialRegAssign): spill bits
1997         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1998         * support/Util/SDCCerr.c,
1999         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2000         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2001         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2002
2003 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2004
2005         * device/include/sdcc-lib.h: inserted LGPL, added includes
2006           asm/ds390/features.h and asm/mcs51/features.h
2007         * device/include/asm/default/features.h,
2008         * device/include/asm/gbz80/features.h,
2009         * device/include/asm/z80/features.h: added empty _AUTOMEM
2010           and _STATMEM
2011         * device/include/asm/ds390/features.h,
2012         * device/include/asm/mcs51/features.h: added files with defines for
2013           _AUTOMEM and _STATMEM indicating automatic and static storage class
2014         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2015         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2016         * src/SDCCicode.c (geniCodeCast),
2017         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2018         * src/SDCCloop.c (loopInduction): removed unused variable lr
2019         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2020           to convertToFcall to include char modulo (RFE 1065037), added check
2021           if left operand is unsigned and use abs of literal value
2022         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2023           as it doesn't work after conversion from peephole.def to peephole.rul
2024         * src/mcs51/gen.c (toBoolean): added check for size,
2025           (genModOneByte): optimized code for signed char modulo a literal
2026           power of 2 (thanks to Hubert Sack),
2027           (genRRC): removed unnecessary "clr c",
2028           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2029         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2030           jump optimization,
2031           swapped rules 256.c and 256.d,
2032           extended 256.d by using new multiple checks (thanks Erik),
2033           added rules 256.e and 256.f,
2034           updated rule 261.a and 261.b to new generated code
2035         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2036
2037 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2038
2039         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2040           induction related bugs, including first part of bug #1074377
2041
2042 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2043
2044         * applied patch from bug-report #1076292,
2045         * applied patches for genAnd and Goto-optimizations for Raphael
2046         Neider,
2047         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2048         dump a less iCode information,
2049         * src/pic16/device.h (pic16_options_t): added field debgen,
2050         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2051         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2052         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2053         puclic,
2054         * (various functions): added macros FENTRY and FENTRY2 to functions,
2055         to emit function prologue,
2056         * (various functions): fixed indentation,
2057         * (genNearPointerGet): fixed loading of FSR0,
2058         * (genPackBits): applied patch from Raphael Neider to fix updating
2059         of FSR0 and touching only the modified bits,
2060         * src/pic16/genarith.c (various functions): added macros FENTRY to
2061         emit function prologue in comments,
2062         * src/pic16/pcode.h: added functions debugf2, debugf3,
2063         * src/pic16/ralloc.c: partial fix for packForPush caused
2064         segmentation fault,
2065
2066 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2067
2068         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2069           <stsp AT users.sourceforge.net> with reversed byte order
2070         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2071
2072 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2073
2074         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2075           bug #1074377
2076         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2077         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2078
2079 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2080
2081         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2082
2083 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2084
2085         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2086           conditions,
2087           (setFromConditionArgs): friendly operand parser for peephole rules,
2088           (operandBaseName, operandsNotRelated): new peephole condition
2089           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2090           architecture specific register naming into account, handles n-way
2091           comparisons, and supports quoted literals
2092         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2093
2094 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2095
2096         * src/mcs51/peeph.def: fixed bug #1076940
2097
2098 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2099
2100         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2101
2102 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2103
2104         Adding support for replacing ljmps with sjmps in jumptables
2105         generated for switch statements. For now you need to set the
2106         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2107         Now 4 algorithms for mcs51 jumptable generation are used:
2108         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2109         addresses loaded pc-relative for up to 112 cases and stack-pushing
2110         target addresses loaded with offset from dptr for up to 256 cases.
2111
2112         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2113         * src/mcs51/main.c: adapted constants for switch table generation
2114         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2115
2116 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2117
2118         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2119         * support/regression/tests/bug1057979.c: added test for bug 1073386
2120
2121 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2122
2123         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2124         compilers
2125
2126 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2127
2128         * src/pic16/device.h,
2129         * src/pic16/genarith.c,
2130         * src/pic16/glue.c,
2131         * src/pic16/main.c,
2132         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2133
2134 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2135
2136         Large cummulative patch for pic16 port.
2137         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2138         to call when a stack overflow occurs,
2139         * (malloc.h): added CVS Id tag,
2140         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2141         variable,
2142         * added libc directory. The current version of LibC contains string
2143         functions, ctype functions and macros and some functions of the
2144         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2145         be extensively tested in the future. Standard disclaimer here.
2146         Library is not automatically build yet. But one can build it by
2147         invoking 'make' inside the libc directory.
2148         * added ADC library under libio. Preliminary version yet.
2149
2150         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2151         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2152         aopForRemat() now and not by pic16_aopOp(),
2153         * (pic16_popGetTempReg): removed warning messgae when allocating
2154         temporary registers, its a buggy feature and will be removed,
2155         * (pic16_popGet): set register instance field in AOP_CRY,
2156         * (pic16_outBitC): fixed for results in size greater than 1,
2157         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2158         * (pic16_storeForReturn): optimized return of 0,
2159         * (genCmp): experimental code for new genCmp which uses PIC18's
2160         special compare&skip instructions. Initial tests fail some times
2161         with variables grater than 1 byte in size, so new code is disabled,
2162         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2163         a single bit,
2164         * (genCast): began a fix to optimize the casting of a bit to another
2165         bit, now assigning a bitfield to another bitfield will fail, sorry,
2166         * src/pic16/main.c: disabled the use of lr-support feature,
2167         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2168         * added some function prototypes, added function _debugf prototype,
2169         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2170         bits with offset (case PO_GPR_BIT),
2171         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2172         command line,
2173         * (isBankInstruction): modified to return 0 for no banking instruction,
2174         and 1 for banking instruction,
2175         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2176         caused stop processing pCodes after a inline assembly block,
2177         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2178         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2179         registers when it shouldn't,
2180         * src/pic16/ralloc.c (allocReg): add preliminary support for
2181         supporting a limited set of temporary registers,
2182
2183 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2184
2185         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2186           genDataPointerSet): ensure assignments always copy in MSB to LSB
2187           order,
2188           (loadRegFromAop): recognize CLRH optimization,
2189           (genFunction): optimize RECEIVE iCodes in reentrant functions
2190
2191 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2192
2193         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2194           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2195           selected.
2196         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2197         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2198           contiguous with data
2199
2200 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2201
2202         * device/lib/_gptrget.c (_gptrget),
2203         * device/lib/_gptrgetc.c (_gptrgetc),
2204         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2205           instead of sjmp to ret
2206         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2207           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2208
2209 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2210
2211         * .version: bumped version to 2.4.7
2212         * device/lib/_gptrget.c (_gptrget): is now _naked
2213         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2214         * device/lib/_gptrput.c (_gptrput): is now _naked
2215         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2216           (createFunction): fixed xstack
2217         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2218         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2219           or bit either,
2220           (geniCodeCritical): store original interrupt state in an iTemp bit
2221           var unless stack-auto
2222         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2223         * src/SDCCmain.c (setIncludePath): added include/target to search path
2224         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2225         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2226           prototype,
2227           (processFuncArgs): put bit vars in bit area
2228         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2229           unsaveRBank): fixed xstack,
2230           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2231           (genFunction, genEndFunction): fixed xstack,
2232           (genAssign): optimization don't walk backwards through mem
2233         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2234         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2235         * support/regression/Makefile: also make library (for stack-auto) when
2236           making "all" and added "test-mcs51-xstack-auto"
2237         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2238         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2239         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2240         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2241         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2242           make-library by MAKE_LIBRARY
2243         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2244           regression tests for xstack
2245         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2246         * support/regression/tests/critical.c: test for critical on mcs51
2247
2248 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2249
2250         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2251           built version of sdcc instead of installed version
2252
2253 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2254
2255         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2256         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2257           vprintf.c now
2258         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2259         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2260           WARNING: remove device/lib/build/z80/printf.o by hand when
2261           updating from previous build!
2262         * device/lib/z80/printf.c: updated comment
2263         * support/regression/tests/bug1057979.c: test all ports now
2264         * support/regression/tests/bug1065458.c: file added
2265
2266 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2267
2268         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2269           *_start and *_end symbols for static functions
2270
2271 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2272
2273         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2274           and search crt0.o in all library paths,
2275           (setIncludePath): proper handling of --nostdinc,
2276           (setLibPath): proper handling of --nostdlib
2277         * support/regression/Makefile,
2278         * support/regression/ports/ds390/spec.mk,
2279         * support/regression/ports/gbz80/spec.mk,
2280         * support/regression/ports/hc08/spec.mk,
2281         * support/regression/ports/mcs51/spec.mk,
2282         * support/regression/ports/mcs51-large/spec.mk,
2283         * support/regression/ports/mcs51-stack-auto/spec.mk,
2284         * support/regression/ports/z80/spec.mk: use include and lib files from
2285           built version of sdcc instead of installed version
2286         * doc/sdccman.lyx: fixed typo in --nostdinc
2287
2288 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2289
2290         * src/pic/pcode.c,
2291         * src/pic/device.c,
2292         * src/pic/ralloc.c,
2293         * src/pic/gen.c : added support to generate code for struct bit fields.
2294
2295 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2296
2297         * as/xa51/xa_version.h,
2298         * device/include/errno.h,
2299         * device/include/regc515c.h,
2300         * device/lib/_itoa.c,
2301         * device/lib/_ltoa.c,
2302         * device/lib/ser_ir_cts_rts.c,
2303         * sim/ucsim/xa.src/glob.cc,
2304         * sim/ucsim/xa.src/inst_gen.cc,
2305         * sim/ucsim/xa.src/xa_bit.cc,
2306         * sim/ucsim/xa.src/xa_sfr.cc,
2307         * sim/ucsim/z80.src/inst_dd.cc,
2308         * sim/ucsim/z80.src/inst_fdcb.cc,
2309         * support/scripts/keil2sdcc.pl,
2310         * src/pic16/pic16.dsp,
2311         * src/pic16/pic16a.dsp: corrected cvs line endings
2312         * device/lib/printf_large.c: fixed bug 1057979
2313         * src/pic16/gen.c: fixed non-C standard code
2314         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2315         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2316         * support/regression/ports/mcs51/support.c: reload T1 asap
2317         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2318           pdata use and clear idata startup behaviour
2319         * support/regression/tests/bug1057979.c: added
2320
2321 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2322
2323         * device/examples/ds390/ow390/ad26.h,
2324         * device/examples/ds390/ow390/cnt1d.h,
2325         * device/examples/ds390/ow390/crcutil.c,
2326         * device/examples/ds390/ow390/ownet.h,
2327         * device/examples/ds390/ow390/owsesu.c,
2328         * device/examples/ds390/ow390/swt12.h,
2329         * device/examples/ds390/ow390/swtoper.c,
2330         * device/examples/ds390/ow390/temp10.h,
2331         * device/examples/ds390/ow390/thermodl.c,
2332         * device/examples/ds390/tinitalk/tinitalk.dsp,
2333         * device/examples/ds390/tinitalk/tinitalk.dsw,
2334         * device/examples/mcs51/clock/hw.h,
2335         * device/examples/mcs51/simple2/go.bat,
2336         * device/examples/serialcomm/windows/serial.h,
2337         * device/examples/xa51/dummy.c,
2338         * device/examples/xa51/hello.c,
2339         * device/include/80c51xa.h,
2340         * device/include/at89x051.h: corrected cvs line endings
2341
2342 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2343
2344         * src/pic16/main.c (options): added command line --gstack, to trace
2345         stack over/under flows,
2346         * added pragma 'wparam' to allow passing first byte of function
2347         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2348         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2349         call to __gstack_test function and sets up the symbol as extern,
2350         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2351         * popaop): added call to pic16_testStackOverflow,
2352         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2353         wparamList list,
2354         * (genCall, genPcall): now all parameters are passed via stack
2355         except in functions that are pass to wparam pragma in which WREG is
2356         used too,
2357         * (genPcall): REENTRANT flag is checked to see if variable prototype
2358         contains reentrant keyword, don't call a non-reentrant function, via
2359         a reentrant function pointer or vice versa, functions are never
2360         passed via WREG,
2361         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2362         D.Winkler,
2363         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2364         SIGSEGV when accessing a NULL register stucture,
2365         * (pic16_printGPointerType): modified to handle UPPER modifier for
2366         function initializers, changed prototype of function to simpler one,
2367         * (pic16_printIvalFuncPtr): check to see if function is already
2368         added in externs list,
2369         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2370         optimized a move from W to SFR with a move to the same register
2371         later after a CALL,
2372         * device/lib/pic16/debug: NEW directory, contains debug features
2373         which are enabled when linking with libdebug.lib, currently command
2374         line option --gstack enables stack pointer tracing for over/under
2375         flow, corresponding sources are in debug/gstack
2376
2377 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2378
2379         * doc/sdccman.lyx: updated SDCC version,
2380         * (PIC16 port): update list of command line options,
2381         * src/pic16/device.h (structure pic16_options_t): added field gstack
2382         to enable stack overflow tracing on push/pops,
2383         * src/pic16/device.c (statistics structure): added statistics
2384         structure,
2385         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2386         pic16_dump_int_registers): increase statistics counters for each
2387         * variable which is encountered
2388         * (pic16_dump_usection): emit each .udata variable to its own udata
2389         section,
2390         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2391         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2392         parameters via stack, otherwise use old scheme,
2393         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2394         assembler output file,
2395         * src/pic16/main.c: added command line options --gstack to enable
2396         push/pop tracing for stack overflow,
2397         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2398         instructions): added size of each instruction,
2399         * (pic16_countInstruction): estimate size of instructions in
2400         the_pFile list, inline assembly blocks are not counted,
2401         * (pic16_FixRegisterBanking): trace previous register usage, when
2402         banksel optimizations is greater than 0, don't emit a redudant
2403         banksel directive,
2404
2405 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2406
2407         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2408         * src/pic16/ralloc.c : applied same fix for pic16.
2409         * src/pic/gen.c : tidied it up a little.
2410
2411 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2412
2413         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2414         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2415
2416 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2417
2418         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2419
2420 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2421
2422         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2423         non-reentrant function __modsint in the interrupt function (thus
2424         corrupting math operations during serial I/O)
2425         * device/lib/ser_ir.c: as above, changed buffersize
2426         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2427         256.c,d for zeroing
2428         * doc/Makefile: added option -t for rsync
2429
2430 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2431
2432         * src/SDCCast.h (struct ast),
2433         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2434
2435 2004-10-20 Borut Razem <borut.razem AT siol.net>
2436
2437         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2438         package
2439
2440 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2441
2442         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2443         makefile targets,
2444         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2445         support functions to replace long sequences of MOVFF's from access
2446         bank registers to stack and vice versa,
2447         * src/pic16/device.h: added new field opt_flags, where optimization
2448         flags can be set to enable certain features,
2449         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2450         * pBlock, (genFunction, genEndFunction): surroung loop for
2451         saving/loading used registers in stack with PC_INFO pCodes,
2452         INF_LREGS. Code in between can then be optimized by pCode optimizer
2453         to support function calls,
2454         * (genDataPointerSet): fixed bug which loaded float fields in
2455         structures with corrupt data,
2456         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2457         in a standard way debug info on stderr. Feature used for developing
2458         and debugging only,
2459         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2460         obsolete chunks of code,
2461         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2462         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2463         * pic16/src/pcode.c (pic16_newpCodeInfo,
2464         * (pic16_newpCodeOpLocalRegs),
2465         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2466         feature,
2467         * (pic16_pCodeConstString): printing of the initial value of a
2468         symbol as a comment is inhibited since parsing was already done by
2469         copyStr and output is corrupt,
2470         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2471
2472 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2473
2474         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2475
2476 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2477
2478         * as/mcs51/lkarea.c: removed old K&R style,
2479           (lnksect): changed check on boundary error,
2480           (lnksect2): changed check on boundary error,
2481           (lnksect2): extend XSTK to end of page if size = 1
2482         * as/mcs51/lkmain.c: removed old K&R style,
2483           (Areas51): create l_IRAM symbol
2484         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2485         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2486           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2487         * device/lib/_mullong.c: added version to be compiled with xstack
2488         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2489         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2490         * device/lib/mcs51/crtxstack.asm: fixed comment
2491         * src/SDCCglue.c: maxInterrupts defaults to 0,
2492           (emitMaps): added pdata,
2493           (createInterruptVect): (re)moved default,
2494           (glue): added pdata,
2495           (glue): moved __start__xstack to XSTK with default size 1
2496         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2497           and options.float_rent when options.stackAuto is set,
2498           (linkEdit): only write XDATA_NAME if provided on command line
2499         * src/SDCCmem.h,
2500         * src/SDCCmem.c: added pdata
2501         * src/port.h: added pdata_name to PORT
2502         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2503           (saveRegisters, unsaveRegisters): removed usage of B,
2504           (genMinus): fixed accumulator clash,
2505           (genJumpTab): added comment, this needs another look
2506         * src/mcs51/gen.c: added check for "B in use" paranoia,
2507           added pushB() and popB()
2508         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2509           chance
2510         * src/avr/main.c,
2511         * src/ds390/main.c,
2512         * src/hc08/main.c,
2513         * src/mcs51/main.c,
2514         * src/pic/main.c,
2515         * src/pic16/main.c,
2516         * src/xa51/main.c,
2517         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2518           added PSEG (PAG,XDATA) or NULL to port specifier
2519         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2520         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2521           (_mcs51_genInitStartup): removed __start__xstack equ,
2522           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2523         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2524         * src/z80/gen.c (_rleAppend): fixed warnings
2525         * support/regression/tests/zeropad.c: added pdata test
2526         * .version: bumped to 2.4.6
2527
2528 2004-10-17 Borut Razem <borut.razem AT siol.net>
2529
2530         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2531         as a part of nightly build
2532
2533 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2534
2535         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2536         WREG holds the first byte function parameters,
2537         * (aopForSym): take special case for symbols which are in FARSPACE
2538         but in CODESPACE too,
2539         * (assignResultValue): modified to take into account _G.useWreg,
2540         * (genCall): don't use wreg for parameter passing when function is
2541         declared as reentrant, too, added optimization INCF to stack
2542         pointer when stack parameter count is 1,
2543         * (genFunction, genEndFunction): refurnished and fixed to not using
2544         wreg for passing parameters when function has varargs or is
2545         reentrant, fixed bug with symbol name compare for generating
2546         functions in absolute address,
2547         * (pic16_storeForReturn): refurnished,
2548         * (genCmp): began writing a new version of the function, not ready
2549         yet, therefore it is disabled,
2550         * (genAssign): do not read code memory when assigning a function to
2551         a pointer function,
2552         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2553         array of characters, not pointer,
2554         * (pic16initialComments): in debug mode emit an .ident directive for
2555         the assembler,
2556         * (_process_pragma): emit a new warning type (internal to pic16)
2557         when setting stack to default length, emit a similar warning when
2558         placing a function at absolute address and address is not word aligned
2559         * (_pic16_parseOptions): added 'return TRUE' statement,
2560         * (_pic16_linkEdit): if compiling a source, then add the source's
2561         file object, first in the list of objects to link,
2562
2563 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2564
2565         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2566         * src/pic/main.c : removed VC warning.
2567         * src/pic/gen.c : changed comment.
2568
2569 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2570
2571         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2572         reference to a deprecated symbol _GPTRREG was causing failure to
2573         link. Thanks G. M. Gallant for the info.
2574
2575 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2576
2577         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2578         comments for Bugs item #954788.
2579
2580 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2581
2582         * src/pic16/device.c (pic16_dump_gsection,
2583         * pic16_groupRegistersInSection): handle symbols declared to be in
2584         access bank differently,
2585         * src/pic16/gen.c (struct _G): added field resDirect,
2586         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2587         send values read from stack directly to result and don't allocate
2588         temporary values,
2589         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2590         same registers,
2591         * (pic16_sameRegsOfs): NEW,
2592         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2593         free because they were not allocated from temporary pool,
2594         * pic16_popRegFromString): workaround to fix a problem with
2595         allocating variables twice or never,
2596         * (genGenPointerGet): using PRODL instead of FSR0H,
2597         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2598         instead of FSR0H,
2599         * (genAssign): take advantage of the _G.resDirect flag,
2600         * (genCast): around line 11844, use mov2f instead of directly
2601         MOVFF'ing between operands to account for literal values,
2602         * src/pic16/genutils.c: some new debug functions for gpsim have been
2603         added,
2604         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2605         float with integer part only,
2606         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2607         place variables in access bank
2608         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2609         updated sources to reflect recent changes in gen.c
2610
2611 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2612
2613         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2614         sources that searched for headers in installation path, now the
2615         device/include/pic16 is used,
2616         * src/pic16/glue.c (pic16glue),
2617         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2618         .line directives if not in debug mode, this suppresses assembler's
2619         warnings for ignored directives
2620
2621 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2622
2623         * src/port.h: made reset_regparms prototype void parameter explicit.
2624         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2625         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2626         * doc/sdccman.lyx: documented warning disabling and how to use
2627           printf_large to make it print floats.
2628         * device/include/stdbool.h: NEW
2629         * device/lib/_atof.c,
2630         * device/lib/_divuint.c,
2631         * device/lib/_divulong.c,
2632         * device/lib/expf.c,
2633         * device/lib/printf_large.c,
2634         * device/lib/sincosf.c,
2635         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2636         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2637           a completely reentrant lib.
2638
2639 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2640
2641         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2642         * device/include/pic16/stdio.h: fixed bug with colon
2643
2644 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2645
2646         * device/include/pic16/stdio.h,
2647         * device/include/pic16/stdlib.h,
2648         * device/include/pic16/math.h: NEW
2649         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2650         declared as _naked to reduce overhead
2651         * device/lib/Makefile.in (target port-specific-objects-pic16):
2652         changed * to *.* so to ignore the CVS directory,
2653         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2654         stacked variables back in stack,
2655         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2656         corruption
2657
2658 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2659
2660         * .version: bumped version number to 2.4.5
2661         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2662         * support/Util/SDCCerr.c (messages structure): added entry for
2663         W_POSSBUG2
2664
2665         Large cumulative patch for pic16 port and libraries.
2666         * device/include/pic16/sdcc-lib.h,
2667         * device/include/pic16/stdarg.h,
2668         * device/include/asm/pic16/features.h,
2669         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2670         * device/include/pic16/float.h: changes reentrant keyword with
2671         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2672         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2673         updated target build-libraries to include objects from gptr,
2674         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2675         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2676         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2677         all function headings,
2678         * src/SDCCmain.c: added global parameter userIncDirsSet,
2679         * (parseCmdLine): when option -I is encountered add directory to
2680         userIncDirsSet too,
2681         * src/version.awk: added space between control and long,
2682         * src/pic16/NOTES: added some notes for the port,
2683         * src/pic16/gen.c: added prototype for mov2fp function,
2684         * (fReturnpic16[]): properly named return value registers,
2685         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2686         * (aopForSym): added code to handle symbols with onStack flag set,
2687         symbols onStack are allocated PTRSIZE bytes,
2688         * (aopFreeAsmop): handles special case where asmops are stack objects,
2689         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2690         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2691         added argument lock to trace flaws in allocating temporary registers
2692         when developing port,
2693         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2694         * (pic16_popRegFromString): reenabled allocating a direct register
2695         from string,
2696         * (assignResultValue): various beautifications,
2697         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2698         referenced function argument,
2699         * (genIpush): reenabled to allow stacked arguments, handles only
2700         ic->parmPush iCodes,
2701         * (genCall, genPcall): major changes to allow for variable argument
2702         functions, fixed a bug with falsely restoring stack pointer after
2703         returning from call,
2704         * (genFunction): pending code for critical function,
2705         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2706         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2707         * (genNearPointerGet): fixed bug with indirect reading, was always
2708         reading from INDF0
2709         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2710         pointers,
2711         * (genAddrOf): rewrote code to take address of a stacked function parameter
2712         * (genCast): fixed casting to generic pointer type,
2713         * src/pic16/gen.h: added AOP_STA,
2714         * (struct asmop): added field stk,
2715         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2716         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2717         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2718         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2719         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2720         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2721         generic pointers,
2722         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2723         and library paths,
2724         * (pic16_port structure): generic pointer size is set to 3,
2725         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2726         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2727         compiler warning,
2728         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2729         operand is an iTemp,
2730
2731 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2732
2733         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2734         * debugger/mcs51/simi.c: addapt new syntax of s51
2735
2736 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2737
2738         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2739         * src/pic16/pcode.c: commented out some calls to free() in order to
2740         fix bug #989576,
2741
2742 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2743
2744         * src/SDCCicode.h,
2745         * src/SDCCicode.c (isiCodeInFunctionCall),
2746         * src/avr/ralloc.c (selectSpil),
2747         * src/pic/ralloc.c (selectSpil),
2748         * src/pic16/ralloc.c (selectSpil),
2749         * src/ds390/ralloc.c (selectSpil),
2750         * src/hc08/ralloc.c (selectSpil),
2751         * src/xa51/ralloc.c (selectSpil),
2752         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2753         stack in the middle of a function call sequence (fixes bug #1020268)
2754         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2755         costs associated with the minimum switch case.
2756
2757 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2758
2759         * src/SDCC.lex: fixed bug #1030549
2760
2761 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2762
2763         * src/SDCCcse.h (struct cseDef),
2764         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2765         over a function call if the CSE is derived from a symbol whose
2766         address has been taken (fixes bug #1029883)
2767         * support/regression/tests/bug-1029883: a new regression test for
2768         this bug
2769
2770 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2771
2772         * src/hc08/gen.c (emitinline): fixed bug #1029778
2773         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2774         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2775         and starts toward RFE #905167)
2776
2777 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2778
2779         * src/pic16/gen.c (mov2f): New function to move an operand to
2780         another without considering if it is a literal or a register,
2781         * (pic16_sameRegs): don't check if they are both AOP_REG,
2782         * (AccRsh): removed andmask=0 lines,
2783         * (genLeftShift): duplicated to be improved in future versions,
2784         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2785         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2786         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2787         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2788         * (insertBankSwitch): fixed inserting banksel directives algorithm
2789         for instructions that follow a skip instruction, this fixes a report
2790         for broken subtraction code generation,
2791         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2792         iCode is a left op, just in case result and right share the same
2793         registers
2794
2795 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2796
2797         * src/hc08/main.c,
2798         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2799         preservation of HX
2800         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2801         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2802         on 2004-09-12; it was buggy
2803
2804 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2805
2806         * src/SDCCsymt.h: removed RESULT_CHECK
2807         * src/SDCCast.c,
2808         * src/SDCCglue.c,
2809         * src/SDCCval.c,
2810         * src/pic/glue.c,
2811         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2812
2813 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2814
2815         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2816         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2817         configuration values no more rejected by compiler, they are assigned
2818         to configuration registers with a warning message instead,
2819         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2820         the for-loop so last conf register is emitted too,
2821         * (_pic16_initPaths): link library libsdcc.lib by default,
2822         * (_hasNativeMulFor): modified test for multiplication according to
2823         Raphael Neider's remarks. Integer multiplication is also done with
2824         support functions,
2825         * device/include/pic16/pic18fregs.h: corrected type error in while
2826         testing and including 18f6720 header file
2827
2828 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2829
2830         * src/pic16/device.h (pic16_options): removed field use_crt,
2831         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2832         until an optimization to handle single bits is added,
2833         * (pic16_loadFSR0): moved before genUnpackBits,
2834         * (genAnd): some white lines removed,
2835         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2836         leave_reset flags in pic16_options when using crt modules,
2837
2838 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2839
2840         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2841           for bugs 898889 & 979599. Also used some safer print instructions.
2842
2843 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2844
2845         * src/pic16/device.h (pic16_options_t): added field use_crt,
2846         crt_name, no_crt,
2847         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2848         catch a probable future bug,
2849         * src/pic16/gen.c: aopIdx function commented out,
2850         * (genAssign): commented out old code which used aopIdx,
2851         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2852         code, added if conditionals to take into account the --use-crt
2853         command line options,
2854         * src/pic16/main.c (pic16_optionsTable): added new command line
2855         options, --use-crt= and --no-crt,
2856         * (_pic16_linkEdit): now the proper crt object is added in the
2857         linker command line except than when --no-crt is specified,
2858         * src/pic16/pcode.c,
2859         * src/pic16/pcode.h: added some structures and functions for a new
2860         optimization scheme to compansate for instruction overhead between
2861         same iCodes, this scheme is currently under development and is not
2862         working in any way,
2863         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2864         to && operator,
2865         * device/lib/pic16/startup/crt0i.c,
2866         * device/lib/pic16/startup/crt0iz.c: added global char variable
2867         __uflags to force the generation of an idata section
2868
2869 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2870
2871         * doc/Makefile,
2872         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2873         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2874
2875 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2876
2877         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2878         Frieder) and clarified the default code optimization mode
2879
2880 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2881
2882         * src/SDCC.lex (doPragma, process_pragma),
2883         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2884         "opt_code_size", and "opt_code_balanced"
2885         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2886         regrouped options by category, added support for category headers
2887         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2888         and "--opt-code-size"
2889         * doc/sdccman.lyx: documented these new options and pragmas
2890         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2891         preference into account
2892
2893 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2894
2895         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2896           geniCodePreDec): Fixed bug 904237 by generating a warning
2897         * src/SDCCerr.h,
2898         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2899
2900 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2901
2902         * src/pic/device.c : When no max ram set validate full memory range.
2903         * src/pic/pcode.c,
2904         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2905
2906 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2907
2908         * device/lib/_gptrget.c,
2909         * device/lib/_gptrput.c: updated comment
2910         * device/lib/calloc.c,
2911         * device/lib/free.c,
2912         * device/lib/malloc.c,
2913         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2914         * src/SDCCcse.c (cseBBlock),
2915         * src/SDCCicode.c (printOperand, geniCodeArray),
2916         * src/SDCCicode.h (struct operand): fixed bug 868103
2917         * support/regression/tests/bug-868103.c: added
2918         * src/SDCCast.c (searchLitOp),
2919         * src/SDCCcse.h (struct cseDef),
2920         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2921         * src/SDCCicode.h (struct operand),
2922         * src/SDCCsymt.h (struct sym_link),
2923         * src/avr/gen.c (hasInc),
2924         * src/ds390/gen.c (hasInc),
2925         * src/hc08/gen.c (genPlusIncr, hasInc),
2926         * src/mcs51/gen.c (hasInc),
2927         * src/pic16/glue.c (pic16_printIvalChar),
2928         * src/pic16/ralloc.c (regWithIdx),
2929         * src/xa51/gen.c (hasInc) : removed warnings
2930         * src/SDCCast.c (createBlock): added comment ???
2931         * src/hc08/ralloc.c: updated comments
2932
2933 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2934
2935         * doc/sdccman.lyx: updated section on switch statements, added
2936         section about semaphore locking
2937         * doc/Makefile: added option -info for latex2html
2938         * device/lib/_gptrget.c,
2939         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2940
2941 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2942
2943         * src/pic/device.h,
2944         * src/pic/device.c,
2945         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2946          maxram is less than 0x100.
2947
2948 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2949
2950         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2951
2952 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2953
2954         * src/port.h,
2955         * src/mcs51/main.c,
2956         * src/ds390/main.c,
2957         * src/z80/main.c,
2958         * src/hc08/main.c,
2959         * src/pic/main.c,
2960         * src/pic16/main.c,
2961         * src/avr/main.c,
2962         * src/xa51/main.c
2963         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2964         a jump table is the best form for a switch statement, including
2965         automatic insertion of missing cases to make the case range
2966         continuous. Developed in collaboration with Frieder Ferlemann.
2967
2968 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2971         accumulator result if it needs sign extension
2972
2973 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2974
2975         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2976
2977 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2978
2979         * device/lib/gbz80/printf.c,
2980         * device/lib/z80/printf.c: removed define for NULL
2981
2982 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2983
2984         * as/xa51/xa_link.c,
2985         * device/examples/ds390/ow390/ad26.c,
2986         * device/examples/ds390/ow390/cnt1d.c,
2987         * device/examples/ds390/ow390/counter.c,
2988         * device/examples/ds390/ow390/ds2480.h,
2989         * device/examples/ds390/ow390/ds2480ut.c,
2990         * device/examples/ds390/ow390/findtype.c,
2991         * device/examples/ds390/ow390/gethumd.c,
2992         * device/examples/ds390/ow390/owllu.c,
2993         * device/examples/ds390/ow390/ownetu.c,
2994         * device/examples/ds390/ow390/swt12.c,
2995         * device/examples/ds390/ow390/swtloop.c,
2996         * device/examples/ds390/ow390/temp.c,
2997         * device/examples/ds390/ow390/temp10.c,
2998         * device/examples/ds390/ow390/thermo21.c,
2999         * device/examples/ds390/ow390/tinilnk.c,
3000         * device/examples/ds390/ow390/tstfind.c,
3001         * device/examples/serialcomm/windows/serial.cpp,
3002         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3003         * device/include/reg51.h: fixed line endings for cvs
3004
3005 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3006
3007         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3008         packRegsForAccUse, packRegisters): new accumulator register
3009         packing algorithm
3010         * support/regression/ports/hc08/support.c (_putchar): suppress
3011         warning of unused variable
3012         * src/SDCCicode.c: added SWAP entry to codeTable
3013
3014 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3015
3016         * device/lib/sprintf.c: forgot to add this file before previous commit
3017
3018 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3019
3020         * src/pic16/gen.c (genPackBits): added operand right in function
3021         parameters, load result directly if p_type is POINTER (that is
3022         called by genNearPointerSet)
3023         * (genUnPackBits): added operand left in function parameters,
3024         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3025         FSR0 if accessing bitfields,
3026
3027 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3028
3029         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3030           _print_format; updated printf, sprintf, vsprintf
3031         * device/include/asm/default/features.h: corrected comment/define
3032         * device/lib/Makefile.in: added sprintf.c
3033         * device/lib/libsdcc.lib: added sprintf module
3034         * device/lib/printf_large.c,
3035         * device/lib/vprintf.c,
3036         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3037           into these 3 files
3038         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3039         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3040         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3041           hc08 test
3042         * support/regression/tests/zeropad.c: define idata as data for hc08
3043
3044 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3045
3046         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3047         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3048         labels are referenced at least once (even if a reference is not found)
3049         * src/hc08/gen.c (emitcode): set isComment flag for comments
3050         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3051         loads), rules 6a..6b (optimize jumps to return)
3052
3053 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3054
3055         * device/lib/acosf.c (acosf),
3056         * device/lib/asinf.c (asinf),
3057         * device/lib/atanf.c (atanf),
3058         * device/lib/ceilf.c (ceilf),
3059         * device/lib/cosf.c (cosf),
3060         * device/lib/coshf.c (coshf),
3061         * device/lib/cotf.c (cotf),
3062         * device/lib/fabsf.c (fabsf),
3063         * device/lib/floorf.c (floorf),
3064         * device/lib/log10f.c (log10f),
3065         * device/lib/logf.c (logf),
3066         * device/lib/sinf.c (sinf),
3067         * device/lib/sinhf.c (sinhf),
3068         * device/lib/sqrtf.c (sqrtf),
3069         * device/lib/tanf.c (tanf),
3070         * device/lib/tanhf.c (tanhf),
3071         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3072         replaced all instances of "reentrant" in the library functions
3073         defined in math.h with this macro.
3074         * support/regression/tests/float_trans.c: reenabled test for hc08
3075
3076 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3077
3078         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3079         erroneously deleted
3080
3081 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3082
3083         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3084         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3085         multi-byte volatile operands are used
3086         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3087         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3088         initialization to area GSINIT0 so that it would always precede
3089         any static initializers in GSINIT
3090         * support/regression/tests/zeropad.c: fixed idata define for hc08
3091         * support/regression/tests/bug-927659.c,
3092         * support/regression/tests/float_trans.c: disabled tests for hc08
3093         pending missing library routines
3094         * .version: increased version number to 2.4.4 - hc08 port now passes
3095         regression tests
3096
3097
3098 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3099
3100         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3101         * Makefile.common.in,
3102         * as/Makefile,
3103         * as/hc08/Makefile.in,
3104         * as/mcs51/Makefile.in,
3105         * as/z80/Makefile.in,
3106         * debugger/mcs51/Makefile.in,
3107         * device/include/Makefile.in,
3108         * device/lib/Makefile.in,
3109         * doc/Makefile,
3110         * link/Makefile,
3111         * link/z80/Makefile.in,
3112         * packihx/Makefile.in,
3113         * sim/ucsim/main_in.mk,
3114         * sim/ucsim/avr.src/Makefile.in,
3115         * sim/ucsim/doc/Makefile.in,
3116         * sim/ucsim/gui.src/serio.src/Makefile.in,
3117         * sim/ucsim/hc08.src/Makefile.in,
3118         * sim/ucsim/s51.src/Makefile.in,
3119         * sim/ucsim/xa.src/Makefile.in,
3120         * sim/ucsim/z80.src/Makefile.in,
3121         * src/Makefile.in,
3122         * support/cpp2/Makefile.in,
3123         * support/librarian/Makefile,
3124         * support/makebin/Makefile: added DESTDIR to the install path proposed
3125         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3126         * doc/sdccman.lyx: added DESTDIR documentation
3127
3128 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3129
3130         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3131         instruction for interrupt handlers, use fast returns when returning
3132         from high priority interrupts
3133
3134 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3135
3136         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3137         code generation
3138         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3139         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3140         bugs, ported much of Bernhard's code from mcs51
3141         * src/mcs51/gen.c (genSend),
3142         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3143         than one when calling a reentrant function
3144         * device/lib/_mullong.c: defined an alternate struct layout for big
3145         endian ports (hc08)
3146
3147 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3148
3149         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3150         test
3151
3152 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3153
3154         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3155         are sane and complete before asking the port its prefered parameter
3156         passing method (fixes bug #1017633)
3157         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3158         and _ret3
3159
3160 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3161
3162         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3163         problem in bitfields >= 8 bits.
3164
3165 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3166
3167         * src/SDCCsymt.c: undid changes that were not meant to be committed
3168
3169 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3170
3171         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3172
3173 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3174
3175         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3176           copied and wrong bit got inverted
3177
3178 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3179
3180         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3181         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3182         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3183         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3184         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3185         assignments to bitfields at known addresses
3186         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3187         reads from bitfields at known addresses
3188         * src/hc08/ralloc.c (packRegisters),
3189         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3190         genhc08Code): optimize pointer get values used as conditionals
3191         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3192         and branch
3193
3194 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3195
3196         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3197         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3198         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3199         as conditionals
3200
3201 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3202
3203         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3204
3205 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3206
3207         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3208         related problems
3209
3210 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3211
3212         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3213
3214 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3215
3216         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3217         mcs51 port
3218
3219 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3220
3221         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3222
3223 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3224
3225         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3226         cases use more compact code.
3227
3228 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3229
3230         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3231
3232 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3233
3234         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3235
3236 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3237
3238         * src/SDCCsymt.h,
3239         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3240         parameter of changePointer() from symbol* to sym_link*
3241         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3242         * src/SDCCsymt.c (compareType): void* type is castable to other
3243         pointers, but not necesarily an exact match.
3244         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3245         is no longer blindly treated as an exact match.
3246         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3247
3248 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3249
3250         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3251
3252 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3253
3254         * src/pic/gen.c,
3255         * src/pic/pcode.c,
3256         * src/pic/ralloc.h,
3257         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3258
3259 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3260
3261         * src/pic/device.c,
3262         * src/pic/device.h,
3263         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3264
3265 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3266
3267         * src/mcs51/gen.c (emitcode): fixed bug #992819
3268
3269 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3270
3271         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3272           there's no need to make it worse
3273
3274 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3275
3276         * src/mcs51/ralloc.c (deassignLR),
3277         * src/ds390/ralloc.c (deassignLR),
3278         * src/hc08/ralloc.c (deassignLR),
3279         * src/z80/ralloc.c (deassignLR),
3280         * src/pic/ralloc.c (deassignLR),
3281         * src/pic16/ralloc.c (deassignLR),
3282         * src/avr/ralloc.c (deassignLR),
3283         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3284         rlivePoint): fixed another part of bug #971834
3285
3286 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3287
3288         * src/z80/main.c: enabled "critical" keyword
3289         * src/z80/mappings.i,
3290         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3291         functions (fixes bug #979646)
3292         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3293
3294 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3295
3296         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3297           such as c:\mydir.
3298
3299 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3300
3301         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3302           doesn't disable too much optimizations
3303
3304 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3305
3306         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3307
3308 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3309
3310         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3311
3312 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3313
3314         * src/pic/gen.c tidied up tabs
3315         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3316         * src/pic/main.c tidied up tabs
3317         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3318         * src/pic/pcoderegs.c tidied up tabs
3319         * src/pic/ralloc.c tidied up tabs
3320
3321 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3322
3323         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3324         to S_FIXED for pic16 port and when symbol is not in level 0,
3325         allocate for S_REGISTER storage class and pic16 port, too,
3326         * src/pic16/device.h: prototype for checkSym,
3327         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3328         * (pic16_assignConfigWordValue): test the value and the mask to
3329         validate that the value is suitable for the configuration word,
3330         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3331         collect extern declared symbols, don't emit symbol twice, check
3332         first if symbol is in publics set first,
3333         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3334         * added command line '--fstack' which enables an experimental
3335         feature for stack access, too buggy to be used yet...
3336         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3337         * (pic16_allocDirReg): when register has storage class S_REGISTER
3338         allocate in pic16_dynAccessRegs,
3339         * device/include/pic16/pic18f????.h: modified configuration word
3340         naming convention, words started as CONFIG0H but should be CONFIG1H
3341
3342 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3343
3344         * device/include/mcs51reg.h: fixed bug 970993
3345
3346 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3347
3348         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3349         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3350         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3351         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3352         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3353         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3354           error/warning numbers,
3355           added function setWarningDisabled()
3356         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3357         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3358           _memcmp.c _memmove.c calloc.c realloc.c free.c
3359         * support/regression/tests/malloc.c: added tests for new functionality
3360         * support/regression/tests/zeropad.c: added tests for truncated initializers
3361           and initialized char arrays starting with '\x0'
3362         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3363
3364 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3365
3366         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3367
3368 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3369
3370         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3371         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3372         peephole 177.e. Thanks to anonymous
3373
3374 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3375
3376         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3377         function isn't used in the source but referenced as a
3378         variable initializer then declare it as extern in .asm file
3379
3380 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3381
3382         * .version: increased version number to 2.4.3
3383
3384         Adding version extension according to ChangeLog CVS revision
3385         * src/Makefile.in (target all): added dependency 'version.h'
3386         * (rule version.h): added rule to create version.h from ChangeLog,
3387         * (rule dep): added dependency version.h,
3388         * src/version.awk: AWK script to create version.h
3389         * src/SDCCdwarf2.c (dwWriteModule),
3390         * src/SDCCglue.c (initialComments),
3391         * src/SDCCmain.c (printVersionInfo): modified to write after
3392         version string the version extension number,
3393         * src/SDCCutil.c: included "version.h"
3394         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3395         number,
3396         * src/SDCCutil.h: added prototype for getBuildNumber
3397
3398         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3399         includeDirsSet, too,
3400         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3401         const char [] is found in function prototype...
3402
3403         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3404         moving to WREG with source is already in WREG,
3405         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3406         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3407         * (aopForSym): stack'ed symbols are partially supported, added
3408         if-clause to support symbols in FARSPACE,
3409         * (sameRegs): added test for AOP_ACC to see if registers are same,
3410         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3411         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3412         * (pic16_popRegFromString): will not allocate a new register if it
3413         doesn't find one by name, bug may have introduced...
3414         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3415         * (genIpush): revived to use pic16 port's stack,
3416         * (genAddrOf): added incomplete case for stack'ed operand,
3417         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3418         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3419         can handle multibyte operands,
3420         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3421         * (pic16initialComments): added message for MPLAB compatibility
3422         mode enabled,
3423         * src/pic16/main.h: prototype for pic16_mplab_comp,
3424         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3425         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3426         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3427         because of increased complexity of procedure,
3428         * (_process_pragma): stack pragma changed to format 'stack pos len',
3429         emit symbol '_stack_end' to conform with gplink,
3430         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3431         to search for register,
3432         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3433         PO_GPR_REGISTER,
3434         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3435         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3436         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3437         case for PO_GPR_REGISTER,
3438         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3439         dies, the new era is ahead !...
3440         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3441         pic16_dynInternalRegs,
3442         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3443         * (pic16_allocDirReg): minor optimizations and bug fixes,
3444         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3445
3446         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3447         load stack and frame pointer with address of 'stack_end' symbol
3448
3449 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3450
3451         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3452         without source code but only variable initializers
3453
3454 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3455
3456         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3457         external are not declared as extern to reduce overhead while linking
3458
3459 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3460
3461         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3462
3463 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3464
3465         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3466           Yee Keat for the patch
3467         * src/SDCCast.c (decorateType): fixed bug #979599
3468         * src/ds390/gen.h: removed local fReturnSizeDS390
3469         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3470         * src/ds390/gen.c (genAnd, genOr, genXor),
3471         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3472
3473 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3474
3475         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3476         add relFilesSet to $3, manipulate $2 to handle linking of object
3477         files without source files in command line,
3478         * device/include/pic16 (all headers): added ID location macros,
3479         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3480         entries for ID location bytes,
3481         * (pic16_assignIdByteValue): NEW,
3482         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3483         added field dumpcalltree to pic16_options_t,
3484         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3485         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3486         emitting rFalseIfx label after check_carry label,
3487         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3488         pic16_emitDIRegs), NEW
3489         * (pic16glue): dump .calltree file when option --calltree found,
3490         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3491         * (_pic16_genAssemblerPreamble): emit ID locations after
3492         configuration registers,
3493         * (pic16_linkCmd): modifications of the link command,
3494         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3495         * (pic16_pCodeInitRegisters): don't init stack registers,
3496         * (pic16_findPrevInstruction): fixed bug,
3497         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3498         bug with immediate registers,
3499         * (buildCallTree): traces stack push and pop,
3500         * (pct2): dump also stack usage for each function,
3501         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3502         * (pic16_allocDirReg): various modifications,
3503         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3504         fixed to 1,
3505
3506 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3507
3508         * src/pic16/pcode.c: removed buggy double colon
3509
3510 2004-07-01 Borut Razem <borut.razem AT siol.net>
3511
3512         * support/scripts/sdcc.nsi: added include/pic16 to setup
3513
3514 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3515
3516         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3517         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3518         target 'clean',
3519         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3520         specific command line arguments. Also added sample lkr script
3521         for placing a variable at a specific memory bank.
3522         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3523         at a specific memory bank,
3524         * (pic16_dump_isection): fixed bug which caused string literals to
3525         be omitted when dumping idata section,
3526         * (pic16_groupRegistersInSection): added code to handle registers
3527         in specific memory banks,
3528         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3529         public, all references are renamed too,
3530         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3531         AOP_DPTR2,
3532         * (pic16_storeForReturn): added case to handle when dest is WREG,
3533         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3534         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3535         pic16_rel_udata, check to see if that register is marked as being
3536         a member of a specific memory bank,
3537         * (pic16_printIvalCharPtr): added code to add string literals either
3538         to code or the idata sections,
3539         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3540         also accept the 'udata' pragma,
3541         * src/pic16/main.h: new structure types sectName and sectSym
3542         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3543         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3544         * (pic16_findPrevInstruction): fixed, it returned nothing,
3545         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3546         instruction combinations,
3547         * (pic16_FixRegisterBanking): heavily reorganised,
3548         * (pic16_AnalyzeBanking): if generating banksel directives is
3549         disabled, then don't call FixRegisterBanking at all,
3550         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3551         completely removed,
3552         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3553
3554 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3555
3556         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3557         Phuah Yee Keat <yk.phuah AT nestac.com>
3558
3559 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3560
3561         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3562         correctly the IVT even if it is relocated to some other location
3563
3564 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3565
3566         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3567         * device/include/pic16/pic18f2220.h: NEW,
3568         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3569         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3570         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3571         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3572         nodefaultlibs, ivt_loc is the location of the interrupt vector
3573         table, and nodefaultlibs signs that default libraries should not be
3574         linked in link stage,
3575         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3576         according to --ivt-loc argument,
3577         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3578         when pragma stack is found,
3579
3580 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3581
3582         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3583         256 (range check), 257 (do while), 258.a-f (bit banging
3584         f.e. on 3-wire SPI bus)
3585
3586 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3587
3588         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3589         variables used exclusively within a loop
3590
3591 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3592
3593         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3594
3595 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/SDCClrange.c (computeClash): fixed bug #971834
3598
3599 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3600
3601         * src/mcs51/gen.c (genCmp): fixed bug #975903
3602         * src/hc08/gen.c (operandsEqu),
3603         * src/ds390/gen.c (operandsEqu),
3604         * src/z80/gen.c (operandsEqu),
3605         * src/pic/gen.c (operandsEqu),
3606         * src/pic16/gen.c (operandsEqu),
3607         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3608         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3609
3610 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3611
3612         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3613
3614 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3615
3616         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3617         default case in switch statement,
3618         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3619         to eliminate problem with initialisation of pointers, but problem
3620         still exists,
3621         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3622         * (emitStaticSegment): removed various lines emitting debug info,
3623         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3624         added processor registers for utilizing EEPROM,
3625         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3626         configurable and set 8
3627
3628 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3629
3630         * .version: increased version number to 2.4.2,
3631
3632         Cumulative patch for pic16 port
3633         * src/pic16/device.c: changed scheme to dump initial values for
3634         variables in idata segment, all print_idata* functions were removed,
3635         now the pic16_printIval* will be called,
3636         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3637         * _pic16_printPointerType, pic16_printPointerType,
3638         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3639         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3640         NEW, similar to the respective functions in SDCCglue.c,
3641         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3642         way, emitting hex bytes,
3643         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3644
3645 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3646
3647         * src/avr/ralloc.c (serialRegAssign),
3648         * src/xa51/ralloc.c (serialRegAssign),
3649         * src/pic/ralloc.c (serialRegAssign),
3650         * src/pic16/ralloc.c (serialRegAssign),
3651         * src/hc08/ralloc.c (serialRegAssign),
3652         * src/z80/ralloc.c (serialRegAssign),
3653         * src/ds390/ralloc.c (serialRegAssign),
3654         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3655
3656 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3657
3658         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3659         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3660
3661 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3662
3663         Cumulative patch for pic16 port:
3664         * src/pic16/device.h (typedef PIC16_device) modified fields for
3665         defining microcontrollers,
3666         * src/pic16/device.c: added new info for all devices in Pics16 array,
3667         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3668         to be optimised out by the pCode optimiser,
3669         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3670         specially, bug reported by G.M. Gallant,
3671         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3672         as force'd so that cannot be optimised out by pCode optimiser,
3673         * src/pic16/pcode.c,
3674         * src/pic16/pcodepeeph.c,
3675         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3676         they are disabled by default, but can be enabled explicit with
3677         command argument --denable-peeps, for testing,
3678         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3679         --pomit-ivt in COMPILE_FLAGS
3680
3681 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3682
3683         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3684           compilation on MSVC
3685
3686 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3687
3688         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3689
3690 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3691
3692         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3693         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3694
3695 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3696
3697         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3698         would only assign 0x300001 register.
3699
3700 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3701
3702         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3703         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3704
3705 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3706
3707         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3708         for ds80c400
3709         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3710         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3711         added peephole 254 (left shift), 255 (jump table)
3712
3713 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3714
3715         * device/lib/Makefile.in: removed comment line with model-pic16,
3716         * (target port-specific-objects-pic16): the libraries and objects
3717         are copied to the build directory form the device/lib/pic16/bin
3718         directory
3719
3720         Cumulative patch concerning pic16 port:
3721         * library directory has been re-organized,
3722         * added support for PIC18F1220,
3723         * added headers and library sources for chips 18f1220,18f6520,
3724         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3725
3726         * configuration registers setting has changed, now each supported
3727         device has a complete description of the registers it uses,
3728         * all initialisations are moved to idata sections, these section
3729         can be absolute or relocatable,
3730         * fixed initialisation of codespace variables,
3731         * fixed warning about PCLATU and gpsim,
3732         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3733         * (genAssign): use table reads when assigning from variables in codespace,
3734         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3735         char/int variables placed in codespace,
3736         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3737         registers set in .asm file, no need for --pomit-config-words anymore,
3738         * (pic16glue): some 8051 legacy segments are commented out
3739         (to be removed completely),
3740         * added support for alternative assembler and linker with --asm=
3741         and --link= command line arguments,
3742         * peepholes are disabled automatically in the port, no need to
3743         specify on command line,
3744         * port supports natively char/int/long multiplication, but converts
3745         all divisions to support functions,
3746         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3747         to the file set in variable $2,
3748         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3749         strings in ASCII format and not in hex,
3750         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3751         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3752         allocate proper register if iCodes aren't temporary,
3753
3754 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3755
3756         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3757
3758 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3759
3760         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3761         is commented out
3762
3763 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3764
3765         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3766         computed address is reused
3767         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3768         multi-byte bitfields
3769
3770 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3771
3772         * src/z80/gen.c: (genArrayInit): must check for pointers too
3773
3774 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3775
3776         * support/regression/tests/zeropad.c: never meant to commit the
3777           nestedstruct test: removed, added check for GCC version
3778
3779 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3780
3781         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3782         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3783         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3784           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3785           bugs 928906 and 954082 half-empty initializers
3786         * src/SDCCsymt.h,
3787         * src/SDCCsymt.c (getAllocSize): added for above fix
3788         * src/z80/gen.c (genArrayInit): fixed bug 741044
3789         * support/regression/tests/zeropad.c: added tests
3790
3791 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3792
3793         * src/pic16/device.c (pic16_dump_section): corrected bug which
3794         caused some symbols of the libraries to be misplaced
3795
3796 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3797
3798         * src/pic16/glue.c,
3799         * src/pic16/ralloc.h,
3800         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3801         to fix conflict with pic port
3802
3803 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3804
3805         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3806         externs configuration variables,
3807         * src/pic16/ralloc.h,
3808         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3809         prototype in header, commented out some debug messages
3810
3811 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3812
3813         * src/pic16/glue.c,
3814         * src/pic16/main.c,
3815         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3816         for gpasm COFF object generation. Thanks to D. Hawkins for
3817         his patch info
3818
3819 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3820
3821         * src/ds390/main.c,
3822         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3823         Brock for spotting this)
3824         * src/ds390/gen.c (genEndFunction),
3825         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3826         interrupt handler and critical. Disable push/pop optimizations when
3827         peephole optimizations disabled.
3828
3829 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3830
3831         Updated pic16 library sources and headers.
3832         * device/lib/pic16/pic18f*/ ,
3833         * device/include/pic16/*.h: modified to handle structured SFR
3834         definitions
3835
3836 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3837
3838         * src/port.h (PORT structure): added hook initPaths, now each
3839         port can declare its own default search paths,
3840         which can been seen with the --print-search-dirs option,
3841         see pic16 port for example,
3842         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3843         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3844         * (doPrintSearchDirs): NEW, replaces in a central manner the
3845         printing of search dirs which was split in set*Paths functions,
3846         * (main): added call to port->initPaths and doPrintSearchDirs,
3847         * src/avr/main.c,
3848         * src/ds390/main.c,
3849         * src/hc08/main.c,
3850         * src/izt/i186.c,
3851         * src/izt/tlcs900h.c,
3852         * src/mcs51/main.c,
3853         * src/pic/main.c,
3854         * src/pic16/main.c: modified port structures to reflect addition of
3855         initPaths hook,
3856
3857         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3858         * (pic16_dump_section): for registers in same address reserve memory once,
3859         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3860         to no_banksel,
3861         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3862         result is greater in size than right or left,
3863         * (pic16_genUMult8X8_8): there are some cases where the result can
3864         be 16 bits size, so handle these,
3865         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3866         * (pic16_outBitC): modified to emit pcodes,
3867         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3868         or not,
3869         * (genDivOneByte): implemented algorithm to divide 8-bits,
3870         * (genCmp): uncommented goto, but issues still exist,
3871         * (genAnd): fixed a bug with variables >8bits,
3872         * (genPackBits): optimization added that uses BCF/BSF to change a
3873         single bit,
3874         * (genAssign): fixed bug when assigning floating point literals,
3875         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3876         __sdcc_gsinit_startup label,
3877         * src/pic16/main.c (_pic16_init): removed search directory
3878         initialisations,
3879         * (_pic16_initPaths): NEW, used to initialise search directories,
3880         * (_hasNativeMulFor): support functions for all except char/int
3881         multiplication, and char division,
3882         * (PIC16_port struct): modified entry for native mul support,
3883         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3884         no_banksel option,
3885         * (buildCallTree): call to register_usage is ifdef'ed out,
3886
3887 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3888
3889         * device/include/string.h: applied Stas Sergeev's patch to make this
3890         header file compatible with the preprocessor -Wundef option
3891         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3892         failure (fixes bug #941458)
3893
3894 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3895
3896         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3897         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3898         that the variable, not the function, should be static
3899         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3900         to be consistent with non-literal case
3901
3902 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3903
3904         * src/SDCCast.c (isConformingBody): fixed bug #949967
3905         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3906         convilong): fixed bug #952086
3907
3908 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3909
3910         * src/SDCCmem.c (allocVariables): fixed bug #955321
3911
3912 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3913
3914         * src/hc08/main.c (_hc08_genAssemblerEnd),
3915         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3916         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3917         completely eliminated the use of a temporary file
3918         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3919         when more than one file linked
3920         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3921
3922 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3923
3924         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3925         which fixes bug #543481
3926         * support/regression/tests/bug-751703.c: fixed comments left from a
3927         cut and paste error
3928         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3929         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3930         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3931         scopes
3932         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3933         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3934         are now changed to underscores in moduleName
3935
3936 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3937
3938         * as/mcs51/lkmem.c: better fix for bug #954173
3939
3940 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3941         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3942
3943         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3944         * device/include/c8051f000.h,
3945         * device/include/c8051f120.h,
3946         * device/include/c8051f300.h,
3947         * device/include/c8051f310.h,
3948         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3949         PWM16) and detab'ed
3950
3951 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3952
3953         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3954         and mailing lists, doc'ed --no-peep-comments, removed reference
3955         to knoppix (newest version has no LyX/LaTeX), other minor changes
3956         * src/SDCCglue.c (glue): save 2 bytes stack space with
3957         option --main-return. The ljmp could probably be avoided too
3958
3959 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3960
3961         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3962
3963 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3964
3965         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3966         * src/SDCCopt.c (isLocalWithoutDef),
3967         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3968         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3969         (credit to Maarten Brock for patch #949363, on which this is based)
3970         * support/regression/tests/bug-751703.c: some test cases of extern used
3971         within inner scopes.
3972
3973 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3974
3975         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3976         SPEC_STRUCT
3977         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3978         struct definitions
3979         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3980         dwWriteLabel): fix to create valid debugger symbols even when
3981         the module name has non-alphanumeric symbols in it
3982         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3983         when a variable's allocation has been optimized away
3984
3985
3986 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3987
3988         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3989         * src/hc08/main.c,
3990         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3991         * src/mcs51/main.c,
3992         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3993         * src/ds390/main.c,
3994         * src/z80/gen.c (z80_emitDebuggerSymbol),
3995         * src/z80/main.c,
3996         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3997         * src/pic/main.c,
3998         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3999         * src/pic16/main.c,
4000         * src/avr/gen.c (avr_emitDebuggerSymbol),
4001         * src/avr/main.c,
4002         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4003         * src/xa51/main.c,
4004         * src/SDCCdebug.c (emitDebuggerSymbol),
4005         * src/SDCCdebug.h,
4006         * src/port.h: added a debugger struct to the port struct. Added a
4007         callback for defining debugger symbols
4008
4009         * src/SDCCast.c (createLabel),
4010         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4011         with isitmp = 1
4012         * src/SDCCicode.h,
4013         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4014         iCode back to the ast for the function
4015
4016         * src/hc08/ralloc.c (hc08_assignRegisters),
4017         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4018         unneeded fields from the regs struct.
4019         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4020         pushReg() & pullReg() functions instead of emitcode()
4021
4022         * src/hc08/gen.c (genLabel, genhc08Code),
4023         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4024
4025         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4026         debugger hooks
4027
4028         * src/hc08/gen.c (genEndFunction, genhc08Code),
4029         * src/hc08/gen.h,
4030         * src/mcs51/gen.c (genEndFunction, gen51Code),
4031         * src/mcs51/gen.h,
4032         * src/ds390/gen.c (genEndFunction, gen390Code),
4033         * src/ds390/gen.h,
4034         * src/z80/gen.c (genEndFunction, genZ80Code),
4035         * src/z80/gen.h,
4036         * src/z80/z80.h,
4037         * src/pic/gen.c (genEndFunction, genpic14Code),
4038         * src/pic/gen.h,
4039         * src/pic16/gen.c (genEndFunction, genpic16Code),
4040         * src/pic16/gen.h,
4041         * src/avr/gen.c (genEndFunction, genAVRCode),
4042         * src/avr/gen.h,
4043         * src/xa51/gen.c (genEndFunction, genXA51Code),
4044         * src/xa51/gen.h,
4045         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4046         specific code to cdbFile.c and out of the backend code generators
4047
4048         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4049         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4050         starting address is now 0
4051
4052         * as/hc08/asm.h,
4053         * as/hc08/m08pst.c,
4054         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4055         assembler directive for DWARF support
4056         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4057
4058         * src/src.dsp,
4059         * src/Makefile.in,
4060         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4061
4062 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4063
4064         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4065         and inappropriate peephole optimization in jump tables
4066
4067 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4068
4069         * as/hc08/m08pst.c,
4070         * src/SDCCglue.c: sdccopt works for the hc08 port now
4071
4072 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4073
4074         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4075
4076 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4077
4078         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4079
4080 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4081
4082         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4083         rules
4084         * src/SDCCmain.c,
4085         * src/SDCCglobl.h,
4086         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4087         comments from the peephole optimizer replacement rules
4088         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4089         symbols
4090         * src/SDCCcse.c (updateSpillLocation),
4091         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4092         equivalents
4093         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4094         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4095         objects far pointers
4096
4097 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4098
4099         * src/SDCCsymt.h: a missing part of my last change
4100         * src/pic/ralloc.c (regTypeNum),
4101         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4102
4103 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4104
4105         * src/SDCCicode.h,
4106         * src/SDCCicode.c (aggrToPtrDclType),
4107         * src/SDCCptropt.h,
4108         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4109         ptrPseudoSymConvert),
4110         * src/pic/ralloc.c (regTypeNum),
4111         * src/pic16/ralloc.c (regTypeNum),
4112         * src/hc08/ralloc.c (regTypeNum),
4113         * src/ds390/ralloc.c (regTypeNum),
4114         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4115         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4116
4117 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4118
4119         * link/z80/lkmain.c (afile),
4120         * as/hc08/lkmain.c (afile),
4121         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4122         prevent a pointer problem when a filename has no directory and
4123         no extension specified.
4124
4125 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4126
4127         * link/z80/lkmain.c (afile): allow periods in directory names
4128         * link/z80/lkmain.c (afile),
4129         * as/mcs51/lkmain.c (afile),
4130         * as/hc08/lkmain.c (afile): allow linker script file to have an
4131         extension other than ".lnk"
4132         * link/z80/lklex.c (getfid),
4133         * link/z80/lkmain.c (parse),
4134         * as/mcs51/lklex.c (getfid),
4135         * as/mcs51/lkmain.c (parse),
4136         * as/hc08/lklex.c (getfid),
4137         * as/hc08/lkmain.c (parse): Support comments in the linker script
4138         file on lines by themselves and after filenames
4139
4140 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4141
4142         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4143
4144 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4145
4146         * src/z80/peeph-z80.def: removed some peephole rules that don't
4147         work with multibyte arithmetic (fixed bug #937126)
4148         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4149         to registers and not global variables
4150         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4151         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4152         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4153         checking for assignments not internally generated (fixed bug #931895)
4154         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4155         structure member (fixed bug #930072)
4156
4157 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4158
4159         * src/SDCCmain.c (linkEdit),
4160         * src/hc08/main.c (_hc08_parseOptions),
4161         * as/hc08/Makefile.in,
4162         * as/hc08/aslink.h,
4163         * as/hc08/asm.h,
4164         * as/hc08/m08pst.c,
4165         * as/hc08/lkrloc.c (relr, rele),
4166         * as/hc08/lkarea.c (lnkarea)
4167         * as/hc08/lkmain.c (afile, parse),
4168         * as/hc08/lkelf.c: support for ELF output
4169         * as/hc08/lks19.c (s19),
4170         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4171
4172 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4173
4174         * as/mcs51/lkihx.c: Fixed bug #899105.
4175
4176 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4177
4178         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4179         .dsp files from Unix to DOS.
4180
4181 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4182
4183         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4184         function pointers; we have been compliant for several months now.
4185         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4186         change that was accidently commented out
4187         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4188         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4189         bug #922319
4190
4191 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4192
4193         * src/hc08/gen.c: output of all of the internal debugging information
4194         is now controlled by the D() macro; it is disabled by default
4195
4196 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4197
4198         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4199         harder to keep the same registers during a CAST iCode
4200         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4201         long via int can be done in a single cast, if the signedness is
4202         correct.
4203         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4204         putchar() in tinibios.c in ds390's library
4205
4206 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4207
4208         * src/SDCCast.c (decorateType): fixed bug #898889,
4209         cast result of a literal complement too
4210         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4211         fixed check for bitfields
4212
4213 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4214
4215         * src/SDCCicode.c (geniCodeLogic): made it static,
4216         (geniCodeLogicAndOr): added in order to fix bug #905492,
4217         (ast2iCode): fixed bug #905492
4218         * support/regression/tests/bug-905492.c: added
4219         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4220         (processParms): fixed bug #927659: don't copy parms, this will clear
4221         decorated flag
4222         * support/regression/tests/bug-927659.c: added
4223
4224 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4225
4226         * src/SDCCast.c (addCast): don't cast float to char
4227         * device/lib/libsdcc.lib: added _memmove
4228
4229 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4230
4231         * device/lib/large/Makefile: fixed parallel execution by
4232         replacing `make` by `$(MAKE)`
4233
4234 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4235
4236         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4237         offsets (fixes bug #923936)
4238
4239 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4240
4241         * device/lib/small/Makefile: fixed parallel execution by
4242         replacing `make` by `$(MAKE)`
4243
4244 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4245
4246         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4247
4248 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4249
4250         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4251         * src/regression/Makefile: Regression test was not running.
4252
4253 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4254
4255         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4256         complement if possible
4257         * src/SDCCval.c (valComplement),
4258         * src/SDCCicode.c (operandOperation): fixed complement of literal
4259         * support/regression/tests/onebyte.c (testComplement): added
4260
4261 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4262
4263         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4264         return an optimized tree; actually replace actParm with the new tree
4265         * src/SDCCast.h: added some parantheses to remove side effects
4266         * support/regression/tests/bug-920866.c
4267
4268 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4269         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4270         Bit operands were not being handled properly in the pic14 port.
4271         (now src/regression/add.c passes again).
4272
4273 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4274
4275         * src/SDCC.y (labeled_statement): case and default no longer require
4276         a following statement (RFE #893037)
4277
4278 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4279
4280         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4281         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4282         disabled (fixes bug #916294)
4283         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4284         "mov a,acc"; patch provided by Lenny Story
4285         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4286
4287 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4288
4289         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4290         functions
4291         * src/ds390/gen.c (genFunction, genEndFunction),
4292         * src/ds390/ralloc.c (ds390_assignRegisters),
4293         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4294         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4295         pushed if there are parameters passed on the stack. Also, a cleaner
4296         way to decide if r0/r1 should be pushed/popped. (Together they fix
4297         bug #918693)
4298
4299 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4300
4301         * doc/sdccman.lyx,
4302         * device/lib/mcs51/crtpagesfr.asm,
4303         * device/lib/mcs51/crtxinit.asm,
4304         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4305         to avoid confusion with Si Lab's SFRPAGE register.
4306
4307 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4308
4309         * src/SDCCglue.c (emitMaps): allow public sfr variables
4310         * src/SDCCglue.c (initialComments): include compiler build date
4311         with compiler version and put the timestamp of the generated
4312         assembly file on a serperate line to be less confusing.
4313         * src/port.h: added genInitStartup hook
4314         * src/avr/main.c,
4315         * src/ds390/main.c,
4316         * src/hc08/main.c,
4317         * src/pic/main.c,
4318         * src/pic16/main.c,
4319         * src/xa51/main.c,
4320         * src/z80/main.c: genInitStartup initialize as NULL (default to
4321         historical behaviour)
4322         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4323         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4324         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4325         library instead of hard coding it into the compiler.
4326         * support/regression/ports/mcs51-stack-auto/spec.mk,
4327         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4328         * device/lib/mcs51/Makefile,
4329         * device/lib/small/Makefile,
4330         * device/lib/large/Makefile,
4331         * device/lib/mcs51/crtpagesfr.asm,
4332         * device/lib/mcs51/crtstart.asm,
4333         * device/lib/mcs51/crtxclear.asm,
4334         * device/lib/mcs51/crtxinit.asm,
4335         * device/lib/mcs51/crtclear.asm,
4336         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4337         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4338         and into user configurable files.
4339         * device/lib/clean.mk: clean mcs51 directory too
4340         * support/regression/tests/longlit.c: added static to T1 declaration
4341         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4342         accesses in the initialization code
4343
4344 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4345
4346         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4347         OSCTRIMVAL as noted in bug #916008
4348
4349 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4350
4351         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4352         in loops with multiple exits (reported as incorrect registers
4353         used by Martin Helmling in Sdcc-user list)
4354
4355 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4356
4357         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4358         made ds390 register extensions look less like error messages
4359
4360 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4361
4362         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4363         reported by Adam Wozniak in Sdcc-user list
4364
4365 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4366
4367         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4368         arithmetic optimizations, added debug output
4369
4370 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4371
4372         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4373         * sdcc.spec: updated and split sdcc into 3 rpms
4374         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4375         needed for literals of LEFT_OP and '+'
4376         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4377         introduced RESULT_TYPE_NOPROM
4378         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4379         left shift
4380         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4381         limited promotion to int only for '*'
4382         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4383
4384 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4385
4386         * src/pic16/gen.c (genSkip),
4387         (genc16bit2lit), (gencjneshort): commented out
4388         (is_LitOp): new helper function, checks operand type
4389         (genCmpEq): rewritten
4390
4391 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4392
4393         * support/regression/tests/bug-908454.c: added
4394
4395 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4396
4397         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4398         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4399         (geniCodeCast): cosmetic, don't preserve bit storage class
4400         (geniCodeLeftShift): added promotion
4401         (geniCodeLogic): fixed regression
4402         * src/SDCCsymt.c (computeTypeOr): accept bits too
4403         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4404
4405 2004-03-07  Borut Razem <borut.razem AT siol.net>
4406
4407         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4408
4409 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4410
4411         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4412         version of pic16_genPackRegisters which does not check if ic is a
4413         CAST operator,
4414         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4415         function cause string1.c regression test fails
4416
4417 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4418
4419         * sim/ucsim/configure.in,
4420         * sim/ucsim/configure,
4421         * sim/ucsim/doc/Makefile.in: use docdir
4422         * src/SDCC.y: fixed sbit atrributes
4423         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4424         * src/SDCCast.c (decorateType): |^& need special promotion handling
4425         * src/SDCCast.h,
4426         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4427         * src/SDCCsymt.h (computeType),
4428         * src/SDCCicode.c: computeType() needs op
4429         * src/SDCCsymt.c (checkTypeSanity),
4430         * doc/sddman.lyx: "plain" bitfields are unsigned
4431         * src/SDCCsymt.c (computeTypeOr): added
4432         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4433         |^& ops
4434         * src/SDCCval.c (val*): computeType() needs op
4435         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4436         * support/regression/tests/onebyte.c: added tests for |^&
4437
4438 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4439
4440         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4441         for writing icode into asm output.
4442
4443 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4444
4445         * src/pic16/device.c: added some debug lines enabled
4446         with macro DEBUG_CHECK,
4447         * src/pic16/genarith.c: more debug in genPlus,
4448         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4449         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4450         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4451         * (aopForSym): onStack symbols are re-placed in data memspace,
4452         and onStack flag is cleared,
4453         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4454         copy temporary pcodeop,
4455         * (genPcall): added warning for not updating PCLATU,
4456         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4457         always true for pic16 port,
4458         * (genMultOneWord): NEW, supports integer multiplication,
4459         * (genMult): modified to call genMultOneWord,
4460         * (ifxForOp): added warning when return NULL,
4461         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4462         flag is set before call to operandFromSymbol for implicit
4463         added structures,
4464         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4465         options.intlong_rent are set by default,
4466         * (_hasNativeMulFor): modified to allow port generation of integer
4467         multiplication,
4468         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4469         set regtype to REG_SFR for all registers, restricting seting the
4470         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4471
4472 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4473
4474         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4475         more than 500 times in the regression tests
4476
4477 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4478
4479         * support/Util/SDCCerr.h,
4480         * support/Util/SDCCerr.c,
4481         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4482         enumerator_list),
4483         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4484         for symbol conflicts.
4485         * support/valdiags/tests/enum.c,
4486         * support/valdiags/tests/tentdecl.c,
4487         * support/valdiags/tests/struct.c: expect possible error messages
4488         referring to original symbol definitions.
4489         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4490         * src/SDCCsymt.h,
4491         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4492
4493 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4494
4495         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4496
4497 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4498
4499         * src/pic16/ralloc.c (newReg): fixed bug #908929
4500
4501 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4502
4503         * src/ds390/gen.c: added missing #include "main.h"
4504
4505 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4506
4507         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4508         checking if symbol is already in set,
4509         * src/pic16/device.h: prototype for checkAddSym,
4510         * src/pic16/gen.c: (_G): added entry interruptvector,
4511         * (assignResultValue): removed some commented out lines,
4512         * (genFunction): check for ISR via sym->type, absolute section for
4513         interrupt code is created via a new pBlock, the goto instruction is
4514         placed now correctly at the interrupt vector position, changed all
4515         references from ivec to _G.interruptvector,
4516         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4517         is the interrupt is a high priority one, same for return from ISR,
4518         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4519         externs to calls of checkAddSym,
4520         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4521         pic16_pcode_verbose flag is set,
4522         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4523         * src/pic16/pcoderegs.c: message about how many registers are saved
4524         will only be emitted if pic16_pcode_verbose flag is set,
4525
4526 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4527
4528         * src/ds390/ralloc.h,
4529         * src/ds390/ralloc.c (ds390_regWithIdx),
4530         * src/ds390/gen.c (emitcode),
4531         * src/ds390/main.h,
4532         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4533         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4534         ds390operandCompare, getRegsRead, getRegsWritten,
4535         initializeAsmLineNode): customized instruction size calculation for
4536         ds390, started basis for some register optimizations
4537         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4538         corresponding assembly output
4539         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4540         missing push/pop of r0/r1. Optimized push/pops
4541
4542 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4543
4544         * src/mcs51/main.c (instructionSize): fixed ACALL size
4545         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4546
4547 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4548
4549         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4550         the sorting of rlist with NULL elements
4551         * (print_idataType, print_idata): NEW to create idata sections
4552         * src/pic16/device.h: idataSymSet new variable
4553         * src/pic16/gen.c (genFunction): fixed some bugs in string
4554         comparing, improved the absolute section creation for ISRs,
4555         added FSR0L/FSR0H in registers that are saved in an ISR,
4556         * (genInline): fixed the processing of inline snippets,
4557         now they undergo no process by the peephole optimizer
4558         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4559         are placed in idataSymSet,
4560         * (pic16emitStaticSeg): extern symbols are added in externs,
4561         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4562         switching when aboslute variables are placed in access bank memory
4563         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4564         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4565         commented out with #if,
4566         * (pic16_packRegisters): reintroduce the check for CAST because some
4567         symbols are not correctly handled,
4568         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4569         pCodeInstruction instead of pCode,
4570         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4571         pCodeAsmDir definition,
4572         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4573         directive, then the argument directive is emitted without the leading
4574         tab, hack for inline labels which must be in the first column,
4575         * (compareLabel,pic16_findNextInstruction),
4576         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4577         * (insertBankSwitch): modified for the new pCodeAsmDir,
4578
4579 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4580         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4581
4582         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4583         instance,
4584         * (pushSide): commented out with #if,
4585         * (assignResultValue): fixed some typos in saving
4586         registers,
4587         * (genPcall): FIXED and sync'ed with genCall,
4588         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4589         * (genNearPointerGet): fixed to handle some more cases,
4590         implementation scheme via table reads,
4591         * (genConstPointerGet): modified to access code memory correct,
4592         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4593         and improved to handle some cases
4594         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4595         instead of "RETLW" for init data
4596         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4597         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4598         variables are placed in access bank memory (<0x80 and >=0xf80),
4599         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4600         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4601         TBLWT_POSTDEC,TBLWT_PREINC
4602         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4603         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4604         directives
4605         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4606         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4607         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4608         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4609
4610 2004-02-29  Borut Razem <borut.razem AT siol.net>
4611
4612         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4613         support/Util/findme.h, support/Util/system.h: enhance binary relative
4614         search for lib and include by using findProgramPath()
4615
4616 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4617
4618         * src/SDCCpeeph.h,
4619         * src/SDCCpeeph.c (pcDistance),
4620         * src/port.h,
4621         * src/mcs51/ralloc.h,
4622         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4623         * src/mcs51/main.h,
4624         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4625         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4626         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4627         size calculation port specific, started basis for some register
4628         optimizations
4629         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4630         missing push/pop of r0/r1. Optimized push/pops
4631         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4632         * device/lib/_modsint.c (_modsint),
4633         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4634         and stack version so regression tests pass
4635
4636 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4637
4638         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4639         * src/SDCCast.c (decorateType): catch another small optimization
4640         with '?' operator
4641         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4642         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4643         modified to finally use computeType() all over SDCC,
4644         see Feature Request #877103
4645         * src/SDCCval.h: cosmetic
4646         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4647         valCompare(); regression tested in muldiv.c
4648         * support/regression/tests/muldiv.c (testMod): mod sign follows
4649         dividend only
4650
4651 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4652
4653         * src/SDCCast.c (decorateType): fixed bug #902362
4654         * doc/INSTALL.txt: fixed install instructions for win32
4655
4656 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4657
4658         * device/include/Makefile.in (install): fixed by replacing spaces
4659         by tabs
4660         * doc/README.txt,
4661         * doc/INSTALL.txt: updated for release
4662         * doc/sdccman.lyx: added warning for --xstack being buggy
4663
4664 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4665
4666         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4667         to eliminate build warnings.
4668         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4669
4670 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4671            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4672
4673         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4674         removed -penable-stack, added comment for stack pragma, added
4675         warning for not initializing the stack/frame registers, removed
4676         comment at interrupts section
4677
4678         Stack is made permanent, there is no ability to disable stack usage.
4679         * src/pic16/device.h,
4680         * src/pic16/device.c: removed all references to USE_STACK macro,
4681         * src/pic16/device.c (pic16_dump_section): when no elements in
4682         rlist, free rlist before return,
4683         * (pic16_dump_int_registers): NEW, internal registers are a new set
4684         of general purpose registers reused by each function,
4685         * (checkAddReg): returns 1 if registers is added to set,
4686         * (pic16_groupRegistersInSection): when a registers is of type
4687         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4688         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4689         SRCASECMP macro is moved here from device.c
4690         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4691         PO_PCLATU, PO_PRODL, PO_PRODH,
4692         * (pic16_pCodeOpType, genMinus,
4693         changed compares to "a" register, with AOP_ACC,
4694         * (pic16_genPlus): fixed some bugs and indented properly,
4695         * (pic16_addSign): changed size to size+offset in the MOVWF
4696         instruction,
4697         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4698         multiply 8-bit operand by literal, result is 8-bit,
4699         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4700         multiply 2 8-bit operand, result is 8-bit,
4701         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4702         genUMult8X*_16,
4703         * src/pic16/gen.c: changed accUse to contain WREG only,
4704         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4705         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4706         true, do not use immediate addressing any more unless sym is a
4707         pointer in codespace,
4708         * (aopForRemat): do not use immediate addressing when symbol not in
4709         codespace and when symbol's address is requested,
4710         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4711         accUse size (= 1),
4712         * (aopGet): added case for AOP_ACC and don't return "accumulator
4713         bug" but WREG instead,
4714         * (popGetTempReg): pushes contents of temporary register in stack,
4715         * (popReleaseTempReg): pops contents of temporary register from
4716         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4717         * (pic16_popGet): separated case AOP_ACC to return register WREG
4718         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4719         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4720         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4721         the use of immediate pointers to certain cases only.
4722
4723         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4724         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4725         * (assignResultValue, genCall, genRet): modified to use the new
4726         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4727         genPcall is still broken,
4728         * (genFunction): added code to create 'A' type pBlocks when
4729         interrupt functions are generated, code not extensively tested yet,
4730         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4731         * (genEndFunction): modified so ISRs pop stored registers from stack,
4732         * (genMultOneByte): cleanup,
4733         * (AccRsh): added flag andmask, to and result with appropriate mask,
4734         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4735         * (genDataPointerGet): fixed and reenabled its use,
4736         * (genNearDataPointerGet): bugs fixed,
4737         * (genDataPointerSet): bugs fixed,
4738         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4739         pic16_DumpSymbol, pic16_DumpOp,
4740         * src/pic16/genutils.h: function prototypes for the above functions,
4741         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4742         pointers,
4743         * (pic16emitRegularMap): many many many improvements, but needs a
4744         major cleanup,
4745         * src/pic16/main.c: enable_stack in pic16_options is removed,
4746         * (_pic16_parseOptions): removed command line options -penable-stack,
4747         * (_process_pragma): emit stack symbol only when stack pragma is
4748         processed,
4749         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4750         redirected to FSR0L/FSR0H pair,
4751         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4752         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4753         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4754         for immediates,
4755         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4756         * (dumpPicOptype): NEW,
4757         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4758         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4759         with movff instruction,
4760         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4761         added pic16_int_regs, some packRegsFor* functions are commented out,
4762         because produce errors,
4763         * src/pic16/NOTES: minor modifications
4764
4765 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4766
4767         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4768         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4769         --pack-iram.
4770         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4771         * as/mcs51/lkaomf51.c: fixed bug #895763
4772
4773 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4774
4775         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4776
4777 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4778
4779         * doc/sdccman.lyx: added details about the HC08 storage classes and
4780         interrupts, fixed the register usage info for z80 & gbz80
4781
4782 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4783
4784         * doc/sdccman.lyx: added more pic16 port documentation
4785         * device/include/pic16/: added header pic18fregs.h
4786
4787 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4788
4789         * doc/sdccman.lyx: added Vangelis' contribution
4790
4791 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4792
4793         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4794         extend to the next CALL or PCALL, not just to the next CALL.
4795
4796 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4797
4798         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4799
4800 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4801
4802         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4803         bug #895752 and a better fix for bug #716790
4804
4805 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4806
4807         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4808
4809 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4810
4811         * doc/sdccman.lyx: minor changes, minor changed
4812
4813 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4814
4815         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4816         which can't handle SDCC_NEWONEBYTEOPS,
4817         (geniCodeMultiply): removed conversion from mult to shift for pic14
4818         and pic16
4819
4820 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4821
4822         * src/hc08/gen.h,
4823         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4824         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4825         thus fixing bug #895406
4826
4827 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4828
4829         * device/lib/_modsint.c,
4830         * device/lib/_modslong.c: sign follows divisor only
4831         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4832         signs or signedness can be ignored
4833         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4834         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4835         added optimization for IFX,
4836         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4837         arguments;
4838         reenabled optimization for IFX, which was removed on 2004-01-11
4839         * src/SDCCast.h: added return type IFX
4840         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4841         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4842         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4843         SDCC_OLDONEBYTEOPS selects the old behaviour
4844         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4845         changed again and commented promotion rule
4846         * src/SDCCval.c (valDiv): promotion no longer necessary
4847         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4848         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4849         rewritten
4850         * support/regression/tests/onebyte.c: added
4851
4852 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4853
4854         * gen.c (genInline): reverted to old code for assemnling inline
4855         code because of bug reported James Chadd
4856
4857 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4858
4859         * ralloc.h: missing declarations from previous patch,
4860         seems that patch for ralloc.h was never applied, fixed
4861
4862 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4863            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4864
4865         * pcode.c,
4866         * pcode.h,
4867         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4868         indirect addressing. Marked FSR0 as deprecated
4869         * gen.c (pointerCode): commented out, not needed now
4870         (pic16_popGet2p): new MOVFF helper function
4871         (genGenPointerGet),
4872         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4873         (shiftRLong): removed duplicate debugging info
4874
4875 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4876
4877         * src/ds390/gen.c (genNearPointerGet),
4878         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4879         optimization with bits, but not bitfields.
4880         * src/ds390/ralloc.c (packRegisters),
4881         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4882
4883 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4884
4885         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4886
4887 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4888
4889         * src/SDCCsymt.h,
4890         * src/SDCCicode.c (operandFromSymbol),
4891         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4892         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4893         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4894         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4895         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4896         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4897         bug #892038
4898         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4899         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4900         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4901         * src/SDCCsymt.c (newSymbol),
4902         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4903         enumerator_list),
4904         * src/SDCCval.h,
4905         * src/SDCCval.c (newiList): fixed bug #885705
4906
4907 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4908
4909         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4910         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4911
4912 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4913
4914         * device/include/c8051f120.h,
4915         * device/include/c8051f300.h,
4916         * device/include/c8051f310.h: added/updated header files for Silicon
4917         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4918         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4919         in new section Submitting patches
4920
4921 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4922
4923         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4924         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4925         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4926         genGenPointerSet),
4927         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4928         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4929         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4930         genGenPointerSet),
4931         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4932         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4933         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4934         genGenPointerSet),
4935         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4936         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4937         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4938         genGenPointerSet): fixed bug #892400
4939         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4940         to eliminate build warnings.
4941         * src/SDCCast.c (processParms),
4942         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4943         fixed bug 751859
4944         * support/valdiag/valdiag.py: added GCC to the list of defines active
4945         when compiling with gcc
4946
4947 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4948
4949         * support/Util/SDCCerr.h,
4950         * support/Util/SDCCerr.c,
4951         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4952         with an incomplete type (fixed bug #883734)
4953         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4954
4955 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4956
4957         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4958
4959 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4960
4961         * src/SDCCast.c (decorateType),
4962         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4963         function pointer implementation
4964         * support/regression/tests/funptrs.c: added tests to verify both forms
4965         of function pointers work correctly. Added tests to verify parameters
4966         are passed in the correct order.
4967
4968 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4969
4970         * device.c (regCompare): registers are sorted by ascending
4971         address and increasing size,
4972         * main.c (_pic16_finaliseOptions): removed the declaration
4973         of compiler macro MCU. Now a macro of the format pic18fxxxx
4974         will be defined from the command line
4975
4976 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4977             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4978
4979         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4980         PCOP_RLCF was overwritten!
4981         * gen.c (genSkip): commented out calls to pic16_emitcode,
4982         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4983         * (genlshTwo),
4984         * (genRRC): added debugging info,
4985         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4986         overwritten while shifting,
4987         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4988         overwritten while shifting,
4989         * (AccLsh),
4990         * (AccRsh),
4991         * (shiftLLeftOrResult),
4992         * (shiftRLeftOrResult),
4993         * (shiftRLong),
4994         * (shiftLLong): Implemented with pic16_emitpcode
4995         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4996         * (genLeftShift): Fixed bug, operand for shift by variable always
4997         was "and"ed with 0x0f,
4998         * (genLeftShiftLiteral),
4999         * (genrshTwo),
5000         * (genRightShiftLiteral): added debugging info,
5001         * (genrshFour): added comment,
5002         * (genRightShift): determined signedness from operand "left"
5003         instead of "result"
5004
5005 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5006
5007         * src/SDCCicode.c (geniCodeParms),
5008         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5009         function pointers, fixed function pointer bugs #861242 and #861896
5010
5011 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5012
5013         * device/include/c8051f000.h,
5014         * device/include/c8051f120.h,
5015         * device/include/c8051f300.h: added header files for Silicon
5016         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5017
5018 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5019
5020         * src/SDCCast.c (processParams): added new type flow and restructured
5021         (gatherAutoInit): added new type flow
5022         (addCast): cosmetic changes
5023         (getLeftResultType): added new type flow for array indices, patch
5024         provided by Stas, see FR #877103
5025         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5026         array index patch by Stas
5027         * src/SDCCast.h: added prototype getResultTypeFromType()
5028         * src/SDCCval.h,
5029         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5030         * src/pic/glue.c (pic14emitStaticSeg),
5031         * src/pic16/glue.c (pic16emitStaticSeg),
5032         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5033         for initialization of symbols
5034         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5035         * support/Util/SDCCerr.h:
5036         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5037         * .version: bumped version number to 2.3.8
5038         * device/include/Makefile.in (install),
5039         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5040         avoid warnings
5041
5042 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5043
5044         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5045         Slade Rich fixed an optimization bug
5046         * src/pic/pcodepeep.c,
5047         * src/pic/pcoderegs.c
5048         * doc/Makefile (install): added test for directory
5049
5050 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5051
5052         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5053         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5054         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5055         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5056         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5057         * as/mcs51/asexpr.c (term),
5058         * as/hc08/asexpr.c (term): fixed bug #887146
5059
5060 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5061
5062         * src/z80/gen.c (genMult): handle single byte result product
5063         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5064         DUMMY_READ_VOLATILE (fixed bug #886367)
5065
5066 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5067
5068         * support/regression/tests/libmullong.c: fixed logic, on little endian
5069         hosts we ended without a mullong_wrapper()
5070
5071 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5072
5073         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5074         virus/worm forged address usage.
5075
5076 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5077
5078         Fixed promotion, it should be done on AST level:
5079         * src/SDCCast.c (addCast): added promotion to int
5080         (decorateType): updated call to upCast()
5081         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5082         usualUnaryConversions()
5083
5084 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5085
5086         * support/regression/tests/literalop.c (mulWrapper): Added a
5087         wrapper to remove integer overflow warnings.
5088
5089         * support/regression/tests/float_trans.c: Made work on host.
5090
5091         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5092         location of sz80.
5093
5094         * support/regression/generate-cases.py (main): Changed from inline
5095         to a main method.
5096
5097         * doc/Makefile (install): Changed to depth first to get rid of
5098         missing directory install warning.
5099
5100         * as/Makefile (install-doc): Made work on Mac.
5101
5102 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5103
5104         * src/SDCCast.c: added an additional type flow in decorateType() of
5105         opposite direction, see feature request #860006; it's enabled at runtime
5106         by setting the environment variable SDCC_NEWTYPEFLOW
5107         * src/SDCCast.h: changed prototype of decorateType()
5108         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5109         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5110         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5111         see feature request #877103
5112         * src/SDCCval.c: updated call of decorateType()
5113         (valBitwise): fixed bug #882876
5114         (valMinus): added promotion
5115         (valLogicAndOr): result is unsigned
5116         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5117         * src/SDCCsymt.c (computeType),
5118         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5119         must not cause an unsigned operation
5120         * src/pic/glue (pic14emitRegularMap),
5121         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5122
5123 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5124
5125         * src/pic/pcode.c (PCodeID): commented out left over debug code
5126
5127 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5128
5129         * support/valdiag/tests/overflow.c: added shift tests
5130         * src/pic/device.c,
5131         * src/pic/gen.c,
5132         * src/pic/gen.h,
5133         * src/pic/glue.c,
5134         * src/pic/main.c,
5135         * src/pic/pcode.c,
5136         * src/pic/pcode.h,
5137         * src/pic/pcodepeep.c,
5138         * src/pic/pcoderegs.c,
5139         * src/pic/ralloc.c,
5140         * src/pic/ralloc.h: applied patch from Slade Rich;
5141         added support for multiple code pages and multiple RAM banks on the
5142         PIC 14 port. The ASM files now no longer simply assume all the
5143         code / RAM are in the same page / bank. This means the linker can
5144         safely allocate code/RAM of separate ASM files to different pages/banks.
5145         * doc/sdccman.lyx: added Slade's tips
5146         * src/mcs51/peeph.def: fixed bug #880768
5147
5148 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5149
5150         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5151         * src/SDCCast.c (decorateType): fixed bug #880197
5152
5153 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5154
5155         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5156         getopt.h.
5157
5158         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5159         strtof is not part of C89 and isn't included with Mac OS X.
5160
5161 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5162
5163         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5164         shiftL2Left2Result): fixed bug #879326
5165         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5166         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5167         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5168         address fetch for clr instruction
5169         * device/lib/hc08/_mulint.c: created optimized assembly version
5170         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5171
5172 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5173
5174         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5175         proposed in FR #877103
5176
5177 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5178
5179         * src/SDCCval.c (cheapestVal): added missing checks
5180         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5181         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5182
5183 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5184
5185         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5186         equal operands
5187
5188 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5189
5190         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5191         loaded with the linker search paths (-L arguments) and the libraries
5192         to be linked with the current source (-l arguments). Changes
5193         currently will affect only the pic16 port.
5194         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5195         include path the port specific paths and port specific libraries,
5196         * gplink command now contains the $3 argument,
5197         * src/pic16/device.h,
5198         * src/pic16/device.c,: structure PIC_device is made public and
5199         renamed to PIC16_device, the same for variable Pics which is renamed
5200         to Pics16. Updated all references to them.
5201         * src/pic16/glue.c (pic16glue): corrected bug with code
5202         initialization which bypassed the variable initializations block.
5203
5204         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5205         COMPILE_FLAGS and added the --nostdinc option
5206
5207 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5208
5209         * device/include/mc68hc908jb8.h: Register defs for another member
5210         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5211
5212 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5213
5214         Documenting changes from previous commits.
5215         * configure.in (version 1.56),
5216         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5217         when generating output files to configure the pic16 library,
5218         but now I've commented it out, since gputils aren't installed in the
5219         SF compile farm, so library won't compile
5220
5221         * device/lib/Makefile.in (version 1.56): initially I've added in
5222         target 'all' the prerequestive 'model-pic16' so it compiled the
5223         pic16 library, but now I've commented it out for the same reasons
5224         above,
5225         * added targets 'model-pic16' and 'objects-pic16' to compile the
5226         library
5227         * added target 'port-specific-objects-pic16' to handle the
5228         generated libraries and copy them into the build/ directory
5229         * added target 'clean-intermediate-pic16' to clean intermediate
5230         files into pic16 directory
5231         * in target 'installdirs' added line to create directory pic16 in
5232         the installation path
5233
5234         * device/include/Makefile.in (version 1.11): in target 'install'
5235         added lines to copy all header files to installation path,
5236         * in target 'installdirs' added line create directory for pic16
5237         headers in the installation path
5238
5239 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5240
5241         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5242          a function call
5243
5244 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5245
5246         * configure,
5247         * device/lib/configure.in,
5248         * device/lib/configure: fixed for autoconf 2.57
5249
5250 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5251
5252         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5253         option so that it actually works. Made it specific to the z80, since
5254         the gbz80 doesn't have these kinds of I/O ports.
5255
5256 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5257
5258         * device/include/z180.h,
5259         * device/lib/_memcpy.c,
5260         * device/lib/_memmove.c,
5261         * device/lib/_mulint.c,
5262         * device/lib/ser_ir.c,
5263         * device/lib/ser_ir_cts_rts.c,
5264         * device/lib/_strcmp.c,
5265         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5266         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5267         portmode; added deprecation warning for bank= and protmode= forms.
5268         Also, guard against buffer overflow.
5269         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5270
5271 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5272
5273         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5274         changed interrupt vector table generation to only emit declared vectors.
5275         * device/include/Makefile.in: added missing backslash
5276         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5277
5278 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5279
5280         Mainly changes to support compilation of the device libraries
5281         * src/pic16/device.c: stack is allocated via symbol and not
5282         via literal number. The symbol is placed in the corresponding
5283         position of the data ram
5284         * (pic16_dump_section): relocatable and absolute uninitialized
5285         data are now emitted in sorted order to reduce section naming,
5286         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5287         weren't marked as being in the access bank,
5288
5289 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5290
5291         Added portion of GNU PIC Library under the directory
5292         device/include/pic16 and device/lib/pic16. These files
5293         contain the declarations of SFRs for the PIC18Fxx2 devices.
5294         The directory is initialized via configure from toplevel.
5295
5296 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5297
5298         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5299         the spilllocations to be compared correctly
5300
5301 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5302
5303         * src/SDCCast.c (decorateType): fixed bug introduced today
5304
5305 2004-01-12  Borut Razem <borut.razem AT siol.net>
5306
5307         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5308         doc/sdccman.lyx: upper case pragmas are deprecated
5309
5310 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5311
5312         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5313         in simpler and even better code
5314
5315 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5316
5317         * src/SDCCicode.c (operandOperation): fixed bug #874819
5318         * src/SDCCast.c (decorateType): fixed
5319         char foo (unsigned long ul) { return ul > 0; }
5320
5321 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5322
5323         * doc/sdccman.lyx: Moved and added some sections, small changes
5324         all over. Telling LaTeX to be less strict with word spacing
5325         to better keep the right margin. Changed some notes about
5326         maintainance of the ports in section 3.2.1 - is it OK like this?
5327
5328 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5329
5330         SDCC source changes:
5331         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5332         convilong): modified to inform the pic16 port that builtin functions
5333         are external
5334
5335         PIC16 PORT specific changes:
5336         * src/pic16/device.c pic16_dump_equates() added,
5337         processor registers declared internally by the port are emitted in
5338         the translation as equates,
5339         * src/pic16/gen.c: inline code is passed unprocessed to the
5340         translation,
5341         * (pic16_popGetLit2): fnuction modified to take second operand as
5342         pCodeOp pointer and not as literal,
5343         * (popRegFromIdx): prefixed with pic16_,
5344         * (pic16_popCombine2): modified to receive already allocated pCode
5345         operands,
5346         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5347         * (genFunction): initializes local stack frame and pushes on stack
5348         all the registers used by this function,
5349         * (genEndFunction): restores all registers from stack and restores
5350         stack frame,
5351         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5352         improvements,
5353         * (pic16glue): changed the program startup sequence,
5354         * added new dbName code 'A' for functions placed in absolute section
5355         * src/pic16/main.c: added function attribute _naked,
5356         * added pragma 'code' to place a fnuction at an absolute address,
5357         * added command line arguments --debug-ralloc and --pcode-verbose,
5358         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5359         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5360         * (pic16_newpCodeOpLit2): modified to take the second operand as
5361         pCodeOp pointer,
5362         * (pic16_printpBlock): modified to emit each function in a separate
5363         section,
5364         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5365         UPPER for immediate operands,
5366         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5367         instruction,
5368         * src/pic16/peeph.def: all peepholes with movff are commented out,
5369         because there is a problem in the pcode peep optimizer,
5370         * src/pic16/ralloc.c: the register allocator can now reuse local
5371         function symbols for another function. This saves register usage.
5372         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5373
5374         Added file src/pic16/NOTES with information about program writing on
5375         the current port version.
5376
5377 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5378
5379         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5380         and peephole 252 (array access)
5381
5382 2004-01-09  Borut Razem <borut.razem AT siol.net>
5383
5384         * src/SDCCmain.c : fixed #872250: -l command line defined library
5385           files are scanned before standard library files
5386
5387 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5388
5389         * src/SDCCast.c (decorateType): fixed bug #874046
5390
5391 2004-01-09  Borut Razem <borut.razem AT siol.net>
5392
5393         * support/scripts/sdcc.nsi: remove previous installation
5394
5395 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5396
5397         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5398         bytes for last interrupt vector (mcs51)
5399         * sdcc.spec: fixed typo
5400
5401 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5402
5403         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5404         gen51Code): more efficient parameter receive for --model-large
5405         ("bug" #845294)
5406
5407 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5408
5409         * src/ds390/main.c,
5410         * src/z80/main.c: added missed needLinkerScript flags (more than
5411         one port structure defined in these file)
5412         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5413         bug #795325
5414
5415 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5416
5417         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5418         * src/port.h: added flag needLinkerScript in port->linker
5419         structure to inform whether to create a .lnk file or not,
5420         * src/avr/main.c,
5421         * src/ds390/main.c,
5422         * src/hc08/main.c,
5423         * src/mcs51/main.c,
5424         * src/pic/main.c,
5425         * src/pic16/main.c,
5426         * src/xa51/main.c,
5427         * src/z80/main.c: changed appropriately to configure
5428         needLinkerScript flag
5429         * src/pic/gen.c,
5430         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5431         * src/pic/glue.c: added variable udata_section_name to
5432         override default uninitialized data segment definition for
5433         devices only with SHAREBANK memory (reported from Erik Epetrich)
5434         * (pic14emitOverlay): modified to emit a commented overlay segment
5435         directive when no overlay data exist
5436         * (picglue): modified to emit uninitialized data segment
5437         according to udata_section_name
5438         * src/pic/main.c (_pic14_parseOptions): added command line
5439         options --udata-section-name=[name] to override default
5440         udata definition name
5441         * modified _linkCmd and _asmCmd to include compiler passed
5442         arguments via -W option
5443         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5444         object file from '.rel' to '.o' in port->linker structure,
5445         changed size of fptr from 2 to 3 in port structure
5446
5447 2004-01-07  Borut Razem <borut.razem AT siol.net>
5448
5449         * support/scripts/sdcc.nsi: update PATH
5450         * support/scripts/sdcc.ico: craeted
5451
5452 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5453
5454         * device/include/Makefile.in: fix install
5455         * doc/Makefile: fix install
5456
5457 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5458
5459         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5460         in bug #860505
5461         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5462         how the function variable allocation summary is displayed; also
5463         include information about variables allocated to the overlay
5464         segment
5465
5466 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5467
5468         * as/mcs51/lkmain.c: Help about -Y option
5469         * as/mcs51/lkarea.c: Fixed gcc warnings
5470
5471 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5472
5473         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5474         fixed warning
5475         * support/valdiag/tests/overflow.c: added
5476         * src/SDCCast.c (decorateType),
5477         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5478         LEFT_OP (left shift)
5479
5480 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5481
5482         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5483         (default behaviour).
5484
5485 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5486
5487         A python script to validate compiler diagnostic messages. It can be
5488         used to verify that sdcc complains about bad c source code and
5489         gives a good location of the error.
5490         * support/valdiag/Makefile,
5491         * support/valdiag/valdiag.py,
5492         * support/valdiag/tests/*
5493
5494 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5495
5496         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5497         * src/SDCCsymt.c (newEnumType),
5498         * src/SDCCsymt.h
5499         * support/Util/SDCCerr.c,
5500         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5501         enum related bugs.
5502         * support/regression/tests/enum.c: added test for enum values that
5503         require at least 2 bytes of storage.
5504
5505 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5506
5507         * src/common.h: added ifndef/define/endif macros
5508         around the header file.
5509         Bug reported from Jesus Calvino-Fraga
5510
5511 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5512
5513         * sdcc.spec: updated
5514         * device/include/Makefile.in: don't install CVS directories
5515         * device/lib/Makefile.in: added removal of CVS directories after install
5516         * doc/Makefile: fixed install, added local_icons
5517         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5518         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5519         * src/ds390/gen.c (genRightShift): fixed bug #870788
5520         * src/SDCCast.c (decorateType): fixed bug #870781
5521
5522 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5523
5524         PIC16 port related changes:
5525         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5526         added variable stackPos,
5527
5528         * gen.c: genCall, assignResultValue: added support for
5529         pushing/retrieving function parameters to/from stack,
5530         genFunction,genEndFunction: setup stack frame for the
5531         generated function,
5532         genAddrOf: will be changed according to bug 863624
5533
5534         * added files genutils.c and genutils.h which contain gen*
5535         debugged and optimised functions extracted from gen.c
5536
5537         * glue.c: added variable 'externs' which holds extern symbols,
5538         pic16emitRegularMap: is modified to properly handle relocatable
5539          symbols under the new scheme,
5540         pic16createInterruptVect: is modified
5541         pic16printPublics: is modified to emit 'global' assembler directives,
5542         added pic16_printExterns to print extern symbols,
5543         pic16glue: initializes stack/frame pointer in the beginning of
5544         the assembly output. Temporary hack, will be corrected later,
5545         because gplink yet does not support stack and SDCC does not
5546         yet support a type of crt0.o object to create the final binary.
5547
5548         * Removed many lines that contain 8051 legacy code.
5549         * The code is finally placed under a 'code' directive.
5550         * Added port specific options.
5551
5552         * _process_pragma: simplified since now we do not need *special*
5553         include file to define SFR registers. But a separate header
5554         will be needed. This will be developed later.
5555         * _pic16_parseOptions: added, parses port specific options:
5556         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5557         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5558         --preplace-udata-with=
5559
5560         * _pic16_setDefaultOptions: modified to initialize section names,
5561         but hack is temporarly out of order since it needs improvement.
5562         * _pic16_genAssemblerPreamble: configuration words are emitted by
5563         their address instead of their name. This part is incomplete and
5564         supports only the 18Fxx2 devices. Other devices will emit an error
5565         during assembly since they do not contain the same set of config
5566         registers
5567         * _pic16_genIVT: is modified,
5568
5569         * pcode.c: added definitions for some hardware registers that are needed
5570         for stack support
5571         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5572         All PCI entries are updated. Now LFSR is supported.
5573         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5574         * added pic16_newpCodeOpLit2 to support instructions with
5575         two literal arguments
5576         * pic16_pCode2str: corrected code that emits assembler instructions
5577         with two literal operands and those that have an access bit modifier
5578         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5579         this fixes a bug which caused some labels to be lost, when an
5580         assembler directive was added, i.e. banksel,
5581         * pic16_FixRegisterBanking: improved logic that causes the insertion
5582         of bank switching,
5583         * InlineFunction: functions that are called once, are not any more
5584         inlined. This can be a port option in the future,
5585
5586         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5587
5588         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5589         hold the corresponding uninitialized symbols,
5590         * pic16_allocProcessorRegister: registers have explicit marked the
5591         accessBank field,
5592         * pic16_allocInternalRegister: registers are explicit marked as
5593         not used,
5594         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5595         processing list, so bit registers were lost,
5596         *
5597
5598         * ralloc.h: added field 'accessBank' and original symbol operand
5599         in register definition,
5600         * removed the field isMapped from register definition,
5601
5602         ** Several functions have been removed from various sources:
5603         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5604         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5605         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5606         pic16_assignRelocatableRegisters
5607
5608         ** others have been introduced:
5609         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5610         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5611
5612 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5613
5614         * support/scripts/inc2h.pl: changed definition of BIT_AT
5615         to emit 'sbit at' instead of 'bit at'. This was a request.
5616
5617         PIC16 port related preliminary changes:
5618         * gen.c: prefixed function popRegFromString with
5619         pic16_ and all references to it corrected
5620         * pcode.c: all pic16_pc_* hardware registers prefixed
5621         with underscore (_),
5622         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5623         * ralloc.c: newReg(): when register is REG_SFR then
5624         set address to rIdx,
5625         pic16_allocProcessorRegister(): marks register wasUsed=0
5626         pic16_writeUsedRegs(): added a call to assign processor
5627         registers via pic16_assignFixedRegisters
5628
5629 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5630
5631         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5632         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5633         variables in unused register banks.  Also the SSEG is placed
5634         wherever there is enough space for it, and IDATA can be anywhere
5635         in internal RAM.  For now compile using -Wl-Y[stack_size].
5636         The mem file is different for this option as well, since it
5637         makes no sense of talking about DSEG lenght.
5638
5639 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5640
5641         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5642         in certain cases, e.g. when ROM assignment, patch provided
5643         from Albert den Haan.
5644
5645 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5646
5647         Many signedness and type propagation fixes:
5648         * src/SDCCicode.c: made geniCodeCast() static
5649         replaced SPEC_ by IS_ (cosmetic)
5650         (operandOperation): fixed div and mod operation
5651         (usualBinaryConversions): added support for promotion of char
5652         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5653         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5654         (geniCodeAdd): an array index will stay unsigned, even if promoted
5655         from char to int
5656         (geniCodeArray): ditto
5657         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5658         * src/SDCCsymt.c (computeType): added more support for char;
5659         promotion of char is selectable by promoteCharToInt, fixed signedness
5660         for all cases
5661         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5662         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5663         * src/SDCCval (val*): replaced signedness calculation by
5664         computeType()
5665         rearranged if-branches (cosmetic)
5666         (valShift): added warning W_SHIFT_CHANGED
5667         (valCompare): fixed problem with different types
5668         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5669         * support/regression/tests/literalop.c: added many cases
5670         * support/regression/tests/ast_constant_folding.c: changed finally to
5671         'unsigned int'
5672         * .version: new year, new version: 2.3.7
5673         * src/SDCCmain.c (main): applied patch #866468
5674         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5675         provided by Scott Bronson
5676         * doc/sdccman.lyx: updated documentation for sdcdb
5677         updated and added chapter tips
5678
5679 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5680
5681         * src/SDCCsymt.h: missing from yesterday's commits
5682
5683 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5684
5685         * src/SDCC.y (struct_or_union_specifier),
5686         * support/Util/SDCCerr.c,
5687         * support/Util/SDCCerr.h: verify that struct & union tags are used
5688         as declared.
5689
5690 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5691
5692         * src/SDCCglobl.h: missing from yesterday's commits
5693
5694 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5695
5696         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5697         sft_attributes, struct_declaration, parameter_declaration,
5698         type_name, start_block, declaration_list),
5699         * src/SDCC.lex (check_type): support redefinition of typedef names
5700
5701 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5702
5703         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5704         aligned xdata arrays. Erik helped me with the if clause.
5705
5706 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5707
5708         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5709         warning
5710
5711 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5712
5713         * src/SDCCast.h,
5714         * src/SDCCast.c (newAst_),
5715         * src/SDCCicode.h,
5716         * src/SDCCicode.c (ast2iCode, newiCode),
5717         * src/SDCCglobl.h,
5718         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5719         expr, statement, expression_statement, selection_statement,
5720         iteration_statement, expr_opt, jump_statement): foundation for tracking
5721         sequence points
5722         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5723         point code too)
5724
5725 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5726
5727         * support/Util/SDCCerr.c,
5728         * src/SDCCast.h,
5729         * src/SDCCast.c (createCase, createDefault, decorateType),
5730         * src/SDCClabel.c (labelUnreach),
5731         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5732         to error messages.
5733         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5734         (with thanks to Stas Sergeev)
5735         * device/include/time.h,
5736         * device/lib/time.c (CheckTime): suppress unreachable code warning
5737
5738 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5739
5740         * src/SDCCast.c (createIvalCharPtr),
5741         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5742         bug #753752)
5743         * support/regression/tests/nullstring.c: tests for these two bugs
5744
5745 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5746
5747         * support/Util/SDCCerr.h,
5748         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5749         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5750         about storage class and 'at' used inside struct or union
5751         * src/SDCCBBlock.c (iCodeFromeBBlock),
5752         * src/SDCCcse.c (ifxOptimize),
5753         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5754         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5755         printIval, emitStaticSeg, emitOverlay),
5756         * src/SDCClabel.c (deleteIfx),
5757         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5758         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5759         gatherAutoInit, processParms),
5760         * support/Util/SDCCerr.h,
5761         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5762         reporting for post-parse errors.
5763
5764 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5765
5766         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5767         implicit casts via union; they don't work on big endian systems
5768         (possible fix for bug #861138)
5769
5770 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5771
5772         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5773         * src/mcs51/main.c: fixed the fix for bug #737001
5774
5775 2003-12-15  Borut Razem <borut.razem AT siol.net>
5776
5777         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5778
5779 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5780
5781         * support/makebin/makebin.c: put output in binary mode
5782
5783 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5784
5785         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5786         xdata and data memory on startup. Set the environment variable
5787         SDCC_NOGENRAMCLEAR to disable this.
5788         * src/mcs51/peephole.def,
5789         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5790         (allows non-interrupt and interrupt code to safely compete for a resource
5791         without the non-interrupt code having to disable interrupts)
5792
5793 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5794
5795         * src/SDCCicode.c (geniCodeAdd),
5796         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5797         with valFromType if type might be a pointer and host is big endian).
5798         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5799         types, not just integer types.
5800         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5801         multiply defined with mismatching "at" address.
5802
5803 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5804
5805         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5806         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5807         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5808         with embedded nulls (fixed bug #753752)
5809
5810 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5811
5812         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5813         Apparently this did not see much testing (endless loop)
5814
5815 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5816
5817         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5818
5819 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5820
5821         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5822         gracefully handle NULL memmap pointers
5823
5824 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5825
5826         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5827         instead of deleting the iCode when an operand is volatile
5828         * src/z80/gen.c (genDummyRead),
5829         * src/mcs51/gen.c (genDummyRead),
5830         * src/ds390/gen.c (genDummyRead),
5831         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5832         not just IC_RIGHT
5833         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5834         * src/SDCC.y: fixed bug #850420
5835
5836 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5837
5838         Applied z80 i/o port patch from Peter Townson and fixed some operators
5839         to better handle operands in A register.
5840         * device/include/z180.h
5841         * src/SDCC.y
5842         * src/SDCCglue.c
5843         * src/z80/gen.c
5844         * src/z80/gen.h
5845         * src/z80/main.c
5846         * src/z80/peeph-z80.def
5847         * src/z80/peeph.def
5848         * src/z80/z80.h
5849
5850 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5851
5852         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5853
5854 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5855
5856         * device/lib/hc08/_mullong.c: Removed extra #endif
5857
5858 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5859
5860         * sim/ucsim/hc08.src/inst.cc,
5861         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5862         carries from x to h
5863         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5864         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5865         * device/include/stdarg.h: fixed varargs for hc08
5866         * device/lib/Makefile.in,
5867         * device/lib/hc08/Makefile,
5868         * device/lib/hc08/_mulint.c,
5869         * device/lib/hc08/_mullong.c: fixed some endian problems
5870
5871 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5872
5873         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5874         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5875         * device/lib/_gptrget.c,
5876         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5877
5878 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5879
5880         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5881         * src/SDCCast.c (astErrors): fixed bug #846007
5882         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5883
5884 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5885
5886         * src/SDCCast.c (decorateType): disabled a transformation I added in
5887         revision 1.188 (access to fields of a structure at an absolute address);
5888         it breaks with bitfields, extern declarations, and gcse analysis.
5889         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5890         could be assigned through a pointer, so don't complain.
5891         * src/SDCCast.c (astErrors),
5892         * src/SDCCast.h,
5893         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5894
5895 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5896
5897         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5898         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5899         output of __config directives, since gpasm now supports them
5900         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5901         pre-processor macro, i.e. -DMCU=p18f452
5902         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5903         and modified to handle 'cast' icode similarly to '=' icode
5904         * src/pic16/device.h (typedef struct PIC_device): added field
5905         'extMIface' to indicate that chip has external memory interface
5906         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5907         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5908         18F8720
5909
5910 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         * src/SDCC.y (pointer): fixed bug #846006
5913         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5914         * src/SDCCast.c (decorateType): fixed bug #846009
5915         * src/ds390/peeph.def,
5916         * src/ds390/gen.c (genAnd, genOr),
5917         * src/mcs51/peeph.def,
5918         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5919
5920 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5921
5922         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5923         * src/SDCCdflow.c
5924         * src/SDCCcse.c
5925         * src/SDCCcse.h
5926         * src/SDCCBBlock.h
5927         * src/SDCCBBlock.c
5928
5929 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5930
5931         fixed bug #845089
5932         * src/SDCCbitv.h,
5933         * src/SDCCbitv.c: added function to free a bitvector
5934         * src/SDCClrange.h,
5935         * src/SDCClrange.c: added function to recompute the liveranges
5936         * src/avr/ralloc.c,
5937         * src/ds390/ralloc.c,
5938         * src/hc08/ralloc.c,
5939         * src/mcs51/ralloc.c,
5940         * src/pic/ralloc.c,
5941         * src/pic16/ralloc.c,
5942         * src/xa51/ralloc.c,
5943         * src/z80/ralloc.c: recompute the liveranges after register packing
5944
5945 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5946
5947         * src/SDCCloop.c (newInduction): fixed bug #845630
5948
5949 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5950
5951         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5952         inadvertantly left behind from my 2003-11-12 change
5953
5954 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5955
5956         Updated headers I neglected to commit yesterday.
5957         * src/SDCClrange.h,
5958         * src/SDCCicode.h
5959
5960 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5961
5962         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5963         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5964         * src/SDCCopt.c (eBBlockFromiCode),
5965         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5966         the creation of the key hash table from the sequencing so it can be used
5967         earlier (for some GCSE bug fixes still pending)
5968
5969 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5970
5971         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5972         * support/regression/tests/addsub.c: testing genPlus shortcut
5973
5974 2003-11-15  Borut Razem <borut.razem AT siol.net>
5975
5976         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5977
5978 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5979
5980         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5981         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5982         ordering is immaterial.
5983         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5984
5985 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5986
5987         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5988         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5989         (SIGSEV) of bug #840381
5990         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5991         unlink new file before rename if new and old filenames are the same)
5992
5993 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5994
5995         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5996         uninitialized variables) for the mcs51. Set environment variable
5997         SDCC_GENRAMCLEAR to test.
5998         xdata initialization slightly shorter
5999
6000 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6001
6002         * src/SDCCsymt.h,
6003         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6004         #838241 & 780691 (basicly the same bug)
6005         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6006         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6007
6008 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6009
6010         * src/SDCCmain.c (linkEdit): "fix" #834252
6011
6012 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6013
6014         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6015         * src/SDCCast.h,
6016         * src/SDCC.y: fixed bug #819403
6017
6018 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6019
6020         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6021         the reentrant attribute.
6022         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6023         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6024         simulation
6025         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6026         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6027         erroneously reduced to a literal.
6028         * src/hc08/ralloc.c (packRegisters, rematStr),
6029         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6030         some cases
6031
6032 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6033
6034         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6035         * doc/sdccman.lyx: changed from 'article' to 'book'
6036         * doc/Makefile: readded test_suite_spec and cdbfileformat
6037
6038 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6039
6040         * device/include/stdlib.h: include malloc.h to comply with ANSI
6041         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6042
6043 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6044
6045         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6046         * doc/clean.mk: also remove *.out files
6047         * doc/sdccman.lyx: some additions, larger top/bottom margins
6048
6049 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6050
6051         * src/SDCC.y: fixed bug #837365
6052         * support/regression/tests/bitopcse.c
6053         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6054         a symbol (might be valop instead)
6055         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6056         * device/lib/clean.mk: added hc08 to the cleaning list
6057
6058 2003-11-04  Borut Razem <borut.razem AT siol.net>
6059
6060         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6061           made 2003-11-04
6062         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6063           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6064           malloc is declared in standard stdlib.h
6065
6066 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6067
6068         * device/lib/hc08/Makefile: need to clean .rel not .o files
6069         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6070
6071 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6072
6073         * src/port.h,
6074         * src/hc08/main.c,
6075         * src/mcs51/main.c,
6076         * src/ds390/main.c,
6077         * src/z80/main.c,
6078         * src/avr/main.c,
6079         * src/pic/main.c,
6080         * src/pic16/main.c,
6081         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6082         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6083         tests (which uses the port's oclsExpense function)
6084         * src/SDCC.y,
6085         * src/SDCCast.c,
6086         * src/SDCCicode.c,
6087         * src/hc08/gen.c,
6088         * src/ds390/gen.c,
6089         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6090
6091 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * src/SDCCcse.c (ifxOptimize),
6094         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6095         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6096         deleting the IFX iCode.
6097         * src/hc08/ralloc.c: reduced unneeded slocs
6098         * src/hc08/gen.c: fixed bug in asmopToBoolean
6099
6100 2003-11-04  Borut Razem <borut.razem AT siol.net>
6101
6102         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6103           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6104           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6105           transferred to configure
6106
6107 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6108
6109         Use headers defined in the C[++] standards:
6110         * sim/ucsim/gui.src/serio.src/fileio.cc
6111         * sim/ucsim/gui.src/serio.src/frontend.cc
6112         * sim/ucsim/gui.src/serio.src/main.cc
6113         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6114         * support/Util/NewAlloc.c
6115         * as/hc08/lklibr.c
6116         * as/mcs51/lklibr.c
6117         * as/z80/aslist.c
6118         * as/z80/assym.c
6119
6120 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6121
6122         * Added MSVC projects for hc08 assembler and linker:
6123         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6124         /as/hc08/link_hc08.dsp
6125
6126 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6127
6128         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6129
6130 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6131
6132         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6133
6134 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6135
6136         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6137
6138 2003-10-31  Borut Razem <borut.razem AT siol.net>
6139
6140         * support/cpp2/cpplib.h,
6141           support/cpp2/cpplib.c,
6142           support/cpp2/cpplex.c,
6143           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6144           to switch _asm block preprocessing on / off. Default is
6145           #pragma preproc_asm +
6146
6147 2003-10-31  Borut Razem <borut.razem AT siol.net>
6148
6149         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6150           when outputting comment blocks (when executed with -C option) and
6151           _asm (SDCPP specific) blocks
6152
6153 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6154
6155         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6156
6157 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6158
6159         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6160
6161 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6162
6163         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6164         * src/SDCCast.c (decorateType): fixed bug #832664
6165
6166 2003-10-31  Borut Razem <borut.razem AT siol.net>
6167
6168         * support\cpp2\cpplex.c: fixed for SDCPP:
6169           comments(when executed with -C option) and _asm blocks
6170           were included even if they where in skipped #if block.
6171           Applied solution from GCC cpp 3.3.2
6172
6173 2003-10-31  Borut Razem <borut.razem AT siol.net>
6174
6175         * src/SDCC.lex: sdcc now understands both formats:
6176           '# <line_number> <file_name>' and
6177           '#line <line_number> <file_name>'
6178         * support/cpp2/cppmain.c: sdcpp now generates the standard
6179           '# <line_number> <file_name>' instead of former
6180           '#line <line_number> <file_name>'
6181
6182 2003-10-30  Borut Razem <borut.razem AT siol.net>
6183
6184         * support/cpp2/cpphash.h,
6185         * support/cpp2/cpplib.h
6186         * support/cpp2/cpplex.c,
6187         * support/cpp2/cppmain.c,
6188         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6189
6190 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6191
6192         Fixed a number of problems revealed by bug #827883.
6193         * src/SDCCloop.c (loopInvariants): Spill location of the
6194         result operand should be recomputed if extracted from
6195         a loop. Also, don't extract assignments of an iTemp
6196         from a literal.
6197         * src/SDCCast.c (isConformingBody): loop reversal should
6198         not occur if the control variable is involved with a
6199         relational operator.
6200
6201 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6202
6203         * .version: bumped to 2.3.6 to reflect the big improvements
6204         made by Erik and Klaus. Thanks!
6205
6206 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6207
6208         Replaced the livrange code.
6209         * src/SDCClrange.c: added new LR code
6210         * src/SDCCloop.c,
6211         * src/SDCCBBlock.h: removed remainig parts from old LR code
6212         * src/ds390/ralloc.c,
6213         * src/ds390/gen.c: minor fixes to make it work with new code
6214
6215 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6216
6217         * as/hc08/asm.h,
6218         * as/hc08/lkrloc.c,
6219         * src/hc08/gen.c,
6220         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6221         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6222         (tweaked fix for bug #818696)
6223
6224 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6225
6226         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6227
6228 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6229
6230         * src/SDCCmain.c,
6231         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6232         * src/mcs51/gen.c (gencjneshort),
6233         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6234         more efficient (per Scott Bronson's suggestion)
6235
6236 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6237
6238         Extended the semantics of the critical keyword to include
6239         individual statements. See RFE #827755 and #799831
6240         * src/SDCC.y
6241         * src/SDCCicode.c
6242         * src/SDCCopt.c
6243         * src/SDCCast.c
6244         * support/Util/SDCCerr.c
6245         * support/Util/SDCCerr.h
6246         * src/mcs51/gen.c
6247         * src/ds390/gen.c
6248         * src/hc08/gen.c
6249
6250 2003-10-19  Borut Razem <borut.razem AT siol.net>
6251
6252         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6253
6254 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6255
6256         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6257         Fixed bug #818696
6258         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6259         and predecrement operand is displayed
6260
6261 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6262
6263         * src/SDCCval.c (valMinus): fixed bug #826041
6264
6265 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6266
6267         Some hc08 related updates that I missed earlier
6268         * sim/ucsim/stypes.h
6269         * support/regression/ports/hc08/spec.mk
6270
6271 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6272
6273         New target "hc08" for the Motorola 68hc08 family of micros
6274
6275         * configure
6276         * configure.in
6277         * Makefile
6278         * src/hc08/*
6279         * src/SDCCmain.c
6280         * src/port.h
6281         * sim/ucsim/hc08.src/*
6282         * sim/ucsim/configure.in
6283         * src/ucsim/configure
6284         * sim/ucsim/packages_in.mk
6285         * as/hc08/*
6286         * as/Makefile
6287         * device/include/mc68hc908qy.h
6288         * device/lib/hc08/*
6289         * device/lib/Makefile.in
6290         * support/regression/ports/hc08/*
6291         * support/regression/Makefile
6292
6293 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6294
6295         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6296         regression test
6297         * src/ds390/gen.c (genCast): fixed bug #821957
6298
6299 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6300
6301         * device/lib/logf.c: "fixed" overlay bug
6302         * support/regression/ports/host/spec.mk: added m library
6303         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6304         * support/regression/tests/float_trans: added (for Eric)
6305
6306 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6307
6308         * src/mcs51/gen.c (genCpl): fixed bug
6309         http://sf.net/mailarchive/message.php?msg_id=6263915
6310
6311 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * src/SDCCast.c (decorateType): added extended constant folding
6314         * src/SDCCsymt.c (computeType): cleanup
6315         * src/SDCCval.c (valShift): minor optimization
6316         * support/regression/tests/ast_constant_folding.c: added
6317
6318 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6319
6320         * src/SDCCmain.c: removed some unintended changes
6321
6322 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6323
6324         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6325         * src/z80/gen.c: fixed part of bug #817589
6326         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6327
6328 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6329
6330         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6331         * src/SDCCcflow.c
6332         * src/SDCCcse.c
6333         * src/SDCCdflow.c
6334         * src/SDCClabel.c
6335         * src/SDCClrange.c
6336         * src/SDCCmem.c
6337         * src/SDCCopt.c
6338         * src/SDCCpeeph.c
6339         * src/SDCCset.c
6340         * src/avr/ralloc.c
6341         * src/ds390/ralloc.c
6342         * src/izt/ralloc.c
6343         * src/mcs51/ralloc.c
6344         * src/pic/ralloc.c
6345         * src/pic16/ralloc.c
6346         * src/xa51/ralloc.c
6347         * src/z80/ralloc.c
6348         * src/z80/gen.c: removed unused label "release:"
6349
6350 2003-10-06  Borut Razem <borut.razem AT siol.net>
6351
6352         * src/SDCC.lex: removed definition of unused variables
6353           save_optimize and save_options
6354
6355 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6356
6357         * clean.mk: removed '=' in "-maxdepth=1"
6358         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6359         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6360
6361 2003-10-06  Borut Razem <borut.razem AT siol.net>
6362
6363         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6364           my_unput() replaced by unput()
6365
6366 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6367
6368         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6369         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6370         type-punned pointer will break strict-aliasing rules"
6371         Old LR behaviour is again default; Klaus' LR can be choosen by
6372         defining the environment variable LRKLAUS
6373         * src/SDCCBBlock.h
6374         * src/SDCCloop.c
6375         * src/SDCClrange.c
6376         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6377         * clean.mk: fixed removal of files in bin/CVS/
6378         * device/lib/clean.mk: fixed removal of directories small and large
6379         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6380         * src/SDCCicode.c,
6381         * src/SDCCval.c: removed superflous test for pedantic
6382
6383 2003-10-05  Borut Razem <borut.razem AT siol.net>
6384
6385         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6386           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6387           message "unmatched #pragma SAVE and #pragma RESTORE"
6388
6389 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6390
6391         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6392           assembly, critical functions, atomic, nojtbound)
6393
6394 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6395
6396         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6397         * src/SDCCBBlock.h
6398         * src/SDCCloop.c
6399         * src/SDCCloop.h
6400         * src/SDCClrange.c
6401
6402 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6403
6404         * src/z80/gen.h,
6405         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6406         * src/mcs51/gen.h
6407         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6408         * src/ds390/gen.h
6409         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6410         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6411         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6412
6413 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6414
6415         * src/z80/gen.c (genRet): fixed bug #524753
6416         * src/z80/gen.c (genCast): fixed internal error on cast from
6417         pointer to long
6418         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6419         fix for bug #477835 to the z80
6420         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6421         for tracking iCodes in the peephole optimizer for z80
6422
6423 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6424
6425         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6426         the other part of bug #814548
6427         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6428
6429 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6430
6431         * src/SDCCcse.c: fixed part of bug #814548
6432
6433 2003-09-28  Borut Razem <borut.razem AT siol.net>
6434
6435         * src/asm.c: rewrite of printILine() to use temporary file instead
6436           a pipe
6437         * src/xa51/main.c: commented out declaration of int rewinds
6438
6439 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6440
6441         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6442
6443 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6444
6445         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6446         * src/asm.c (printILine): Fixed bug #811015
6447
6448 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6449
6450         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6451         freeing.
6452
6453 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6454
6455         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6456         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6457         to correctly handle general case of AOP_PAIRPTR
6458         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6459
6460 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6461
6462         * src/mcs51/ralloc.c (fillGaps),
6463         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6464         register positioning bug)
6465
6466 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6467
6468         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6469
6470 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6471
6472         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6473         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6474         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6475         (ralloc doesn't intentionally do this now, but perhaps later)
6476         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6477         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6478         register positioning bugs (Fixed bug #762602 and #795325)
6479         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6480         (Fixed bug #808779)
6481         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6482         lines that --i-code-in-asm generates
6483
6484 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6485
6486         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6487         trying to fclose a FILE* that was already closed.
6488
6489 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6490
6491         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6492         of const struct should be treated as if const themselves)
6493
6494 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6495
6496         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6497
6498 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6499
6500         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6501         Unix (/n) and DOS (/r/n) line terminations.
6502
6503 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6504
6505         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6506         bug #613775
6507
6508 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6509
6510         * src/mcs51/gen.c (genFunction, genEndFunction),
6511         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6512         and restore of EA so that stack offsets to parameters are
6513         correct when using both critical and reentrant/stack-auto.
6514         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6515         size (can be triggered in error if sloc is shared between
6516         different sized objects)
6517         * device/include/float.h: fixed macros to explicitly use
6518         unsigned long where needed
6519
6520 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6521
6522         Feature req. 799831: added code to allow nesting of critical functions
6523         * src/mcs51/gen.c (genFunction, genEndFunction)
6524         * src/ds390/gen.c (genFunction, genEndFunction)
6525
6526 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6527
6528         * src/SDCCsymt.c (sclsFromPtr),
6529         * src/SDCCsymt.h,
6530         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6531         support for standard C idiom of memory mapped variables; for
6532         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6533         to xdata int at 0x1234 tempvar = 1.
6534         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6535         provided by Akiya ISHIDA
6536
6537 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6538
6539         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6540         * src/SDCCval.c (constVal): added reduction from int to char
6541         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6542         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6543         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6544         to ignore the sign
6545         * support/regression/tests/shifts.c: fixed
6546
6547 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6548
6549         * src/z80/gen.c (genXor): Fixed bug #805445
6550
6551 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6552
6553         Fixed bug #621531 (const & volatile confusion in the type chain).
6554         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6555         refer to the const or volatile state of the pointer itself.
6556
6557         * src/SDCCast.c
6558         * src/SDCCglue.c
6559         * src/SDCCicode.c
6560         * src/SDCCsymt.c
6561         * src/SDCCval.c
6562         * src/SDCC.y
6563         * src/SDCCsymt.h
6564         * src/pic/gen.c
6565         * src/pic/ralloc.c
6566         * src/pic16/gen.c
6567         * src/pic16/ralloc.c
6568         * support/regression/tests/const.c
6569
6570 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6571
6572         When checking for duplicated modules, use absolute paths
6573         instead of relative paths.  Files changed:
6574
6575         * as/mcs51/lklib.c
6576         * link/z80/lklib.c
6577
6578 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6579
6580         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6581
6582 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6583
6584         * device/include/string.h: added size_t typedef, changed
6585         prototypes to use size_t, eliminated separate reentrant and
6586         non-reentrant declarations, added _memmove declaration
6587         * device/lib/_memcpy.c: changed to use size_t instead of int,
6588         changed /4 to >>2 to avoid division library call
6589         * device/lib/_memcmp.c,
6590         * device/lib/_memset.c,
6591         * device/lib/_strncat.c,
6592         * device/lib/_strncpy.c,
6593         * device/lib/_strncmp.c: changed to use size_t instead of int
6594         * device/lib/_memmove.c: new file (fixed bug #772294)
6595         * device/lib/Makefile.in: added _memmove.c
6596         * device/lib/z80/asm_strings.s: fixed bug #772290
6597         * support/regression/tests/bitfields.c: attempt to fix host assertion
6598         failure on amd64-unknown-linux2.2
6599
6600 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6601
6602         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6603         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6604         * as/z80/asmain.c (main): fixed bug #801766
6605
6606 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6607
6608         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6609         compilers
6610
6611 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6612
6613         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6614         reported in bug #800609
6615
6616 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6617
6618         * Top header beautifications in src/pic16 directory:
6619           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6620           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6621           pcoderegs.h, ralloc.c, ralloc.h
6622         * main.c: added top header and GPL license notice
6623         * pcode.c: fixed the if-conditional warning
6624
6625 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6626
6627         * device/lib/_mullong.c: replaced int by short for gcc
6628
6629 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6630
6631         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6632         and JUMPTABLE iCodes properly now (worked by accident before)
6633         * src/mcs51/gen.c (leftRightUseAcc),
6634         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6635         iCode properly now. Use getSize instead of nRegs since a & b
6636         aren't part of the nRegs tally.
6637
6638 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6639
6640         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6641         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6642           before instructions that use the _STATUS register
6643
6644 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6645
6646         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6647         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6648         fetching of the pointer
6649         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6650         copied from genNearPointerSet()
6651         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6652         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6653         If they pop r0/r1 they must be called in the opposite order than aopOp().
6654         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6655         (resp. --stack-auto), prepared for --xstack
6656
6657 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6658
6659         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6660
6661 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6662
6663         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6664         these ports have their own __sdcc_external_start()
6665
6666 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6667
6668         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6669         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6670         type for bits was changed. It resulted in bit variables becoming
6671         global, which is not permitted in PIC 14 assembly output.
6672
6673 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6674
6675         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6676
6677 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6678
6679         Z80 and MCS51 linkers complaint if a public symbol is defined
6680         in more than one library module:
6681
6682         * as/mcs51/lklib.c
6683         * link/z80/lklib.c
6684         * as/mcs51/Makefile.in
6685
6686 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6687
6688         A few small changes that speed up the peephole optimizer.
6689
6690         * src/SDCCpeeph.c
6691
6692 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6693
6694         Try to make the peephole optimizer smarter by maintaining
6695         an association between the assembly source code and the
6696         iCodes that originated them. Put this information to use
6697         with a new peephole rule condition "notVolatile" so that
6698         the rules can be aggressive yet still safe.
6699
6700         * src/SDCCpeeph.c
6701         * src/SDCCpeeph.h
6702         * src/mcs51/gen.c
6703         * src/mcs51/peeph.def
6704
6705 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6706
6707         Fixed bug #741761
6708
6709         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6710         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6711         if the left or right operand symbols have the accuse flag set.
6712
6713 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6714
6715         Changed the type of the result of the ! (NOT) operator to char;
6716         previously it returned the same type as the source. This allows
6717         us to eliminate all the genFloatNot functions (all of its target
6718         implementations were very buggy) since !float can use the same
6719         code as !long now.
6720
6721         * src/SDCCicode.c (ast2iCode): ! returns char
6722         * src/mcs51/gen.c (genNot, genNotFloat),
6723         * src/ds390/gen.c (genNot, genNotFloat),
6724         * src/z80/gen.c (genNot, genNotFloat),
6725         * src/pic/gen.c (genNot, genNotFloat),
6726         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6727
6728 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6729
6730         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6731         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6732            during interrupts. Ensure WSAVE is located at a shared bank address.
6733         2. Fixed page selection in some places
6734         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6735            the registers name strings.
6736         4. Fixed "signed / unsigned compare" compiler warnings.
6737         5. The PIC port manages its own allocation of the general purpose
6738            registers, but makes no attempt to reuse them. As a result when
6739            compiling it soon runs out of general purpose registers. Some
6740            additional code was added to the files pcode.c and device.c to walk
6741            through the function call tree and rename the registers so that they
6742            get reused.
6743
6744         * src/pic/device.c
6745         * src/pic/gen.c
6746         * src/pic/glue.c
6747         * src/pic/pcode.c
6748         * src/pic/pcode.h
6749         * src/pic/ralloc.c
6750         * src/pic/ralloc.h
6751         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6752         genPlus() & genMinus() when the result is the same as left or right
6753
6754 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6755
6756         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6757
6758 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6759
6760         Made bitfield a distinct type from bit so that bitfields
6761         convert as per ANSI C and bits retain their traditional
6762         boolean style behaviour. Implemented bitfield support in
6763         the z80 port.
6764
6765         * src/SDCCsymt.h,
6766         * src/SDCCsymt.c,
6767         * src/SDCCast.c,
6768         * src/cdbFile.c,
6769         * src/mcs51/gen.c,
6770         * src/ds390/gen.c: bit v bitfield split
6771         * src/z80/gen.c: New support for bitfields
6772         * support/regression/tests/bitfields.c: reenabled z80,
6773         added more tests
6774
6775 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6776
6777         Rules 246.x, 247.x relate to bitfields, the others speed up
6778         access to xdata mapped I/O devices.
6779
6780         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6781
6782 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6783
6784         Cleaned up genPackBits and genUnpackBits and added two helper
6785         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6786         for literal assignments in genPackBits (thanks to Frieder for
6787         reminding me).
6788
6789         * src/mcs51/gen.c
6790         * src/ds390/gen.c
6791
6792 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         Fixed bug #748310 (pointer to function type mishandled when the
6795         function name is omitted). Also fixed a SIGSEGV when a function
6796         attribute (reentrant, etc) is used on a non-function or on a
6797         function but misplaced before the parameter list.
6798
6799         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6800         bug #748310
6801         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6802         * support/Util/SDCCerr.h,
6803         * support/Util/SDCCerr.c: Added func attr misuse error msg
6804
6805 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6806
6807         Fixed bug #787649 by anonymous
6808         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6809         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6810
6811 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6812
6813         Fixed numerous bitfield problems.
6814
6815         * src/SDCC.y: More bitfield related error checking
6816         * src/SDCCsymt.h,
6817         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6818         * support/Util/SDCCerr.h,
6819         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6820         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6821         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6822         * support/regression/tests/bitfields.c: tests added
6823
6824 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6825
6826         Made the constant following the "interrupt" keyword optional. If
6827         omitted, the function will not automatically be given an entry
6828         in the interrupt vector table (similar to #pragma NOIV, but
6829         less syntacticly kludgy). The interrupt number is also now
6830         range checked. Also fixed a bug in the high order bit example
6831         in the manual.
6832
6833         * src/SDCC.y
6834         * src/SDCCmem.c
6835         * src/SDCCglue.c
6836         * src/SDCCsymt.h
6837         * support/Util/SDCCerr.c
6838         * support/Util/SDCCerr.h
6839         * doc/sdccman.lyx
6840
6841 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6842
6843         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6844         * src/SDCCicode.c (operandOperation): rewritten some ops
6845         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6846         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6847         other type
6848         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6849         be re-activated by defining REDUCE_LITERALS)
6850         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6851         unsigned, but are signed by default
6852         * src/SDCCval.c (constVal): rearranged
6853         * src/SDCCval.c (valMod): preliminary fix
6854         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6855         * support/regression/literalop.c: added, work in progress
6856
6857 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6858
6859         Generate warnings for useless declarations like "char data;"
6860         that don't do what new users expect.
6861
6862         * src/SDCC.y
6863         * support/Util/SDCCerr.h
6864         * support/Util/SDCCerr.c
6865
6866 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6867
6868         * src/SDCCval.c (valMult): fix overflow detection of negative int
6869
6870 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6871
6872         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6873
6874         Changes to support big endian targets:
6875
6876         * src/ports.h
6877         * src/SDCCglue.c
6878         * src/avr/main.c
6879         * src/ds390/main.c
6880         * src/izt/i186.c
6881         * src/mcs51/main.c
6882         * src/pic/main.c
6883         * src/pic16/main.c
6884         * src/xa51/main.c
6885         * src/z80/main.c
6886
6887 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6888
6889         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6890         * device/lib/time.c: fixed warning "integer overflow in expression"
6891
6892 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6893
6894         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6895         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6896         constants are unsigned; added recognition of "u" flag for unsigned
6897         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6898         * src/SDCCval.c (valDiv, valMod): fixed signdness
6899         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6900         signedness of modulo, left and right shift
6901         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6902         * support/Util/SDCCerr.h: added warning W_INT_OVL
6903         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6904         * src/SDCCast.c (ast_print): improved output of constants
6905
6906 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6907
6908         Fixed some warnings when building with MSVC:
6909
6910         * as\mcs51\asdata.c
6911         * as\z80\asdata.c
6912         * as\mcs51\asm.h
6913         * as\z80\asm.h
6914         * link\z80\aslink.h
6915         * link\z80\lkdata.c
6916         * link\z80\lkeval.c
6917         * link\z80\lkgb.c
6918         * link\z80\lkihx.c
6919         * link\z80\lks19.c
6920         * link\z80\lksym.c
6921         * support\cpp2\cpplib.c
6922         * src\ds390\gen.c
6923         * src\mcs51\gen.c
6924
6925 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6926
6927         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6928
6929 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6930
6931         * support\librarian\clean.mk: Do not remove Makefile.
6932         * support\librarian\Makefile: added.
6933
6934 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6935
6936         Added librarian to MSVC build:
6937         * all.dsp
6938         * sdcc.dsw
6939         * support\librarian\librarian.dsp
6940
6941         'configure' not needed for librarian, removed:
6942         * support\librarian\configure
6943         * support\librarian\configure.in
6944         * support\librarian\config_in.h
6945         * support\librarian\Makefile.in
6946
6947         Hopefully these ones built the librarian and the rest of sdcc properly:
6948         * Makefile
6949         * Makefile.common.in
6950
6951         Messed up 'configure', so revert to previous version:
6952         * configure
6953         * configure.in
6954
6955 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6956
6957         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6958         there, while the mantissa of a double is "only" 53 bits wide.
6959
6960 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6961
6962         Adding sdcclib to the build.  MSVC project coming soon.
6963         Files added/changed:
6964
6965         * support\librarian\clean.mk
6966         * support\librarian\configure
6967         * support\librarian\configure.in
6968         * support\librarian\config_in.h
6969         * support\librarian\Makefile.bcc
6970         * support\librarian\Makefile.in
6971         * support\librarian\sdcclib.c
6972         * Makefile.bcc
6973         * Makefile
6974         * Makefile.common.in
6975         * configure
6976         * configure.in
6977
6978 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6979
6980         Linker now complaints if linked modules have conflicting options, for
6981         example, one compiled using --model-large and another one compiled with
6982         --model-small.  The following files were modified:
6983
6984         * as\mcs51\asdata.c
6985         * as\mcs51\aslink.h
6986         * as\mcs51\asm.h
6987         * as\mcs51\asmain.c
6988         * as\mcs51\asout.c
6989         * as\mcs51\i51pst.c
6990         * as\mcs51\lkdata.c
6991         * as\mcs51\lklibr.c
6992         * as\mcs51\lkmain.c
6993         * as\z80\asdata.c
6994         * as\z80\asm.h
6995         * as\z80\asmain.c
6996         * as\z80\asout.c
6997         * as\z80\z80pst.c
6998         * link\z80\aslink.h
6999         * link\z80\lkdata.c
7000         * link\z80\lklibr.c
7001         * link\z80\lkmain.c
7002         * src\SDCCglue.c
7003
7004 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7005
7006         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7007         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7008
7009 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7010
7011         * src/z80/mappings.i: fix _mul[us][int,long] entries
7012
7013 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7014
7015         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7016
7017 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7018
7019         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7020         * support/regression/tests/bitopcse.c: added
7021         fixed warning:
7022         * src/avr/gen.c:
7023         * src/pic/gen.c:
7024         * src/pic16/gen.c:
7025         * src/z80/gen.c:
7026         * src/xa51/gen.c:
7027
7028 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7029
7030         added support for new library format to z80, gbz80 linkers:
7031         *link/z80/aslink.h
7032         *link/z80/lklex.c
7033         *link/z80/lklib.c
7034         *link/z80/lklist.c
7035
7036 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7037
7038         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7039         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7040
7041 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7042
7043         added DUMMY_READ_VOLATILE:
7044         * src/SDCC.y:
7045         * src/avr/gen.c:
7046         * src/xa51/gen.c:
7047         * src/z80/gen.c:
7048         * src/pic/gen.c:
7049         * src/pic16/gen.c:
7050         * src/mcs51/gen.c:
7051         * src/ds390/gen.c:
7052         * src/SDCCcse.c (algebraicOpts): many improvements
7053         * src/SDCCcse.h: removed algebraicOpts()
7054         * src/SDCCicode.c (picDummyRead): added
7055
7056 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7057
7058         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7059         "Insufficient space in data memory".
7060
7061 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7062
7063         * src/mcs51/gen.c: fixed bug #771358
7064         * src/z80/gen.c: fixed bug #759087
7065
7066 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7067
7068         * src/pic16/glue.c: minor cleanup by Vangelis
7069
7070 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7071
7072         * device/include/regc515c.h: fixed #758477
7073         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7074         * device/lib/_gptrput.c: saved a few bytes
7075         * my tab spacing is 8, yours too?)
7076         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7077         * device/lib/serial.c: process RX bytes earlier than TX bytes
7078         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7079
7080 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7081
7082         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7083
7084 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7085
7086     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7087
7088 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * device/lib/Makefile.in: bad fix, reverted to 1.43
7091
7092 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7093
7094         * device/lib/Makefile.in: added missing z80 object files
7095
7096 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7097
7098         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7099         pic16 progress by Vangelis:
7100         * src/SDCCglobl.h:
7101         * src/SDCCmain.c:
7102         * src/pic/Makefile:
7103         * src/pic:
7104         * pic/Makefile:
7105         * pic16/device.c:
7106         * pic16/device.h:
7107         * pic16/gen.c:
7108         * pic16/gen.h:
7109         * pic16/genarith.c:
7110         * pic16/glue.c:
7111         * pic16/main.c:
7112         * pic16/pcode.c:
7113         * pic16/pcode.h:
7114         * pic16/pcodepeep.c:
7115         * pic16/peeph.def:
7116
7117 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7118
7119     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7120
7121 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7122
7123     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7124     added gbz80 build to MSVC project.
7125     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7126     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7127     from 8051 stuff and setup so it links using a .lnk file.
7128
7129 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7130
7131     * support/librarian/sdcclib.c: sdcc librarian.
7132     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7133     with sdcclib.
7134
7135 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7136
7137     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7138
7139 2003-07-02  Borut Razem <borut.razem AT siol.net>
7140
7141         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7142         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7143         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7144         src/xa51/main.c, src/z80/main.c:
7145         virtualization of glue() function: each port has it's own glue function,
7146         which is accessed by do_glue function pointer in PORT.general structure
7147
7148 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7149
7150         * DS800C400 fun, improved ROM interface and tinibios.
7151
7152 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7153
7154         * More support for DS80C400. Now includes beginning of interface to ROM.
7155
7156 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7157
7158         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7159
7160 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7161
7162         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7163
7164 2003-06-19  Borut Razem <borut.razem AT siol.net>
7165
7166         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7167
7168 2003-06-19  Borut Razem <borut.razem AT siol.net>
7169
7170         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7171         fixed Z80 port - crt0.o: cannot open.
7172
7173 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7174
7175         * support/Util/MySystem.c (merge_command): revert bad fix
7176
7177 2003-06-18  Borut Razem <borut.razem AT siol.net>
7178
7179         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7180
7181 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7182
7183         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7184         option --use-stdout sends errors to stdout instead of stderr.
7185
7186 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7187
7188         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7189
7190 2003-06-15  Borut Razem <borut.razem AT siol.net>
7191
7192         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7193         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7194         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7195         fixed width array of pointers replaced with sets;
7196         multiple include and lib paths ared transferred to preprocessor and linker
7197         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7198         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7199         fixed width array of pointers
7200         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7201         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7202         fixupPath(), getPathDifference()
7203         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7204         fixed width array of pointers
7205
7206 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7207
7208         * src/pic16/ralloc.c: fix warnings
7209         * src/pic16/pcode.c: fix warning
7210
7211 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7212
7213          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7214         know all the details, but essentially this set of changes enable
7215         the pic16 port to generate movff instructions and generate assembler
7216         directives,
7217         * src/SDCCmain.c:
7218         * src/pic16/gen.c:
7219         * src/pic16/glue.c:
7220         * src/pic16/pcode.c:
7221         * src/pic16/device.c:
7222         * src/pic16/main.c:
7223         * src/pic16/pcode.h:
7224         * src/pic16/pcoderegs.c:
7225         * src/pic16/ralloc.c:
7226         * src/pic16/ralloc.h:
7227
7228 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7229
7230         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7231         added option --vc, so sdcc errors and warnings are compatible with
7232         Microsoft Visual Studio.
7233
7234 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7235
7236         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7237           device/lib/libfloat.lib: added atof function.
7238
7239 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * doc/sdccman.lyx: updated to Lyx 1.3
7242         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7243         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7244         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7245
7246 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7247
7248         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7249
7250 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7251
7252         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7253           additions to the "related tools/documentation" section
7254
7255 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7256
7257         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7258
7259 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7260
7261         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7262         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7263
7264 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * doc/sdccman.lyx: fix double dash and other minor things
7267         * doc/Makefile: fix double dash
7268
7269 2003-05-28  Karl Bongers(patches from Martin Helmling)
7270         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7271           condition and ignore commands.
7272
7273 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7274
7275         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7276           is in parts still quite out of date, I did changes as far as I felt makes sense
7277           for a non-native english speaker.
7278           Please feel free to add to the manual or to correct my changes.
7279         * doc/Makefile: undid touching the date of intermediate tex files.
7280
7281 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7282
7283         * doc/sdccman.lyx: Manual has an index now
7284
7285 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7286
7287         Finalize muluint/mulsint and mululong/mulslong merging:
7288         * device/lib/_mulint.c
7289         * device/lib/_mullong.c
7290         * device/lib/gbz80/mul.s
7291         * device/lib/gbz80/stubs.s
7292         * device/lib/z80/mul.s
7293         * device/lib/z80/stubs.s
7294         * src/SDCCsymt.c (initCSupport)
7295
7296 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7297
7298         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7299         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7300           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7301           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7302           instead of /Zm500.
7303
7304 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7305
7306         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7307           the regression tests I'm not brave enough to enable 245.b, 245.c
7308         * doc/sdccman.lyx: added latex preamble for hyperref package.
7309           Using pdflatex this will give you a hyperlinked pdf file with
7310           bookmarks. (prepend '%' before /usepackage if this breaks something)
7311
7312 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7313
7314          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7315
7316 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7317
7318         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7319
7320 2003-05-21    <johan AT balder>
7321
7322         * src/SDCCglue.c (printIval): fixed bug #739934
7323
7324 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7325
7326         Applied patch from bug 737905 (renamed yylineo to mylineno):
7327         * src/altlex.c
7328         * src/SDCCast.c
7329         * src/SDCglobl.h
7330         * src/SDCC.lex
7331         * src/SDCCsymt.c
7332         * src/SDCCval.c
7333         * src/pic16/pcode.c: Cleaned warnings
7334         * src/pic16/pcodeflow.c: Cleaned warnings
7335         * src/pic16/pcoderegs.c: Cleaned warnings
7336
7337 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7338
7339         * src/pic16/pcode.c: Cleaned warnings
7340         * src/pic16/pcodepeep.c: Cleaned warnings
7341         * src/pic16/ralloc.c: Cleaned warnings
7342
7343 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7344
7345         * doc/sdccman.lyx: fixed bug 739745
7346         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7347
7348 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7349
7350         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7351         it can be defined with CFLAGS when running configure
7352         * src/SDCCmain.c: fixed compiling + linking with object files
7353
7354 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7355
7356         * configure.in: configure for pic16 port,
7357             added --disable-pic16-port
7358         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7359         * src/SDCCmain.c: linkOptions is changed to set *,
7360             added if/endif conditional macros to remove options help
7361             messages from optionsTable when a port is not configured, added
7362             support for the PIc16 port in the ports table, when executing
7363             the compiler with no port specified on command line, a default
7364             port is selected with the new macro DEFAULT_PORT which is
7365             defined in port.h, in setDefaultOptions() linkOptions is removed
7366             from initialization assignment, since now it is a set,
7367             parseCmdLine uses setParseWithComma for linkOptions, in
7368             linkEdit() linkOptions are accessed with new function indexSet()
7369             which returns the i'th item of a set variable. See SDCCset.c, in
7370             linkEdit() when calling buildCmdLine(), added linkOptions as
7371             last argument. Now users can pass arguments to gplink via the
7372             -Wl option, main() uses pic16glue() to glue up pic16 programs
7373         * src/SDCCpeeph.c: various changes to support pic16
7374         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7375             return the i'th item of the set
7376         * src/SDCCset.h: added function prototype for indexSet()
7377         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7378         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7379         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7380             added macro DEFAULT_PORT
7381         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7382         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7383             generated
7384         * src/pic16/glue.c: commented out some error producing lines
7385         * src/pic16/main.c: __config directives are commented out to stop
7386             gpasm complaining and test the linkage with gplink, _linkCmd and
7387             _asmCmd changed to be more gplink and gpasm friendly
7388         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7389             produced an error when parsed, peep rule 12 is added to utilize
7390             movff, but it is commented out since the pCode does not support
7391             yet a command with 2 address arguments
7392
7393 2003-05-18    <johan AT balder>
7394
7395         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7396         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7397 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7398
7399         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7400   Added feature to script commands from file.
7401
7402 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7403
7404         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7405         * src/SDCCutil.c: include ctype.h for win32
7406
7407 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7408
7409         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7410
7411 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7412
7413         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7414   Fixed so you can set breakpoints prior to run, run does not stop
7415   on entry now.  Add tbreak.  Other enhancements and fixes for use
7416   with ddd.
7417
7418 2003-05-12  Borut Razem <borut.razem AT siol.net>
7419
7420         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7421
7422 2003-05-11  Borut Razem <borut.razem AT siol.net>
7423
7424         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7425         the path of bin directory, so that PATH is the only env. variable, which has to be set
7426         in case of standard installation.
7427         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7428         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7429         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7430
7431 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7432
7433         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7434         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7435         temp files are in the port dir; clean the gen/test directory when
7436         generating new test.c
7437         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7438         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7439         * support/regression/tests/zeropad.c: added
7440
7441 2003-05-09    <johan AT balder>
7442
7443         * src/SDCCglue.c: fixed bug #597940
7444
7445 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7446
7447         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7448   cache sfr, optimize next,step, fix off by one sourceline,
7449   support ddd list function.
7450         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7451
7452 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7453
7454         * support/regression/HTMLgen.py: added compare_s2f()
7455         * support/regression/Makefile: redo 1.27
7456         * support/regression/generate-cases.py: redo 1.5
7457
7458 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7459
7460         * support/regression/tests/float.c: workaround 33 bit hex constant
7461         * support/regression/tests/simplefloat.c: fix division for host
7462
7463 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7464
7465         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7466         that tame's the PIC's over-aggressive optimizer.
7467
7468 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7469
7470          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7471          support for MSVC.
7472
7473 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7474
7475         Initial support for DS80C400. "Hello world" runs on TINIm400
7476         (with polled I/O).
7477
7478 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7479
7480          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7481          * Some notes on ddd usage added in debugger/README
7482          Martin Helmling adding more features and fixes for ddd GUI debugger.
7483          Code added for nexti, stepi, up, down, and other adjustments.
7484
7485 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7486
7487         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7488         * src/pic/peeph.def Added two rules to optimize carry manipulation
7489         * src/pic/* removed debug printfs
7490
7491 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7492
7493         * debugger/mcs51/cmd.c: added header newalloc.h
7494
7495 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7496
7497         * as/Makefile: new EXEEXT
7498         * as/z80/Makefile: remove trailing slash of BUILDIR
7499         * as/z80/clean.mk: new EXEEXT
7500         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7501         * support/cpp2/Makefile.in: new EXEEXT
7502         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7503
7504 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7507         EXEEXT was introduced to fix all related problems with targets
7508         "clean", "install" and "uninstall"; a couple of further flaws
7509         especially with "clean" have been fixed too
7510         * as/mcs51/Makefile.in
7511         * as/mcs51/clean.mk
7512         * as/z80/Makefile
7513         * Makefile
7514         * clean.mk
7515         * debugger/mcs51/Makefile.in
7516         * debugger/mcs51/clean.mk
7517         * link/z80/Makefile
7518         * link/z80/Makefile.in
7519         * link/z80/clean.mk
7520         * link/Makefile
7521         * packihx/Makefile.in
7522         * packihx/clean.mk
7523         * sim/ucsim/Makefile
7524         * sim/ucsim/clean.mk
7525         * sim/ucsim/avr.src/Makefile.in
7526         * sim/ucsim/avr.src/clean.mk
7527         * sim/ucsim/s51.src/Makefile.in
7528         * sim/ucsim/s51.src/clean.mk
7529         * sim/ucsim/xa.src/Makefile.in
7530         * sim/ucsim/xa.src/clean.mk
7531         * sim/ucsim/z80.src/Makefile.in
7532         * sim/ucsim/z80.src/clean.mk
7533         * sim/ucsim/main_in.mk
7534         * sim/ucsim/packages_in.mk
7535         * sim/ucsim/gui.src/Makefile.in
7536         * sim/ucsim/gui.src/serio.src/Makefile.in
7537         * sim/ucsim/gui.src/serio.src/clean.mk
7538         * src/Makefile.in
7539         * src/clean.mk
7540         * support/cpp2/Makefile.in
7541         * support/cpp2/clean.mk
7542         * support/makebin/Makefile
7543         * support/makebin/clean.mk
7544         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7545         * doc/sdccman.lyx: --program-suffix no longer needed
7546
7547 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7548
7549          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7550          Martin Helmling added support for ddd GUI debugger.
7551          Code added to display assembly, set variables, and other commands
7552          to interface to ddd.
7553
7554 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7555
7556         * as/Makefile: fix target clean
7557         * as/clean.mk: fix target clean
7558         * as/z80/clean.mk: fix target clean
7559
7560 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7561
7562         * Makefile.common.in: added  AT EXEEXT AT
7563         * configure.in: removed all mingw32 stuff
7564         * configure: rebuilt from configure.in
7565         * doc/sdccman.lyx: updated section "installation"
7566         * support/scripts/sdcc_mingw32: adapted to configure
7567         * support/scripts/sdcc_cygwin_mingw32: added
7568
7569 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7570
7571         * src/pic Added object file support for the PIC port
7572         * src/pic Applied patch from Craig Franklin (this started the object file support)
7573         * src/regression Updated the PIC regression tests for object files
7574
7575 2003-04-20  Borut Razem <borut.razem AT siol.net>
7576
7577         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7578           lklex.c: In function `getfid':
7579           lklex.c:203: warning: array subscript has type `char'
7580         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7581           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7582         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7583           stack handling macros
7584
7585 2003-04-19  Borut Razem <borut.razem AT siol.net>
7586
7587         * "handling space characters in file path" task:
7588         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7589         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7590         * support/Util/MySystem.h: make it self-sufficient
7591         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7592           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7593           handling space characters in file path
7594         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7595           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7596         * support/Util/MySystem.c: handling space characters in executable's path
7597
7598 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7599
7600         * as/z80/Makefile: fix permanent rebuild of z80
7601         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7602         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7603
7604 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7605
7606         * src/SDCCopt.c: add special case optimization to replace modulo by
7607           a power of two with a bitwise AND.
7608
7609 2003-04-18    <johan AT balder>
7610
7611         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7612
7613 2003-04-17    <johan AT balder>
7614
7615         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7616         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7617
7618 2003-04-13  Borut Razem <borut.razem AT siol.net>
7619
7620         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7621         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7622           fixed mingw problem in adl_NORMALIZE_PATH
7623
7624 2003-04-12  Borut Razem <borut.razem AT siol.net>
7625
7626         * fixed "#pragma SAVE/RESTORE can not be nested":
7627         * src/SDCC.lex: reworked pragma handling functions
7628         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7629         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7630
7631 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7632
7633         * src/SDCCutil.c (pathEquivalent): defined but not used
7634         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7635         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7636         * configure: rebuilt from configure.in
7637         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7638         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7639         * device/include/Makefile.in: replace sdcc_datadir
7640         * device/lib/Makefile.in: replace sdcc_datadir
7641         * Makefile.common.in: add LDFLAGS from configure
7642         * packihx/Makefile.in: use LDFLAGS
7643         * src/Makefile.in: use LDFLAGS
7644         * support/cpp2/Makefile.in: add LDFLAGS from configure
7645         * support/makebin/Makefile: use LDFLAGS
7646         * .version: bumped version number to 2.3.5
7647
7648 2003-04-12  Borut Razem <borut.razem AT siol.net>
7649
7650         * completed "different paths" task:
7651         * src/SDCCmacro.c: fixed bug in handling quotes
7652         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7653         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7654
7655 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7656
7657         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7658
7659 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7660
7661         * ds390/gen.c ds390/peeph.def: fix bug 706781
7662
7663 2003-04-11  Borut Razem <borut.razem AT siol.net>
7664
7665         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7666
7667 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7668
7669         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7670         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7671          set - this bit used to not be set...).
7672         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7673           bad code in PIC Port
7674         * src/regression/and2.c added to test bug 609268
7675         * src/regression/Makefile added and2.c to regression test
7676
7677
7678 2003-04-08    <johan AT CP255758-A>
7679
7680         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7681         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7682         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7683
7684 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7685
7686         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7687         fix bug #487815
7688         * support/cpp2/Makefile.in: fix bug #487815
7689         * configure: rebuilt from configure.in
7690         * Makefile.common.in: docdir changed, new path suffixes
7691         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7692         * sdcc_vc_in.h: reflect changes from sdccconf.h
7693         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7694         * src/SDCCutil.h: remove BINDIR hack
7695         * doc/sdccman.lyx: update new path hierarchy
7696
7697 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7698
7699         * src/SDCCpeeph.c: added okToRemoveSLOC test
7700
7701 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7702
7703         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7704
7705 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7706
7707         * src/SDCCpeeph.c: added labelIsReturnOnly test
7708         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7709
7710 2003-04-05    <johan AT balder>
7711
7712         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7713         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7714         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7715         * src/SDCCast.c: fixed a warning
7716         * src/SDCCast.h: fixed a warning
7717         * src/SDCCicode.c (operandFromAst): fixed a warning
7718
7719 2003-04-04    <johan AT balder>
7720
7721         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7722         * src/SDCCast.c (decorateType): fixed bug #715076
7723         * src/SDCC.y: fixed bug #702907
7724
7725 2003-04-03    <johan AT balder>
7726
7727         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7728         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7729         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7730         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7731         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7732
7733 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7734
7735         * _decdptr.c: fix return values
7736         * _gptrget.c: fix return values
7737         * _gptrgetc.c: fix return values
7738         * _gptrput.c: fix return values
7739         * _mulint.c: fix return values
7740         * as/z80/Makefile: fix 'make -j' problem
7741
7742 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7743
7744         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7745         * configure.in: big cleanup, updated to autoconf 2.5x
7746         * configure: rebuilt from configure.in
7747         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7748         * sdcc_vc_in.h: reflect changes from sdccconf.h
7749         * doc/Makefile: fixed a flaw in "make install"
7750
7751 2003-04-02    <johan AT balder>
7752
7753         * src/ds390/gen.c (genCmp): no comments
7754         * src/mcs51/gen.c (genCmp): no comments
7755         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7756         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7757
7758 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7759
7760         * support/regression/generate-cases.py: place generated file in given sub directory
7761         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7762         * support/regression/Makefile: improvements for 'make -j';
7763         side effect: it's simpler and faster now
7764
7765 2003-03-31  Borut Razem <borut.razem AT siol.net>
7766
7767         * src/z80/main.c: link-{port} and as-{port} defined without path
7768         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7769
7770 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7771
7772         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7773
7774 2003-03-30  Borut Razem <borut.razem AT siol.net>
7775
7776         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7777           changed type of list parameter to set
7778         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7779         * src/port.h: changed type of do_assemble() parameter to set
7780         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7781           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7782           definition of "cppoutfilename" macro with NULL value in preProcess()
7783         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7784         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7785         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7786           replaced with set *binPathSet
7787         * shash_add() deallocates the item, if allready exsists, before adding the new one
7788         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7789
7790 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7791
7792         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7793           a nested for loop bug in the PIC port
7794         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7795           for loops
7796
7797 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7798
7799         * support/Util/dbuf.h: remove C++ stuff to make it portable
7800
7801 2003-03-28  Borut Razem <borut.razem AT siol.net>
7802
7803         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7804           literal strings in stringLiteral()
7805         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7806         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7807           to the project
7808
7809 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7810
7811         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7812
7813 2003-03-26    <johan AT balder>
7814
7815         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7816         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7817         * src/SDCCast.c (decorateType): fixed " -v < 3"
7818
7819 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7820
7821         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7822         Added Lenny Story's debug infrastructure changes:
7823         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7824         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7825         * src/cdbFile.c: added
7826         * src/SDCCdebug.c: added
7827         * src/SDCCdebug.h: added
7828         * src/SDCCast.c (createFunction)
7829         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7830         * src/SDCCmain.c (parseCmdLine, main)
7831         * src/SDCCmem.c (redoStackOffsets)
7832         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7833         * src/SDCCsymt.h
7834         * src/common.h
7835         * src/avr/gen.c (genAVRCode)
7836         * src/ds390/gen.c (gen390Code)
7837         * src/mcs51/gen.c (gen51Code)
7838         * src/pic/gen.c (genpic14Code)
7839         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7840         * src/xa51/gen.c (genXA51Code)
7841         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7842
7843 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7844
7845         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7846         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7847
7848 2003-03-22    <johan AT balder>
7849
7850         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7851
7852 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7853
7854         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7855         * doc/cdbfileformat.lyx: added, written by Lenny Story
7856         * doc/Makefile: added cdbfileformat.lyx
7857         * doc/clean.mk: added cdbfileformat.lyx
7858
7859 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7860
7861         * src/mcs51/peeph.def: fix bug #705773
7862
7863 2003-03-20    <johan AT balder>
7864
7865         An sfr/sbit can have an "at #" AND an initializer
7866         * src/SDCCsymt.c (checkSClass):
7867         * src/SDCCmem.c (allocGlobal):
7868         * src/SDCCmem.c (allocLocal):
7869         * src/SDCCast.c (createBlock):
7870
7871 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7872
7873         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7874
7875 2003-03-16    <johan AT balder>
7876
7877         Undid the hackup of const and volatile, the problem is much bigger
7878         * src/SDCC.y:1.65
7879         * src/SDCCast.c:1.171
7880         * src/SDCCglue.c:1.138
7881         * src/SDCCicode.c:1.146
7882         * src/SDCCsymt.c:1.150
7883         * src/SDCCval.c:1.65
7884
7885 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7886
7887         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7888         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7889
7890 2003-03-13    <johan AT balder>
7891
7892         Hackup const and volatile modifiers in type chains a bit:
7893         * src/SDCC.y:1.63
7894         * src/SDCCast.c:1.169
7895         * src/SDCCglue.c:1.136
7896         * src/SDCCicode.c:1.143
7897         * src/SDCCsymt.c1.146
7898         * src/SDCCsymt.h1.59
7899         * src/SDCCval.c:1.63
7900
7901 2003-03-12    <johan AT balder>
7902
7903         * src/SDCCBBlock.h: more LRH debugging junk
7904         * src/SDCCcflow.h: more LRH debugging junk
7905         * src/SDCCloop.c: more LRH debugging junk
7906         * src/SDCC.y (struct_declaration): fixed bug #697590
7907         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7908         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7909         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7910
7911 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7912         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7913         test function names must now match exactly).
7914         * src/SDCCcse.c: added special case in findCheaperOp to allow
7915         extending a short integer. Makes less awful code for bug 700121 test case.
7916
7917 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7918
7919         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7920         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7921
7922 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7923
7924         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7925         actually called (operandsNotEqual() was called for all
7926         operandsNotEqualX tests).
7927
7928 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7929
7930         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7931         with shorter literals. Fixes bug 700121.
7932
7933 2003-03-11    <johan AT balder>
7934
7935         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7936
7937 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7938
7939         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7940         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7941
7942 2003-03-10  Borut Razem <borut.razem AT siol.net>
7943
7944         * src/SDCCmain.c: pipe preprocessor's output
7945         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7946         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7947         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7948         which closes all pipes in pipeSet set
7949         * src/SDCCset.c: free deleted item in function deleteSetItem()
7950         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7951         moved from z80 to src subproject
7952         * .version: increased version number to 2.3.4
7953
7954 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7955
7956         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7957         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7958         * support/regression/ports/xa51/spec.mk: fix typo
7959
7960 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7961
7962         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7963
7964 2003-03-09  Borut Razem <borut.razem AT siol.net>
7965
7966         * src/SDCCmain.c: pipe preprocessor's output
7967         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7968         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7969         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7970         which closes all pipes in pipeSet set
7971         * src/SDCCset.c: free deleted item in function deleteSetItem()
7972         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7973         moved from z80 to src subproject
7974
7975 2003-03-09  Borut Razem <borut.razem AT siol.net>
7976
7977         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7978         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7979         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7980         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7981         * src/SDCCglobl.h: unification of WIN32 native definitions
7982
7983 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7984
7985         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7986
7987 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7988
7989         * src/configure.in:   check for endianess (even while cross-compiling)
7990         * src/configure:      check for endianess (even while cross-compiling)
7991         * src/configure_in.h: check for endianess (even while cross-compiling)
7992         * src/avr/gen.c:        remove old endianess stuff
7993         * src/mcs51/gen.c:      remove old endianess stuff
7994         * src/ds390/gen.c:      remove old endianess stuff
7995         * src/pic/gen.c:        remove old endianess stuff
7996         * src/pic/genarith.c:   remove old endianess stuff
7997         * src/pic/glue.c:       fix endianess check
7998         * src/pic16/gen.c:      remove old endianess stuff
7999         * src/pic16/genarith.c: remove old endianess stuff
8000         * src/pic16/glue.c:     fix endianess check
8001         * src/xa51/gen.c:       remove old endianess stuff
8002         * src/z80/gen.c:        fix endianess check
8003         * src/SDCCglue.c:       fix endianess check
8004         * src/ds390/peeph.def: fix bug 700036
8005
8006 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8007
8008         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8009         * src/configure: find appropriate data-types on host for SDCC's int and long
8010         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8011         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8012         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8013
8014 2003-03-07    <johan AT balder>
8015
8016         Just a big NOOP:
8017                 some minor cleanups before the big shot
8018                 OP_DEFS and OP_USES now use Kevin's protection
8019                 new option --nolabelopt
8020
8021         * src/SDCCBBlock.c:
8022         * src/SDCCast.c,:
8023         * src/SDCCcflow.c:
8024         * src/SDCCcse.c:
8025         * src/SDCCicode.c:
8026         * src/SDCCicode.h:
8027         * src/SDCClabel.c:
8028         * src/SDCCloop.c:
8029         * src/SDCCmain.c:
8030         * src/ds390/ralloc.c:
8031         * src/mcs51/ralloc.c:
8032         * src/pic/ralloc.c:
8033         * src/xa51/ralloc.c:
8034         * src/z80/ralloc.c:
8035
8036 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8037
8038         * src/pic/pcode.c (get_op): fix 64 bit warnings
8039         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8040         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8041         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8042         * support/regression/tests/malloc.c: fix 64 bit warnings
8043
8044 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8045
8046         * src/mcs51/gen.c (genMinus): fixed bug 696436
8047
8048 2003-03-02  Borut Razem <borut.razem AT siol.net>
8049
8050         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8051
8052 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8053
8054         * configure.in: test for mkstemp
8055         * sdccconf_in.h: add HAVE_MKSTEMP
8056
8057 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8058
8059         * device/include/ctype.h: removed warning while using --stack-auto
8060         * device/include/malloc.h: removed warning while using --stack-auto
8061         * device/include/string.h: removed warning while using --stack-auto
8062
8063 2003-02-23  Borut Razem <borut.razem AT siol.net>
8064
8065         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8066         because NDEBUG is defined (see man assert)
8067         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8068
8069 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8070
8071         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8072         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8073
8074 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8075
8076         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8077         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8078
8079 2003-02-18    <johan AT balder>
8080
8081         * as/mcs51/asmain.c (asmbl): module can start with a digit
8082         * as/z80/asmain.c (asmbl): module can start with a digit
8083
8084 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8085
8086         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8087         * src/asm.c: fix pipe() for Mingw32
8088
8089 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8090
8091         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8092         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8093         make -V work again; --c1mode reads now from stdin
8094         * doc/sdccman.lyx: added --c1mode
8095         * support/Util/SDCCerr.c: new messages for c1 mode
8096         * support/Util/SDCCerr.h: new messages for c1 mode
8097         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8098
8099 2003-02-15    <johan AT balder>
8100
8101         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8102
8103 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8104
8105         * doc/sdccman.lyx: Environment variables, -o and other minor things
8106
8107 2003-02-14    <johan AT balder>
8108
8109         * src/xa51/main.c: before anyone really tries to use it :)
8110
8111         * Install doc's in share/sdcc/doc
8112         * removed some obsolete files
8113         * Do a proper make distclean and uninstall
8114         M Makefile.common.in
8115         R sdccbuild.sh
8116         M as/Makefile
8117         M device/include/Makefile.in
8118         M device/lib/Makefile.in
8119         M doc/sdccman.lyx
8120         M link/Makefile
8121         M sim/ucsim/doc/Makefile.in
8122         M src/clean.mk
8123         R src/avr/peeph.rul
8124         R src/xa51/peeph.rul
8125         M support/cpp2/Makefile.in
8126         M support/makebin/Makefile
8127
8128
8129 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8130
8131         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8132
8133 2003-02-10  Borut Razem <borut.razem AT siol.net>
8134
8135         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8136         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8137         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8138         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8139         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8140         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8141         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8142         src/z80/Makefile.bcc: Borland Makefile cleanup
8143         * as/z80/Makefile.bcc: Added Borland Makefile
8144         * support/cpp2/borland.h: Removed
8145
8146 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8147
8148         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8149         * src/SDCC.lex: new pragma NOIV
8150         * src/SDCCglobl.h: new pragma NOIV
8151         * src/SDCCmem.c: new pragma NOIV
8152
8153 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8154
8155         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8156
8157 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8158
8159         * src/SDCCmain.c: signal handling is switched off by --debug
8160         * doc/Makefile: small fix for install; use clean.mk again
8161         * doc/clean.mk: clean *.pdf and *.html too
8162
8163 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8164
8165         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8166         * device/lib/printfl.c: fix a ds390 bug by making it portable
8167         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8168         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8169         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8170         * debugger/mcs51/cmd.c: converted multi-line string literals
8171         * sim/ucsim/globals.cc: converted multi-line string literals
8172         * src/SDCCmain.c: introduced signal handler to remove temp files
8173         * doc/Makefile: small tweaks, implement clean
8174         * doc: removed generated files
8175
8176 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8177
8178         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8179         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8180         Address Record is not correctly generated for DS390."
8181
8182 2003-02-02  Borut Razem <borut.razem AT siol.net>
8183
8184         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8185         * as/mcs51/asm.h: fixed compilation with Borland C
8186         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8187         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8188         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8189         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8190         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8191         src/z80/Makefile.bcc: delete $(LIB) only if exist
8192         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8193
8194 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8195
8196         * device/include/malloc.h: introduced NULL
8197         * device/include/string.h: introduced NULL
8198         * device/include/stdlib.h: introduced NULL
8199         * device/lib/_memcpy.c: removed NULL
8200         * device/lib/_strcat.c: removed NULL
8201         * device/lib/_strchr.c: removed NULL
8202         * device/lib/_strcmp.c: removed NULL
8203         * device/lib/_strcpy.c: removed NULL
8204         * device/lib/_strcspn.c: removed NULL
8205         * device/lib/_strlen.c: removed NULL
8206         * device/lib/_strncat.c: removed NULL
8207         * device/lib/_strncmp.c: removed NULL
8208         * device/lib/_strncpy.c: removed NULL
8209         * device/lib/_strpbrk.c: removed NULL
8210         * device/lib/_strrchr.c: removed NULL
8211         * device/lib/_strspn.c: removed NULL
8212         * device/lib/_strstr.c: removed NULL
8213         * device/lib/_strtok.c: removed NULL
8214         * device/lib/malloc.c: removed NULL, include own header
8215
8216 2003-02-02    <johan AT balder>
8217
8218         * 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
8219         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8220         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8221         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8222         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8223         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8224
8225 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8226
8227         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8228         area 'DATA'"
8229
8230 2003-02-01    <johan AT balder>
8231
8232         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8233
8234 2003-01-31    <johan AT CP255758-A>
8235
8236         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8237
8238 2003-01-30    <johan AT balder>
8239
8240         * src/SDCCBBlock.c: automatic bug detection
8241         * src/SDCCicode.c: automatic bug detection
8242
8243 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8244
8245         * src/SDCCglobl.h:   now --xram-size 0 works
8246         * src/SDCCmain.c:    now --xram-size 0 works
8247
8248 2003-01-29    <johan AT balder>
8249
8250         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8251
8252 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8253
8254         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8255         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8256         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8257         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8258         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8259         * src/SDCCmain.c:    Added options --xram-size and --code-size
8260
8261 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8262
8263         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8264         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8265
8266 2003-01-27    <johan AT balder>
8267
8268         * src/SDCC.y: fixed bug #613764
8269
8270 2003-01-26    <johan AT balder>
8271
8272         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8273         * src/SDCCsymt.h: fixed bug #673374
8274         * src/SDCCglue.c: fixed bug #661910
8275         * src/SDCCast.c: fixed bug #458099 and 673374
8276
8277 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8278
8279         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8280         * as/mcs51/strcmpi.h: added
8281         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8282         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8283         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8284         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8285         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8286         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8287         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8288         * as/mcs51/Makefile.aslink: new module strcmpi
8289         * as/mcs51/Makefile.asx8051: new module strcmpi
8290         * as/mcs51/Makefil.bcc: new module strcmpi
8291         * as/mcs51/Makefile.in: new module strcmpi
8292         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8293
8294 2003-01-26    <johan AT balder>
8295
8296         * src/SDCCglue.c: reverted back to 1.124
8297         * src/SDCCast.c: reverted back to 1.156
8298         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8299
8300 2003-01-25    <johan AT balder>
8301
8302         * src/SDCCglue.c: A better fix for bug #661910
8303         * src/SDCCast.c: A better fix for bug #661910
8304         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8305
8306 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8307
8308         * src/Makefile.in: remove spawn.o
8309         * src/SDCCmain.c: remove spawn.h
8310         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8311         * src/spawn.c: removed
8312         * src/spawn.h: removed
8313         * support/regression/ports/ds390/spec.mk: link with -r
8314
8315 2003-01-24    <johan AT CP255758-A>
8316
8317         * src/ds390/gen.c (aopOp): fixed bug #667458
8318         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8319         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8320         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8321
8322 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8323
8324         * src/mcs51/peeph.def: better assembler identation by Frieder
8325         * src/mcs51/gen.c: better assembler identation by Frieder
8326
8327 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8328
8329         * as/z80/string.h: removed for gcc 3.2
8330         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8331         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8332
8333 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8334
8335         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8336         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8337         * support/regression/Makefile: separate temp files for ports
8338         * support/regression/generate-cases.py: separate temp files for ports
8339         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8340         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8341
8342 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8343
8344         * moved tinitalk to device/examples/ds390
8345
8346 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8347
8348         * as/mcs51/lkmem.c: rflag is for DS390
8349         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8350         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8351                          (linkEdit): move mem- and map-files the same way as ihx-files
8352         * src/z80/main.c (_setDefaultOptions): removed --generic
8353         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8354         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8355         * src/pic/glue.c (picglue): --c1mode works again
8356         * src/pic16/glue.c (pic16glue): --c1mode works again
8357         * src/asm.c (printCLine): fix #660034
8358
8359 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8360
8361         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8362         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8363         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8364         * as/mcs51/lkmem (summary): better fix for sp problem
8365         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8366         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8367         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8368                                               remove --stack-after-data
8369
8370 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8371
8372         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8373         * src/SDCCutil.c (join): ugly bug: missing '\0'
8374         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8375
8376 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8377
8378         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8379         * src/port.h: typo
8380         * src/pic/main.c (_asmCmd): gpasm supports -o
8381         * src/z80/main.c: more general macros
8382         * device/lib/Makefile.in: remove intermediate files
8383
8384 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8385
8386         * .version: Bumped version number to 2.3.3
8387         * src/SDCCBBlock.c: new option -o
8388         * src/SDCCglobl.h: new option -o
8389         * src/SDCCglue.c: new option -o
8390         * src/SDCCmain.c: new option -o
8391         * src/asm.c: new option -o
8392         * src/ds390/main.c: new option -o
8393         * src/pic/glue.c: new option -o
8394         * src/pic/pcode.c: new option -o
8395         * src/pic/ralloc.c: new option -o
8396         * src/pic16/glue.c: new option -o
8397         * src/pic16/pcode.c: new option -o
8398         * src/pic16/ralloc.c: new option -o
8399         * src/z80/main.c: new option -o
8400         * device/lib/Makefile.in: use -o
8401         * support/regression/ports/ds390/spec.mk: use -o
8402         * support/regression/ports/gbz80/spec.mk: use -o
8403         * support/regression/ports/mcs51/spec.mk: use -o
8404         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8405         * support/regression/ports/z80/spec.mk: use -o
8406         * support/regression/ports/ucz80/spec.mk: use -o
8407         * support/regression/ports/xa51/spec.mk: use -o
8408         * support/regression/fwk/lib/timeout.c: fix usage string
8409
8410 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8411         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8412
8413 2003-01-07    <johan AT balder>
8414
8415         * src/SDCCast.c (decorateType): fixed bug #600035
8416
8417 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8418         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8419         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8420         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8421         * src/pic/pcode.c: outcommented unused variable to remove warnings
8422         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8423
8424 2003-01-06    <karl AT turbobit.com>
8425         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8426    regression tests.
8427
8428 2003-01-06    <johan AT balder>
8429
8430         * src/SDCCicode.c: fixed array add
8431
8432 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8433         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8434         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8435
8436 2003-01-04    <johan AT balder>
8437
8438         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8439
8440 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8441         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8442
8443 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8444         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8445         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8446
8447 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8448         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8449
8450 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8451         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8452
8453 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8454         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8455
8456 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8457
8458     * in \sdcc\as\mcs51\ changed these files in order to create an
8459     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8460     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8461     following files to include the previous two files: aslink.dsp,
8462     Makefile.aslink, Makefile.bcc, and Makefile.in.
8463
8464     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8465     .adb instead of .cdb
8466
8467 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8468
8469         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8470         value from option --iram-size.
8471
8472 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8473
8474         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8475         dram[] array.
8476
8477 2002-09-18    <wiml AT hhhh.org>
8478
8479         * SDCClrange.h: exposed setFromRange() and setToRange()
8480         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8481           packRegsForAccUse() (bug 542397)
8482         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8483           multiple times and emitting the fetch operations more than once
8484           added aopGetUsesAcc() function to allow binary operators to
8485           fetch their operands in the correct order; made genMinus() emit
8486           compact code for X = LITERAL - Y
8487
8488 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8489         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8490         sprintf() in line 1267.
8491
8492 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8493         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8494         like ports.
8495
8496 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8497         Changes to aslink (All the changes are marked with 'JCF'):
8498
8499         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8500         summary().
8501
8502         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8503         area BSEG.  Also moves, if possible, the DATA area down into the internal
8504         ram so more space is available.
8505
8506         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8507         sflag.
8508
8509         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8510         not bytes.  Function summary() which creates a memory usage summary
8511         file with extension .mem.  Reports of overlaping stack and small stack
8512         size.  If the space for the stack is less than 16 bytes aslink trows a
8513         warning.
8514
8515         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8516         the 8051.  Option 'y' for memory summary output file.
8517
8518         Changes to sdcc (All the changes are marked with 'JCF'):
8519
8520         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8521
8522         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8523         overlaying area for it (uses RegBankUsed[4]).
8524
8525         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8526         bank zero as used by default.  By default aslink locates the stack
8527         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8528         the creation of the .mem file.  Delegates the allocation of data area
8529         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8530         the begining of the stack area to aslink.
8531
8532         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8533         glue() in SDCCglue.c creates an area for it.
8534
8535 2002-09-03  Borut Razem <borut.razem AT siol.net>
8536         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8537         sdcc/src/pic/glue.c:
8538         introduced atexit() handler for teporay files removal in case of
8539         errors, assertions, ...
8540
8541 2002-08-29  Borut Razem <borut.razem AT siol.net>
8542         * sdcc/support/cpp2/auto-host_vc_in.h:
8543         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8544         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8545         Maybe there is a similar problem with BORLANDC? It should be checked!
8546
8547         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8548         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8549         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8550         was not executed, and the compiler (cl) launched a warning:
8551         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8552
8553 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8554         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8555
8556 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8557         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8558
8559         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8560           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8561           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8562           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8563           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8564           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8565           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8566         - added Release configuration in VS projects
8567         - review of compiler an linker options
8568         - VC .exe files are generated in bin_vc directory, not to interfere
8569           with binaries generated from other projects (cygwin, mingw, bcc ...)
8570
8571         * sdcc/src/yacc.dsp: added
8572
8573         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8574         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8575         and insert the version number definitions from .version
8576
8577         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8578
8579         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8580         added - genarate auto-host.h using auto-host_vc_in.h as template
8581
8582         * sdcc/sdcc_vc.h,
8583         removed from CVS, generated automatically
8584
8585 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8586         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8587
8588 2002-08-11  Borut Razem <borut.razem AT siol.net>
8589         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8590
8591 2002-08-10  Borut Razem <borut.razem AT siol.net>
8592         * src/SDCCmain.c (main):
8593         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8594         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8595         The consequence was that some temporary files were not removed.
8596
8597         * src/SDCCglue.c:
8598         unification of code in functions tempfilename() and tempfile():
8599         function tempnam() is defined in Visual Studio 6.0 and .NET
8600
8601         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8602
8603         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8604           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8605         - removed compiler command line option /WX: Treats all warnings as errors
8606         - update a list of source files, included into the project
8607
8608         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8609           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8610         changed project type to Generic Project so that can be correcly converted to VS.NET project
8611
8612         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8613
8614         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8615
8616         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8617
8618         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8619         added return 0 statements after assert() to make compiler happy
8620
8621         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8622         added newline in the def file to keep MSC compiler satisfied
8623
8624         * sdcc/src/z80/gen.c:
8625         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8626           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8627         - solved MSC error in function aopDump()
8628
8629         * sdcc_vc.h: define PREFIX as "\\sdcc"
8630
8631 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8632         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8633
8634 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8635         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8636         - Rewrote the register banking algorithm.
8637         - Added pCode live-range analysis to registers (for now, only non-used and
8638         singly-used registers optimized away)
8639
8640         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8641
8642         * 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.
8643
8644 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8645         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8646
8647 2002-04-22  Michael Hope  <michaelh AT vroom>
8648
8649         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8650
8651         * configure.in (DD_COPT): Added include support required for gbdk.
8652
8653         * .version: Bumped version number just to increase it.
8654
8655         * src/SDCCmain.c: Added -nostdinc to the default options.
8656
8657 2002-04-15  Michael Hope  <michaelh AT vroom>
8658
8659         * device/lib/z80/printf.c (sprintf): Added.
8660
8661         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8662
8663         * src/z80/peeph.def: Added transpose redundent load rule.
8664
8665         * src/z80/main.c: Added force callee saves for jaune.
8666
8667         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8668
8669         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8670
8671 2002-03-28  Johan Knol  <johan AT balder>
8672
8673         * src/SDCCval.c: fixed bug #532436
8674
8675 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8676         * /src/port.h:
8677         Added "char *Processor" field to the port structure.
8678
8679         * /src/SDCCmain.c:
8680         Added -p option. Allows port dependent processor to be specified.
8681
8682         * all ports:
8683         Initialized the new field char *Processor field to NULL in all ports
8684
8685         * /src/pic/*:
8686         Compiler generated registers for interrupt context saving
8687         were not getting allocated.
8688
8689 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8690
8691         * /src/SDCCast.c:
8692         Fixed left shift. Will promote the left side of a left shift
8693         if a) left shifting more than size of operand or b) when assigned
8694         to something size > size of left side
8695
8696 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8697         * src/pic/*
8698         tons of changes. Register allocation has been
8699         rewritten. Added customization for the various PICs. Flow
8700         analysis is restructured. ...
8701
8702         * src/pic/device.h:
8703         Added
8704
8705         * src/pic/device.c:
8706         Added. device.c is a PIC port hack to accomodate variations
8707         in PIC devices.
8708
8709 2002-03-13  Michael Hope  <michaelh AT vroom>
8710
8711         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8712
8713 2002-03-04  johanknol  <johanknol AT manik>
8714
8715         * /src/SDCCval.c: fixed
8716
8717         const unsigned char arr[][2] = { { 0, 1 } };
8718         t18.c:1: error: Initializer element is not constant
8719
8720 2002-03-04  bela  <bela AT manik>
8721
8722         * /device/include/mcs51reg.h:
8723         ds89c420 register definition update
8724
8725 2002-03-03    <johan AT FRIJA>
8726
8727         * support/Util/SDCCerr.c: did something, but don't no why anymore
8728
8729         * support/regression/tests/bug-524691.c: made it a little less shy
8730
8731         * src/SDCCast.c (decorateType): fixed bug #524697
8732
8733         * src/SDCCast.c: made some lineno improvements
8734
8735         * src/SDCCval.c (getNelements): changed warning to error
8736
8737         * src/SDCCglue.c (printIvalArray): changed warning to error
8738
8739         * src/SDCCicode.c: fixed a warning for mingw
8740
8741         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8742
8743         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8744
8745 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8746
8747         * src/ds390/peeph.def:
8748         Added some more peephole rules
8749
8750         * src/ds390/gen.c: Various fixes & enhancements
8751
8752         * src/SDCClrange.c, src/SDCClrange.h:
8753         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8754
8755         * src/ds390/ralloc.c:
8756         various fixes & enhancements (ds390) specific
8757
8758         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8759         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8760         from rallocs.
8761
8762         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8763
8764 2002-03-02    <johan AT FRIJA>
8765
8766         * src/SDCCast.c (decorateType): fixed bug #524708
8767
8768         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8769
8770         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8771
8772 2002-03-01  Michael Hope  <michaelh AT vroom>
8773
8774         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8775
8776         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8777
8778 2002-03-01    <johan AT FRIJA>
8779
8780         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8781
8782         * src/SDCCast.c (decorateType): fixed bug #524209
8783
8784         * src/SDCCval.c (valNot): fixed bug #524195
8785
8786 2002-02-26    <johan AT balder>
8787
8788         * src/xa51/gen.c: fixed a warning
8789
8790         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8791
8792         * src/SDCCast.c (decorateType): fixed bug #522534
8793
8794 2002-02-23    <johan AT balder>
8795
8796         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8797
8798 2002-02-22    <johan AT balder>
8799
8800         * src/SDCCast.c: fixed bug #514865
8801
8802         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8803
8804 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8805
8806         * sdcc/src/SDCCloop.c:
8807         Previous fix was not good. basic blocks that have "break" or "return" are
8808         not really partof a loop , but live ranges used in these blocks should
8809         be live thru the entire loop, so set partOfLoop but don't add them to
8810         loop region
8811
8812 2002-02-21    <johan AT FRIJA>
8813
8814         * src/SDCCcse.c: fixed bug #514308
8815
8816 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8817
8818         * src/SDCCloop.c:
8819         Fixed BUG #519583. If a conditional block ended in a return/break
8820         statement inside a loop, it was not being considered part of the loop.
8821
8822         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8823
8824 2002-02-10  Karl Bongers <karl AT turbobit.com>
8825
8826         * debugger/*:
8827         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8828         with lots of comments and notes.
8829
8830         * device/examples/test2.c:
8831         Fix bug, "red" variable not being initialized(compiler complained).
8832
8833         * device/examples/Makefile, examples/test3.c:
8834         Add Makefile in device/examples folder, compiles test3.c
8835         for use as a multiple module SDCDB test case.
8836
8837         * sim/ucsim/cmd.src/cmdset.cc:
8838         Took out debug printfs in ucsim "next" command.
8839
8840         * sim/ucsim/xa.src:
8841         Karl and Johan start ucsim XA support.  Most dissassembly working,
8842         about 75% emulation done(plenty of work remaining).
8843
8844         * sim/ucsim/z80.src:
8845         Add Z80 support to ucsim, add test-ucz80 regression test,
8846         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8847         Notice z80 compiler fails on examples/test3.c/crc code.
8848
8849 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8850
8851         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8852         Added support for --parms-in-bank1
8853
8854         * src/ds390/peeph.def:
8855         added a few more peephole optimzations
8856
8857         * src/ds390/main.c:
8858         1) added __builtin_inp & __builtin_outp used to read in data of given length
8859            from a memory mapped port
8860         2) added __builtin_memcmp
8861         3) added __builtin_swapw swap bytes of a short
8862
8863         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8864         1) handle multiple send & receives from register bank1
8865         2) ralloc can now allocate DPTR1 to some liveRanges
8866
8867         * src/SDCCsymt.c, src/SDCCsymt.h:
8868         changes to handle multiple sends & receives
8869
8870         * src/SDCCptropt.h:
8871         added some pointer arithmetic optimization
8872
8873         * src/SDCCptropt.c:
8874         added some pointer arithmetic optimizations but not stable yet so not
8875         called from anywhere (will get this working shortly)
8876
8877         * src/SDCCopt.c: fixed for multiple sends & receives
8878
8879         * src/SDCCmain.c:
8880         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8881         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8882            set preprocessor defines (depending on options)
8883
8884         * src/SDCCicode.c, src/SDCCicode.h:
8885         changes made to handle multiple sends & receives
8886
8887         * src/SDCCglobl.h:
8888         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8889
8890         * src/SDCCcse.c, src/SDCCcse.h:
8891         added function findbackward def (to be used in upcoming optimization)
8892
8893         * src/SDCCcflow.c, src/SDCCcflow.h:
8894         added function returnAtEnd - to determine if a basic block terminates with
8895         a RETURN iCode
8896
8897         * src/SDCCast.c, src/SDCCast.h:
8898         added option parms-in-bank1
8899
8900         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8901         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8902         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8903         adjusted for --parms-in-bank1 option
8904
8905         * device/include/string.h:
8906         donot redefine "reentrant" keyword
8907
8908         * device/include/ds80c390.h: Added some more SFRs
8909
8910 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8911
8912         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8913
8914 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8915
8916         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8917
8918 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8919
8920         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8921
8922 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8923
8924         * Added --xram-movc option
8925
8926 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8927
8928         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8929
8930 2002-01-11  Johan Knol
8931
8932         * Added math lib of Jesus Calvino-Fraga
8933
8934 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8935
8936         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8937         * support/regression/Makefile: new target test-mcs51-stack-auto
8938         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8939
8940 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8941
8942         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8943
8944 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8945
8946         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8947
8948 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8949
8950         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8951
8952         * src/SDCCglue.h: add definition for printIvalChar()
8953
8954 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8955
8956         * src/SDCCast.c: fix #498138 by Johan
8957
8958         * src/SDCCglue.c: fix #498138 by Johan
8959
8960 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8961
8962         * support/regression/Makefile: fix clean
8963
8964         * support/regression/ports/ds390/support.c: fix transmission of last character
8965
8966 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8967
8968         * /sdcc/src/ds390/gen.c:
8969         a) improved computing address of stack variable
8970         b) took out some #if 0 code
8971         c) improved parmBytes adjustment
8972         d) improved genPlusIncr & genMinusIncr
8973         e) genCmp could generate bad code (when left assigned to DPTR)
8974         f) Fixed bug in hasInc
8975
8976         * /sdcc/src/ds390/ralloc.c:
8977         a) packRegsForSupport could mess up live information (Fixed)
8978         b) packRegsDPTRuse could be incorrect for left & right shift
8979
8980         * /sdcc/src/mcs51/ralloc.c:
8981         packRegsForSupport could mess up the live information (Fixed)
8982
8983         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8984
8985         * /sdcc/src/SDCCast.c:
8986         can reverse a loop even if function call is present as long
8987         as the loop control variable is local & is not passed as parameter
8988
8989 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8990
8991         * /sdcc/ChangeLog: *** empty log message ***
8992
8993         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8994         More builtin function additions for TININative
8995
8996         * /sdcc/src/ds390/ralloc.c:
8997         Had broken the regression testsuite
8998
8999         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9000
9001         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9002         Added funcattr hasStackParms will be set for reentrant functions when there
9003         are paramteres on the stack, this helps in minimizing frame pointer generation
9004         typeFromStr can handle function pointers now
9005
9006         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9007         *** empty log message ***
9008
9009 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9010
9011         * /src/ds390/gen.c, /src/ds390/main.c:
9012         More builtin function additions for TININative
9013
9014         * /src/ds390/ralloc.c:
9015         Had broken the regression testsuite
9016
9017         * /src/SDCCast.c: Fixed a bug in dumptree
9018
9019         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9020         Added funcattr hasStackParms will be set for reentrant functions when there
9021         are paramteres on the stack, this helps in minimizing frame pointer generation
9022         typeFromStr can handle function pointers now
9023
9024         * /doc/builtins.txt, /doc/TININative.txt:
9025         *** empty log message ***
9026
9027
9028 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9029
9030         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9031         ALPHA version for -mTININative
9032
9033         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9034         updated to reflect changes in the port structure
9035
9036         * /src/port.h:
9037         added function do_assemble (similar to do_link) if non-null this function
9038         will be called to do assembly (-mTININative) requires a multi command
9039         assembly
9040         added function genAssemblerEnd will be called to generate assembler Epilogue
9041
9042         * /src/SDCCsymt.c:
9043         added _JavaNative to debug info printing
9044
9045         * /src/SDCCmain.c: added option --tini-libid
9046         added port->do_assemble function (-mTININative) has a multi command assemble
9047
9048         * /src/SDCCglue.c: Disabled "constExpr" check
9049         added port->genAssemblerEnd function
9050
9051         * /src/SDCCglobl.h: Added option --tini-libid value
9052
9053         * /src/SDCCast.h:
9054         tookout optimizeCompare from the header (has no external references)
9055
9056         * /src/SDCCast.c: made one more function "static"
9057
9058 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9059
9060         * src/z80/mappings.i: Added z80asm support.
9061
9062         * src/z80/main.c: Added z80asm support on --asm=z80asm
9063
9064         * src/z80/gen.c: Fixed asm portability issues.
9065
9066         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9067
9068         * src/SDCCglue.c (printExterns): Added global/extern split.
9069
9070 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9071
9072         * support/regression/Makefile: added test for mcs51 model large
9073
9074         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9075
9076         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9077
9078 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9079
9080         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9081
9082 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9083
9084         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9085
9086         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9087
9088 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9089
9090         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9091
9092         * support/regression/tests/simplefloat.c: Port to mcs51.
9093
9094 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9095         * support/regression/tests/bug-485362.c: Added.
9096
9097         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9098
9099         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9100
9101         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9102
9103         * src/z80/gen.c (aopDump): Added a dump function.
9104
9105 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9106         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9107
9108         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9109
9110         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9111
9112         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9113
9114         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9115
9116         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9117
9118         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9119
9120         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9121
9122         * support/regression/ports/ds390/support.c: Use tinibios.
9123
9124         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9125
9126 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9127
9128         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9129         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9130
9131         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9132
9133         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9134
9135 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9136
9137         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9138
9139         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9140         (packRegsForIYUse): Created and optimised.
9141
9142 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9143
9144         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9145 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9146
9147         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9148
9149         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9150
9151         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9152
9153 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9154
9155         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9156
9157         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9158
9159 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9160
9161         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9162
9163         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9164
9165         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9166
9167 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9168
9169         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9170         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9171         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9172
9173         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9174
9175         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9176         (genNotFloat): Added.
9177         (genUminusFloat): Added.
9178
9179         * device/lib/z80/Makefile: Added floating pt stubs.
9180
9181         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9182
9183         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9184
9185         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9186
9187 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9188
9189         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9190
9191         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9192
9193         * sdcc/support/regression/Makefile: Add port ds390.
9194
9195         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9196
9197         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9198
9199         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9200
9201         * sdcc/support/regression/ports/ds390/support.c: Added.
9202
9203         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9204
9205         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9206
9207         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9208
9209 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9210
9211         * device/include/malloc.h: Added z80 and gbz80 support.
9212
9213         * device/lib/gbz80/heap.s: Added.
9214
9215         * device/lib/z80/heap.s: Added.
9216
9217         * device/lib/malloc.c: Added z80 and gbz80 support.
9218
9219         * support/regression/tests/malloc.c (testMalloc): Added.
9220
9221         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9222
9223         * support/regression/tests/bug-478094.c: Added.
9224
9225         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9226
9227 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9228
9229         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9230
9231         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9232
9233         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9234
9235         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9236
9237         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9238
9239 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9240
9241         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9242
9243 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9244
9245         * support/regression/tests/bug-477927.c: Added.
9246
9247         * src/z80/peeph.def: Added minor rules.
9248
9249         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9250
9251         * src/z80/peeph.def: Added jump optimisation modification.
9252
9253 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9254
9255         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9256
9257 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9258
9259         * support/regression/tests/funptrs.c: Added.
9260
9261 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9262
9263         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9264
9265 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9266
9267         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9268
9269         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9270
9271         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9272         (movLeft2ResultLong): Created.
9273
9274         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9275         (joinPushes): Added.  Joins two char pushes into a word push.
9276
9277 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9278
9279         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9280
9281         * support/makebin/Makefile (install): Added creation of dest dir.
9282
9283 2001-10-24 Karl Bongers <karl AT turbobit.com>
9284
9285         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9286
9287 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9288
9289         * src/z80/ralloc.c: Turned off faulty pack for one use.
9290
9291         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9292
9293         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9294
9295 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9296
9297         * support/regression/Makefile: Improved clean
9298
9299         * support/regression/ports/gbz80/spec.mk: Added clean
9300
9301         * support/regression/ports/host/spec.mk: Added clean
9302
9303         * support/regression/ports/z80/spec.mk: Added clean
9304
9305         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9306
9307         * support/regression/ports/mcs51/timeout.c: little improvements
9308
9309 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9310
9311         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9312
9313         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9314
9315         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9316
9317 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9318
9319         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9320
9321         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9322
9323 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9324         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9325
9326         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9327
9328         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9329
9330         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9331
9332         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9333
9334         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9335
9336         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9337
9338         * support/regression/tests/longor.c: Added.
9339
9340 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9341
9342         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9343
9344         * as/mcs51/aslink.h: define PATH_MAX
9345
9346         * as/mcs51/asm.h: define PATH_MAX
9347
9348         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9349
9350         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9351
9352         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9353
9354         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9355
9356         * src/SDCCglobl.h: define PATH_MAX
9357
9358         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9359
9360         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9361
9362 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9363
9364         * src/z80/gen.c (gencjneshort): Fixed
9365
9366         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9367
9368 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9369
9370         * support/regression/tests/bug-469671.c: Added.
9371
9372         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9373
9374 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9375
9376         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9377
9378         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9379
9380 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9381
9382         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9383
9384         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9385
9386         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9387
9388         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9389
9390         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9391
9392         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9393
9394         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9395
9396 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9397
9398         * 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.
9399
9400         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9401
9402         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9403
9404 2001-10-07    <johan AT FRIJA>
9405
9406         * device/lib/gets.c (gets): fixed the return value.
9407
9408 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9409         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9410
9411         * 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.
9412
9413         * 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.
9414
9415         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9416
9417         * src/pic/gen.c: Removed Safe_strdup.
9418
9419         * configure.in: Added option to enable libgc support.
9420
9421         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9422         (bitVectUnion): Optimised.
9423         (bitVectIntersect): Optimised.
9424         (bitVectBitsInCommon): Optimised.
9425         (bitVectCplAnd): Optimised.
9426
9427         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9428
9429 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9430
9431         * src/SDCCmain.c: distinguish between assembler debug and plain options
9432
9433         * src/avr/main.c:   remove standard assembler options
9434
9435         * src/ds390/main.c: remove standard assembler options
9436
9437         * src/mcs51/main.c: remove standard assembler options
9438
9439         * src/port.h: removed "PENDING" comment
9440
9441 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9442
9443         * src/device/lib/_mulint.c  : new, with assember functions
9444
9445         * src/device/lib/_mullong.c : new, with assember functions
9446
9447         * src/device/lib/_divuint.c : with assember functions
9448
9449         * src/device/lib/_divsint.c : with assember functions
9450
9451         * src/device/lib/_divulong.c: with assember functions
9452
9453         * src/device/lib/_divslong.c: with assember functions
9454
9455         * src/device/lib/_moduint.c : with assember functions
9456
9457         * src/device/lib/_modsint.c : with assember functions
9458
9459         * src/device/lib/_modulong.c: with assember functions
9460
9461         * src/device/lib/_modslong.c: with assember functions
9462
9463         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9464
9465         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9466
9467         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9468                                       replaced _mululong.c and _mulslong.c by _mullong.c
9469
9470 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9471
9472         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9473
9474 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9475
9476         * src/SDCCglue.c: test, if win32api is available for MINGW
9477
9478 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9479
9480         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9481         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9482         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9483         * support/regression/ports/host/spec.mk: removed GENERIC
9484         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9485         * support/regression/ports/z80/spec.mk: removed GENERIC
9486
9487 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9488
9489         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9490
9491         * support/regression/tests/bug-467035.c: Created.
9492
9493 2001-10-01    <johan AT FRIJA>
9494
9495         * src/SDCC.y: fixed bug #466586 part 1
9496
9497 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9498
9499         * SDCCicode.c: z80 has no generic pointers
9500         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9501
9502 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9503
9504         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9505
9506 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9507
9508         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9509
9510         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9511
9512 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9513
9514         * configure.in: Fixed up so that ucsim is only configured once.
9515
9516         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9517
9518         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9519         (getPathDifference): As above.
9520
9521         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9522
9523         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9524
9525 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9526         * .version: Updated to 2.3.1
9527
9528         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9529         Added copyright header.
9530
9531         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9532         (assemble): Added support for macro based assembler commands.
9533         (linkEdit): Added support for macro based linker commands.
9534         (preProcess): Changed the pre-processor to use macros.
9535         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9536         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9537
9538         * device/lib/z80/crt0.s: Added module name for debugging.
9539
9540 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9541
9542         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9543
9544         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9545
9546         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9547
9548         * src/Makefile.in: Added SDCCmacro and SDCCutil
9549
9550 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9551
9552         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9553
9554 2001-09-16    <johan AT FRIJA>
9555
9556         * 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.
9557
9558 2001-09-15    <johan AT FRIJA>
9559
9560         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9561         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9562
9563 2001-09-11    <johan AT FRIJA>
9564
9565         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9566
9567 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9568
9569         * support/regression/tests/bug-460444.c: Added test case.
9570
9571         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9572         (genCast): Added justification for all of the asserts.
9573
9574 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9575
9576         * support/regression/support.c: _xdata replaced by xdata
9577
9578         * support/regression/spec.mk: removed _generic
9579
9580 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9581
9582         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9583
9584         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9585         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9586
9587         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9588
9589         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9590
9591         * support/regression/tests/bug-460010.c: Added test case.
9592
9593         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9594
9595 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9596
9597         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9598
9599         * support/regression/testfwk.c: removed workaround for bug #436344
9600
9601         * support/regression/tests/bp.c: use less memory with mcs51
9602
9603         * support/regression/tests/bug-441448.c: use less memory
9604
9605         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9606
9607         * support/regression/collate-results.py: typo
9608
9609 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9610
9611         * support/regression/tests/fetchoverlap.c: Added new test case.
9612
9613         * support/regression/tests/bp.c: Added new test case.
9614
9615         * support/regression/tests/bug-448984.c: Added new test case.
9616
9617         * support/regression/tests/pow2shifts.c: Added new test case.
9618
9619         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9620         (genlshTwo): Fixed right shift for count > 8.
9621
9622         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9623
9624 2001-09-08    <johan AT FRIJA>
9625
9626         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9627
9628 2001-09-07    <johan AT FRIJA>
9629
9630         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9631
9632         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9633
9634 2001-09-06    <johan AT FRIJA>
9635
9636         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9637         * bernhard noted me at this: "() equals to (void)" (1.38)
9638
9639 2001-09-05    <johan AT FRIJA>
9640
9641         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9642
9643 2001-09-04    <johan AT FRIJA>
9644
9645         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9646
9647
9648 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9649
9650         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9651
9652 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9653
9654         * link/z80/aslink.h: Fixed path for PATH_MAX
9655
9656 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9657
9658         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9659
9660         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9661
9662         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9663
9664         * 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.
9665
9666 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9667
9668         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9669         (genCmp): Fixed up genCmp for the GB with longs.
9670
9671         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9672
9673         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9674
9675         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9676
9677         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9678
9679 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9680
9681         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9682
9683 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9684
9685         * 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.
9686
9687         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9688
9689 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9690
9691         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9692
9693         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9694
9695 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9696
9697   * sim/ucsim/configure:    little improvement of Cygwin-detection
9698   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9699   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9700   * support/regression/tests/bug-221100.c: small changes for mcs51
9701   * support/regression/tests/bug-221168.c: small changes for mcs51
9702   * support/regression/tests/bug-227710.c: small changes for mcs51
9703   * support/regression/tests/staticinit.c: small changes for mcs51
9704   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9705   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9706   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9707
9708 $Revision$