* sim/ucsim/gui.src/serio.src/Makefile.in, sim/ucsim/s51.src/Makefile.in, sim/ucsim...
[fw/sdcc] / ChangeLog
1 2005-08-25 Borut Razem <borut.razem AT siol.net>
2
3         * sim/ucsim/gui.src/serio.src/Makefile.in,
4           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
5           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
6           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
7           install and strip, since the strip at /usr/ccs/bin should be used
8           on solaris
9
10 2005-08-24 Borut Razem <borut.razem AT siol.net>
11
12         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
13
14 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
15
16         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
17         ffffffffu
18
19 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
20
21         * as/mcs51/aslink.h: completed lkrloc.c prototypes
22         * as/mcs51/lkmain.c (link_main): fixed warning
23         * device/include/stdbool.h: ds390 has no advanced bit support yet
24         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
25         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
26         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
27           and updated their macros
28         * src/SDCCval.c (constVal): updated comment for renamed b_long
29
30 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
31
32         * as/mcs51/asdata.c: changed ctype['['] to BINOP
33         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
34           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
35           (oprio): set priority for '['
36         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
37            and adb_24_bit
38         * as/mcs51/asm.h: added defines R_BIT and S_BIT
39         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
40         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
41         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
42           added overlayable BIT_BANK area
43         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
44           (summary2): explain 'T' in legenda
45         * as/mcs51/lkrloc.c: replaced old K&R style,
46           (relr): added R_BIT processing,
47           (errmsg): added "Bit-addressable relocation error",
48           (adb_bit): added for converting from byte- to bit-addressable space,
49           (adb_24_bit): added for converting from byte- to bit-addressable space
50         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
51            used in reentrant functions now even as return value
52         * device/lib/_gptrput.c (_gptrput): removed obsolete code
53         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
54           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
55         * src/SDCCglobl.h: added indicator BitBankUsed
56         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
57            the bit registers b0-b7
58         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
59           (geniCodeCast): fixed bug 1263853,
60           (geniCodeLogicAndOr): put result in bool or char,
61           (geniCodeReceive): added parameter func for accessing the return type,
62           (geniCodeFunctionBody): pass func to geniCodeReceive
63         * src/SDCCmain.c: added indicator BitBankUsed
64         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
65         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
66           (checkSClass): don't put automatic bool/bit on stack,
67           (checkFunction): removed check on function cannot return bit
68         * src/SDCCsymt.h: added newBoolLink prototype
69         * src/mcs51/gen.c (rb1regs): added bit registers,
70           (movc): created for assigning to carry,
71           (pushReg, popReg): created for pushing registers,
72           (sameRegs): check both AOP_REG and AOP_CRY types,
73           (aopOp): handle bit registers,
74           (aopPut): optimization no self-assign,
75           (saveRegisters): push reg->base (bits) only once for bit registers,
76            and use pushReg,
77           (unsaveRegisters): pop reg->base only once and use popReg,
78           (assignResultValue): added parameter func and return in carry for bits,
79           (genIpush): optimization no reload in A if not changed,
80           (genSend): bit parameters in reentrant functions are passed in bit
81            registers by first assigning to bits in B, then save registers and
82            copy B to bits,
83           (genCall): handle returning in Carry properly, save it in F0 if needed,
84           (genPcall): updated assignResultValue call, this is not safe yet for bit
85            returning function !!!
86           (genFunction): don't generate equ's for bit registers and use pushReg,
87           (genEndFunction): take care of bit returning functions and use popReg,
88           (genRet): return bit in Carry,
89           (genIfx): optimize bit registers and other directly addressable bits,
90           (genReceive): updated assignResultValue call
91         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
92           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
93            registers when using stack-auto
94         * src/mcs51/ralloc.c (_G): added allBitregs,
95           (regs8051): added the bit registers,
96           (createStackSpil): use macro IS_BIT,
97           (getRegBit): added to allocate a bit register, else spill,
98           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
99           (updateRegUsage): factored out to ease stepping while debugging,
100           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
101            also allocate bit registers,
102           (fillGaps): handle bit registers,
103           (findAllBitregs): added to create bit vector with all bit registers,
104           (mcs51_allBitregs): returns this bit vector,
105           (mcs51_assignRegisters): when using stack-auto use bit registers for
106            passing parameters and creating local variables
107         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
108
109 2005-08-22 Borut Razem <borut.razem AT siol.net>
110
111         * device/lib/Makefile.in: replaced find option -or with -o
112           to make it run on solaris
113
114 2005-08-22 Raphael Neider <rneider AT web.de>
115
116         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
117           fixes #1265442 (crash on Solaris)
118
119 2005-08-20 Borut Razem <borut.razem AT siol.net>
120
121         * configure, configure.in: added tests for libsocket and libnsl libraries,
122           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
123           from support/regression/Makefile.in
124         * support/regression/Makefile.in: added
125         * device/lib/pic16/Makefile.common.in: force make to use bash shell
126         * sim/ucsim/libtool: regenerated on sparc-solaris
127         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
128           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
129           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
130           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
131           sparc-solaris, which doesn't use GNU ld linker
132         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
133         * as/Makefile: find on sparc-solaris does not support -maxdepth option
134
135 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
136
137         * src/mcs51/peeph.def: updated comments
138
139 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
140
141         * device/lib/_gptrget.c,
142         * device/lib/_gptrput.c: slightly shorter
143         * doc/sdccman.lyx: incremented version
144         * src/mcs51/peeph.def: moved peephole comments to the line of first
145           change to better keep line correlation, reanimated 186.e
146         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
147
148 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
149
150         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
151           David Saxton with quotes around file name.
152
153 2005-08-15 Borut Razem <borut.razem AT siol.net>
154
155         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
156           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
157           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
158           make tests run on x86_64 platform
159
160 2005-08-13 Raphael Neider <rneider AT web.de>
161
162         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
163           as it might be executed DURING a build (parallel make is wonderful)
164
165 2005-08-13 Raphael Neider <rneider AT web.de>
166
167         * device/lib/Makefile.in (port-specific-objects-pic16):
168           revert to cp $(PORT)/bin/*.* $(PORTDIR)
169         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
170           dependency
171         * device/lib/pic16/Makefile.rules: build subdirs before creating
172           the library, removed builddir rule, create $(builddir) early in
173           recurse rule, use empty recurse rule for leaf directories
174         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
175           mkdir errors (race condition), removed duplicate suffix "hex"
176           from clean rules
177         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
178         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
179           prevents mkdir -p from aborting on Alpha
180
181 2005-08-12 Raphael Neider <rneider AT web.de>
182
183         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
184           db-statements in order to allow for arrays of pointers in code
185           sections to be placed without interspersed 0-padding, fixes
186           bug #1256215
187         * (emitStatistics): fixed division by zero for pic18f1220
188         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
189           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
190         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
191         * (pic16_pCodeConstString): keep track of already emitted string
192           literals to prevent "duplicate definitions of symbol _str_NR"
193         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
194           debug message
195         * device/lib/Makefile.in: ignore failing PIC16 library builds
196         * device/lib/pic16/Makefile: do not build if gputils are missing
197         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
198
199 2005-08-10 Raphael Neider <rneider AT web.de>
200
201         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
202           my last commit)
203
204 2005-08-10 Raphael Neider <rneider AT web.de>
205
206         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
207           Rokas' patch to add the new fixed point type "__fixed16x16"
208         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
209           functions for __fixed16x16 arithmetics
210         * device/lib/pic16: reimplemented the build system to support
211           a separate build directory, better handling of libio (create
212           the library in a separate subdir for each architecture) and
213           easier configuration (centralized in Makefile.common)
214
215 2005-08-07 Raphael Neider <rneider AT web.de>
216
217         * src/pic16/gen.c (genrshTwo): fixed sign extension
218         * src/pic16/device.c: added pic18f2320, 4220 and 4320
219         * device/include/pic16/pic18f2220.h: changed some bit definitions,
220           added T0CONbits
221         * device/include/pic16/pic18f4220.h: NEW, header for
222           pic18f4220 and pic18f4320
223         * device/include/pic16/pic18fregs.h: added new devices,
224           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
225         * device/include/pic16/signal.h: resolved name clashes
226           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
227           to also allow testing for interrupt enable bits, added
228           comments on how to use the macros
229         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
230         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
231           register definitions for the devices
232         * device/lib/pic16/pics.all: added new devices
233         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
234           allocated memory
235         * device/lib/pic16/libc/stdlib/memfree: do not count
236           the block header as free memory
237         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
238           simplified and added missing end-of-blocklist-marker
239           (reported by Peter Onion, fixes #1252814)
240         * (_mergeHeapBlock): fixed loop condition
241         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
242           len==0, restructured code
243         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
244           up a bit, reduced bitfield accesses, prevent endless loops
245           in case of heap corruption
246         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
247           "unreferenced arguments/must return a value" warnings
248         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
249           replaced BAUDREG with SPBRG
250         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
251           device/lib/pic16/debug/gstack/gstack.c: replaced
252           _naked, _asm, _endasm with __naked, __asm, __endasm
253
254 2005-08-05 Raphael Neider <rneider AT web.de>
255
256         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
257           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
258
259 2005-08-05 Borut Razem <borut.razem AT siol.net>
260
261         * device/lib/Makefile.in: added missing ';'
262         * configure: removed ^M characters
263
264 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
265
266         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
267           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
268           License
269
270 2005-08-04 Borut Razem <borut.razem AT siol.net>
271
272         * configure.in: pic16 libraries build 2nd try - enable running
273           configure in device/lib/pic16
274         * configure: regenerated from configure.in
275         * device/lib/Makefile.in: create $(PORT)/bin directory
276
277 2005-08-03 Raphael Neider <rneider AT web.de>
278
279         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
280           to get/set values via pointers
281         * (genUnpackBits,genPackBits): changed detection of
282           ptr->bitfield vs. sym.bitfield, fixed access via generic
283           pointers, removed dead (wrong) code for multibyte bitfields
284         * (genNearPointerGet, genGenPointerGet): removed useless code,
285           fixed bitfield detection, fixes #1250594
286         * (genNearPointerSet): removed useless code
287         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
288           and introduced macro pic16_emitpcode that conditionally emits
289           the origin of the following pCode (useful for debugging SDCC)
290         * src/pic16/pcode.c: changed (and disabled) some debug outputs
291         * (createDefmap): fixed handling of LFSR for --optimize-df
292
293 2005-08-02 Borut Razem <borut.razem AT siol.net>
294
295         * device/lib/Makefile.in: pic16 libraries build enabled since
296           gputils-0.13.2 are now localy installed at sourceforge's compile farm
297
298 2005-08-02 Raphael Neider <rneider AT web.de>
299
300         * src/pic16/gen.c (genPackBits): removed deprecated warning
301         * (genGenPointerSet): fixed bitfield detection
302
303 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
304
305         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
306
307 2005-07-31 Raphael Neider <rneider AT web.de>
308
309         * device/lib/pic16/libdev/pic18f458.c,
310           device/include/pic16/pic18f458.h: added missing T0CONbits
311
312 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
313
314         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
315
316 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
317
318         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
319
320 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
321
322         * device/include/mcs51/at89c51ed2.h: added.
323
324 2005-07-23 Raphael Neider <rneider AT web.de>
325
326         * src/pic/gen.h: added emitpcode macro for debugging
327         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
328           and replace by macro adding debug information on demand
329         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
330         * (gencjne): tried to fix; replaced with correct (slower) code
331         * (gen{Unp,P}ackBits): fixed single bit access
332         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
333         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
334           previous instruction
335         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
336           register has to be handled with care (forbidding movement
337           of assignments/uses, removing assignments completely, ...)
338         * (pCodeOptime2pCodes): make use of regIsSpecial
339         * added lots of debugging output (commented out)
340         * src/pic/rallloc.c (deassignLRs): prevent operand registers
341           from being reused as result UNLESS it is known to work
342
343 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
344
345         * support/Util/dbuf.h: include <stddef.h> for size_t
346         * .version: changed to version 2.5.2
347
348 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
349
350         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
351
352 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
353
354         * src/hc08/gen.c (genMinus): fixed bug #1241835,
355           (genModOneByte): removed needless psha/pula
356
357 2005-07-22 Raphael Neider <rneider AT web.de>
358
359         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
360           have PIC14 handled like PIC16, fixes broken pic14 linker calls
361         * src/pic/gen.c (resolveIfx): do not "invent" labels
362         * (genSkipc): changed to positive logic
363         * (genSkipCond): removed as no longer needed
364         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
365           backport from PIC16
366         * (genLeftShift): check operands are in different registers
367         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
368           INCF does not update CARRY...
369         * src/pic/main.c: fixed _linkCmd
370         * src/pic/pcode.c (unlinkpCode): added inactive code
371         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
372           alive (do not assign result and operand overlapping registers)
373
374 2005-07-22 Raphael Neider <rneider AT web.de>
375
376         * src/pic/device.c (dump_sfr): replaced register declaration with
377           call to emitSymbolToFile() to avoid duplicate symbols
378         * (assignRelocatableRegisters): do not declare external symbols
379         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
380           right (take size of type, not etype)
381         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
382         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
383         * (packRegsForAccUse): disabled assignment of WREG as
384           the result reg to prevent occurence of just fixed #1235003,
385           fixes #1242954
386         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
387           symbols (avoids duplicate symbols in .asm file)
388         * (pic14emitRegularMap): use emitSymbolToFile()
389         * src/pic/gen.c (aopOp): fixed spillLocation handling
390         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
391         * (genDataPointerSet): removed unneccessary variables/output
392
393 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
394
395         * as/mcs51/lkarea.c: enlarged codemap for banked memory
396         * device/lib/mcs51/crtbank.asm: added # to 0x0F
397
398 2005-07-21 Raphael Neider <rneider AT web.de>
399
400         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
401           architecture cannot handle them efficiently, fixes bug #1235003
402         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
403           check for empty sets before using them (fixes bug #1232190)
404
405 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
406
407         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
408           (lnksect2): generate warnings for memory overlap
409         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
410           constseg to set the name of these segments so you can instruct the linker
411           to place them in banks
412         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
413         * src/SDCCglobl.h: added MODEL_HUGE to enum,
414           added code_seg and const_seg to options
415         * src/SDCCglue.c (emitMaps): use options.const_seg,
416           (createInterruptVect): put interrupt vectors in segment HOME,
417           (glue): put HOME before static segment and put the main glue in HOME,
418           (glue): use options.code_seg
419         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
420         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
421           these segments so you can instruct the linker to place them in banks
422           (linkEdit): use code_loc for HOME segment which should be the first
423           segment in code memory now
424         * src/SDCCmem.c: fixed more stuff like bug 1238386
425         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
426           (changePointer): don't change function pointers to code pointers for
427           banked functions,
428           (compareType): added exceptional check for banked function pointers
429         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
430         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
431           after static in code memory
432         * src/mcs51/gen.c: added aopLiteralLong prototype,
433           (aopForSym): use getSize for functions,
434           (genCall): generate banked calls over one trampoline __sdcc_banked_call
435           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
436           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
437           the segment,
438           (genPcall): use call for literal function pointers and generate banked
439           calls over the one trampoline so there's only one place for the user to
440           modify according to his/hers hardware,
441           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
442           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
443         * src/mcs51/main.c: added keyword banked,
444           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
445         * support/Util/SDCCerr.c,
446         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
447           needed for passing the bank and address to the trampoline
448         * device/lib/mcs51/crtbank.asm: added for bankswitching
449         * device/lib/mcs51/Makefile: added crtbank
450
451 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
452
453         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
454           for fields at offset 0 of a struct or union as reported
455           on 2005-07-07 in the developer mailing list.
456
457 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
458
459         * src/SDCCmem.c: fixed bug 1238386
460
461 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
462
463         * src/mcs51/peeph.def: added labelrefcounting for peepholes
464           (patch #1144962), added peephole 300, enabled 259.x
465         * doc/sdccman.lyx: removed screenshot and provided link instead
466
467 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
468
469         * doc/sdccman.lyx: added section about debugging with ddd
470         * doc/figures/ddd_example.eps: screenshot of debugging session
471
472 2005-07-04 Raphael Neider <rneider AT web.de>
473
474         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
475           like CODE pointers, fixes #1115683
476         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
477           call, fixes bugs #1232211, #1228110,
478           fixed wrong casts to pCodeFlow from pCodeInstructions
479
480 2005-07-04 Raphael Neider <rneider AT web.de>
481
482         * src/pic/gen.c (popGet): changed assert to allow for
483           bit operands
484         * (popGetAddr): changed signature to provide
485           an additional index, patched all call sites
486         * (genCmpEq): handle literal-like operands correctly
487         * (genAddrOf): added sanity checks on __code/__data pointers
488         * (genAssign): added handling of symbols from __code section
489         * (gencjne): do not generate code for comparisons whose result
490           is neither stored nor used, fixes bug #1171114
491         * (AccLsh, AccRsh): operate on operand instead of WREG
492         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
493           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
494           by known count
495         * rewrote complete shift-by-literal logic, commented unused
496           functions out
497         * (genConstPointerGet): get multiple bytes (if result size > 1),
498           fixed handling of non-immediate addresses
499         * (genPointerGet): handle CODE pointers like CONST pointers
500         * (genpic14Code): insert C-SRC lines as Cource-pCodes
501         * ({aop,op}_isLitLike): NEW, single place to decide whether an
502           operand is to be treated as a literal or not
503         * (mov2w,genPcall,genCmpEq),
504           src/pic/genarith.c: use aop_isLitLike() to decide between
505           literal/register contents
506         * (addSign): added missing offset
507         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
508           only emit comment in debug-mode,
509           use {aop,op}_isLitLike throughout the file
510         * src/pic/glue.c: fix initializers for pointers (work in progress)
511         * src/pic/pcode.c (get_op): honor index on _const symbols
512         * ({reset,dump}pCodeStatistics): NEW, estimate code size
513         * (dumppBlock): added pCode size estimation
514         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
515           check for IS_SYMOP before OP_SYMBOL'ing
516         * fixed indentation, compacted switch-statements
517         * (allocReg): find free register and allocate it instead of
518           allocating new registers all the time
519         * (deassignLRs): prevent POINTER_GET's from being assigned the same
520           registers as its operands (necessary only for multibyte GETs)
521
522 2005-07-01 Raphael Neider <rneider AT web.de>
523
524         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
525           debugging .asm-output macros FENTRY + FEXIT
526         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
527           way... I wonder...
528         * (emitpComment): NEW, printf to pCode
529         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
530           offset handling
531         * (popGetAddr): NEW, variant of popGet to access an immediates
532           high(er) bytes instead of the n'th byte of memory they reference,
533           replaced popGet with popGetAddr where neccessary
534         * (genDataPointerGet): reactivated and fixed implementation
535         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
536           accesses
537         * (genDataPointerSet): fixed multibyte assignments
538         * (genpic14Code): fixed --i-code-in-asm handling
539         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
540         * (genPlus): fixed index-out-of-bounds error
541         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
542         * src/pic/ralloc.c: added debugging output macro FENTRY2
543         * (spillThis): fixed indentation, enbraced for-body for clarity
544         * (rematStr): commented out as now unused
545         * (regTypeNum): commented out special spill case (overwrites
546           arbitrary values)
547         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
548
549 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
550
551         * doc/sdccman.lyx: documented sfr16/sfr32,
552           added example for using storage class with function pointers
553         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
554
555 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
556
557         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
558         * device/lib/_itoa.c,
559         * device/lib/_ltoa.c: optimized codesize
560         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
561           but don't know how to suppress the double warning.
562         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
563         * support/Util/SDCCerr.c,
564         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
565
566 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
567
568         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
569           fixed old K&R prototypes
570         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
571         * device/lib/_gptrget.c,
572         * device/lib/_gptrgetc.c,
573         * device/lib/_gptrput.c: changed versions for new memory indicator values,
574           also new versions for small generic pointers and banked generic pointers
575         * src/port.h: added const_name
576         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
577         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
578         * src/SDCCcse.c (findPrevIc): check all associative operators
579         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
580         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
581         * src/SDCCmem.c: updated comments,
582           set far-space to 0 for pdata, results in optimized code
583         * src/SDCCmem.h: added macro CONST_NAME
584         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
585           moving the info into the highest bits, see also gptrget/gptrput
586         * src/src.dsp: added sdcc.ico to project files
587         * src/avr/gen.c (genCast): fixed bug 0x%d
588         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
589         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
590           relation between ptr_type and DCL_TYPE,
591           (genCast): fixed bug 0x%d
592         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
593           (CODE)" for const_name
594         * src/hc08/gen.c (genCast): fixed bug 0x%d
595         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
596           (hc08_port): added "CONST (CODE)" for const_name
597         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
598           (aopForRemat, adjustArithmeticResult): disconnected direct relation
599           between ptr_type and DCL_TYPE,
600           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
601           operand* and took AOP() inside function so sfr-ness can be checked,
602           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
603           new prototype,
604           (genFunction, genEndFunction): optimized stack setup,
605           (genMinus): optimized for literals with ending zeroes (in bytes),
606           (genCast): fixed bug 0x%d
607         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
608           (mcs51_port): added "CONST (CODE)" for const_name
609         * src/mcs51/peeph.def: made rule 226 more generic
610         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
611         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
612         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
613         * src/z80/main.c (z80_port): added NULL for const_name,
614           (gbz80_port): added NULL for const_name
615         * support/regression/tests/bug663539.c,
616         * support/regression/tests/sfr16.c: new tests
617
618 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
619
620         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
621
622 2005-06-24 Raphael Neider <rneider AT web.de>
623
624         * device/lib/pic16/libdev/pic18f[68][567]20.c:
625           corrected typos...
626         * device/include/pic16/signal.h: added USBIF
627           and SIG_USB
628
629 2005-06-24 Raphael Neider <rneider AT web.de>
630
631         * device/lib/pic16/libdev/pic18f2455.c,
632           device/include/pic16/pic18f2455.h: NEW
633         * device/include/pic16/pic18fregs.h,
634           device/lib/pic16/pics.all,
635           src/pic16/device.c: added 18f2455
636         * device/lib/pic16/libdev/pic18f[68][567]20.c,
637           device/include/pic16/{pic18f[68][567].h,usart.h}:
638           replaced MULTIPLE_USARTS define with more relaible
639           compatibility sfrs (for USART access)
640
641 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
642
643         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
644           and the output asm file line is printed on two lines.
645
646 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
647
648         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
649           BGT, BLE, BHI, and BLS instructions
650         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
651           genCmpEq): removed
652         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
653           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
654           fixes bug #1216342
655         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
656
657 2005-06-15 Raphael Neider <rneider AT web.de>
658
659         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
660         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
661         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
662           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
663           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
664
665 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
666
667         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
668           Marcel Telka in bug #1215704
669
670 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
671
672         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
673           located in shared memory bank.
674
675 2005-05-31 Raphael Neider <rneider AT web.de>
676
677         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
678           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
679           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
680
681 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
682
683         * device/lib/_strncpy.c: fixed the fix
684
685 2005-05-26 Raphael Neider <rneider AT web.de>
686
687         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
688           initializers with \0, bug #1208187
689         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
690           intializers with \0, bug #1208187
691
692 2005-05-26 Raphael Neider <rneider AT web.de>
693
694         * src/pic16/glue.c (pic16_printIvalChar): fixed string
695           initializers with \0, bug #1208187
696         * src/pic16/main.c (_process_pragma): added sanity checks
697           for stack position and size, emit warnings when appropriate
698
699 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
700
701         * device/lib/_strncpy.c: fixed not filling with \0
702
703 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
704
705         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
706           createFunction),
707         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
708           compound_statement),
709         * src/SDCCsymt.h,
710         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
711
712 2005-05-24 Raphael Neider <rneider AT web.de>
713
714         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
715
716 2005-05-24 Raphael Neider <rneider AT web.de>
717
718         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
719           TRISE definitions, closes bug #1162453
720
721 2005-05-22 Raphael Neider <rneider AT web.de>
722
723         * src/pic16/main.c (_process_pragma): check for missing
724           arguments to pragmas code and udata
725         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
726           consistency fixes to match other headers (thanks to Jim Paris)
727         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
728
729 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
730
731         * src/SDCCicode.c (isOperandEqual): fixed missing ;
732
733 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
734
735         * support/regression/tests/bug1198642.c: new test
736         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
737         * src/SDCCcse.c (findPrevIc): added comment, please have a look
738         * support/scripts/resource.h,
739         * support/scripts/resource.rc,
740         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
741         * support/scripts/sdcc.ico: added 32x32 icon
742
743 2005-05-18 Raphael Neider <rneider AT web.de>
744
745         * device/lib/pic16/libdev/pic18f*.c,
746         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
747           keywords to "__sfr" and "__at (X)"
748         * device/include/pic16/pic18fregs.h: added pic18f4520
749         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
750           #1203088 (MPLAB compatibility)
751
752 2005-05-17 Raphael Neider <rneider AT web.de>
753
754         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
755         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
756         * device/lib/pic16/pics.all: added new devices
757         * src/pic16/device.c: added support for pic18f4520
758
759 2005-05-16 Raphael Neider <rneider AT web.de>
760         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
761         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
762         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
763           convenience function for bit access
764
765 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
766
767         * device/lib/printf_large.c: fixed bug 1193299
768         * support/regression/tests/bug1057979.c: added test %3.3s
769
770 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
771
772         * device/include/mcs51/8051.h,
773         * device/include/mcs51/8052.h: made parseable with lint
774         * device/include/mcs51/lint.h: added include file for (sp)lint
775         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
776         * doc/cdbfileformat.lyx,
777         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
778
779 2005-05-14 Raphael Neider <rneider AT web.de>
780
781         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
782         * device/lib/pic16/libc/stdlib/itoa.c (new)
783         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
784         * device/lib/pic16/libio/Makefile: exclude subdir according to
785           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
786         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
787         * src/pic16/gen.c (genFunction): prevent annoying warning
788         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
789           nameclashes on BeOS
790         * support/cpp2/cppmain.c (cpp_output_string): new
791         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
792           fixes bug 1116802
793
794 2005-05-13 Borut Razem <borut.razem AT siol.net>
795
796         * src/SDCCmain.c (linkEdit): fixed bug 1195202
797
798 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
799
800         * .version: changed to version 2.5.1; back to bleeding edge development
801
802 2005-05-11 Borut Razem <borut.razem AT siol.net>
803
804         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
805           generate PDF version 1.3 documents
806
807 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
808
809         * .version: changed to version 2.5.0
810
811 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
812
813         * doc/sdccman.lyx: updated weblinks, index and smaller updates
814
815 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
816
817         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
818         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
819         well as many smaller updates.
820         * .version: changed to version 2.5.0-pre1
821
822 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
823
824         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
825
826 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
827
828         * support/regression/tests/bug1185672.c: added
829         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
830           bug 1185672
831         * src/mcs51/gen.c (genCall): added comments, made it look safer
832         * src/mcs51/gen.c (genEndFunction): simplified
833
834 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
835
836         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
837
838 2005-04-14 Borut Razem <borut.razem AT siol.net>
839
840         * fixed bug 1045046 - SIGSEGV with really simple code?:
841           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
842           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
843
844 2005-04-14 Borut Razem <borut.razem AT siol.net>
845
846         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
847           src/pic16/device.h: temporarily disabled experimental #inline pragma
848           for 2.5.0 release
849
850 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
851
852         * device/include/z80/stdio.h,
853         * device/include/z80/string.h: removed these highly incomplete files so
854           SDCC can use the default ones in device/include/
855
856 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
857
858         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
859         gcc warning.
860         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
861         fix sdcpp warnings.
862
863 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
864
865         * device/include/malloc.h: removed redundant __reentrant prototypes
866         * device/lib/_mullong.c: added working xstack variant in asm (C version
867           doesn't pass regression tests)
868         * device/lib/bpx.c: used __data and made bpx char for mcs51
869         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
870           (createFunction): fixed bug with xstackPtr
871         * src/SDCCcse.c: corrected comments
872         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
873           (killDeadCode, eBBlockFromiCode): removed unused code
874         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
875           corrected comments
876         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
877           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
878           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
879           (genModOneByte): fixed warning in MSVC
880         * src/mcs51/main.c (): added comments
881         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
882
883 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
884
885         * src/SDCCmain.c (linkEdit): oops, changed one line too many
886
887 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
888
889         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
890
891 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
892
893         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
894         characters arrays of larger size than the declared one.
895
896 2005-04-10 Borut Razem <borut.razem AT siol.net>
897
898         * src/pic/gen.c (genInline),
899           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
900           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
901           (findNextInstruction), (findPrevInstruction),
902           (findInstructionUsingLabel),
903           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
904         * src/pic/pcode.c (findLabel): added missing '\n'
905         * src/src.dsp: added SDCCdwarf2.c to the project
906
907 2005-04-09 Borut Razem <borut.razem AT siol.net>
908
909         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
910
911 2005-04-08 Raphael Neider <rneider AT web.de>
912
913         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
914           into the chain after a given one) and mergeDefmapSymbols (combine
915           defmap entries for each symbol per pcode)
916         * (createDefmap): have defmap entries merged in the end
917         * (defmapReplaceSymRef): split defmap entries covering two accesses to
918           a symbol before replacing one access type's symbol, merge symbols in
919           the end (replacement symbol might already have an entry)
920         * (assignValnums): keep reference to written WREG intact
921
922 2005-04-08 Raphael Neider <rneider AT web.de>
923
924         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
925           Alpha)
926
927 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
928
929         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
930         bytes
931
932 2005-04-07 Raphael Neider <rneider AT web.de>
933
934         * device/include/pic16/usart.h: added compatibility defines for
935           devices with more than one USART
936         * device/include/pic16/pic18f[68][567]20.h: activated above defines
937
938 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
939
940         * device/lib/Makefile.in: updated for port specific include
941
942 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
943
944         * support/regression/ports/mcs51/spec.mk: added mcs51 include
945
946 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
947
948         * device/include/8051.h,
949         * device/include/8052.h,
950         * device/include/at89S8252.h,
951         * device/include/at89c55.h,
952         * device/include/at89x051.h,
953         * device/include/at89x51.h,
954         * device/include/at89x52.h,
955         * device/include/mcs51reg.h,
956         * device/include/reg51.h,
957         * device/include/reg764.h,
958         * device/include/regc515c.h,
959         * device/include/sab80515.h: (re)moved these 12 files
960         * device/include/mcs51/8051.h,
961         * device/include/mcs51/8052.h,
962         * device/include/mcs51/at89S8252.h,
963         * device/include/mcs51/at89c55.h,
964         * device/include/mcs51/at89x051.h,
965         * device/include/mcs51/at89x51.h,
966         * device/include/mcs51/at89x52.h,
967         * device/include/mcs51/mcs51reg.h,
968         * device/include/mcs51/reg51.h,
969         * device/include/mcs51/reg764.h,
970         * device/include/mcs51/regc515c.h,
971         * device/include/mcs51/sab80515.h: and added them here
972
973 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
974
975         * device/include/stdarg.h: changed SDCC specific keywords to double
976           underlined form.
977         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
978           mcs51 and ds390.
979         * device/include/hc08/mc68hc908gp32.h,
980         * device/include/hc08/mc68hc908jb8.h,
981         * device/include/hc08/mc68hc908jkjl.h,
982         * device/include/hc08/mc68hc908qy.h: fixed comments
983         * device/include/mcs51/README: updated
984         * device/include/mcs51/c8051f120.h: added PINRSF
985         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
986         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
987           amidst code. Also inline is not supported.
988
989 2005-04-06 Raphael Neider <rneider AT web.de>
990
991         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
992         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
993           callers stack/frame pointers
994
995 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
996
997         * device/include/pic16/usart.h: added, missing in previous commit,
998         * device/include/pic16/adc.h: fixed typo,
999         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1000         commit,
1001         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1002         <p18fxxx.inc>
1003         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1004         uninitialized because a bug appears with gplink
1005         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1006         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1007         complains for unrecognised option
1008
1009 2005-04-05 Raphael Neider <rneider AT web.de>
1010
1011         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1012           structs as well (using memcpy)
1013         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1014           on ISRs (GOTO has no label)
1015         * src/pic16/device.h: added OF_OPTIMIZE_DF
1016         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1017           new data flow analysis/optimization
1018         * src/pic16/pcode.c: added (prototypes for and implementation of)
1019           dataflow analysis functions, fixed pCodeInstructions' inCond and
1020           outCond values, made RCALL a branch instruction
1021         * (pic16_unlinkpCode): keep C line if possible
1022         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1023           C line moved if possible
1024         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1025         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1026           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1027         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1028           new flow)
1029         * (pic16_getJumptabpCode): NEW, needed in...
1030         * (LinkFlow): fixed handling of jumptables, calls and conditional
1031           branches
1032         * (pic16_InsertCommentAfter): NEW
1033         * (pic16_pCodeReplace): made verbose and flow preserving
1034         * (AnalyzeFlow): added call to data flow analysis
1035         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1036         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1037         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1038
1039 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1040
1041         * src/SDCCast.c (decorateType): fixed bug #1105626
1042
1043 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1044
1045         * device/include/asm/pic16/features.h,
1046         * pic18f*.h headers,
1047         * device/include/pic16/adc.h,
1048         * device/include/pic16/delay.h,
1049         * device/include/pic16/i2c.h,
1050         * device/include/pic16/malloc.h,
1051         * device/include/pic16/stdio.h,
1052         * device/include/pic16/stdlib.h,
1053         * device/include/pic16/string.h,
1054         * device/lib/pic16/libc/stdio/printf_tiny.c,
1055         * device/lib/pic16/libc/stdio/printf_small.c,
1056         * device/lib/pic16/libc/stdio/strmgpsim.c,
1057         * device/lib/pic16/libc/stdio/strmmssp.c,
1058         * device/lib/pic16/libc/stdio/strmusart.c,
1059         * device/lib/pic16/libc/stdio/vfprintf.c,
1060         * device/lib/pic16/libc/stdlib/ltoa.c,
1061         * device/lib/pic16/libc/stdlib/putchar.c,
1062         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1063         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1064         * device/lib/pic16/libc/stdlib/memchrram.c,
1065         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1066         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1067         * device/lib/pic16/libio/adc/adcbusy.c,
1068         * device/lib/pic16/libio/adc/adcread.c,
1069         * device/lib/pic16/libio/adc/adcsetch.c,
1070         * device/lib/pic16/libio/usart/ubaud.c,
1071         * device/lib/pic16/libio/usart/ubusy.c,
1072         * device/lib/pic16/libio/usart/udrdy.c,
1073         * device/lib/pic16/libio/usart/uopen.c,
1074         * device/lib/pic16/libio/usart/uputc.c,
1075         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1076         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1077         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1078         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1079         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1080         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1081         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1082         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1083         specific keywords to double underlined form,
1084         * device/lib/pic16/libc/Makefile.rules,
1085         * device/lib/pic16/libsdcc/Makefile.rules,
1086         * device/lib/pic16/libm/Makefile,
1087         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1088         to compile with C standard set in Makefile.common
1089         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1090         rand.c and crc.c in compilation process,
1091         * device/lib/pic16/libsdcc/int/divuint.c,
1092         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1093         `c' from signed to unsigned,
1094         * device/lib/pic16/startup/crt0.c,
1095         * device/lib/pic16/startup/crt0i.c,
1096         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1097         keywords to double underlined form, bug fixes in _do_cinit function
1098         which prevented the correct initialization of the .idata segment,
1099         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1100         core to enter a infinite loop
1101         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1102
1103 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1104
1105         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1106
1107 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1108
1109         * device/include/Makefile.in: add support for hc08 subdirectory
1110         * device/include/hc08/: new subdirectory
1111         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1112         Lucas Loizaga, thanks!
1113         * device/include/hc08/mc68hc908qy.h,
1114         * device/include/hc08/mc68hc908gp32.h,
1115         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1116         their own directory. Changed internal macro names to use the compiler
1117         reserved namespace. Changed SDCC specific keywords to double
1118         underlined form.
1119         * device/include/math.h,
1120         * device/include/malloc.h,
1121         * device/include/stdarg.h,
1122         * device/include/stdbool.h
1123         * device/include/string.h,
1124         * device/include/tinibios.h,
1125         * device/include/ds400rom.h,
1126         * device/include/8051.h,
1127         * device/include/8052.h,
1128         * device/include/80c51xa.h,
1129         * device/include/at89c55.h,
1130         * device/include/at89S8252.h,
1131         * device/include/at89x51.h,
1132         * device/include/at89x52.h,
1133         * device/include/ds80c390.h,
1134         * device/include/reg764.h,
1135         * device/include/regc515c.h,
1136         * device/include/sab80515.h,
1137         * device/include/mcs51/c8051f000.h,
1138         * device/include/mcs51/c8051f018.h,
1139         * device/include/mcs51/c8051f020.h,
1140         * device/include/mcs51/c8051f040.h,
1141         * device/include/mcs51/c8051f060.h,
1142         * device/include/mcs51/c8051f120.h,
1143         * device/include/mcs51/c8051f300.h,
1144         * device/include/mcs51/c8051f310.h,
1145         * device/include/mcs51/c8051f320.h,
1146         * device/include/mcs51/c8051f330.h,
1147         * device/include/mcs51/c8051f350.h,
1148         * device/include/z180.h: Changed SDCC specific keywords to double
1149         underlined form.
1150
1151 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1152
1153         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1154         18F4455,
1155         * (pic16_assignConfigWordValue): disable testing of configuration
1156         register value with config mask,
1157         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1158         function with port->fun_prefix,
1159         * (genFunction): when generating a naked interrupt function never
1160         create an absolute segment placed in interrupt vector address, place
1161         the actual interrupt function at IVA instead, when an interrupt
1162         function is generated with unspecified interrupt then do not create
1163         the absolute section,
1164         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1165         code for generating a call to generic pointer get/put function with
1166         a call to function pic16_callGenericPointer(),
1167         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1168         the call to the generic pointer get/put functions with prefixing the
1169         function name with port->fun_prefix,
1170         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1171         * src/pic16/main.c (_process_pragma): prefix function with
1172         port->fun_prefix,
1173         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1174         calling assembler, old 18Fxxxx macro is deprecated,
1175         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1176         PC_ASMDIR in while condition,
1177         * (findInstruction): add PC_ASMDIR in while condition,
1178         * (buildCallTree): prefix main with port->fun_prefix,
1179         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1180         identifier for variable with banked access in instructions BTFSS,
1181         BTFSC, BCF, BSF, BTG
1182         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1183         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1184         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1185         perform optimization when enviroment variable NO_REG_OPT is set,
1186         * (insideLRBlock): NEW, return 1 if register is inside an
1187         INF_LOCALREGS block,
1188         * (RemoveRegFromLRBlock): remove a register that is completely
1189         eliminated by register optimization, but it is still left in local
1190         register store/restore in/from stack block,
1191         * (Remove2pcodes): after removing register, check to see if it
1192         should be removed from local register store/restore in/from stack
1193         block,
1194         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1195         DUMMY_READ_VOLATILE,
1196
1197         * device/include/pic16/adc.h: minor prototype modifications and
1198         update,
1199         * device/include/pic16/malloc.h: added GPL notice various
1200         modifications,
1201         * device/include/pic16/stdint.h: NEW, standard header for ints
1202         * device/include/pic16/delay.h: NEW, header for delay functions,
1203         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1204         delay1mtcy,
1205         * device/include/pic16/signal.h: NEW, header providing helper macros
1206         for implementing signal handlers,
1207         * device/include/pic16/stdio.h: added prototypes for functions,
1208         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1209         prototypes for stdin and stdout, added macro PUTCHAR to
1210         automatically implement putchar function prototype,
1211         * device/include/pic16/usart.h: modified and updated USART library,
1212         * device/lib/pic16/libio/adc/,
1213         * device/lib/pic16/libio/i2c: some modifications to improve library
1214         performance,
1215         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1216         family of functions,
1217         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1218         family of functions and other sources,
1219         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1220         of the PIC18Fxx[28] devices,
1221         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1222         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1223         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1224         _do_cinit function, because the previous failed when local variables
1225         where not placed in the same memory bank,
1226         * device/lib/pic16/libsdcc/char/: various modifications to improve
1227         library performance,
1228         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1229         information on the new functions of the c library and more...
1230
1231 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1232
1233         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1234
1235 2005-03-26 Raphael Neider <rneider AT web.de>
1236
1237         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1238           if condition == CARRY)
1239         * (genCmp): adapted to new genSkipc semantics
1240         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1241           on rIfx (genCmp was broken)
1242
1243 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1244
1245         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1246         * src/z80/main.c (_keywords[]),
1247         * src/SDCCglobal.h (struct options),
1248         * src/SDCC.y,
1249         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1250         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1251         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1252         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1253         always available in leading double underscore form. The C99 support is
1254         mostly missing, but it's a start.
1255         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1256         reserved identifier "__data".
1257
1258 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1259
1260         * src/mcs51/peeph.def: fixed bug 1170013
1261
1262 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1263
1264         * device/include/mcs51reg.h: fixed bug 842007
1265
1266 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1267
1268         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1269         last time.
1270
1271 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1272
1273         * src/port.h (struct PORT),
1274         * src/avr/ralloc.c (avr_assignRegisters),
1275         * src/avr/main.c,
1276         * src/ds390/ralloc.c (ds390_assignRegisters),
1277         * src/ds390/main.c,
1278         * src/hc08/ralloc.c (hc08_assignRegisters),
1279         * src/hc08/main.c,
1280         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1281         * src/mcs51/main.c,
1282         * src/pic/ralloc.c (pic14_assignRegisters),
1283         * src/pic/main.c,
1284         * src/pic16/ralloc.c (pic16_assignRegisters),
1285         * src/pic16/main.c,
1286         * src/xa51/ralloc.c (xa51_assignRegisters),
1287         * src/xa51/main.c,
1288         * src/z80/ralloc.c (z80_assignRegisters),
1289         * src/z80/ralloc.h,
1290         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1291         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1292         * src/SDCCcse.h,
1293         * src/SDCCdflow.c (computeDataFlow),
1294         * src/SDCCdflow.h,
1295         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1296         * src/SDCCloop.h,
1297         * src/SDCCcflow.c (*),
1298         * src/SDCCcflow.h,
1299         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1300         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1301         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1302         immedDom() returning wrong block; probably fixes bug #1160833)
1303
1304 2005-03-20 Borut Razem <borut.razem AT siol.net>
1305
1306         * support/scripts/inc2h.pl: WIN32 port
1307
1308 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1309
1310         * device/lib/makefile.in: added abs.c and labs.c
1311
1312 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1313
1314         * device/include/stdint.h: added
1315         * device/lib/abs.c: added
1316         * device/lib/labs.c: added
1317         * device/include/stdlib.h: added abs() and labs() prototypes
1318         * device/lib/libsdcc.lib: added abs and labs
1319         * device/include/float.h,
1320         * device/lib/_fsmul.c,
1321         * device/lib/printf_fast.c,
1322         * device/lib/printf_tiny.c: updated comments
1323
1324 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1325
1326         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1327         bug #1164313
1328
1329 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1330
1331         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1332         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1333
1334 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1335
1336         * device/lib/printf_large.c: removed inline assembly for portability and
1337           readability. Use printf_fast if speed or size are more important.
1338         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1339         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1340
1341 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1342
1343         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1344         prevent compiler warning
1345
1346 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1347
1348         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1349         moved to level 0 and declared as static. Also they are explicit
1350         placed in access bank. This was necessery because some times they
1351         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1352         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1353         optimizations. Currently only compare to unsigned char is implemented,
1354         * src/pic16/gen.c: added fReturnIdx array,
1355         * (struct resolvedIfx) is moved to gen.h and made public,
1356         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1357         * (aopForSym): added an optimization to directly store in stack of
1358         the operand of a SEND iCode,
1359         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1360         but as registers instead (AOP_REG) using the fReturnIdx array,
1361         * (pic16_freeAsmop): remove the freed register from the
1362         _G.sregsAlloc field,
1363         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1364         a compare of 'WREG',
1365         * (pic16_popGetTempRegCond): changed function prototype, now
1366         function takes also a bitVector argument v which holds the current
1367         set of registers that are allocated for stack access by aopForSym,
1368         registers allocated in aopForSym for accessing stack symbols are not
1369         any more part of the functions usedRegs field,
1370         * (genCall): some times aopOp is called for a stack variable to be
1371         send, aopForSym might perform the push, if this is true make sure
1372         that genCall doesn't push the variable twice by testing _G.resDirect,
1373         * (genFunction): changed testing for unspecified interrupt number
1374         from 256 to INTNO_UNSPEC,
1375         * modified selection scheme of frame pointer generation. Previously
1376         if function did use local registers a frame pointer was generated,
1377         now a frame pointer is generated only if function has arguments
1378         (that need PLUSW2 register access), or has stack arguments, or the
1379         compiler is not instructed to omit the frame pointer,
1380         * (genEndFunction): before restoring local registers that were saved
1381         in the function preamble, also restore the registers that *might*
1382         have been allocated for stack access,
1383         * (genRet): removed some old comments,
1384         * (genCmp, the active (RN's) version): added a call to the
1385         pic16_genCmp_special function to perform the compare with a more
1386         robust and optimized way,
1387         * (genInline): a feature has been added in inline code generation,
1388         which allows a wildcard variable substitution when writing inline
1389         assembly. Code is incomplete and experimental therefore undocumented,
1390         * (genCast): changed order of aopOp for result and right to allow
1391         aopForSym to directly load the result if possible,
1392         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1393         perform an optimized compare on some selected special occasions,
1394         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1395         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1396         generate an IVT any more,
1397         * src/pic16/main.c (pic16_optionsTable): added command line option
1398         --optimize-cmp,
1399         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1400         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1401         macros,
1402         * src/pic16/NOTES: Raphael Neider added in list of active developers
1403         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1404         jumptable_end to prevent bug #,
1405         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1406         inCond and outCond fields,
1407         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1408         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1409         turn off register spilling,
1410         * (packRegsForOneUse): synced with other ports' versions although it
1411         is not used currently,
1412         * (pic16_packRegisters): added an optimization while reading
1413         structure bitfields, some registers may be saved (malloc code is
1414         decreased by 80 bytes)
1415
1416 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1417
1418         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1419         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1420         this can be optimized more?
1421
1422 2005-03-10 Raphael Neider <rneider AT web.de>
1423
1424         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1425           genNearPointerGet): (hopefully) fixed access to bitfields via
1426           pointers (p->bitN = x; and x = p->bitN; failed)
1427
1428 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1429
1430         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1431
1432 2005-03-09 Raphael Neider <rneider AT web.de>
1433
1434         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1435
1436 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1437
1438         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1439         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1440           (regTypeNum): set REG_BIT type if necessary
1441         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1442         * support/regression/tests/critical.c: check bug 1144613
1443
1444 2005-03-02 Raphael Neider <rneider AT web.de>
1445
1446         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1447
1448 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1449
1450         * src/avr/ralloc.c (serialRegAssign),
1451         * src/ds390/ralloc.c (serialRegAssign),
1452         * src/hc08/ralloc.c (serialRegAssign),
1453         * src/mcs51/ralloc.c (serialRegAssign),
1454         * src/pic/ralloc.c (serialRegAssign),
1455         * src/pic16/ralloc.c (serialRegAssign),
1456         * src/xa51/ralloc.c (serialRegAssign),
1457         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1458
1459 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1460
1461         * src/SDCCast.c (decorateType): fixed bug 1124787
1462
1463 2005-02-20 Hubert Sack <sack AT digiplan.de>
1464         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1465
1466         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1467         patch #1121755
1468
1469 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1470
1471         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1472         to keep the correct label reference count when adding/removing references
1473         to labels. A peephole file using this is appended to patch #1144962.
1474
1475 2005-02-14 Raphael Neider <rneider AT web.de>
1476
1477         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1478         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1479         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1480           retrievals of result operand's value on assignment
1481
1482 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1483
1484         * device/include/pic16/string.h: modified prototype for memccpy()
1485         to memccpy(void *, void *, char, size_t)
1486         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1487         check whether to omit frame pointer or not,
1488         * (genInline): convert all occurences of "\n" to LF in inline
1489         assembler blocks, this helps formatting the inline text,
1490         * (pic16_loadFSR0): modified prototype,
1491         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1492         removed some 8051 legacy code,
1493         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1494         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1495         before allocating temporary registers in functions,
1496
1497 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1498
1499         * support/regression/tests/bitvars.c: corrected the "fix"
1500
1501 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1502
1503         * support/regression/tests/bitvars.c,
1504         * support/regression/tests/bitwise.c,
1505         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1506
1507 2005-02-10 Raphael Neider <rneider AT web.de>
1508
1509         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1510           different size for Alpha
1511         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1512
1513 2005-02-09 Raphael Neider <rneider AT web.de>
1514
1515         * src/SDCC.lex(doPragma) : save and restore warning options as well
1516           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1517         * have #pragma less_pedantic set the errorlevel to WARNING
1518           (fixes #1117001)
1519         * (cloneOptimize) : fixed wrong malloc's size
1520         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1521           facilitate correct handling of #pragma (save|restore)
1522
1523 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1524
1525         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1526
1527 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1528
1529         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1530
1531 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1532
1533         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1534
1535 2005-02-02 Raphael Neider <rneider AT web.de>
1536
1537         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1538         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1539         * (pic16_storeForReturn): fixed to allow returning function pointers
1540         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1541         * device/include/pic16/{stddef.h,stdbool.h}: added
1542
1543 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1544
1545         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1546
1547 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1548
1549         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1550         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1551          appeared to be required
1552
1553 2005-01-31 Borut Razem <borut.razem AT siol.net>
1554
1555         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1556           include/mcs51 and include/z80 directories to the package
1557
1558 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1559
1560         * src/hc08/gen.c (genFunction): fixed bug #1112752
1561
1562 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1563
1564         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1565
1566 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1567
1568         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1569
1570 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1571
1572         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1573
1574 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1575
1576         * device/include/c8051fxxx.h: removed these 6 files
1577         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1578
1579 2005-01-26 Raphael Neider <rneider AT web.de>
1580
1581         * src/pic16/gen.c (genAssign): fixed assignment from longs
1582           in codespace (were cut to three bytes)
1583         * (genDummyRead): implemented (except for CODESPACE...),
1584           fixed bug #1108575
1585         * src/pic16/glue.c (emitStatistics): beautified
1586         * device/lib/pic16/libm/Makefile: added include path
1587
1588 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1589
1590         * src/z80/gen.c (aopPut): fixed bug #1103902
1591
1592 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1593
1594         * device/lib/expf.c: fixed bug #1095792
1595
1596 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1597
1598         * device/lib/pic16/libm: added Math library sources
1599
1600 2005-01-24 Raphael Neider <rneider AT web.de>
1601
1602         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1603           to enable upcast to pCodeOpReg2 (there is no type tag to
1604           differenciate the two and pic16_popGet2p cast into PCOR2)
1605         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1606           (sizeof(sectNames) changed to sizeof(sectName))
1607           Both patches fix segfaults under MinGW.
1608
1609 2005-01-23 Raphael Neider <rneider AT web.de>
1610
1611         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1612           Safe_[mc]?alloc()'ed variables
1613         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1614           of (byte sized) temporaries (assign them to WREG for now)
1615         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1616           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1617           this might fix SIGSEGVs on MinGW...
1618         * src/SDCCopt.c (killDeadCode): restored original behaviour
1619           (volatile operands might get thrown away though)
1620
1621 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1622
1623         * src/pic16/gen.c: fixed bug #1106975,
1624         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1625         pointer update, INTCON is saved, global interrupts are disabled and
1626         restored after updateing TOS.
1627         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1628         * added function attribute 'shadowregs' to take advantage of shadow
1629         registers,
1630         * added function attribute 'wparam' as an alternative to the wparam
1631         pragma,
1632         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1633         user declares a non-ISR function as 'shadowregs',
1634         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1635
1636 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1637
1638         * .version: bumped version number to 2.4.8
1639         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1640         pic16 port,
1641         * device/lib/pic16/libio/i2c/: I2C module support library,
1642         * device/include/pic16/i2c.h: I2C support library header,
1643         * device/lib/pic16/libc/stdio/: standard IO support sources,
1644         * (printf_small.c): printf_small() source, supports float print,
1645         * (printf_tiny.c): printf_tiny() source, does not support floats,
1646         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1647         enable global optimizations for entire library source, other
1648         Makefiles in the source tree are also modified to reflect this,
1649         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1650         function,
1651         * doc/sdccman.lyx: updated to reflect new changes,
1652         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1653         sym->onStack if-case,
1654         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1655         sbit, idata, _idata, xdata, _xdata,
1656         * added pragma library, to link an external library, (see doc),
1657         * removed command line options, --pomit-config-words, --pomit-ivt,
1658         --pleave-reset-vector,
1659         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1660         when calling assembler to reflect memory model used, also define
1661         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1662         reflect stack model used,
1663         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1664         on stack return NULL,
1665
1666 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1667
1668         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1669           of the operands is volatile. Fixes #1020220
1670
1671 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1672
1673         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1674         * (OptimizeRegUsage): make sure that there is really no other flow where
1675           the first pCode is used
1676
1677 2005-01-22 Raphael Neider <rneider AT web.de>
1678
1679         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1680           to fix #1106967 (pCode->seq are not set up correctly)
1681
1682 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1683
1684         * src/SDCCglue.c (glue): make sure code area is declared before the
1685         static initialization area.
1686
1687 2005-01-21 Raphael Neider <rneider AT web.de>
1688
1689         * device/lib/Makefile.in: fixed test for pic16 install dir
1690         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1691           optimizations
1692         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1693           added --optimize-goto compiler switch and pragma wparam documentation
1694         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1695         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1696           and PRODH closing bug #1071770 (peephole optimizer)
1697
1698 2005-01-19 Raphael Neider <rneider AT web.de>
1699
1700         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1701           cmdLine buffers (used when calling sdcpp...) are large enough
1702           (MAX_PATH=256 truncates arguments leading to system halts when
1703           used in MinGW...)
1704         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1705         * (genUminus): rewritten to for efficiency
1706         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1707           used uninitialized in some cases)
1708         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1709           copy the third byte from the int -- now assumes 0x80 (data memory)
1710         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1711           operands (genAddLit expects the iCode's operands to swapped as
1712           well), fixed leftover bytes (crashed for short left operands)
1713         * (pic16_genMinusDec): performance improvements, removed false
1714           PIC14 emitSKPNCs
1715         * (pic16_genMinus): fixed to cope with differently sized operands
1716         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1717           for --obanksel > 1
1718         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1719         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1720           new banksel optimization
1721         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1722           analysis for temporary registers (segfaults...)
1723         * src/pic16/peeph.def: added rule
1724
1725 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1726
1727         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1728         which converts a float number to its ASCII representation
1729         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1730         functions to convert the fractional and integer part of a float to ASCII,
1731         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1732         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1733         ram
1734         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1735         _STATMEM macros,
1736         * device/include/pic16/adc.h: added GPL info,
1737         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1738         a pCodeOp as tested operand,
1739         * (genNearPointerGet): optimized bit testing, does not use
1740         intermediate register for bit value, test directly instead with
1741         BTFSS, BTFSC, works only for single bits,
1742         * (genpic16Code): dump the name of the iCode in the asm,
1743         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1744         renamed to pic16_decodeOp,
1745         * (serialRegAssign): do not allocate a temporary register for iCode
1746         sequences that test a single bit for 1/0
1747
1748 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1749
1750         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1751         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1752         access stack and frame pointers. They are initially assigned to
1753         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1754         accessing SFRs. Updated all occurences of modification of stack or
1755         frame pointer in gen.c and pcode.c,
1756         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1757         assigning of a literal value to pointers,
1758         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1759         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1760         selected
1761
1762 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1763
1764         * doc/sdccman.lyx: update documentation about stack pragma, added
1765         some info for stack memory models
1766
1767 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1768
1769         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1770
1771 2005-01-08 Raphael Neider <rneider AT web.de>
1772
1773         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1774           udata sections to fix bug #1097823
1775
1776 2005-01-05 Raphael Neider <rneider AT web.de>
1777
1778         * src/pic16/gen.c (genGenericShift): added handling of differently
1779           sized left operand and result
1780
1781 2005-01-04 Raphael Neider <rneider AT web.de>
1782
1783         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1784         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1785           to hold the condition bit)
1786         * added new version of genCmp (old code available via #define)
1787         * added new version of genShiftLeft/genShiftRight in a generic
1788           way, now supports shifting by negative values
1789         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1790           shiftCount (expected by genGenericShift)
1791         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1792         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1793           dump
1794         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1795           is an invalid literal too...)
1796
1797 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1798
1799         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1800         from Raphael Neider,
1801         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1802         for 8-bit literals. This fixes some literal operands which are sign
1803         extended to 16-bits ints when instruction needs only 8-bits.
1804
1805 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1806
1807         * device/lib/logf.c: added mcs51 assembly version
1808         * device/lib/expf.c: added mcs51 assembly version
1809         * device/lib/_logexpf.c: new shared asm code for expf and logf
1810         * device/include/math.h: add defines for assembly math library
1811         * device/lib/Makefile.in: build new _logexpf.c
1812         * device/lib/libfloat.lib: use new _logexpf.c
1813
1814 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1815
1816         * src/pic/device.c
1817         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1818           device types which have less than 0x7f registers.
1819
1820 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1821
1822         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1823
1824 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1825
1826         * device/lib/printf_fast.c: only build on supported arch.
1827         * device/lib/printf_tiny.c: only build on supported arch.
1828         * device/lib/printf_fast_f.c: only build if asm float lib
1829         * device/lib/_fsget1arg.c: only build if asm float lib
1830         * device/lib/_fsget2args.c: only build if asm float lib
1831         * device/lib/_fsnormalize.c: only build if asm float lib
1832         * device/lib/_fsreturnval.c: only build if asm float lib
1833         * device/lib/_fsrshift.c: only build if asm float lib
1834         * device/lib/_fsswapargs.c: only build if asm float lib
1835         * device/include/stdio.h: don't provide print_fast,
1836           print_fast_f, print_tiny prototypes if --xstack used
1837
1838 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1839
1840         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1841         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1842           to the SOURCES
1843
1844 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1845
1846         * device/lib/printf_fast_f.c: same as printf_fast, but
1847           with floating point enabled
1848         * device/lib/printf_fast.c: minor tweaks
1849         * device/include/stdio.h: add printf_fast_f
1850
1851 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1852
1853         * src/SDCCmain.c: make --float-reent default for mcs51
1854         * device/lib/_fsadd.c: added mcs51 assembly version
1855         * device/lib/_fssub.c: added mcs51 assembly version
1856         * device/lib/_fsmul.c: added mcs51 assembly version
1857         * device/lib/_fsdiv.c: added mcs51 assembly version
1858         * device/lib/_fseq.c: added mcs51 assembly version
1859         * device/lib/_fsneq.c: added mcs51 assembly version
1860         * device/lib/_fsgt.c: added mcs51 assembly version
1861         * device/lib/_fslt.c: added mcs51 assembly version
1862         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1863         * device/lib/Makefile.in: add _fscmp to build
1864         * device/lib/libfloat.lib: add _fscmp to build
1865
1866 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1867
1868         * device/lib/_fs2slong.c: added mcs51 assembly version
1869         * device/lib/_fs2sint.c: added mcs51 assembly version
1870         * device/lib/_fs2schar.c: added mcs51 assembly version
1871         * device/lib/_fs2ulong.c: added mcs51 assembly version
1872         * device/lib/_fs2uint.c: added mcs51 assembly version
1873         * device/lib/_fs2uchar.c: added mcs51 assembly version
1874         * device/lib/_slong2fs.c: added mcs51 assembly version
1875         * device/lib/_sint2fs.c: added mcs51 assembly version
1876         * device/lib/_schar2fs.c: added mcs51 assembly version
1877         * device/lib/_ulong2fs.c: added mcs51 assembly version
1878         * device/lib/_uint2fs.c: added mcs51 assembly version
1879         * device/lib/_uchar2fs.c: added mcs51 assembly version
1880         * device/include/float.h: added #define to select asm vs c
1881
1882 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1883
1884         * device/lib/printf_fast.c: improvements to float output
1885         * device/include/float.h: add defines for assembly float library
1886         * device/lib/_fsget1arg.c: receive 1 float arg
1887         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1888         * device/lib/_fsnormalize.c: normalize a float
1889         * device/lib/_fsreturnval.c: return float, various helper routines
1890         * device/lib/_fsrshift.c: right shift a float's mantissa
1891         * device/lib/_fsswapargs.c: swap 2 floats
1892         * device/lib/Makefile.in: build these 6 new files for mcs51
1893         * device/lib/libfloat.lib: add these 6 files to the library
1894
1895 2004-12-26 Borut Razem <borut.razem AT siol.net>
1896
1897         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1898           built by gcc 3.4.2
1899
1900 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1901
1902         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1903           and fully reentrant and register bank neutral.
1904         * device/lib/printf_fast.c: added float (not enabled by default),
1905           added compact/slower integer (also not enabled by default),
1906           improved size/speed of fast integer code, other minor changes
1907         * device/include/stdio.h, device/lib/Makefile.in,
1908           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1909
1910 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1911
1912         * src/pic16/pcode.c: declaring variables other than at the start of a
1913           block is not supported in C by VC6.
1914
1915 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1916
1917         * applied a previous patch from Raphael Neider that wasn't included
1918         in the previous commits, which fixes infinite loops within jumptable
1919         improvements,
1920         * made some fixes that previous patches introduced
1921
1922 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1923
1924         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1925         that fixes an issue with AOP_PCODE asmop's offset,
1926         * (pic16_popCopyReg): update instance field too,
1927         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1928         function of pic port,
1929         * (genCmp, genAnd, genAssign),
1930         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1931
1932 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1933
1934         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1935         variables initial values to idata section,
1936         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1937         variables in some functions. This utilizes parmBytes field of iCode
1938         structure to hold the offset of the variable in stack. (might be
1939         able to use the stack field too?)
1940         * applied patch from Raphael Neider # ### , # ###
1941         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1942         variable initial values in idata section,
1943         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1944         for static variables with initial value
1945         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1946         applied fix in while loop from Raphael Neider.
1947
1948 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1949
1950         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1951         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1952         * src/ds390/ralloc.c (serialRegAssign): spill bits
1953         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1954         * support/Util/SDCCerr.c,
1955         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1956         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1957         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1958
1959 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1960
1961         * device/include/sdcc-lib.h: inserted LGPL, added includes
1962           asm/ds390/features.h and asm/mcs51/features.h
1963         * device/include/asm/default/features.h,
1964         * device/include/asm/gbz80/features.h,
1965         * device/include/asm/z80/features.h: added empty _AUTOMEM
1966           and _STATMEM
1967         * device/include/asm/ds390/features.h,
1968         * device/include/asm/mcs51/features.h: added files with defines for
1969           _AUTOMEM and _STATMEM indicating automatic and static storage class
1970         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1971         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1972         * src/SDCCicode.c (geniCodeCast),
1973         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1974         * src/SDCCloop.c (loopInduction): removed unused variable lr
1975         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1976           to convertToFcall to include char modulo (RFE 1065037), added check
1977           if left operand is unsigned and use abs of literal value
1978         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1979           as it doesn't work after conversion from peephole.def to peephole.rul
1980         * src/mcs51/gen.c (toBoolean): added check for size,
1981           (genModOneByte): optimized code for signed char modulo a literal
1982           power of 2 (thanks to Hubert Sack),
1983           (genRRC): removed unnecessary "clr c",
1984           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1985         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1986           jump optimization,
1987           swapped rules 256.c and 256.d,
1988           extended 256.d by using new multiple checks (thanks Erik),
1989           added rules 256.e and 256.f,
1990           updated rule 261.a and 261.b to new generated code
1991         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1992
1993 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1994
1995         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1996           induction related bugs, including first part of bug #1074377
1997
1998 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1999
2000         * applied patch from bug-report #1076292,
2001         * applied patches for genAnd and Goto-optimizations for Raphael
2002         Neider,
2003         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2004         dump a less iCode information,
2005         * src/pic16/device.h (pic16_options_t): added field debgen,
2006         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2007         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2008         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2009         puclic,
2010         * (various functions): added macros FENTRY and FENTRY2 to functions,
2011         to emit function prologue,
2012         * (various functions): fixed indentation,
2013         * (genNearPointerGet): fixed loading of FSR0,
2014         * (genPackBits): applied patch from Raphael Neider to fix updating
2015         of FSR0 and touching only the modified bits,
2016         * src/pic16/genarith.c (various functions): added macros FENTRY to
2017         emit function prologue in comments,
2018         * src/pic16/pcode.h: added functions debugf2, debugf3,
2019         * src/pic16/ralloc.c: partial fix for packForPush caused
2020         segmentation fault,
2021
2022 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2023
2024         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2025           <stsp AT users.sourceforge.net> with reversed byte order
2026         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2027
2028 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2029
2030         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2031           bug #1074377
2032         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2033         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2034
2035 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2036
2037         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2038
2039 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2040
2041         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2042           conditions,
2043           (setFromConditionArgs): friendly operand parser for peephole rules,
2044           (operandBaseName, operandsNotRelated): new peephole condition
2045           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2046           architecture specific register naming into account, handles n-way
2047           comparisons, and supports quoted literals
2048         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2049
2050 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2051
2052         * src/mcs51/peeph.def: fixed bug #1076940
2053
2054 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2055
2056         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2057
2058 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2059
2060         Adding support for replacing ljmps with sjmps in jumptables
2061         generated for switch statements. For now you need to set the
2062         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2063         Now 4 algorithms for mcs51 jumptable generation are used:
2064         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2065         addresses loaded pc-relative for up to 112 cases and stack-pushing
2066         target addresses loaded with offset from dptr for up to 256 cases.
2067
2068         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2069         * src/mcs51/main.c: adapted constants for switch table generation
2070         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2071
2072 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2073
2074         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2075         * support/regression/tests/bug1057979.c: added test for bug 1073386
2076
2077 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2078
2079         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2080         compilers
2081
2082 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2083
2084         * src/pic16/device.h,
2085         * src/pic16/genarith.c,
2086         * src/pic16/glue.c,
2087         * src/pic16/main.c,
2088         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2089
2090 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2091
2092         Large cummulative patch for pic16 port.
2093         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2094         to call when a stack overflow occurs,
2095         * (malloc.h): added CVS Id tag,
2096         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2097         variable,
2098         * added libc directory. The current version of LibC contains string
2099         functions, ctype functions and macros and some functions of the
2100         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2101         be extensively tested in the future. Standard disclaimer here.
2102         Library is not automatically build yet. But one can build it by
2103         invoking 'make' inside the libc directory.
2104         * added ADC library under libio. Preliminary version yet.
2105
2106         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2107         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2108         aopForRemat() now and not by pic16_aopOp(),
2109         * (pic16_popGetTempReg): removed warning messgae when allocating
2110         temporary registers, its a buggy feature and will be removed,
2111         * (pic16_popGet): set register instance field in AOP_CRY,
2112         * (pic16_outBitC): fixed for results in size greater than 1,
2113         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2114         * (pic16_storeForReturn): optimized return of 0,
2115         * (genCmp): experimental code for new genCmp which uses PIC18's
2116         special compare&skip instructions. Initial tests fail some times
2117         with variables grater than 1 byte in size, so new code is disabled,
2118         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2119         a single bit,
2120         * (genCast): began a fix to optimize the casting of a bit to another
2121         bit, now assigning a bitfield to another bitfield will fail, sorry,
2122         * src/pic16/main.c: disabled the use of lr-support feature,
2123         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2124         * added some function prototypes, added function _debugf prototype,
2125         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2126         bits with offset (case PO_GPR_BIT),
2127         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2128         command line,
2129         * (isBankInstruction): modified to return 0 for no banking instruction,
2130         and 1 for banking instruction,
2131         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2132         caused stop processing pCodes after a inline assembly block,
2133         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2134         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2135         registers when it shouldn't,
2136         * src/pic16/ralloc.c (allocReg): add preliminary support for
2137         supporting a limited set of temporary registers,
2138
2139 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2140
2141         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2142           genDataPointerSet): ensure assignments always copy in MSB to LSB
2143           order,
2144           (loadRegFromAop): recognize CLRH optimization,
2145           (genFunction): optimize RECEIVE iCodes in reentrant functions
2146
2147 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2148
2149         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2150           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2151           selected.
2152         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2153         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2154           contiguous with data
2155
2156 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2157
2158         * device/lib/_gptrget.c (_gptrget),
2159         * device/lib/_gptrgetc.c (_gptrgetc),
2160         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2161           instead of sjmp to ret
2162         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2163           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2164
2165 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2166
2167         * .version: bumped version to 2.4.7
2168         * device/lib/_gptrget.c (_gptrget): is now _naked
2169         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2170         * device/lib/_gptrput.c (_gptrput): is now _naked
2171         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2172           (createFunction): fixed xstack
2173         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2174         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2175           or bit either,
2176           (geniCodeCritical): store original interrupt state in an iTemp bit
2177           var unless stack-auto
2178         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2179         * src/SDCCmain.c (setIncludePath): added include/target to search path
2180         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2181         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2182           prototype,
2183           (processFuncArgs): put bit vars in bit area
2184         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2185           unsaveRBank): fixed xstack,
2186           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2187           (genFunction, genEndFunction): fixed xstack,
2188           (genAssign): optimization don't walk backwards through mem
2189         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2190         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2191         * support/regression/Makefile: also make library (for stack-auto) when
2192           making "all" and added "test-mcs51-xstack-auto"
2193         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2194         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2195         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2196         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2197         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2198           make-library by MAKE_LIBRARY
2199         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2200           regression tests for xstack
2201         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2202         * support/regression/tests/critical.c: test for critical on mcs51
2203
2204 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2205
2206         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2207           built version of sdcc instead of installed version
2208
2209 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2210
2211         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2212         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2213           vprintf.c now
2214         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2215         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2216           WARNING: remove device/lib/build/z80/printf.o by hand when
2217           updating from previous build!
2218         * device/lib/z80/printf.c: updated comment
2219         * support/regression/tests/bug1057979.c: test all ports now
2220         * support/regression/tests/bug1065458.c: file added
2221
2222 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2223
2224         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2225           *_start and *_end symbols for static functions
2226
2227 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2228
2229         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2230           and search crt0.o in all library paths,
2231           (setIncludePath): proper handling of --nostdinc,
2232           (setLibPath): proper handling of --nostdlib
2233         * support/regression/Makefile,
2234         * support/regression/ports/ds390/spec.mk,
2235         * support/regression/ports/gbz80/spec.mk,
2236         * support/regression/ports/hc08/spec.mk,
2237         * support/regression/ports/mcs51/spec.mk,
2238         * support/regression/ports/mcs51-large/spec.mk,
2239         * support/regression/ports/mcs51-stack-auto/spec.mk,
2240         * support/regression/ports/z80/spec.mk: use include and lib files from
2241           built version of sdcc instead of installed version
2242         * doc/sdccman.lyx: fixed typo in --nostdinc
2243
2244 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2245
2246         * src/pic/pcode.c,
2247         * src/pic/device.c,
2248         * src/pic/ralloc.c,
2249         * src/pic/gen.c : added support to generate code for struct bit fields.
2250
2251 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2252
2253         * as/xa51/xa_version.h,
2254         * device/include/errno.h,
2255         * device/include/regc515c.h,
2256         * device/lib/_itoa.c,
2257         * device/lib/_ltoa.c,
2258         * device/lib/ser_ir_cts_rts.c,
2259         * sim/ucsim/xa.src/glob.cc,
2260         * sim/ucsim/xa.src/inst_gen.cc,
2261         * sim/ucsim/xa.src/xa_bit.cc,
2262         * sim/ucsim/xa.src/xa_sfr.cc,
2263         * sim/ucsim/z80.src/inst_dd.cc,
2264         * sim/ucsim/z80.src/inst_fdcb.cc,
2265         * support/scripts/keil2sdcc.pl,
2266         * src/pic16/pic16.dsp,
2267         * src/pic16/pic16a.dsp: corrected cvs line endings
2268         * device/lib/printf_large.c: fixed bug 1057979
2269         * src/pic16/gen.c: fixed non-C standard code
2270         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2271         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2272         * support/regression/ports/mcs51/support.c: reload T1 asap
2273         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2274           pdata use and clear idata startup behaviour
2275         * support/regression/tests/bug1057979.c: added
2276
2277 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2278
2279         * device/examples/ds390/ow390/ad26.h,
2280         * device/examples/ds390/ow390/cnt1d.h,
2281         * device/examples/ds390/ow390/crcutil.c,
2282         * device/examples/ds390/ow390/ownet.h,
2283         * device/examples/ds390/ow390/owsesu.c,
2284         * device/examples/ds390/ow390/swt12.h,
2285         * device/examples/ds390/ow390/swtoper.c,
2286         * device/examples/ds390/ow390/temp10.h,
2287         * device/examples/ds390/ow390/thermodl.c,
2288         * device/examples/ds390/tinitalk/tinitalk.dsp,
2289         * device/examples/ds390/tinitalk/tinitalk.dsw,
2290         * device/examples/mcs51/clock/hw.h,
2291         * device/examples/mcs51/simple2/go.bat,
2292         * device/examples/serialcomm/windows/serial.h,
2293         * device/examples/xa51/dummy.c,
2294         * device/examples/xa51/hello.c,
2295         * device/include/80c51xa.h,
2296         * device/include/at89x051.h: corrected cvs line endings
2297
2298 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2299
2300         * src/pic16/main.c (options): added command line --gstack, to trace
2301         stack over/under flows,
2302         * added pragma 'wparam' to allow passing first byte of function
2303         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2304         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2305         call to __gstack_test function and sets up the symbol as extern,
2306         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2307         * popaop): added call to pic16_testStackOverflow,
2308         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2309         wparamList list,
2310         * (genCall, genPcall): now all parameters are passed via stack
2311         except in functions that are pass to wparam pragma in which WREG is
2312         used too,
2313         * (genPcall): REENTRANT flag is checked to see if variable prototype
2314         contains reentrant keyword, don't call a non-reentrant function, via
2315         a reentrant function pointer or vice versa, functions are never
2316         passed via WREG,
2317         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2318         D.Winkler,
2319         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2320         SIGSEGV when accessing a NULL register stucture,
2321         * (pic16_printGPointerType): modified to handle UPPER modifier for
2322         function initializers, changed prototype of function to simpler one,
2323         * (pic16_printIvalFuncPtr): check to see if function is already
2324         added in externs list,
2325         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2326         optimized a move from W to SFR with a move to the same register
2327         later after a CALL,
2328         * device/lib/pic16/debug: NEW directory, contains debug features
2329         which are enabled when linking with libdebug.lib, currently command
2330         line option --gstack enables stack pointer tracing for over/under
2331         flow, corresponding sources are in debug/gstack
2332
2333 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2334
2335         * doc/sdccman.lyx: updated SDCC version,
2336         * (PIC16 port): update list of command line options,
2337         * src/pic16/device.h (structure pic16_options_t): added field gstack
2338         to enable stack overflow tracing on push/pops,
2339         * src/pic16/device.c (statistics structure): added statistics
2340         structure,
2341         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2342         pic16_dump_int_registers): increase statistics counters for each
2343         * variable which is encountered
2344         * (pic16_dump_usection): emit each .udata variable to its own udata
2345         section,
2346         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2347         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2348         parameters via stack, otherwise use old scheme,
2349         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2350         assembler output file,
2351         * src/pic16/main.c: added command line options --gstack to enable
2352         push/pop tracing for stack overflow,
2353         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2354         instructions): added size of each instruction,
2355         * (pic16_countInstruction): estimate size of instructions in
2356         the_pFile list, inline assembly blocks are not counted,
2357         * (pic16_FixRegisterBanking): trace previous register usage, when
2358         banksel optimizations is greater than 0, don't emit a redudant
2359         banksel directive,
2360
2361 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2362
2363         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2364         * src/pic16/ralloc.c : applied same fix for pic16.
2365         * src/pic/gen.c : tidied it up a little.
2366
2367 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2368
2369         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2370         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2371
2372 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2373
2374         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2375
2376 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2377
2378         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2379         non-reentrant function __modsint in the interrupt function (thus
2380         corrupting math operations during serial I/O)
2381         * device/lib/ser_ir.c: as above, changed buffersize
2382         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2383         256.c,d for zeroing
2384         * doc/Makefile: added option -t for rsync
2385
2386 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2387
2388         * src/SDCCast.h (struct ast),
2389         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2390
2391 2004-10-20 Borut Razem <borut.razem AT siol.net>
2392
2393         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2394         package
2395
2396 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2397
2398         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2399         makefile targets,
2400         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2401         support functions to replace long sequences of MOVFF's from access
2402         bank registers to stack and vice versa,
2403         * src/pic16/device.h: added new field opt_flags, where optimization
2404         flags can be set to enable certain features,
2405         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2406         * pBlock, (genFunction, genEndFunction): surroung loop for
2407         saving/loading used registers in stack with PC_INFO pCodes,
2408         INF_LREGS. Code in between can then be optimized by pCode optimizer
2409         to support function calls,
2410         * (genDataPointerSet): fixed bug which loaded float fields in
2411         structures with corrupt data,
2412         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2413         in a standard way debug info on stderr. Feature used for developing
2414         and debugging only,
2415         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2416         obsolete chunks of code,
2417         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2418         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2419         * pic16/src/pcode.c (pic16_newpCodeInfo,
2420         * (pic16_newpCodeOpLocalRegs),
2421         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2422         feature,
2423         * (pic16_pCodeConstString): printing of the initial value of a
2424         symbol as a comment is inhibited since parsing was already done by
2425         copyStr and output is corrupt,
2426         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2427
2428 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2429
2430         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2431
2432 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2433
2434         * as/mcs51/lkarea.c: removed old K&R style,
2435           (lnksect): changed check on boundary error,
2436           (lnksect2): changed check on boundary error,
2437           (lnksect2): extend XSTK to end of page if size = 1
2438         * as/mcs51/lkmain.c: removed old K&R style,
2439           (Areas51): create l_IRAM symbol
2440         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2441         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2442           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2443         * device/lib/_mullong.c: added version to be compiled with xstack
2444         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2445         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2446         * device/lib/mcs51/crtxstack.asm: fixed comment
2447         * src/SDCCglue.c: maxInterrupts defaults to 0,
2448           (emitMaps): added pdata,
2449           (createInterruptVect): (re)moved default,
2450           (glue): added pdata,
2451           (glue): moved __start__xstack to XSTK with default size 1
2452         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2453           and options.float_rent when options.stackAuto is set,
2454           (linkEdit): only write XDATA_NAME if provided on command line
2455         * src/SDCCmem.h,
2456         * src/SDCCmem.c: added pdata
2457         * src/port.h: added pdata_name to PORT
2458         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2459           (saveRegisters, unsaveRegisters): removed usage of B,
2460           (genMinus): fixed accumulator clash,
2461           (genJumpTab): added comment, this needs another look
2462         * src/mcs51/gen.c: added check for "B in use" paranoia,
2463           added pushB() and popB()
2464         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2465           chance
2466         * src/avr/main.c,
2467         * src/ds390/main.c,
2468         * src/hc08/main.c,
2469         * src/mcs51/main.c,
2470         * src/pic/main.c,
2471         * src/pic16/main.c,
2472         * src/xa51/main.c,
2473         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2474           added PSEG (PAG,XDATA) or NULL to port specifier
2475         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2476         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2477           (_mcs51_genInitStartup): removed __start__xstack equ,
2478           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2479         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2480         * src/z80/gen.c (_rleAppend): fixed warnings
2481         * support/regression/tests/zeropad.c: added pdata test
2482         * .version: bumped to 2.4.6
2483
2484 2004-10-17 Borut Razem <borut.razem AT siol.net>
2485
2486         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2487         as a part of nightly build
2488
2489 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2490
2491         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2492         WREG holds the first byte function parameters,
2493         * (aopForSym): take special case for symbols which are in FARSPACE
2494         but in CODESPACE too,
2495         * (assignResultValue): modified to take into account _G.useWreg,
2496         * (genCall): don't use wreg for parameter passing when function is
2497         declared as reentrant, too, added optimization INCF to stack
2498         pointer when stack parameter count is 1,
2499         * (genFunction, genEndFunction): refurnished and fixed to not using
2500         wreg for passing parameters when function has varargs or is
2501         reentrant, fixed bug with symbol name compare for generating
2502         functions in absolute address,
2503         * (pic16_storeForReturn): refurnished,
2504         * (genCmp): began writing a new version of the function, not ready
2505         yet, therefore it is disabled,
2506         * (genAssign): do not read code memory when assigning a function to
2507         a pointer function,
2508         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2509         array of characters, not pointer,
2510         * (pic16initialComments): in debug mode emit an .ident directive for
2511         the assembler,
2512         * (_process_pragma): emit a new warning type (internal to pic16)
2513         when setting stack to default length, emit a similar warning when
2514         placing a function at absolute address and address is not word aligned
2515         * (_pic16_parseOptions): added 'return TRUE' statement,
2516         * (_pic16_linkEdit): if compiling a source, then add the source's
2517         file object, first in the list of objects to link,
2518
2519 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2520
2521         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2522         * src/pic/main.c : removed VC warning.
2523         * src/pic/gen.c : changed comment.
2524
2525 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2526
2527         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2528         reference to a deprecated symbol _GPTRREG was causing failure to
2529         link. Thanks G. M. Gallant for the info.
2530
2531 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2532
2533         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2534         comments for Bugs item #954788.
2535
2536 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2537
2538         * src/pic16/device.c (pic16_dump_gsection,
2539         * pic16_groupRegistersInSection): handle symbols declared to be in
2540         access bank differently,
2541         * src/pic16/gen.c (struct _G): added field resDirect,
2542         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2543         send values read from stack directly to result and don't allocate
2544         temporary values,
2545         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2546         same registers,
2547         * (pic16_sameRegsOfs): NEW,
2548         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2549         free because they were not allocated from temporary pool,
2550         * pic16_popRegFromString): workaround to fix a problem with
2551         allocating variables twice or never,
2552         * (genGenPointerGet): using PRODL instead of FSR0H,
2553         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2554         instead of FSR0H,
2555         * (genAssign): take advantage of the _G.resDirect flag,
2556         * (genCast): around line 11844, use mov2f instead of directly
2557         MOVFF'ing between operands to account for literal values,
2558         * src/pic16/genutils.c: some new debug functions for gpsim have been
2559         added,
2560         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2561         float with integer part only,
2562         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2563         place variables in access bank
2564         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2565         updated sources to reflect recent changes in gen.c
2566
2567 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2568
2569         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2570         sources that searched for headers in installation path, now the
2571         device/include/pic16 is used,
2572         * src/pic16/glue.c (pic16glue),
2573         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2574         .line directives if not in debug mode, this suppresses assembler's
2575         warnings for ignored directives
2576
2577 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2578
2579         * src/port.h: made reset_regparms prototype void parameter explicit.
2580         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2581         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2582         * doc/sdccman.lyx: documented warning disabling and how to use
2583           printf_large to make it print floats.
2584         * device/include/stdbool.h: NEW
2585         * device/lib/_atof.c,
2586         * device/lib/_divuint.c,
2587         * device/lib/_divulong.c,
2588         * device/lib/expf.c,
2589         * device/lib/printf_large.c,
2590         * device/lib/sincosf.c,
2591         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2592         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2593           a completely reentrant lib.
2594
2595 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2596
2597         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2598         * device/include/pic16/stdio.h: fixed bug with colon
2599
2600 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2601
2602         * device/include/pic16/stdio.h,
2603         * device/include/pic16/stdlib.h,
2604         * device/include/pic16/math.h: NEW
2605         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2606         declared as _naked to reduce overhead
2607         * device/lib/Makefile.in (target port-specific-objects-pic16):
2608         changed * to *.* so to ignore the CVS directory,
2609         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2610         stacked variables back in stack,
2611         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2612         corruption
2613
2614 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2615
2616         * .version: bumped version number to 2.4.5
2617         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2618         * support/Util/SDCCerr.c (messages structure): added entry for
2619         W_POSSBUG2
2620
2621         Large cumulative patch for pic16 port and libraries.
2622         * device/include/pic16/sdcc-lib.h,
2623         * device/include/pic16/stdarg.h,
2624         * device/include/asm/pic16/features.h,
2625         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2626         * device/include/pic16/float.h: changes reentrant keyword with
2627         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2628         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2629         updated target build-libraries to include objects from gptr,
2630         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2631         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2632         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2633         all function headings,
2634         * src/SDCCmain.c: added global parameter userIncDirsSet,
2635         * (parseCmdLine): when option -I is encountered add directory to
2636         userIncDirsSet too,
2637         * src/version.awk: added space between control and long,
2638         * src/pic16/NOTES: added some notes for the port,
2639         * src/pic16/gen.c: added prototype for mov2fp function,
2640         * (fReturnpic16[]): properly named return value registers,
2641         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2642         * (aopForSym): added code to handle symbols with onStack flag set,
2643         symbols onStack are allocated PTRSIZE bytes,
2644         * (aopFreeAsmop): handles special case where asmops are stack objects,
2645         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2646         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2647         added argument lock to trace flaws in allocating temporary registers
2648         when developing port,
2649         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2650         * (pic16_popRegFromString): reenabled allocating a direct register
2651         from string,
2652         * (assignResultValue): various beautifications,
2653         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2654         referenced function argument,
2655         * (genIpush): reenabled to allow stacked arguments, handles only
2656         ic->parmPush iCodes,
2657         * (genCall, genPcall): major changes to allow for variable argument
2658         functions, fixed a bug with falsely restoring stack pointer after
2659         returning from call,
2660         * (genFunction): pending code for critical function,
2661         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2662         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2663         * (genNearPointerGet): fixed bug with indirect reading, was always
2664         reading from INDF0
2665         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2666         pointers,
2667         * (genAddrOf): rewrote code to take address of a stacked function parameter
2668         * (genCast): fixed casting to generic pointer type,
2669         * src/pic16/gen.h: added AOP_STA,
2670         * (struct asmop): added field stk,
2671         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2672         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2673         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2674         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2675         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2676         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2677         generic pointers,
2678         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2679         and library paths,
2680         * (pic16_port structure): generic pointer size is set to 3,
2681         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2682         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2683         compiler warning,
2684         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2685         operand is an iTemp,
2686
2687 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2688
2689         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2690         * debugger/mcs51/simi.c: addapt new syntax of s51
2691
2692 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2693
2694         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2695         * src/pic16/pcode.c: commented out some calls to free() in order to
2696         fix bug #989576,
2697
2698 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2699
2700         * src/SDCCicode.h,
2701         * src/SDCCicode.c (isiCodeInFunctionCall),
2702         * src/avr/ralloc.c (selectSpil),
2703         * src/pic/ralloc.c (selectSpil),
2704         * src/pic16/ralloc.c (selectSpil),
2705         * src/ds390/ralloc.c (selectSpil),
2706         * src/hc08/ralloc.c (selectSpil),
2707         * src/xa51/ralloc.c (selectSpil),
2708         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2709         stack in the middle of a function call sequence (fixes bug #1020268)
2710         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2711         costs associated with the minimum switch case.
2712
2713 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2714
2715         * src/SDCC.lex: fixed bug #1030549
2716
2717 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2718
2719         * src/SDCCcse.h (struct cseDef),
2720         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2721         over a function call if the CSE is derived from a symbol whose
2722         address has been taken (fixes bug #1029883)
2723         * support/regression/tests/bug-1029883: a new regression test for
2724         this bug
2725
2726 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2727
2728         * src/hc08/gen.c (emitinline): fixed bug #1029778
2729         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2730         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2731         and starts toward RFE #905167)
2732
2733 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2734
2735         * src/pic16/gen.c (mov2f): New function to move an operand to
2736         another without considering if it is a literal or a register,
2737         * (pic16_sameRegs): don't check if they are both AOP_REG,
2738         * (AccRsh): removed andmask=0 lines,
2739         * (genLeftShift): duplicated to be improved in future versions,
2740         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2741         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2742         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2743         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2744         * (insertBankSwitch): fixed inserting banksel directives algorithm
2745         for instructions that follow a skip instruction, this fixes a report
2746         for broken subtraction code generation,
2747         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2748         iCode is a left op, just in case result and right share the same
2749         registers
2750
2751 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2752
2753         * src/hc08/main.c,
2754         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2755         preservation of HX
2756         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2757         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2758         on 2004-09-12; it was buggy
2759
2760 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2761
2762         * src/SDCCsymt.h: removed RESULT_CHECK
2763         * src/SDCCast.c,
2764         * src/SDCCglue.c,
2765         * src/SDCCval.c,
2766         * src/pic/glue.c,
2767         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2768
2769 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2770
2771         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2772         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2773         configuration values no more rejected by compiler, they are assigned
2774         to configuration registers with a warning message instead,
2775         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2776         the for-loop so last conf register is emitted too,
2777         * (_pic16_initPaths): link library libsdcc.lib by default,
2778         * (_hasNativeMulFor): modified test for multiplication according to
2779         Raphael Neider's remarks. Integer multiplication is also done with
2780         support functions,
2781         * device/include/pic16/pic18fregs.h: corrected type error in while
2782         testing and including 18f6720 header file
2783
2784 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2785
2786         * src/pic16/device.h (pic16_options): removed field use_crt,
2787         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2788         until an optimization to handle single bits is added,
2789         * (pic16_loadFSR0): moved before genUnpackBits,
2790         * (genAnd): some white lines removed,
2791         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2792         leave_reset flags in pic16_options when using crt modules,
2793
2794 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2795
2796         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2797           for bugs 898889 & 979599. Also used some safer print instructions.
2798
2799 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2800
2801         * src/pic16/device.h (pic16_options_t): added field use_crt,
2802         crt_name, no_crt,
2803         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2804         catch a probable future bug,
2805         * src/pic16/gen.c: aopIdx function commented out,
2806         * (genAssign): commented out old code which used aopIdx,
2807         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2808         code, added if conditionals to take into account the --use-crt
2809         command line options,
2810         * src/pic16/main.c (pic16_optionsTable): added new command line
2811         options, --use-crt= and --no-crt,
2812         * (_pic16_linkEdit): now the proper crt object is added in the
2813         linker command line except than when --no-crt is specified,
2814         * src/pic16/pcode.c,
2815         * src/pic16/pcode.h: added some structures and functions for a new
2816         optimization scheme to compansate for instruction overhead between
2817         same iCodes, this scheme is currently under development and is not
2818         working in any way,
2819         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2820         to && operator,
2821         * device/lib/pic16/startup/crt0i.c,
2822         * device/lib/pic16/startup/crt0iz.c: added global char variable
2823         __uflags to force the generation of an idata section
2824
2825 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2826
2827         * doc/Makefile,
2828         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2829         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2830
2831 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2832
2833         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2834         Frieder) and clarified the default code optimization mode
2835
2836 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2837
2838         * src/SDCC.lex (doPragma, process_pragma),
2839         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2840         "opt_code_size", and "opt_code_balanced"
2841         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2842         regrouped options by category, added support for category headers
2843         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2844         and "--opt-code-size"
2845         * doc/sdccman.lyx: documented these new options and pragmas
2846         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2847         preference into account
2848
2849 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2850
2851         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2852           geniCodePreDec): Fixed bug 904237 by generating a warning
2853         * src/SDCCerr.h,
2854         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2855
2856 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2857
2858         * src/pic/device.c : When no max ram set validate full memory range.
2859         * src/pic/pcode.c,
2860         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2861
2862 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2863
2864         * device/lib/_gptrget.c,
2865         * device/lib/_gptrput.c: updated comment
2866         * device/lib/calloc.c,
2867         * device/lib/free.c,
2868         * device/lib/malloc.c,
2869         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2870         * src/SDCCcse.c (cseBBlock),
2871         * src/SDCCicode.c (printOperand, geniCodeArray),
2872         * src/SDCCicode.h (struct operand): fixed bug 868103
2873         * support/regression/tests/bug-868103.c: added
2874         * src/SDCCast.c (searchLitOp),
2875         * src/SDCCcse.h (struct cseDef),
2876         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2877         * src/SDCCicode.h (struct operand),
2878         * src/SDCCsymt.h (struct sym_link),
2879         * src/avr/gen.c (hasInc),
2880         * src/ds390/gen.c (hasInc),
2881         * src/hc08/gen.c (genPlusIncr, hasInc),
2882         * src/mcs51/gen.c (hasInc),
2883         * src/pic16/glue.c (pic16_printIvalChar),
2884         * src/pic16/ralloc.c (regWithIdx),
2885         * src/xa51/gen.c (hasInc) : removed warnings
2886         * src/SDCCast.c (createBlock): added comment ???
2887         * src/hc08/ralloc.c: updated comments
2888
2889 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2890
2891         * doc/sdccman.lyx: updated section on switch statements, added
2892         section about semaphore locking
2893         * doc/Makefile: added option -info for latex2html
2894         * device/lib/_gptrget.c,
2895         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2896
2897 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2898
2899         * src/pic/device.h,
2900         * src/pic/device.c,
2901         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2902          maxram is less than 0x100.
2903
2904 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2905
2906         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2907
2908 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2909
2910         * src/port.h,
2911         * src/mcs51/main.c,
2912         * src/ds390/main.c,
2913         * src/z80/main.c,
2914         * src/hc08/main.c,
2915         * src/pic/main.c,
2916         * src/pic16/main.c,
2917         * src/avr/main.c,
2918         * src/xa51/main.c
2919         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2920         a jump table is the best form for a switch statement, including
2921         automatic insertion of missing cases to make the case range
2922         continuous. Developed in collaboration with Frieder Ferlemann.
2923
2924 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2925
2926         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2927         accumulator result if it needs sign extension
2928
2929 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2930
2931         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2932
2933 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2934
2935         * device/lib/gbz80/printf.c,
2936         * device/lib/z80/printf.c: removed define for NULL
2937
2938 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2939
2940         * as/xa51/xa_link.c,
2941         * device/examples/ds390/ow390/ad26.c,
2942         * device/examples/ds390/ow390/cnt1d.c,
2943         * device/examples/ds390/ow390/counter.c,
2944         * device/examples/ds390/ow390/ds2480.h,
2945         * device/examples/ds390/ow390/ds2480ut.c,
2946         * device/examples/ds390/ow390/findtype.c,
2947         * device/examples/ds390/ow390/gethumd.c,
2948         * device/examples/ds390/ow390/owllu.c,
2949         * device/examples/ds390/ow390/ownetu.c,
2950         * device/examples/ds390/ow390/swt12.c,
2951         * device/examples/ds390/ow390/swtloop.c,
2952         * device/examples/ds390/ow390/temp.c,
2953         * device/examples/ds390/ow390/temp10.c,
2954         * device/examples/ds390/ow390/thermo21.c,
2955         * device/examples/ds390/ow390/tinilnk.c,
2956         * device/examples/ds390/ow390/tstfind.c,
2957         * device/examples/serialcomm/windows/serial.cpp,
2958         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2959         * device/include/reg51.h: fixed line endings for cvs
2960
2961 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2962
2963         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2964         packRegsForAccUse, packRegisters): new accumulator register
2965         packing algorithm
2966         * support/regression/ports/hc08/support.c (_putchar): suppress
2967         warning of unused variable
2968         * src/SDCCicode.c: added SWAP entry to codeTable
2969
2970 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2971
2972         * device/lib/sprintf.c: forgot to add this file before previous commit
2973
2974 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2975
2976         * src/pic16/gen.c (genPackBits): added operand right in function
2977         parameters, load result directly if p_type is POINTER (that is
2978         called by genNearPointerSet)
2979         * (genUnPackBits): added operand left in function parameters,
2980         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2981         FSR0 if accessing bitfields,
2982
2983 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2984
2985         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2986           _print_format; updated printf, sprintf, vsprintf
2987         * device/include/asm/default/features.h: corrected comment/define
2988         * device/lib/Makefile.in: added sprintf.c
2989         * device/lib/libsdcc.lib: added sprintf module
2990         * device/lib/printf_large.c,
2991         * device/lib/vprintf.c,
2992         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2993           into these 3 files
2994         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2995         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2996         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2997           hc08 test
2998         * support/regression/tests/zeropad.c: define idata as data for hc08
2999
3000 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3001
3002         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3003         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3004         labels are referenced at least once (even if a reference is not found)
3005         * src/hc08/gen.c (emitcode): set isComment flag for comments
3006         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3007         loads), rules 6a..6b (optimize jumps to return)
3008
3009 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3010
3011         * device/lib/acosf.c (acosf),
3012         * device/lib/asinf.c (asinf),
3013         * device/lib/atanf.c (atanf),
3014         * device/lib/ceilf.c (ceilf),
3015         * device/lib/cosf.c (cosf),
3016         * device/lib/coshf.c (coshf),
3017         * device/lib/cotf.c (cotf),
3018         * device/lib/fabsf.c (fabsf),
3019         * device/lib/floorf.c (floorf),
3020         * device/lib/log10f.c (log10f),
3021         * device/lib/logf.c (logf),
3022         * device/lib/sinf.c (sinf),
3023         * device/lib/sinhf.c (sinhf),
3024         * device/lib/sqrtf.c (sqrtf),
3025         * device/lib/tanf.c (tanf),
3026         * device/lib/tanhf.c (tanhf),
3027         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3028         replaced all instances of "reentrant" in the library functions
3029         defined in math.h with this macro.
3030         * support/regression/tests/float_trans.c: reenabled test for hc08
3031
3032 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3033
3034         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3035         erroneously deleted
3036
3037 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3038
3039         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3040         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3041         multi-byte volatile operands are used
3042         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3043         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3044         initialization to area GSINIT0 so that it would always precede
3045         any static initializers in GSINIT
3046         * support/regression/tests/zeropad.c: fixed idata define for hc08
3047         * support/regression/tests/bug-927659.c,
3048         * support/regression/tests/float_trans.c: disabled tests for hc08
3049         pending missing library routines
3050         * .version: increased version number to 2.4.4 - hc08 port now passes
3051         regression tests
3052
3053
3054 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3055
3056         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3057         * Makefile.common.in,
3058         * as/Makefile,
3059         * as/hc08/Makefile.in,
3060         * as/mcs51/Makefile.in,
3061         * as/z80/Makefile.in,
3062         * debugger/mcs51/Makefile.in,
3063         * device/include/Makefile.in,
3064         * device/lib/Makefile.in,
3065         * doc/Makefile,
3066         * link/Makefile,
3067         * link/z80/Makefile.in,
3068         * packihx/Makefile.in,
3069         * sim/ucsim/main_in.mk,
3070         * sim/ucsim/avr.src/Makefile.in,
3071         * sim/ucsim/doc/Makefile.in,
3072         * sim/ucsim/gui.src/serio.src/Makefile.in,
3073         * sim/ucsim/hc08.src/Makefile.in,
3074         * sim/ucsim/s51.src/Makefile.in,
3075         * sim/ucsim/xa.src/Makefile.in,
3076         * sim/ucsim/z80.src/Makefile.in,
3077         * src/Makefile.in,
3078         * support/cpp2/Makefile.in,
3079         * support/librarian/Makefile,
3080         * support/makebin/Makefile: added DESTDIR to the install path proposed
3081         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3082         * doc/sdccman.lyx: added DESTDIR documentation
3083
3084 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3085
3086         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3087         instruction for interrupt handlers, use fast returns when returning
3088         from high priority interrupts
3089
3090 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3091
3092         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3093         code generation
3094         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3095         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3096         bugs, ported much of Bernhard's code from mcs51
3097         * src/mcs51/gen.c (genSend),
3098         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3099         than one when calling a reentrant function
3100         * device/lib/_mullong.c: defined an alternate struct layout for big
3101         endian ports (hc08)
3102
3103 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3104
3105         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3106         test
3107
3108 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3109
3110         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3111         are sane and complete before asking the port its prefered parameter
3112         passing method (fixes bug #1017633)
3113         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3114         and _ret3
3115
3116 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3117
3118         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3119         problem in bitfields >= 8 bits.
3120
3121 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3122
3123         * src/SDCCsymt.c: undid changes that were not meant to be committed
3124
3125 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3126
3127         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3128
3129 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3130
3131         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3132           copied and wrong bit got inverted
3133
3134 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3135
3136         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3137         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3138         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3139         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3140         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3141         assignments to bitfields at known addresses
3142         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3143         reads from bitfields at known addresses
3144         * src/hc08/ralloc.c (packRegisters),
3145         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3146         genhc08Code): optimize pointer get values used as conditionals
3147         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3148         and branch
3149
3150 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3151
3152         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3153         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3154         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3155         as conditionals
3156
3157 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3158
3159         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3160
3161 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3162
3163         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3164         related problems
3165
3166 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3167
3168         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3169
3170 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3171
3172         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3173         mcs51 port
3174
3175 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3176
3177         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3178
3179 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3180
3181         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3182         cases use more compact code.
3183
3184 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3185
3186         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3187
3188 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3189
3190         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3191
3192 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3193
3194         * src/SDCCsymt.h,
3195         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3196         parameter of changePointer() from symbol* to sym_link*
3197         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3198         * src/SDCCsymt.c (compareType): void* type is castable to other
3199         pointers, but not necesarily an exact match.
3200         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3201         is no longer blindly treated as an exact match.
3202         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3203
3204 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3205
3206         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3207
3208 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3209
3210         * src/pic/gen.c,
3211         * src/pic/pcode.c,
3212         * src/pic/ralloc.h,
3213         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3214
3215 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3216
3217         * src/pic/device.c,
3218         * src/pic/device.h,
3219         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3220
3221 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3222
3223         * src/mcs51/gen.c (emitcode): fixed bug #992819
3224
3225 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3226
3227         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3228           there's no need to make it worse
3229
3230 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3231
3232         * src/mcs51/ralloc.c (deassignLR),
3233         * src/ds390/ralloc.c (deassignLR),
3234         * src/hc08/ralloc.c (deassignLR),
3235         * src/z80/ralloc.c (deassignLR),
3236         * src/pic/ralloc.c (deassignLR),
3237         * src/pic16/ralloc.c (deassignLR),
3238         * src/avr/ralloc.c (deassignLR),
3239         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3240         rlivePoint): fixed another part of bug #971834
3241
3242 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3243
3244         * src/z80/main.c: enabled "critical" keyword
3245         * src/z80/mappings.i,
3246         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3247         functions (fixes bug #979646)
3248         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3249
3250 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3251
3252         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3253           such as c:\mydir.
3254
3255 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3256
3257         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3258           doesn't disable too much optimizations
3259
3260 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3261
3262         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3263
3264 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3265
3266         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3267
3268 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3269
3270         * src/pic/gen.c tidied up tabs
3271         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3272         * src/pic/main.c tidied up tabs
3273         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3274         * src/pic/pcoderegs.c tidied up tabs
3275         * src/pic/ralloc.c tidied up tabs
3276
3277 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3278
3279         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3280         to S_FIXED for pic16 port and when symbol is not in level 0,
3281         allocate for S_REGISTER storage class and pic16 port, too,
3282         * src/pic16/device.h: prototype for checkSym,
3283         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3284         * (pic16_assignConfigWordValue): test the value and the mask to
3285         validate that the value is suitable for the configuration word,
3286         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3287         collect extern declared symbols, don't emit symbol twice, check
3288         first if symbol is in publics set first,
3289         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3290         * added command line '--fstack' which enables an experimental
3291         feature for stack access, too buggy to be used yet...
3292         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3293         * (pic16_allocDirReg): when register has storage class S_REGISTER
3294         allocate in pic16_dynAccessRegs,
3295         * device/include/pic16/pic18f????.h: modified configuration word
3296         naming convention, words started as CONFIG0H but should be CONFIG1H
3297
3298 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3299
3300         * device/include/mcs51reg.h: fixed bug 970993
3301
3302 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3303
3304         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3305         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3306         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3307         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3308         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3309         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3310           error/warning numbers,
3311           added function setWarningDisabled()
3312         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3313         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3314           _memcmp.c _memmove.c calloc.c realloc.c free.c
3315         * support/regression/tests/malloc.c: added tests for new functionality
3316         * support/regression/tests/zeropad.c: added tests for truncated initializers
3317           and initialized char arrays starting with '\x0'
3318         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3319
3320 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3321
3322         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3323
3324 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3325
3326         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3327         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3328         peephole 177.e. Thanks to anonymous
3329
3330 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3331
3332         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3333         function isn't used in the source but referenced as a
3334         variable initializer then declare it as extern in .asm file
3335
3336 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3337
3338         * .version: increased version number to 2.4.3
3339
3340         Adding version extension according to ChangeLog CVS revision
3341         * src/Makefile.in (target all): added dependency 'version.h'
3342         * (rule version.h): added rule to create version.h from ChangeLog,
3343         * (rule dep): added dependency version.h,
3344         * src/version.awk: AWK script to create version.h
3345         * src/SDCCdwarf2.c (dwWriteModule),
3346         * src/SDCCglue.c (initialComments),
3347         * src/SDCCmain.c (printVersionInfo): modified to write after
3348         version string the version extension number,
3349         * src/SDCCutil.c: included "version.h"
3350         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3351         number,
3352         * src/SDCCutil.h: added prototype for getBuildNumber
3353
3354         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3355         includeDirsSet, too,
3356         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3357         const char [] is found in function prototype...
3358
3359         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3360         moving to WREG with source is already in WREG,
3361         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3362         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3363         * (aopForSym): stack'ed symbols are partially supported, added
3364         if-clause to support symbols in FARSPACE,
3365         * (sameRegs): added test for AOP_ACC to see if registers are same,
3366         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3367         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3368         * (pic16_popRegFromString): will not allocate a new register if it
3369         doesn't find one by name, bug may have introduced...
3370         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3371         * (genIpush): revived to use pic16 port's stack,
3372         * (genAddrOf): added incomplete case for stack'ed operand,
3373         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3374         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3375         can handle multibyte operands,
3376         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3377         * (pic16initialComments): added message for MPLAB compatibility
3378         mode enabled,
3379         * src/pic16/main.h: prototype for pic16_mplab_comp,
3380         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3381         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3382         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3383         because of increased complexity of procedure,
3384         * (_process_pragma): stack pragma changed to format 'stack pos len',
3385         emit symbol '_stack_end' to conform with gplink,
3386         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3387         to search for register,
3388         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3389         PO_GPR_REGISTER,
3390         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3391         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3392         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3393         case for PO_GPR_REGISTER,
3394         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3395         dies, the new era is ahead !...
3396         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3397         pic16_dynInternalRegs,
3398         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3399         * (pic16_allocDirReg): minor optimizations and bug fixes,
3400         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3401
3402         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3403         load stack and frame pointer with address of 'stack_end' symbol
3404
3405 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3406
3407         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3408         without source code but only variable initializers
3409
3410 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3411
3412         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3413         external are not declared as extern to reduce overhead while linking
3414
3415 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3416
3417         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3418
3419 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3420
3421         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3422           Yee Keat for the patch
3423         * src/SDCCast.c (decorateType): fixed bug #979599
3424         * src/ds390/gen.h: removed local fReturnSizeDS390
3425         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3426         * src/ds390/gen.c (genAnd, genOr, genXor),
3427         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3428
3429 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3430
3431         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3432         add relFilesSet to $3, manipulate $2 to handle linking of object
3433         files without source files in command line,
3434         * device/include/pic16 (all headers): added ID location macros,
3435         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3436         entries for ID location bytes,
3437         * (pic16_assignIdByteValue): NEW,
3438         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3439         added field dumpcalltree to pic16_options_t,
3440         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3441         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3442         emitting rFalseIfx label after check_carry label,
3443         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3444         pic16_emitDIRegs), NEW
3445         * (pic16glue): dump .calltree file when option --calltree found,
3446         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3447         * (_pic16_genAssemblerPreamble): emit ID locations after
3448         configuration registers,
3449         * (pic16_linkCmd): modifications of the link command,
3450         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3451         * (pic16_pCodeInitRegisters): don't init stack registers,
3452         * (pic16_findPrevInstruction): fixed bug,
3453         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3454         bug with immediate registers,
3455         * (buildCallTree): traces stack push and pop,
3456         * (pct2): dump also stack usage for each function,
3457         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3458         * (pic16_allocDirReg): various modifications,
3459         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3460         fixed to 1,
3461
3462 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3463
3464         * src/pic16/pcode.c: removed buggy double colon
3465
3466 2004-07-01 Borut Razem <borut.razem AT siol.net>
3467
3468         * support/scripts/sdcc.nsi: added include/pic16 to setup
3469
3470 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3471
3472         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3473         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3474         target 'clean',
3475         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3476         specific command line arguments. Also added sample lkr script
3477         for placing a variable at a specific memory bank.
3478         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3479         at a specific memory bank,
3480         * (pic16_dump_isection): fixed bug which caused string literals to
3481         be omitted when dumping idata section,
3482         * (pic16_groupRegistersInSection): added code to handle registers
3483         in specific memory banks,
3484         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3485         public, all references are renamed too,
3486         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3487         AOP_DPTR2,
3488         * (pic16_storeForReturn): added case to handle when dest is WREG,
3489         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3490         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3491         pic16_rel_udata, check to see if that register is marked as being
3492         a member of a specific memory bank,
3493         * (pic16_printIvalCharPtr): added code to add string literals either
3494         to code or the idata sections,
3495         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3496         also accept the 'udata' pragma,
3497         * src/pic16/main.h: new structure types sectName and sectSym
3498         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3499         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3500         * (pic16_findPrevInstruction): fixed, it returned nothing,
3501         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3502         instruction combinations,
3503         * (pic16_FixRegisterBanking): heavily reorganised,
3504         * (pic16_AnalyzeBanking): if generating banksel directives is
3505         disabled, then don't call FixRegisterBanking at all,
3506         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3507         completely removed,
3508         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3509
3510 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3511
3512         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3513         Phuah Yee Keat <yk.phuah AT nestac.com>
3514
3515 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3516
3517         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3518         correctly the IVT even if it is relocated to some other location
3519
3520 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3521
3522         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3523         * device/include/pic16/pic18f2220.h: NEW,
3524         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3525         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3526         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3527         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3528         nodefaultlibs, ivt_loc is the location of the interrupt vector
3529         table, and nodefaultlibs signs that default libraries should not be
3530         linked in link stage,
3531         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3532         according to --ivt-loc argument,
3533         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3534         when pragma stack is found,
3535
3536 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3537
3538         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3539         256 (range check), 257 (do while), 258.a-f (bit banging
3540         f.e. on 3-wire SPI bus)
3541
3542 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3543
3544         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3545         variables used exclusively within a loop
3546
3547 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3548
3549         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3550
3551 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3552
3553         * src/SDCClrange.c (computeClash): fixed bug #971834
3554
3555 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3556
3557         * src/mcs51/gen.c (genCmp): fixed bug #975903
3558         * src/hc08/gen.c (operandsEqu),
3559         * src/ds390/gen.c (operandsEqu),
3560         * src/z80/gen.c (operandsEqu),
3561         * src/pic/gen.c (operandsEqu),
3562         * src/pic16/gen.c (operandsEqu),
3563         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3564         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3565
3566 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3567
3568         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3569
3570 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3571
3572         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3573         default case in switch statement,
3574         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3575         to eliminate problem with initialisation of pointers, but problem
3576         still exists,
3577         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3578         * (emitStaticSegment): removed various lines emitting debug info,
3579         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3580         added processor registers for utilizing EEPROM,
3581         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3582         configurable and set 8
3583
3584 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3585
3586         * .version: increased version number to 2.4.2,
3587
3588         Cumulative patch for pic16 port
3589         * src/pic16/device.c: changed scheme to dump initial values for
3590         variables in idata segment, all print_idata* functions were removed,
3591         now the pic16_printIval* will be called,
3592         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3593         * _pic16_printPointerType, pic16_printPointerType,
3594         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3595         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3596         NEW, similar to the respective functions in SDCCglue.c,
3597         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3598         way, emitting hex bytes,
3599         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3600
3601 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3602
3603         * src/avr/ralloc.c (serialRegAssign),
3604         * src/xa51/ralloc.c (serialRegAssign),
3605         * src/pic/ralloc.c (serialRegAssign),
3606         * src/pic16/ralloc.c (serialRegAssign),
3607         * src/hc08/ralloc.c (serialRegAssign),
3608         * src/z80/ralloc.c (serialRegAssign),
3609         * src/ds390/ralloc.c (serialRegAssign),
3610         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3611
3612 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3613
3614         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3615         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3616
3617 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3618
3619         Cumulative patch for pic16 port:
3620         * src/pic16/device.h (typedef PIC16_device) modified fields for
3621         defining microcontrollers,
3622         * src/pic16/device.c: added new info for all devices in Pics16 array,
3623         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3624         to be optimised out by the pCode optimiser,
3625         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3626         specially, bug reported by G.M. Gallant,
3627         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3628         as force'd so that cannot be optimised out by pCode optimiser,
3629         * src/pic16/pcode.c,
3630         * src/pic16/pcodepeeph.c,
3631         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3632         they are disabled by default, but can be enabled explicit with
3633         command argument --denable-peeps, for testing,
3634         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3635         --pomit-ivt in COMPILE_FLAGS
3636
3637 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3638
3639         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3640           compilation on MSVC
3641
3642 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3643
3644         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3645
3646 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3647
3648         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3649         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3650
3651 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3652
3653         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3654         would only assign 0x300001 register.
3655
3656 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3657
3658         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3659         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3660
3661 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3662
3663         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3664         for ds80c400
3665         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3666         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3667         added peephole 254 (left shift), 255 (jump table)
3668
3669 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3670
3671         * device/lib/Makefile.in: removed comment line with model-pic16,
3672         * (target port-specific-objects-pic16): the libraries and objects
3673         are copied to the build directory form the device/lib/pic16/bin
3674         directory
3675
3676         Cumulative patch concerning pic16 port:
3677         * library directory has been re-organized,
3678         * added support for PIC18F1220,
3679         * added headers and library sources for chips 18f1220,18f6520,
3680         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3681
3682         * configuration registers setting has changed, now each supported
3683         device has a complete description of the registers it uses,
3684         * all initialisations are moved to idata sections, these section
3685         can be absolute or relocatable,
3686         * fixed initialisation of codespace variables,
3687         * fixed warning about PCLATU and gpsim,
3688         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3689         * (genAssign): use table reads when assigning from variables in codespace,
3690         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3691         char/int variables placed in codespace,
3692         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3693         registers set in .asm file, no need for --pomit-config-words anymore,
3694         * (pic16glue): some 8051 legacy segments are commented out
3695         (to be removed completely),
3696         * added support for alternative assembler and linker with --asm=
3697         and --link= command line arguments,
3698         * peepholes are disabled automatically in the port, no need to
3699         specify on command line,
3700         * port supports natively char/int/long multiplication, but converts
3701         all divisions to support functions,
3702         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3703         to the file set in variable $2,
3704         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3705         strings in ASCII format and not in hex,
3706         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3707         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3708         allocate proper register if iCodes aren't temporary,
3709
3710 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3711
3712         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3713
3714 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3715
3716         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3717         is commented out
3718
3719 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3720
3721         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3722         computed address is reused
3723         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3724         multi-byte bitfields
3725
3726 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3727
3728         * src/z80/gen.c: (genArrayInit): must check for pointers too
3729
3730 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3731
3732         * support/regression/tests/zeropad.c: never meant to commit the
3733           nestedstruct test: removed, added check for GCC version
3734
3735 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3736
3737         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3738         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3739         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3740           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3741           bugs 928906 and 954082 half-empty initializers
3742         * src/SDCCsymt.h,
3743         * src/SDCCsymt.c (getAllocSize): added for above fix
3744         * src/z80/gen.c (genArrayInit): fixed bug 741044
3745         * support/regression/tests/zeropad.c: added tests
3746
3747 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3748
3749         * src/pic16/device.c (pic16_dump_section): corrected bug which
3750         caused some symbols of the libraries to be misplaced
3751
3752 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3753
3754         * src/pic16/glue.c,
3755         * src/pic16/ralloc.h,
3756         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3757         to fix conflict with pic port
3758
3759 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3760
3761         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3762         externs configuration variables,
3763         * src/pic16/ralloc.h,
3764         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3765         prototype in header, commented out some debug messages
3766
3767 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3768
3769         * src/pic16/glue.c,
3770         * src/pic16/main.c,
3771         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3772         for gpasm COFF object generation. Thanks to D. Hawkins for
3773         his patch info
3774
3775 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3776
3777         * src/ds390/main.c,
3778         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3779         Brock for spotting this)
3780         * src/ds390/gen.c (genEndFunction),
3781         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3782         interrupt handler and critical. Disable push/pop optimizations when
3783         peephole optimizations disabled.
3784
3785 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3786
3787         Updated pic16 library sources and headers.
3788         * device/lib/pic16/pic18f*/ ,
3789         * device/include/pic16/*.h: modified to handle structured SFR
3790         definitions
3791
3792 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * src/port.h (PORT structure): added hook initPaths, now each
3795         port can declare its own default search paths,
3796         which can been seen with the --print-search-dirs option,
3797         see pic16 port for example,
3798         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3799         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3800         * (doPrintSearchDirs): NEW, replaces in a central manner the
3801         printing of search dirs which was split in set*Paths functions,
3802         * (main): added call to port->initPaths and doPrintSearchDirs,
3803         * src/avr/main.c,
3804         * src/ds390/main.c,
3805         * src/hc08/main.c,
3806         * src/izt/i186.c,
3807         * src/izt/tlcs900h.c,
3808         * src/mcs51/main.c,
3809         * src/pic/main.c,
3810         * src/pic16/main.c: modified port structures to reflect addition of
3811         initPaths hook,
3812
3813         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3814         * (pic16_dump_section): for registers in same address reserve memory once,
3815         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3816         to no_banksel,
3817         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3818         result is greater in size than right or left,
3819         * (pic16_genUMult8X8_8): there are some cases where the result can
3820         be 16 bits size, so handle these,
3821         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3822         * (pic16_outBitC): modified to emit pcodes,
3823         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3824         or not,
3825         * (genDivOneByte): implemented algorithm to divide 8-bits,
3826         * (genCmp): uncommented goto, but issues still exist,
3827         * (genAnd): fixed a bug with variables >8bits,
3828         * (genPackBits): optimization added that uses BCF/BSF to change a
3829         single bit,
3830         * (genAssign): fixed bug when assigning floating point literals,
3831         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3832         __sdcc_gsinit_startup label,
3833         * src/pic16/main.c (_pic16_init): removed search directory
3834         initialisations,
3835         * (_pic16_initPaths): NEW, used to initialise search directories,
3836         * (_hasNativeMulFor): support functions for all except char/int
3837         multiplication, and char division,
3838         * (PIC16_port struct): modified entry for native mul support,
3839         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3840         no_banksel option,
3841         * (buildCallTree): call to register_usage is ifdef'ed out,
3842
3843 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3844
3845         * device/include/string.h: applied Stas Sergeev's patch to make this
3846         header file compatible with the preprocessor -Wundef option
3847         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3848         failure (fixes bug #941458)
3849
3850 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3851
3852         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3853         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3854         that the variable, not the function, should be static
3855         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3856         to be consistent with non-literal case
3857
3858 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3859
3860         * src/SDCCast.c (isConformingBody): fixed bug #949967
3861         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3862         convilong): fixed bug #952086
3863
3864 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3865
3866         * src/SDCCmem.c (allocVariables): fixed bug #955321
3867
3868 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3869
3870         * src/hc08/main.c (_hc08_genAssemblerEnd),
3871         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3872         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3873         completely eliminated the use of a temporary file
3874         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3875         when more than one file linked
3876         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3877
3878 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3879
3880         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3881         which fixes bug #543481
3882         * support/regression/tests/bug-751703.c: fixed comments left from a
3883         cut and paste error
3884         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3885         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3886         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3887         scopes
3888         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3889         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3890         are now changed to underscores in moduleName
3891
3892 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3893
3894         * as/mcs51/lkmem.c: better fix for bug #954173
3895
3896 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3897         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3898
3899         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3900         * device/include/c8051f000.h,
3901         * device/include/c8051f120.h,
3902         * device/include/c8051f300.h,
3903         * device/include/c8051f310.h,
3904         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3905         PWM16) and detab'ed
3906
3907 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3908
3909         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3910         and mailing lists, doc'ed --no-peep-comments, removed reference
3911         to knoppix (newest version has no LyX/LaTeX), other minor changes
3912         * src/SDCCglue.c (glue): save 2 bytes stack space with
3913         option --main-return. The ljmp could probably be avoided too
3914
3915 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3916
3917         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3918
3919 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3920
3921         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3922         * src/SDCCopt.c (isLocalWithoutDef),
3923         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3924         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3925         (credit to Maarten Brock for patch #949363, on which this is based)
3926         * support/regression/tests/bug-751703.c: some test cases of extern used
3927         within inner scopes.
3928
3929 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3930
3931         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3932         SPEC_STRUCT
3933         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3934         struct definitions
3935         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3936         dwWriteLabel): fix to create valid debugger symbols even when
3937         the module name has non-alphanumeric symbols in it
3938         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3939         when a variable's allocation has been optimized away
3940
3941
3942 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3943
3944         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3945         * src/hc08/main.c,
3946         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3947         * src/mcs51/main.c,
3948         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3949         * src/ds390/main.c,
3950         * src/z80/gen.c (z80_emitDebuggerSymbol),
3951         * src/z80/main.c,
3952         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3953         * src/pic/main.c,
3954         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3955         * src/pic16/main.c,
3956         * src/avr/gen.c (avr_emitDebuggerSymbol),
3957         * src/avr/main.c,
3958         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3959         * src/xa51/main.c,
3960         * src/SDCCdebug.c (emitDebuggerSymbol),
3961         * src/SDCCdebug.h,
3962         * src/port.h: added a debugger struct to the port struct. Added a
3963         callback for defining debugger symbols
3964
3965         * src/SDCCast.c (createLabel),
3966         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3967         with isitmp = 1
3968         * src/SDCCicode.h,
3969         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3970         iCode back to the ast for the function
3971
3972         * src/hc08/ralloc.c (hc08_assignRegisters),
3973         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3974         unneeded fields from the regs struct.
3975         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3976         pushReg() & pullReg() functions instead of emitcode()
3977
3978         * src/hc08/gen.c (genLabel, genhc08Code),
3979         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3980
3981         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3982         debugger hooks
3983
3984         * src/hc08/gen.c (genEndFunction, genhc08Code),
3985         * src/hc08/gen.h,
3986         * src/mcs51/gen.c (genEndFunction, gen51Code),
3987         * src/mcs51/gen.h,
3988         * src/ds390/gen.c (genEndFunction, gen390Code),
3989         * src/ds390/gen.h,
3990         * src/z80/gen.c (genEndFunction, genZ80Code),
3991         * src/z80/gen.h,
3992         * src/z80/z80.h,
3993         * src/pic/gen.c (genEndFunction, genpic14Code),
3994         * src/pic/gen.h,
3995         * src/pic16/gen.c (genEndFunction, genpic16Code),
3996         * src/pic16/gen.h,
3997         * src/avr/gen.c (genEndFunction, genAVRCode),
3998         * src/avr/gen.h,
3999         * src/xa51/gen.c (genEndFunction, genXA51Code),
4000         * src/xa51/gen.h,
4001         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4002         specific code to cdbFile.c and out of the backend code generators
4003
4004         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4005         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4006         starting address is now 0
4007
4008         * as/hc08/asm.h,
4009         * as/hc08/m08pst.c,
4010         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4011         assembler directive for DWARF support
4012         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4013
4014         * src/src.dsp,
4015         * src/Makefile.in,
4016         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4017
4018 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4019
4020         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4021         and inappropriate peephole optimization in jump tables
4022
4023 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4024
4025         * as/hc08/m08pst.c,
4026         * src/SDCCglue.c: sdccopt works for the hc08 port now
4027
4028 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4029
4030         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4031
4032 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4033
4034         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4035
4036 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4037
4038         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4039         rules
4040         * src/SDCCmain.c,
4041         * src/SDCCglobl.h,
4042         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4043         comments from the peephole optimizer replacement rules
4044         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4045         symbols
4046         * src/SDCCcse.c (updateSpillLocation),
4047         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4048         equivalents
4049         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4050         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4051         objects far pointers
4052
4053 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4054
4055         * src/SDCCsymt.h: a missing part of my last change
4056         * src/pic/ralloc.c (regTypeNum),
4057         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4058
4059 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4060
4061         * src/SDCCicode.h,
4062         * src/SDCCicode.c (aggrToPtrDclType),
4063         * src/SDCCptropt.h,
4064         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4065         ptrPseudoSymConvert),
4066         * src/pic/ralloc.c (regTypeNum),
4067         * src/pic16/ralloc.c (regTypeNum),
4068         * src/hc08/ralloc.c (regTypeNum),
4069         * src/ds390/ralloc.c (regTypeNum),
4070         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4071         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4072
4073 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4074
4075         * link/z80/lkmain.c (afile),
4076         * as/hc08/lkmain.c (afile),
4077         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4078         prevent a pointer problem when a filename has no directory and
4079         no extension specified.
4080
4081 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4082
4083         * link/z80/lkmain.c (afile): allow periods in directory names
4084         * link/z80/lkmain.c (afile),
4085         * as/mcs51/lkmain.c (afile),
4086         * as/hc08/lkmain.c (afile): allow linker script file to have an
4087         extension other than ".lnk"
4088         * link/z80/lklex.c (getfid),
4089         * link/z80/lkmain.c (parse),
4090         * as/mcs51/lklex.c (getfid),
4091         * as/mcs51/lkmain.c (parse),
4092         * as/hc08/lklex.c (getfid),
4093         * as/hc08/lkmain.c (parse): Support comments in the linker script
4094         file on lines by themselves and after filenames
4095
4096 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4097
4098         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4099
4100 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4101
4102         * src/z80/peeph-z80.def: removed some peephole rules that don't
4103         work with multibyte arithmetic (fixed bug #937126)
4104         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4105         to registers and not global variables
4106         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4107         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4108         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4109         checking for assignments not internally generated (fixed bug #931895)
4110         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4111         structure member (fixed bug #930072)
4112
4113 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4114
4115         * src/SDCCmain.c (linkEdit),
4116         * src/hc08/main.c (_hc08_parseOptions),
4117         * as/hc08/Makefile.in,
4118         * as/hc08/aslink.h,
4119         * as/hc08/asm.h,
4120         * as/hc08/m08pst.c,
4121         * as/hc08/lkrloc.c (relr, rele),
4122         * as/hc08/lkarea.c (lnkarea)
4123         * as/hc08/lkmain.c (afile, parse),
4124         * as/hc08/lkelf.c: support for ELF output
4125         * as/hc08/lks19.c (s19),
4126         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4127
4128 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4129
4130         * as/mcs51/lkihx.c: Fixed bug #899105.
4131
4132 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4133
4134         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4135         .dsp files from Unix to DOS.
4136
4137 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4138
4139         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4140         function pointers; we have been compliant for several months now.
4141         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4142         change that was accidently commented out
4143         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4144         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4145         bug #922319
4146
4147 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4148
4149         * src/hc08/gen.c: output of all of the internal debugging information
4150         is now controlled by the D() macro; it is disabled by default
4151
4152 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4153
4154         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4155         harder to keep the same registers during a CAST iCode
4156         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4157         long via int can be done in a single cast, if the signedness is
4158         correct.
4159         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4160         putchar() in tinibios.c in ds390's library
4161
4162 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4163
4164         * src/SDCCast.c (decorateType): fixed bug #898889,
4165         cast result of a literal complement too
4166         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4167         fixed check for bitfields
4168
4169 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4170
4171         * src/SDCCicode.c (geniCodeLogic): made it static,
4172         (geniCodeLogicAndOr): added in order to fix bug #905492,
4173         (ast2iCode): fixed bug #905492
4174         * support/regression/tests/bug-905492.c: added
4175         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4176         (processParms): fixed bug #927659: don't copy parms, this will clear
4177         decorated flag
4178         * support/regression/tests/bug-927659.c: added
4179
4180 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4181
4182         * src/SDCCast.c (addCast): don't cast float to char
4183         * device/lib/libsdcc.lib: added _memmove
4184
4185 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4186
4187         * device/lib/large/Makefile: fixed parallel execution by
4188         replacing `make` by `$(MAKE)`
4189
4190 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4191
4192         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4193         offsets (fixes bug #923936)
4194
4195 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4196
4197         * device/lib/small/Makefile: fixed parallel execution by
4198         replacing `make` by `$(MAKE)`
4199
4200 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4201
4202         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4203
4204 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4205
4206         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4207         * src/regression/Makefile: Regression test was not running.
4208
4209 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4210
4211         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4212         complement if possible
4213         * src/SDCCval.c (valComplement),
4214         * src/SDCCicode.c (operandOperation): fixed complement of literal
4215         * support/regression/tests/onebyte.c (testComplement): added
4216
4217 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4218
4219         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4220         return an optimized tree; actually replace actParm with the new tree
4221         * src/SDCCast.h: added some parantheses to remove side effects
4222         * support/regression/tests/bug-920866.c
4223
4224 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4225         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4226         Bit operands were not being handled properly in the pic14 port.
4227         (now src/regression/add.c passes again).
4228
4229 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4230
4231         * src/SDCC.y (labeled_statement): case and default no longer require
4232         a following statement (RFE #893037)
4233
4234 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4235
4236         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4237         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4238         disabled (fixes bug #916294)
4239         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4240         "mov a,acc"; patch provided by Lenny Story
4241         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4242
4243 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4244
4245         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4246         functions
4247         * src/ds390/gen.c (genFunction, genEndFunction),
4248         * src/ds390/ralloc.c (ds390_assignRegisters),
4249         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4250         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4251         pushed if there are parameters passed on the stack. Also, a cleaner
4252         way to decide if r0/r1 should be pushed/popped. (Together they fix
4253         bug #918693)
4254
4255 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4256
4257         * doc/sdccman.lyx,
4258         * device/lib/mcs51/crtpagesfr.asm,
4259         * device/lib/mcs51/crtxinit.asm,
4260         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4261         to avoid confusion with Si Lab's SFRPAGE register.
4262
4263 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4264
4265         * src/SDCCglue.c (emitMaps): allow public sfr variables
4266         * src/SDCCglue.c (initialComments): include compiler build date
4267         with compiler version and put the timestamp of the generated
4268         assembly file on a serperate line to be less confusing.
4269         * src/port.h: added genInitStartup hook
4270         * src/avr/main.c,
4271         * src/ds390/main.c,
4272         * src/hc08/main.c,
4273         * src/pic/main.c,
4274         * src/pic16/main.c,
4275         * src/xa51/main.c,
4276         * src/z80/main.c: genInitStartup initialize as NULL (default to
4277         historical behaviour)
4278         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4279         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4280         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4281         library instead of hard coding it into the compiler.
4282         * support/regression/ports/mcs51-stack-auto/spec.mk,
4283         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4284         * device/lib/mcs51/Makefile,
4285         * device/lib/small/Makefile,
4286         * device/lib/large/Makefile,
4287         * device/lib/mcs51/crtpagesfr.asm,
4288         * device/lib/mcs51/crtstart.asm,
4289         * device/lib/mcs51/crtxclear.asm,
4290         * device/lib/mcs51/crtxinit.asm,
4291         * device/lib/mcs51/crtclear.asm,
4292         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4293         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4294         and into user configurable files.
4295         * device/lib/clean.mk: clean mcs51 directory too
4296         * support/regression/tests/longlit.c: added static to T1 declaration
4297         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4298         accesses in the initialization code
4299
4300 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4301
4302         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4303         OSCTRIMVAL as noted in bug #916008
4304
4305 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4306
4307         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4308         in loops with multiple exits (reported as incorrect registers
4309         used by Martin Helmling in Sdcc-user list)
4310
4311 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4312
4313         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4314         made ds390 register extensions look less like error messages
4315
4316 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4319         reported by Adam Wozniak in Sdcc-user list
4320
4321 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4322
4323         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4324         arithmetic optimizations, added debug output
4325
4326 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4327
4328         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4329         * sdcc.spec: updated and split sdcc into 3 rpms
4330         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4331         needed for literals of LEFT_OP and '+'
4332         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4333         introduced RESULT_TYPE_NOPROM
4334         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4335         left shift
4336         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4337         limited promotion to int only for '*'
4338         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4339
4340 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4341
4342         * src/pic16/gen.c (genSkip),
4343         (genc16bit2lit), (gencjneshort): commented out
4344         (is_LitOp): new helper function, checks operand type
4345         (genCmpEq): rewritten
4346
4347 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4348
4349         * support/regression/tests/bug-908454.c: added
4350
4351 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4352
4353         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4354         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4355         (geniCodeCast): cosmetic, don't preserve bit storage class
4356         (geniCodeLeftShift): added promotion
4357         (geniCodeLogic): fixed regression
4358         * src/SDCCsymt.c (computeTypeOr): accept bits too
4359         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4360
4361 2004-03-07  Borut Razem <borut.razem AT siol.net>
4362
4363         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4364
4365 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4366
4367         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4368         version of pic16_genPackRegisters which does not check if ic is a
4369         CAST operator,
4370         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4371         function cause string1.c regression test fails
4372
4373 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4374
4375         * sim/ucsim/configure.in,
4376         * sim/ucsim/configure,
4377         * sim/ucsim/doc/Makefile.in: use docdir
4378         * src/SDCC.y: fixed sbit atrributes
4379         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4380         * src/SDCCast.c (decorateType): |^& need special promotion handling
4381         * src/SDCCast.h,
4382         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4383         * src/SDCCsymt.h (computeType),
4384         * src/SDCCicode.c: computeType() needs op
4385         * src/SDCCsymt.c (checkTypeSanity),
4386         * doc/sddman.lyx: "plain" bitfields are unsigned
4387         * src/SDCCsymt.c (computeTypeOr): added
4388         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4389         |^& ops
4390         * src/SDCCval.c (val*): computeType() needs op
4391         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4392         * support/regression/tests/onebyte.c: added tests for |^&
4393
4394 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4395
4396         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4397         for writing icode into asm output.
4398
4399 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4400
4401         * src/pic16/device.c: added some debug lines enabled
4402         with macro DEBUG_CHECK,
4403         * src/pic16/genarith.c: more debug in genPlus,
4404         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4405         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4406         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4407         * (aopForSym): onStack symbols are re-placed in data memspace,
4408         and onStack flag is cleared,
4409         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4410         copy temporary pcodeop,
4411         * (genPcall): added warning for not updating PCLATU,
4412         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4413         always true for pic16 port,
4414         * (genMultOneWord): NEW, supports integer multiplication,
4415         * (genMult): modified to call genMultOneWord,
4416         * (ifxForOp): added warning when return NULL,
4417         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4418         flag is set before call to operandFromSymbol for implicit
4419         added structures,
4420         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4421         options.intlong_rent are set by default,
4422         * (_hasNativeMulFor): modified to allow port generation of integer
4423         multiplication,
4424         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4425         set regtype to REG_SFR for all registers, restricting seting the
4426         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4427
4428 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4429
4430         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4431         more than 500 times in the regression tests
4432
4433 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4434
4435         * support/Util/SDCCerr.h,
4436         * support/Util/SDCCerr.c,
4437         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4438         enumerator_list),
4439         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4440         for symbol conflicts.
4441         * support/valdiags/tests/enum.c,
4442         * support/valdiags/tests/tentdecl.c,
4443         * support/valdiags/tests/struct.c: expect possible error messages
4444         referring to original symbol definitions.
4445         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4446         * src/SDCCsymt.h,
4447         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4448
4449 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4450
4451         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4452
4453 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4454
4455         * src/pic16/ralloc.c (newReg): fixed bug #908929
4456
4457 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4458
4459         * src/ds390/gen.c: added missing #include "main.h"
4460
4461 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4462
4463         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4464         checking if symbol is already in set,
4465         * src/pic16/device.h: prototype for checkAddSym,
4466         * src/pic16/gen.c: (_G): added entry interruptvector,
4467         * (assignResultValue): removed some commented out lines,
4468         * (genFunction): check for ISR via sym->type, absolute section for
4469         interrupt code is created via a new pBlock, the goto instruction is
4470         placed now correctly at the interrupt vector position, changed all
4471         references from ivec to _G.interruptvector,
4472         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4473         is the interrupt is a high priority one, same for return from ISR,
4474         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4475         externs to calls of checkAddSym,
4476         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4477         pic16_pcode_verbose flag is set,
4478         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4479         * src/pic16/pcoderegs.c: message about how many registers are saved
4480         will only be emitted if pic16_pcode_verbose flag is set,
4481
4482 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4483
4484         * src/ds390/ralloc.h,
4485         * src/ds390/ralloc.c (ds390_regWithIdx),
4486         * src/ds390/gen.c (emitcode),
4487         * src/ds390/main.h,
4488         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4489         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4490         ds390operandCompare, getRegsRead, getRegsWritten,
4491         initializeAsmLineNode): customized instruction size calculation for
4492         ds390, started basis for some register optimizations
4493         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4494         corresponding assembly output
4495         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4496         missing push/pop of r0/r1. Optimized push/pops
4497
4498 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4499
4500         * src/mcs51/main.c (instructionSize): fixed ACALL size
4501         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4502
4503 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4504
4505         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4506         the sorting of rlist with NULL elements
4507         * (print_idataType, print_idata): NEW to create idata sections
4508         * src/pic16/device.h: idataSymSet new variable
4509         * src/pic16/gen.c (genFunction): fixed some bugs in string
4510         comparing, improved the absolute section creation for ISRs,
4511         added FSR0L/FSR0H in registers that are saved in an ISR,
4512         * (genInline): fixed the processing of inline snippets,
4513         now they undergo no process by the peephole optimizer
4514         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4515         are placed in idataSymSet,
4516         * (pic16emitStaticSeg): extern symbols are added in externs,
4517         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4518         switching when aboslute variables are placed in access bank memory
4519         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4520         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4521         commented out with #if,
4522         * (pic16_packRegisters): reintroduce the check for CAST because some
4523         symbols are not correctly handled,
4524         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4525         pCodeInstruction instead of pCode,
4526         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4527         pCodeAsmDir definition,
4528         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4529         directive, then the argument directive is emitted without the leading
4530         tab, hack for inline labels which must be in the first column,
4531         * (compareLabel,pic16_findNextInstruction),
4532         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4533         * (insertBankSwitch): modified for the new pCodeAsmDir,
4534
4535 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4536         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4537
4538         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4539         instance,
4540         * (pushSide): commented out with #if,
4541         * (assignResultValue): fixed some typos in saving
4542         registers,
4543         * (genPcall): FIXED and sync'ed with genCall,
4544         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4545         * (genNearPointerGet): fixed to handle some more cases,
4546         implementation scheme via table reads,
4547         * (genConstPointerGet): modified to access code memory correct,
4548         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4549         and improved to handle some cases
4550         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4551         instead of "RETLW" for init data
4552         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4553         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4554         variables are placed in access bank memory (<0x80 and >=0xf80),
4555         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4556         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4557         TBLWT_POSTDEC,TBLWT_PREINC
4558         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4559         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4560         directives
4561         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4562         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4563         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4564         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4565
4566 2004-02-29  Borut Razem <borut.razem AT siol.net>
4567
4568         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4569         support/Util/findme.h, support/Util/system.h: enhance binary relative
4570         search for lib and include by using findProgramPath()
4571
4572 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4573
4574         * src/SDCCpeeph.h,
4575         * src/SDCCpeeph.c (pcDistance),
4576         * src/port.h,
4577         * src/mcs51/ralloc.h,
4578         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4579         * src/mcs51/main.h,
4580         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4581         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4582         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4583         size calculation port specific, started basis for some register
4584         optimizations
4585         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4586         missing push/pop of r0/r1. Optimized push/pops
4587         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4588         * device/lib/_modsint.c (_modsint),
4589         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4590         and stack version so regression tests pass
4591
4592 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4593
4594         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4595         * src/SDCCast.c (decorateType): catch another small optimization
4596         with '?' operator
4597         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4598         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4599         modified to finally use computeType() all over SDCC,
4600         see Feature Request #877103
4601         * src/SDCCval.h: cosmetic
4602         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4603         valCompare(); regression tested in muldiv.c
4604         * support/regression/tests/muldiv.c (testMod): mod sign follows
4605         dividend only
4606
4607 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4608
4609         * src/SDCCast.c (decorateType): fixed bug #902362
4610         * doc/INSTALL.txt: fixed install instructions for win32
4611
4612 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4613
4614         * device/include/Makefile.in (install): fixed by replacing spaces
4615         by tabs
4616         * doc/README.txt,
4617         * doc/INSTALL.txt: updated for release
4618         * doc/sdccman.lyx: added warning for --xstack being buggy
4619
4620 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4621
4622         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4623         to eliminate build warnings.
4624         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4625
4626 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4627            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4628
4629         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4630         removed -penable-stack, added comment for stack pragma, added
4631         warning for not initializing the stack/frame registers, removed
4632         comment at interrupts section
4633
4634         Stack is made permanent, there is no ability to disable stack usage.
4635         * src/pic16/device.h,
4636         * src/pic16/device.c: removed all references to USE_STACK macro,
4637         * src/pic16/device.c (pic16_dump_section): when no elements in
4638         rlist, free rlist before return,
4639         * (pic16_dump_int_registers): NEW, internal registers are a new set
4640         of general purpose registers reused by each function,
4641         * (checkAddReg): returns 1 if registers is added to set,
4642         * (pic16_groupRegistersInSection): when a registers is of type
4643         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4644         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4645         SRCASECMP macro is moved here from device.c
4646         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4647         PO_PCLATU, PO_PRODL, PO_PRODH,
4648         * (pic16_pCodeOpType, genMinus,
4649         changed compares to "a" register, with AOP_ACC,
4650         * (pic16_genPlus): fixed some bugs and indented properly,
4651         * (pic16_addSign): changed size to size+offset in the MOVWF
4652         instruction,
4653         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4654         multiply 8-bit operand by literal, result is 8-bit,
4655         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4656         multiply 2 8-bit operand, result is 8-bit,
4657         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4658         genUMult8X*_16,
4659         * src/pic16/gen.c: changed accUse to contain WREG only,
4660         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4661         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4662         true, do not use immediate addressing any more unless sym is a
4663         pointer in codespace,
4664         * (aopForRemat): do not use immediate addressing when symbol not in
4665         codespace and when symbol's address is requested,
4666         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4667         accUse size (= 1),
4668         * (aopGet): added case for AOP_ACC and don't return "accumulator
4669         bug" but WREG instead,
4670         * (popGetTempReg): pushes contents of temporary register in stack,
4671         * (popReleaseTempReg): pops contents of temporary register from
4672         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4673         * (pic16_popGet): separated case AOP_ACC to return register WREG
4674         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4675         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4676         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4677         the use of immediate pointers to certain cases only.
4678
4679         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4680         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4681         * (assignResultValue, genCall, genRet): modified to use the new
4682         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4683         genPcall is still broken,
4684         * (genFunction): added code to create 'A' type pBlocks when
4685         interrupt functions are generated, code not extensively tested yet,
4686         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4687         * (genEndFunction): modified so ISRs pop stored registers from stack,
4688         * (genMultOneByte): cleanup,
4689         * (AccRsh): added flag andmask, to and result with appropriate mask,
4690         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4691         * (genDataPointerGet): fixed and reenabled its use,
4692         * (genNearDataPointerGet): bugs fixed,
4693         * (genDataPointerSet): bugs fixed,
4694         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4695         pic16_DumpSymbol, pic16_DumpOp,
4696         * src/pic16/genutils.h: function prototypes for the above functions,
4697         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4698         pointers,
4699         * (pic16emitRegularMap): many many many improvements, but needs a
4700         major cleanup,
4701         * src/pic16/main.c: enable_stack in pic16_options is removed,
4702         * (_pic16_parseOptions): removed command line options -penable-stack,
4703         * (_process_pragma): emit stack symbol only when stack pragma is
4704         processed,
4705         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4706         redirected to FSR0L/FSR0H pair,
4707         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4708         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4709         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4710         for immediates,
4711         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4712         * (dumpPicOptype): NEW,
4713         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4714         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4715         with movff instruction,
4716         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4717         added pic16_int_regs, some packRegsFor* functions are commented out,
4718         because produce errors,
4719         * src/pic16/NOTES: minor modifications
4720
4721 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4722
4723         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4724         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4725         --pack-iram.
4726         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4727         * as/mcs51/lkaomf51.c: fixed bug #895763
4728
4729 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4730
4731         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4732
4733 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4734
4735         * doc/sdccman.lyx: added details about the HC08 storage classes and
4736         interrupts, fixed the register usage info for z80 & gbz80
4737
4738 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4739
4740         * doc/sdccman.lyx: added more pic16 port documentation
4741         * device/include/pic16/: added header pic18fregs.h
4742
4743 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4744
4745         * doc/sdccman.lyx: added Vangelis' contribution
4746
4747 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4748
4749         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4750         extend to the next CALL or PCALL, not just to the next CALL.
4751
4752 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4753
4754         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4755
4756 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4757
4758         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4759         bug #895752 and a better fix for bug #716790
4760
4761 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4762
4763         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4764
4765 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4766
4767         * doc/sdccman.lyx: minor changes, minor changed
4768
4769 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4770
4771         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4772         which can't handle SDCC_NEWONEBYTEOPS,
4773         (geniCodeMultiply): removed conversion from mult to shift for pic14
4774         and pic16
4775
4776 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4777
4778         * src/hc08/gen.h,
4779         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4780         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4781         thus fixing bug #895406
4782
4783 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4784
4785         * device/lib/_modsint.c,
4786         * device/lib/_modslong.c: sign follows divisor only
4787         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4788         signs or signedness can be ignored
4789         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4790         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4791         added optimization for IFX,
4792         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4793         arguments;
4794         reenabled optimization for IFX, which was removed on 2004-01-11
4795         * src/SDCCast.h: added return type IFX
4796         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4797         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4798         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4799         SDCC_OLDONEBYTEOPS selects the old behaviour
4800         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4801         changed again and commented promotion rule
4802         * src/SDCCval.c (valDiv): promotion no longer necessary
4803         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4804         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4805         rewritten
4806         * support/regression/tests/onebyte.c: added
4807
4808 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4809
4810         * gen.c (genInline): reverted to old code for assemnling inline
4811         code because of bug reported James Chadd
4812
4813 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4814
4815         * ralloc.h: missing declarations from previous patch,
4816         seems that patch for ralloc.h was never applied, fixed
4817
4818 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4819            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4820
4821         * pcode.c,
4822         * pcode.h,
4823         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4824         indirect addressing. Marked FSR0 as deprecated
4825         * gen.c (pointerCode): commented out, not needed now
4826         (pic16_popGet2p): new MOVFF helper function
4827         (genGenPointerGet),
4828         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4829         (shiftRLong): removed duplicate debugging info
4830
4831 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4832
4833         * src/ds390/gen.c (genNearPointerGet),
4834         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4835         optimization with bits, but not bitfields.
4836         * src/ds390/ralloc.c (packRegisters),
4837         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4838
4839 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4840
4841         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4842
4843 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4844
4845         * src/SDCCsymt.h,
4846         * src/SDCCicode.c (operandFromSymbol),
4847         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4848         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4849         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4850         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4851         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4852         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4853         bug #892038
4854         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4855         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4856         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4857         * src/SDCCsymt.c (newSymbol),
4858         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4859         enumerator_list),
4860         * src/SDCCval.h,
4861         * src/SDCCval.c (newiList): fixed bug #885705
4862
4863 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4864
4865         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4866         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4867
4868 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4869
4870         * device/include/c8051f120.h,
4871         * device/include/c8051f300.h,
4872         * device/include/c8051f310.h: added/updated header files for Silicon
4873         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4874         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4875         in new section Submitting patches
4876
4877 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4878
4879         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4880         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4881         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4882         genGenPointerSet),
4883         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4884         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4885         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4886         genGenPointerSet),
4887         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4888         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4889         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4890         genGenPointerSet),
4891         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4892         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4893         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4894         genGenPointerSet): fixed bug #892400
4895         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4896         to eliminate build warnings.
4897         * src/SDCCast.c (processParms),
4898         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4899         fixed bug 751859
4900         * support/valdiag/valdiag.py: added GCC to the list of defines active
4901         when compiling with gcc
4902
4903 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4904
4905         * support/Util/SDCCerr.h,
4906         * support/Util/SDCCerr.c,
4907         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4908         with an incomplete type (fixed bug #883734)
4909         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4910
4911 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4912
4913         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4914
4915 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4916
4917         * src/SDCCast.c (decorateType),
4918         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4919         function pointer implementation
4920         * support/regression/tests/funptrs.c: added tests to verify both forms
4921         of function pointers work correctly. Added tests to verify parameters
4922         are passed in the correct order.
4923
4924 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4925
4926         * device.c (regCompare): registers are sorted by ascending
4927         address and increasing size,
4928         * main.c (_pic16_finaliseOptions): removed the declaration
4929         of compiler macro MCU. Now a macro of the format pic18fxxxx
4930         will be defined from the command line
4931
4932 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4933             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4934
4935         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4936         PCOP_RLCF was overwritten!
4937         * gen.c (genSkip): commented out calls to pic16_emitcode,
4938         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4939         * (genlshTwo),
4940         * (genRRC): added debugging info,
4941         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4942         overwritten while shifting,
4943         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4944         overwritten while shifting,
4945         * (AccLsh),
4946         * (AccRsh),
4947         * (shiftLLeftOrResult),
4948         * (shiftRLeftOrResult),
4949         * (shiftRLong),
4950         * (shiftLLong): Implemented with pic16_emitpcode
4951         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4952         * (genLeftShift): Fixed bug, operand for shift by variable always
4953         was "and"ed with 0x0f,
4954         * (genLeftShiftLiteral),
4955         * (genrshTwo),
4956         * (genRightShiftLiteral): added debugging info,
4957         * (genrshFour): added comment,
4958         * (genRightShift): determined signedness from operand "left"
4959         instead of "result"
4960
4961 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4962
4963         * src/SDCCicode.c (geniCodeParms),
4964         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4965         function pointers, fixed function pointer bugs #861242 and #861896
4966
4967 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4968
4969         * device/include/c8051f000.h,
4970         * device/include/c8051f120.h,
4971         * device/include/c8051f300.h: added header files for Silicon
4972         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4973
4974 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4975
4976         * src/SDCCast.c (processParams): added new type flow and restructured
4977         (gatherAutoInit): added new type flow
4978         (addCast): cosmetic changes
4979         (getLeftResultType): added new type flow for array indices, patch
4980         provided by Stas, see FR #877103
4981         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4982         array index patch by Stas
4983         * src/SDCCast.h: added prototype getResultTypeFromType()
4984         * src/SDCCval.h,
4985         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4986         * src/pic/glue.c (pic14emitStaticSeg),
4987         * src/pic16/glue.c (pic16emitStaticSeg),
4988         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4989         for initialization of symbols
4990         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4991         * support/Util/SDCCerr.h:
4992         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4993         * .version: bumped version number to 2.3.8
4994         * device/include/Makefile.in (install),
4995         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4996         avoid warnings
4997
4998 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4999
5000         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5001         Slade Rich fixed an optimization bug
5002         * src/pic/pcodepeep.c,
5003         * src/pic/pcoderegs.c
5004         * doc/Makefile (install): added test for directory
5005
5006 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5007
5008         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5009         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5010         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5011         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5012         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5013         * as/mcs51/asexpr.c (term),
5014         * as/hc08/asexpr.c (term): fixed bug #887146
5015
5016 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5017
5018         * src/z80/gen.c (genMult): handle single byte result product
5019         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5020         DUMMY_READ_VOLATILE (fixed bug #886367)
5021
5022 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5023
5024         * support/regression/tests/libmullong.c: fixed logic, on little endian
5025         hosts we ended without a mullong_wrapper()
5026
5027 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5028
5029         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5030         virus/worm forged address usage.
5031
5032 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5033
5034         Fixed promotion, it should be done on AST level:
5035         * src/SDCCast.c (addCast): added promotion to int
5036         (decorateType): updated call to upCast()
5037         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5038         usualUnaryConversions()
5039
5040 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5041
5042         * support/regression/tests/literalop.c (mulWrapper): Added a
5043         wrapper to remove integer overflow warnings.
5044
5045         * support/regression/tests/float_trans.c: Made work on host.
5046
5047         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5048         location of sz80.
5049
5050         * support/regression/generate-cases.py (main): Changed from inline
5051         to a main method.
5052
5053         * doc/Makefile (install): Changed to depth first to get rid of
5054         missing directory install warning.
5055
5056         * as/Makefile (install-doc): Made work on Mac.
5057
5058 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5059
5060         * src/SDCCast.c: added an additional type flow in decorateType() of
5061         opposite direction, see feature request #860006; it's enabled at runtime
5062         by setting the environment variable SDCC_NEWTYPEFLOW
5063         * src/SDCCast.h: changed prototype of decorateType()
5064         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5065         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5066         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5067         see feature request #877103
5068         * src/SDCCval.c: updated call of decorateType()
5069         (valBitwise): fixed bug #882876
5070         (valMinus): added promotion
5071         (valLogicAndOr): result is unsigned
5072         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5073         * src/SDCCsymt.c (computeType),
5074         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5075         must not cause an unsigned operation
5076         * src/pic/glue (pic14emitRegularMap),
5077         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5078
5079 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5080
5081         * src/pic/pcode.c (PCodeID): commented out left over debug code
5082
5083 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5084
5085         * support/valdiag/tests/overflow.c: added shift tests
5086         * src/pic/device.c,
5087         * src/pic/gen.c,
5088         * src/pic/gen.h,
5089         * src/pic/glue.c,
5090         * src/pic/main.c,
5091         * src/pic/pcode.c,
5092         * src/pic/pcode.h,
5093         * src/pic/pcodepeep.c,
5094         * src/pic/pcoderegs.c,
5095         * src/pic/ralloc.c,
5096         * src/pic/ralloc.h: applied patch from Slade Rich;
5097         added support for multiple code pages and multiple RAM banks on the
5098         PIC 14 port. The ASM files now no longer simply assume all the
5099         code / RAM are in the same page / bank. This means the linker can
5100         safely allocate code/RAM of separate ASM files to different pages/banks.
5101         * doc/sdccman.lyx: added Slade's tips
5102         * src/mcs51/peeph.def: fixed bug #880768
5103
5104 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5105
5106         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5107         * src/SDCCast.c (decorateType): fixed bug #880197
5108
5109 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5110
5111         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5112         getopt.h.
5113
5114         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5115         strtof is not part of C89 and isn't included with Mac OS X.
5116
5117 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5118
5119         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5120         shiftL2Left2Result): fixed bug #879326
5121         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5122         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5123         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5124         address fetch for clr instruction
5125         * device/lib/hc08/_mulint.c: created optimized assembly version
5126         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5127
5128 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5129
5130         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5131         proposed in FR #877103
5132
5133 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5134
5135         * src/SDCCval.c (cheapestVal): added missing checks
5136         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5137         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5138
5139 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5140
5141         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5142         equal operands
5143
5144 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5145
5146         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5147         loaded with the linker search paths (-L arguments) and the libraries
5148         to be linked with the current source (-l arguments). Changes
5149         currently will affect only the pic16 port.
5150         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5151         include path the port specific paths and port specific libraries,
5152         * gplink command now contains the $3 argument,
5153         * src/pic16/device.h,
5154         * src/pic16/device.c,: structure PIC_device is made public and
5155         renamed to PIC16_device, the same for variable Pics which is renamed
5156         to Pics16. Updated all references to them.
5157         * src/pic16/glue.c (pic16glue): corrected bug with code
5158         initialization which bypassed the variable initializations block.
5159
5160         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5161         COMPILE_FLAGS and added the --nostdinc option
5162
5163 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5164
5165         * device/include/mc68hc908jb8.h: Register defs for another member
5166         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5167
5168 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5169
5170         Documenting changes from previous commits.
5171         * configure.in (version 1.56),
5172         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5173         when generating output files to configure the pic16 library,
5174         but now I've commented it out, since gputils aren't installed in the
5175         SF compile farm, so library won't compile
5176
5177         * device/lib/Makefile.in (version 1.56): initially I've added in
5178         target 'all' the prerequestive 'model-pic16' so it compiled the
5179         pic16 library, but now I've commented it out for the same reasons
5180         above,
5181         * added targets 'model-pic16' and 'objects-pic16' to compile the
5182         library
5183         * added target 'port-specific-objects-pic16' to handle the
5184         generated libraries and copy them into the build/ directory
5185         * added target 'clean-intermediate-pic16' to clean intermediate
5186         files into pic16 directory
5187         * in target 'installdirs' added line to create directory pic16 in
5188         the installation path
5189
5190         * device/include/Makefile.in (version 1.11): in target 'install'
5191         added lines to copy all header files to installation path,
5192         * in target 'installdirs' added line create directory for pic16
5193         headers in the installation path
5194
5195 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5196
5197         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5198          a function call
5199
5200 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5201
5202         * configure,
5203         * device/lib/configure.in,
5204         * device/lib/configure: fixed for autoconf 2.57
5205
5206 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5207
5208         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5209         option so that it actually works. Made it specific to the z80, since
5210         the gbz80 doesn't have these kinds of I/O ports.
5211
5212 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5213
5214         * device/include/z180.h,
5215         * device/lib/_memcpy.c,
5216         * device/lib/_memmove.c,
5217         * device/lib/_mulint.c,
5218         * device/lib/ser_ir.c,
5219         * device/lib/ser_ir_cts_rts.c,
5220         * device/lib/_strcmp.c,
5221         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5222         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5223         portmode; added deprecation warning for bank= and protmode= forms.
5224         Also, guard against buffer overflow.
5225         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5226
5227 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5228
5229         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5230         changed interrupt vector table generation to only emit declared vectors.
5231         * device/include/Makefile.in: added missing backslash
5232         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5233
5234 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5235
5236         Mainly changes to support compilation of the device libraries
5237         * src/pic16/device.c: stack is allocated via symbol and not
5238         via literal number. The symbol is placed in the corresponding
5239         position of the data ram
5240         * (pic16_dump_section): relocatable and absolute uninitialized
5241         data are now emitted in sorted order to reduce section naming,
5242         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5243         weren't marked as being in the access bank,
5244
5245 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5246
5247         Added portion of GNU PIC Library under the directory
5248         device/include/pic16 and device/lib/pic16. These files
5249         contain the declarations of SFRs for the PIC18Fxx2 devices.
5250         The directory is initialized via configure from toplevel.
5251
5252 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5253
5254         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5255         the spilllocations to be compared correctly
5256
5257 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5258
5259         * src/SDCCast.c (decorateType): fixed bug introduced today
5260
5261 2004-01-12  Borut Razem <borut.razem AT siol.net>
5262
5263         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5264         doc/sdccman.lyx: upper case pragmas are deprecated
5265
5266 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5267
5268         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5269         in simpler and even better code
5270
5271 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5272
5273         * src/SDCCicode.c (operandOperation): fixed bug #874819
5274         * src/SDCCast.c (decorateType): fixed
5275         char foo (unsigned long ul) { return ul > 0; }
5276
5277 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5278
5279         * doc/sdccman.lyx: Moved and added some sections, small changes
5280         all over. Telling LaTeX to be less strict with word spacing
5281         to better keep the right margin. Changed some notes about
5282         maintainance of the ports in section 3.2.1 - is it OK like this?
5283
5284 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5285
5286         SDCC source changes:
5287         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5288         convilong): modified to inform the pic16 port that builtin functions
5289         are external
5290
5291         PIC16 PORT specific changes:
5292         * src/pic16/device.c pic16_dump_equates() added,
5293         processor registers declared internally by the port are emitted in
5294         the translation as equates,
5295         * src/pic16/gen.c: inline code is passed unprocessed to the
5296         translation,
5297         * (pic16_popGetLit2): fnuction modified to take second operand as
5298         pCodeOp pointer and not as literal,
5299         * (popRegFromIdx): prefixed with pic16_,
5300         * (pic16_popCombine2): modified to receive already allocated pCode
5301         operands,
5302         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5303         * (genFunction): initializes local stack frame and pushes on stack
5304         all the registers used by this function,
5305         * (genEndFunction): restores all registers from stack and restores
5306         stack frame,
5307         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5308         improvements,
5309         * (pic16glue): changed the program startup sequence,
5310         * added new dbName code 'A' for functions placed in absolute section
5311         * src/pic16/main.c: added function attribute _naked,
5312         * added pragma 'code' to place a fnuction at an absolute address,
5313         * added command line arguments --debug-ralloc and --pcode-verbose,
5314         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5315         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5316         * (pic16_newpCodeOpLit2): modified to take the second operand as
5317         pCodeOp pointer,
5318         * (pic16_printpBlock): modified to emit each function in a separate
5319         section,
5320         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5321         UPPER for immediate operands,
5322         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5323         instruction,
5324         * src/pic16/peeph.def: all peepholes with movff are commented out,
5325         because there is a problem in the pcode peep optimizer,
5326         * src/pic16/ralloc.c: the register allocator can now reuse local
5327         function symbols for another function. This saves register usage.
5328         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5329
5330         Added file src/pic16/NOTES with information about program writing on
5331         the current port version.
5332
5333 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5334
5335         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5336         and peephole 252 (array access)
5337
5338 2004-01-09  Borut Razem <borut.razem AT siol.net>
5339
5340         * src/SDCCmain.c : fixed #872250: -l command line defined library
5341           files are scanned before standard library files
5342
5343 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5344
5345         * src/SDCCast.c (decorateType): fixed bug #874046
5346
5347 2004-01-09  Borut Razem <borut.razem AT siol.net>
5348
5349         * support/scripts/sdcc.nsi: remove previous installation
5350
5351 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5352
5353         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5354         bytes for last interrupt vector (mcs51)
5355         * sdcc.spec: fixed typo
5356
5357 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5358
5359         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5360         gen51Code): more efficient parameter receive for --model-large
5361         ("bug" #845294)
5362
5363 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5364
5365         * src/ds390/main.c,
5366         * src/z80/main.c: added missed needLinkerScript flags (more than
5367         one port structure defined in these file)
5368         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5369         bug #795325
5370
5371 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5372
5373         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5374         * src/port.h: added flag needLinkerScript in port->linker
5375         structure to inform whether to create a .lnk file or not,
5376         * src/avr/main.c,
5377         * src/ds390/main.c,
5378         * src/hc08/main.c,
5379         * src/mcs51/main.c,
5380         * src/pic/main.c,
5381         * src/pic16/main.c,
5382         * src/xa51/main.c,
5383         * src/z80/main.c: changed appropriately to configure
5384         needLinkerScript flag
5385         * src/pic/gen.c,
5386         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5387         * src/pic/glue.c: added variable udata_section_name to
5388         override default uninitialized data segment definition for
5389         devices only with SHAREBANK memory (reported from Erik Epetrich)
5390         * (pic14emitOverlay): modified to emit a commented overlay segment
5391         directive when no overlay data exist
5392         * (picglue): modified to emit uninitialized data segment
5393         according to udata_section_name
5394         * src/pic/main.c (_pic14_parseOptions): added command line
5395         options --udata-section-name=[name] to override default
5396         udata definition name
5397         * modified _linkCmd and _asmCmd to include compiler passed
5398         arguments via -W option
5399         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5400         object file from '.rel' to '.o' in port->linker structure,
5401         changed size of fptr from 2 to 3 in port structure
5402
5403 2004-01-07  Borut Razem <borut.razem AT siol.net>
5404
5405         * support/scripts/sdcc.nsi: update PATH
5406         * support/scripts/sdcc.ico: craeted
5407
5408 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5409
5410         * device/include/Makefile.in: fix install
5411         * doc/Makefile: fix install
5412
5413 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5414
5415         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5416         in bug #860505
5417         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5418         how the function variable allocation summary is displayed; also
5419         include information about variables allocated to the overlay
5420         segment
5421
5422 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5423
5424         * as/mcs51/lkmain.c: Help about -Y option
5425         * as/mcs51/lkarea.c: Fixed gcc warnings
5426
5427 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5428
5429         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5430         fixed warning
5431         * support/valdiag/tests/overflow.c: added
5432         * src/SDCCast.c (decorateType),
5433         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5434         LEFT_OP (left shift)
5435
5436 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5437
5438         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5439         (default behaviour).
5440
5441 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5442
5443         A python script to validate compiler diagnostic messages. It can be
5444         used to verify that sdcc complains about bad c source code and
5445         gives a good location of the error.
5446         * support/valdiag/Makefile,
5447         * support/valdiag/valdiag.py,
5448         * support/valdiag/tests/*
5449
5450 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5451
5452         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5453         * src/SDCCsymt.c (newEnumType),
5454         * src/SDCCsymt.h
5455         * support/Util/SDCCerr.c,
5456         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5457         enum related bugs.
5458         * support/regression/tests/enum.c: added test for enum values that
5459         require at least 2 bytes of storage.
5460
5461 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5462
5463         * src/common.h: added ifndef/define/endif macros
5464         around the header file.
5465         Bug reported from Jesus Calvino-Fraga
5466
5467 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5468
5469         * sdcc.spec: updated
5470         * device/include/Makefile.in: don't install CVS directories
5471         * device/lib/Makefile.in: added removal of CVS directories after install
5472         * doc/Makefile: fixed install, added local_icons
5473         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5474         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5475         * src/ds390/gen.c (genRightShift): fixed bug #870788
5476         * src/SDCCast.c (decorateType): fixed bug #870781
5477
5478 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5479
5480         PIC16 port related changes:
5481         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5482         added variable stackPos,
5483
5484         * gen.c: genCall, assignResultValue: added support for
5485         pushing/retrieving function parameters to/from stack,
5486         genFunction,genEndFunction: setup stack frame for the
5487         generated function,
5488         genAddrOf: will be changed according to bug 863624
5489
5490         * added files genutils.c and genutils.h which contain gen*
5491         debugged and optimised functions extracted from gen.c
5492
5493         * glue.c: added variable 'externs' which holds extern symbols,
5494         pic16emitRegularMap: is modified to properly handle relocatable
5495          symbols under the new scheme,
5496         pic16createInterruptVect: is modified
5497         pic16printPublics: is modified to emit 'global' assembler directives,
5498         added pic16_printExterns to print extern symbols,
5499         pic16glue: initializes stack/frame pointer in the beginning of
5500         the assembly output. Temporary hack, will be corrected later,
5501         because gplink yet does not support stack and SDCC does not
5502         yet support a type of crt0.o object to create the final binary.
5503
5504         * Removed many lines that contain 8051 legacy code.
5505         * The code is finally placed under a 'code' directive.
5506         * Added port specific options.
5507
5508         * _process_pragma: simplified since now we do not need *special*
5509         include file to define SFR registers. But a separate header
5510         will be needed. This will be developed later.
5511         * _pic16_parseOptions: added, parses port specific options:
5512         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5513         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5514         --preplace-udata-with=
5515
5516         * _pic16_setDefaultOptions: modified to initialize section names,
5517         but hack is temporarly out of order since it needs improvement.
5518         * _pic16_genAssemblerPreamble: configuration words are emitted by
5519         their address instead of their name. This part is incomplete and
5520         supports only the 18Fxx2 devices. Other devices will emit an error
5521         during assembly since they do not contain the same set of config
5522         registers
5523         * _pic16_genIVT: is modified,
5524
5525         * pcode.c: added definitions for some hardware registers that are needed
5526         for stack support
5527         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5528         All PCI entries are updated. Now LFSR is supported.
5529         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5530         * added pic16_newpCodeOpLit2 to support instructions with
5531         two literal arguments
5532         * pic16_pCode2str: corrected code that emits assembler instructions
5533         with two literal operands and those that have an access bit modifier
5534         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5535         this fixes a bug which caused some labels to be lost, when an
5536         assembler directive was added, i.e. banksel,
5537         * pic16_FixRegisterBanking: improved logic that causes the insertion
5538         of bank switching,
5539         * InlineFunction: functions that are called once, are not any more
5540         inlined. This can be a port option in the future,
5541
5542         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5543
5544         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5545         hold the corresponding uninitialized symbols,
5546         * pic16_allocProcessorRegister: registers have explicit marked the
5547         accessBank field,
5548         * pic16_allocInternalRegister: registers are explicit marked as
5549         not used,
5550         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5551         processing list, so bit registers were lost,
5552         *
5553
5554         * ralloc.h: added field 'accessBank' and original symbol operand
5555         in register definition,
5556         * removed the field isMapped from register definition,
5557
5558         ** Several functions have been removed from various sources:
5559         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5560         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5561         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5562         pic16_assignRelocatableRegisters
5563
5564         ** others have been introduced:
5565         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5566         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5567
5568 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5569
5570         * support/scripts/inc2h.pl: changed definition of BIT_AT
5571         to emit 'sbit at' instead of 'bit at'. This was a request.
5572
5573         PIC16 port related preliminary changes:
5574         * gen.c: prefixed function popRegFromString with
5575         pic16_ and all references to it corrected
5576         * pcode.c: all pic16_pc_* hardware registers prefixed
5577         with underscore (_),
5578         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5579         * ralloc.c: newReg(): when register is REG_SFR then
5580         set address to rIdx,
5581         pic16_allocProcessorRegister(): marks register wasUsed=0
5582         pic16_writeUsedRegs(): added a call to assign processor
5583         registers via pic16_assignFixedRegisters
5584
5585 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5586
5587         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5588         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5589         variables in unused register banks.  Also the SSEG is placed
5590         wherever there is enough space for it, and IDATA can be anywhere
5591         in internal RAM.  For now compile using -Wl-Y[stack_size].
5592         The mem file is different for this option as well, since it
5593         makes no sense of talking about DSEG lenght.
5594
5595 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5596
5597         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5598         in certain cases, e.g. when ROM assignment, patch provided
5599         from Albert den Haan.
5600
5601 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5602
5603         Many signedness and type propagation fixes:
5604         * src/SDCCicode.c: made geniCodeCast() static
5605         replaced SPEC_ by IS_ (cosmetic)
5606         (operandOperation): fixed div and mod operation
5607         (usualBinaryConversions): added support for promotion of char
5608         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5609         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5610         (geniCodeAdd): an array index will stay unsigned, even if promoted
5611         from char to int
5612         (geniCodeArray): ditto
5613         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5614         * src/SDCCsymt.c (computeType): added more support for char;
5615         promotion of char is selectable by promoteCharToInt, fixed signedness
5616         for all cases
5617         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5618         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5619         * src/SDCCval (val*): replaced signedness calculation by
5620         computeType()
5621         rearranged if-branches (cosmetic)
5622         (valShift): added warning W_SHIFT_CHANGED
5623         (valCompare): fixed problem with different types
5624         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5625         * support/regression/tests/literalop.c: added many cases
5626         * support/regression/tests/ast_constant_folding.c: changed finally to
5627         'unsigned int'
5628         * .version: new year, new version: 2.3.7
5629         * src/SDCCmain.c (main): applied patch #866468
5630         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5631         provided by Scott Bronson
5632         * doc/sdccman.lyx: updated documentation for sdcdb
5633         updated and added chapter tips
5634
5635 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5636
5637         * src/SDCCsymt.h: missing from yesterday's commits
5638
5639 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5640
5641         * src/SDCC.y (struct_or_union_specifier),
5642         * support/Util/SDCCerr.c,
5643         * support/Util/SDCCerr.h: verify that struct & union tags are used
5644         as declared.
5645
5646 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5647
5648         * src/SDCCglobl.h: missing from yesterday's commits
5649
5650 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5651
5652         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5653         sft_attributes, struct_declaration, parameter_declaration,
5654         type_name, start_block, declaration_list),
5655         * src/SDCC.lex (check_type): support redefinition of typedef names
5656
5657 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5658
5659         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5660         aligned xdata arrays. Erik helped me with the if clause.
5661
5662 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5663
5664         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5665         warning
5666
5667 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5668
5669         * src/SDCCast.h,
5670         * src/SDCCast.c (newAst_),
5671         * src/SDCCicode.h,
5672         * src/SDCCicode.c (ast2iCode, newiCode),
5673         * src/SDCCglobl.h,
5674         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5675         expr, statement, expression_statement, selection_statement,
5676         iteration_statement, expr_opt, jump_statement): foundation for tracking
5677         sequence points
5678         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5679         point code too)
5680
5681 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5682
5683         * support/Util/SDCCerr.c,
5684         * src/SDCCast.h,
5685         * src/SDCCast.c (createCase, createDefault, decorateType),
5686         * src/SDCClabel.c (labelUnreach),
5687         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5688         to error messages.
5689         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5690         (with thanks to Stas Sergeev)
5691         * device/include/time.h,
5692         * device/lib/time.c (CheckTime): suppress unreachable code warning
5693
5694 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5695
5696         * src/SDCCast.c (createIvalCharPtr),
5697         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5698         bug #753752)
5699         * support/regression/tests/nullstring.c: tests for these two bugs
5700
5701 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5702
5703         * support/Util/SDCCerr.h,
5704         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5705         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5706         about storage class and 'at' used inside struct or union
5707         * src/SDCCBBlock.c (iCodeFromeBBlock),
5708         * src/SDCCcse.c (ifxOptimize),
5709         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5710         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5711         printIval, emitStaticSeg, emitOverlay),
5712         * src/SDCClabel.c (deleteIfx),
5713         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5714         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5715         gatherAutoInit, processParms),
5716         * support/Util/SDCCerr.h,
5717         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5718         reporting for post-parse errors.
5719
5720 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5723         implicit casts via union; they don't work on big endian systems
5724         (possible fix for bug #861138)
5725
5726 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5727
5728         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5729         * src/mcs51/main.c: fixed the fix for bug #737001
5730
5731 2003-12-15  Borut Razem <borut.razem AT siol.net>
5732
5733         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5734
5735 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5736
5737         * support/makebin/makebin.c: put output in binary mode
5738
5739 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5740
5741         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5742         xdata and data memory on startup. Set the environment variable
5743         SDCC_NOGENRAMCLEAR to disable this.
5744         * src/mcs51/peephole.def,
5745         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5746         (allows non-interrupt and interrupt code to safely compete for a resource
5747         without the non-interrupt code having to disable interrupts)
5748
5749 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5750
5751         * src/SDCCicode.c (geniCodeAdd),
5752         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5753         with valFromType if type might be a pointer and host is big endian).
5754         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5755         types, not just integer types.
5756         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5757         multiply defined with mismatching "at" address.
5758
5759 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5760
5761         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5762         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5763         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5764         with embedded nulls (fixed bug #753752)
5765
5766 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5767
5768         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5769         Apparently this did not see much testing (endless loop)
5770
5771 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5772
5773         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5774
5775 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5776
5777         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5778         gracefully handle NULL memmap pointers
5779
5780 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5781
5782         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5783         instead of deleting the iCode when an operand is volatile
5784         * src/z80/gen.c (genDummyRead),
5785         * src/mcs51/gen.c (genDummyRead),
5786         * src/ds390/gen.c (genDummyRead),
5787         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5788         not just IC_RIGHT
5789         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5790         * src/SDCC.y: fixed bug #850420
5791
5792 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5793
5794         Applied z80 i/o port patch from Peter Townson and fixed some operators
5795         to better handle operands in A register.
5796         * device/include/z180.h
5797         * src/SDCC.y
5798         * src/SDCCglue.c
5799         * src/z80/gen.c
5800         * src/z80/gen.h
5801         * src/z80/main.c
5802         * src/z80/peeph-z80.def
5803         * src/z80/peeph.def
5804         * src/z80/z80.h
5805
5806 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5807
5808         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5809
5810 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5811
5812         * device/lib/hc08/_mullong.c: Removed extra #endif
5813
5814 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5815
5816         * sim/ucsim/hc08.src/inst.cc,
5817         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5818         carries from x to h
5819         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5820         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5821         * device/include/stdarg.h: fixed varargs for hc08
5822         * device/lib/Makefile.in,
5823         * device/lib/hc08/Makefile,
5824         * device/lib/hc08/_mulint.c,
5825         * device/lib/hc08/_mullong.c: fixed some endian problems
5826
5827 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5828
5829         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5830         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5831         * device/lib/_gptrget.c,
5832         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5833
5834 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5835
5836         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5837         * src/SDCCast.c (astErrors): fixed bug #846007
5838         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5839
5840 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5841
5842         * src/SDCCast.c (decorateType): disabled a transformation I added in
5843         revision 1.188 (access to fields of a structure at an absolute address);
5844         it breaks with bitfields, extern declarations, and gcse analysis.
5845         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5846         could be assigned through a pointer, so don't complain.
5847         * src/SDCCast.c (astErrors),
5848         * src/SDCCast.h,
5849         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5850
5851 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5852
5853         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5854         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5855         output of __config directives, since gpasm now supports them
5856         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5857         pre-processor macro, i.e. -DMCU=p18f452
5858         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5859         and modified to handle 'cast' icode similarly to '=' icode
5860         * src/pic16/device.h (typedef struct PIC_device): added field
5861         'extMIface' to indicate that chip has external memory interface
5862         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5863         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5864         18F8720
5865
5866 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5867
5868         * src/SDCC.y (pointer): fixed bug #846006
5869         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5870         * src/SDCCast.c (decorateType): fixed bug #846009
5871         * src/ds390/peeph.def,
5872         * src/ds390/gen.c (genAnd, genOr),
5873         * src/mcs51/peeph.def,
5874         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5875
5876 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5877
5878         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5879         * src/SDCCdflow.c
5880         * src/SDCCcse.c
5881         * src/SDCCcse.h
5882         * src/SDCCBBlock.h
5883         * src/SDCCBBlock.c
5884
5885 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5886
5887         fixed bug #845089
5888         * src/SDCCbitv.h,
5889         * src/SDCCbitv.c: added function to free a bitvector
5890         * src/SDCClrange.h,
5891         * src/SDCClrange.c: added function to recompute the liveranges
5892         * src/avr/ralloc.c,
5893         * src/ds390/ralloc.c,
5894         * src/hc08/ralloc.c,
5895         * src/mcs51/ralloc.c,
5896         * src/pic/ralloc.c,
5897         * src/pic16/ralloc.c,
5898         * src/xa51/ralloc.c,
5899         * src/z80/ralloc.c: recompute the liveranges after register packing
5900
5901 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5902
5903         * src/SDCCloop.c (newInduction): fixed bug #845630
5904
5905 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5906
5907         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5908         inadvertantly left behind from my 2003-11-12 change
5909
5910 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5911
5912         Updated headers I neglected to commit yesterday.
5913         * src/SDCClrange.h,
5914         * src/SDCCicode.h
5915
5916 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5917
5918         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5919         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5920         * src/SDCCopt.c (eBBlockFromiCode),
5921         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5922         the creation of the key hash table from the sequencing so it can be used
5923         earlier (for some GCSE bug fixes still pending)
5924
5925 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5926
5927         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5928         * support/regression/tests/addsub.c: testing genPlus shortcut
5929
5930 2003-11-15  Borut Razem <borut.razem AT siol.net>
5931
5932         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5933
5934 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5937         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5938         ordering is immaterial.
5939         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5940
5941 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5942
5943         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5944         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5945         (SIGSEV) of bug #840381
5946         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5947         unlink new file before rename if new and old filenames are the same)
5948
5949 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5950
5951         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5952         uninitialized variables) for the mcs51. Set environment variable
5953         SDCC_GENRAMCLEAR to test.
5954         xdata initialization slightly shorter
5955
5956 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5957
5958         * src/SDCCsymt.h,
5959         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5960         #838241 & 780691 (basicly the same bug)
5961         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5962         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5963
5964 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5965
5966         * src/SDCCmain.c (linkEdit): "fix" #834252
5967
5968 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5969
5970         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5971         * src/SDCCast.h,
5972         * src/SDCC.y: fixed bug #819403
5973
5974 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5975
5976         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5977         the reentrant attribute.
5978         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5979         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5980         simulation
5981         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5982         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5983         erroneously reduced to a literal.
5984         * src/hc08/ralloc.c (packRegisters, rematStr),
5985         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5986         some cases
5987
5988 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5989
5990         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5991         * doc/sdccman.lyx: changed from 'article' to 'book'
5992         * doc/Makefile: readded test_suite_spec and cdbfileformat
5993
5994 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5995
5996         * device/include/stdlib.h: include malloc.h to comply with ANSI
5997         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5998
5999 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6000
6001         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6002         * doc/clean.mk: also remove *.out files
6003         * doc/sdccman.lyx: some additions, larger top/bottom margins
6004
6005 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6006
6007         * src/SDCC.y: fixed bug #837365
6008         * support/regression/tests/bitopcse.c
6009         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6010         a symbol (might be valop instead)
6011         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6012         * device/lib/clean.mk: added hc08 to the cleaning list
6013
6014 2003-11-04  Borut Razem <borut.razem AT siol.net>
6015
6016         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6017           made 2003-11-04
6018         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6019           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6020           malloc is declared in standard stdlib.h
6021
6022 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6023
6024         * device/lib/hc08/Makefile: need to clean .rel not .o files
6025         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6026
6027 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * src/port.h,
6030         * src/hc08/main.c,
6031         * src/mcs51/main.c,
6032         * src/ds390/main.c,
6033         * src/z80/main.c,
6034         * src/avr/main.c,
6035         * src/pic/main.c,
6036         * src/pic16/main.c,
6037         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6038         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6039         tests (which uses the port's oclsExpense function)
6040         * src/SDCC.y,
6041         * src/SDCCast.c,
6042         * src/SDCCicode.c,
6043         * src/hc08/gen.c,
6044         * src/ds390/gen.c,
6045         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6046
6047 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6048
6049         * src/SDCCcse.c (ifxOptimize),
6050         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6051         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6052         deleting the IFX iCode.
6053         * src/hc08/ralloc.c: reduced unneeded slocs
6054         * src/hc08/gen.c: fixed bug in asmopToBoolean
6055
6056 2003-11-04  Borut Razem <borut.razem AT siol.net>
6057
6058         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6059           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6060           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6061           transferred to configure
6062
6063 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6064
6065         Use headers defined in the C[++] standards:
6066         * sim/ucsim/gui.src/serio.src/fileio.cc
6067         * sim/ucsim/gui.src/serio.src/frontend.cc
6068         * sim/ucsim/gui.src/serio.src/main.cc
6069         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6070         * support/Util/NewAlloc.c
6071         * as/hc08/lklibr.c
6072         * as/mcs51/lklibr.c
6073         * as/z80/aslist.c
6074         * as/z80/assym.c
6075
6076 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6077
6078         * Added MSVC projects for hc08 assembler and linker:
6079         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6080         /as/hc08/link_hc08.dsp
6081
6082 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6083
6084         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6085
6086 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6087
6088         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6089
6090 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6091
6092         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6093
6094 2003-10-31  Borut Razem <borut.razem AT siol.net>
6095
6096         * support/cpp2/cpplib.h,
6097           support/cpp2/cpplib.c,
6098           support/cpp2/cpplex.c,
6099           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6100           to switch _asm block preprocessing on / off. Default is
6101           #pragma preproc_asm +
6102
6103 2003-10-31  Borut Razem <borut.razem AT siol.net>
6104
6105         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6106           when outputting comment blocks (when executed with -C option) and
6107           _asm (SDCPP specific) blocks
6108
6109 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6110
6111         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6112
6113 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6114
6115         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6116
6117 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6118
6119         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6120         * src/SDCCast.c (decorateType): fixed bug #832664
6121
6122 2003-10-31  Borut Razem <borut.razem AT siol.net>
6123
6124         * support\cpp2\cpplex.c: fixed for SDCPP:
6125           comments(when executed with -C option) and _asm blocks
6126           were included even if they where in skipped #if block.
6127           Applied solution from GCC cpp 3.3.2
6128
6129 2003-10-31  Borut Razem <borut.razem AT siol.net>
6130
6131         * src/SDCC.lex: sdcc now understands both formats:
6132           '# <line_number> <file_name>' and
6133           '#line <line_number> <file_name>'
6134         * support/cpp2/cppmain.c: sdcpp now generates the standard
6135           '# <line_number> <file_name>' instead of former
6136           '#line <line_number> <file_name>'
6137
6138 2003-10-30  Borut Razem <borut.razem AT siol.net>
6139
6140         * support/cpp2/cpphash.h,
6141         * support/cpp2/cpplib.h
6142         * support/cpp2/cpplex.c,
6143         * support/cpp2/cppmain.c,
6144         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6145
6146 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6147
6148         Fixed a number of problems revealed by bug #827883.
6149         * src/SDCCloop.c (loopInvariants): Spill location of the
6150         result operand should be recomputed if extracted from
6151         a loop. Also, don't extract assignments of an iTemp
6152         from a literal.
6153         * src/SDCCast.c (isConformingBody): loop reversal should
6154         not occur if the control variable is involved with a
6155         relational operator.
6156
6157 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6158
6159         * .version: bumped to 2.3.6 to reflect the big improvements
6160         made by Erik and Klaus. Thanks!
6161
6162 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6163
6164         Replaced the livrange code.
6165         * src/SDCClrange.c: added new LR code
6166         * src/SDCCloop.c,
6167         * src/SDCCBBlock.h: removed remainig parts from old LR code
6168         * src/ds390/ralloc.c,
6169         * src/ds390/gen.c: minor fixes to make it work with new code
6170
6171 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6172
6173         * as/hc08/asm.h,
6174         * as/hc08/lkrloc.c,
6175         * src/hc08/gen.c,
6176         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6177         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6178         (tweaked fix for bug #818696)
6179
6180 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6181
6182         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6183
6184 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6185
6186         * src/SDCCmain.c,
6187         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6188         * src/mcs51/gen.c (gencjneshort),
6189         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6190         more efficient (per Scott Bronson's suggestion)
6191
6192 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         Extended the semantics of the critical keyword to include
6195         individual statements. See RFE #827755 and #799831
6196         * src/SDCC.y
6197         * src/SDCCicode.c
6198         * src/SDCCopt.c
6199         * src/SDCCast.c
6200         * support/Util/SDCCerr.c
6201         * support/Util/SDCCerr.h
6202         * src/mcs51/gen.c
6203         * src/ds390/gen.c
6204         * src/hc08/gen.c
6205
6206 2003-10-19  Borut Razem <borut.razem AT siol.net>
6207
6208         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6209
6210 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6211
6212         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6213         Fixed bug #818696
6214         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6215         and predecrement operand is displayed
6216
6217 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6218
6219         * src/SDCCval.c (valMinus): fixed bug #826041
6220
6221 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6222
6223         Some hc08 related updates that I missed earlier
6224         * sim/ucsim/stypes.h
6225         * support/regression/ports/hc08/spec.mk
6226
6227 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6228
6229         New target "hc08" for the Motorola 68hc08 family of micros
6230
6231         * configure
6232         * configure.in
6233         * Makefile
6234         * src/hc08/*
6235         * src/SDCCmain.c
6236         * src/port.h
6237         * sim/ucsim/hc08.src/*
6238         * sim/ucsim/configure.in
6239         * src/ucsim/configure
6240         * sim/ucsim/packages_in.mk
6241         * as/hc08/*
6242         * as/Makefile
6243         * device/include/mc68hc908qy.h
6244         * device/lib/hc08/*
6245         * device/lib/Makefile.in
6246         * support/regression/ports/hc08/*
6247         * support/regression/Makefile
6248
6249 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6250
6251         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6252         regression test
6253         * src/ds390/gen.c (genCast): fixed bug #821957
6254
6255 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6256
6257         * device/lib/logf.c: "fixed" overlay bug
6258         * support/regression/ports/host/spec.mk: added m library
6259         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6260         * support/regression/tests/float_trans: added (for Eric)
6261
6262 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6263
6264         * src/mcs51/gen.c (genCpl): fixed bug
6265         http://sf.net/mailarchive/message.php?msg_id=6263915
6266
6267 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6268
6269         * src/SDCCast.c (decorateType): added extended constant folding
6270         * src/SDCCsymt.c (computeType): cleanup
6271         * src/SDCCval.c (valShift): minor optimization
6272         * support/regression/tests/ast_constant_folding.c: added
6273
6274 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         * src/SDCCmain.c: removed some unintended changes
6277
6278 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6279
6280         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6281         * src/z80/gen.c: fixed part of bug #817589
6282         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6283
6284 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6285
6286         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6287         * src/SDCCcflow.c
6288         * src/SDCCcse.c
6289         * src/SDCCdflow.c
6290         * src/SDCClabel.c
6291         * src/SDCClrange.c
6292         * src/SDCCmem.c
6293         * src/SDCCopt.c
6294         * src/SDCCpeeph.c
6295         * src/SDCCset.c
6296         * src/avr/ralloc.c
6297         * src/ds390/ralloc.c
6298         * src/izt/ralloc.c
6299         * src/mcs51/ralloc.c
6300         * src/pic/ralloc.c
6301         * src/pic16/ralloc.c
6302         * src/xa51/ralloc.c
6303         * src/z80/ralloc.c
6304         * src/z80/gen.c: removed unused label "release:"
6305
6306 2003-10-06  Borut Razem <borut.razem AT siol.net>
6307
6308         * src/SDCC.lex: removed definition of unused variables
6309           save_optimize and save_options
6310
6311 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6312
6313         * clean.mk: removed '=' in "-maxdepth=1"
6314         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6315         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6316
6317 2003-10-06  Borut Razem <borut.razem AT siol.net>
6318
6319         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6320           my_unput() replaced by unput()
6321
6322 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6323
6324         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6325         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6326         type-punned pointer will break strict-aliasing rules"
6327         Old LR behaviour is again default; Klaus' LR can be choosen by
6328         defining the environment variable LRKLAUS
6329         * src/SDCCBBlock.h
6330         * src/SDCCloop.c
6331         * src/SDCClrange.c
6332         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6333         * clean.mk: fixed removal of files in bin/CVS/
6334         * device/lib/clean.mk: fixed removal of directories small and large
6335         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6336         * src/SDCCicode.c,
6337         * src/SDCCval.c: removed superflous test for pedantic
6338
6339 2003-10-05  Borut Razem <borut.razem AT siol.net>
6340
6341         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6342           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6343           message "unmatched #pragma SAVE and #pragma RESTORE"
6344
6345 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6346
6347         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6348           assembly, critical functions, atomic, nojtbound)
6349
6350 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6351
6352         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6353         * src/SDCCBBlock.h
6354         * src/SDCCloop.c
6355         * src/SDCCloop.h
6356         * src/SDCClrange.c
6357
6358 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6359
6360         * src/z80/gen.h,
6361         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6362         * src/mcs51/gen.h
6363         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6364         * src/ds390/gen.h
6365         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6366         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6367         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6368
6369 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6370
6371         * src/z80/gen.c (genRet): fixed bug #524753
6372         * src/z80/gen.c (genCast): fixed internal error on cast from
6373         pointer to long
6374         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6375         fix for bug #477835 to the z80
6376         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6377         for tracking iCodes in the peephole optimizer for z80
6378
6379 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6380
6381         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6382         the other part of bug #814548
6383         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6384
6385 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6386
6387         * src/SDCCcse.c: fixed part of bug #814548
6388
6389 2003-09-28  Borut Razem <borut.razem AT siol.net>
6390
6391         * src/asm.c: rewrite of printILine() to use temporary file instead
6392           a pipe
6393         * src/xa51/main.c: commented out declaration of int rewinds
6394
6395 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6396
6397         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6398
6399 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6402         * src/asm.c (printILine): Fixed bug #811015
6403
6404 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6405
6406         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6407         freeing.
6408
6409 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6410
6411         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6412         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6413         to correctly handle general case of AOP_PAIRPTR
6414         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6415
6416 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6417
6418         * src/mcs51/ralloc.c (fillGaps),
6419         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6420         register positioning bug)
6421
6422 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6423
6424         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6425
6426 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6427
6428         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6429         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6430         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6431         (ralloc doesn't intentionally do this now, but perhaps later)
6432         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6433         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6434         register positioning bugs (Fixed bug #762602 and #795325)
6435         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6436         (Fixed bug #808779)
6437         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6438         lines that --i-code-in-asm generates
6439
6440 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6441
6442         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6443         trying to fclose a FILE* that was already closed.
6444
6445 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6446
6447         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6448         of const struct should be treated as if const themselves)
6449
6450 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6451
6452         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6453
6454 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6455
6456         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6457         Unix (/n) and DOS (/r/n) line terminations.
6458
6459 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6460
6461         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6462         bug #613775
6463
6464 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6465
6466         * src/mcs51/gen.c (genFunction, genEndFunction),
6467         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6468         and restore of EA so that stack offsets to parameters are
6469         correct when using both critical and reentrant/stack-auto.
6470         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6471         size (can be triggered in error if sloc is shared between
6472         different sized objects)
6473         * device/include/float.h: fixed macros to explicitly use
6474         unsigned long where needed
6475
6476 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6477
6478         Feature req. 799831: added code to allow nesting of critical functions
6479         * src/mcs51/gen.c (genFunction, genEndFunction)
6480         * src/ds390/gen.c (genFunction, genEndFunction)
6481
6482 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6483
6484         * src/SDCCsymt.c (sclsFromPtr),
6485         * src/SDCCsymt.h,
6486         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6487         support for standard C idiom of memory mapped variables; for
6488         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6489         to xdata int at 0x1234 tempvar = 1.
6490         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6491         provided by Akiya ISHIDA
6492
6493 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6494
6495         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6496         * src/SDCCval.c (constVal): added reduction from int to char
6497         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6498         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6499         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6500         to ignore the sign
6501         * support/regression/tests/shifts.c: fixed
6502
6503 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6504
6505         * src/z80/gen.c (genXor): Fixed bug #805445
6506
6507 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6508
6509         Fixed bug #621531 (const & volatile confusion in the type chain).
6510         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6511         refer to the const or volatile state of the pointer itself.
6512
6513         * src/SDCCast.c
6514         * src/SDCCglue.c
6515         * src/SDCCicode.c
6516         * src/SDCCsymt.c
6517         * src/SDCCval.c
6518         * src/SDCC.y
6519         * src/SDCCsymt.h
6520         * src/pic/gen.c
6521         * src/pic/ralloc.c
6522         * src/pic16/gen.c
6523         * src/pic16/ralloc.c
6524         * support/regression/tests/const.c
6525
6526 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6527
6528         When checking for duplicated modules, use absolute paths
6529         instead of relative paths.  Files changed:
6530
6531         * as/mcs51/lklib.c
6532         * link/z80/lklib.c
6533
6534 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6535
6536         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6537
6538 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6539
6540         * device/include/string.h: added size_t typedef, changed
6541         prototypes to use size_t, eliminated separate reentrant and
6542         non-reentrant declarations, added _memmove declaration
6543         * device/lib/_memcpy.c: changed to use size_t instead of int,
6544         changed /4 to >>2 to avoid division library call
6545         * device/lib/_memcmp.c,
6546         * device/lib/_memset.c,
6547         * device/lib/_strncat.c,
6548         * device/lib/_strncpy.c,
6549         * device/lib/_strncmp.c: changed to use size_t instead of int
6550         * device/lib/_memmove.c: new file (fixed bug #772294)
6551         * device/lib/Makefile.in: added _memmove.c
6552         * device/lib/z80/asm_strings.s: fixed bug #772290
6553         * support/regression/tests/bitfields.c: attempt to fix host assertion
6554         failure on amd64-unknown-linux2.2
6555
6556 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6559         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6560         * as/z80/asmain.c (main): fixed bug #801766
6561
6562 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6563
6564         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6565         compilers
6566
6567 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6568
6569         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6570         reported in bug #800609
6571
6572 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6573
6574         * Top header beautifications in src/pic16 directory:
6575           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6576           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6577           pcoderegs.h, ralloc.c, ralloc.h
6578         * main.c: added top header and GPL license notice
6579         * pcode.c: fixed the if-conditional warning
6580
6581 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6582
6583         * device/lib/_mullong.c: replaced int by short for gcc
6584
6585 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6586
6587         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6588         and JUMPTABLE iCodes properly now (worked by accident before)
6589         * src/mcs51/gen.c (leftRightUseAcc),
6590         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6591         iCode properly now. Use getSize instead of nRegs since a & b
6592         aren't part of the nRegs tally.
6593
6594 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6595
6596         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6597         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6598           before instructions that use the _STATUS register
6599
6600 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6601
6602         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6603         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6604         fetching of the pointer
6605         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6606         copied from genNearPointerSet()
6607         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6608         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6609         If they pop r0/r1 they must be called in the opposite order than aopOp().
6610         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6611         (resp. --stack-auto), prepared for --xstack
6612
6613 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6614
6615         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6616
6617 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6618
6619         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6620         these ports have their own __sdcc_external_start()
6621
6622 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6623
6624         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6625         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6626         type for bits was changed. It resulted in bit variables becoming
6627         global, which is not permitted in PIC 14 assembly output.
6628
6629 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6630
6631         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6632
6633 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6634
6635         Z80 and MCS51 linkers complaint if a public symbol is defined
6636         in more than one library module:
6637
6638         * as/mcs51/lklib.c
6639         * link/z80/lklib.c
6640         * as/mcs51/Makefile.in
6641
6642 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6643
6644         A few small changes that speed up the peephole optimizer.
6645
6646         * src/SDCCpeeph.c
6647
6648 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6649
6650         Try to make the peephole optimizer smarter by maintaining
6651         an association between the assembly source code and the
6652         iCodes that originated them. Put this information to use
6653         with a new peephole rule condition "notVolatile" so that
6654         the rules can be aggressive yet still safe.
6655
6656         * src/SDCCpeeph.c
6657         * src/SDCCpeeph.h
6658         * src/mcs51/gen.c
6659         * src/mcs51/peeph.def
6660
6661 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6662
6663         Fixed bug #741761
6664
6665         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6666         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6667         if the left or right operand symbols have the accuse flag set.
6668
6669 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6670
6671         Changed the type of the result of the ! (NOT) operator to char;
6672         previously it returned the same type as the source. This allows
6673         us to eliminate all the genFloatNot functions (all of its target
6674         implementations were very buggy) since !float can use the same
6675         code as !long now.
6676
6677         * src/SDCCicode.c (ast2iCode): ! returns char
6678         * src/mcs51/gen.c (genNot, genNotFloat),
6679         * src/ds390/gen.c (genNot, genNotFloat),
6680         * src/z80/gen.c (genNot, genNotFloat),
6681         * src/pic/gen.c (genNot, genNotFloat),
6682         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6683
6684 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6685
6686         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6687         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6688            during interrupts. Ensure WSAVE is located at a shared bank address.
6689         2. Fixed page selection in some places
6690         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6691            the registers name strings.
6692         4. Fixed "signed / unsigned compare" compiler warnings.
6693         5. The PIC port manages its own allocation of the general purpose
6694            registers, but makes no attempt to reuse them. As a result when
6695            compiling it soon runs out of general purpose registers. Some
6696            additional code was added to the files pcode.c and device.c to walk
6697            through the function call tree and rename the registers so that they
6698            get reused.
6699
6700         * src/pic/device.c
6701         * src/pic/gen.c
6702         * src/pic/glue.c
6703         * src/pic/pcode.c
6704         * src/pic/pcode.h
6705         * src/pic/ralloc.c
6706         * src/pic/ralloc.h
6707         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6708         genPlus() & genMinus() when the result is the same as left or right
6709
6710 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6711
6712         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6713
6714 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6715
6716         Made bitfield a distinct type from bit so that bitfields
6717         convert as per ANSI C and bits retain their traditional
6718         boolean style behaviour. Implemented bitfield support in
6719         the z80 port.
6720
6721         * src/SDCCsymt.h,
6722         * src/SDCCsymt.c,
6723         * src/SDCCast.c,
6724         * src/cdbFile.c,
6725         * src/mcs51/gen.c,
6726         * src/ds390/gen.c: bit v bitfield split
6727         * src/z80/gen.c: New support for bitfields
6728         * support/regression/tests/bitfields.c: reenabled z80,
6729         added more tests
6730
6731 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6732
6733         Rules 246.x, 247.x relate to bitfields, the others speed up
6734         access to xdata mapped I/O devices.
6735
6736         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6737
6738 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6739
6740         Cleaned up genPackBits and genUnpackBits and added two helper
6741         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6742         for literal assignments in genPackBits (thanks to Frieder for
6743         reminding me).
6744
6745         * src/mcs51/gen.c
6746         * src/ds390/gen.c
6747
6748 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6749
6750         Fixed bug #748310 (pointer to function type mishandled when the
6751         function name is omitted). Also fixed a SIGSEGV when a function
6752         attribute (reentrant, etc) is used on a non-function or on a
6753         function but misplaced before the parameter list.
6754
6755         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6756         bug #748310
6757         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6758         * support/Util/SDCCerr.h,
6759         * support/Util/SDCCerr.c: Added func attr misuse error msg
6760
6761 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6762
6763         Fixed bug #787649 by anonymous
6764         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6765         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6766
6767 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         Fixed numerous bitfield problems.
6770
6771         * src/SDCC.y: More bitfield related error checking
6772         * src/SDCCsymt.h,
6773         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6774         * support/Util/SDCCerr.h,
6775         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6776         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6777         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6778         * support/regression/tests/bitfields.c: tests added
6779
6780 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6781
6782         Made the constant following the "interrupt" keyword optional. If
6783         omitted, the function will not automatically be given an entry
6784         in the interrupt vector table (similar to #pragma NOIV, but
6785         less syntacticly kludgy). The interrupt number is also now
6786         range checked. Also fixed a bug in the high order bit example
6787         in the manual.
6788
6789         * src/SDCC.y
6790         * src/SDCCmem.c
6791         * src/SDCCglue.c
6792         * src/SDCCsymt.h
6793         * support/Util/SDCCerr.c
6794         * support/Util/SDCCerr.h
6795         * doc/sdccman.lyx
6796
6797 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6798
6799         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6800         * src/SDCCicode.c (operandOperation): rewritten some ops
6801         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6802         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6803         other type
6804         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6805         be re-activated by defining REDUCE_LITERALS)
6806         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6807         unsigned, but are signed by default
6808         * src/SDCCval.c (constVal): rearranged
6809         * src/SDCCval.c (valMod): preliminary fix
6810         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6811         * support/regression/literalop.c: added, work in progress
6812
6813 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6814
6815         Generate warnings for useless declarations like "char data;"
6816         that don't do what new users expect.
6817
6818         * src/SDCC.y
6819         * support/Util/SDCCerr.h
6820         * support/Util/SDCCerr.c
6821
6822 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6823
6824         * src/SDCCval.c (valMult): fix overflow detection of negative int
6825
6826 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6827
6828         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6829
6830         Changes to support big endian targets:
6831
6832         * src/ports.h
6833         * src/SDCCglue.c
6834         * src/avr/main.c
6835         * src/ds390/main.c
6836         * src/izt/i186.c
6837         * src/mcs51/main.c
6838         * src/pic/main.c
6839         * src/pic16/main.c
6840         * src/xa51/main.c
6841         * src/z80/main.c
6842
6843 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6844
6845         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6846         * device/lib/time.c: fixed warning "integer overflow in expression"
6847
6848 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6849
6850         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6851         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6852         constants are unsigned; added recognition of "u" flag for unsigned
6853         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6854         * src/SDCCval.c (valDiv, valMod): fixed signdness
6855         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6856         signedness of modulo, left and right shift
6857         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6858         * support/Util/SDCCerr.h: added warning W_INT_OVL
6859         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6860         * src/SDCCast.c (ast_print): improved output of constants
6861
6862 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6863
6864         Fixed some warnings when building with MSVC:
6865
6866         * as\mcs51\asdata.c
6867         * as\z80\asdata.c
6868         * as\mcs51\asm.h
6869         * as\z80\asm.h
6870         * link\z80\aslink.h
6871         * link\z80\lkdata.c
6872         * link\z80\lkeval.c
6873         * link\z80\lkgb.c
6874         * link\z80\lkihx.c
6875         * link\z80\lks19.c
6876         * link\z80\lksym.c
6877         * support\cpp2\cpplib.c
6878         * src\ds390\gen.c
6879         * src\mcs51\gen.c
6880
6881 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6882
6883         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6884
6885 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6886
6887         * support\librarian\clean.mk: Do not remove Makefile.
6888         * support\librarian\Makefile: added.
6889
6890 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6891
6892         Added librarian to MSVC build:
6893         * all.dsp
6894         * sdcc.dsw
6895         * support\librarian\librarian.dsp
6896
6897         'configure' not needed for librarian, removed:
6898         * support\librarian\configure
6899         * support\librarian\configure.in
6900         * support\librarian\config_in.h
6901         * support\librarian\Makefile.in
6902
6903         Hopefully these ones built the librarian and the rest of sdcc properly:
6904         * Makefile
6905         * Makefile.common.in
6906
6907         Messed up 'configure', so revert to previous version:
6908         * configure
6909         * configure.in
6910
6911 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6912
6913         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6914         there, while the mantissa of a double is "only" 53 bits wide.
6915
6916 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6917
6918         Adding sdcclib to the build.  MSVC project coming soon.
6919         Files added/changed:
6920
6921         * support\librarian\clean.mk
6922         * support\librarian\configure
6923         * support\librarian\configure.in
6924         * support\librarian\config_in.h
6925         * support\librarian\Makefile.bcc
6926         * support\librarian\Makefile.in
6927         * support\librarian\sdcclib.c
6928         * Makefile.bcc
6929         * Makefile
6930         * Makefile.common.in
6931         * configure
6932         * configure.in
6933
6934 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6935
6936         Linker now complaints if linked modules have conflicting options, for
6937         example, one compiled using --model-large and another one compiled with
6938         --model-small.  The following files were modified:
6939
6940         * as\mcs51\asdata.c
6941         * as\mcs51\aslink.h
6942         * as\mcs51\asm.h
6943         * as\mcs51\asmain.c
6944         * as\mcs51\asout.c
6945         * as\mcs51\i51pst.c
6946         * as\mcs51\lkdata.c
6947         * as\mcs51\lklibr.c
6948         * as\mcs51\lkmain.c
6949         * as\z80\asdata.c
6950         * as\z80\asm.h
6951         * as\z80\asmain.c
6952         * as\z80\asout.c
6953         * as\z80\z80pst.c
6954         * link\z80\aslink.h
6955         * link\z80\lkdata.c
6956         * link\z80\lklibr.c
6957         * link\z80\lkmain.c
6958         * src\SDCCglue.c
6959
6960 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6961
6962         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6963         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6964
6965 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6966
6967         * src/z80/mappings.i: fix _mul[us][int,long] entries
6968
6969 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6970
6971         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6972
6973 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6974
6975         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6976         * support/regression/tests/bitopcse.c: added
6977         fixed warning:
6978         * src/avr/gen.c:
6979         * src/pic/gen.c:
6980         * src/pic16/gen.c:
6981         * src/z80/gen.c:
6982         * src/xa51/gen.c:
6983
6984 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6985
6986         added support for new library format to z80, gbz80 linkers:
6987         *link/z80/aslink.h
6988         *link/z80/lklex.c
6989         *link/z80/lklib.c
6990         *link/z80/lklist.c
6991
6992 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6993
6994         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6995         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6996
6997 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6998
6999         added DUMMY_READ_VOLATILE:
7000         * src/SDCC.y:
7001         * src/avr/gen.c:
7002         * src/xa51/gen.c:
7003         * src/z80/gen.c:
7004         * src/pic/gen.c:
7005         * src/pic16/gen.c:
7006         * src/mcs51/gen.c:
7007         * src/ds390/gen.c:
7008         * src/SDCCcse.c (algebraicOpts): many improvements
7009         * src/SDCCcse.h: removed algebraicOpts()
7010         * src/SDCCicode.c (picDummyRead): added
7011
7012 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7013
7014         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7015         "Insufficient space in data memory".
7016
7017 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7018
7019         * src/mcs51/gen.c: fixed bug #771358
7020         * src/z80/gen.c: fixed bug #759087
7021
7022 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7023
7024         * src/pic16/glue.c: minor cleanup by Vangelis
7025
7026 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7027
7028         * device/include/regc515c.h: fixed #758477
7029         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7030         * device/lib/_gptrput.c: saved a few bytes
7031         * my tab spacing is 8, yours too?)
7032         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7033         * device/lib/serial.c: process RX bytes earlier than TX bytes
7034         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7035
7036 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7037
7038         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7039
7040 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7041
7042     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7043
7044 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7045
7046         * device/lib/Makefile.in: bad fix, reverted to 1.43
7047
7048 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * device/lib/Makefile.in: added missing z80 object files
7051
7052 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7053
7054         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7055         pic16 progress by Vangelis:
7056         * src/SDCCglobl.h:
7057         * src/SDCCmain.c:
7058         * src/pic/Makefile:
7059         * src/pic:
7060         * pic/Makefile:
7061         * pic16/device.c:
7062         * pic16/device.h:
7063         * pic16/gen.c:
7064         * pic16/gen.h:
7065         * pic16/genarith.c:
7066         * pic16/glue.c:
7067         * pic16/main.c:
7068         * pic16/pcode.c:
7069         * pic16/pcode.h:
7070         * pic16/pcodepeep.c:
7071         * pic16/peeph.def:
7072
7073 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7074
7075     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7076
7077 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7078
7079     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7080     added gbz80 build to MSVC project.
7081     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7082     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7083     from 8051 stuff and setup so it links using a .lnk file.
7084
7085 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7086
7087     * support/librarian/sdcclib.c: sdcc librarian.
7088     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7089     with sdcclib.
7090
7091 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7092
7093     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7094
7095 2003-07-02  Borut Razem <borut.razem AT siol.net>
7096
7097         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7098         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7099         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7100         src/xa51/main.c, src/z80/main.c:
7101         virtualization of glue() function: each port has it's own glue function,
7102         which is accessed by do_glue function pointer in PORT.general structure
7103
7104 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7105
7106         * DS800C400 fun, improved ROM interface and tinibios.
7107
7108 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7109
7110         * More support for DS80C400. Now includes beginning of interface to ROM.
7111
7112 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7113
7114         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7115
7116 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7117
7118         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7119
7120 2003-06-19  Borut Razem <borut.razem AT siol.net>
7121
7122         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7123
7124 2003-06-19  Borut Razem <borut.razem AT siol.net>
7125
7126         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7127         fixed Z80 port - crt0.o: cannot open.
7128
7129 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7130
7131         * support/Util/MySystem.c (merge_command): revert bad fix
7132
7133 2003-06-18  Borut Razem <borut.razem AT siol.net>
7134
7135         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7136
7137 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7138
7139         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7140         option --use-stdout sends errors to stdout instead of stderr.
7141
7142 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7143
7144         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7145
7146 2003-06-15  Borut Razem <borut.razem AT siol.net>
7147
7148         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7149         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7150         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7151         fixed width array of pointers replaced with sets;
7152         multiple include and lib paths ared transferred to preprocessor and linker
7153         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7154         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7155         fixed width array of pointers
7156         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7157         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7158         fixupPath(), getPathDifference()
7159         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7160         fixed width array of pointers
7161
7162 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7163
7164         * src/pic16/ralloc.c: fix warnings
7165         * src/pic16/pcode.c: fix warning
7166
7167 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7168
7169          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7170         know all the details, but essentially this set of changes enable
7171         the pic16 port to generate movff instructions and generate assembler
7172         directives,
7173         * src/SDCCmain.c:
7174         * src/pic16/gen.c:
7175         * src/pic16/glue.c:
7176         * src/pic16/pcode.c:
7177         * src/pic16/device.c:
7178         * src/pic16/main.c:
7179         * src/pic16/pcode.h:
7180         * src/pic16/pcoderegs.c:
7181         * src/pic16/ralloc.c:
7182         * src/pic16/ralloc.h:
7183
7184 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7185
7186         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7187         added option --vc, so sdcc errors and warnings are compatible with
7188         Microsoft Visual Studio.
7189
7190 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7191
7192         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7193           device/lib/libfloat.lib: added atof function.
7194
7195 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * doc/sdccman.lyx: updated to Lyx 1.3
7198         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7199         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7200         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7201
7202 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7203
7204         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7205
7206 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7207
7208         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7209           additions to the "related tools/documentation" section
7210
7211 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7212
7213         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7214
7215 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7218         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7219
7220 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7221
7222         * doc/sdccman.lyx: fix double dash and other minor things
7223         * doc/Makefile: fix double dash
7224
7225 2003-05-28  Karl Bongers(patches from Martin Helmling)
7226         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7227           condition and ignore commands.
7228
7229 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7230
7231         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7232           is in parts still quite out of date, I did changes as far as I felt makes sense
7233           for a non-native english speaker.
7234           Please feel free to add to the manual or to correct my changes.
7235         * doc/Makefile: undid touching the date of intermediate tex files.
7236
7237 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7238
7239         * doc/sdccman.lyx: Manual has an index now
7240
7241 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7242
7243         Finalize muluint/mulsint and mululong/mulslong merging:
7244         * device/lib/_mulint.c
7245         * device/lib/_mullong.c
7246         * device/lib/gbz80/mul.s
7247         * device/lib/gbz80/stubs.s
7248         * device/lib/z80/mul.s
7249         * device/lib/z80/stubs.s
7250         * src/SDCCsymt.c (initCSupport)
7251
7252 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7253
7254         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7255         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7256           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7257           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7258           instead of /Zm500.
7259
7260 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7261
7262         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7263           the regression tests I'm not brave enough to enable 245.b, 245.c
7264         * doc/sdccman.lyx: added latex preamble for hyperref package.
7265           Using pdflatex this will give you a hyperlinked pdf file with
7266           bookmarks. (prepend '%' before /usepackage if this breaks something)
7267
7268 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7269
7270          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7271
7272 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7273
7274         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7275
7276 2003-05-21    <johan AT balder>
7277
7278         * src/SDCCglue.c (printIval): fixed bug #739934
7279
7280 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7281
7282         Applied patch from bug 737905 (renamed yylineo to mylineno):
7283         * src/altlex.c
7284         * src/SDCCast.c
7285         * src/SDCglobl.h
7286         * src/SDCC.lex
7287         * src/SDCCsymt.c
7288         * src/SDCCval.c
7289         * src/pic16/pcode.c: Cleaned warnings
7290         * src/pic16/pcodeflow.c: Cleaned warnings
7291         * src/pic16/pcoderegs.c: Cleaned warnings
7292
7293 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7294
7295         * src/pic16/pcode.c: Cleaned warnings
7296         * src/pic16/pcodepeep.c: Cleaned warnings
7297         * src/pic16/ralloc.c: Cleaned warnings
7298
7299 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7300
7301         * doc/sdccman.lyx: fixed bug 739745
7302         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7303
7304 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7305
7306         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7307         it can be defined with CFLAGS when running configure
7308         * src/SDCCmain.c: fixed compiling + linking with object files
7309
7310 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7311
7312         * configure.in: configure for pic16 port,
7313             added --disable-pic16-port
7314         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7315         * src/SDCCmain.c: linkOptions is changed to set *,
7316             added if/endif conditional macros to remove options help
7317             messages from optionsTable when a port is not configured, added
7318             support for the PIc16 port in the ports table, when executing
7319             the compiler with no port specified on command line, a default
7320             port is selected with the new macro DEFAULT_PORT which is
7321             defined in port.h, in setDefaultOptions() linkOptions is removed
7322             from initialization assignment, since now it is a set,
7323             parseCmdLine uses setParseWithComma for linkOptions, in
7324             linkEdit() linkOptions are accessed with new function indexSet()
7325             which returns the i'th item of a set variable. See SDCCset.c, in
7326             linkEdit() when calling buildCmdLine(), added linkOptions as
7327             last argument. Now users can pass arguments to gplink via the
7328             -Wl option, main() uses pic16glue() to glue up pic16 programs
7329         * src/SDCCpeeph.c: various changes to support pic16
7330         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7331             return the i'th item of the set
7332         * src/SDCCset.h: added function prototype for indexSet()
7333         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7334         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7335         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7336             added macro DEFAULT_PORT
7337         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7338         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7339             generated
7340         * src/pic16/glue.c: commented out some error producing lines
7341         * src/pic16/main.c: __config directives are commented out to stop
7342             gpasm complaining and test the linkage with gplink, _linkCmd and
7343             _asmCmd changed to be more gplink and gpasm friendly
7344         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7345             produced an error when parsed, peep rule 12 is added to utilize
7346             movff, but it is commented out since the pCode does not support
7347             yet a command with 2 address arguments
7348
7349 2003-05-18    <johan AT balder>
7350
7351         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7352         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7353 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7354
7355         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7356   Added feature to script commands from file.
7357
7358 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7359
7360         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7361         * src/SDCCutil.c: include ctype.h for win32
7362
7363 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7364
7365         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7366
7367 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7368
7369         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7370   Fixed so you can set breakpoints prior to run, run does not stop
7371   on entry now.  Add tbreak.  Other enhancements and fixes for use
7372   with ddd.
7373
7374 2003-05-12  Borut Razem <borut.razem AT siol.net>
7375
7376         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7377
7378 2003-05-11  Borut Razem <borut.razem AT siol.net>
7379
7380         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7381         the path of bin directory, so that PATH is the only env. variable, which has to be set
7382         in case of standard installation.
7383         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7384         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7385         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7386
7387 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7388
7389         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7390         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7391         temp files are in the port dir; clean the gen/test directory when
7392         generating new test.c
7393         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7394         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7395         * support/regression/tests/zeropad.c: added
7396
7397 2003-05-09    <johan AT balder>
7398
7399         * src/SDCCglue.c: fixed bug #597940
7400
7401 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7402
7403         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7404   cache sfr, optimize next,step, fix off by one sourceline,
7405   support ddd list function.
7406         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7407
7408 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7409
7410         * support/regression/HTMLgen.py: added compare_s2f()
7411         * support/regression/Makefile: redo 1.27
7412         * support/regression/generate-cases.py: redo 1.5
7413
7414 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7415
7416         * support/regression/tests/float.c: workaround 33 bit hex constant
7417         * support/regression/tests/simplefloat.c: fix division for host
7418
7419 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7420
7421         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7422         that tame's the PIC's over-aggressive optimizer.
7423
7424 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7425
7426          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7427          support for MSVC.
7428
7429 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7430
7431         Initial support for DS80C400. "Hello world" runs on TINIm400
7432         (with polled I/O).
7433
7434 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7435
7436          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7437          * Some notes on ddd usage added in debugger/README
7438          Martin Helmling adding more features and fixes for ddd GUI debugger.
7439          Code added for nexti, stepi, up, down, and other adjustments.
7440
7441 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7442
7443         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7444         * src/pic/peeph.def Added two rules to optimize carry manipulation
7445         * src/pic/* removed debug printfs
7446
7447 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7448
7449         * debugger/mcs51/cmd.c: added header newalloc.h
7450
7451 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7452
7453         * as/Makefile: new EXEEXT
7454         * as/z80/Makefile: remove trailing slash of BUILDIR
7455         * as/z80/clean.mk: new EXEEXT
7456         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7457         * support/cpp2/Makefile.in: new EXEEXT
7458         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7459
7460 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7463         EXEEXT was introduced to fix all related problems with targets
7464         "clean", "install" and "uninstall"; a couple of further flaws
7465         especially with "clean" have been fixed too
7466         * as/mcs51/Makefile.in
7467         * as/mcs51/clean.mk
7468         * as/z80/Makefile
7469         * Makefile
7470         * clean.mk
7471         * debugger/mcs51/Makefile.in
7472         * debugger/mcs51/clean.mk
7473         * link/z80/Makefile
7474         * link/z80/Makefile.in
7475         * link/z80/clean.mk
7476         * link/Makefile
7477         * packihx/Makefile.in
7478         * packihx/clean.mk
7479         * sim/ucsim/Makefile
7480         * sim/ucsim/clean.mk
7481         * sim/ucsim/avr.src/Makefile.in
7482         * sim/ucsim/avr.src/clean.mk
7483         * sim/ucsim/s51.src/Makefile.in
7484         * sim/ucsim/s51.src/clean.mk
7485         * sim/ucsim/xa.src/Makefile.in
7486         * sim/ucsim/xa.src/clean.mk
7487         * sim/ucsim/z80.src/Makefile.in
7488         * sim/ucsim/z80.src/clean.mk
7489         * sim/ucsim/main_in.mk
7490         * sim/ucsim/packages_in.mk
7491         * sim/ucsim/gui.src/Makefile.in
7492         * sim/ucsim/gui.src/serio.src/Makefile.in
7493         * sim/ucsim/gui.src/serio.src/clean.mk
7494         * src/Makefile.in
7495         * src/clean.mk
7496         * support/cpp2/Makefile.in
7497         * support/cpp2/clean.mk
7498         * support/makebin/Makefile
7499         * support/makebin/clean.mk
7500         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7501         * doc/sdccman.lyx: --program-suffix no longer needed
7502
7503 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7504
7505          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7506          Martin Helmling added support for ddd GUI debugger.
7507          Code added to display assembly, set variables, and other commands
7508          to interface to ddd.
7509
7510 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7511
7512         * as/Makefile: fix target clean
7513         * as/clean.mk: fix target clean
7514         * as/z80/clean.mk: fix target clean
7515
7516 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7517
7518         * Makefile.common.in: added  AT EXEEXT AT
7519         * configure.in: removed all mingw32 stuff
7520         * configure: rebuilt from configure.in
7521         * doc/sdccman.lyx: updated section "installation"
7522         * support/scripts/sdcc_mingw32: adapted to configure
7523         * support/scripts/sdcc_cygwin_mingw32: added
7524
7525 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7526
7527         * src/pic Added object file support for the PIC port
7528         * src/pic Applied patch from Craig Franklin (this started the object file support)
7529         * src/regression Updated the PIC regression tests for object files
7530
7531 2003-04-20  Borut Razem <borut.razem AT siol.net>
7532
7533         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7534           lklex.c: In function `getfid':
7535           lklex.c:203: warning: array subscript has type `char'
7536         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7537           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7538         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7539           stack handling macros
7540
7541 2003-04-19  Borut Razem <borut.razem AT siol.net>
7542
7543         * "handling space characters in file path" task:
7544         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7545         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7546         * support/Util/MySystem.h: make it self-sufficient
7547         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7548           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7549           handling space characters in file path
7550         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7551           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7552         * support/Util/MySystem.c: handling space characters in executable's path
7553
7554 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7555
7556         * as/z80/Makefile: fix permanent rebuild of z80
7557         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7558         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7559
7560 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7561
7562         * src/SDCCopt.c: add special case optimization to replace modulo by
7563           a power of two with a bitwise AND.
7564
7565 2003-04-18    <johan AT balder>
7566
7567         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7568
7569 2003-04-17    <johan AT balder>
7570
7571         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7572         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7573
7574 2003-04-13  Borut Razem <borut.razem AT siol.net>
7575
7576         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7577         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7578           fixed mingw problem in adl_NORMALIZE_PATH
7579
7580 2003-04-12  Borut Razem <borut.razem AT siol.net>
7581
7582         * fixed "#pragma SAVE/RESTORE can not be nested":
7583         * src/SDCC.lex: reworked pragma handling functions
7584         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7585         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7586
7587 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7588
7589         * src/SDCCutil.c (pathEquivalent): defined but not used
7590         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7591         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7592         * configure: rebuilt from configure.in
7593         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7594         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7595         * device/include/Makefile.in: replace sdcc_datadir
7596         * device/lib/Makefile.in: replace sdcc_datadir
7597         * Makefile.common.in: add LDFLAGS from configure
7598         * packihx/Makefile.in: use LDFLAGS
7599         * src/Makefile.in: use LDFLAGS
7600         * support/cpp2/Makefile.in: add LDFLAGS from configure
7601         * support/makebin/Makefile: use LDFLAGS
7602         * .version: bumped version number to 2.3.5
7603
7604 2003-04-12  Borut Razem <borut.razem AT siol.net>
7605
7606         * completed "different paths" task:
7607         * src/SDCCmacro.c: fixed bug in handling quotes
7608         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7609         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7610
7611 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7612
7613         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7614
7615 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7616
7617         * ds390/gen.c ds390/peeph.def: fix bug 706781
7618
7619 2003-04-11  Borut Razem <borut.razem AT siol.net>
7620
7621         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7622
7623 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7624
7625         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7626         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7627          set - this bit used to not be set...).
7628         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7629           bad code in PIC Port
7630         * src/regression/and2.c added to test bug 609268
7631         * src/regression/Makefile added and2.c to regression test
7632
7633
7634 2003-04-08    <johan AT CP255758-A>
7635
7636         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7637         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7638         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7639
7640 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7643         fix bug #487815
7644         * support/cpp2/Makefile.in: fix bug #487815
7645         * configure: rebuilt from configure.in
7646         * Makefile.common.in: docdir changed, new path suffixes
7647         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7648         * sdcc_vc_in.h: reflect changes from sdccconf.h
7649         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7650         * src/SDCCutil.h: remove BINDIR hack
7651         * doc/sdccman.lyx: update new path hierarchy
7652
7653 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7654
7655         * src/SDCCpeeph.c: added okToRemoveSLOC test
7656
7657 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7658
7659         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7660
7661 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7662
7663         * src/SDCCpeeph.c: added labelIsReturnOnly test
7664         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7665
7666 2003-04-05    <johan AT balder>
7667
7668         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7669         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7670         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7671         * src/SDCCast.c: fixed a warning
7672         * src/SDCCast.h: fixed a warning
7673         * src/SDCCicode.c (operandFromAst): fixed a warning
7674
7675 2003-04-04    <johan AT balder>
7676
7677         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7678         * src/SDCCast.c (decorateType): fixed bug #715076
7679         * src/SDCC.y: fixed bug #702907
7680
7681 2003-04-03    <johan AT balder>
7682
7683         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7684         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7685         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7686         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7687         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7688
7689 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7690
7691         * _decdptr.c: fix return values
7692         * _gptrget.c: fix return values
7693         * _gptrgetc.c: fix return values
7694         * _gptrput.c: fix return values
7695         * _mulint.c: fix return values
7696         * as/z80/Makefile: fix 'make -j' problem
7697
7698 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7701         * configure.in: big cleanup, updated to autoconf 2.5x
7702         * configure: rebuilt from configure.in
7703         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7704         * sdcc_vc_in.h: reflect changes from sdccconf.h
7705         * doc/Makefile: fixed a flaw in "make install"
7706
7707 2003-04-02    <johan AT balder>
7708
7709         * src/ds390/gen.c (genCmp): no comments
7710         * src/mcs51/gen.c (genCmp): no comments
7711         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7712         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7713
7714 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7715
7716         * support/regression/generate-cases.py: place generated file in given sub directory
7717         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7718         * support/regression/Makefile: improvements for 'make -j';
7719         side effect: it's simpler and faster now
7720
7721 2003-03-31  Borut Razem <borut.razem AT siol.net>
7722
7723         * src/z80/main.c: link-{port} and as-{port} defined without path
7724         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7725
7726 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7727
7728         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7729
7730 2003-03-30  Borut Razem <borut.razem AT siol.net>
7731
7732         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7733           changed type of list parameter to set
7734         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7735         * src/port.h: changed type of do_assemble() parameter to set
7736         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7737           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7738           definition of "cppoutfilename" macro with NULL value in preProcess()
7739         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7740         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7741         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7742           replaced with set *binPathSet
7743         * shash_add() deallocates the item, if allready exsists, before adding the new one
7744         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7745
7746 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7747
7748         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7749           a nested for loop bug in the PIC port
7750         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7751           for loops
7752
7753 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7754
7755         * support/Util/dbuf.h: remove C++ stuff to make it portable
7756
7757 2003-03-28  Borut Razem <borut.razem AT siol.net>
7758
7759         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7760           literal strings in stringLiteral()
7761         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7762         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7763           to the project
7764
7765 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7766
7767         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7768
7769 2003-03-26    <johan AT balder>
7770
7771         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7772         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7773         * src/SDCCast.c (decorateType): fixed " -v < 3"
7774
7775 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7776
7777         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7778         Added Lenny Story's debug infrastructure changes:
7779         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7780         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7781         * src/cdbFile.c: added
7782         * src/SDCCdebug.c: added
7783         * src/SDCCdebug.h: added
7784         * src/SDCCast.c (createFunction)
7785         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7786         * src/SDCCmain.c (parseCmdLine, main)
7787         * src/SDCCmem.c (redoStackOffsets)
7788         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7789         * src/SDCCsymt.h
7790         * src/common.h
7791         * src/avr/gen.c (genAVRCode)
7792         * src/ds390/gen.c (gen390Code)
7793         * src/mcs51/gen.c (gen51Code)
7794         * src/pic/gen.c (genpic14Code)
7795         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7796         * src/xa51/gen.c (genXA51Code)
7797         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7798
7799 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7800
7801         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7802         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7803
7804 2003-03-22    <johan AT balder>
7805
7806         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7807
7808 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7809
7810         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7811         * doc/cdbfileformat.lyx: added, written by Lenny Story
7812         * doc/Makefile: added cdbfileformat.lyx
7813         * doc/clean.mk: added cdbfileformat.lyx
7814
7815 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7816
7817         * src/mcs51/peeph.def: fix bug #705773
7818
7819 2003-03-20    <johan AT balder>
7820
7821         An sfr/sbit can have an "at #" AND an initializer
7822         * src/SDCCsymt.c (checkSClass):
7823         * src/SDCCmem.c (allocGlobal):
7824         * src/SDCCmem.c (allocLocal):
7825         * src/SDCCast.c (createBlock):
7826
7827 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7828
7829         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7830
7831 2003-03-16    <johan AT balder>
7832
7833         Undid the hackup of const and volatile, the problem is much bigger
7834         * src/SDCC.y:1.65
7835         * src/SDCCast.c:1.171
7836         * src/SDCCglue.c:1.138
7837         * src/SDCCicode.c:1.146
7838         * src/SDCCsymt.c:1.150
7839         * src/SDCCval.c:1.65
7840
7841 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7842
7843         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7844         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7845
7846 2003-03-13    <johan AT balder>
7847
7848         Hackup const and volatile modifiers in type chains a bit:
7849         * src/SDCC.y:1.63
7850         * src/SDCCast.c:1.169
7851         * src/SDCCglue.c:1.136
7852         * src/SDCCicode.c:1.143
7853         * src/SDCCsymt.c1.146
7854         * src/SDCCsymt.h1.59
7855         * src/SDCCval.c:1.63
7856
7857 2003-03-12    <johan AT balder>
7858
7859         * src/SDCCBBlock.h: more LRH debugging junk
7860         * src/SDCCcflow.h: more LRH debugging junk
7861         * src/SDCCloop.c: more LRH debugging junk
7862         * src/SDCC.y (struct_declaration): fixed bug #697590
7863         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7864         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7865         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7866
7867 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7868         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7869         test function names must now match exactly).
7870         * src/SDCCcse.c: added special case in findCheaperOp to allow
7871         extending a short integer. Makes less awful code for bug 700121 test case.
7872
7873 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7874
7875         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7876         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7877
7878 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7879
7880         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7881         actually called (operandsNotEqual() was called for all
7882         operandsNotEqualX tests).
7883
7884 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7885
7886         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7887         with shorter literals. Fixes bug 700121.
7888
7889 2003-03-11    <johan AT balder>
7890
7891         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7892
7893 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7894
7895         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7896         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7897
7898 2003-03-10  Borut Razem <borut.razem AT siol.net>
7899
7900         * src/SDCCmain.c: pipe preprocessor's output
7901         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7902         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7903         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7904         which closes all pipes in pipeSet set
7905         * src/SDCCset.c: free deleted item in function deleteSetItem()
7906         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7907         moved from z80 to src subproject
7908         * .version: increased version number to 2.3.4
7909
7910 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7911
7912         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7913         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7914         * support/regression/ports/xa51/spec.mk: fix typo
7915
7916 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7917
7918         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7919
7920 2003-03-09  Borut Razem <borut.razem AT siol.net>
7921
7922         * src/SDCCmain.c: pipe preprocessor's output
7923         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7924         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7925         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7926         which closes all pipes in pipeSet set
7927         * src/SDCCset.c: free deleted item in function deleteSetItem()
7928         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7929         moved from z80 to src subproject
7930
7931 2003-03-09  Borut Razem <borut.razem AT siol.net>
7932
7933         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7934         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7935         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7936         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7937         * src/SDCCglobl.h: unification of WIN32 native definitions
7938
7939 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7940
7941         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7942
7943 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7944
7945         * src/configure.in:   check for endianess (even while cross-compiling)
7946         * src/configure:      check for endianess (even while cross-compiling)
7947         * src/configure_in.h: check for endianess (even while cross-compiling)
7948         * src/avr/gen.c:        remove old endianess stuff
7949         * src/mcs51/gen.c:      remove old endianess stuff
7950         * src/ds390/gen.c:      remove old endianess stuff
7951         * src/pic/gen.c:        remove old endianess stuff
7952         * src/pic/genarith.c:   remove old endianess stuff
7953         * src/pic/glue.c:       fix endianess check
7954         * src/pic16/gen.c:      remove old endianess stuff
7955         * src/pic16/genarith.c: remove old endianess stuff
7956         * src/pic16/glue.c:     fix endianess check
7957         * src/xa51/gen.c:       remove old endianess stuff
7958         * src/z80/gen.c:        fix endianess check
7959         * src/SDCCglue.c:       fix endianess check
7960         * src/ds390/peeph.def: fix bug 700036
7961
7962 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7963
7964         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7965         * src/configure: find appropriate data-types on host for SDCC's int and long
7966         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7967         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7968         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7969
7970 2003-03-07    <johan AT balder>
7971
7972         Just a big NOOP:
7973                 some minor cleanups before the big shot
7974                 OP_DEFS and OP_USES now use Kevin's protection
7975                 new option --nolabelopt
7976
7977         * src/SDCCBBlock.c:
7978         * src/SDCCast.c,:
7979         * src/SDCCcflow.c:
7980         * src/SDCCcse.c:
7981         * src/SDCCicode.c:
7982         * src/SDCCicode.h:
7983         * src/SDCClabel.c:
7984         * src/SDCCloop.c:
7985         * src/SDCCmain.c:
7986         * src/ds390/ralloc.c:
7987         * src/mcs51/ralloc.c:
7988         * src/pic/ralloc.c:
7989         * src/xa51/ralloc.c:
7990         * src/z80/ralloc.c:
7991
7992 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7993
7994         * src/pic/pcode.c (get_op): fix 64 bit warnings
7995         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7996         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7997         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7998         * support/regression/tests/malloc.c: fix 64 bit warnings
7999
8000 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8001
8002         * src/mcs51/gen.c (genMinus): fixed bug 696436
8003
8004 2003-03-02  Borut Razem <borut.razem AT siol.net>
8005
8006         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8007
8008 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8009
8010         * configure.in: test for mkstemp
8011         * sdccconf_in.h: add HAVE_MKSTEMP
8012
8013 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8014
8015         * device/include/ctype.h: removed warning while using --stack-auto
8016         * device/include/malloc.h: removed warning while using --stack-auto
8017         * device/include/string.h: removed warning while using --stack-auto
8018
8019 2003-02-23  Borut Razem <borut.razem AT siol.net>
8020
8021         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8022         because NDEBUG is defined (see man assert)
8023         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8024
8025 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8026
8027         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8028         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8029
8030 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8031
8032         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8033         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8034
8035 2003-02-18    <johan AT balder>
8036
8037         * as/mcs51/asmain.c (asmbl): module can start with a digit
8038         * as/z80/asmain.c (asmbl): module can start with a digit
8039
8040 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8041
8042         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8043         * src/asm.c: fix pipe() for Mingw32
8044
8045 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8048         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8049         make -V work again; --c1mode reads now from stdin
8050         * doc/sdccman.lyx: added --c1mode
8051         * support/Util/SDCCerr.c: new messages for c1 mode
8052         * support/Util/SDCCerr.h: new messages for c1 mode
8053         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8054
8055 2003-02-15    <johan AT balder>
8056
8057         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8058
8059 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8060
8061         * doc/sdccman.lyx: Environment variables, -o and other minor things
8062
8063 2003-02-14    <johan AT balder>
8064
8065         * src/xa51/main.c: before anyone really tries to use it :)
8066
8067         * Install doc's in share/sdcc/doc
8068         * removed some obsolete files
8069         * Do a proper make distclean and uninstall
8070         M Makefile.common.in
8071         R sdccbuild.sh
8072         M as/Makefile
8073         M device/include/Makefile.in
8074         M device/lib/Makefile.in
8075         M doc/sdccman.lyx
8076         M link/Makefile
8077         M sim/ucsim/doc/Makefile.in
8078         M src/clean.mk
8079         R src/avr/peeph.rul
8080         R src/xa51/peeph.rul
8081         M support/cpp2/Makefile.in
8082         M support/makebin/Makefile
8083
8084
8085 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8086
8087         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8088
8089 2003-02-10  Borut Razem <borut.razem AT siol.net>
8090
8091         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8092         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8093         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8094         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8095         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8096         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8097         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8098         src/z80/Makefile.bcc: Borland Makefile cleanup
8099         * as/z80/Makefile.bcc: Added Borland Makefile
8100         * support/cpp2/borland.h: Removed
8101
8102 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8103
8104         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8105         * src/SDCC.lex: new pragma NOIV
8106         * src/SDCCglobl.h: new pragma NOIV
8107         * src/SDCCmem.c: new pragma NOIV
8108
8109 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8110
8111         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8112
8113 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8114
8115         * src/SDCCmain.c: signal handling is switched off by --debug
8116         * doc/Makefile: small fix for install; use clean.mk again
8117         * doc/clean.mk: clean *.pdf and *.html too
8118
8119 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8120
8121         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8122         * device/lib/printfl.c: fix a ds390 bug by making it portable
8123         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8124         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8125         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8126         * debugger/mcs51/cmd.c: converted multi-line string literals
8127         * sim/ucsim/globals.cc: converted multi-line string literals
8128         * src/SDCCmain.c: introduced signal handler to remove temp files
8129         * doc/Makefile: small tweaks, implement clean
8130         * doc: removed generated files
8131
8132 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8133
8134         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8135         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8136         Address Record is not correctly generated for DS390."
8137
8138 2003-02-02  Borut Razem <borut.razem AT siol.net>
8139
8140         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8141         * as/mcs51/asm.h: fixed compilation with Borland C
8142         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8143         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8144         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8145         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8146         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8147         src/z80/Makefile.bcc: delete $(LIB) only if exist
8148         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8149
8150 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8151
8152         * device/include/malloc.h: introduced NULL
8153         * device/include/string.h: introduced NULL
8154         * device/include/stdlib.h: introduced NULL
8155         * device/lib/_memcpy.c: removed NULL
8156         * device/lib/_strcat.c: removed NULL
8157         * device/lib/_strchr.c: removed NULL
8158         * device/lib/_strcmp.c: removed NULL
8159         * device/lib/_strcpy.c: removed NULL
8160         * device/lib/_strcspn.c: removed NULL
8161         * device/lib/_strlen.c: removed NULL
8162         * device/lib/_strncat.c: removed NULL
8163         * device/lib/_strncmp.c: removed NULL
8164         * device/lib/_strncpy.c: removed NULL
8165         * device/lib/_strpbrk.c: removed NULL
8166         * device/lib/_strrchr.c: removed NULL
8167         * device/lib/_strspn.c: removed NULL
8168         * device/lib/_strstr.c: removed NULL
8169         * device/lib/_strtok.c: removed NULL
8170         * device/lib/malloc.c: removed NULL, include own header
8171
8172 2003-02-02    <johan AT balder>
8173
8174         * 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
8175         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8176         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8177         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8178         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8179         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8180
8181 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8182
8183         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8184         area 'DATA'"
8185
8186 2003-02-01    <johan AT balder>
8187
8188         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8189
8190 2003-01-31    <johan AT CP255758-A>
8191
8192         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8193
8194 2003-01-30    <johan AT balder>
8195
8196         * src/SDCCBBlock.c: automatic bug detection
8197         * src/SDCCicode.c: automatic bug detection
8198
8199 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8200
8201         * src/SDCCglobl.h:   now --xram-size 0 works
8202         * src/SDCCmain.c:    now --xram-size 0 works
8203
8204 2003-01-29    <johan AT balder>
8205
8206         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8207
8208 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8209
8210         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8211         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8212         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8213         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8214         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8215         * src/SDCCmain.c:    Added options --xram-size and --code-size
8216
8217 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8218
8219         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8220         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8221
8222 2003-01-27    <johan AT balder>
8223
8224         * src/SDCC.y: fixed bug #613764
8225
8226 2003-01-26    <johan AT balder>
8227
8228         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8229         * src/SDCCsymt.h: fixed bug #673374
8230         * src/SDCCglue.c: fixed bug #661910
8231         * src/SDCCast.c: fixed bug #458099 and 673374
8232
8233 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8234
8235         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8236         * as/mcs51/strcmpi.h: added
8237         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8238         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8239         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8240         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8241         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8242         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8243         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8244         * as/mcs51/Makefile.aslink: new module strcmpi
8245         * as/mcs51/Makefile.asx8051: new module strcmpi
8246         * as/mcs51/Makefil.bcc: new module strcmpi
8247         * as/mcs51/Makefile.in: new module strcmpi
8248         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8249
8250 2003-01-26    <johan AT balder>
8251
8252         * src/SDCCglue.c: reverted back to 1.124
8253         * src/SDCCast.c: reverted back to 1.156
8254         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8255
8256 2003-01-25    <johan AT balder>
8257
8258         * src/SDCCglue.c: A better fix for bug #661910
8259         * src/SDCCast.c: A better fix for bug #661910
8260         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8261
8262 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8263
8264         * src/Makefile.in: remove spawn.o
8265         * src/SDCCmain.c: remove spawn.h
8266         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8267         * src/spawn.c: removed
8268         * src/spawn.h: removed
8269         * support/regression/ports/ds390/spec.mk: link with -r
8270
8271 2003-01-24    <johan AT CP255758-A>
8272
8273         * src/ds390/gen.c (aopOp): fixed bug #667458
8274         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8275         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8276         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8277
8278 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8279
8280         * src/mcs51/peeph.def: better assembler identation by Frieder
8281         * src/mcs51/gen.c: better assembler identation by Frieder
8282
8283 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8284
8285         * as/z80/string.h: removed for gcc 3.2
8286         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8287         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8288
8289 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8290
8291         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8292         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8293         * support/regression/Makefile: separate temp files for ports
8294         * support/regression/generate-cases.py: separate temp files for ports
8295         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8296         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8297
8298 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8299
8300         * moved tinitalk to device/examples/ds390
8301
8302 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8303
8304         * as/mcs51/lkmem.c: rflag is for DS390
8305         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8306         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8307                          (linkEdit): move mem- and map-files the same way as ihx-files
8308         * src/z80/main.c (_setDefaultOptions): removed --generic
8309         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8310         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8311         * src/pic/glue.c (picglue): --c1mode works again
8312         * src/pic16/glue.c (pic16glue): --c1mode works again
8313         * src/asm.c (printCLine): fix #660034
8314
8315 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8318         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8319         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8320         * as/mcs51/lkmem (summary): better fix for sp problem
8321         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8322         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8323         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8324                                               remove --stack-after-data
8325
8326 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8327
8328         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8329         * src/SDCCutil.c (join): ugly bug: missing '\0'
8330         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8331
8332 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8333
8334         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8335         * src/port.h: typo
8336         * src/pic/main.c (_asmCmd): gpasm supports -o
8337         * src/z80/main.c: more general macros
8338         * device/lib/Makefile.in: remove intermediate files
8339
8340 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8341
8342         * .version: Bumped version number to 2.3.3
8343         * src/SDCCBBlock.c: new option -o
8344         * src/SDCCglobl.h: new option -o
8345         * src/SDCCglue.c: new option -o
8346         * src/SDCCmain.c: new option -o
8347         * src/asm.c: new option -o
8348         * src/ds390/main.c: new option -o
8349         * src/pic/glue.c: new option -o
8350         * src/pic/pcode.c: new option -o
8351         * src/pic/ralloc.c: new option -o
8352         * src/pic16/glue.c: new option -o
8353         * src/pic16/pcode.c: new option -o
8354         * src/pic16/ralloc.c: new option -o
8355         * src/z80/main.c: new option -o
8356         * device/lib/Makefile.in: use -o
8357         * support/regression/ports/ds390/spec.mk: use -o
8358         * support/regression/ports/gbz80/spec.mk: use -o
8359         * support/regression/ports/mcs51/spec.mk: use -o
8360         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8361         * support/regression/ports/z80/spec.mk: use -o
8362         * support/regression/ports/ucz80/spec.mk: use -o
8363         * support/regression/ports/xa51/spec.mk: use -o
8364         * support/regression/fwk/lib/timeout.c: fix usage string
8365
8366 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8367         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8368
8369 2003-01-07    <johan AT balder>
8370
8371         * src/SDCCast.c (decorateType): fixed bug #600035
8372
8373 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8374         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8375         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8376         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8377         * src/pic/pcode.c: outcommented unused variable to remove warnings
8378         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8379
8380 2003-01-06    <karl AT turbobit.com>
8381         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8382    regression tests.
8383
8384 2003-01-06    <johan AT balder>
8385
8386         * src/SDCCicode.c: fixed array add
8387
8388 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8389         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8390         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8391
8392 2003-01-04    <johan AT balder>
8393
8394         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8395
8396 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8397         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8398
8399 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8400         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8401         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8402
8403 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8404         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8405
8406 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8407         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8408
8409 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8410         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8411
8412 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8413
8414     * in \sdcc\as\mcs51\ changed these files in order to create an
8415     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8416     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8417     following files to include the previous two files: aslink.dsp,
8418     Makefile.aslink, Makefile.bcc, and Makefile.in.
8419
8420     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8421     .adb instead of .cdb
8422
8423 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8424
8425         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8426         value from option --iram-size.
8427
8428 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8429
8430         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8431         dram[] array.
8432
8433 2002-09-18    <wiml AT hhhh.org>
8434
8435         * SDCClrange.h: exposed setFromRange() and setToRange()
8436         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8437           packRegsForAccUse() (bug 542397)
8438         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8439           multiple times and emitting the fetch operations more than once
8440           added aopGetUsesAcc() function to allow binary operators to
8441           fetch their operands in the correct order; made genMinus() emit
8442           compact code for X = LITERAL - Y
8443
8444 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8445         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8446         sprintf() in line 1267.
8447
8448 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8449         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8450         like ports.
8451
8452 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8453         Changes to aslink (All the changes are marked with 'JCF'):
8454
8455         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8456         summary().
8457
8458         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8459         area BSEG.  Also moves, if possible, the DATA area down into the internal
8460         ram so more space is available.
8461
8462         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8463         sflag.
8464
8465         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8466         not bytes.  Function summary() which creates a memory usage summary
8467         file with extension .mem.  Reports of overlaping stack and small stack
8468         size.  If the space for the stack is less than 16 bytes aslink trows a
8469         warning.
8470
8471         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8472         the 8051.  Option 'y' for memory summary output file.
8473
8474         Changes to sdcc (All the changes are marked with 'JCF'):
8475
8476         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8477
8478         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8479         overlaying area for it (uses RegBankUsed[4]).
8480
8481         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8482         bank zero as used by default.  By default aslink locates the stack
8483         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8484         the creation of the .mem file.  Delegates the allocation of data area
8485         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8486         the begining of the stack area to aslink.
8487
8488         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8489         glue() in SDCCglue.c creates an area for it.
8490
8491 2002-09-03  Borut Razem <borut.razem AT siol.net>
8492         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8493         sdcc/src/pic/glue.c:
8494         introduced atexit() handler for teporay files removal in case of
8495         errors, assertions, ...
8496
8497 2002-08-29  Borut Razem <borut.razem AT siol.net>
8498         * sdcc/support/cpp2/auto-host_vc_in.h:
8499         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8500         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8501         Maybe there is a similar problem with BORLANDC? It should be checked!
8502
8503         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8504         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8505         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8506         was not executed, and the compiler (cl) launched a warning:
8507         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8508
8509 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8510         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8511
8512 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8513         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8514
8515         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8516           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8517           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8518           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8519           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8520           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8521           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8522         - added Release configuration in VS projects
8523         - review of compiler an linker options
8524         - VC .exe files are generated in bin_vc directory, not to interfere
8525           with binaries generated from other projects (cygwin, mingw, bcc ...)
8526
8527         * sdcc/src/yacc.dsp: added
8528
8529         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8530         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8531         and insert the version number definitions from .version
8532
8533         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8534
8535         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8536         added - genarate auto-host.h using auto-host_vc_in.h as template
8537
8538         * sdcc/sdcc_vc.h,
8539         removed from CVS, generated automatically
8540
8541 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8542         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8543
8544 2002-08-11  Borut Razem <borut.razem AT siol.net>
8545         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8546
8547 2002-08-10  Borut Razem <borut.razem AT siol.net>
8548         * src/SDCCmain.c (main):
8549         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8550         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8551         The consequence was that some temporary files were not removed.
8552
8553         * src/SDCCglue.c:
8554         unification of code in functions tempfilename() and tempfile():
8555         function tempnam() is defined in Visual Studio 6.0 and .NET
8556
8557         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
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         - removed compiler command line option /WX: Treats all warnings as errors
8562         - update a list of source files, included into the project
8563
8564         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8565           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8566         changed project type to Generic Project so that can be correcly converted to VS.NET project
8567
8568         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8569
8570         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8571
8572         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8573
8574         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8575         added return 0 statements after assert() to make compiler happy
8576
8577         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8578         added newline in the def file to keep MSC compiler satisfied
8579
8580         * sdcc/src/z80/gen.c:
8581         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8582           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8583         - solved MSC error in function aopDump()
8584
8585         * sdcc_vc.h: define PREFIX as "\\sdcc"
8586
8587 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8588         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8589
8590 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8591         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8592         - Rewrote the register banking algorithm.
8593         - Added pCode live-range analysis to registers (for now, only non-used and
8594         singly-used registers optimized away)
8595
8596         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8597
8598         * 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.
8599
8600 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8601         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8602
8603 2002-04-22  Michael Hope  <michaelh AT vroom>
8604
8605         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8606
8607         * configure.in (DD_COPT): Added include support required for gbdk.
8608
8609         * .version: Bumped version number just to increase it.
8610
8611         * src/SDCCmain.c: Added -nostdinc to the default options.
8612
8613 2002-04-15  Michael Hope  <michaelh AT vroom>
8614
8615         * device/lib/z80/printf.c (sprintf): Added.
8616
8617         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8618
8619         * src/z80/peeph.def: Added transpose redundent load rule.
8620
8621         * src/z80/main.c: Added force callee saves for jaune.
8622
8623         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8624
8625         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8626
8627 2002-03-28  Johan Knol  <johan AT balder>
8628
8629         * src/SDCCval.c: fixed bug #532436
8630
8631 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8632         * /src/port.h:
8633         Added "char *Processor" field to the port structure.
8634
8635         * /src/SDCCmain.c:
8636         Added -p option. Allows port dependent processor to be specified.
8637
8638         * all ports:
8639         Initialized the new field char *Processor field to NULL in all ports
8640
8641         * /src/pic/*:
8642         Compiler generated registers for interrupt context saving
8643         were not getting allocated.
8644
8645 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8646
8647         * /src/SDCCast.c:
8648         Fixed left shift. Will promote the left side of a left shift
8649         if a) left shifting more than size of operand or b) when assigned
8650         to something size > size of left side
8651
8652 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8653         * src/pic/*
8654         tons of changes. Register allocation has been
8655         rewritten. Added customization for the various PICs. Flow
8656         analysis is restructured. ...
8657
8658         * src/pic/device.h:
8659         Added
8660
8661         * src/pic/device.c:
8662         Added. device.c is a PIC port hack to accomodate variations
8663         in PIC devices.
8664
8665 2002-03-13  Michael Hope  <michaelh AT vroom>
8666
8667         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8668
8669 2002-03-04  johanknol  <johanknol AT manik>
8670
8671         * /src/SDCCval.c: fixed
8672
8673         const unsigned char arr[][2] = { { 0, 1 } };
8674         t18.c:1: error: Initializer element is not constant
8675
8676 2002-03-04  bela  <bela AT manik>
8677
8678         * /device/include/mcs51reg.h:
8679         ds89c420 register definition update
8680
8681 2002-03-03    <johan AT FRIJA>
8682
8683         * support/Util/SDCCerr.c: did something, but don't no why anymore
8684
8685         * support/regression/tests/bug-524691.c: made it a little less shy
8686
8687         * src/SDCCast.c (decorateType): fixed bug #524697
8688
8689         * src/SDCCast.c: made some lineno improvements
8690
8691         * src/SDCCval.c (getNelements): changed warning to error
8692
8693         * src/SDCCglue.c (printIvalArray): changed warning to error
8694
8695         * src/SDCCicode.c: fixed a warning for mingw
8696
8697         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8698
8699         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8700
8701 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8702
8703         * src/ds390/peeph.def:
8704         Added some more peephole rules
8705
8706         * src/ds390/gen.c: Various fixes & enhancements
8707
8708         * src/SDCClrange.c, src/SDCClrange.h:
8709         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8710
8711         * src/ds390/ralloc.c:
8712         various fixes & enhancements (ds390) specific
8713
8714         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8715         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8716         from rallocs.
8717
8718         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8719
8720 2002-03-02    <johan AT FRIJA>
8721
8722         * src/SDCCast.c (decorateType): fixed bug #524708
8723
8724         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8725
8726         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8727
8728 2002-03-01  Michael Hope  <michaelh AT vroom>
8729
8730         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8731
8732         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8733
8734 2002-03-01    <johan AT FRIJA>
8735
8736         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8737
8738         * src/SDCCast.c (decorateType): fixed bug #524209
8739
8740         * src/SDCCval.c (valNot): fixed bug #524195
8741
8742 2002-02-26    <johan AT balder>
8743
8744         * src/xa51/gen.c: fixed a warning
8745
8746         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8747
8748         * src/SDCCast.c (decorateType): fixed bug #522534
8749
8750 2002-02-23    <johan AT balder>
8751
8752         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8753
8754 2002-02-22    <johan AT balder>
8755
8756         * src/SDCCast.c: fixed bug #514865
8757
8758         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8759
8760 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8761
8762         * sdcc/src/SDCCloop.c:
8763         Previous fix was not good. basic blocks that have "break" or "return" are
8764         not really partof a loop , but live ranges used in these blocks should
8765         be live thru the entire loop, so set partOfLoop but don't add them to
8766         loop region
8767
8768 2002-02-21    <johan AT FRIJA>
8769
8770         * src/SDCCcse.c: fixed bug #514308
8771
8772 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8773
8774         * src/SDCCloop.c:
8775         Fixed BUG #519583. If a conditional block ended in a return/break
8776         statement inside a loop, it was not being considered part of the loop.
8777
8778         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8779
8780 2002-02-10  Karl Bongers <karl AT turbobit.com>
8781
8782         * debugger/*:
8783         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8784         with lots of comments and notes.
8785
8786         * device/examples/test2.c:
8787         Fix bug, "red" variable not being initialized(compiler complained).
8788
8789         * device/examples/Makefile, examples/test3.c:
8790         Add Makefile in device/examples folder, compiles test3.c
8791         for use as a multiple module SDCDB test case.
8792
8793         * sim/ucsim/cmd.src/cmdset.cc:
8794         Took out debug printfs in ucsim "next" command.
8795
8796         * sim/ucsim/xa.src:
8797         Karl and Johan start ucsim XA support.  Most dissassembly working,
8798         about 75% emulation done(plenty of work remaining).
8799
8800         * sim/ucsim/z80.src:
8801         Add Z80 support to ucsim, add test-ucz80 regression test,
8802         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8803         Notice z80 compiler fails on examples/test3.c/crc code.
8804
8805 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8806
8807         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8808         Added support for --parms-in-bank1
8809
8810         * src/ds390/peeph.def:
8811         added a few more peephole optimzations
8812
8813         * src/ds390/main.c:
8814         1) added __builtin_inp & __builtin_outp used to read in data of given length
8815            from a memory mapped port
8816         2) added __builtin_memcmp
8817         3) added __builtin_swapw swap bytes of a short
8818
8819         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8820         1) handle multiple send & receives from register bank1
8821         2) ralloc can now allocate DPTR1 to some liveRanges
8822
8823         * src/SDCCsymt.c, src/SDCCsymt.h:
8824         changes to handle multiple sends & receives
8825
8826         * src/SDCCptropt.h:
8827         added some pointer arithmetic optimization
8828
8829         * src/SDCCptropt.c:
8830         added some pointer arithmetic optimizations but not stable yet so not
8831         called from anywhere (will get this working shortly)
8832
8833         * src/SDCCopt.c: fixed for multiple sends & receives
8834
8835         * src/SDCCmain.c:
8836         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8837         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8838            set preprocessor defines (depending on options)
8839
8840         * src/SDCCicode.c, src/SDCCicode.h:
8841         changes made to handle multiple sends & receives
8842
8843         * src/SDCCglobl.h:
8844         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8845
8846         * src/SDCCcse.c, src/SDCCcse.h:
8847         added function findbackward def (to be used in upcoming optimization)
8848
8849         * src/SDCCcflow.c, src/SDCCcflow.h:
8850         added function returnAtEnd - to determine if a basic block terminates with
8851         a RETURN iCode
8852
8853         * src/SDCCast.c, src/SDCCast.h:
8854         added option parms-in-bank1
8855
8856         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8857         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8858         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8859         adjusted for --parms-in-bank1 option
8860
8861         * device/include/string.h:
8862         donot redefine "reentrant" keyword
8863
8864         * device/include/ds80c390.h: Added some more SFRs
8865
8866 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8867
8868         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8869
8870 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8871
8872         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8873
8874 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8875
8876         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8877
8878 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8879
8880         * Added --xram-movc option
8881
8882 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8883
8884         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8885
8886 2002-01-11  Johan Knol
8887
8888         * Added math lib of Jesus Calvino-Fraga
8889
8890 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8891
8892         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8893         * support/regression/Makefile: new target test-mcs51-stack-auto
8894         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8895
8896 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8897
8898         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8899
8900 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8901
8902         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8903
8904 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8905
8906         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8907
8908         * src/SDCCglue.h: add definition for printIvalChar()
8909
8910 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8911
8912         * src/SDCCast.c: fix #498138 by Johan
8913
8914         * src/SDCCglue.c: fix #498138 by Johan
8915
8916 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8917
8918         * support/regression/Makefile: fix clean
8919
8920         * support/regression/ports/ds390/support.c: fix transmission of last character
8921
8922 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8923
8924         * /sdcc/src/ds390/gen.c:
8925         a) improved computing address of stack variable
8926         b) took out some #if 0 code
8927         c) improved parmBytes adjustment
8928         d) improved genPlusIncr & genMinusIncr
8929         e) genCmp could generate bad code (when left assigned to DPTR)
8930         f) Fixed bug in hasInc
8931
8932         * /sdcc/src/ds390/ralloc.c:
8933         a) packRegsForSupport could mess up live information (Fixed)
8934         b) packRegsDPTRuse could be incorrect for left & right shift
8935
8936         * /sdcc/src/mcs51/ralloc.c:
8937         packRegsForSupport could mess up the live information (Fixed)
8938
8939         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8940
8941         * /sdcc/src/SDCCast.c:
8942         can reverse a loop even if function call is present as long
8943         as the loop control variable is local & is not passed as parameter
8944
8945 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8946
8947         * /sdcc/ChangeLog: *** empty log message ***
8948
8949         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8950         More builtin function additions for TININative
8951
8952         * /sdcc/src/ds390/ralloc.c:
8953         Had broken the regression testsuite
8954
8955         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8956
8957         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8958         Added funcattr hasStackParms will be set for reentrant functions when there
8959         are paramteres on the stack, this helps in minimizing frame pointer generation
8960         typeFromStr can handle function pointers now
8961
8962         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8963         *** empty log message ***
8964
8965 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8966
8967         * /src/ds390/gen.c, /src/ds390/main.c:
8968         More builtin function additions for TININative
8969
8970         * /src/ds390/ralloc.c:
8971         Had broken the regression testsuite
8972
8973         * /src/SDCCast.c: Fixed a bug in dumptree
8974
8975         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8976         Added funcattr hasStackParms will be set for reentrant functions when there
8977         are paramteres on the stack, this helps in minimizing frame pointer generation
8978         typeFromStr can handle function pointers now
8979
8980         * /doc/builtins.txt, /doc/TININative.txt:
8981         *** empty log message ***
8982
8983
8984 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8985
8986         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8987         ALPHA version for -mTININative
8988
8989         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8990         updated to reflect changes in the port structure
8991
8992         * /src/port.h:
8993         added function do_assemble (similar to do_link) if non-null this function
8994         will be called to do assembly (-mTININative) requires a multi command
8995         assembly
8996         added function genAssemblerEnd will be called to generate assembler Epilogue
8997
8998         * /src/SDCCsymt.c:
8999         added _JavaNative to debug info printing
9000
9001         * /src/SDCCmain.c: added option --tini-libid
9002         added port->do_assemble function (-mTININative) has a multi command assemble
9003
9004         * /src/SDCCglue.c: Disabled "constExpr" check
9005         added port->genAssemblerEnd function
9006
9007         * /src/SDCCglobl.h: Added option --tini-libid value
9008
9009         * /src/SDCCast.h:
9010         tookout optimizeCompare from the header (has no external references)
9011
9012         * /src/SDCCast.c: made one more function "static"
9013
9014 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9015
9016         * src/z80/mappings.i: Added z80asm support.
9017
9018         * src/z80/main.c: Added z80asm support on --asm=z80asm
9019
9020         * src/z80/gen.c: Fixed asm portability issues.
9021
9022         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9023
9024         * src/SDCCglue.c (printExterns): Added global/extern split.
9025
9026 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9027
9028         * support/regression/Makefile: added test for mcs51 model large
9029
9030         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9031
9032         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9033
9034 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9035
9036         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9037
9038 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9039
9040         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9041
9042         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9043
9044 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9045
9046         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9047
9048         * support/regression/tests/simplefloat.c: Port to mcs51.
9049
9050 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9051         * support/regression/tests/bug-485362.c: Added.
9052
9053         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9054
9055         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9056
9057         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9058
9059         * src/z80/gen.c (aopDump): Added a dump function.
9060
9061 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9062         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9063
9064         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9065
9066         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9067
9068         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9069
9070         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9071
9072         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9073
9074         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9075
9076         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9077
9078         * support/regression/ports/ds390/support.c: Use tinibios.
9079
9080         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9081
9082 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9083
9084         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9085         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9086
9087         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9088
9089         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9090
9091 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9092
9093         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9094
9095         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9096         (packRegsForIYUse): Created and optimised.
9097
9098 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9099
9100         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9101 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9102
9103         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9104
9105         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9106
9107         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9108
9109 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9110
9111         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9112
9113         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9114
9115 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9116
9117         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9118
9119         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9120
9121         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9122
9123 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9124
9125         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9126         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9127         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9128
9129         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9130
9131         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9132         (genNotFloat): Added.
9133         (genUminusFloat): Added.
9134
9135         * device/lib/z80/Makefile: Added floating pt stubs.
9136
9137         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9138
9139         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9140
9141         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9142
9143 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9144
9145         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9146
9147         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9148
9149         * sdcc/support/regression/Makefile: Add port ds390.
9150
9151         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9152
9153         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9154
9155         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9156
9157         * sdcc/support/regression/ports/ds390/support.c: Added.
9158
9159         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9160
9161         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9162
9163         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9164
9165 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9166
9167         * device/include/malloc.h: Added z80 and gbz80 support.
9168
9169         * device/lib/gbz80/heap.s: Added.
9170
9171         * device/lib/z80/heap.s: Added.
9172
9173         * device/lib/malloc.c: Added z80 and gbz80 support.
9174
9175         * support/regression/tests/malloc.c (testMalloc): Added.
9176
9177         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9178
9179         * support/regression/tests/bug-478094.c: Added.
9180
9181         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9182
9183 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9184
9185         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9186
9187         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9188
9189         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9190
9191         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9192
9193         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9194
9195 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9196
9197         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9198
9199 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9200
9201         * support/regression/tests/bug-477927.c: Added.
9202
9203         * src/z80/peeph.def: Added minor rules.
9204
9205         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9206
9207         * src/z80/peeph.def: Added jump optimisation modification.
9208
9209 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9210
9211         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9212
9213 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9214
9215         * support/regression/tests/funptrs.c: Added.
9216
9217 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9218
9219         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9220
9221 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9222
9223         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9224
9225         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9226
9227         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9228         (movLeft2ResultLong): Created.
9229
9230         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9231         (joinPushes): Added.  Joins two char pushes into a word push.
9232
9233 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9234
9235         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9236
9237         * support/makebin/Makefile (install): Added creation of dest dir.
9238
9239 2001-10-24 Karl Bongers <karl AT turbobit.com>
9240
9241         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9242
9243 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9244
9245         * src/z80/ralloc.c: Turned off faulty pack for one use.
9246
9247         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9248
9249         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9250
9251 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9252
9253         * support/regression/Makefile: Improved clean
9254
9255         * support/regression/ports/gbz80/spec.mk: Added clean
9256
9257         * support/regression/ports/host/spec.mk: Added clean
9258
9259         * support/regression/ports/z80/spec.mk: Added clean
9260
9261         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9262
9263         * support/regression/ports/mcs51/timeout.c: little improvements
9264
9265 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9266
9267         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9268
9269         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9270
9271         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9272
9273 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9274
9275         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9276
9277         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9278
9279 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9280         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9281
9282         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9283
9284         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9285
9286         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9287
9288         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9289
9290         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9291
9292         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9293
9294         * support/regression/tests/longor.c: Added.
9295
9296 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9297
9298         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9299
9300         * as/mcs51/aslink.h: define PATH_MAX
9301
9302         * as/mcs51/asm.h: define PATH_MAX
9303
9304         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9305
9306         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9307
9308         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9309
9310         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9311
9312         * src/SDCCglobl.h: define PATH_MAX
9313
9314         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9315
9316         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9317
9318 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9319
9320         * src/z80/gen.c (gencjneshort): Fixed
9321
9322         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9323
9324 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9325
9326         * support/regression/tests/bug-469671.c: Added.
9327
9328         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9329
9330 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9331
9332         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9333
9334         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9335
9336 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9337
9338         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9339
9340         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9341
9342         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9343
9344         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9345
9346         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9347
9348         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9349
9350         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9351
9352 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9353
9354         * 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.
9355
9356         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9357
9358         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9359
9360 2001-10-07    <johan AT FRIJA>
9361
9362         * device/lib/gets.c (gets): fixed the return value.
9363
9364 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9365         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9366
9367         * 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.
9368
9369         * 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.
9370
9371         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9372
9373         * src/pic/gen.c: Removed Safe_strdup.
9374
9375         * configure.in: Added option to enable libgc support.
9376
9377         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9378         (bitVectUnion): Optimised.
9379         (bitVectIntersect): Optimised.
9380         (bitVectBitsInCommon): Optimised.
9381         (bitVectCplAnd): Optimised.
9382
9383         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9384
9385 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9386
9387         * src/SDCCmain.c: distinguish between assembler debug and plain options
9388
9389         * src/avr/main.c:   remove standard assembler options
9390
9391         * src/ds390/main.c: remove standard assembler options
9392
9393         * src/mcs51/main.c: remove standard assembler options
9394
9395         * src/port.h: removed "PENDING" comment
9396
9397 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9398
9399         * src/device/lib/_mulint.c  : new, with assember functions
9400
9401         * src/device/lib/_mullong.c : new, with assember functions
9402
9403         * src/device/lib/_divuint.c : with assember functions
9404
9405         * src/device/lib/_divsint.c : with assember functions
9406
9407         * src/device/lib/_divulong.c: with assember functions
9408
9409         * src/device/lib/_divslong.c: with assember functions
9410
9411         * src/device/lib/_moduint.c : with assember functions
9412
9413         * src/device/lib/_modsint.c : with assember functions
9414
9415         * src/device/lib/_modulong.c: with assember functions
9416
9417         * src/device/lib/_modslong.c: with assember functions
9418
9419         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9420
9421         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9422
9423         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9424                                       replaced _mululong.c and _mulslong.c by _mullong.c
9425
9426 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9427
9428         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9429
9430 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9431
9432         * src/SDCCglue.c: test, if win32api is available for MINGW
9433
9434 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9435
9436         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9437         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9438         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9439         * support/regression/ports/host/spec.mk: removed GENERIC
9440         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9441         * support/regression/ports/z80/spec.mk: removed GENERIC
9442
9443 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9444
9445         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9446
9447         * support/regression/tests/bug-467035.c: Created.
9448
9449 2001-10-01    <johan AT FRIJA>
9450
9451         * src/SDCC.y: fixed bug #466586 part 1
9452
9453 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9454
9455         * SDCCicode.c: z80 has no generic pointers
9456         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9457
9458 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9459
9460         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9461
9462 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9463
9464         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9465
9466         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9467
9468 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9469
9470         * configure.in: Fixed up so that ucsim is only configured once.
9471
9472         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9473
9474         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9475         (getPathDifference): As above.
9476
9477         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9478
9479         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9480
9481 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9482         * .version: Updated to 2.3.1
9483
9484         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9485         Added copyright header.
9486
9487         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9488         (assemble): Added support for macro based assembler commands.
9489         (linkEdit): Added support for macro based linker commands.
9490         (preProcess): Changed the pre-processor to use macros.
9491         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9492         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9493
9494         * device/lib/z80/crt0.s: Added module name for debugging.
9495
9496 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9497
9498         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9499
9500         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9501
9502         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9503
9504         * src/Makefile.in: Added SDCCmacro and SDCCutil
9505
9506 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9507
9508         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9509
9510 2001-09-16    <johan AT FRIJA>
9511
9512         * 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.
9513
9514 2001-09-15    <johan AT FRIJA>
9515
9516         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9517         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9518
9519 2001-09-11    <johan AT FRIJA>
9520
9521         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9522
9523 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9524
9525         * support/regression/tests/bug-460444.c: Added test case.
9526
9527         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9528         (genCast): Added justification for all of the asserts.
9529
9530 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9531
9532         * support/regression/support.c: _xdata replaced by xdata
9533
9534         * support/regression/spec.mk: removed _generic
9535
9536 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9537
9538         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9539
9540         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9541         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9542
9543         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9544
9545         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9546
9547         * support/regression/tests/bug-460010.c: Added test case.
9548
9549         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9550
9551 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9552
9553         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9554
9555         * support/regression/testfwk.c: removed workaround for bug #436344
9556
9557         * support/regression/tests/bp.c: use less memory with mcs51
9558
9559         * support/regression/tests/bug-441448.c: use less memory
9560
9561         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9562
9563         * support/regression/collate-results.py: typo
9564
9565 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9566
9567         * support/regression/tests/fetchoverlap.c: Added new test case.
9568
9569         * support/regression/tests/bp.c: Added new test case.
9570
9571         * support/regression/tests/bug-448984.c: Added new test case.
9572
9573         * support/regression/tests/pow2shifts.c: Added new test case.
9574
9575         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9576         (genlshTwo): Fixed right shift for count > 8.
9577
9578         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9579
9580 2001-09-08    <johan AT FRIJA>
9581
9582         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9583
9584 2001-09-07    <johan AT FRIJA>
9585
9586         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9587
9588         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9589
9590 2001-09-06    <johan AT FRIJA>
9591
9592         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9593         * bernhard noted me at this: "() equals to (void)" (1.38)
9594
9595 2001-09-05    <johan AT FRIJA>
9596
9597         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9598
9599 2001-09-04    <johan AT FRIJA>
9600
9601         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9602
9603
9604 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9605
9606         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9607
9608 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9609
9610         * link/z80/aslink.h: Fixed path for PATH_MAX
9611
9612 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9613
9614         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9615
9616         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9617
9618         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9619
9620         * 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.
9621
9622 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9623
9624         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9625         (genCmp): Fixed up genCmp for the GB with longs.
9626
9627         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9628
9629         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9630
9631         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9632
9633         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9634
9635 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9636
9637         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9638
9639 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9640
9641         * 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.
9642
9643         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9644
9645 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9646
9647         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9648
9649         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9650
9651 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9652
9653   * sim/ucsim/configure:    little improvement of Cygwin-detection
9654   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9655   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9656   * support/regression/tests/bug-221100.c: small changes for mcs51
9657   * support/regression/tests/bug-221168.c: small changes for mcs51
9658   * support/regression/tests/bug-227710.c: small changes for mcs51
9659   * support/regression/tests/staticinit.c: small changes for mcs51
9660   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9661   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9662   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9663
9664 $Revision$