d80d78fbce23823767f13785ebbe1d9a9ef21d66
[fw/sdcc] / ChangeLog
1 2005-09-05 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
4           access bank splitpoint
5
6 2005-09-05 Raphael Neider <rneider AT web.de>
7
8         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
9
10 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * .version: changed to version 2.5.3
13         * doc/sdccman.lyx: changed version to 2.5.3,
14           documented --codeseg and --constseg and pragma codeseg and constseg,
15           documented bit parameters (reentrant) and bit returning
16         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
17            currFunc->recvSize, but is this ok for all ports?
18           (ast2iCode): result of ~ on unsigned char must be cast to int for
19            bool to work
20         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
21           function pointers in bit space
22         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
23           (processFuncArgs): call port.reg_parm() with reentrancy info
24         * src/port.h,
25         * src/avr/main.c,
26         * src/ds390/main.c,
27         * src/hc08/main.c,
28         * src/pic/main.c,
29         * src/pic16/main.c,
30         * src/xa51/main.c,
31         * src/z80/main.c: port.reg_parm prototype extended with
32           "bool reentrant" parameter
33         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
34           options.stackAuto for allocating bit register parameters
35         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
36           (genSend): set BitBankUsed if it is,
37           (selectRegBank): factored out of genCall for use in genPcall,
38           (genCall): removed redundant dtype assignmen, use selectRegBank,
39           (genPcall): handle returning in Carry properly, save in F0 if needed,
40           (genReceive): handle bit register parameters
41         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
42           (mcs51_assignRegisters): enable bit registers for all reentrant
43            functions and don't set BitBankUsed unconditionally
44         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
45         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
46         * support/regression/tests/funptrs.c: added tests for BOOL and for return
47
48 2005-08-27 Borut Razem <borut.razem AT siol.net>
49
50         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
51         ppc-osx (Darwin) does not support -u option. It seems that it is
52         supported only on Linux - GNU cp
53
54 2005-08-25 Borut Razem <borut.razem AT siol.net>
55
56         * sim/ucsim/gui.src/serio.src/Makefile.in,
57           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
58           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
59           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
60           install and strip, since the strip at /usr/ccs/bin should be used
61           on solaris
62
63 2005-08-24 Borut Razem <borut.razem AT siol.net>
64
65         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
66
67 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
68
69         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
70         ffffffffu
71
72 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
73
74         * as/mcs51/aslink.h: completed lkrloc.c prototypes
75         * as/mcs51/lkmain.c (link_main): fixed warning
76         * device/include/stdbool.h: ds390 has no advanced bit support yet
77         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
78         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
79         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
80           and updated their macros
81         * src/SDCCval.c (constVal): updated comment for renamed b_long
82
83 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
84
85         * as/mcs51/asdata.c: changed ctype['['] to BINOP
86         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
87           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
88           (oprio): set priority for '['
89         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
90            and adb_24_bit
91         * as/mcs51/asm.h: added defines R_BIT and S_BIT
92         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
93         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
94         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
95           added overlayable BIT_BANK area
96         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
97           (summary2): explain 'T' in legenda
98         * as/mcs51/lkrloc.c: replaced old K&R style,
99           (relr): added R_BIT processing,
100           (errmsg): added "Bit-addressable relocation error",
101           (adb_bit): added for converting from byte- to bit-addressable space,
102           (adb_24_bit): added for converting from byte- to bit-addressable space
103         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
104            used in reentrant functions now even as return value
105         * device/lib/_gptrput.c (_gptrput): removed obsolete code
106         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
107           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
108         * src/SDCCglobl.h: added indicator BitBankUsed
109         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
110            the bit registers b0-b7
111         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
112           (geniCodeCast): fixed bug 1263853,
113           (geniCodeLogicAndOr): put result in bool or char,
114           (geniCodeReceive): added parameter func for accessing the return type,
115           (geniCodeFunctionBody): pass func to geniCodeReceive
116         * src/SDCCmain.c: added indicator BitBankUsed
117         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
118         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
119           (checkSClass): don't put automatic bool/bit on stack,
120           (checkFunction): removed check on function cannot return bit
121         * src/SDCCsymt.h: added newBoolLink prototype
122         * src/mcs51/gen.c (rb1regs): added bit registers,
123           (movc): created for assigning to carry,
124           (pushReg, popReg): created for pushing registers,
125           (sameRegs): check both AOP_REG and AOP_CRY types,
126           (aopOp): handle bit registers,
127           (aopPut): optimization no self-assign,
128           (saveRegisters): push reg->base (bits) only once for bit registers,
129            and use pushReg,
130           (unsaveRegisters): pop reg->base only once and use popReg,
131           (assignResultValue): added parameter func and return in carry for bits,
132           (genIpush): optimization no reload in A if not changed,
133           (genSend): bit parameters in reentrant functions are passed in bit
134            registers by first assigning to bits in B, then save registers and
135            copy B to bits,
136           (genCall): handle returning in Carry properly, save it in F0 if needed,
137           (genPcall): updated assignResultValue call, this is not safe yet for bit
138            returning function !!!
139           (genFunction): don't generate equ's for bit registers and use pushReg,
140           (genEndFunction): take care of bit returning functions and use popReg,
141           (genRet): return bit in Carry,
142           (genIfx): optimize bit registers and other directly addressable bits,
143           (genReceive): updated assignResultValue call
144         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
145           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
146            registers when using stack-auto
147         * src/mcs51/ralloc.c (_G): added allBitregs,
148           (regs8051): added the bit registers,
149           (createStackSpil): use macro IS_BIT,
150           (getRegBit): added to allocate a bit register, else spill,
151           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
152           (updateRegUsage): factored out to ease stepping while debugging,
153           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
154            also allocate bit registers,
155           (fillGaps): handle bit registers,
156           (findAllBitregs): added to create bit vector with all bit registers,
157           (mcs51_allBitregs): returns this bit vector,
158           (mcs51_assignRegisters): when using stack-auto use bit registers for
159            passing parameters and creating local variables
160         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
161
162 2005-08-22 Borut Razem <borut.razem AT siol.net>
163
164         * device/lib/Makefile.in: replaced find option -or with -o
165           to make it run on solaris
166
167 2005-08-22 Raphael Neider <rneider AT web.de>
168
169         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
170           fixes #1265442 (crash on Solaris)
171
172 2005-08-20 Borut Razem <borut.razem AT siol.net>
173
174         * configure, configure.in: added tests for libsocket and libnsl libraries,
175           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
176           from support/regression/Makefile.in
177         * support/regression/Makefile.in: added
178         * device/lib/pic16/Makefile.common.in: force make to use bash shell
179         * sim/ucsim/libtool: regenerated on sparc-solaris
180         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
181           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
182           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
183           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
184           sparc-solaris, which doesn't use GNU ld linker
185         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
186         * as/Makefile: find on sparc-solaris does not support -maxdepth option
187
188 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
189
190         * src/mcs51/peeph.def: updated comments
191
192 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
193
194         * device/lib/_gptrget.c,
195         * device/lib/_gptrput.c: slightly shorter
196         * doc/sdccman.lyx: incremented version
197         * src/mcs51/peeph.def: moved peephole comments to the line of first
198           change to better keep line correlation, reanimated 186.e
199         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
200
201 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
202
203         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
204           David Saxton with quotes around file name.
205
206 2005-08-15 Borut Razem <borut.razem AT siol.net>
207
208         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
209           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
210           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
211           make tests run on x86_64 platform
212
213 2005-08-13 Raphael Neider <rneider AT web.de>
214
215         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
216           as it might be executed DURING a build (parallel make is wonderful)
217
218 2005-08-13 Raphael Neider <rneider AT web.de>
219
220         * device/lib/Makefile.in (port-specific-objects-pic16):
221           revert to cp $(PORT)/bin/*.* $(PORTDIR)
222         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
223           dependency
224         * device/lib/pic16/Makefile.rules: build subdirs before creating
225           the library, removed builddir rule, create $(builddir) early in
226           recurse rule, use empty recurse rule for leaf directories
227         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
228           mkdir errors (race condition), removed duplicate suffix "hex"
229           from clean rules
230         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
231         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
232           prevents mkdir -p from aborting on Alpha
233
234 2005-08-12 Raphael Neider <rneider AT web.de>
235
236         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
237           db-statements in order to allow for arrays of pointers in code
238           sections to be placed without interspersed 0-padding, fixes
239           bug #1256215
240         * (emitStatistics): fixed division by zero for pic18f1220
241         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
242           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
243         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
244         * (pic16_pCodeConstString): keep track of already emitted string
245           literals to prevent "duplicate definitions of symbol _str_NR"
246         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
247           debug message
248         * device/lib/Makefile.in: ignore failing PIC16 library builds
249         * device/lib/pic16/Makefile: do not build if gputils are missing
250         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
251
252 2005-08-10 Raphael Neider <rneider AT web.de>
253
254         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
255           my last commit)
256
257 2005-08-10 Raphael Neider <rneider AT web.de>
258
259         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
260           Rokas' patch to add the new fixed point type "__fixed16x16"
261         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
262           functions for __fixed16x16 arithmetics
263         * device/lib/pic16: reimplemented the build system to support
264           a separate build directory, better handling of libio (create
265           the library in a separate subdir for each architecture) and
266           easier configuration (centralized in Makefile.common)
267
268 2005-08-07 Raphael Neider <rneider AT web.de>
269
270         * src/pic16/gen.c (genrshTwo): fixed sign extension
271         * src/pic16/device.c: added pic18f2320, 4220 and 4320
272         * device/include/pic16/pic18f2220.h: changed some bit definitions,
273           added T0CONbits
274         * device/include/pic16/pic18f4220.h: NEW, header for
275           pic18f4220 and pic18f4320
276         * device/include/pic16/pic18fregs.h: added new devices,
277           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
278         * device/include/pic16/signal.h: resolved name clashes
279           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
280           to also allow testing for interrupt enable bits, added
281           comments on how to use the macros
282         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
283         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
284           register definitions for the devices
285         * device/lib/pic16/pics.all: added new devices
286         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
287           allocated memory
288         * device/lib/pic16/libc/stdlib/memfree: do not count
289           the block header as free memory
290         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
291           simplified and added missing end-of-blocklist-marker
292           (reported by Peter Onion, fixes #1252814)
293         * (_mergeHeapBlock): fixed loop condition
294         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
295           len==0, restructured code
296         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
297           up a bit, reduced bitfield accesses, prevent endless loops
298           in case of heap corruption
299         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
300           "unreferenced arguments/must return a value" warnings
301         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
302           replaced BAUDREG with SPBRG
303         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
304           device/lib/pic16/debug/gstack/gstack.c: replaced
305           _naked, _asm, _endasm with __naked, __asm, __endasm
306
307 2005-08-05 Raphael Neider <rneider AT web.de>
308
309         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
310           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
311
312 2005-08-05 Borut Razem <borut.razem AT siol.net>
313
314         * device/lib/Makefile.in: added missing ';'
315         * configure: removed ^M characters
316
317 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
318
319         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
320           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
321           License
322
323 2005-08-04 Borut Razem <borut.razem AT siol.net>
324
325         * configure.in: pic16 libraries build 2nd try - enable running
326           configure in device/lib/pic16
327         * configure: regenerated from configure.in
328         * device/lib/Makefile.in: create $(PORT)/bin directory
329
330 2005-08-03 Raphael Neider <rneider AT web.de>
331
332         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
333           to get/set values via pointers
334         * (genUnpackBits,genPackBits): changed detection of
335           ptr->bitfield vs. sym.bitfield, fixed access via generic
336           pointers, removed dead (wrong) code for multibyte bitfields
337         * (genNearPointerGet, genGenPointerGet): removed useless code,
338           fixed bitfield detection, fixes #1250594
339         * (genNearPointerSet): removed useless code
340         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
341           and introduced macro pic16_emitpcode that conditionally emits
342           the origin of the following pCode (useful for debugging SDCC)
343         * src/pic16/pcode.c: changed (and disabled) some debug outputs
344         * (createDefmap): fixed handling of LFSR for --optimize-df
345
346 2005-08-02 Borut Razem <borut.razem AT siol.net>
347
348         * device/lib/Makefile.in: pic16 libraries build enabled since
349           gputils-0.13.2 are now localy installed at sourceforge's compile farm
350
351 2005-08-02 Raphael Neider <rneider AT web.de>
352
353         * src/pic16/gen.c (genPackBits): removed deprecated warning
354         * (genGenPointerSet): fixed bitfield detection
355
356 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
357
358         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
359
360 2005-07-31 Raphael Neider <rneider AT web.de>
361
362         * device/lib/pic16/libdev/pic18f458.c,
363           device/include/pic16/pic18f458.h: added missing T0CONbits
364
365 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
366
367         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
368
369 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
370
371         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
372
373 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
374
375         * device/include/mcs51/at89c51ed2.h: added.
376
377 2005-07-23 Raphael Neider <rneider AT web.de>
378
379         * src/pic/gen.h: added emitpcode macro for debugging
380         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
381           and replace by macro adding debug information on demand
382         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
383         * (gencjne): tried to fix; replaced with correct (slower) code
384         * (gen{Unp,P}ackBits): fixed single bit access
385         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
386         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
387           previous instruction
388         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
389           register has to be handled with care (forbidding movement
390           of assignments/uses, removing assignments completely, ...)
391         * (pCodeOptime2pCodes): make use of regIsSpecial
392         * added lots of debugging output (commented out)
393         * src/pic/rallloc.c (deassignLRs): prevent operand registers
394           from being reused as result UNLESS it is known to work
395
396 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
397
398         * support/Util/dbuf.h: include <stddef.h> for size_t
399         * .version: changed to version 2.5.2
400
401 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
402
403         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
404
405 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
406
407         * src/hc08/gen.c (genMinus): fixed bug #1241835,
408           (genModOneByte): removed needless psha/pula
409
410 2005-07-22 Raphael Neider <rneider AT web.de>
411
412         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
413           have PIC14 handled like PIC16, fixes broken pic14 linker calls
414         * src/pic/gen.c (resolveIfx): do not "invent" labels
415         * (genSkipc): changed to positive logic
416         * (genSkipCond): removed as no longer needed
417         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
418           backport from PIC16
419         * (genLeftShift): check operands are in different registers
420         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
421           INCF does not update CARRY...
422         * src/pic/main.c: fixed _linkCmd
423         * src/pic/pcode.c (unlinkpCode): added inactive code
424         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
425           alive (do not assign result and operand overlapping registers)
426
427 2005-07-22 Raphael Neider <rneider AT web.de>
428
429         * src/pic/device.c (dump_sfr): replaced register declaration with
430           call to emitSymbolToFile() to avoid duplicate symbols
431         * (assignRelocatableRegisters): do not declare external symbols
432         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
433           right (take size of type, not etype)
434         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
435         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
436         * (packRegsForAccUse): disabled assignment of WREG as
437           the result reg to prevent occurence of just fixed #1235003,
438           fixes #1242954
439         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
440           symbols (avoids duplicate symbols in .asm file)
441         * (pic14emitRegularMap): use emitSymbolToFile()
442         * src/pic/gen.c (aopOp): fixed spillLocation handling
443         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
444         * (genDataPointerSet): removed unneccessary variables/output
445
446 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
447
448         * as/mcs51/lkarea.c: enlarged codemap for banked memory
449         * device/lib/mcs51/crtbank.asm: added # to 0x0F
450
451 2005-07-21 Raphael Neider <rneider AT web.de>
452
453         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
454           architecture cannot handle them efficiently, fixes bug #1235003
455         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
456           check for empty sets before using them (fixes bug #1232190)
457
458 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
459
460         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
461           (lnksect2): generate warnings for memory overlap
462         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
463           constseg to set the name of these segments so you can instruct the linker
464           to place them in banks
465         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
466         * src/SDCCglobl.h: added MODEL_HUGE to enum,
467           added code_seg and const_seg to options
468         * src/SDCCglue.c (emitMaps): use options.const_seg,
469           (createInterruptVect): put interrupt vectors in segment HOME,
470           (glue): put HOME before static segment and put the main glue in HOME,
471           (glue): use options.code_seg
472         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
473         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
474           these segments so you can instruct the linker to place them in banks
475           (linkEdit): use code_loc for HOME segment which should be the first
476           segment in code memory now
477         * src/SDCCmem.c: fixed more stuff like bug 1238386
478         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
479           (changePointer): don't change function pointers to code pointers for
480           banked functions,
481           (compareType): added exceptional check for banked function pointers
482         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
483         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
484           after static in code memory
485         * src/mcs51/gen.c: added aopLiteralLong prototype,
486           (aopForSym): use getSize for functions,
487           (genCall): generate banked calls over one trampoline __sdcc_banked_call
488           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
489           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
490           the segment,
491           (genPcall): use call for literal function pointers and generate banked
492           calls over the one trampoline so there's only one place for the user to
493           modify according to his/hers hardware,
494           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
495           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
496         * src/mcs51/main.c: added keyword banked,
497           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
498         * support/Util/SDCCerr.c,
499         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
500           needed for passing the bank and address to the trampoline
501         * device/lib/mcs51/crtbank.asm: added for bankswitching
502         * device/lib/mcs51/Makefile: added crtbank
503
504 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
505
506         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
507           for fields at offset 0 of a struct or union as reported
508           on 2005-07-07 in the developer mailing list.
509
510 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
511
512         * src/SDCCmem.c: fixed bug 1238386
513
514 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
515
516         * src/mcs51/peeph.def: added labelrefcounting for peepholes
517           (patch #1144962), added peephole 300, enabled 259.x
518         * doc/sdccman.lyx: removed screenshot and provided link instead
519
520 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
521
522         * doc/sdccman.lyx: added section about debugging with ddd
523         * doc/figures/ddd_example.eps: screenshot of debugging session
524
525 2005-07-04 Raphael Neider <rneider AT web.de>
526
527         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
528           like CODE pointers, fixes #1115683
529         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
530           call, fixes bugs #1232211, #1228110,
531           fixed wrong casts to pCodeFlow from pCodeInstructions
532
533 2005-07-04 Raphael Neider <rneider AT web.de>
534
535         * src/pic/gen.c (popGet): changed assert to allow for
536           bit operands
537         * (popGetAddr): changed signature to provide
538           an additional index, patched all call sites
539         * (genCmpEq): handle literal-like operands correctly
540         * (genAddrOf): added sanity checks on __code/__data pointers
541         * (genAssign): added handling of symbols from __code section
542         * (gencjne): do not generate code for comparisons whose result
543           is neither stored nor used, fixes bug #1171114
544         * (AccLsh, AccRsh): operate on operand instead of WREG
545         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
546           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
547           by known count
548         * rewrote complete shift-by-literal logic, commented unused
549           functions out
550         * (genConstPointerGet): get multiple bytes (if result size > 1),
551           fixed handling of non-immediate addresses
552         * (genPointerGet): handle CODE pointers like CONST pointers
553         * (genpic14Code): insert C-SRC lines as Cource-pCodes
554         * ({aop,op}_isLitLike): NEW, single place to decide whether an
555           operand is to be treated as a literal or not
556         * (mov2w,genPcall,genCmpEq),
557           src/pic/genarith.c: use aop_isLitLike() to decide between
558           literal/register contents
559         * (addSign): added missing offset
560         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
561           only emit comment in debug-mode,
562           use {aop,op}_isLitLike throughout the file
563         * src/pic/glue.c: fix initializers for pointers (work in progress)
564         * src/pic/pcode.c (get_op): honor index on _const symbols
565         * ({reset,dump}pCodeStatistics): NEW, estimate code size
566         * (dumppBlock): added pCode size estimation
567         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
568           check for IS_SYMOP before OP_SYMBOL'ing
569         * fixed indentation, compacted switch-statements
570         * (allocReg): find free register and allocate it instead of
571           allocating new registers all the time
572         * (deassignLRs): prevent POINTER_GET's from being assigned the same
573           registers as its operands (necessary only for multibyte GETs)
574
575 2005-07-01 Raphael Neider <rneider AT web.de>
576
577         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
578           debugging .asm-output macros FENTRY + FEXIT
579         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
580           way... I wonder...
581         * (emitpComment): NEW, printf to pCode
582         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
583           offset handling
584         * (popGetAddr): NEW, variant of popGet to access an immediates
585           high(er) bytes instead of the n'th byte of memory they reference,
586           replaced popGet with popGetAddr where neccessary
587         * (genDataPointerGet): reactivated and fixed implementation
588         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
589           accesses
590         * (genDataPointerSet): fixed multibyte assignments
591         * (genpic14Code): fixed --i-code-in-asm handling
592         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
593         * (genPlus): fixed index-out-of-bounds error
594         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
595         * src/pic/ralloc.c: added debugging output macro FENTRY2
596         * (spillThis): fixed indentation, enbraced for-body for clarity
597         * (rematStr): commented out as now unused
598         * (regTypeNum): commented out special spill case (overwrites
599           arbitrary values)
600         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
601
602 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
603
604         * doc/sdccman.lyx: documented sfr16/sfr32,
605           added example for using storage class with function pointers
606         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
607
608 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
609
610         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
611         * device/lib/_itoa.c,
612         * device/lib/_ltoa.c: optimized codesize
613         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
614           but don't know how to suppress the double warning.
615         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
616         * support/Util/SDCCerr.c,
617         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
618
619 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
620
621         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
622           fixed old K&R prototypes
623         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
624         * device/lib/_gptrget.c,
625         * device/lib/_gptrgetc.c,
626         * device/lib/_gptrput.c: changed versions for new memory indicator values,
627           also new versions for small generic pointers and banked generic pointers
628         * src/port.h: added const_name
629         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
630         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
631         * src/SDCCcse.c (findPrevIc): check all associative operators
632         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
633         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
634         * src/SDCCmem.c: updated comments,
635           set far-space to 0 for pdata, results in optimized code
636         * src/SDCCmem.h: added macro CONST_NAME
637         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
638           moving the info into the highest bits, see also gptrget/gptrput
639         * src/src.dsp: added sdcc.ico to project files
640         * src/avr/gen.c (genCast): fixed bug 0x%d
641         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
642         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
643           relation between ptr_type and DCL_TYPE,
644           (genCast): fixed bug 0x%d
645         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
646           (CODE)" for const_name
647         * src/hc08/gen.c (genCast): fixed bug 0x%d
648         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
649           (hc08_port): added "CONST (CODE)" for const_name
650         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
651           (aopForRemat, adjustArithmeticResult): disconnected direct relation
652           between ptr_type and DCL_TYPE,
653           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
654           operand* and took AOP() inside function so sfr-ness can be checked,
655           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
656           new prototype,
657           (genFunction, genEndFunction): optimized stack setup,
658           (genMinus): optimized for literals with ending zeroes (in bytes),
659           (genCast): fixed bug 0x%d
660         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
661           (mcs51_port): added "CONST (CODE)" for const_name
662         * src/mcs51/peeph.def: made rule 226 more generic
663         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
664         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
665         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
666         * src/z80/main.c (z80_port): added NULL for const_name,
667           (gbz80_port): added NULL for const_name
668         * support/regression/tests/bug663539.c,
669         * support/regression/tests/sfr16.c: new tests
670
671 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
672
673         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
674
675 2005-06-24 Raphael Neider <rneider AT web.de>
676
677         * device/lib/pic16/libdev/pic18f[68][567]20.c:
678           corrected typos...
679         * device/include/pic16/signal.h: added USBIF
680           and SIG_USB
681
682 2005-06-24 Raphael Neider <rneider AT web.de>
683
684         * device/lib/pic16/libdev/pic18f2455.c,
685           device/include/pic16/pic18f2455.h: NEW
686         * device/include/pic16/pic18fregs.h,
687           device/lib/pic16/pics.all,
688           src/pic16/device.c: added 18f2455
689         * device/lib/pic16/libdev/pic18f[68][567]20.c,
690           device/include/pic16/{pic18f[68][567].h,usart.h}:
691           replaced MULTIPLE_USARTS define with more relaible
692           compatibility sfrs (for USART access)
693
694 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
695
696         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
697           and the output asm file line is printed on two lines.
698
699 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
700
701         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
702           BGT, BLE, BHI, and BLS instructions
703         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
704           genCmpEq): removed
705         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
706           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
707           fixes bug #1216342
708         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
709
710 2005-06-15 Raphael Neider <rneider AT web.de>
711
712         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
713         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
714         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
715           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
716           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
717
718 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
719
720         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
721           Marcel Telka in bug #1215704
722
723 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
724
725         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
726           located in shared memory bank.
727
728 2005-05-31 Raphael Neider <rneider AT web.de>
729
730         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
731           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
732           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
733
734 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
735
736         * device/lib/_strncpy.c: fixed the fix
737
738 2005-05-26 Raphael Neider <rneider AT web.de>
739
740         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
741           initializers with \0, bug #1208187
742         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
743           intializers with \0, bug #1208187
744
745 2005-05-26 Raphael Neider <rneider AT web.de>
746
747         * src/pic16/glue.c (pic16_printIvalChar): fixed string
748           initializers with \0, bug #1208187
749         * src/pic16/main.c (_process_pragma): added sanity checks
750           for stack position and size, emit warnings when appropriate
751
752 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
753
754         * device/lib/_strncpy.c: fixed not filling with \0
755
756 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
757
758         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
759           createFunction),
760         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
761           compound_statement),
762         * src/SDCCsymt.h,
763         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
764
765 2005-05-24 Raphael Neider <rneider AT web.de>
766
767         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
768
769 2005-05-24 Raphael Neider <rneider AT web.de>
770
771         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
772           TRISE definitions, closes bug #1162453
773
774 2005-05-22 Raphael Neider <rneider AT web.de>
775
776         * src/pic16/main.c (_process_pragma): check for missing
777           arguments to pragmas code and udata
778         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
779           consistency fixes to match other headers (thanks to Jim Paris)
780         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
781
782 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
783
784         * src/SDCCicode.c (isOperandEqual): fixed missing ;
785
786 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
787
788         * support/regression/tests/bug1198642.c: new test
789         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
790         * src/SDCCcse.c (findPrevIc): added comment, please have a look
791         * support/scripts/resource.h,
792         * support/scripts/resource.rc,
793         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
794         * support/scripts/sdcc.ico: added 32x32 icon
795
796 2005-05-18 Raphael Neider <rneider AT web.de>
797
798         * device/lib/pic16/libdev/pic18f*.c,
799         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
800           keywords to "__sfr" and "__at (X)"
801         * device/include/pic16/pic18fregs.h: added pic18f4520
802         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
803           #1203088 (MPLAB compatibility)
804
805 2005-05-17 Raphael Neider <rneider AT web.de>
806
807         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
808         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
809         * device/lib/pic16/pics.all: added new devices
810         * src/pic16/device.c: added support for pic18f4520
811
812 2005-05-16 Raphael Neider <rneider AT web.de>
813         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
814         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
815         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
816           convenience function for bit access
817
818 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
819
820         * device/lib/printf_large.c: fixed bug 1193299
821         * support/regression/tests/bug1057979.c: added test %3.3s
822
823 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
824
825         * device/include/mcs51/8051.h,
826         * device/include/mcs51/8052.h: made parseable with lint
827         * device/include/mcs51/lint.h: added include file for (sp)lint
828         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
829         * doc/cdbfileformat.lyx,
830         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
831
832 2005-05-14 Raphael Neider <rneider AT web.de>
833
834         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
835         * device/lib/pic16/libc/stdlib/itoa.c (new)
836         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
837         * device/lib/pic16/libio/Makefile: exclude subdir according to
838           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
839         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
840         * src/pic16/gen.c (genFunction): prevent annoying warning
841         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
842           nameclashes on BeOS
843         * support/cpp2/cppmain.c (cpp_output_string): new
844         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
845           fixes bug 1116802
846
847 2005-05-13 Borut Razem <borut.razem AT siol.net>
848
849         * src/SDCCmain.c (linkEdit): fixed bug 1195202
850
851 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
852
853         * .version: changed to version 2.5.1; back to bleeding edge development
854
855 2005-05-11 Borut Razem <borut.razem AT siol.net>
856
857         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
858           generate PDF version 1.3 documents
859
860 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
861
862         * .version: changed to version 2.5.0
863
864 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
865
866         * doc/sdccman.lyx: updated weblinks, index and smaller updates
867
868 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
869
870         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
871         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
872         well as many smaller updates.
873         * .version: changed to version 2.5.0-pre1
874
875 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
876
877         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
878
879 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
880
881         * support/regression/tests/bug1185672.c: added
882         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
883           bug 1185672
884         * src/mcs51/gen.c (genCall): added comments, made it look safer
885         * src/mcs51/gen.c (genEndFunction): simplified
886
887 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
888
889         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
890
891 2005-04-14 Borut Razem <borut.razem AT siol.net>
892
893         * fixed bug 1045046 - SIGSEGV with really simple code?:
894           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
895           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
896
897 2005-04-14 Borut Razem <borut.razem AT siol.net>
898
899         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
900           src/pic16/device.h: temporarily disabled experimental #inline pragma
901           for 2.5.0 release
902
903 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
904
905         * device/include/z80/stdio.h,
906         * device/include/z80/string.h: removed these highly incomplete files so
907           SDCC can use the default ones in device/include/
908
909 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
910
911         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
912         gcc warning.
913         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
914         fix sdcpp warnings.
915
916 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
917
918         * device/include/malloc.h: removed redundant __reentrant prototypes
919         * device/lib/_mullong.c: added working xstack variant in asm (C version
920           doesn't pass regression tests)
921         * device/lib/bpx.c: used __data and made bpx char for mcs51
922         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
923           (createFunction): fixed bug with xstackPtr
924         * src/SDCCcse.c: corrected comments
925         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
926           (killDeadCode, eBBlockFromiCode): removed unused code
927         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
928           corrected comments
929         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
930           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
931           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
932           (genModOneByte): fixed warning in MSVC
933         * src/mcs51/main.c (): added comments
934         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
935
936 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
937
938         * src/SDCCmain.c (linkEdit): oops, changed one line too many
939
940 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
941
942         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
943
944 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
945
946         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
947         characters arrays of larger size than the declared one.
948
949 2005-04-10 Borut Razem <borut.razem AT siol.net>
950
951         * src/pic/gen.c (genInline),
952           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
953           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
954           (findNextInstruction), (findPrevInstruction),
955           (findInstructionUsingLabel),
956           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
957         * src/pic/pcode.c (findLabel): added missing '\n'
958         * src/src.dsp: added SDCCdwarf2.c to the project
959
960 2005-04-09 Borut Razem <borut.razem AT siol.net>
961
962         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
963
964 2005-04-08 Raphael Neider <rneider AT web.de>
965
966         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
967           into the chain after a given one) and mergeDefmapSymbols (combine
968           defmap entries for each symbol per pcode)
969         * (createDefmap): have defmap entries merged in the end
970         * (defmapReplaceSymRef): split defmap entries covering two accesses to
971           a symbol before replacing one access type's symbol, merge symbols in
972           the end (replacement symbol might already have an entry)
973         * (assignValnums): keep reference to written WREG intact
974
975 2005-04-08 Raphael Neider <rneider AT web.de>
976
977         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
978           Alpha)
979
980 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
981
982         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
983         bytes
984
985 2005-04-07 Raphael Neider <rneider AT web.de>
986
987         * device/include/pic16/usart.h: added compatibility defines for
988           devices with more than one USART
989         * device/include/pic16/pic18f[68][567]20.h: activated above defines
990
991 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
992
993         * device/lib/Makefile.in: updated for port specific include
994
995 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
996
997         * support/regression/ports/mcs51/spec.mk: added mcs51 include
998
999 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1000
1001         * device/include/8051.h,
1002         * device/include/8052.h,
1003         * device/include/at89S8252.h,
1004         * device/include/at89c55.h,
1005         * device/include/at89x051.h,
1006         * device/include/at89x51.h,
1007         * device/include/at89x52.h,
1008         * device/include/mcs51reg.h,
1009         * device/include/reg51.h,
1010         * device/include/reg764.h,
1011         * device/include/regc515c.h,
1012         * device/include/sab80515.h: (re)moved these 12 files
1013         * device/include/mcs51/8051.h,
1014         * device/include/mcs51/8052.h,
1015         * device/include/mcs51/at89S8252.h,
1016         * device/include/mcs51/at89c55.h,
1017         * device/include/mcs51/at89x051.h,
1018         * device/include/mcs51/at89x51.h,
1019         * device/include/mcs51/at89x52.h,
1020         * device/include/mcs51/mcs51reg.h,
1021         * device/include/mcs51/reg51.h,
1022         * device/include/mcs51/reg764.h,
1023         * device/include/mcs51/regc515c.h,
1024         * device/include/mcs51/sab80515.h: and added them here
1025
1026 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1027
1028         * device/include/stdarg.h: changed SDCC specific keywords to double
1029           underlined form.
1030         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1031           mcs51 and ds390.
1032         * device/include/hc08/mc68hc908gp32.h,
1033         * device/include/hc08/mc68hc908jb8.h,
1034         * device/include/hc08/mc68hc908jkjl.h,
1035         * device/include/hc08/mc68hc908qy.h: fixed comments
1036         * device/include/mcs51/README: updated
1037         * device/include/mcs51/c8051f120.h: added PINRSF
1038         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1039         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1040           amidst code. Also inline is not supported.
1041
1042 2005-04-06 Raphael Neider <rneider AT web.de>
1043
1044         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1045         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1046           callers stack/frame pointers
1047
1048 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1049
1050         * device/include/pic16/usart.h: added, missing in previous commit,
1051         * device/include/pic16/adc.h: fixed typo,
1052         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1053         commit,
1054         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1055         <p18fxxx.inc>
1056         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1057         uninitialized because a bug appears with gplink
1058         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1059         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1060         complains for unrecognised option
1061
1062 2005-04-05 Raphael Neider <rneider AT web.de>
1063
1064         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1065           structs as well (using memcpy)
1066         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1067           on ISRs (GOTO has no label)
1068         * src/pic16/device.h: added OF_OPTIMIZE_DF
1069         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1070           new data flow analysis/optimization
1071         * src/pic16/pcode.c: added (prototypes for and implementation of)
1072           dataflow analysis functions, fixed pCodeInstructions' inCond and
1073           outCond values, made RCALL a branch instruction
1074         * (pic16_unlinkpCode): keep C line if possible
1075         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1076           C line moved if possible
1077         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1078         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1079           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1080         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1081           new flow)
1082         * (pic16_getJumptabpCode): NEW, needed in...
1083         * (LinkFlow): fixed handling of jumptables, calls and conditional
1084           branches
1085         * (pic16_InsertCommentAfter): NEW
1086         * (pic16_pCodeReplace): made verbose and flow preserving
1087         * (AnalyzeFlow): added call to data flow analysis
1088         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1089         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1090         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1091
1092 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1093
1094         * src/SDCCast.c (decorateType): fixed bug #1105626
1095
1096 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1097
1098         * device/include/asm/pic16/features.h,
1099         * pic18f*.h headers,
1100         * device/include/pic16/adc.h,
1101         * device/include/pic16/delay.h,
1102         * device/include/pic16/i2c.h,
1103         * device/include/pic16/malloc.h,
1104         * device/include/pic16/stdio.h,
1105         * device/include/pic16/stdlib.h,
1106         * device/include/pic16/string.h,
1107         * device/lib/pic16/libc/stdio/printf_tiny.c,
1108         * device/lib/pic16/libc/stdio/printf_small.c,
1109         * device/lib/pic16/libc/stdio/strmgpsim.c,
1110         * device/lib/pic16/libc/stdio/strmmssp.c,
1111         * device/lib/pic16/libc/stdio/strmusart.c,
1112         * device/lib/pic16/libc/stdio/vfprintf.c,
1113         * device/lib/pic16/libc/stdlib/ltoa.c,
1114         * device/lib/pic16/libc/stdlib/putchar.c,
1115         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1116         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1117         * device/lib/pic16/libc/stdlib/memchrram.c,
1118         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1119         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1120         * device/lib/pic16/libio/adc/adcbusy.c,
1121         * device/lib/pic16/libio/adc/adcread.c,
1122         * device/lib/pic16/libio/adc/adcsetch.c,
1123         * device/lib/pic16/libio/usart/ubaud.c,
1124         * device/lib/pic16/libio/usart/ubusy.c,
1125         * device/lib/pic16/libio/usart/udrdy.c,
1126         * device/lib/pic16/libio/usart/uopen.c,
1127         * device/lib/pic16/libio/usart/uputc.c,
1128         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1129         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1130         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1131         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1132         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1133         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1134         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1135         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1136         specific keywords to double underlined form,
1137         * device/lib/pic16/libc/Makefile.rules,
1138         * device/lib/pic16/libsdcc/Makefile.rules,
1139         * device/lib/pic16/libm/Makefile,
1140         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1141         to compile with C standard set in Makefile.common
1142         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1143         rand.c and crc.c in compilation process,
1144         * device/lib/pic16/libsdcc/int/divuint.c,
1145         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1146         `c' from signed to unsigned,
1147         * device/lib/pic16/startup/crt0.c,
1148         * device/lib/pic16/startup/crt0i.c,
1149         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1150         keywords to double underlined form, bug fixes in _do_cinit function
1151         which prevented the correct initialization of the .idata segment,
1152         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1153         core to enter a infinite loop
1154         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1155
1156 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1157
1158         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1159
1160 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1161
1162         * device/include/Makefile.in: add support for hc08 subdirectory
1163         * device/include/hc08/: new subdirectory
1164         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1165         Lucas Loizaga, thanks!
1166         * device/include/hc08/mc68hc908qy.h,
1167         * device/include/hc08/mc68hc908gp32.h,
1168         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1169         their own directory. Changed internal macro names to use the compiler
1170         reserved namespace. Changed SDCC specific keywords to double
1171         underlined form.
1172         * device/include/math.h,
1173         * device/include/malloc.h,
1174         * device/include/stdarg.h,
1175         * device/include/stdbool.h
1176         * device/include/string.h,
1177         * device/include/tinibios.h,
1178         * device/include/ds400rom.h,
1179         * device/include/8051.h,
1180         * device/include/8052.h,
1181         * device/include/80c51xa.h,
1182         * device/include/at89c55.h,
1183         * device/include/at89S8252.h,
1184         * device/include/at89x51.h,
1185         * device/include/at89x52.h,
1186         * device/include/ds80c390.h,
1187         * device/include/reg764.h,
1188         * device/include/regc515c.h,
1189         * device/include/sab80515.h,
1190         * device/include/mcs51/c8051f000.h,
1191         * device/include/mcs51/c8051f018.h,
1192         * device/include/mcs51/c8051f020.h,
1193         * device/include/mcs51/c8051f040.h,
1194         * device/include/mcs51/c8051f060.h,
1195         * device/include/mcs51/c8051f120.h,
1196         * device/include/mcs51/c8051f300.h,
1197         * device/include/mcs51/c8051f310.h,
1198         * device/include/mcs51/c8051f320.h,
1199         * device/include/mcs51/c8051f330.h,
1200         * device/include/mcs51/c8051f350.h,
1201         * device/include/z180.h: Changed SDCC specific keywords to double
1202         underlined form.
1203
1204 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1205
1206         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1207         18F4455,
1208         * (pic16_assignConfigWordValue): disable testing of configuration
1209         register value with config mask,
1210         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1211         function with port->fun_prefix,
1212         * (genFunction): when generating a naked interrupt function never
1213         create an absolute segment placed in interrupt vector address, place
1214         the actual interrupt function at IVA instead, when an interrupt
1215         function is generated with unspecified interrupt then do not create
1216         the absolute section,
1217         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1218         code for generating a call to generic pointer get/put function with
1219         a call to function pic16_callGenericPointer(),
1220         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1221         the call to the generic pointer get/put functions with prefixing the
1222         function name with port->fun_prefix,
1223         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1224         * src/pic16/main.c (_process_pragma): prefix function with
1225         port->fun_prefix,
1226         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1227         calling assembler, old 18Fxxxx macro is deprecated,
1228         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1229         PC_ASMDIR in while condition,
1230         * (findInstruction): add PC_ASMDIR in while condition,
1231         * (buildCallTree): prefix main with port->fun_prefix,
1232         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1233         identifier for variable with banked access in instructions BTFSS,
1234         BTFSC, BCF, BSF, BTG
1235         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1236         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1237         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1238         perform optimization when enviroment variable NO_REG_OPT is set,
1239         * (insideLRBlock): NEW, return 1 if register is inside an
1240         INF_LOCALREGS block,
1241         * (RemoveRegFromLRBlock): remove a register that is completely
1242         eliminated by register optimization, but it is still left in local
1243         register store/restore in/from stack block,
1244         * (Remove2pcodes): after removing register, check to see if it
1245         should be removed from local register store/restore in/from stack
1246         block,
1247         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1248         DUMMY_READ_VOLATILE,
1249
1250         * device/include/pic16/adc.h: minor prototype modifications and
1251         update,
1252         * device/include/pic16/malloc.h: added GPL notice various
1253         modifications,
1254         * device/include/pic16/stdint.h: NEW, standard header for ints
1255         * device/include/pic16/delay.h: NEW, header for delay functions,
1256         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1257         delay1mtcy,
1258         * device/include/pic16/signal.h: NEW, header providing helper macros
1259         for implementing signal handlers,
1260         * device/include/pic16/stdio.h: added prototypes for functions,
1261         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1262         prototypes for stdin and stdout, added macro PUTCHAR to
1263         automatically implement putchar function prototype,
1264         * device/include/pic16/usart.h: modified and updated USART library,
1265         * device/lib/pic16/libio/adc/,
1266         * device/lib/pic16/libio/i2c: some modifications to improve library
1267         performance,
1268         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1269         family of functions,
1270         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1271         family of functions and other sources,
1272         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1273         of the PIC18Fxx[28] devices,
1274         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1275         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1276         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1277         _do_cinit function, because the previous failed when local variables
1278         where not placed in the same memory bank,
1279         * device/lib/pic16/libsdcc/char/: various modifications to improve
1280         library performance,
1281         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1282         information on the new functions of the c library and more...
1283
1284 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1285
1286         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1287
1288 2005-03-26 Raphael Neider <rneider AT web.de>
1289
1290         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1291           if condition == CARRY)
1292         * (genCmp): adapted to new genSkipc semantics
1293         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1294           on rIfx (genCmp was broken)
1295
1296 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1297
1298         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1299         * src/z80/main.c (_keywords[]),
1300         * src/SDCCglobal.h (struct options),
1301         * src/SDCC.y,
1302         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1303         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1304         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1305         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1306         always available in leading double underscore form. The C99 support is
1307         mostly missing, but it's a start.
1308         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1309         reserved identifier "__data".
1310
1311 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1312
1313         * src/mcs51/peeph.def: fixed bug 1170013
1314
1315 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1316
1317         * device/include/mcs51reg.h: fixed bug 842007
1318
1319 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1320
1321         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1322         last time.
1323
1324 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1325
1326         * src/port.h (struct PORT),
1327         * src/avr/ralloc.c (avr_assignRegisters),
1328         * src/avr/main.c,
1329         * src/ds390/ralloc.c (ds390_assignRegisters),
1330         * src/ds390/main.c,
1331         * src/hc08/ralloc.c (hc08_assignRegisters),
1332         * src/hc08/main.c,
1333         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1334         * src/mcs51/main.c,
1335         * src/pic/ralloc.c (pic14_assignRegisters),
1336         * src/pic/main.c,
1337         * src/pic16/ralloc.c (pic16_assignRegisters),
1338         * src/pic16/main.c,
1339         * src/xa51/ralloc.c (xa51_assignRegisters),
1340         * src/xa51/main.c,
1341         * src/z80/ralloc.c (z80_assignRegisters),
1342         * src/z80/ralloc.h,
1343         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1344         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1345         * src/SDCCcse.h,
1346         * src/SDCCdflow.c (computeDataFlow),
1347         * src/SDCCdflow.h,
1348         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1349         * src/SDCCloop.h,
1350         * src/SDCCcflow.c (*),
1351         * src/SDCCcflow.h,
1352         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1353         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1354         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1355         immedDom() returning wrong block; probably fixes bug #1160833)
1356
1357 2005-03-20 Borut Razem <borut.razem AT siol.net>
1358
1359         * support/scripts/inc2h.pl: WIN32 port
1360
1361 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1362
1363         * device/lib/makefile.in: added abs.c and labs.c
1364
1365 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1366
1367         * device/include/stdint.h: added
1368         * device/lib/abs.c: added
1369         * device/lib/labs.c: added
1370         * device/include/stdlib.h: added abs() and labs() prototypes
1371         * device/lib/libsdcc.lib: added abs and labs
1372         * device/include/float.h,
1373         * device/lib/_fsmul.c,
1374         * device/lib/printf_fast.c,
1375         * device/lib/printf_tiny.c: updated comments
1376
1377 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1378
1379         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1380         bug #1164313
1381
1382 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1383
1384         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1385         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1386
1387 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1388
1389         * device/lib/printf_large.c: removed inline assembly for portability and
1390           readability. Use printf_fast if speed or size are more important.
1391         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1392         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1393
1394 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1395
1396         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1397         prevent compiler warning
1398
1399 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1400
1401         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1402         moved to level 0 and declared as static. Also they are explicit
1403         placed in access bank. This was necessery because some times they
1404         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1405         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1406         optimizations. Currently only compare to unsigned char is implemented,
1407         * src/pic16/gen.c: added fReturnIdx array,
1408         * (struct resolvedIfx) is moved to gen.h and made public,
1409         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1410         * (aopForSym): added an optimization to directly store in stack of
1411         the operand of a SEND iCode,
1412         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1413         but as registers instead (AOP_REG) using the fReturnIdx array,
1414         * (pic16_freeAsmop): remove the freed register from the
1415         _G.sregsAlloc field,
1416         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1417         a compare of 'WREG',
1418         * (pic16_popGetTempRegCond): changed function prototype, now
1419         function takes also a bitVector argument v which holds the current
1420         set of registers that are allocated for stack access by aopForSym,
1421         registers allocated in aopForSym for accessing stack symbols are not
1422         any more part of the functions usedRegs field,
1423         * (genCall): some times aopOp is called for a stack variable to be
1424         send, aopForSym might perform the push, if this is true make sure
1425         that genCall doesn't push the variable twice by testing _G.resDirect,
1426         * (genFunction): changed testing for unspecified interrupt number
1427         from 256 to INTNO_UNSPEC,
1428         * modified selection scheme of frame pointer generation. Previously
1429         if function did use local registers a frame pointer was generated,
1430         now a frame pointer is generated only if function has arguments
1431         (that need PLUSW2 register access), or has stack arguments, or the
1432         compiler is not instructed to omit the frame pointer,
1433         * (genEndFunction): before restoring local registers that were saved
1434         in the function preamble, also restore the registers that *might*
1435         have been allocated for stack access,
1436         * (genRet): removed some old comments,
1437         * (genCmp, the active (RN's) version): added a call to the
1438         pic16_genCmp_special function to perform the compare with a more
1439         robust and optimized way,
1440         * (genInline): a feature has been added in inline code generation,
1441         which allows a wildcard variable substitution when writing inline
1442         assembly. Code is incomplete and experimental therefore undocumented,
1443         * (genCast): changed order of aopOp for result and right to allow
1444         aopForSym to directly load the result if possible,
1445         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1446         perform an optimized compare on some selected special occasions,
1447         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1448         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1449         generate an IVT any more,
1450         * src/pic16/main.c (pic16_optionsTable): added command line option
1451         --optimize-cmp,
1452         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1453         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1454         macros,
1455         * src/pic16/NOTES: Raphael Neider added in list of active developers
1456         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1457         jumptable_end to prevent bug #,
1458         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1459         inCond and outCond fields,
1460         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1461         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1462         turn off register spilling,
1463         * (packRegsForOneUse): synced with other ports' versions although it
1464         is not used currently,
1465         * (pic16_packRegisters): added an optimization while reading
1466         structure bitfields, some registers may be saved (malloc code is
1467         decreased by 80 bytes)
1468
1469 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1470
1471         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1472         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1473         this can be optimized more?
1474
1475 2005-03-10 Raphael Neider <rneider AT web.de>
1476
1477         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1478           genNearPointerGet): (hopefully) fixed access to bitfields via
1479           pointers (p->bitN = x; and x = p->bitN; failed)
1480
1481 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1482
1483         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1484
1485 2005-03-09 Raphael Neider <rneider AT web.de>
1486
1487         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1488
1489 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1490
1491         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1492         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1493           (regTypeNum): set REG_BIT type if necessary
1494         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1495         * support/regression/tests/critical.c: check bug 1144613
1496
1497 2005-03-02 Raphael Neider <rneider AT web.de>
1498
1499         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1500
1501 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1502
1503         * src/avr/ralloc.c (serialRegAssign),
1504         * src/ds390/ralloc.c (serialRegAssign),
1505         * src/hc08/ralloc.c (serialRegAssign),
1506         * src/mcs51/ralloc.c (serialRegAssign),
1507         * src/pic/ralloc.c (serialRegAssign),
1508         * src/pic16/ralloc.c (serialRegAssign),
1509         * src/xa51/ralloc.c (serialRegAssign),
1510         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1511
1512 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1513
1514         * src/SDCCast.c (decorateType): fixed bug 1124787
1515
1516 2005-02-20 Hubert Sack <sack AT digiplan.de>
1517         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1518
1519         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1520         patch #1121755
1521
1522 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1523
1524         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1525         to keep the correct label reference count when adding/removing references
1526         to labels. A peephole file using this is appended to patch #1144962.
1527
1528 2005-02-14 Raphael Neider <rneider AT web.de>
1529
1530         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1531         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1532         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1533           retrievals of result operand's value on assignment
1534
1535 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1536
1537         * device/include/pic16/string.h: modified prototype for memccpy()
1538         to memccpy(void *, void *, char, size_t)
1539         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1540         check whether to omit frame pointer or not,
1541         * (genInline): convert all occurences of "\n" to LF in inline
1542         assembler blocks, this helps formatting the inline text,
1543         * (pic16_loadFSR0): modified prototype,
1544         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1545         removed some 8051 legacy code,
1546         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1547         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1548         before allocating temporary registers in functions,
1549
1550 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1551
1552         * support/regression/tests/bitvars.c: corrected the "fix"
1553
1554 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1555
1556         * support/regression/tests/bitvars.c,
1557         * support/regression/tests/bitwise.c,
1558         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1559
1560 2005-02-10 Raphael Neider <rneider AT web.de>
1561
1562         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1563           different size for Alpha
1564         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1565
1566 2005-02-09 Raphael Neider <rneider AT web.de>
1567
1568         * src/SDCC.lex(doPragma) : save and restore warning options as well
1569           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1570         * have #pragma less_pedantic set the errorlevel to WARNING
1571           (fixes #1117001)
1572         * (cloneOptimize) : fixed wrong malloc's size
1573         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1574           facilitate correct handling of #pragma (save|restore)
1575
1576 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1577
1578         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1579
1580 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1581
1582         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1583
1584 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1585
1586         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1587
1588 2005-02-02 Raphael Neider <rneider AT web.de>
1589
1590         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1591         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1592         * (pic16_storeForReturn): fixed to allow returning function pointers
1593         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1594         * device/include/pic16/{stddef.h,stdbool.h}: added
1595
1596 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1597
1598         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1599
1600 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1601
1602         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1603         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1604          appeared to be required
1605
1606 2005-01-31 Borut Razem <borut.razem AT siol.net>
1607
1608         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1609           include/mcs51 and include/z80 directories to the package
1610
1611 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1612
1613         * src/hc08/gen.c (genFunction): fixed bug #1112752
1614
1615 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1616
1617         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1618
1619 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1620
1621         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1622
1623 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1624
1625         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1626
1627 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1628
1629         * device/include/c8051fxxx.h: removed these 6 files
1630         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1631
1632 2005-01-26 Raphael Neider <rneider AT web.de>
1633
1634         * src/pic16/gen.c (genAssign): fixed assignment from longs
1635           in codespace (were cut to three bytes)
1636         * (genDummyRead): implemented (except for CODESPACE...),
1637           fixed bug #1108575
1638         * src/pic16/glue.c (emitStatistics): beautified
1639         * device/lib/pic16/libm/Makefile: added include path
1640
1641 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1642
1643         * src/z80/gen.c (aopPut): fixed bug #1103902
1644
1645 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1646
1647         * device/lib/expf.c: fixed bug #1095792
1648
1649 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1650
1651         * device/lib/pic16/libm: added Math library sources
1652
1653 2005-01-24 Raphael Neider <rneider AT web.de>
1654
1655         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1656           to enable upcast to pCodeOpReg2 (there is no type tag to
1657           differenciate the two and pic16_popGet2p cast into PCOR2)
1658         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1659           (sizeof(sectNames) changed to sizeof(sectName))
1660           Both patches fix segfaults under MinGW.
1661
1662 2005-01-23 Raphael Neider <rneider AT web.de>
1663
1664         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1665           Safe_[mc]?alloc()'ed variables
1666         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1667           of (byte sized) temporaries (assign them to WREG for now)
1668         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1669           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1670           this might fix SIGSEGVs on MinGW...
1671         * src/SDCCopt.c (killDeadCode): restored original behaviour
1672           (volatile operands might get thrown away though)
1673
1674 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1675
1676         * src/pic16/gen.c: fixed bug #1106975,
1677         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1678         pointer update, INTCON is saved, global interrupts are disabled and
1679         restored after updateing TOS.
1680         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1681         * added function attribute 'shadowregs' to take advantage of shadow
1682         registers,
1683         * added function attribute 'wparam' as an alternative to the wparam
1684         pragma,
1685         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1686         user declares a non-ISR function as 'shadowregs',
1687         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1688
1689 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1690
1691         * .version: bumped version number to 2.4.8
1692         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1693         pic16 port,
1694         * device/lib/pic16/libio/i2c/: I2C module support library,
1695         * device/include/pic16/i2c.h: I2C support library header,
1696         * device/lib/pic16/libc/stdio/: standard IO support sources,
1697         * (printf_small.c): printf_small() source, supports float print,
1698         * (printf_tiny.c): printf_tiny() source, does not support floats,
1699         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1700         enable global optimizations for entire library source, other
1701         Makefiles in the source tree are also modified to reflect this,
1702         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1703         function,
1704         * doc/sdccman.lyx: updated to reflect new changes,
1705         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1706         sym->onStack if-case,
1707         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1708         sbit, idata, _idata, xdata, _xdata,
1709         * added pragma library, to link an external library, (see doc),
1710         * removed command line options, --pomit-config-words, --pomit-ivt,
1711         --pleave-reset-vector,
1712         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1713         when calling assembler to reflect memory model used, also define
1714         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1715         reflect stack model used,
1716         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1717         on stack return NULL,
1718
1719 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1720
1721         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1722           of the operands is volatile. Fixes #1020220
1723
1724 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1725
1726         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1727         * (OptimizeRegUsage): make sure that there is really no other flow where
1728           the first pCode is used
1729
1730 2005-01-22 Raphael Neider <rneider AT web.de>
1731
1732         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1733           to fix #1106967 (pCode->seq are not set up correctly)
1734
1735 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1736
1737         * src/SDCCglue.c (glue): make sure code area is declared before the
1738         static initialization area.
1739
1740 2005-01-21 Raphael Neider <rneider AT web.de>
1741
1742         * device/lib/Makefile.in: fixed test for pic16 install dir
1743         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1744           optimizations
1745         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1746           added --optimize-goto compiler switch and pragma wparam documentation
1747         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1748         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1749           and PRODH closing bug #1071770 (peephole optimizer)
1750
1751 2005-01-19 Raphael Neider <rneider AT web.de>
1752
1753         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1754           cmdLine buffers (used when calling sdcpp...) are large enough
1755           (MAX_PATH=256 truncates arguments leading to system halts when
1756           used in MinGW...)
1757         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1758         * (genUminus): rewritten to for efficiency
1759         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1760           used uninitialized in some cases)
1761         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1762           copy the third byte from the int -- now assumes 0x80 (data memory)
1763         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1764           operands (genAddLit expects the iCode's operands to swapped as
1765           well), fixed leftover bytes (crashed for short left operands)
1766         * (pic16_genMinusDec): performance improvements, removed false
1767           PIC14 emitSKPNCs
1768         * (pic16_genMinus): fixed to cope with differently sized operands
1769         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1770           for --obanksel > 1
1771         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1772         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1773           new banksel optimization
1774         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1775           analysis for temporary registers (segfaults...)
1776         * src/pic16/peeph.def: added rule
1777
1778 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1779
1780         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1781         which converts a float number to its ASCII representation
1782         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1783         functions to convert the fractional and integer part of a float to ASCII,
1784         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1785         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1786         ram
1787         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1788         _STATMEM macros,
1789         * device/include/pic16/adc.h: added GPL info,
1790         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1791         a pCodeOp as tested operand,
1792         * (genNearPointerGet): optimized bit testing, does not use
1793         intermediate register for bit value, test directly instead with
1794         BTFSS, BTFSC, works only for single bits,
1795         * (genpic16Code): dump the name of the iCode in the asm,
1796         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1797         renamed to pic16_decodeOp,
1798         * (serialRegAssign): do not allocate a temporary register for iCode
1799         sequences that test a single bit for 1/0
1800
1801 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1802
1803         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1804         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1805         access stack and frame pointers. They are initially assigned to
1806         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1807         accessing SFRs. Updated all occurences of modification of stack or
1808         frame pointer in gen.c and pcode.c,
1809         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1810         assigning of a literal value to pointers,
1811         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1812         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1813         selected
1814
1815 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1816
1817         * doc/sdccman.lyx: update documentation about stack pragma, added
1818         some info for stack memory models
1819
1820 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1821
1822         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1823
1824 2005-01-08 Raphael Neider <rneider AT web.de>
1825
1826         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1827           udata sections to fix bug #1097823
1828
1829 2005-01-05 Raphael Neider <rneider AT web.de>
1830
1831         * src/pic16/gen.c (genGenericShift): added handling of differently
1832           sized left operand and result
1833
1834 2005-01-04 Raphael Neider <rneider AT web.de>
1835
1836         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1837         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1838           to hold the condition bit)
1839         * added new version of genCmp (old code available via #define)
1840         * added new version of genShiftLeft/genShiftRight in a generic
1841           way, now supports shifting by negative values
1842         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1843           shiftCount (expected by genGenericShift)
1844         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1845         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1846           dump
1847         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1848           is an invalid literal too...)
1849
1850 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1851
1852         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1853         from Raphael Neider,
1854         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1855         for 8-bit literals. This fixes some literal operands which are sign
1856         extended to 16-bits ints when instruction needs only 8-bits.
1857
1858 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1859
1860         * device/lib/logf.c: added mcs51 assembly version
1861         * device/lib/expf.c: added mcs51 assembly version
1862         * device/lib/_logexpf.c: new shared asm code for expf and logf
1863         * device/include/math.h: add defines for assembly math library
1864         * device/lib/Makefile.in: build new _logexpf.c
1865         * device/lib/libfloat.lib: use new _logexpf.c
1866
1867 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1868
1869         * src/pic/device.c
1870         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1871           device types which have less than 0x7f registers.
1872
1873 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1874
1875         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1876
1877 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1878
1879         * device/lib/printf_fast.c: only build on supported arch.
1880         * device/lib/printf_tiny.c: only build on supported arch.
1881         * device/lib/printf_fast_f.c: only build if asm float lib
1882         * device/lib/_fsget1arg.c: only build if asm float lib
1883         * device/lib/_fsget2args.c: only build if asm float lib
1884         * device/lib/_fsnormalize.c: only build if asm float lib
1885         * device/lib/_fsreturnval.c: only build if asm float lib
1886         * device/lib/_fsrshift.c: only build if asm float lib
1887         * device/lib/_fsswapargs.c: only build if asm float lib
1888         * device/include/stdio.h: don't provide print_fast,
1889           print_fast_f, print_tiny prototypes if --xstack used
1890
1891 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1892
1893         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1894         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1895           to the SOURCES
1896
1897 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1898
1899         * device/lib/printf_fast_f.c: same as printf_fast, but
1900           with floating point enabled
1901         * device/lib/printf_fast.c: minor tweaks
1902         * device/include/stdio.h: add printf_fast_f
1903
1904 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1905
1906         * src/SDCCmain.c: make --float-reent default for mcs51
1907         * device/lib/_fsadd.c: added mcs51 assembly version
1908         * device/lib/_fssub.c: added mcs51 assembly version
1909         * device/lib/_fsmul.c: added mcs51 assembly version
1910         * device/lib/_fsdiv.c: added mcs51 assembly version
1911         * device/lib/_fseq.c: added mcs51 assembly version
1912         * device/lib/_fsneq.c: added mcs51 assembly version
1913         * device/lib/_fsgt.c: added mcs51 assembly version
1914         * device/lib/_fslt.c: added mcs51 assembly version
1915         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1916         * device/lib/Makefile.in: add _fscmp to build
1917         * device/lib/libfloat.lib: add _fscmp to build
1918
1919 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1920
1921         * device/lib/_fs2slong.c: added mcs51 assembly version
1922         * device/lib/_fs2sint.c: added mcs51 assembly version
1923         * device/lib/_fs2schar.c: added mcs51 assembly version
1924         * device/lib/_fs2ulong.c: added mcs51 assembly version
1925         * device/lib/_fs2uint.c: added mcs51 assembly version
1926         * device/lib/_fs2uchar.c: added mcs51 assembly version
1927         * device/lib/_slong2fs.c: added mcs51 assembly version
1928         * device/lib/_sint2fs.c: added mcs51 assembly version
1929         * device/lib/_schar2fs.c: added mcs51 assembly version
1930         * device/lib/_ulong2fs.c: added mcs51 assembly version
1931         * device/lib/_uint2fs.c: added mcs51 assembly version
1932         * device/lib/_uchar2fs.c: added mcs51 assembly version
1933         * device/include/float.h: added #define to select asm vs c
1934
1935 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1936
1937         * device/lib/printf_fast.c: improvements to float output
1938         * device/include/float.h: add defines for assembly float library
1939         * device/lib/_fsget1arg.c: receive 1 float arg
1940         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1941         * device/lib/_fsnormalize.c: normalize a float
1942         * device/lib/_fsreturnval.c: return float, various helper routines
1943         * device/lib/_fsrshift.c: right shift a float's mantissa
1944         * device/lib/_fsswapargs.c: swap 2 floats
1945         * device/lib/Makefile.in: build these 6 new files for mcs51
1946         * device/lib/libfloat.lib: add these 6 files to the library
1947
1948 2004-12-26 Borut Razem <borut.razem AT siol.net>
1949
1950         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1951           built by gcc 3.4.2
1952
1953 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1954
1955         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1956           and fully reentrant and register bank neutral.
1957         * device/lib/printf_fast.c: added float (not enabled by default),
1958           added compact/slower integer (also not enabled by default),
1959           improved size/speed of fast integer code, other minor changes
1960         * device/include/stdio.h, device/lib/Makefile.in,
1961           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1962
1963 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1964
1965         * src/pic16/pcode.c: declaring variables other than at the start of a
1966           block is not supported in C by VC6.
1967
1968 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1969
1970         * applied a previous patch from Raphael Neider that wasn't included
1971         in the previous commits, which fixes infinite loops within jumptable
1972         improvements,
1973         * made some fixes that previous patches introduced
1974
1975 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1976
1977         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1978         that fixes an issue with AOP_PCODE asmop's offset,
1979         * (pic16_popCopyReg): update instance field too,
1980         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1981         function of pic port,
1982         * (genCmp, genAnd, genAssign),
1983         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1984
1985 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1986
1987         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1988         variables initial values to idata section,
1989         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1990         variables in some functions. This utilizes parmBytes field of iCode
1991         structure to hold the offset of the variable in stack. (might be
1992         able to use the stack field too?)
1993         * applied patch from Raphael Neider # ### , # ###
1994         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1995         variable initial values in idata section,
1996         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1997         for static variables with initial value
1998         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1999         applied fix in while loop from Raphael Neider.
2000
2001 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2002
2003         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2004         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2005         * src/ds390/ralloc.c (serialRegAssign): spill bits
2006         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2007         * support/Util/SDCCerr.c,
2008         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2009         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2010         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2011
2012 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2013
2014         * device/include/sdcc-lib.h: inserted LGPL, added includes
2015           asm/ds390/features.h and asm/mcs51/features.h
2016         * device/include/asm/default/features.h,
2017         * device/include/asm/gbz80/features.h,
2018         * device/include/asm/z80/features.h: added empty _AUTOMEM
2019           and _STATMEM
2020         * device/include/asm/ds390/features.h,
2021         * device/include/asm/mcs51/features.h: added files with defines for
2022           _AUTOMEM and _STATMEM indicating automatic and static storage class
2023         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2024         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2025         * src/SDCCicode.c (geniCodeCast),
2026         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2027         * src/SDCCloop.c (loopInduction): removed unused variable lr
2028         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2029           to convertToFcall to include char modulo (RFE 1065037), added check
2030           if left operand is unsigned and use abs of literal value
2031         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2032           as it doesn't work after conversion from peephole.def to peephole.rul
2033         * src/mcs51/gen.c (toBoolean): added check for size,
2034           (genModOneByte): optimized code for signed char modulo a literal
2035           power of 2 (thanks to Hubert Sack),
2036           (genRRC): removed unnecessary "clr c",
2037           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2038         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2039           jump optimization,
2040           swapped rules 256.c and 256.d,
2041           extended 256.d by using new multiple checks (thanks Erik),
2042           added rules 256.e and 256.f,
2043           updated rule 261.a and 261.b to new generated code
2044         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2045
2046 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2047
2048         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2049           induction related bugs, including first part of bug #1074377
2050
2051 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2052
2053         * applied patch from bug-report #1076292,
2054         * applied patches for genAnd and Goto-optimizations for Raphael
2055         Neider,
2056         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2057         dump a less iCode information,
2058         * src/pic16/device.h (pic16_options_t): added field debgen,
2059         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2060         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2061         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2062         puclic,
2063         * (various functions): added macros FENTRY and FENTRY2 to functions,
2064         to emit function prologue,
2065         * (various functions): fixed indentation,
2066         * (genNearPointerGet): fixed loading of FSR0,
2067         * (genPackBits): applied patch from Raphael Neider to fix updating
2068         of FSR0 and touching only the modified bits,
2069         * src/pic16/genarith.c (various functions): added macros FENTRY to
2070         emit function prologue in comments,
2071         * src/pic16/pcode.h: added functions debugf2, debugf3,
2072         * src/pic16/ralloc.c: partial fix for packForPush caused
2073         segmentation fault,
2074
2075 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2076
2077         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2078           <stsp AT users.sourceforge.net> with reversed byte order
2079         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2080
2081 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2082
2083         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2084           bug #1074377
2085         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2086         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2087
2088 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2089
2090         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2091
2092 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2093
2094         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2095           conditions,
2096           (setFromConditionArgs): friendly operand parser for peephole rules,
2097           (operandBaseName, operandsNotRelated): new peephole condition
2098           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2099           architecture specific register naming into account, handles n-way
2100           comparisons, and supports quoted literals
2101         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2102
2103 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2104
2105         * src/mcs51/peeph.def: fixed bug #1076940
2106
2107 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2108
2109         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2110
2111 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2112
2113         Adding support for replacing ljmps with sjmps in jumptables
2114         generated for switch statements. For now you need to set the
2115         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2116         Now 4 algorithms for mcs51 jumptable generation are used:
2117         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2118         addresses loaded pc-relative for up to 112 cases and stack-pushing
2119         target addresses loaded with offset from dptr for up to 256 cases.
2120
2121         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2122         * src/mcs51/main.c: adapted constants for switch table generation
2123         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2124
2125 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2126
2127         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2128         * support/regression/tests/bug1057979.c: added test for bug 1073386
2129
2130 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2131
2132         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2133         compilers
2134
2135 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2136
2137         * src/pic16/device.h,
2138         * src/pic16/genarith.c,
2139         * src/pic16/glue.c,
2140         * src/pic16/main.c,
2141         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2142
2143 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2144
2145         Large cummulative patch for pic16 port.
2146         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2147         to call when a stack overflow occurs,
2148         * (malloc.h): added CVS Id tag,
2149         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2150         variable,
2151         * added libc directory. The current version of LibC contains string
2152         functions, ctype functions and macros and some functions of the
2153         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2154         be extensively tested in the future. Standard disclaimer here.
2155         Library is not automatically build yet. But one can build it by
2156         invoking 'make' inside the libc directory.
2157         * added ADC library under libio. Preliminary version yet.
2158
2159         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2160         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2161         aopForRemat() now and not by pic16_aopOp(),
2162         * (pic16_popGetTempReg): removed warning messgae when allocating
2163         temporary registers, its a buggy feature and will be removed,
2164         * (pic16_popGet): set register instance field in AOP_CRY,
2165         * (pic16_outBitC): fixed for results in size greater than 1,
2166         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2167         * (pic16_storeForReturn): optimized return of 0,
2168         * (genCmp): experimental code for new genCmp which uses PIC18's
2169         special compare&skip instructions. Initial tests fail some times
2170         with variables grater than 1 byte in size, so new code is disabled,
2171         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2172         a single bit,
2173         * (genCast): began a fix to optimize the casting of a bit to another
2174         bit, now assigning a bitfield to another bitfield will fail, sorry,
2175         * src/pic16/main.c: disabled the use of lr-support feature,
2176         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2177         * added some function prototypes, added function _debugf prototype,
2178         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2179         bits with offset (case PO_GPR_BIT),
2180         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2181         command line,
2182         * (isBankInstruction): modified to return 0 for no banking instruction,
2183         and 1 for banking instruction,
2184         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2185         caused stop processing pCodes after a inline assembly block,
2186         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2187         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2188         registers when it shouldn't,
2189         * src/pic16/ralloc.c (allocReg): add preliminary support for
2190         supporting a limited set of temporary registers,
2191
2192 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2193
2194         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2195           genDataPointerSet): ensure assignments always copy in MSB to LSB
2196           order,
2197           (loadRegFromAop): recognize CLRH optimization,
2198           (genFunction): optimize RECEIVE iCodes in reentrant functions
2199
2200 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2201
2202         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2203           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2204           selected.
2205         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2206         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2207           contiguous with data
2208
2209 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2210
2211         * device/lib/_gptrget.c (_gptrget),
2212         * device/lib/_gptrgetc.c (_gptrgetc),
2213         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2214           instead of sjmp to ret
2215         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2216           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2217
2218 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2219
2220         * .version: bumped version to 2.4.7
2221         * device/lib/_gptrget.c (_gptrget): is now _naked
2222         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2223         * device/lib/_gptrput.c (_gptrput): is now _naked
2224         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2225           (createFunction): fixed xstack
2226         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2227         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2228           or bit either,
2229           (geniCodeCritical): store original interrupt state in an iTemp bit
2230           var unless stack-auto
2231         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2232         * src/SDCCmain.c (setIncludePath): added include/target to search path
2233         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2234         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2235           prototype,
2236           (processFuncArgs): put bit vars in bit area
2237         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2238           unsaveRBank): fixed xstack,
2239           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2240           (genFunction, genEndFunction): fixed xstack,
2241           (genAssign): optimization don't walk backwards through mem
2242         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2243         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2244         * support/regression/Makefile: also make library (for stack-auto) when
2245           making "all" and added "test-mcs51-xstack-auto"
2246         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2247         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2248         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2249         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2250         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2251           make-library by MAKE_LIBRARY
2252         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2253           regression tests for xstack
2254         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2255         * support/regression/tests/critical.c: test for critical on mcs51
2256
2257 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2258
2259         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2260           built version of sdcc instead of installed version
2261
2262 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2263
2264         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2265         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2266           vprintf.c now
2267         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2268         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2269           WARNING: remove device/lib/build/z80/printf.o by hand when
2270           updating from previous build!
2271         * device/lib/z80/printf.c: updated comment
2272         * support/regression/tests/bug1057979.c: test all ports now
2273         * support/regression/tests/bug1065458.c: file added
2274
2275 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2276
2277         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2278           *_start and *_end symbols for static functions
2279
2280 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2281
2282         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2283           and search crt0.o in all library paths,
2284           (setIncludePath): proper handling of --nostdinc,
2285           (setLibPath): proper handling of --nostdlib
2286         * support/regression/Makefile,
2287         * support/regression/ports/ds390/spec.mk,
2288         * support/regression/ports/gbz80/spec.mk,
2289         * support/regression/ports/hc08/spec.mk,
2290         * support/regression/ports/mcs51/spec.mk,
2291         * support/regression/ports/mcs51-large/spec.mk,
2292         * support/regression/ports/mcs51-stack-auto/spec.mk,
2293         * support/regression/ports/z80/spec.mk: use include and lib files from
2294           built version of sdcc instead of installed version
2295         * doc/sdccman.lyx: fixed typo in --nostdinc
2296
2297 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2298
2299         * src/pic/pcode.c,
2300         * src/pic/device.c,
2301         * src/pic/ralloc.c,
2302         * src/pic/gen.c : added support to generate code for struct bit fields.
2303
2304 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2305
2306         * as/xa51/xa_version.h,
2307         * device/include/errno.h,
2308         * device/include/regc515c.h,
2309         * device/lib/_itoa.c,
2310         * device/lib/_ltoa.c,
2311         * device/lib/ser_ir_cts_rts.c,
2312         * sim/ucsim/xa.src/glob.cc,
2313         * sim/ucsim/xa.src/inst_gen.cc,
2314         * sim/ucsim/xa.src/xa_bit.cc,
2315         * sim/ucsim/xa.src/xa_sfr.cc,
2316         * sim/ucsim/z80.src/inst_dd.cc,
2317         * sim/ucsim/z80.src/inst_fdcb.cc,
2318         * support/scripts/keil2sdcc.pl,
2319         * src/pic16/pic16.dsp,
2320         * src/pic16/pic16a.dsp: corrected cvs line endings
2321         * device/lib/printf_large.c: fixed bug 1057979
2322         * src/pic16/gen.c: fixed non-C standard code
2323         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2324         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2325         * support/regression/ports/mcs51/support.c: reload T1 asap
2326         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2327           pdata use and clear idata startup behaviour
2328         * support/regression/tests/bug1057979.c: added
2329
2330 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2331
2332         * device/examples/ds390/ow390/ad26.h,
2333         * device/examples/ds390/ow390/cnt1d.h,
2334         * device/examples/ds390/ow390/crcutil.c,
2335         * device/examples/ds390/ow390/ownet.h,
2336         * device/examples/ds390/ow390/owsesu.c,
2337         * device/examples/ds390/ow390/swt12.h,
2338         * device/examples/ds390/ow390/swtoper.c,
2339         * device/examples/ds390/ow390/temp10.h,
2340         * device/examples/ds390/ow390/thermodl.c,
2341         * device/examples/ds390/tinitalk/tinitalk.dsp,
2342         * device/examples/ds390/tinitalk/tinitalk.dsw,
2343         * device/examples/mcs51/clock/hw.h,
2344         * device/examples/mcs51/simple2/go.bat,
2345         * device/examples/serialcomm/windows/serial.h,
2346         * device/examples/xa51/dummy.c,
2347         * device/examples/xa51/hello.c,
2348         * device/include/80c51xa.h,
2349         * device/include/at89x051.h: corrected cvs line endings
2350
2351 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2352
2353         * src/pic16/main.c (options): added command line --gstack, to trace
2354         stack over/under flows,
2355         * added pragma 'wparam' to allow passing first byte of function
2356         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2357         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2358         call to __gstack_test function and sets up the symbol as extern,
2359         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2360         * popaop): added call to pic16_testStackOverflow,
2361         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2362         wparamList list,
2363         * (genCall, genPcall): now all parameters are passed via stack
2364         except in functions that are pass to wparam pragma in which WREG is
2365         used too,
2366         * (genPcall): REENTRANT flag is checked to see if variable prototype
2367         contains reentrant keyword, don't call a non-reentrant function, via
2368         a reentrant function pointer or vice versa, functions are never
2369         passed via WREG,
2370         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2371         D.Winkler,
2372         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2373         SIGSEGV when accessing a NULL register stucture,
2374         * (pic16_printGPointerType): modified to handle UPPER modifier for
2375         function initializers, changed prototype of function to simpler one,
2376         * (pic16_printIvalFuncPtr): check to see if function is already
2377         added in externs list,
2378         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2379         optimized a move from W to SFR with a move to the same register
2380         later after a CALL,
2381         * device/lib/pic16/debug: NEW directory, contains debug features
2382         which are enabled when linking with libdebug.lib, currently command
2383         line option --gstack enables stack pointer tracing for over/under
2384         flow, corresponding sources are in debug/gstack
2385
2386 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2387
2388         * doc/sdccman.lyx: updated SDCC version,
2389         * (PIC16 port): update list of command line options,
2390         * src/pic16/device.h (structure pic16_options_t): added field gstack
2391         to enable stack overflow tracing on push/pops,
2392         * src/pic16/device.c (statistics structure): added statistics
2393         structure,
2394         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2395         pic16_dump_int_registers): increase statistics counters for each
2396         * variable which is encountered
2397         * (pic16_dump_usection): emit each .udata variable to its own udata
2398         section,
2399         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2400         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2401         parameters via stack, otherwise use old scheme,
2402         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2403         assembler output file,
2404         * src/pic16/main.c: added command line options --gstack to enable
2405         push/pop tracing for stack overflow,
2406         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2407         instructions): added size of each instruction,
2408         * (pic16_countInstruction): estimate size of instructions in
2409         the_pFile list, inline assembly blocks are not counted,
2410         * (pic16_FixRegisterBanking): trace previous register usage, when
2411         banksel optimizations is greater than 0, don't emit a redudant
2412         banksel directive,
2413
2414 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2415
2416         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2417         * src/pic16/ralloc.c : applied same fix for pic16.
2418         * src/pic/gen.c : tidied it up a little.
2419
2420 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2421
2422         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2423         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2424
2425 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2426
2427         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2428
2429 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2430
2431         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2432         non-reentrant function __modsint in the interrupt function (thus
2433         corrupting math operations during serial I/O)
2434         * device/lib/ser_ir.c: as above, changed buffersize
2435         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2436         256.c,d for zeroing
2437         * doc/Makefile: added option -t for rsync
2438
2439 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2440
2441         * src/SDCCast.h (struct ast),
2442         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2443
2444 2004-10-20 Borut Razem <borut.razem AT siol.net>
2445
2446         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2447         package
2448
2449 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2450
2451         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2452         makefile targets,
2453         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2454         support functions to replace long sequences of MOVFF's from access
2455         bank registers to stack and vice versa,
2456         * src/pic16/device.h: added new field opt_flags, where optimization
2457         flags can be set to enable certain features,
2458         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2459         * pBlock, (genFunction, genEndFunction): surroung loop for
2460         saving/loading used registers in stack with PC_INFO pCodes,
2461         INF_LREGS. Code in between can then be optimized by pCode optimizer
2462         to support function calls,
2463         * (genDataPointerSet): fixed bug which loaded float fields in
2464         structures with corrupt data,
2465         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2466         in a standard way debug info on stderr. Feature used for developing
2467         and debugging only,
2468         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2469         obsolete chunks of code,
2470         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2471         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2472         * pic16/src/pcode.c (pic16_newpCodeInfo,
2473         * (pic16_newpCodeOpLocalRegs),
2474         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2475         feature,
2476         * (pic16_pCodeConstString): printing of the initial value of a
2477         symbol as a comment is inhibited since parsing was already done by
2478         copyStr and output is corrupt,
2479         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2480
2481 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2482
2483         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2484
2485 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2486
2487         * as/mcs51/lkarea.c: removed old K&R style,
2488           (lnksect): changed check on boundary error,
2489           (lnksect2): changed check on boundary error,
2490           (lnksect2): extend XSTK to end of page if size = 1
2491         * as/mcs51/lkmain.c: removed old K&R style,
2492           (Areas51): create l_IRAM symbol
2493         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2494         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2495           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2496         * device/lib/_mullong.c: added version to be compiled with xstack
2497         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2498         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2499         * device/lib/mcs51/crtxstack.asm: fixed comment
2500         * src/SDCCglue.c: maxInterrupts defaults to 0,
2501           (emitMaps): added pdata,
2502           (createInterruptVect): (re)moved default,
2503           (glue): added pdata,
2504           (glue): moved __start__xstack to XSTK with default size 1
2505         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2506           and options.float_rent when options.stackAuto is set,
2507           (linkEdit): only write XDATA_NAME if provided on command line
2508         * src/SDCCmem.h,
2509         * src/SDCCmem.c: added pdata
2510         * src/port.h: added pdata_name to PORT
2511         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2512           (saveRegisters, unsaveRegisters): removed usage of B,
2513           (genMinus): fixed accumulator clash,
2514           (genJumpTab): added comment, this needs another look
2515         * src/mcs51/gen.c: added check for "B in use" paranoia,
2516           added pushB() and popB()
2517         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2518           chance
2519         * src/avr/main.c,
2520         * src/ds390/main.c,
2521         * src/hc08/main.c,
2522         * src/mcs51/main.c,
2523         * src/pic/main.c,
2524         * src/pic16/main.c,
2525         * src/xa51/main.c,
2526         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2527           added PSEG (PAG,XDATA) or NULL to port specifier
2528         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2529         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2530           (_mcs51_genInitStartup): removed __start__xstack equ,
2531           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2532         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2533         * src/z80/gen.c (_rleAppend): fixed warnings
2534         * support/regression/tests/zeropad.c: added pdata test
2535         * .version: bumped to 2.4.6
2536
2537 2004-10-17 Borut Razem <borut.razem AT siol.net>
2538
2539         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2540         as a part of nightly build
2541
2542 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2543
2544         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2545         WREG holds the first byte function parameters,
2546         * (aopForSym): take special case for symbols which are in FARSPACE
2547         but in CODESPACE too,
2548         * (assignResultValue): modified to take into account _G.useWreg,
2549         * (genCall): don't use wreg for parameter passing when function is
2550         declared as reentrant, too, added optimization INCF to stack
2551         pointer when stack parameter count is 1,
2552         * (genFunction, genEndFunction): refurnished and fixed to not using
2553         wreg for passing parameters when function has varargs or is
2554         reentrant, fixed bug with symbol name compare for generating
2555         functions in absolute address,
2556         * (pic16_storeForReturn): refurnished,
2557         * (genCmp): began writing a new version of the function, not ready
2558         yet, therefore it is disabled,
2559         * (genAssign): do not read code memory when assigning a function to
2560         a pointer function,
2561         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2562         array of characters, not pointer,
2563         * (pic16initialComments): in debug mode emit an .ident directive for
2564         the assembler,
2565         * (_process_pragma): emit a new warning type (internal to pic16)
2566         when setting stack to default length, emit a similar warning when
2567         placing a function at absolute address and address is not word aligned
2568         * (_pic16_parseOptions): added 'return TRUE' statement,
2569         * (_pic16_linkEdit): if compiling a source, then add the source's
2570         file object, first in the list of objects to link,
2571
2572 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2573
2574         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2575         * src/pic/main.c : removed VC warning.
2576         * src/pic/gen.c : changed comment.
2577
2578 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2579
2580         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2581         reference to a deprecated symbol _GPTRREG was causing failure to
2582         link. Thanks G. M. Gallant for the info.
2583
2584 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2585
2586         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2587         comments for Bugs item #954788.
2588
2589 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2590
2591         * src/pic16/device.c (pic16_dump_gsection,
2592         * pic16_groupRegistersInSection): handle symbols declared to be in
2593         access bank differently,
2594         * src/pic16/gen.c (struct _G): added field resDirect,
2595         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2596         send values read from stack directly to result and don't allocate
2597         temporary values,
2598         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2599         same registers,
2600         * (pic16_sameRegsOfs): NEW,
2601         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2602         free because they were not allocated from temporary pool,
2603         * pic16_popRegFromString): workaround to fix a problem with
2604         allocating variables twice or never,
2605         * (genGenPointerGet): using PRODL instead of FSR0H,
2606         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2607         instead of FSR0H,
2608         * (genAssign): take advantage of the _G.resDirect flag,
2609         * (genCast): around line 11844, use mov2f instead of directly
2610         MOVFF'ing between operands to account for literal values,
2611         * src/pic16/genutils.c: some new debug functions for gpsim have been
2612         added,
2613         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2614         float with integer part only,
2615         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2616         place variables in access bank
2617         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2618         updated sources to reflect recent changes in gen.c
2619
2620 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2621
2622         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2623         sources that searched for headers in installation path, now the
2624         device/include/pic16 is used,
2625         * src/pic16/glue.c (pic16glue),
2626         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2627         .line directives if not in debug mode, this suppresses assembler's
2628         warnings for ignored directives
2629
2630 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2631
2632         * src/port.h: made reset_regparms prototype void parameter explicit.
2633         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2634         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2635         * doc/sdccman.lyx: documented warning disabling and how to use
2636           printf_large to make it print floats.
2637         * device/include/stdbool.h: NEW
2638         * device/lib/_atof.c,
2639         * device/lib/_divuint.c,
2640         * device/lib/_divulong.c,
2641         * device/lib/expf.c,
2642         * device/lib/printf_large.c,
2643         * device/lib/sincosf.c,
2644         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2645         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2646           a completely reentrant lib.
2647
2648 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2649
2650         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2651         * device/include/pic16/stdio.h: fixed bug with colon
2652
2653 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2654
2655         * device/include/pic16/stdio.h,
2656         * device/include/pic16/stdlib.h,
2657         * device/include/pic16/math.h: NEW
2658         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2659         declared as _naked to reduce overhead
2660         * device/lib/Makefile.in (target port-specific-objects-pic16):
2661         changed * to *.* so to ignore the CVS directory,
2662         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2663         stacked variables back in stack,
2664         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2665         corruption
2666
2667 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2668
2669         * .version: bumped version number to 2.4.5
2670         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2671         * support/Util/SDCCerr.c (messages structure): added entry for
2672         W_POSSBUG2
2673
2674         Large cumulative patch for pic16 port and libraries.
2675         * device/include/pic16/sdcc-lib.h,
2676         * device/include/pic16/stdarg.h,
2677         * device/include/asm/pic16/features.h,
2678         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2679         * device/include/pic16/float.h: changes reentrant keyword with
2680         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2681         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2682         updated target build-libraries to include objects from gptr,
2683         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2684         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2685         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2686         all function headings,
2687         * src/SDCCmain.c: added global parameter userIncDirsSet,
2688         * (parseCmdLine): when option -I is encountered add directory to
2689         userIncDirsSet too,
2690         * src/version.awk: added space between control and long,
2691         * src/pic16/NOTES: added some notes for the port,
2692         * src/pic16/gen.c: added prototype for mov2fp function,
2693         * (fReturnpic16[]): properly named return value registers,
2694         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2695         * (aopForSym): added code to handle symbols with onStack flag set,
2696         symbols onStack are allocated PTRSIZE bytes,
2697         * (aopFreeAsmop): handles special case where asmops are stack objects,
2698         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2699         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2700         added argument lock to trace flaws in allocating temporary registers
2701         when developing port,
2702         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2703         * (pic16_popRegFromString): reenabled allocating a direct register
2704         from string,
2705         * (assignResultValue): various beautifications,
2706         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2707         referenced function argument,
2708         * (genIpush): reenabled to allow stacked arguments, handles only
2709         ic->parmPush iCodes,
2710         * (genCall, genPcall): major changes to allow for variable argument
2711         functions, fixed a bug with falsely restoring stack pointer after
2712         returning from call,
2713         * (genFunction): pending code for critical function,
2714         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2715         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2716         * (genNearPointerGet): fixed bug with indirect reading, was always
2717         reading from INDF0
2718         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2719         pointers,
2720         * (genAddrOf): rewrote code to take address of a stacked function parameter
2721         * (genCast): fixed casting to generic pointer type,
2722         * src/pic16/gen.h: added AOP_STA,
2723         * (struct asmop): added field stk,
2724         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2725         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2726         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2727         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2728         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2729         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2730         generic pointers,
2731         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2732         and library paths,
2733         * (pic16_port structure): generic pointer size is set to 3,
2734         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2735         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2736         compiler warning,
2737         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2738         operand is an iTemp,
2739
2740 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2741
2742         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2743         * debugger/mcs51/simi.c: addapt new syntax of s51
2744
2745 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2746
2747         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2748         * src/pic16/pcode.c: commented out some calls to free() in order to
2749         fix bug #989576,
2750
2751 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2752
2753         * src/SDCCicode.h,
2754         * src/SDCCicode.c (isiCodeInFunctionCall),
2755         * src/avr/ralloc.c (selectSpil),
2756         * src/pic/ralloc.c (selectSpil),
2757         * src/pic16/ralloc.c (selectSpil),
2758         * src/ds390/ralloc.c (selectSpil),
2759         * src/hc08/ralloc.c (selectSpil),
2760         * src/xa51/ralloc.c (selectSpil),
2761         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2762         stack in the middle of a function call sequence (fixes bug #1020268)
2763         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2764         costs associated with the minimum switch case.
2765
2766 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2767
2768         * src/SDCC.lex: fixed bug #1030549
2769
2770 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2771
2772         * src/SDCCcse.h (struct cseDef),
2773         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2774         over a function call if the CSE is derived from a symbol whose
2775         address has been taken (fixes bug #1029883)
2776         * support/regression/tests/bug-1029883: a new regression test for
2777         this bug
2778
2779 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2780
2781         * src/hc08/gen.c (emitinline): fixed bug #1029778
2782         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2783         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2784         and starts toward RFE #905167)
2785
2786 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2787
2788         * src/pic16/gen.c (mov2f): New function to move an operand to
2789         another without considering if it is a literal or a register,
2790         * (pic16_sameRegs): don't check if they are both AOP_REG,
2791         * (AccRsh): removed andmask=0 lines,
2792         * (genLeftShift): duplicated to be improved in future versions,
2793         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2794         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2795         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2796         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2797         * (insertBankSwitch): fixed inserting banksel directives algorithm
2798         for instructions that follow a skip instruction, this fixes a report
2799         for broken subtraction code generation,
2800         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2801         iCode is a left op, just in case result and right share the same
2802         registers
2803
2804 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2805
2806         * src/hc08/main.c,
2807         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2808         preservation of HX
2809         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2810         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2811         on 2004-09-12; it was buggy
2812
2813 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2814
2815         * src/SDCCsymt.h: removed RESULT_CHECK
2816         * src/SDCCast.c,
2817         * src/SDCCglue.c,
2818         * src/SDCCval.c,
2819         * src/pic/glue.c,
2820         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2821
2822 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2823
2824         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2825         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2826         configuration values no more rejected by compiler, they are assigned
2827         to configuration registers with a warning message instead,
2828         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2829         the for-loop so last conf register is emitted too,
2830         * (_pic16_initPaths): link library libsdcc.lib by default,
2831         * (_hasNativeMulFor): modified test for multiplication according to
2832         Raphael Neider's remarks. Integer multiplication is also done with
2833         support functions,
2834         * device/include/pic16/pic18fregs.h: corrected type error in while
2835         testing and including 18f6720 header file
2836
2837 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2838
2839         * src/pic16/device.h (pic16_options): removed field use_crt,
2840         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2841         until an optimization to handle single bits is added,
2842         * (pic16_loadFSR0): moved before genUnpackBits,
2843         * (genAnd): some white lines removed,
2844         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2845         leave_reset flags in pic16_options when using crt modules,
2846
2847 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2848
2849         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2850           for bugs 898889 & 979599. Also used some safer print instructions.
2851
2852 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2853
2854         * src/pic16/device.h (pic16_options_t): added field use_crt,
2855         crt_name, no_crt,
2856         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2857         catch a probable future bug,
2858         * src/pic16/gen.c: aopIdx function commented out,
2859         * (genAssign): commented out old code which used aopIdx,
2860         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2861         code, added if conditionals to take into account the --use-crt
2862         command line options,
2863         * src/pic16/main.c (pic16_optionsTable): added new command line
2864         options, --use-crt= and --no-crt,
2865         * (_pic16_linkEdit): now the proper crt object is added in the
2866         linker command line except than when --no-crt is specified,
2867         * src/pic16/pcode.c,
2868         * src/pic16/pcode.h: added some structures and functions for a new
2869         optimization scheme to compansate for instruction overhead between
2870         same iCodes, this scheme is currently under development and is not
2871         working in any way,
2872         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2873         to && operator,
2874         * device/lib/pic16/startup/crt0i.c,
2875         * device/lib/pic16/startup/crt0iz.c: added global char variable
2876         __uflags to force the generation of an idata section
2877
2878 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2879
2880         * doc/Makefile,
2881         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2882         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2883
2884 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2885
2886         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2887         Frieder) and clarified the default code optimization mode
2888
2889 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2890
2891         * src/SDCC.lex (doPragma, process_pragma),
2892         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2893         "opt_code_size", and "opt_code_balanced"
2894         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2895         regrouped options by category, added support for category headers
2896         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2897         and "--opt-code-size"
2898         * doc/sdccman.lyx: documented these new options and pragmas
2899         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2900         preference into account
2901
2902 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2903
2904         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2905           geniCodePreDec): Fixed bug 904237 by generating a warning
2906         * src/SDCCerr.h,
2907         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2908
2909 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2910
2911         * src/pic/device.c : When no max ram set validate full memory range.
2912         * src/pic/pcode.c,
2913         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2914
2915 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2916
2917         * device/lib/_gptrget.c,
2918         * device/lib/_gptrput.c: updated comment
2919         * device/lib/calloc.c,
2920         * device/lib/free.c,
2921         * device/lib/malloc.c,
2922         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2923         * src/SDCCcse.c (cseBBlock),
2924         * src/SDCCicode.c (printOperand, geniCodeArray),
2925         * src/SDCCicode.h (struct operand): fixed bug 868103
2926         * support/regression/tests/bug-868103.c: added
2927         * src/SDCCast.c (searchLitOp),
2928         * src/SDCCcse.h (struct cseDef),
2929         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2930         * src/SDCCicode.h (struct operand),
2931         * src/SDCCsymt.h (struct sym_link),
2932         * src/avr/gen.c (hasInc),
2933         * src/ds390/gen.c (hasInc),
2934         * src/hc08/gen.c (genPlusIncr, hasInc),
2935         * src/mcs51/gen.c (hasInc),
2936         * src/pic16/glue.c (pic16_printIvalChar),
2937         * src/pic16/ralloc.c (regWithIdx),
2938         * src/xa51/gen.c (hasInc) : removed warnings
2939         * src/SDCCast.c (createBlock): added comment ???
2940         * src/hc08/ralloc.c: updated comments
2941
2942 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2943
2944         * doc/sdccman.lyx: updated section on switch statements, added
2945         section about semaphore locking
2946         * doc/Makefile: added option -info for latex2html
2947         * device/lib/_gptrget.c,
2948         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2949
2950 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2951
2952         * src/pic/device.h,
2953         * src/pic/device.c,
2954         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2955          maxram is less than 0x100.
2956
2957 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2958
2959         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2960
2961 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2962
2963         * src/port.h,
2964         * src/mcs51/main.c,
2965         * src/ds390/main.c,
2966         * src/z80/main.c,
2967         * src/hc08/main.c,
2968         * src/pic/main.c,
2969         * src/pic16/main.c,
2970         * src/avr/main.c,
2971         * src/xa51/main.c
2972         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2973         a jump table is the best form for a switch statement, including
2974         automatic insertion of missing cases to make the case range
2975         continuous. Developed in collaboration with Frieder Ferlemann.
2976
2977 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2978
2979         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2980         accumulator result if it needs sign extension
2981
2982 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2983
2984         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2985
2986 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2987
2988         * device/lib/gbz80/printf.c,
2989         * device/lib/z80/printf.c: removed define for NULL
2990
2991 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2992
2993         * as/xa51/xa_link.c,
2994         * device/examples/ds390/ow390/ad26.c,
2995         * device/examples/ds390/ow390/cnt1d.c,
2996         * device/examples/ds390/ow390/counter.c,
2997         * device/examples/ds390/ow390/ds2480.h,
2998         * device/examples/ds390/ow390/ds2480ut.c,
2999         * device/examples/ds390/ow390/findtype.c,
3000         * device/examples/ds390/ow390/gethumd.c,
3001         * device/examples/ds390/ow390/owllu.c,
3002         * device/examples/ds390/ow390/ownetu.c,
3003         * device/examples/ds390/ow390/swt12.c,
3004         * device/examples/ds390/ow390/swtloop.c,
3005         * device/examples/ds390/ow390/temp.c,
3006         * device/examples/ds390/ow390/temp10.c,
3007         * device/examples/ds390/ow390/thermo21.c,
3008         * device/examples/ds390/ow390/tinilnk.c,
3009         * device/examples/ds390/ow390/tstfind.c,
3010         * device/examples/serialcomm/windows/serial.cpp,
3011         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3012         * device/include/reg51.h: fixed line endings for cvs
3013
3014 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3015
3016         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3017         packRegsForAccUse, packRegisters): new accumulator register
3018         packing algorithm
3019         * support/regression/ports/hc08/support.c (_putchar): suppress
3020         warning of unused variable
3021         * src/SDCCicode.c: added SWAP entry to codeTable
3022
3023 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3024
3025         * device/lib/sprintf.c: forgot to add this file before previous commit
3026
3027 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3028
3029         * src/pic16/gen.c (genPackBits): added operand right in function
3030         parameters, load result directly if p_type is POINTER (that is
3031         called by genNearPointerSet)
3032         * (genUnPackBits): added operand left in function parameters,
3033         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3034         FSR0 if accessing bitfields,
3035
3036 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3037
3038         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3039           _print_format; updated printf, sprintf, vsprintf
3040         * device/include/asm/default/features.h: corrected comment/define
3041         * device/lib/Makefile.in: added sprintf.c
3042         * device/lib/libsdcc.lib: added sprintf module
3043         * device/lib/printf_large.c,
3044         * device/lib/vprintf.c,
3045         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3046           into these 3 files
3047         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3048         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3049         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3050           hc08 test
3051         * support/regression/tests/zeropad.c: define idata as data for hc08
3052
3053 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3054
3055         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3056         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3057         labels are referenced at least once (even if a reference is not found)
3058         * src/hc08/gen.c (emitcode): set isComment flag for comments
3059         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3060         loads), rules 6a..6b (optimize jumps to return)
3061
3062 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3063
3064         * device/lib/acosf.c (acosf),
3065         * device/lib/asinf.c (asinf),
3066         * device/lib/atanf.c (atanf),
3067         * device/lib/ceilf.c (ceilf),
3068         * device/lib/cosf.c (cosf),
3069         * device/lib/coshf.c (coshf),
3070         * device/lib/cotf.c (cotf),
3071         * device/lib/fabsf.c (fabsf),
3072         * device/lib/floorf.c (floorf),
3073         * device/lib/log10f.c (log10f),
3074         * device/lib/logf.c (logf),
3075         * device/lib/sinf.c (sinf),
3076         * device/lib/sinhf.c (sinhf),
3077         * device/lib/sqrtf.c (sqrtf),
3078         * device/lib/tanf.c (tanf),
3079         * device/lib/tanhf.c (tanhf),
3080         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3081         replaced all instances of "reentrant" in the library functions
3082         defined in math.h with this macro.
3083         * support/regression/tests/float_trans.c: reenabled test for hc08
3084
3085 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3086
3087         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3088         erroneously deleted
3089
3090 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3091
3092         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3093         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3094         multi-byte volatile operands are used
3095         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3096         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3097         initialization to area GSINIT0 so that it would always precede
3098         any static initializers in GSINIT
3099         * support/regression/tests/zeropad.c: fixed idata define for hc08
3100         * support/regression/tests/bug-927659.c,
3101         * support/regression/tests/float_trans.c: disabled tests for hc08
3102         pending missing library routines
3103         * .version: increased version number to 2.4.4 - hc08 port now passes
3104         regression tests
3105
3106
3107 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3108
3109         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3110         * Makefile.common.in,
3111         * as/Makefile,
3112         * as/hc08/Makefile.in,
3113         * as/mcs51/Makefile.in,
3114         * as/z80/Makefile.in,
3115         * debugger/mcs51/Makefile.in,
3116         * device/include/Makefile.in,
3117         * device/lib/Makefile.in,
3118         * doc/Makefile,
3119         * link/Makefile,
3120         * link/z80/Makefile.in,
3121         * packihx/Makefile.in,
3122         * sim/ucsim/main_in.mk,
3123         * sim/ucsim/avr.src/Makefile.in,
3124         * sim/ucsim/doc/Makefile.in,
3125         * sim/ucsim/gui.src/serio.src/Makefile.in,
3126         * sim/ucsim/hc08.src/Makefile.in,
3127         * sim/ucsim/s51.src/Makefile.in,
3128         * sim/ucsim/xa.src/Makefile.in,
3129         * sim/ucsim/z80.src/Makefile.in,
3130         * src/Makefile.in,
3131         * support/cpp2/Makefile.in,
3132         * support/librarian/Makefile,
3133         * support/makebin/Makefile: added DESTDIR to the install path proposed
3134         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3135         * doc/sdccman.lyx: added DESTDIR documentation
3136
3137 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3138
3139         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3140         instruction for interrupt handlers, use fast returns when returning
3141         from high priority interrupts
3142
3143 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3144
3145         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3146         code generation
3147         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3148         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3149         bugs, ported much of Bernhard's code from mcs51
3150         * src/mcs51/gen.c (genSend),
3151         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3152         than one when calling a reentrant function
3153         * device/lib/_mullong.c: defined an alternate struct layout for big
3154         endian ports (hc08)
3155
3156 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3157
3158         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3159         test
3160
3161 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3162
3163         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3164         are sane and complete before asking the port its prefered parameter
3165         passing method (fixes bug #1017633)
3166         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3167         and _ret3
3168
3169 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3170
3171         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3172         problem in bitfields >= 8 bits.
3173
3174 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3175
3176         * src/SDCCsymt.c: undid changes that were not meant to be committed
3177
3178 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3179
3180         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3181
3182 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3183
3184         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3185           copied and wrong bit got inverted
3186
3187 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3188
3189         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3190         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3191         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3192         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3193         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3194         assignments to bitfields at known addresses
3195         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3196         reads from bitfields at known addresses
3197         * src/hc08/ralloc.c (packRegisters),
3198         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3199         genhc08Code): optimize pointer get values used as conditionals
3200         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3201         and branch
3202
3203 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3204
3205         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3206         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3207         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3208         as conditionals
3209
3210 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3211
3212         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3213
3214 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3215
3216         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3217         related problems
3218
3219 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3220
3221         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3222
3223 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3224
3225         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3226         mcs51 port
3227
3228 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3229
3230         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3231
3232 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3233
3234         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3235         cases use more compact code.
3236
3237 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3238
3239         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3240
3241 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3242
3243         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3244
3245 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3246
3247         * src/SDCCsymt.h,
3248         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3249         parameter of changePointer() from symbol* to sym_link*
3250         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3251         * src/SDCCsymt.c (compareType): void* type is castable to other
3252         pointers, but not necesarily an exact match.
3253         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3254         is no longer blindly treated as an exact match.
3255         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3256
3257 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3258
3259         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3260
3261 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3262
3263         * src/pic/gen.c,
3264         * src/pic/pcode.c,
3265         * src/pic/ralloc.h,
3266         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3267
3268 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3269
3270         * src/pic/device.c,
3271         * src/pic/device.h,
3272         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3273
3274 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3275
3276         * src/mcs51/gen.c (emitcode): fixed bug #992819
3277
3278 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3279
3280         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3281           there's no need to make it worse
3282
3283 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3284
3285         * src/mcs51/ralloc.c (deassignLR),
3286         * src/ds390/ralloc.c (deassignLR),
3287         * src/hc08/ralloc.c (deassignLR),
3288         * src/z80/ralloc.c (deassignLR),
3289         * src/pic/ralloc.c (deassignLR),
3290         * src/pic16/ralloc.c (deassignLR),
3291         * src/avr/ralloc.c (deassignLR),
3292         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3293         rlivePoint): fixed another part of bug #971834
3294
3295 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3296
3297         * src/z80/main.c: enabled "critical" keyword
3298         * src/z80/mappings.i,
3299         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3300         functions (fixes bug #979646)
3301         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3302
3303 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3304
3305         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3306           such as c:\mydir.
3307
3308 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3309
3310         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3311           doesn't disable too much optimizations
3312
3313 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3314
3315         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3316
3317 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3318
3319         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3320
3321 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3322
3323         * src/pic/gen.c tidied up tabs
3324         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3325         * src/pic/main.c tidied up tabs
3326         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3327         * src/pic/pcoderegs.c tidied up tabs
3328         * src/pic/ralloc.c tidied up tabs
3329
3330 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3331
3332         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3333         to S_FIXED for pic16 port and when symbol is not in level 0,
3334         allocate for S_REGISTER storage class and pic16 port, too,
3335         * src/pic16/device.h: prototype for checkSym,
3336         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3337         * (pic16_assignConfigWordValue): test the value and the mask to
3338         validate that the value is suitable for the configuration word,
3339         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3340         collect extern declared symbols, don't emit symbol twice, check
3341         first if symbol is in publics set first,
3342         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3343         * added command line '--fstack' which enables an experimental
3344         feature for stack access, too buggy to be used yet...
3345         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3346         * (pic16_allocDirReg): when register has storage class S_REGISTER
3347         allocate in pic16_dynAccessRegs,
3348         * device/include/pic16/pic18f????.h: modified configuration word
3349         naming convention, words started as CONFIG0H but should be CONFIG1H
3350
3351 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3352
3353         * device/include/mcs51reg.h: fixed bug 970993
3354
3355 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3356
3357         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3358         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3359         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3360         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3361         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3362         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3363           error/warning numbers,
3364           added function setWarningDisabled()
3365         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3366         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3367           _memcmp.c _memmove.c calloc.c realloc.c free.c
3368         * support/regression/tests/malloc.c: added tests for new functionality
3369         * support/regression/tests/zeropad.c: added tests for truncated initializers
3370           and initialized char arrays starting with '\x0'
3371         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3372
3373 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3374
3375         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3376
3377 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3378
3379         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3380         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3381         peephole 177.e. Thanks to anonymous
3382
3383 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3384
3385         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3386         function isn't used in the source but referenced as a
3387         variable initializer then declare it as extern in .asm file
3388
3389 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3390
3391         * .version: increased version number to 2.4.3
3392
3393         Adding version extension according to ChangeLog CVS revision
3394         * src/Makefile.in (target all): added dependency 'version.h'
3395         * (rule version.h): added rule to create version.h from ChangeLog,
3396         * (rule dep): added dependency version.h,
3397         * src/version.awk: AWK script to create version.h
3398         * src/SDCCdwarf2.c (dwWriteModule),
3399         * src/SDCCglue.c (initialComments),
3400         * src/SDCCmain.c (printVersionInfo): modified to write after
3401         version string the version extension number,
3402         * src/SDCCutil.c: included "version.h"
3403         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3404         number,
3405         * src/SDCCutil.h: added prototype for getBuildNumber
3406
3407         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3408         includeDirsSet, too,
3409         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3410         const char [] is found in function prototype...
3411
3412         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3413         moving to WREG with source is already in WREG,
3414         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3415         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3416         * (aopForSym): stack'ed symbols are partially supported, added
3417         if-clause to support symbols in FARSPACE,
3418         * (sameRegs): added test for AOP_ACC to see if registers are same,
3419         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3420         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3421         * (pic16_popRegFromString): will not allocate a new register if it
3422         doesn't find one by name, bug may have introduced...
3423         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3424         * (genIpush): revived to use pic16 port's stack,
3425         * (genAddrOf): added incomplete case for stack'ed operand,
3426         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3427         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3428         can handle multibyte operands,
3429         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3430         * (pic16initialComments): added message for MPLAB compatibility
3431         mode enabled,
3432         * src/pic16/main.h: prototype for pic16_mplab_comp,
3433         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3434         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3435         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3436         because of increased complexity of procedure,
3437         * (_process_pragma): stack pragma changed to format 'stack pos len',
3438         emit symbol '_stack_end' to conform with gplink,
3439         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3440         to search for register,
3441         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3442         PO_GPR_REGISTER,
3443         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3444         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3445         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3446         case for PO_GPR_REGISTER,
3447         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3448         dies, the new era is ahead !...
3449         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3450         pic16_dynInternalRegs,
3451         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3452         * (pic16_allocDirReg): minor optimizations and bug fixes,
3453         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3454
3455         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3456         load stack and frame pointer with address of 'stack_end' symbol
3457
3458 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3459
3460         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3461         without source code but only variable initializers
3462
3463 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3464
3465         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3466         external are not declared as extern to reduce overhead while linking
3467
3468 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3469
3470         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3471
3472 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3473
3474         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3475           Yee Keat for the patch
3476         * src/SDCCast.c (decorateType): fixed bug #979599
3477         * src/ds390/gen.h: removed local fReturnSizeDS390
3478         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3479         * src/ds390/gen.c (genAnd, genOr, genXor),
3480         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3481
3482 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3483
3484         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3485         add relFilesSet to $3, manipulate $2 to handle linking of object
3486         files without source files in command line,
3487         * device/include/pic16 (all headers): added ID location macros,
3488         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3489         entries for ID location bytes,
3490         * (pic16_assignIdByteValue): NEW,
3491         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3492         added field dumpcalltree to pic16_options_t,
3493         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3494         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3495         emitting rFalseIfx label after check_carry label,
3496         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3497         pic16_emitDIRegs), NEW
3498         * (pic16glue): dump .calltree file when option --calltree found,
3499         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3500         * (_pic16_genAssemblerPreamble): emit ID locations after
3501         configuration registers,
3502         * (pic16_linkCmd): modifications of the link command,
3503         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3504         * (pic16_pCodeInitRegisters): don't init stack registers,
3505         * (pic16_findPrevInstruction): fixed bug,
3506         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3507         bug with immediate registers,
3508         * (buildCallTree): traces stack push and pop,
3509         * (pct2): dump also stack usage for each function,
3510         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3511         * (pic16_allocDirReg): various modifications,
3512         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3513         fixed to 1,
3514
3515 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3516
3517         * src/pic16/pcode.c: removed buggy double colon
3518
3519 2004-07-01 Borut Razem <borut.razem AT siol.net>
3520
3521         * support/scripts/sdcc.nsi: added include/pic16 to setup
3522
3523 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3524
3525         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3526         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3527         target 'clean',
3528         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3529         specific command line arguments. Also added sample lkr script
3530         for placing a variable at a specific memory bank.
3531         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3532         at a specific memory bank,
3533         * (pic16_dump_isection): fixed bug which caused string literals to
3534         be omitted when dumping idata section,
3535         * (pic16_groupRegistersInSection): added code to handle registers
3536         in specific memory banks,
3537         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3538         public, all references are renamed too,
3539         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3540         AOP_DPTR2,
3541         * (pic16_storeForReturn): added case to handle when dest is WREG,
3542         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3543         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3544         pic16_rel_udata, check to see if that register is marked as being
3545         a member of a specific memory bank,
3546         * (pic16_printIvalCharPtr): added code to add string literals either
3547         to code or the idata sections,
3548         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3549         also accept the 'udata' pragma,
3550         * src/pic16/main.h: new structure types sectName and sectSym
3551         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3552         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3553         * (pic16_findPrevInstruction): fixed, it returned nothing,
3554         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3555         instruction combinations,
3556         * (pic16_FixRegisterBanking): heavily reorganised,
3557         * (pic16_AnalyzeBanking): if generating banksel directives is
3558         disabled, then don't call FixRegisterBanking at all,
3559         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3560         completely removed,
3561         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3562
3563 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3564
3565         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3566         Phuah Yee Keat <yk.phuah AT nestac.com>
3567
3568 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3569
3570         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3571         correctly the IVT even if it is relocated to some other location
3572
3573 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3574
3575         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3576         * device/include/pic16/pic18f2220.h: NEW,
3577         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3578         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3579         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3580         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3581         nodefaultlibs, ivt_loc is the location of the interrupt vector
3582         table, and nodefaultlibs signs that default libraries should not be
3583         linked in link stage,
3584         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3585         according to --ivt-loc argument,
3586         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3587         when pragma stack is found,
3588
3589 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3590
3591         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3592         256 (range check), 257 (do while), 258.a-f (bit banging
3593         f.e. on 3-wire SPI bus)
3594
3595 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3596
3597         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3598         variables used exclusively within a loop
3599
3600 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3601
3602         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3603
3604 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/SDCClrange.c (computeClash): fixed bug #971834
3607
3608 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3609
3610         * src/mcs51/gen.c (genCmp): fixed bug #975903
3611         * src/hc08/gen.c (operandsEqu),
3612         * src/ds390/gen.c (operandsEqu),
3613         * src/z80/gen.c (operandsEqu),
3614         * src/pic/gen.c (operandsEqu),
3615         * src/pic16/gen.c (operandsEqu),
3616         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3617         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3618
3619 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3620
3621         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3622
3623 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3624
3625         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3626         default case in switch statement,
3627         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3628         to eliminate problem with initialisation of pointers, but problem
3629         still exists,
3630         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3631         * (emitStaticSegment): removed various lines emitting debug info,
3632         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3633         added processor registers for utilizing EEPROM,
3634         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3635         configurable and set 8
3636
3637 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3638
3639         * .version: increased version number to 2.4.2,
3640
3641         Cumulative patch for pic16 port
3642         * src/pic16/device.c: changed scheme to dump initial values for
3643         variables in idata segment, all print_idata* functions were removed,
3644         now the pic16_printIval* will be called,
3645         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3646         * _pic16_printPointerType, pic16_printPointerType,
3647         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3648         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3649         NEW, similar to the respective functions in SDCCglue.c,
3650         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3651         way, emitting hex bytes,
3652         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3653
3654 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3655
3656         * src/avr/ralloc.c (serialRegAssign),
3657         * src/xa51/ralloc.c (serialRegAssign),
3658         * src/pic/ralloc.c (serialRegAssign),
3659         * src/pic16/ralloc.c (serialRegAssign),
3660         * src/hc08/ralloc.c (serialRegAssign),
3661         * src/z80/ralloc.c (serialRegAssign),
3662         * src/ds390/ralloc.c (serialRegAssign),
3663         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3664
3665 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3666
3667         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3668         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3669
3670 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3671
3672         Cumulative patch for pic16 port:
3673         * src/pic16/device.h (typedef PIC16_device) modified fields for
3674         defining microcontrollers,
3675         * src/pic16/device.c: added new info for all devices in Pics16 array,
3676         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3677         to be optimised out by the pCode optimiser,
3678         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3679         specially, bug reported by G.M. Gallant,
3680         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3681         as force'd so that cannot be optimised out by pCode optimiser,
3682         * src/pic16/pcode.c,
3683         * src/pic16/pcodepeeph.c,
3684         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3685         they are disabled by default, but can be enabled explicit with
3686         command argument --denable-peeps, for testing,
3687         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3688         --pomit-ivt in COMPILE_FLAGS
3689
3690 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3691
3692         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3693           compilation on MSVC
3694
3695 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3696
3697         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3698
3699 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3700
3701         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3702         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3703
3704 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3705
3706         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3707         would only assign 0x300001 register.
3708
3709 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3710
3711         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3712         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3713
3714 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3715
3716         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3717         for ds80c400
3718         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3719         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3720         added peephole 254 (left shift), 255 (jump table)
3721
3722 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3723
3724         * device/lib/Makefile.in: removed comment line with model-pic16,
3725         * (target port-specific-objects-pic16): the libraries and objects
3726         are copied to the build directory form the device/lib/pic16/bin
3727         directory
3728
3729         Cumulative patch concerning pic16 port:
3730         * library directory has been re-organized,
3731         * added support for PIC18F1220,
3732         * added headers and library sources for chips 18f1220,18f6520,
3733         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3734
3735         * configuration registers setting has changed, now each supported
3736         device has a complete description of the registers it uses,
3737         * all initialisations are moved to idata sections, these section
3738         can be absolute or relocatable,
3739         * fixed initialisation of codespace variables,
3740         * fixed warning about PCLATU and gpsim,
3741         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3742         * (genAssign): use table reads when assigning from variables in codespace,
3743         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3744         char/int variables placed in codespace,
3745         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3746         registers set in .asm file, no need for --pomit-config-words anymore,
3747         * (pic16glue): some 8051 legacy segments are commented out
3748         (to be removed completely),
3749         * added support for alternative assembler and linker with --asm=
3750         and --link= command line arguments,
3751         * peepholes are disabled automatically in the port, no need to
3752         specify on command line,
3753         * port supports natively char/int/long multiplication, but converts
3754         all divisions to support functions,
3755         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3756         to the file set in variable $2,
3757         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3758         strings in ASCII format and not in hex,
3759         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3760         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3761         allocate proper register if iCodes aren't temporary,
3762
3763 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3764
3765         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3766
3767 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3768
3769         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3770         is commented out
3771
3772 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3773
3774         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3775         computed address is reused
3776         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3777         multi-byte bitfields
3778
3779 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3780
3781         * src/z80/gen.c: (genArrayInit): must check for pointers too
3782
3783 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3784
3785         * support/regression/tests/zeropad.c: never meant to commit the
3786           nestedstruct test: removed, added check for GCC version
3787
3788 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3789
3790         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3791         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3792         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3793           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3794           bugs 928906 and 954082 half-empty initializers
3795         * src/SDCCsymt.h,
3796         * src/SDCCsymt.c (getAllocSize): added for above fix
3797         * src/z80/gen.c (genArrayInit): fixed bug 741044
3798         * support/regression/tests/zeropad.c: added tests
3799
3800 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3801
3802         * src/pic16/device.c (pic16_dump_section): corrected bug which
3803         caused some symbols of the libraries to be misplaced
3804
3805 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3806
3807         * src/pic16/glue.c,
3808         * src/pic16/ralloc.h,
3809         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3810         to fix conflict with pic port
3811
3812 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3813
3814         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3815         externs configuration variables,
3816         * src/pic16/ralloc.h,
3817         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3818         prototype in header, commented out some debug messages
3819
3820 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3821
3822         * src/pic16/glue.c,
3823         * src/pic16/main.c,
3824         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3825         for gpasm COFF object generation. Thanks to D. Hawkins for
3826         his patch info
3827
3828 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3829
3830         * src/ds390/main.c,
3831         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3832         Brock for spotting this)
3833         * src/ds390/gen.c (genEndFunction),
3834         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3835         interrupt handler and critical. Disable push/pop optimizations when
3836         peephole optimizations disabled.
3837
3838 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3839
3840         Updated pic16 library sources and headers.
3841         * device/lib/pic16/pic18f*/ ,
3842         * device/include/pic16/*.h: modified to handle structured SFR
3843         definitions
3844
3845 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3846
3847         * src/port.h (PORT structure): added hook initPaths, now each
3848         port can declare its own default search paths,
3849         which can been seen with the --print-search-dirs option,
3850         see pic16 port for example,
3851         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3852         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3853         * (doPrintSearchDirs): NEW, replaces in a central manner the
3854         printing of search dirs which was split in set*Paths functions,
3855         * (main): added call to port->initPaths and doPrintSearchDirs,
3856         * src/avr/main.c,
3857         * src/ds390/main.c,
3858         * src/hc08/main.c,
3859         * src/izt/i186.c,
3860         * src/izt/tlcs900h.c,
3861         * src/mcs51/main.c,
3862         * src/pic/main.c,
3863         * src/pic16/main.c: modified port structures to reflect addition of
3864         initPaths hook,
3865
3866         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3867         * (pic16_dump_section): for registers in same address reserve memory once,
3868         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3869         to no_banksel,
3870         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3871         result is greater in size than right or left,
3872         * (pic16_genUMult8X8_8): there are some cases where the result can
3873         be 16 bits size, so handle these,
3874         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3875         * (pic16_outBitC): modified to emit pcodes,
3876         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3877         or not,
3878         * (genDivOneByte): implemented algorithm to divide 8-bits,
3879         * (genCmp): uncommented goto, but issues still exist,
3880         * (genAnd): fixed a bug with variables >8bits,
3881         * (genPackBits): optimization added that uses BCF/BSF to change a
3882         single bit,
3883         * (genAssign): fixed bug when assigning floating point literals,
3884         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3885         __sdcc_gsinit_startup label,
3886         * src/pic16/main.c (_pic16_init): removed search directory
3887         initialisations,
3888         * (_pic16_initPaths): NEW, used to initialise search directories,
3889         * (_hasNativeMulFor): support functions for all except char/int
3890         multiplication, and char division,
3891         * (PIC16_port struct): modified entry for native mul support,
3892         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3893         no_banksel option,
3894         * (buildCallTree): call to register_usage is ifdef'ed out,
3895
3896 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3897
3898         * device/include/string.h: applied Stas Sergeev's patch to make this
3899         header file compatible with the preprocessor -Wundef option
3900         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3901         failure (fixes bug #941458)
3902
3903 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3904
3905         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3906         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3907         that the variable, not the function, should be static
3908         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3909         to be consistent with non-literal case
3910
3911 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3912
3913         * src/SDCCast.c (isConformingBody): fixed bug #949967
3914         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3915         convilong): fixed bug #952086
3916
3917 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3918
3919         * src/SDCCmem.c (allocVariables): fixed bug #955321
3920
3921 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3922
3923         * src/hc08/main.c (_hc08_genAssemblerEnd),
3924         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3925         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3926         completely eliminated the use of a temporary file
3927         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3928         when more than one file linked
3929         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3930
3931 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3932
3933         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3934         which fixes bug #543481
3935         * support/regression/tests/bug-751703.c: fixed comments left from a
3936         cut and paste error
3937         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3938         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3939         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3940         scopes
3941         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3942         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3943         are now changed to underscores in moduleName
3944
3945 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3946
3947         * as/mcs51/lkmem.c: better fix for bug #954173
3948
3949 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3950         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3951
3952         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3953         * device/include/c8051f000.h,
3954         * device/include/c8051f120.h,
3955         * device/include/c8051f300.h,
3956         * device/include/c8051f310.h,
3957         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3958         PWM16) and detab'ed
3959
3960 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3961
3962         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3963         and mailing lists, doc'ed --no-peep-comments, removed reference
3964         to knoppix (newest version has no LyX/LaTeX), other minor changes
3965         * src/SDCCglue.c (glue): save 2 bytes stack space with
3966         option --main-return. The ljmp could probably be avoided too
3967
3968 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3969
3970         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3971
3972 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3973
3974         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3975         * src/SDCCopt.c (isLocalWithoutDef),
3976         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3977         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3978         (credit to Maarten Brock for patch #949363, on which this is based)
3979         * support/regression/tests/bug-751703.c: some test cases of extern used
3980         within inner scopes.
3981
3982 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3983
3984         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3985         SPEC_STRUCT
3986         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3987         struct definitions
3988         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3989         dwWriteLabel): fix to create valid debugger symbols even when
3990         the module name has non-alphanumeric symbols in it
3991         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3992         when a variable's allocation has been optimized away
3993
3994
3995 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3996
3997         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3998         * src/hc08/main.c,
3999         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4000         * src/mcs51/main.c,
4001         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4002         * src/ds390/main.c,
4003         * src/z80/gen.c (z80_emitDebuggerSymbol),
4004         * src/z80/main.c,
4005         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4006         * src/pic/main.c,
4007         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4008         * src/pic16/main.c,
4009         * src/avr/gen.c (avr_emitDebuggerSymbol),
4010         * src/avr/main.c,
4011         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4012         * src/xa51/main.c,
4013         * src/SDCCdebug.c (emitDebuggerSymbol),
4014         * src/SDCCdebug.h,
4015         * src/port.h: added a debugger struct to the port struct. Added a
4016         callback for defining debugger symbols
4017
4018         * src/SDCCast.c (createLabel),
4019         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4020         with isitmp = 1
4021         * src/SDCCicode.h,
4022         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4023         iCode back to the ast for the function
4024
4025         * src/hc08/ralloc.c (hc08_assignRegisters),
4026         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4027         unneeded fields from the regs struct.
4028         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4029         pushReg() & pullReg() functions instead of emitcode()
4030
4031         * src/hc08/gen.c (genLabel, genhc08Code),
4032         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4033
4034         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4035         debugger hooks
4036
4037         * src/hc08/gen.c (genEndFunction, genhc08Code),
4038         * src/hc08/gen.h,
4039         * src/mcs51/gen.c (genEndFunction, gen51Code),
4040         * src/mcs51/gen.h,
4041         * src/ds390/gen.c (genEndFunction, gen390Code),
4042         * src/ds390/gen.h,
4043         * src/z80/gen.c (genEndFunction, genZ80Code),
4044         * src/z80/gen.h,
4045         * src/z80/z80.h,
4046         * src/pic/gen.c (genEndFunction, genpic14Code),
4047         * src/pic/gen.h,
4048         * src/pic16/gen.c (genEndFunction, genpic16Code),
4049         * src/pic16/gen.h,
4050         * src/avr/gen.c (genEndFunction, genAVRCode),
4051         * src/avr/gen.h,
4052         * src/xa51/gen.c (genEndFunction, genXA51Code),
4053         * src/xa51/gen.h,
4054         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4055         specific code to cdbFile.c and out of the backend code generators
4056
4057         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4058         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4059         starting address is now 0
4060
4061         * as/hc08/asm.h,
4062         * as/hc08/m08pst.c,
4063         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4064         assembler directive for DWARF support
4065         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4066
4067         * src/src.dsp,
4068         * src/Makefile.in,
4069         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4070
4071 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4072
4073         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4074         and inappropriate peephole optimization in jump tables
4075
4076 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4077
4078         * as/hc08/m08pst.c,
4079         * src/SDCCglue.c: sdccopt works for the hc08 port now
4080
4081 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4082
4083         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4084
4085 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4086
4087         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4088
4089 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4090
4091         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4092         rules
4093         * src/SDCCmain.c,
4094         * src/SDCCglobl.h,
4095         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4096         comments from the peephole optimizer replacement rules
4097         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4098         symbols
4099         * src/SDCCcse.c (updateSpillLocation),
4100         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4101         equivalents
4102         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4103         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4104         objects far pointers
4105
4106 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4107
4108         * src/SDCCsymt.h: a missing part of my last change
4109         * src/pic/ralloc.c (regTypeNum),
4110         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4111
4112 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4113
4114         * src/SDCCicode.h,
4115         * src/SDCCicode.c (aggrToPtrDclType),
4116         * src/SDCCptropt.h,
4117         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4118         ptrPseudoSymConvert),
4119         * src/pic/ralloc.c (regTypeNum),
4120         * src/pic16/ralloc.c (regTypeNum),
4121         * src/hc08/ralloc.c (regTypeNum),
4122         * src/ds390/ralloc.c (regTypeNum),
4123         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4124         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4125
4126 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4127
4128         * link/z80/lkmain.c (afile),
4129         * as/hc08/lkmain.c (afile),
4130         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4131         prevent a pointer problem when a filename has no directory and
4132         no extension specified.
4133
4134 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4135
4136         * link/z80/lkmain.c (afile): allow periods in directory names
4137         * link/z80/lkmain.c (afile),
4138         * as/mcs51/lkmain.c (afile),
4139         * as/hc08/lkmain.c (afile): allow linker script file to have an
4140         extension other than ".lnk"
4141         * link/z80/lklex.c (getfid),
4142         * link/z80/lkmain.c (parse),
4143         * as/mcs51/lklex.c (getfid),
4144         * as/mcs51/lkmain.c (parse),
4145         * as/hc08/lklex.c (getfid),
4146         * as/hc08/lkmain.c (parse): Support comments in the linker script
4147         file on lines by themselves and after filenames
4148
4149 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4150
4151         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4152
4153 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4154
4155         * src/z80/peeph-z80.def: removed some peephole rules that don't
4156         work with multibyte arithmetic (fixed bug #937126)
4157         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4158         to registers and not global variables
4159         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4160         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4161         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4162         checking for assignments not internally generated (fixed bug #931895)
4163         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4164         structure member (fixed bug #930072)
4165
4166 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4167
4168         * src/SDCCmain.c (linkEdit),
4169         * src/hc08/main.c (_hc08_parseOptions),
4170         * as/hc08/Makefile.in,
4171         * as/hc08/aslink.h,
4172         * as/hc08/asm.h,
4173         * as/hc08/m08pst.c,
4174         * as/hc08/lkrloc.c (relr, rele),
4175         * as/hc08/lkarea.c (lnkarea)
4176         * as/hc08/lkmain.c (afile, parse),
4177         * as/hc08/lkelf.c: support for ELF output
4178         * as/hc08/lks19.c (s19),
4179         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4180
4181 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4182
4183         * as/mcs51/lkihx.c: Fixed bug #899105.
4184
4185 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4186
4187         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4188         .dsp files from Unix to DOS.
4189
4190 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4191
4192         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4193         function pointers; we have been compliant for several months now.
4194         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4195         change that was accidently commented out
4196         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4197         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4198         bug #922319
4199
4200 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4201
4202         * src/hc08/gen.c: output of all of the internal debugging information
4203         is now controlled by the D() macro; it is disabled by default
4204
4205 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4206
4207         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4208         harder to keep the same registers during a CAST iCode
4209         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4210         long via int can be done in a single cast, if the signedness is
4211         correct.
4212         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4213         putchar() in tinibios.c in ds390's library
4214
4215 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4216
4217         * src/SDCCast.c (decorateType): fixed bug #898889,
4218         cast result of a literal complement too
4219         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4220         fixed check for bitfields
4221
4222 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4223
4224         * src/SDCCicode.c (geniCodeLogic): made it static,
4225         (geniCodeLogicAndOr): added in order to fix bug #905492,
4226         (ast2iCode): fixed bug #905492
4227         * support/regression/tests/bug-905492.c: added
4228         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4229         (processParms): fixed bug #927659: don't copy parms, this will clear
4230         decorated flag
4231         * support/regression/tests/bug-927659.c: added
4232
4233 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4234
4235         * src/SDCCast.c (addCast): don't cast float to char
4236         * device/lib/libsdcc.lib: added _memmove
4237
4238 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4239
4240         * device/lib/large/Makefile: fixed parallel execution by
4241         replacing `make` by `$(MAKE)`
4242
4243 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4244
4245         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4246         offsets (fixes bug #923936)
4247
4248 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4249
4250         * device/lib/small/Makefile: fixed parallel execution by
4251         replacing `make` by `$(MAKE)`
4252
4253 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4254
4255         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4256
4257 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4258
4259         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4260         * src/regression/Makefile: Regression test was not running.
4261
4262 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4263
4264         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4265         complement if possible
4266         * src/SDCCval.c (valComplement),
4267         * src/SDCCicode.c (operandOperation): fixed complement of literal
4268         * support/regression/tests/onebyte.c (testComplement): added
4269
4270 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4271
4272         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4273         return an optimized tree; actually replace actParm with the new tree
4274         * src/SDCCast.h: added some parantheses to remove side effects
4275         * support/regression/tests/bug-920866.c
4276
4277 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4278         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4279         Bit operands were not being handled properly in the pic14 port.
4280         (now src/regression/add.c passes again).
4281
4282 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4283
4284         * src/SDCC.y (labeled_statement): case and default no longer require
4285         a following statement (RFE #893037)
4286
4287 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4288
4289         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4290         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4291         disabled (fixes bug #916294)
4292         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4293         "mov a,acc"; patch provided by Lenny Story
4294         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4295
4296 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4297
4298         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4299         functions
4300         * src/ds390/gen.c (genFunction, genEndFunction),
4301         * src/ds390/ralloc.c (ds390_assignRegisters),
4302         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4303         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4304         pushed if there are parameters passed on the stack. Also, a cleaner
4305         way to decide if r0/r1 should be pushed/popped. (Together they fix
4306         bug #918693)
4307
4308 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4309
4310         * doc/sdccman.lyx,
4311         * device/lib/mcs51/crtpagesfr.asm,
4312         * device/lib/mcs51/crtxinit.asm,
4313         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4314         to avoid confusion with Si Lab's SFRPAGE register.
4315
4316 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4317
4318         * src/SDCCglue.c (emitMaps): allow public sfr variables
4319         * src/SDCCglue.c (initialComments): include compiler build date
4320         with compiler version and put the timestamp of the generated
4321         assembly file on a serperate line to be less confusing.
4322         * src/port.h: added genInitStartup hook
4323         * src/avr/main.c,
4324         * src/ds390/main.c,
4325         * src/hc08/main.c,
4326         * src/pic/main.c,
4327         * src/pic16/main.c,
4328         * src/xa51/main.c,
4329         * src/z80/main.c: genInitStartup initialize as NULL (default to
4330         historical behaviour)
4331         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4332         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4333         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4334         library instead of hard coding it into the compiler.
4335         * support/regression/ports/mcs51-stack-auto/spec.mk,
4336         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4337         * device/lib/mcs51/Makefile,
4338         * device/lib/small/Makefile,
4339         * device/lib/large/Makefile,
4340         * device/lib/mcs51/crtpagesfr.asm,
4341         * device/lib/mcs51/crtstart.asm,
4342         * device/lib/mcs51/crtxclear.asm,
4343         * device/lib/mcs51/crtxinit.asm,
4344         * device/lib/mcs51/crtclear.asm,
4345         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4346         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4347         and into user configurable files.
4348         * device/lib/clean.mk: clean mcs51 directory too
4349         * support/regression/tests/longlit.c: added static to T1 declaration
4350         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4351         accesses in the initialization code
4352
4353 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4354
4355         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4356         OSCTRIMVAL as noted in bug #916008
4357
4358 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4359
4360         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4361         in loops with multiple exits (reported as incorrect registers
4362         used by Martin Helmling in Sdcc-user list)
4363
4364 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4365
4366         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4367         made ds390 register extensions look less like error messages
4368
4369 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4370
4371         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4372         reported by Adam Wozniak in Sdcc-user list
4373
4374 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4375
4376         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4377         arithmetic optimizations, added debug output
4378
4379 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4380
4381         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4382         * sdcc.spec: updated and split sdcc into 3 rpms
4383         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4384         needed for literals of LEFT_OP and '+'
4385         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4386         introduced RESULT_TYPE_NOPROM
4387         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4388         left shift
4389         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4390         limited promotion to int only for '*'
4391         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4392
4393 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4394
4395         * src/pic16/gen.c (genSkip),
4396         (genc16bit2lit), (gencjneshort): commented out
4397         (is_LitOp): new helper function, checks operand type
4398         (genCmpEq): rewritten
4399
4400 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4401
4402         * support/regression/tests/bug-908454.c: added
4403
4404 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4405
4406         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4407         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4408         (geniCodeCast): cosmetic, don't preserve bit storage class
4409         (geniCodeLeftShift): added promotion
4410         (geniCodeLogic): fixed regression
4411         * src/SDCCsymt.c (computeTypeOr): accept bits too
4412         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4413
4414 2004-03-07  Borut Razem <borut.razem AT siol.net>
4415
4416         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4417
4418 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4419
4420         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4421         version of pic16_genPackRegisters which does not check if ic is a
4422         CAST operator,
4423         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4424         function cause string1.c regression test fails
4425
4426 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4427
4428         * sim/ucsim/configure.in,
4429         * sim/ucsim/configure,
4430         * sim/ucsim/doc/Makefile.in: use docdir
4431         * src/SDCC.y: fixed sbit atrributes
4432         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4433         * src/SDCCast.c (decorateType): |^& need special promotion handling
4434         * src/SDCCast.h,
4435         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4436         * src/SDCCsymt.h (computeType),
4437         * src/SDCCicode.c: computeType() needs op
4438         * src/SDCCsymt.c (checkTypeSanity),
4439         * doc/sddman.lyx: "plain" bitfields are unsigned
4440         * src/SDCCsymt.c (computeTypeOr): added
4441         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4442         |^& ops
4443         * src/SDCCval.c (val*): computeType() needs op
4444         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4445         * support/regression/tests/onebyte.c: added tests for |^&
4446
4447 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4448
4449         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4450         for writing icode into asm output.
4451
4452 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4453
4454         * src/pic16/device.c: added some debug lines enabled
4455         with macro DEBUG_CHECK,
4456         * src/pic16/genarith.c: more debug in genPlus,
4457         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4458         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4459         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4460         * (aopForSym): onStack symbols are re-placed in data memspace,
4461         and onStack flag is cleared,
4462         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4463         copy temporary pcodeop,
4464         * (genPcall): added warning for not updating PCLATU,
4465         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4466         always true for pic16 port,
4467         * (genMultOneWord): NEW, supports integer multiplication,
4468         * (genMult): modified to call genMultOneWord,
4469         * (ifxForOp): added warning when return NULL,
4470         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4471         flag is set before call to operandFromSymbol for implicit
4472         added structures,
4473         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4474         options.intlong_rent are set by default,
4475         * (_hasNativeMulFor): modified to allow port generation of integer
4476         multiplication,
4477         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4478         set regtype to REG_SFR for all registers, restricting seting the
4479         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4480
4481 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4482
4483         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4484         more than 500 times in the regression tests
4485
4486 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4487
4488         * support/Util/SDCCerr.h,
4489         * support/Util/SDCCerr.c,
4490         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4491         enumerator_list),
4492         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4493         for symbol conflicts.
4494         * support/valdiags/tests/enum.c,
4495         * support/valdiags/tests/tentdecl.c,
4496         * support/valdiags/tests/struct.c: expect possible error messages
4497         referring to original symbol definitions.
4498         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4499         * src/SDCCsymt.h,
4500         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4501
4502 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4503
4504         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4505
4506 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4507
4508         * src/pic16/ralloc.c (newReg): fixed bug #908929
4509
4510 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4511
4512         * src/ds390/gen.c: added missing #include "main.h"
4513
4514 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4515
4516         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4517         checking if symbol is already in set,
4518         * src/pic16/device.h: prototype for checkAddSym,
4519         * src/pic16/gen.c: (_G): added entry interruptvector,
4520         * (assignResultValue): removed some commented out lines,
4521         * (genFunction): check for ISR via sym->type, absolute section for
4522         interrupt code is created via a new pBlock, the goto instruction is
4523         placed now correctly at the interrupt vector position, changed all
4524         references from ivec to _G.interruptvector,
4525         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4526         is the interrupt is a high priority one, same for return from ISR,
4527         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4528         externs to calls of checkAddSym,
4529         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4530         pic16_pcode_verbose flag is set,
4531         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4532         * src/pic16/pcoderegs.c: message about how many registers are saved
4533         will only be emitted if pic16_pcode_verbose flag is set,
4534
4535 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4536
4537         * src/ds390/ralloc.h,
4538         * src/ds390/ralloc.c (ds390_regWithIdx),
4539         * src/ds390/gen.c (emitcode),
4540         * src/ds390/main.h,
4541         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4542         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4543         ds390operandCompare, getRegsRead, getRegsWritten,
4544         initializeAsmLineNode): customized instruction size calculation for
4545         ds390, started basis for some register optimizations
4546         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4547         corresponding assembly output
4548         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4549         missing push/pop of r0/r1. Optimized push/pops
4550
4551 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4552
4553         * src/mcs51/main.c (instructionSize): fixed ACALL size
4554         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4555
4556 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4557
4558         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4559         the sorting of rlist with NULL elements
4560         * (print_idataType, print_idata): NEW to create idata sections
4561         * src/pic16/device.h: idataSymSet new variable
4562         * src/pic16/gen.c (genFunction): fixed some bugs in string
4563         comparing, improved the absolute section creation for ISRs,
4564         added FSR0L/FSR0H in registers that are saved in an ISR,
4565         * (genInline): fixed the processing of inline snippets,
4566         now they undergo no process by the peephole optimizer
4567         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4568         are placed in idataSymSet,
4569         * (pic16emitStaticSeg): extern symbols are added in externs,
4570         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4571         switching when aboslute variables are placed in access bank memory
4572         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4573         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4574         commented out with #if,
4575         * (pic16_packRegisters): reintroduce the check for CAST because some
4576         symbols are not correctly handled,
4577         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4578         pCodeInstruction instead of pCode,
4579         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4580         pCodeAsmDir definition,
4581         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4582         directive, then the argument directive is emitted without the leading
4583         tab, hack for inline labels which must be in the first column,
4584         * (compareLabel,pic16_findNextInstruction),
4585         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4586         * (insertBankSwitch): modified for the new pCodeAsmDir,
4587
4588 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4589         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4590
4591         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4592         instance,
4593         * (pushSide): commented out with #if,
4594         * (assignResultValue): fixed some typos in saving
4595         registers,
4596         * (genPcall): FIXED and sync'ed with genCall,
4597         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4598         * (genNearPointerGet): fixed to handle some more cases,
4599         implementation scheme via table reads,
4600         * (genConstPointerGet): modified to access code memory correct,
4601         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4602         and improved to handle some cases
4603         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4604         instead of "RETLW" for init data
4605         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4606         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4607         variables are placed in access bank memory (<0x80 and >=0xf80),
4608         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4609         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4610         TBLWT_POSTDEC,TBLWT_PREINC
4611         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4612         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4613         directives
4614         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4615         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4616         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4617         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4618
4619 2004-02-29  Borut Razem <borut.razem AT siol.net>
4620
4621         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4622         support/Util/findme.h, support/Util/system.h: enhance binary relative
4623         search for lib and include by using findProgramPath()
4624
4625 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4626
4627         * src/SDCCpeeph.h,
4628         * src/SDCCpeeph.c (pcDistance),
4629         * src/port.h,
4630         * src/mcs51/ralloc.h,
4631         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4632         * src/mcs51/main.h,
4633         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4634         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4635         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4636         size calculation port specific, started basis for some register
4637         optimizations
4638         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4639         missing push/pop of r0/r1. Optimized push/pops
4640         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4641         * device/lib/_modsint.c (_modsint),
4642         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4643         and stack version so regression tests pass
4644
4645 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4646
4647         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4648         * src/SDCCast.c (decorateType): catch another small optimization
4649         with '?' operator
4650         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4651         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4652         modified to finally use computeType() all over SDCC,
4653         see Feature Request #877103
4654         * src/SDCCval.h: cosmetic
4655         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4656         valCompare(); regression tested in muldiv.c
4657         * support/regression/tests/muldiv.c (testMod): mod sign follows
4658         dividend only
4659
4660 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4661
4662         * src/SDCCast.c (decorateType): fixed bug #902362
4663         * doc/INSTALL.txt: fixed install instructions for win32
4664
4665 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4666
4667         * device/include/Makefile.in (install): fixed by replacing spaces
4668         by tabs
4669         * doc/README.txt,
4670         * doc/INSTALL.txt: updated for release
4671         * doc/sdccman.lyx: added warning for --xstack being buggy
4672
4673 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4674
4675         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4676         to eliminate build warnings.
4677         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4678
4679 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4680            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4681
4682         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4683         removed -penable-stack, added comment for stack pragma, added
4684         warning for not initializing the stack/frame registers, removed
4685         comment at interrupts section
4686
4687         Stack is made permanent, there is no ability to disable stack usage.
4688         * src/pic16/device.h,
4689         * src/pic16/device.c: removed all references to USE_STACK macro,
4690         * src/pic16/device.c (pic16_dump_section): when no elements in
4691         rlist, free rlist before return,
4692         * (pic16_dump_int_registers): NEW, internal registers are a new set
4693         of general purpose registers reused by each function,
4694         * (checkAddReg): returns 1 if registers is added to set,
4695         * (pic16_groupRegistersInSection): when a registers is of type
4696         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4697         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4698         SRCASECMP macro is moved here from device.c
4699         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4700         PO_PCLATU, PO_PRODL, PO_PRODH,
4701         * (pic16_pCodeOpType, genMinus,
4702         changed compares to "a" register, with AOP_ACC,
4703         * (pic16_genPlus): fixed some bugs and indented properly,
4704         * (pic16_addSign): changed size to size+offset in the MOVWF
4705         instruction,
4706         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4707         multiply 8-bit operand by literal, result is 8-bit,
4708         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4709         multiply 2 8-bit operand, result is 8-bit,
4710         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4711         genUMult8X*_16,
4712         * src/pic16/gen.c: changed accUse to contain WREG only,
4713         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4714         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4715         true, do not use immediate addressing any more unless sym is a
4716         pointer in codespace,
4717         * (aopForRemat): do not use immediate addressing when symbol not in
4718         codespace and when symbol's address is requested,
4719         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4720         accUse size (= 1),
4721         * (aopGet): added case for AOP_ACC and don't return "accumulator
4722         bug" but WREG instead,
4723         * (popGetTempReg): pushes contents of temporary register in stack,
4724         * (popReleaseTempReg): pops contents of temporary register from
4725         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4726         * (pic16_popGet): separated case AOP_ACC to return register WREG
4727         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4728         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4729         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4730         the use of immediate pointers to certain cases only.
4731
4732         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4733         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4734         * (assignResultValue, genCall, genRet): modified to use the new
4735         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4736         genPcall is still broken,
4737         * (genFunction): added code to create 'A' type pBlocks when
4738         interrupt functions are generated, code not extensively tested yet,
4739         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4740         * (genEndFunction): modified so ISRs pop stored registers from stack,
4741         * (genMultOneByte): cleanup,
4742         * (AccRsh): added flag andmask, to and result with appropriate mask,
4743         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4744         * (genDataPointerGet): fixed and reenabled its use,
4745         * (genNearDataPointerGet): bugs fixed,
4746         * (genDataPointerSet): bugs fixed,
4747         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4748         pic16_DumpSymbol, pic16_DumpOp,
4749         * src/pic16/genutils.h: function prototypes for the above functions,
4750         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4751         pointers,
4752         * (pic16emitRegularMap): many many many improvements, but needs a
4753         major cleanup,
4754         * src/pic16/main.c: enable_stack in pic16_options is removed,
4755         * (_pic16_parseOptions): removed command line options -penable-stack,
4756         * (_process_pragma): emit stack symbol only when stack pragma is
4757         processed,
4758         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4759         redirected to FSR0L/FSR0H pair,
4760         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4761         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4762         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4763         for immediates,
4764         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4765         * (dumpPicOptype): NEW,
4766         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4767         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4768         with movff instruction,
4769         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4770         added pic16_int_regs, some packRegsFor* functions are commented out,
4771         because produce errors,
4772         * src/pic16/NOTES: minor modifications
4773
4774 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4775
4776         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4777         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4778         --pack-iram.
4779         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4780         * as/mcs51/lkaomf51.c: fixed bug #895763
4781
4782 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4783
4784         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4785
4786 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4787
4788         * doc/sdccman.lyx: added details about the HC08 storage classes and
4789         interrupts, fixed the register usage info for z80 & gbz80
4790
4791 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4792
4793         * doc/sdccman.lyx: added more pic16 port documentation
4794         * device/include/pic16/: added header pic18fregs.h
4795
4796 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4797
4798         * doc/sdccman.lyx: added Vangelis' contribution
4799
4800 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4801
4802         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4803         extend to the next CALL or PCALL, not just to the next CALL.
4804
4805 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4806
4807         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4808
4809 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4810
4811         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4812         bug #895752 and a better fix for bug #716790
4813
4814 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4815
4816         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4817
4818 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4819
4820         * doc/sdccman.lyx: minor changes, minor changed
4821
4822 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4823
4824         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4825         which can't handle SDCC_NEWONEBYTEOPS,
4826         (geniCodeMultiply): removed conversion from mult to shift for pic14
4827         and pic16
4828
4829 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4830
4831         * src/hc08/gen.h,
4832         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4833         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4834         thus fixing bug #895406
4835
4836 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4837
4838         * device/lib/_modsint.c,
4839         * device/lib/_modslong.c: sign follows divisor only
4840         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4841         signs or signedness can be ignored
4842         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4843         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4844         added optimization for IFX,
4845         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4846         arguments;
4847         reenabled optimization for IFX, which was removed on 2004-01-11
4848         * src/SDCCast.h: added return type IFX
4849         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4850         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4851         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4852         SDCC_OLDONEBYTEOPS selects the old behaviour
4853         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4854         changed again and commented promotion rule
4855         * src/SDCCval.c (valDiv): promotion no longer necessary
4856         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4857         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4858         rewritten
4859         * support/regression/tests/onebyte.c: added
4860
4861 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4862
4863         * gen.c (genInline): reverted to old code for assemnling inline
4864         code because of bug reported James Chadd
4865
4866 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4867
4868         * ralloc.h: missing declarations from previous patch,
4869         seems that patch for ralloc.h was never applied, fixed
4870
4871 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4872            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4873
4874         * pcode.c,
4875         * pcode.h,
4876         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4877         indirect addressing. Marked FSR0 as deprecated
4878         * gen.c (pointerCode): commented out, not needed now
4879         (pic16_popGet2p): new MOVFF helper function
4880         (genGenPointerGet),
4881         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4882         (shiftRLong): removed duplicate debugging info
4883
4884 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4885
4886         * src/ds390/gen.c (genNearPointerGet),
4887         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4888         optimization with bits, but not bitfields.
4889         * src/ds390/ralloc.c (packRegisters),
4890         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4891
4892 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4893
4894         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4895
4896 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4897
4898         * src/SDCCsymt.h,
4899         * src/SDCCicode.c (operandFromSymbol),
4900         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4901         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4902         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4903         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4904         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4905         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4906         bug #892038
4907         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4908         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4909         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4910         * src/SDCCsymt.c (newSymbol),
4911         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4912         enumerator_list),
4913         * src/SDCCval.h,
4914         * src/SDCCval.c (newiList): fixed bug #885705
4915
4916 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4917
4918         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4919         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4920
4921 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4922
4923         * device/include/c8051f120.h,
4924         * device/include/c8051f300.h,
4925         * device/include/c8051f310.h: added/updated header files for Silicon
4926         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4927         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4928         in new section Submitting patches
4929
4930 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4931
4932         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4933         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4934         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4935         genGenPointerSet),
4936         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4937         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4938         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4939         genGenPointerSet),
4940         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4941         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4942         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4943         genGenPointerSet),
4944         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4945         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4946         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4947         genGenPointerSet): fixed bug #892400
4948         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4949         to eliminate build warnings.
4950         * src/SDCCast.c (processParms),
4951         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4952         fixed bug 751859
4953         * support/valdiag/valdiag.py: added GCC to the list of defines active
4954         when compiling with gcc
4955
4956 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4957
4958         * support/Util/SDCCerr.h,
4959         * support/Util/SDCCerr.c,
4960         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4961         with an incomplete type (fixed bug #883734)
4962         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4963
4964 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4965
4966         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4967
4968 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4969
4970         * src/SDCCast.c (decorateType),
4971         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4972         function pointer implementation
4973         * support/regression/tests/funptrs.c: added tests to verify both forms
4974         of function pointers work correctly. Added tests to verify parameters
4975         are passed in the correct order.
4976
4977 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4978
4979         * device.c (regCompare): registers are sorted by ascending
4980         address and increasing size,
4981         * main.c (_pic16_finaliseOptions): removed the declaration
4982         of compiler macro MCU. Now a macro of the format pic18fxxxx
4983         will be defined from the command line
4984
4985 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4986             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4987
4988         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4989         PCOP_RLCF was overwritten!
4990         * gen.c (genSkip): commented out calls to pic16_emitcode,
4991         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4992         * (genlshTwo),
4993         * (genRRC): added debugging info,
4994         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4995         overwritten while shifting,
4996         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4997         overwritten while shifting,
4998         * (AccLsh),
4999         * (AccRsh),
5000         * (shiftLLeftOrResult),
5001         * (shiftRLeftOrResult),
5002         * (shiftRLong),
5003         * (shiftLLong): Implemented with pic16_emitpcode
5004         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5005         * (genLeftShift): Fixed bug, operand for shift by variable always
5006         was "and"ed with 0x0f,
5007         * (genLeftShiftLiteral),
5008         * (genrshTwo),
5009         * (genRightShiftLiteral): added debugging info,
5010         * (genrshFour): added comment,
5011         * (genRightShift): determined signedness from operand "left"
5012         instead of "result"
5013
5014 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5015
5016         * src/SDCCicode.c (geniCodeParms),
5017         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5018         function pointers, fixed function pointer bugs #861242 and #861896
5019
5020 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5021
5022         * device/include/c8051f000.h,
5023         * device/include/c8051f120.h,
5024         * device/include/c8051f300.h: added header files for Silicon
5025         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5026
5027 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5028
5029         * src/SDCCast.c (processParams): added new type flow and restructured
5030         (gatherAutoInit): added new type flow
5031         (addCast): cosmetic changes
5032         (getLeftResultType): added new type flow for array indices, patch
5033         provided by Stas, see FR #877103
5034         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5035         array index patch by Stas
5036         * src/SDCCast.h: added prototype getResultTypeFromType()
5037         * src/SDCCval.h,
5038         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5039         * src/pic/glue.c (pic14emitStaticSeg),
5040         * src/pic16/glue.c (pic16emitStaticSeg),
5041         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5042         for initialization of symbols
5043         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5044         * support/Util/SDCCerr.h:
5045         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5046         * .version: bumped version number to 2.3.8
5047         * device/include/Makefile.in (install),
5048         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5049         avoid warnings
5050
5051 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5052
5053         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5054         Slade Rich fixed an optimization bug
5055         * src/pic/pcodepeep.c,
5056         * src/pic/pcoderegs.c
5057         * doc/Makefile (install): added test for directory
5058
5059 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5060
5061         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5062         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5063         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5064         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5065         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5066         * as/mcs51/asexpr.c (term),
5067         * as/hc08/asexpr.c (term): fixed bug #887146
5068
5069 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5070
5071         * src/z80/gen.c (genMult): handle single byte result product
5072         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5073         DUMMY_READ_VOLATILE (fixed bug #886367)
5074
5075 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5076
5077         * support/regression/tests/libmullong.c: fixed logic, on little endian
5078         hosts we ended without a mullong_wrapper()
5079
5080 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5081
5082         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5083         virus/worm forged address usage.
5084
5085 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5086
5087         Fixed promotion, it should be done on AST level:
5088         * src/SDCCast.c (addCast): added promotion to int
5089         (decorateType): updated call to upCast()
5090         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5091         usualUnaryConversions()
5092
5093 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5094
5095         * support/regression/tests/literalop.c (mulWrapper): Added a
5096         wrapper to remove integer overflow warnings.
5097
5098         * support/regression/tests/float_trans.c: Made work on host.
5099
5100         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5101         location of sz80.
5102
5103         * support/regression/generate-cases.py (main): Changed from inline
5104         to a main method.
5105
5106         * doc/Makefile (install): Changed to depth first to get rid of
5107         missing directory install warning.
5108
5109         * as/Makefile (install-doc): Made work on Mac.
5110
5111 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5112
5113         * src/SDCCast.c: added an additional type flow in decorateType() of
5114         opposite direction, see feature request #860006; it's enabled at runtime
5115         by setting the environment variable SDCC_NEWTYPEFLOW
5116         * src/SDCCast.h: changed prototype of decorateType()
5117         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5118         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5119         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5120         see feature request #877103
5121         * src/SDCCval.c: updated call of decorateType()
5122         (valBitwise): fixed bug #882876
5123         (valMinus): added promotion
5124         (valLogicAndOr): result is unsigned
5125         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5126         * src/SDCCsymt.c (computeType),
5127         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5128         must not cause an unsigned operation
5129         * src/pic/glue (pic14emitRegularMap),
5130         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5131
5132 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5133
5134         * src/pic/pcode.c (PCodeID): commented out left over debug code
5135
5136 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5137
5138         * support/valdiag/tests/overflow.c: added shift tests
5139         * src/pic/device.c,
5140         * src/pic/gen.c,
5141         * src/pic/gen.h,
5142         * src/pic/glue.c,
5143         * src/pic/main.c,
5144         * src/pic/pcode.c,
5145         * src/pic/pcode.h,
5146         * src/pic/pcodepeep.c,
5147         * src/pic/pcoderegs.c,
5148         * src/pic/ralloc.c,
5149         * src/pic/ralloc.h: applied patch from Slade Rich;
5150         added support for multiple code pages and multiple RAM banks on the
5151         PIC 14 port. The ASM files now no longer simply assume all the
5152         code / RAM are in the same page / bank. This means the linker can
5153         safely allocate code/RAM of separate ASM files to different pages/banks.
5154         * doc/sdccman.lyx: added Slade's tips
5155         * src/mcs51/peeph.def: fixed bug #880768
5156
5157 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5158
5159         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5160         * src/SDCCast.c (decorateType): fixed bug #880197
5161
5162 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5163
5164         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5165         getopt.h.
5166
5167         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5168         strtof is not part of C89 and isn't included with Mac OS X.
5169
5170 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5171
5172         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5173         shiftL2Left2Result): fixed bug #879326
5174         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5175         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5176         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5177         address fetch for clr instruction
5178         * device/lib/hc08/_mulint.c: created optimized assembly version
5179         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5180
5181 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5182
5183         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5184         proposed in FR #877103
5185
5186 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5187
5188         * src/SDCCval.c (cheapestVal): added missing checks
5189         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5190         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5191
5192 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5193
5194         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5195         equal operands
5196
5197 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5198
5199         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5200         loaded with the linker search paths (-L arguments) and the libraries
5201         to be linked with the current source (-l arguments). Changes
5202         currently will affect only the pic16 port.
5203         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5204         include path the port specific paths and port specific libraries,
5205         * gplink command now contains the $3 argument,
5206         * src/pic16/device.h,
5207         * src/pic16/device.c,: structure PIC_device is made public and
5208         renamed to PIC16_device, the same for variable Pics which is renamed
5209         to Pics16. Updated all references to them.
5210         * src/pic16/glue.c (pic16glue): corrected bug with code
5211         initialization which bypassed the variable initializations block.
5212
5213         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5214         COMPILE_FLAGS and added the --nostdinc option
5215
5216 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5217
5218         * device/include/mc68hc908jb8.h: Register defs for another member
5219         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5220
5221 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5222
5223         Documenting changes from previous commits.
5224         * configure.in (version 1.56),
5225         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5226         when generating output files to configure the pic16 library,
5227         but now I've commented it out, since gputils aren't installed in the
5228         SF compile farm, so library won't compile
5229
5230         * device/lib/Makefile.in (version 1.56): initially I've added in
5231         target 'all' the prerequestive 'model-pic16' so it compiled the
5232         pic16 library, but now I've commented it out for the same reasons
5233         above,
5234         * added targets 'model-pic16' and 'objects-pic16' to compile the
5235         library
5236         * added target 'port-specific-objects-pic16' to handle the
5237         generated libraries and copy them into the build/ directory
5238         * added target 'clean-intermediate-pic16' to clean intermediate
5239         files into pic16 directory
5240         * in target 'installdirs' added line to create directory pic16 in
5241         the installation path
5242
5243         * device/include/Makefile.in (version 1.11): in target 'install'
5244         added lines to copy all header files to installation path,
5245         * in target 'installdirs' added line create directory for pic16
5246         headers in the installation path
5247
5248 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5249
5250         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5251          a function call
5252
5253 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5254
5255         * configure,
5256         * device/lib/configure.in,
5257         * device/lib/configure: fixed for autoconf 2.57
5258
5259 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5260
5261         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5262         option so that it actually works. Made it specific to the z80, since
5263         the gbz80 doesn't have these kinds of I/O ports.
5264
5265 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5266
5267         * device/include/z180.h,
5268         * device/lib/_memcpy.c,
5269         * device/lib/_memmove.c,
5270         * device/lib/_mulint.c,
5271         * device/lib/ser_ir.c,
5272         * device/lib/ser_ir_cts_rts.c,
5273         * device/lib/_strcmp.c,
5274         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5275         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5276         portmode; added deprecation warning for bank= and protmode= forms.
5277         Also, guard against buffer overflow.
5278         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5279
5280 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5281
5282         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5283         changed interrupt vector table generation to only emit declared vectors.
5284         * device/include/Makefile.in: added missing backslash
5285         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5286
5287 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5288
5289         Mainly changes to support compilation of the device libraries
5290         * src/pic16/device.c: stack is allocated via symbol and not
5291         via literal number. The symbol is placed in the corresponding
5292         position of the data ram
5293         * (pic16_dump_section): relocatable and absolute uninitialized
5294         data are now emitted in sorted order to reduce section naming,
5295         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5296         weren't marked as being in the access bank,
5297
5298 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5299
5300         Added portion of GNU PIC Library under the directory
5301         device/include/pic16 and device/lib/pic16. These files
5302         contain the declarations of SFRs for the PIC18Fxx2 devices.
5303         The directory is initialized via configure from toplevel.
5304
5305 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5306
5307         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5308         the spilllocations to be compared correctly
5309
5310 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5311
5312         * src/SDCCast.c (decorateType): fixed bug introduced today
5313
5314 2004-01-12  Borut Razem <borut.razem AT siol.net>
5315
5316         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5317         doc/sdccman.lyx: upper case pragmas are deprecated
5318
5319 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5320
5321         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5322         in simpler and even better code
5323
5324 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5325
5326         * src/SDCCicode.c (operandOperation): fixed bug #874819
5327         * src/SDCCast.c (decorateType): fixed
5328         char foo (unsigned long ul) { return ul > 0; }
5329
5330 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5331
5332         * doc/sdccman.lyx: Moved and added some sections, small changes
5333         all over. Telling LaTeX to be less strict with word spacing
5334         to better keep the right margin. Changed some notes about
5335         maintainance of the ports in section 3.2.1 - is it OK like this?
5336
5337 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5338
5339         SDCC source changes:
5340         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5341         convilong): modified to inform the pic16 port that builtin functions
5342         are external
5343
5344         PIC16 PORT specific changes:
5345         * src/pic16/device.c pic16_dump_equates() added,
5346         processor registers declared internally by the port are emitted in
5347         the translation as equates,
5348         * src/pic16/gen.c: inline code is passed unprocessed to the
5349         translation,
5350         * (pic16_popGetLit2): fnuction modified to take second operand as
5351         pCodeOp pointer and not as literal,
5352         * (popRegFromIdx): prefixed with pic16_,
5353         * (pic16_popCombine2): modified to receive already allocated pCode
5354         operands,
5355         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5356         * (genFunction): initializes local stack frame and pushes on stack
5357         all the registers used by this function,
5358         * (genEndFunction): restores all registers from stack and restores
5359         stack frame,
5360         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5361         improvements,
5362         * (pic16glue): changed the program startup sequence,
5363         * added new dbName code 'A' for functions placed in absolute section
5364         * src/pic16/main.c: added function attribute _naked,
5365         * added pragma 'code' to place a fnuction at an absolute address,
5366         * added command line arguments --debug-ralloc and --pcode-verbose,
5367         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5368         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5369         * (pic16_newpCodeOpLit2): modified to take the second operand as
5370         pCodeOp pointer,
5371         * (pic16_printpBlock): modified to emit each function in a separate
5372         section,
5373         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5374         UPPER for immediate operands,
5375         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5376         instruction,
5377         * src/pic16/peeph.def: all peepholes with movff are commented out,
5378         because there is a problem in the pcode peep optimizer,
5379         * src/pic16/ralloc.c: the register allocator can now reuse local
5380         function symbols for another function. This saves register usage.
5381         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5382
5383         Added file src/pic16/NOTES with information about program writing on
5384         the current port version.
5385
5386 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5387
5388         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5389         and peephole 252 (array access)
5390
5391 2004-01-09  Borut Razem <borut.razem AT siol.net>
5392
5393         * src/SDCCmain.c : fixed #872250: -l command line defined library
5394           files are scanned before standard library files
5395
5396 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5397
5398         * src/SDCCast.c (decorateType): fixed bug #874046
5399
5400 2004-01-09  Borut Razem <borut.razem AT siol.net>
5401
5402         * support/scripts/sdcc.nsi: remove previous installation
5403
5404 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5405
5406         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5407         bytes for last interrupt vector (mcs51)
5408         * sdcc.spec: fixed typo
5409
5410 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5411
5412         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5413         gen51Code): more efficient parameter receive for --model-large
5414         ("bug" #845294)
5415
5416 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5417
5418         * src/ds390/main.c,
5419         * src/z80/main.c: added missed needLinkerScript flags (more than
5420         one port structure defined in these file)
5421         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5422         bug #795325
5423
5424 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5425
5426         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5427         * src/port.h: added flag needLinkerScript in port->linker
5428         structure to inform whether to create a .lnk file or not,
5429         * src/avr/main.c,
5430         * src/ds390/main.c,
5431         * src/hc08/main.c,
5432         * src/mcs51/main.c,
5433         * src/pic/main.c,
5434         * src/pic16/main.c,
5435         * src/xa51/main.c,
5436         * src/z80/main.c: changed appropriately to configure
5437         needLinkerScript flag
5438         * src/pic/gen.c,
5439         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5440         * src/pic/glue.c: added variable udata_section_name to
5441         override default uninitialized data segment definition for
5442         devices only with SHAREBANK memory (reported from Erik Epetrich)
5443         * (pic14emitOverlay): modified to emit a commented overlay segment
5444         directive when no overlay data exist
5445         * (picglue): modified to emit uninitialized data segment
5446         according to udata_section_name
5447         * src/pic/main.c (_pic14_parseOptions): added command line
5448         options --udata-section-name=[name] to override default
5449         udata definition name
5450         * modified _linkCmd and _asmCmd to include compiler passed
5451         arguments via -W option
5452         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5453         object file from '.rel' to '.o' in port->linker structure,
5454         changed size of fptr from 2 to 3 in port structure
5455
5456 2004-01-07  Borut Razem <borut.razem AT siol.net>
5457
5458         * support/scripts/sdcc.nsi: update PATH
5459         * support/scripts/sdcc.ico: craeted
5460
5461 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5462
5463         * device/include/Makefile.in: fix install
5464         * doc/Makefile: fix install
5465
5466 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5469         in bug #860505
5470         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5471         how the function variable allocation summary is displayed; also
5472         include information about variables allocated to the overlay
5473         segment
5474
5475 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5476
5477         * as/mcs51/lkmain.c: Help about -Y option
5478         * as/mcs51/lkarea.c: Fixed gcc warnings
5479
5480 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5481
5482         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5483         fixed warning
5484         * support/valdiag/tests/overflow.c: added
5485         * src/SDCCast.c (decorateType),
5486         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5487         LEFT_OP (left shift)
5488
5489 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5490
5491         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5492         (default behaviour).
5493
5494 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5495
5496         A python script to validate compiler diagnostic messages. It can be
5497         used to verify that sdcc complains about bad c source code and
5498         gives a good location of the error.
5499         * support/valdiag/Makefile,
5500         * support/valdiag/valdiag.py,
5501         * support/valdiag/tests/*
5502
5503 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5504
5505         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5506         * src/SDCCsymt.c (newEnumType),
5507         * src/SDCCsymt.h
5508         * support/Util/SDCCerr.c,
5509         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5510         enum related bugs.
5511         * support/regression/tests/enum.c: added test for enum values that
5512         require at least 2 bytes of storage.
5513
5514 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5515
5516         * src/common.h: added ifndef/define/endif macros
5517         around the header file.
5518         Bug reported from Jesus Calvino-Fraga
5519
5520 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5521
5522         * sdcc.spec: updated
5523         * device/include/Makefile.in: don't install CVS directories
5524         * device/lib/Makefile.in: added removal of CVS directories after install
5525         * doc/Makefile: fixed install, added local_icons
5526         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5527         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5528         * src/ds390/gen.c (genRightShift): fixed bug #870788
5529         * src/SDCCast.c (decorateType): fixed bug #870781
5530
5531 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5532
5533         PIC16 port related changes:
5534         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5535         added variable stackPos,
5536
5537         * gen.c: genCall, assignResultValue: added support for
5538         pushing/retrieving function parameters to/from stack,
5539         genFunction,genEndFunction: setup stack frame for the
5540         generated function,
5541         genAddrOf: will be changed according to bug 863624
5542
5543         * added files genutils.c and genutils.h which contain gen*
5544         debugged and optimised functions extracted from gen.c
5545
5546         * glue.c: added variable 'externs' which holds extern symbols,
5547         pic16emitRegularMap: is modified to properly handle relocatable
5548          symbols under the new scheme,
5549         pic16createInterruptVect: is modified
5550         pic16printPublics: is modified to emit 'global' assembler directives,
5551         added pic16_printExterns to print extern symbols,
5552         pic16glue: initializes stack/frame pointer in the beginning of
5553         the assembly output. Temporary hack, will be corrected later,
5554         because gplink yet does not support stack and SDCC does not
5555         yet support a type of crt0.o object to create the final binary.
5556
5557         * Removed many lines that contain 8051 legacy code.
5558         * The code is finally placed under a 'code' directive.
5559         * Added port specific options.
5560
5561         * _process_pragma: simplified since now we do not need *special*
5562         include file to define SFR registers. But a separate header
5563         will be needed. This will be developed later.
5564         * _pic16_parseOptions: added, parses port specific options:
5565         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5566         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5567         --preplace-udata-with=
5568
5569         * _pic16_setDefaultOptions: modified to initialize section names,
5570         but hack is temporarly out of order since it needs improvement.
5571         * _pic16_genAssemblerPreamble: configuration words are emitted by
5572         their address instead of their name. This part is incomplete and
5573         supports only the 18Fxx2 devices. Other devices will emit an error
5574         during assembly since they do not contain the same set of config
5575         registers
5576         * _pic16_genIVT: is modified,
5577
5578         * pcode.c: added definitions for some hardware registers that are needed
5579         for stack support
5580         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5581         All PCI entries are updated. Now LFSR is supported.
5582         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5583         * added pic16_newpCodeOpLit2 to support instructions with
5584         two literal arguments
5585         * pic16_pCode2str: corrected code that emits assembler instructions
5586         with two literal operands and those that have an access bit modifier
5587         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5588         this fixes a bug which caused some labels to be lost, when an
5589         assembler directive was added, i.e. banksel,
5590         * pic16_FixRegisterBanking: improved logic that causes the insertion
5591         of bank switching,
5592         * InlineFunction: functions that are called once, are not any more
5593         inlined. This can be a port option in the future,
5594
5595         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5596
5597         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5598         hold the corresponding uninitialized symbols,
5599         * pic16_allocProcessorRegister: registers have explicit marked the
5600         accessBank field,
5601         * pic16_allocInternalRegister: registers are explicit marked as
5602         not used,
5603         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5604         processing list, so bit registers were lost,
5605         *
5606
5607         * ralloc.h: added field 'accessBank' and original symbol operand
5608         in register definition,
5609         * removed the field isMapped from register definition,
5610
5611         ** Several functions have been removed from various sources:
5612         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5613         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5614         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5615         pic16_assignRelocatableRegisters
5616
5617         ** others have been introduced:
5618         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5619         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5620
5621 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5622
5623         * support/scripts/inc2h.pl: changed definition of BIT_AT
5624         to emit 'sbit at' instead of 'bit at'. This was a request.
5625
5626         PIC16 port related preliminary changes:
5627         * gen.c: prefixed function popRegFromString with
5628         pic16_ and all references to it corrected
5629         * pcode.c: all pic16_pc_* hardware registers prefixed
5630         with underscore (_),
5631         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5632         * ralloc.c: newReg(): when register is REG_SFR then
5633         set address to rIdx,
5634         pic16_allocProcessorRegister(): marks register wasUsed=0
5635         pic16_writeUsedRegs(): added a call to assign processor
5636         registers via pic16_assignFixedRegisters
5637
5638 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5639
5640         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5641         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5642         variables in unused register banks.  Also the SSEG is placed
5643         wherever there is enough space for it, and IDATA can be anywhere
5644         in internal RAM.  For now compile using -Wl-Y[stack_size].
5645         The mem file is different for this option as well, since it
5646         makes no sense of talking about DSEG lenght.
5647
5648 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5649
5650         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5651         in certain cases, e.g. when ROM assignment, patch provided
5652         from Albert den Haan.
5653
5654 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5655
5656         Many signedness and type propagation fixes:
5657         * src/SDCCicode.c: made geniCodeCast() static
5658         replaced SPEC_ by IS_ (cosmetic)
5659         (operandOperation): fixed div and mod operation
5660         (usualBinaryConversions): added support for promotion of char
5661         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5662         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5663         (geniCodeAdd): an array index will stay unsigned, even if promoted
5664         from char to int
5665         (geniCodeArray): ditto
5666         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5667         * src/SDCCsymt.c (computeType): added more support for char;
5668         promotion of char is selectable by promoteCharToInt, fixed signedness
5669         for all cases
5670         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5671         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5672         * src/SDCCval (val*): replaced signedness calculation by
5673         computeType()
5674         rearranged if-branches (cosmetic)
5675         (valShift): added warning W_SHIFT_CHANGED
5676         (valCompare): fixed problem with different types
5677         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5678         * support/regression/tests/literalop.c: added many cases
5679         * support/regression/tests/ast_constant_folding.c: changed finally to
5680         'unsigned int'
5681         * .version: new year, new version: 2.3.7
5682         * src/SDCCmain.c (main): applied patch #866468
5683         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5684         provided by Scott Bronson
5685         * doc/sdccman.lyx: updated documentation for sdcdb
5686         updated and added chapter tips
5687
5688 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5689
5690         * src/SDCCsymt.h: missing from yesterday's commits
5691
5692 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5693
5694         * src/SDCC.y (struct_or_union_specifier),
5695         * support/Util/SDCCerr.c,
5696         * support/Util/SDCCerr.h: verify that struct & union tags are used
5697         as declared.
5698
5699 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5700
5701         * src/SDCCglobl.h: missing from yesterday's commits
5702
5703 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5704
5705         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5706         sft_attributes, struct_declaration, parameter_declaration,
5707         type_name, start_block, declaration_list),
5708         * src/SDCC.lex (check_type): support redefinition of typedef names
5709
5710 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5711
5712         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5713         aligned xdata arrays. Erik helped me with the if clause.
5714
5715 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5716
5717         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5718         warning
5719
5720 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5721
5722         * src/SDCCast.h,
5723         * src/SDCCast.c (newAst_),
5724         * src/SDCCicode.h,
5725         * src/SDCCicode.c (ast2iCode, newiCode),
5726         * src/SDCCglobl.h,
5727         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5728         expr, statement, expression_statement, selection_statement,
5729         iteration_statement, expr_opt, jump_statement): foundation for tracking
5730         sequence points
5731         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5732         point code too)
5733
5734 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5735
5736         * support/Util/SDCCerr.c,
5737         * src/SDCCast.h,
5738         * src/SDCCast.c (createCase, createDefault, decorateType),
5739         * src/SDCClabel.c (labelUnreach),
5740         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5741         to error messages.
5742         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5743         (with thanks to Stas Sergeev)
5744         * device/include/time.h,
5745         * device/lib/time.c (CheckTime): suppress unreachable code warning
5746
5747 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5748
5749         * src/SDCCast.c (createIvalCharPtr),
5750         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5751         bug #753752)
5752         * support/regression/tests/nullstring.c: tests for these two bugs
5753
5754 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5755
5756         * support/Util/SDCCerr.h,
5757         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5758         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5759         about storage class and 'at' used inside struct or union
5760         * src/SDCCBBlock.c (iCodeFromeBBlock),
5761         * src/SDCCcse.c (ifxOptimize),
5762         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5763         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5764         printIval, emitStaticSeg, emitOverlay),
5765         * src/SDCClabel.c (deleteIfx),
5766         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5767         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5768         gatherAutoInit, processParms),
5769         * support/Util/SDCCerr.h,
5770         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5771         reporting for post-parse errors.
5772
5773 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5774
5775         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5776         implicit casts via union; they don't work on big endian systems
5777         (possible fix for bug #861138)
5778
5779 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5780
5781         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5782         * src/mcs51/main.c: fixed the fix for bug #737001
5783
5784 2003-12-15  Borut Razem <borut.razem AT siol.net>
5785
5786         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5787
5788 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5789
5790         * support/makebin/makebin.c: put output in binary mode
5791
5792 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5793
5794         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5795         xdata and data memory on startup. Set the environment variable
5796         SDCC_NOGENRAMCLEAR to disable this.
5797         * src/mcs51/peephole.def,
5798         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5799         (allows non-interrupt and interrupt code to safely compete for a resource
5800         without the non-interrupt code having to disable interrupts)
5801
5802 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5803
5804         * src/SDCCicode.c (geniCodeAdd),
5805         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5806         with valFromType if type might be a pointer and host is big endian).
5807         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5808         types, not just integer types.
5809         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5810         multiply defined with mismatching "at" address.
5811
5812 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5813
5814         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5815         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5816         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5817         with embedded nulls (fixed bug #753752)
5818
5819 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5820
5821         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5822         Apparently this did not see much testing (endless loop)
5823
5824 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5825
5826         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5827
5828 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5829
5830         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5831         gracefully handle NULL memmap pointers
5832
5833 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5834
5835         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5836         instead of deleting the iCode when an operand is volatile
5837         * src/z80/gen.c (genDummyRead),
5838         * src/mcs51/gen.c (genDummyRead),
5839         * src/ds390/gen.c (genDummyRead),
5840         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5841         not just IC_RIGHT
5842         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5843         * src/SDCC.y: fixed bug #850420
5844
5845 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5846
5847         Applied z80 i/o port patch from Peter Townson and fixed some operators
5848         to better handle operands in A register.
5849         * device/include/z180.h
5850         * src/SDCC.y
5851         * src/SDCCglue.c
5852         * src/z80/gen.c
5853         * src/z80/gen.h
5854         * src/z80/main.c
5855         * src/z80/peeph-z80.def
5856         * src/z80/peeph.def
5857         * src/z80/z80.h
5858
5859 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5860
5861         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5862
5863 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5864
5865         * device/lib/hc08/_mullong.c: Removed extra #endif
5866
5867 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5868
5869         * sim/ucsim/hc08.src/inst.cc,
5870         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5871         carries from x to h
5872         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5873         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5874         * device/include/stdarg.h: fixed varargs for hc08
5875         * device/lib/Makefile.in,
5876         * device/lib/hc08/Makefile,
5877         * device/lib/hc08/_mulint.c,
5878         * device/lib/hc08/_mullong.c: fixed some endian problems
5879
5880 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5881
5882         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5883         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5884         * device/lib/_gptrget.c,
5885         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5886
5887 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5888
5889         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5890         * src/SDCCast.c (astErrors): fixed bug #846007
5891         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5892
5893 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5894
5895         * src/SDCCast.c (decorateType): disabled a transformation I added in
5896         revision 1.188 (access to fields of a structure at an absolute address);
5897         it breaks with bitfields, extern declarations, and gcse analysis.
5898         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5899         could be assigned through a pointer, so don't complain.
5900         * src/SDCCast.c (astErrors),
5901         * src/SDCCast.h,
5902         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5903
5904 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5905
5906         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5907         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5908         output of __config directives, since gpasm now supports them
5909         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5910         pre-processor macro, i.e. -DMCU=p18f452
5911         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5912         and modified to handle 'cast' icode similarly to '=' icode
5913         * src/pic16/device.h (typedef struct PIC_device): added field
5914         'extMIface' to indicate that chip has external memory interface
5915         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5916         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5917         18F8720
5918
5919 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5920
5921         * src/SDCC.y (pointer): fixed bug #846006
5922         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5923         * src/SDCCast.c (decorateType): fixed bug #846009
5924         * src/ds390/peeph.def,
5925         * src/ds390/gen.c (genAnd, genOr),
5926         * src/mcs51/peeph.def,
5927         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5928
5929 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5932         * src/SDCCdflow.c
5933         * src/SDCCcse.c
5934         * src/SDCCcse.h
5935         * src/SDCCBBlock.h
5936         * src/SDCCBBlock.c
5937
5938 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5939
5940         fixed bug #845089
5941         * src/SDCCbitv.h,
5942         * src/SDCCbitv.c: added function to free a bitvector
5943         * src/SDCClrange.h,
5944         * src/SDCClrange.c: added function to recompute the liveranges
5945         * src/avr/ralloc.c,
5946         * src/ds390/ralloc.c,
5947         * src/hc08/ralloc.c,
5948         * src/mcs51/ralloc.c,
5949         * src/pic/ralloc.c,
5950         * src/pic16/ralloc.c,
5951         * src/xa51/ralloc.c,
5952         * src/z80/ralloc.c: recompute the liveranges after register packing
5953
5954 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5955
5956         * src/SDCCloop.c (newInduction): fixed bug #845630
5957
5958 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5959
5960         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5961         inadvertantly left behind from my 2003-11-12 change
5962
5963 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5964
5965         Updated headers I neglected to commit yesterday.
5966         * src/SDCClrange.h,
5967         * src/SDCCicode.h
5968
5969 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5970
5971         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5972         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5973         * src/SDCCopt.c (eBBlockFromiCode),
5974         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5975         the creation of the key hash table from the sequencing so it can be used
5976         earlier (for some GCSE bug fixes still pending)
5977
5978 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5979
5980         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5981         * support/regression/tests/addsub.c: testing genPlus shortcut
5982
5983 2003-11-15  Borut Razem <borut.razem AT siol.net>
5984
5985         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5986
5987 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5988
5989         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5990         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5991         ordering is immaterial.
5992         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5993
5994 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5995
5996         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5997         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5998         (SIGSEV) of bug #840381
5999         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6000         unlink new file before rename if new and old filenames are the same)
6001
6002 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6003
6004         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6005         uninitialized variables) for the mcs51. Set environment variable
6006         SDCC_GENRAMCLEAR to test.
6007         xdata initialization slightly shorter
6008
6009 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6010
6011         * src/SDCCsymt.h,
6012         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6013         #838241 & 780691 (basicly the same bug)
6014         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6015         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6016
6017 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6018
6019         * src/SDCCmain.c (linkEdit): "fix" #834252
6020
6021 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6022
6023         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6024         * src/SDCCast.h,
6025         * src/SDCC.y: fixed bug #819403
6026
6027 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6028
6029         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6030         the reentrant attribute.
6031         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6032         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6033         simulation
6034         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6035         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6036         erroneously reduced to a literal.
6037         * src/hc08/ralloc.c (packRegisters, rematStr),
6038         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6039         some cases
6040
6041 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6042
6043         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6044         * doc/sdccman.lyx: changed from 'article' to 'book'
6045         * doc/Makefile: readded test_suite_spec and cdbfileformat
6046
6047 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6048
6049         * device/include/stdlib.h: include malloc.h to comply with ANSI
6050         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6051
6052 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6053
6054         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6055         * doc/clean.mk: also remove *.out files
6056         * doc/sdccman.lyx: some additions, larger top/bottom margins
6057
6058 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6059
6060         * src/SDCC.y: fixed bug #837365
6061         * support/regression/tests/bitopcse.c
6062         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6063         a symbol (might be valop instead)
6064         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6065         * device/lib/clean.mk: added hc08 to the cleaning list
6066
6067 2003-11-04  Borut Razem <borut.razem AT siol.net>
6068
6069         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6070           made 2003-11-04
6071         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6072           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6073           malloc is declared in standard stdlib.h
6074
6075 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6076
6077         * device/lib/hc08/Makefile: need to clean .rel not .o files
6078         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6079
6080 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * src/port.h,
6083         * src/hc08/main.c,
6084         * src/mcs51/main.c,
6085         * src/ds390/main.c,
6086         * src/z80/main.c,
6087         * src/avr/main.c,
6088         * src/pic/main.c,
6089         * src/pic16/main.c,
6090         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6091         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6092         tests (which uses the port's oclsExpense function)
6093         * src/SDCC.y,
6094         * src/SDCCast.c,
6095         * src/SDCCicode.c,
6096         * src/hc08/gen.c,
6097         * src/ds390/gen.c,
6098         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6099
6100 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6101
6102         * src/SDCCcse.c (ifxOptimize),
6103         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6104         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6105         deleting the IFX iCode.
6106         * src/hc08/ralloc.c: reduced unneeded slocs
6107         * src/hc08/gen.c: fixed bug in asmopToBoolean
6108
6109 2003-11-04  Borut Razem <borut.razem AT siol.net>
6110
6111         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6112           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6113           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6114           transferred to configure
6115
6116 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6117
6118         Use headers defined in the C[++] standards:
6119         * sim/ucsim/gui.src/serio.src/fileio.cc
6120         * sim/ucsim/gui.src/serio.src/frontend.cc
6121         * sim/ucsim/gui.src/serio.src/main.cc
6122         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6123         * support/Util/NewAlloc.c
6124         * as/hc08/lklibr.c
6125         * as/mcs51/lklibr.c
6126         * as/z80/aslist.c
6127         * as/z80/assym.c
6128
6129 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6130
6131         * Added MSVC projects for hc08 assembler and linker:
6132         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6133         /as/hc08/link_hc08.dsp
6134
6135 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6136
6137         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6138
6139 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6140
6141         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6142
6143 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6144
6145         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6146
6147 2003-10-31  Borut Razem <borut.razem AT siol.net>
6148
6149         * support/cpp2/cpplib.h,
6150           support/cpp2/cpplib.c,
6151           support/cpp2/cpplex.c,
6152           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6153           to switch _asm block preprocessing on / off. Default is
6154           #pragma preproc_asm +
6155
6156 2003-10-31  Borut Razem <borut.razem AT siol.net>
6157
6158         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6159           when outputting comment blocks (when executed with -C option) and
6160           _asm (SDCPP specific) blocks
6161
6162 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6163
6164         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6165
6166 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6167
6168         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6169
6170 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6171
6172         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6173         * src/SDCCast.c (decorateType): fixed bug #832664
6174
6175 2003-10-31  Borut Razem <borut.razem AT siol.net>
6176
6177         * support\cpp2\cpplex.c: fixed for SDCPP:
6178           comments(when executed with -C option) and _asm blocks
6179           were included even if they where in skipped #if block.
6180           Applied solution from GCC cpp 3.3.2
6181
6182 2003-10-31  Borut Razem <borut.razem AT siol.net>
6183
6184         * src/SDCC.lex: sdcc now understands both formats:
6185           '# <line_number> <file_name>' and
6186           '#line <line_number> <file_name>'
6187         * support/cpp2/cppmain.c: sdcpp now generates the standard
6188           '# <line_number> <file_name>' instead of former
6189           '#line <line_number> <file_name>'
6190
6191 2003-10-30  Borut Razem <borut.razem AT siol.net>
6192
6193         * support/cpp2/cpphash.h,
6194         * support/cpp2/cpplib.h
6195         * support/cpp2/cpplex.c,
6196         * support/cpp2/cppmain.c,
6197         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6198
6199 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6200
6201         Fixed a number of problems revealed by bug #827883.
6202         * src/SDCCloop.c (loopInvariants): Spill location of the
6203         result operand should be recomputed if extracted from
6204         a loop. Also, don't extract assignments of an iTemp
6205         from a literal.
6206         * src/SDCCast.c (isConformingBody): loop reversal should
6207         not occur if the control variable is involved with a
6208         relational operator.
6209
6210 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6211
6212         * .version: bumped to 2.3.6 to reflect the big improvements
6213         made by Erik and Klaus. Thanks!
6214
6215 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6216
6217         Replaced the livrange code.
6218         * src/SDCClrange.c: added new LR code
6219         * src/SDCCloop.c,
6220         * src/SDCCBBlock.h: removed remainig parts from old LR code
6221         * src/ds390/ralloc.c,
6222         * src/ds390/gen.c: minor fixes to make it work with new code
6223
6224 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6225
6226         * as/hc08/asm.h,
6227         * as/hc08/lkrloc.c,
6228         * src/hc08/gen.c,
6229         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6230         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6231         (tweaked fix for bug #818696)
6232
6233 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6234
6235         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6236
6237 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6238
6239         * src/SDCCmain.c,
6240         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6241         * src/mcs51/gen.c (gencjneshort),
6242         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6243         more efficient (per Scott Bronson's suggestion)
6244
6245 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6246
6247         Extended the semantics of the critical keyword to include
6248         individual statements. See RFE #827755 and #799831
6249         * src/SDCC.y
6250         * src/SDCCicode.c
6251         * src/SDCCopt.c
6252         * src/SDCCast.c
6253         * support/Util/SDCCerr.c
6254         * support/Util/SDCCerr.h
6255         * src/mcs51/gen.c
6256         * src/ds390/gen.c
6257         * src/hc08/gen.c
6258
6259 2003-10-19  Borut Razem <borut.razem AT siol.net>
6260
6261         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6262
6263 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6264
6265         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6266         Fixed bug #818696
6267         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6268         and predecrement operand is displayed
6269
6270 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6271
6272         * src/SDCCval.c (valMinus): fixed bug #826041
6273
6274 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6275
6276         Some hc08 related updates that I missed earlier
6277         * sim/ucsim/stypes.h
6278         * support/regression/ports/hc08/spec.mk
6279
6280 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6281
6282         New target "hc08" for the Motorola 68hc08 family of micros
6283
6284         * configure
6285         * configure.in
6286         * Makefile
6287         * src/hc08/*
6288         * src/SDCCmain.c
6289         * src/port.h
6290         * sim/ucsim/hc08.src/*
6291         * sim/ucsim/configure.in
6292         * src/ucsim/configure
6293         * sim/ucsim/packages_in.mk
6294         * as/hc08/*
6295         * as/Makefile
6296         * device/include/mc68hc908qy.h
6297         * device/lib/hc08/*
6298         * device/lib/Makefile.in
6299         * support/regression/ports/hc08/*
6300         * support/regression/Makefile
6301
6302 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6303
6304         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6305         regression test
6306         * src/ds390/gen.c (genCast): fixed bug #821957
6307
6308 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6309
6310         * device/lib/logf.c: "fixed" overlay bug
6311         * support/regression/ports/host/spec.mk: added m library
6312         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6313         * support/regression/tests/float_trans: added (for Eric)
6314
6315 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6316
6317         * src/mcs51/gen.c (genCpl): fixed bug
6318         http://sf.net/mailarchive/message.php?msg_id=6263915
6319
6320 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6321
6322         * src/SDCCast.c (decorateType): added extended constant folding
6323         * src/SDCCsymt.c (computeType): cleanup
6324         * src/SDCCval.c (valShift): minor optimization
6325         * support/regression/tests/ast_constant_folding.c: added
6326
6327 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         * src/SDCCmain.c: removed some unintended changes
6330
6331 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6332
6333         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6334         * src/z80/gen.c: fixed part of bug #817589
6335         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6336
6337 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6338
6339         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6340         * src/SDCCcflow.c
6341         * src/SDCCcse.c
6342         * src/SDCCdflow.c
6343         * src/SDCClabel.c
6344         * src/SDCClrange.c
6345         * src/SDCCmem.c
6346         * src/SDCCopt.c
6347         * src/SDCCpeeph.c
6348         * src/SDCCset.c
6349         * src/avr/ralloc.c
6350         * src/ds390/ralloc.c
6351         * src/izt/ralloc.c
6352         * src/mcs51/ralloc.c
6353         * src/pic/ralloc.c
6354         * src/pic16/ralloc.c
6355         * src/xa51/ralloc.c
6356         * src/z80/ralloc.c
6357         * src/z80/gen.c: removed unused label "release:"
6358
6359 2003-10-06  Borut Razem <borut.razem AT siol.net>
6360
6361         * src/SDCC.lex: removed definition of unused variables
6362           save_optimize and save_options
6363
6364 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6365
6366         * clean.mk: removed '=' in "-maxdepth=1"
6367         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6368         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6369
6370 2003-10-06  Borut Razem <borut.razem AT siol.net>
6371
6372         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6373           my_unput() replaced by unput()
6374
6375 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6376
6377         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6378         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6379         type-punned pointer will break strict-aliasing rules"
6380         Old LR behaviour is again default; Klaus' LR can be choosen by
6381         defining the environment variable LRKLAUS
6382         * src/SDCCBBlock.h
6383         * src/SDCCloop.c
6384         * src/SDCClrange.c
6385         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6386         * clean.mk: fixed removal of files in bin/CVS/
6387         * device/lib/clean.mk: fixed removal of directories small and large
6388         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6389         * src/SDCCicode.c,
6390         * src/SDCCval.c: removed superflous test for pedantic
6391
6392 2003-10-05  Borut Razem <borut.razem AT siol.net>
6393
6394         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6395           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6396           message "unmatched #pragma SAVE and #pragma RESTORE"
6397
6398 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6399
6400         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6401           assembly, critical functions, atomic, nojtbound)
6402
6403 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6404
6405         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6406         * src/SDCCBBlock.h
6407         * src/SDCCloop.c
6408         * src/SDCCloop.h
6409         * src/SDCClrange.c
6410
6411 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6412
6413         * src/z80/gen.h,
6414         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6415         * src/mcs51/gen.h
6416         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6417         * src/ds390/gen.h
6418         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6419         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6420         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6421
6422 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6423
6424         * src/z80/gen.c (genRet): fixed bug #524753
6425         * src/z80/gen.c (genCast): fixed internal error on cast from
6426         pointer to long
6427         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6428         fix for bug #477835 to the z80
6429         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6430         for tracking iCodes in the peephole optimizer for z80
6431
6432 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6433
6434         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6435         the other part of bug #814548
6436         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6437
6438 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6439
6440         * src/SDCCcse.c: fixed part of bug #814548
6441
6442 2003-09-28  Borut Razem <borut.razem AT siol.net>
6443
6444         * src/asm.c: rewrite of printILine() to use temporary file instead
6445           a pipe
6446         * src/xa51/main.c: commented out declaration of int rewinds
6447
6448 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6449
6450         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6451
6452 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6455         * src/asm.c (printILine): Fixed bug #811015
6456
6457 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6458
6459         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6460         freeing.
6461
6462 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6463
6464         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6465         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6466         to correctly handle general case of AOP_PAIRPTR
6467         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6468
6469 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6470
6471         * src/mcs51/ralloc.c (fillGaps),
6472         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6473         register positioning bug)
6474
6475 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6476
6477         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6478
6479 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6480
6481         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6482         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6483         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6484         (ralloc doesn't intentionally do this now, but perhaps later)
6485         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6486         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6487         register positioning bugs (Fixed bug #762602 and #795325)
6488         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6489         (Fixed bug #808779)
6490         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6491         lines that --i-code-in-asm generates
6492
6493 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6494
6495         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6496         trying to fclose a FILE* that was already closed.
6497
6498 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6501         of const struct should be treated as if const themselves)
6502
6503 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6504
6505         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6506
6507 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6508
6509         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6510         Unix (/n) and DOS (/r/n) line terminations.
6511
6512 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6513
6514         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6515         bug #613775
6516
6517 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6518
6519         * src/mcs51/gen.c (genFunction, genEndFunction),
6520         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6521         and restore of EA so that stack offsets to parameters are
6522         correct when using both critical and reentrant/stack-auto.
6523         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6524         size (can be triggered in error if sloc is shared between
6525         different sized objects)
6526         * device/include/float.h: fixed macros to explicitly use
6527         unsigned long where needed
6528
6529 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6530
6531         Feature req. 799831: added code to allow nesting of critical functions
6532         * src/mcs51/gen.c (genFunction, genEndFunction)
6533         * src/ds390/gen.c (genFunction, genEndFunction)
6534
6535 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6536
6537         * src/SDCCsymt.c (sclsFromPtr),
6538         * src/SDCCsymt.h,
6539         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6540         support for standard C idiom of memory mapped variables; for
6541         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6542         to xdata int at 0x1234 tempvar = 1.
6543         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6544         provided by Akiya ISHIDA
6545
6546 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6547
6548         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6549         * src/SDCCval.c (constVal): added reduction from int to char
6550         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6551         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6552         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6553         to ignore the sign
6554         * support/regression/tests/shifts.c: fixed
6555
6556 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6557
6558         * src/z80/gen.c (genXor): Fixed bug #805445
6559
6560 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6561
6562         Fixed bug #621531 (const & volatile confusion in the type chain).
6563         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6564         refer to the const or volatile state of the pointer itself.
6565
6566         * src/SDCCast.c
6567         * src/SDCCglue.c
6568         * src/SDCCicode.c
6569         * src/SDCCsymt.c
6570         * src/SDCCval.c
6571         * src/SDCC.y
6572         * src/SDCCsymt.h
6573         * src/pic/gen.c
6574         * src/pic/ralloc.c
6575         * src/pic16/gen.c
6576         * src/pic16/ralloc.c
6577         * support/regression/tests/const.c
6578
6579 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6580
6581         When checking for duplicated modules, use absolute paths
6582         instead of relative paths.  Files changed:
6583
6584         * as/mcs51/lklib.c
6585         * link/z80/lklib.c
6586
6587 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6588
6589         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6590
6591 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6592
6593         * device/include/string.h: added size_t typedef, changed
6594         prototypes to use size_t, eliminated separate reentrant and
6595         non-reentrant declarations, added _memmove declaration
6596         * device/lib/_memcpy.c: changed to use size_t instead of int,
6597         changed /4 to >>2 to avoid division library call
6598         * device/lib/_memcmp.c,
6599         * device/lib/_memset.c,
6600         * device/lib/_strncat.c,
6601         * device/lib/_strncpy.c,
6602         * device/lib/_strncmp.c: changed to use size_t instead of int
6603         * device/lib/_memmove.c: new file (fixed bug #772294)
6604         * device/lib/Makefile.in: added _memmove.c
6605         * device/lib/z80/asm_strings.s: fixed bug #772290
6606         * support/regression/tests/bitfields.c: attempt to fix host assertion
6607         failure on amd64-unknown-linux2.2
6608
6609 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6610
6611         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6612         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6613         * as/z80/asmain.c (main): fixed bug #801766
6614
6615 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6616
6617         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6618         compilers
6619
6620 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6621
6622         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6623         reported in bug #800609
6624
6625 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6626
6627         * Top header beautifications in src/pic16 directory:
6628           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6629           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6630           pcoderegs.h, ralloc.c, ralloc.h
6631         * main.c: added top header and GPL license notice
6632         * pcode.c: fixed the if-conditional warning
6633
6634 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6635
6636         * device/lib/_mullong.c: replaced int by short for gcc
6637
6638 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6639
6640         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6641         and JUMPTABLE iCodes properly now (worked by accident before)
6642         * src/mcs51/gen.c (leftRightUseAcc),
6643         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6644         iCode properly now. Use getSize instead of nRegs since a & b
6645         aren't part of the nRegs tally.
6646
6647 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6648
6649         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6650         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6651           before instructions that use the _STATUS register
6652
6653 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6654
6655         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6656         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6657         fetching of the pointer
6658         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6659         copied from genNearPointerSet()
6660         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6661         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6662         If they pop r0/r1 they must be called in the opposite order than aopOp().
6663         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6664         (resp. --stack-auto), prepared for --xstack
6665
6666 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6667
6668         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6669
6670 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6671
6672         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6673         these ports have their own __sdcc_external_start()
6674
6675 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6676
6677         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6678         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6679         type for bits was changed. It resulted in bit variables becoming
6680         global, which is not permitted in PIC 14 assembly output.
6681
6682 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6683
6684         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6685
6686 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6687
6688         Z80 and MCS51 linkers complaint if a public symbol is defined
6689         in more than one library module:
6690
6691         * as/mcs51/lklib.c
6692         * link/z80/lklib.c
6693         * as/mcs51/Makefile.in
6694
6695 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6696
6697         A few small changes that speed up the peephole optimizer.
6698
6699         * src/SDCCpeeph.c
6700
6701 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6702
6703         Try to make the peephole optimizer smarter by maintaining
6704         an association between the assembly source code and the
6705         iCodes that originated them. Put this information to use
6706         with a new peephole rule condition "notVolatile" so that
6707         the rules can be aggressive yet still safe.
6708
6709         * src/SDCCpeeph.c
6710         * src/SDCCpeeph.h
6711         * src/mcs51/gen.c
6712         * src/mcs51/peeph.def
6713
6714 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6715
6716         Fixed bug #741761
6717
6718         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6719         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6720         if the left or right operand symbols have the accuse flag set.
6721
6722 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6723
6724         Changed the type of the result of the ! (NOT) operator to char;
6725         previously it returned the same type as the source. This allows
6726         us to eliminate all the genFloatNot functions (all of its target
6727         implementations were very buggy) since !float can use the same
6728         code as !long now.
6729
6730         * src/SDCCicode.c (ast2iCode): ! returns char
6731         * src/mcs51/gen.c (genNot, genNotFloat),
6732         * src/ds390/gen.c (genNot, genNotFloat),
6733         * src/z80/gen.c (genNot, genNotFloat),
6734         * src/pic/gen.c (genNot, genNotFloat),
6735         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6736
6737 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6738
6739         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6740         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6741            during interrupts. Ensure WSAVE is located at a shared bank address.
6742         2. Fixed page selection in some places
6743         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6744            the registers name strings.
6745         4. Fixed "signed / unsigned compare" compiler warnings.
6746         5. The PIC port manages its own allocation of the general purpose
6747            registers, but makes no attempt to reuse them. As a result when
6748            compiling it soon runs out of general purpose registers. Some
6749            additional code was added to the files pcode.c and device.c to walk
6750            through the function call tree and rename the registers so that they
6751            get reused.
6752
6753         * src/pic/device.c
6754         * src/pic/gen.c
6755         * src/pic/glue.c
6756         * src/pic/pcode.c
6757         * src/pic/pcode.h
6758         * src/pic/ralloc.c
6759         * src/pic/ralloc.h
6760         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6761         genPlus() & genMinus() when the result is the same as left or right
6762
6763 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6764
6765         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6766
6767 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6768
6769         Made bitfield a distinct type from bit so that bitfields
6770         convert as per ANSI C and bits retain their traditional
6771         boolean style behaviour. Implemented bitfield support in
6772         the z80 port.
6773
6774         * src/SDCCsymt.h,
6775         * src/SDCCsymt.c,
6776         * src/SDCCast.c,
6777         * src/cdbFile.c,
6778         * src/mcs51/gen.c,
6779         * src/ds390/gen.c: bit v bitfield split
6780         * src/z80/gen.c: New support for bitfields
6781         * support/regression/tests/bitfields.c: reenabled z80,
6782         added more tests
6783
6784 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6785
6786         Rules 246.x, 247.x relate to bitfields, the others speed up
6787         access to xdata mapped I/O devices.
6788
6789         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6790
6791 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6792
6793         Cleaned up genPackBits and genUnpackBits and added two helper
6794         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6795         for literal assignments in genPackBits (thanks to Frieder for
6796         reminding me).
6797
6798         * src/mcs51/gen.c
6799         * src/ds390/gen.c
6800
6801 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6802
6803         Fixed bug #748310 (pointer to function type mishandled when the
6804         function name is omitted). Also fixed a SIGSEGV when a function
6805         attribute (reentrant, etc) is used on a non-function or on a
6806         function but misplaced before the parameter list.
6807
6808         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6809         bug #748310
6810         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6811         * support/Util/SDCCerr.h,
6812         * support/Util/SDCCerr.c: Added func attr misuse error msg
6813
6814 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         Fixed bug #787649 by anonymous
6817         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6818         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6819
6820 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6821
6822         Fixed numerous bitfield problems.
6823
6824         * src/SDCC.y: More bitfield related error checking
6825         * src/SDCCsymt.h,
6826         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6827         * support/Util/SDCCerr.h,
6828         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6829         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6830         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6831         * support/regression/tests/bitfields.c: tests added
6832
6833 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         Made the constant following the "interrupt" keyword optional. If
6836         omitted, the function will not automatically be given an entry
6837         in the interrupt vector table (similar to #pragma NOIV, but
6838         less syntacticly kludgy). The interrupt number is also now
6839         range checked. Also fixed a bug in the high order bit example
6840         in the manual.
6841
6842         * src/SDCC.y
6843         * src/SDCCmem.c
6844         * src/SDCCglue.c
6845         * src/SDCCsymt.h
6846         * support/Util/SDCCerr.c
6847         * support/Util/SDCCerr.h
6848         * doc/sdccman.lyx
6849
6850 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6851
6852         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6853         * src/SDCCicode.c (operandOperation): rewritten some ops
6854         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6855         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6856         other type
6857         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6858         be re-activated by defining REDUCE_LITERALS)
6859         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6860         unsigned, but are signed by default
6861         * src/SDCCval.c (constVal): rearranged
6862         * src/SDCCval.c (valMod): preliminary fix
6863         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6864         * support/regression/literalop.c: added, work in progress
6865
6866 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6867
6868         Generate warnings for useless declarations like "char data;"
6869         that don't do what new users expect.
6870
6871         * src/SDCC.y
6872         * support/Util/SDCCerr.h
6873         * support/Util/SDCCerr.c
6874
6875 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6876
6877         * src/SDCCval.c (valMult): fix overflow detection of negative int
6878
6879 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6880
6881         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6882
6883         Changes to support big endian targets:
6884
6885         * src/ports.h
6886         * src/SDCCglue.c
6887         * src/avr/main.c
6888         * src/ds390/main.c
6889         * src/izt/i186.c
6890         * src/mcs51/main.c
6891         * src/pic/main.c
6892         * src/pic16/main.c
6893         * src/xa51/main.c
6894         * src/z80/main.c
6895
6896 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6897
6898         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6899         * device/lib/time.c: fixed warning "integer overflow in expression"
6900
6901 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6902
6903         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6904         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6905         constants are unsigned; added recognition of "u" flag for unsigned
6906         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6907         * src/SDCCval.c (valDiv, valMod): fixed signdness
6908         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6909         signedness of modulo, left and right shift
6910         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6911         * support/Util/SDCCerr.h: added warning W_INT_OVL
6912         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6913         * src/SDCCast.c (ast_print): improved output of constants
6914
6915 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6916
6917         Fixed some warnings when building with MSVC:
6918
6919         * as\mcs51\asdata.c
6920         * as\z80\asdata.c
6921         * as\mcs51\asm.h
6922         * as\z80\asm.h
6923         * link\z80\aslink.h
6924         * link\z80\lkdata.c
6925         * link\z80\lkeval.c
6926         * link\z80\lkgb.c
6927         * link\z80\lkihx.c
6928         * link\z80\lks19.c
6929         * link\z80\lksym.c
6930         * support\cpp2\cpplib.c
6931         * src\ds390\gen.c
6932         * src\mcs51\gen.c
6933
6934 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6935
6936         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6937
6938 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6939
6940         * support\librarian\clean.mk: Do not remove Makefile.
6941         * support\librarian\Makefile: added.
6942
6943 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6944
6945         Added librarian to MSVC build:
6946         * all.dsp
6947         * sdcc.dsw
6948         * support\librarian\librarian.dsp
6949
6950         'configure' not needed for librarian, removed:
6951         * support\librarian\configure
6952         * support\librarian\configure.in
6953         * support\librarian\config_in.h
6954         * support\librarian\Makefile.in
6955
6956         Hopefully these ones built the librarian and the rest of sdcc properly:
6957         * Makefile
6958         * Makefile.common.in
6959
6960         Messed up 'configure', so revert to previous version:
6961         * configure
6962         * configure.in
6963
6964 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6965
6966         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6967         there, while the mantissa of a double is "only" 53 bits wide.
6968
6969 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6970
6971         Adding sdcclib to the build.  MSVC project coming soon.
6972         Files added/changed:
6973
6974         * support\librarian\clean.mk
6975         * support\librarian\configure
6976         * support\librarian\configure.in
6977         * support\librarian\config_in.h
6978         * support\librarian\Makefile.bcc
6979         * support\librarian\Makefile.in
6980         * support\librarian\sdcclib.c
6981         * Makefile.bcc
6982         * Makefile
6983         * Makefile.common.in
6984         * configure
6985         * configure.in
6986
6987 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6988
6989         Linker now complaints if linked modules have conflicting options, for
6990         example, one compiled using --model-large and another one compiled with
6991         --model-small.  The following files were modified:
6992
6993         * as\mcs51\asdata.c
6994         * as\mcs51\aslink.h
6995         * as\mcs51\asm.h
6996         * as\mcs51\asmain.c
6997         * as\mcs51\asout.c
6998         * as\mcs51\i51pst.c
6999         * as\mcs51\lkdata.c
7000         * as\mcs51\lklibr.c
7001         * as\mcs51\lkmain.c
7002         * as\z80\asdata.c
7003         * as\z80\asm.h
7004         * as\z80\asmain.c
7005         * as\z80\asout.c
7006         * as\z80\z80pst.c
7007         * link\z80\aslink.h
7008         * link\z80\lkdata.c
7009         * link\z80\lklibr.c
7010         * link\z80\lkmain.c
7011         * src\SDCCglue.c
7012
7013 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7014
7015         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7016         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7017
7018 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7019
7020         * src/z80/mappings.i: fix _mul[us][int,long] entries
7021
7022 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7023
7024         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7025
7026 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7027
7028         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7029         * support/regression/tests/bitopcse.c: added
7030         fixed warning:
7031         * src/avr/gen.c:
7032         * src/pic/gen.c:
7033         * src/pic16/gen.c:
7034         * src/z80/gen.c:
7035         * src/xa51/gen.c:
7036
7037 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7038
7039         added support for new library format to z80, gbz80 linkers:
7040         *link/z80/aslink.h
7041         *link/z80/lklex.c
7042         *link/z80/lklib.c
7043         *link/z80/lklist.c
7044
7045 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7046
7047         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7048         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7049
7050 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7051
7052         added DUMMY_READ_VOLATILE:
7053         * src/SDCC.y:
7054         * src/avr/gen.c:
7055         * src/xa51/gen.c:
7056         * src/z80/gen.c:
7057         * src/pic/gen.c:
7058         * src/pic16/gen.c:
7059         * src/mcs51/gen.c:
7060         * src/ds390/gen.c:
7061         * src/SDCCcse.c (algebraicOpts): many improvements
7062         * src/SDCCcse.h: removed algebraicOpts()
7063         * src/SDCCicode.c (picDummyRead): added
7064
7065 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7066
7067         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7068         "Insufficient space in data memory".
7069
7070 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7071
7072         * src/mcs51/gen.c: fixed bug #771358
7073         * src/z80/gen.c: fixed bug #759087
7074
7075 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7076
7077         * src/pic16/glue.c: minor cleanup by Vangelis
7078
7079 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7080
7081         * device/include/regc515c.h: fixed #758477
7082         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7083         * device/lib/_gptrput.c: saved a few bytes
7084         * my tab spacing is 8, yours too?)
7085         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7086         * device/lib/serial.c: process RX bytes earlier than TX bytes
7087         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7088
7089 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7090
7091         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7092
7093 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7094
7095     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7096
7097 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7098
7099         * device/lib/Makefile.in: bad fix, reverted to 1.43
7100
7101 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7102
7103         * device/lib/Makefile.in: added missing z80 object files
7104
7105 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7106
7107         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7108         pic16 progress by Vangelis:
7109         * src/SDCCglobl.h:
7110         * src/SDCCmain.c:
7111         * src/pic/Makefile:
7112         * src/pic:
7113         * pic/Makefile:
7114         * pic16/device.c:
7115         * pic16/device.h:
7116         * pic16/gen.c:
7117         * pic16/gen.h:
7118         * pic16/genarith.c:
7119         * pic16/glue.c:
7120         * pic16/main.c:
7121         * pic16/pcode.c:
7122         * pic16/pcode.h:
7123         * pic16/pcodepeep.c:
7124         * pic16/peeph.def:
7125
7126 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7127
7128     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7129
7130 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7131
7132     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7133     added gbz80 build to MSVC project.
7134     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7135     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7136     from 8051 stuff and setup so it links using a .lnk file.
7137
7138 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7139
7140     * support/librarian/sdcclib.c: sdcc librarian.
7141     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7142     with sdcclib.
7143
7144 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7145
7146     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7147
7148 2003-07-02  Borut Razem <borut.razem AT siol.net>
7149
7150         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7151         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7152         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7153         src/xa51/main.c, src/z80/main.c:
7154         virtualization of glue() function: each port has it's own glue function,
7155         which is accessed by do_glue function pointer in PORT.general structure
7156
7157 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7158
7159         * DS800C400 fun, improved ROM interface and tinibios.
7160
7161 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7162
7163         * More support for DS80C400. Now includes beginning of interface to ROM.
7164
7165 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7166
7167         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7168
7169 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7170
7171         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7172
7173 2003-06-19  Borut Razem <borut.razem AT siol.net>
7174
7175         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7176
7177 2003-06-19  Borut Razem <borut.razem AT siol.net>
7178
7179         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7180         fixed Z80 port - crt0.o: cannot open.
7181
7182 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7183
7184         * support/Util/MySystem.c (merge_command): revert bad fix
7185
7186 2003-06-18  Borut Razem <borut.razem AT siol.net>
7187
7188         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7189
7190 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7191
7192         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7193         option --use-stdout sends errors to stdout instead of stderr.
7194
7195 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7198
7199 2003-06-15  Borut Razem <borut.razem AT siol.net>
7200
7201         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7202         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7203         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7204         fixed width array of pointers replaced with sets;
7205         multiple include and lib paths ared transferred to preprocessor and linker
7206         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7207         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7208         fixed width array of pointers
7209         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7210         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7211         fixupPath(), getPathDifference()
7212         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7213         fixed width array of pointers
7214
7215 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7216
7217         * src/pic16/ralloc.c: fix warnings
7218         * src/pic16/pcode.c: fix warning
7219
7220 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7221
7222          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7223         know all the details, but essentially this set of changes enable
7224         the pic16 port to generate movff instructions and generate assembler
7225         directives,
7226         * src/SDCCmain.c:
7227         * src/pic16/gen.c:
7228         * src/pic16/glue.c:
7229         * src/pic16/pcode.c:
7230         * src/pic16/device.c:
7231         * src/pic16/main.c:
7232         * src/pic16/pcode.h:
7233         * src/pic16/pcoderegs.c:
7234         * src/pic16/ralloc.c:
7235         * src/pic16/ralloc.h:
7236
7237 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7238
7239         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7240         added option --vc, so sdcc errors and warnings are compatible with
7241         Microsoft Visual Studio.
7242
7243 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7244
7245         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7246           device/lib/libfloat.lib: added atof function.
7247
7248 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7249
7250         * doc/sdccman.lyx: updated to Lyx 1.3
7251         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7252         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7253         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7254
7255 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7256
7257         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7258
7259 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7260
7261         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7262           additions to the "related tools/documentation" section
7263
7264 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7265
7266         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7267
7268 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7269
7270         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7271         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7272
7273 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7274
7275         * doc/sdccman.lyx: fix double dash and other minor things
7276         * doc/Makefile: fix double dash
7277
7278 2003-05-28  Karl Bongers(patches from Martin Helmling)
7279         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7280           condition and ignore commands.
7281
7282 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7283
7284         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7285           is in parts still quite out of date, I did changes as far as I felt makes sense
7286           for a non-native english speaker.
7287           Please feel free to add to the manual or to correct my changes.
7288         * doc/Makefile: undid touching the date of intermediate tex files.
7289
7290 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7291
7292         * doc/sdccman.lyx: Manual has an index now
7293
7294 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7295
7296         Finalize muluint/mulsint and mululong/mulslong merging:
7297         * device/lib/_mulint.c
7298         * device/lib/_mullong.c
7299         * device/lib/gbz80/mul.s
7300         * device/lib/gbz80/stubs.s
7301         * device/lib/z80/mul.s
7302         * device/lib/z80/stubs.s
7303         * src/SDCCsymt.c (initCSupport)
7304
7305 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7306
7307         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7308         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7309           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7310           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7311           instead of /Zm500.
7312
7313 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7314
7315         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7316           the regression tests I'm not brave enough to enable 245.b, 245.c
7317         * doc/sdccman.lyx: added latex preamble for hyperref package.
7318           Using pdflatex this will give you a hyperlinked pdf file with
7319           bookmarks. (prepend '%' before /usepackage if this breaks something)
7320
7321 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7322
7323          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7324
7325 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7326
7327         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7328
7329 2003-05-21    <johan AT balder>
7330
7331         * src/SDCCglue.c (printIval): fixed bug #739934
7332
7333 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7334
7335         Applied patch from bug 737905 (renamed yylineo to mylineno):
7336         * src/altlex.c
7337         * src/SDCCast.c
7338         * src/SDCglobl.h
7339         * src/SDCC.lex
7340         * src/SDCCsymt.c
7341         * src/SDCCval.c
7342         * src/pic16/pcode.c: Cleaned warnings
7343         * src/pic16/pcodeflow.c: Cleaned warnings
7344         * src/pic16/pcoderegs.c: Cleaned warnings
7345
7346 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7347
7348         * src/pic16/pcode.c: Cleaned warnings
7349         * src/pic16/pcodepeep.c: Cleaned warnings
7350         * src/pic16/ralloc.c: Cleaned warnings
7351
7352 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7353
7354         * doc/sdccman.lyx: fixed bug 739745
7355         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7356
7357 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7358
7359         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7360         it can be defined with CFLAGS when running configure
7361         * src/SDCCmain.c: fixed compiling + linking with object files
7362
7363 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7364
7365         * configure.in: configure for pic16 port,
7366             added --disable-pic16-port
7367         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7368         * src/SDCCmain.c: linkOptions is changed to set *,
7369             added if/endif conditional macros to remove options help
7370             messages from optionsTable when a port is not configured, added
7371             support for the PIc16 port in the ports table, when executing
7372             the compiler with no port specified on command line, a default
7373             port is selected with the new macro DEFAULT_PORT which is
7374             defined in port.h, in setDefaultOptions() linkOptions is removed
7375             from initialization assignment, since now it is a set,
7376             parseCmdLine uses setParseWithComma for linkOptions, in
7377             linkEdit() linkOptions are accessed with new function indexSet()
7378             which returns the i'th item of a set variable. See SDCCset.c, in
7379             linkEdit() when calling buildCmdLine(), added linkOptions as
7380             last argument. Now users can pass arguments to gplink via the
7381             -Wl option, main() uses pic16glue() to glue up pic16 programs
7382         * src/SDCCpeeph.c: various changes to support pic16
7383         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7384             return the i'th item of the set
7385         * src/SDCCset.h: added function prototype for indexSet()
7386         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7387         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7388         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7389             added macro DEFAULT_PORT
7390         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7391         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7392             generated
7393         * src/pic16/glue.c: commented out some error producing lines
7394         * src/pic16/main.c: __config directives are commented out to stop
7395             gpasm complaining and test the linkage with gplink, _linkCmd and
7396             _asmCmd changed to be more gplink and gpasm friendly
7397         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7398             produced an error when parsed, peep rule 12 is added to utilize
7399             movff, but it is commented out since the pCode does not support
7400             yet a command with 2 address arguments
7401
7402 2003-05-18    <johan AT balder>
7403
7404         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7405         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7406 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7407
7408         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7409   Added feature to script commands from file.
7410
7411 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7414         * src/SDCCutil.c: include ctype.h for win32
7415
7416 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7417
7418         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7419
7420 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7421
7422         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7423   Fixed so you can set breakpoints prior to run, run does not stop
7424   on entry now.  Add tbreak.  Other enhancements and fixes for use
7425   with ddd.
7426
7427 2003-05-12  Borut Razem <borut.razem AT siol.net>
7428
7429         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7430
7431 2003-05-11  Borut Razem <borut.razem AT siol.net>
7432
7433         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7434         the path of bin directory, so that PATH is the only env. variable, which has to be set
7435         in case of standard installation.
7436         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7437         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7438         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7439
7440 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7441
7442         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7443         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7444         temp files are in the port dir; clean the gen/test directory when
7445         generating new test.c
7446         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7447         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7448         * support/regression/tests/zeropad.c: added
7449
7450 2003-05-09    <johan AT balder>
7451
7452         * src/SDCCglue.c: fixed bug #597940
7453
7454 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7455
7456         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7457   cache sfr, optimize next,step, fix off by one sourceline,
7458   support ddd list function.
7459         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7460
7461 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7462
7463         * support/regression/HTMLgen.py: added compare_s2f()
7464         * support/regression/Makefile: redo 1.27
7465         * support/regression/generate-cases.py: redo 1.5
7466
7467 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7468
7469         * support/regression/tests/float.c: workaround 33 bit hex constant
7470         * support/regression/tests/simplefloat.c: fix division for host
7471
7472 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7473
7474         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7475         that tame's the PIC's over-aggressive optimizer.
7476
7477 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7478
7479          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7480          support for MSVC.
7481
7482 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7483
7484         Initial support for DS80C400. "Hello world" runs on TINIm400
7485         (with polled I/O).
7486
7487 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7488
7489          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7490          * Some notes on ddd usage added in debugger/README
7491          Martin Helmling adding more features and fixes for ddd GUI debugger.
7492          Code added for nexti, stepi, up, down, and other adjustments.
7493
7494 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7495
7496         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7497         * src/pic/peeph.def Added two rules to optimize carry manipulation
7498         * src/pic/* removed debug printfs
7499
7500 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         * debugger/mcs51/cmd.c: added header newalloc.h
7503
7504 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7505
7506         * as/Makefile: new EXEEXT
7507         * as/z80/Makefile: remove trailing slash of BUILDIR
7508         * as/z80/clean.mk: new EXEEXT
7509         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7510         * support/cpp2/Makefile.in: new EXEEXT
7511         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7512
7513 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7514
7515         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7516         EXEEXT was introduced to fix all related problems with targets
7517         "clean", "install" and "uninstall"; a couple of further flaws
7518         especially with "clean" have been fixed too
7519         * as/mcs51/Makefile.in
7520         * as/mcs51/clean.mk
7521         * as/z80/Makefile
7522         * Makefile
7523         * clean.mk
7524         * debugger/mcs51/Makefile.in
7525         * debugger/mcs51/clean.mk
7526         * link/z80/Makefile
7527         * link/z80/Makefile.in
7528         * link/z80/clean.mk
7529         * link/Makefile
7530         * packihx/Makefile.in
7531         * packihx/clean.mk
7532         * sim/ucsim/Makefile
7533         * sim/ucsim/clean.mk
7534         * sim/ucsim/avr.src/Makefile.in
7535         * sim/ucsim/avr.src/clean.mk
7536         * sim/ucsim/s51.src/Makefile.in
7537         * sim/ucsim/s51.src/clean.mk
7538         * sim/ucsim/xa.src/Makefile.in
7539         * sim/ucsim/xa.src/clean.mk
7540         * sim/ucsim/z80.src/Makefile.in
7541         * sim/ucsim/z80.src/clean.mk
7542         * sim/ucsim/main_in.mk
7543         * sim/ucsim/packages_in.mk
7544         * sim/ucsim/gui.src/Makefile.in
7545         * sim/ucsim/gui.src/serio.src/Makefile.in
7546         * sim/ucsim/gui.src/serio.src/clean.mk
7547         * src/Makefile.in
7548         * src/clean.mk
7549         * support/cpp2/Makefile.in
7550         * support/cpp2/clean.mk
7551         * support/makebin/Makefile
7552         * support/makebin/clean.mk
7553         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7554         * doc/sdccman.lyx: --program-suffix no longer needed
7555
7556 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7557
7558          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7559          Martin Helmling added support for ddd GUI debugger.
7560          Code added to display assembly, set variables, and other commands
7561          to interface to ddd.
7562
7563 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7564
7565         * as/Makefile: fix target clean
7566         * as/clean.mk: fix target clean
7567         * as/z80/clean.mk: fix target clean
7568
7569 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7570
7571         * Makefile.common.in: added  AT EXEEXT AT
7572         * configure.in: removed all mingw32 stuff
7573         * configure: rebuilt from configure.in
7574         * doc/sdccman.lyx: updated section "installation"
7575         * support/scripts/sdcc_mingw32: adapted to configure
7576         * support/scripts/sdcc_cygwin_mingw32: added
7577
7578 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7579
7580         * src/pic Added object file support for the PIC port
7581         * src/pic Applied patch from Craig Franklin (this started the object file support)
7582         * src/regression Updated the PIC regression tests for object files
7583
7584 2003-04-20  Borut Razem <borut.razem AT siol.net>
7585
7586         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7587           lklex.c: In function `getfid':
7588           lklex.c:203: warning: array subscript has type `char'
7589         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7590           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7591         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7592           stack handling macros
7593
7594 2003-04-19  Borut Razem <borut.razem AT siol.net>
7595
7596         * "handling space characters in file path" task:
7597         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7598         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7599         * support/Util/MySystem.h: make it self-sufficient
7600         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7601           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7602           handling space characters in file path
7603         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7604           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7605         * support/Util/MySystem.c: handling space characters in executable's path
7606
7607 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7608
7609         * as/z80/Makefile: fix permanent rebuild of z80
7610         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7611         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7612
7613 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7614
7615         * src/SDCCopt.c: add special case optimization to replace modulo by
7616           a power of two with a bitwise AND.
7617
7618 2003-04-18    <johan AT balder>
7619
7620         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7621
7622 2003-04-17    <johan AT balder>
7623
7624         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7625         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7626
7627 2003-04-13  Borut Razem <borut.razem AT siol.net>
7628
7629         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7630         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7631           fixed mingw problem in adl_NORMALIZE_PATH
7632
7633 2003-04-12  Borut Razem <borut.razem AT siol.net>
7634
7635         * fixed "#pragma SAVE/RESTORE can not be nested":
7636         * src/SDCC.lex: reworked pragma handling functions
7637         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7638         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7639
7640 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7641
7642         * src/SDCCutil.c (pathEquivalent): defined but not used
7643         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7644         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7645         * configure: rebuilt from configure.in
7646         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7647         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7648         * device/include/Makefile.in: replace sdcc_datadir
7649         * device/lib/Makefile.in: replace sdcc_datadir
7650         * Makefile.common.in: add LDFLAGS from configure
7651         * packihx/Makefile.in: use LDFLAGS
7652         * src/Makefile.in: use LDFLAGS
7653         * support/cpp2/Makefile.in: add LDFLAGS from configure
7654         * support/makebin/Makefile: use LDFLAGS
7655         * .version: bumped version number to 2.3.5
7656
7657 2003-04-12  Borut Razem <borut.razem AT siol.net>
7658
7659         * completed "different paths" task:
7660         * src/SDCCmacro.c: fixed bug in handling quotes
7661         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7662         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7663
7664 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7665
7666         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7667
7668 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7669
7670         * ds390/gen.c ds390/peeph.def: fix bug 706781
7671
7672 2003-04-11  Borut Razem <borut.razem AT siol.net>
7673
7674         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7675
7676 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7677
7678         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7679         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7680          set - this bit used to not be set...).
7681         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7682           bad code in PIC Port
7683         * src/regression/and2.c added to test bug 609268
7684         * src/regression/Makefile added and2.c to regression test
7685
7686
7687 2003-04-08    <johan AT CP255758-A>
7688
7689         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7690         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7691         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7692
7693 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7696         fix bug #487815
7697         * support/cpp2/Makefile.in: fix bug #487815
7698         * configure: rebuilt from configure.in
7699         * Makefile.common.in: docdir changed, new path suffixes
7700         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7701         * sdcc_vc_in.h: reflect changes from sdccconf.h
7702         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7703         * src/SDCCutil.h: remove BINDIR hack
7704         * doc/sdccman.lyx: update new path hierarchy
7705
7706 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7707
7708         * src/SDCCpeeph.c: added okToRemoveSLOC test
7709
7710 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7711
7712         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7713
7714 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7715
7716         * src/SDCCpeeph.c: added labelIsReturnOnly test
7717         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7718
7719 2003-04-05    <johan AT balder>
7720
7721         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7722         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7723         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7724         * src/SDCCast.c: fixed a warning
7725         * src/SDCCast.h: fixed a warning
7726         * src/SDCCicode.c (operandFromAst): fixed a warning
7727
7728 2003-04-04    <johan AT balder>
7729
7730         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7731         * src/SDCCast.c (decorateType): fixed bug #715076
7732         * src/SDCC.y: fixed bug #702907
7733
7734 2003-04-03    <johan AT balder>
7735
7736         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7737         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7738         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7739         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7740         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7741
7742 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7743
7744         * _decdptr.c: fix return values
7745         * _gptrget.c: fix return values
7746         * _gptrgetc.c: fix return values
7747         * _gptrput.c: fix return values
7748         * _mulint.c: fix return values
7749         * as/z80/Makefile: fix 'make -j' problem
7750
7751 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7752
7753         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7754         * configure.in: big cleanup, updated to autoconf 2.5x
7755         * configure: rebuilt from configure.in
7756         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7757         * sdcc_vc_in.h: reflect changes from sdccconf.h
7758         * doc/Makefile: fixed a flaw in "make install"
7759
7760 2003-04-02    <johan AT balder>
7761
7762         * src/ds390/gen.c (genCmp): no comments
7763         * src/mcs51/gen.c (genCmp): no comments
7764         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7765         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7766
7767 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7768
7769         * support/regression/generate-cases.py: place generated file in given sub directory
7770         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7771         * support/regression/Makefile: improvements for 'make -j';
7772         side effect: it's simpler and faster now
7773
7774 2003-03-31  Borut Razem <borut.razem AT siol.net>
7775
7776         * src/z80/main.c: link-{port} and as-{port} defined without path
7777         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7778
7779 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7780
7781         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7782
7783 2003-03-30  Borut Razem <borut.razem AT siol.net>
7784
7785         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7786           changed type of list parameter to set
7787         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7788         * src/port.h: changed type of do_assemble() parameter to set
7789         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7790           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7791           definition of "cppoutfilename" macro with NULL value in preProcess()
7792         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7793         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7794         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7795           replaced with set *binPathSet
7796         * shash_add() deallocates the item, if allready exsists, before adding the new one
7797         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7798
7799 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7800
7801         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7802           a nested for loop bug in the PIC port
7803         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7804           for loops
7805
7806 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7807
7808         * support/Util/dbuf.h: remove C++ stuff to make it portable
7809
7810 2003-03-28  Borut Razem <borut.razem AT siol.net>
7811
7812         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7813           literal strings in stringLiteral()
7814         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7815         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7816           to the project
7817
7818 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7819
7820         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7821
7822 2003-03-26    <johan AT balder>
7823
7824         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7825         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7826         * src/SDCCast.c (decorateType): fixed " -v < 3"
7827
7828 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7829
7830         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7831         Added Lenny Story's debug infrastructure changes:
7832         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7833         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7834         * src/cdbFile.c: added
7835         * src/SDCCdebug.c: added
7836         * src/SDCCdebug.h: added
7837         * src/SDCCast.c (createFunction)
7838         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7839         * src/SDCCmain.c (parseCmdLine, main)
7840         * src/SDCCmem.c (redoStackOffsets)
7841         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7842         * src/SDCCsymt.h
7843         * src/common.h
7844         * src/avr/gen.c (genAVRCode)
7845         * src/ds390/gen.c (gen390Code)
7846         * src/mcs51/gen.c (gen51Code)
7847         * src/pic/gen.c (genpic14Code)
7848         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7849         * src/xa51/gen.c (genXA51Code)
7850         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7851
7852 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7853
7854         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7855         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7856
7857 2003-03-22    <johan AT balder>
7858
7859         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7860
7861 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7862
7863         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7864         * doc/cdbfileformat.lyx: added, written by Lenny Story
7865         * doc/Makefile: added cdbfileformat.lyx
7866         * doc/clean.mk: added cdbfileformat.lyx
7867
7868 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7869
7870         * src/mcs51/peeph.def: fix bug #705773
7871
7872 2003-03-20    <johan AT balder>
7873
7874         An sfr/sbit can have an "at #" AND an initializer
7875         * src/SDCCsymt.c (checkSClass):
7876         * src/SDCCmem.c (allocGlobal):
7877         * src/SDCCmem.c (allocLocal):
7878         * src/SDCCast.c (createBlock):
7879
7880 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7881
7882         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7883
7884 2003-03-16    <johan AT balder>
7885
7886         Undid the hackup of const and volatile, the problem is much bigger
7887         * src/SDCC.y:1.65
7888         * src/SDCCast.c:1.171
7889         * src/SDCCglue.c:1.138
7890         * src/SDCCicode.c:1.146
7891         * src/SDCCsymt.c:1.150
7892         * src/SDCCval.c:1.65
7893
7894 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7895
7896         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7897         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7898
7899 2003-03-13    <johan AT balder>
7900
7901         Hackup const and volatile modifiers in type chains a bit:
7902         * src/SDCC.y:1.63
7903         * src/SDCCast.c:1.169
7904         * src/SDCCglue.c:1.136
7905         * src/SDCCicode.c:1.143
7906         * src/SDCCsymt.c1.146
7907         * src/SDCCsymt.h1.59
7908         * src/SDCCval.c:1.63
7909
7910 2003-03-12    <johan AT balder>
7911
7912         * src/SDCCBBlock.h: more LRH debugging junk
7913         * src/SDCCcflow.h: more LRH debugging junk
7914         * src/SDCCloop.c: more LRH debugging junk
7915         * src/SDCC.y (struct_declaration): fixed bug #697590
7916         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7917         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7918         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7919
7920 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7921         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7922         test function names must now match exactly).
7923         * src/SDCCcse.c: added special case in findCheaperOp to allow
7924         extending a short integer. Makes less awful code for bug 700121 test case.
7925
7926 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7927
7928         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7929         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7930
7931 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7932
7933         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7934         actually called (operandsNotEqual() was called for all
7935         operandsNotEqualX tests).
7936
7937 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7938
7939         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7940         with shorter literals. Fixes bug 700121.
7941
7942 2003-03-11    <johan AT balder>
7943
7944         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7945
7946 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7947
7948         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7949         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7950
7951 2003-03-10  Borut Razem <borut.razem AT siol.net>
7952
7953         * src/SDCCmain.c: pipe preprocessor's output
7954         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7955         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7956         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7957         which closes all pipes in pipeSet set
7958         * src/SDCCset.c: free deleted item in function deleteSetItem()
7959         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7960         moved from z80 to src subproject
7961         * .version: increased version number to 2.3.4
7962
7963 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7966         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7967         * support/regression/ports/xa51/spec.mk: fix typo
7968
7969 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7970
7971         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7972
7973 2003-03-09  Borut Razem <borut.razem AT siol.net>
7974
7975         * src/SDCCmain.c: pipe preprocessor's output
7976         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7977         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7978         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7979         which closes all pipes in pipeSet set
7980         * src/SDCCset.c: free deleted item in function deleteSetItem()
7981         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7982         moved from z80 to src subproject
7983
7984 2003-03-09  Borut Razem <borut.razem AT siol.net>
7985
7986         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7987         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7988         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7989         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7990         * src/SDCCglobl.h: unification of WIN32 native definitions
7991
7992 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7993
7994         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7995
7996 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7997
7998         * src/configure.in:   check for endianess (even while cross-compiling)
7999         * src/configure:      check for endianess (even while cross-compiling)
8000         * src/configure_in.h: check for endianess (even while cross-compiling)
8001         * src/avr/gen.c:        remove old endianess stuff
8002         * src/mcs51/gen.c:      remove old endianess stuff
8003         * src/ds390/gen.c:      remove old endianess stuff
8004         * src/pic/gen.c:        remove old endianess stuff
8005         * src/pic/genarith.c:   remove old endianess stuff
8006         * src/pic/glue.c:       fix endianess check
8007         * src/pic16/gen.c:      remove old endianess stuff
8008         * src/pic16/genarith.c: remove old endianess stuff
8009         * src/pic16/glue.c:     fix endianess check
8010         * src/xa51/gen.c:       remove old endianess stuff
8011         * src/z80/gen.c:        fix endianess check
8012         * src/SDCCglue.c:       fix endianess check
8013         * src/ds390/peeph.def: fix bug 700036
8014
8015 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8016
8017         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8018         * src/configure: find appropriate data-types on host for SDCC's int and long
8019         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8020         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8021         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8022
8023 2003-03-07    <johan AT balder>
8024
8025         Just a big NOOP:
8026                 some minor cleanups before the big shot
8027                 OP_DEFS and OP_USES now use Kevin's protection
8028                 new option --nolabelopt
8029
8030         * src/SDCCBBlock.c:
8031         * src/SDCCast.c,:
8032         * src/SDCCcflow.c:
8033         * src/SDCCcse.c:
8034         * src/SDCCicode.c:
8035         * src/SDCCicode.h:
8036         * src/SDCClabel.c:
8037         * src/SDCCloop.c:
8038         * src/SDCCmain.c:
8039         * src/ds390/ralloc.c:
8040         * src/mcs51/ralloc.c:
8041         * src/pic/ralloc.c:
8042         * src/xa51/ralloc.c:
8043         * src/z80/ralloc.c:
8044
8045 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8046
8047         * src/pic/pcode.c (get_op): fix 64 bit warnings
8048         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8049         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8050         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8051         * support/regression/tests/malloc.c: fix 64 bit warnings
8052
8053 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8054
8055         * src/mcs51/gen.c (genMinus): fixed bug 696436
8056
8057 2003-03-02  Borut Razem <borut.razem AT siol.net>
8058
8059         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8060
8061 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8062
8063         * configure.in: test for mkstemp
8064         * sdccconf_in.h: add HAVE_MKSTEMP
8065
8066 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8067
8068         * device/include/ctype.h: removed warning while using --stack-auto
8069         * device/include/malloc.h: removed warning while using --stack-auto
8070         * device/include/string.h: removed warning while using --stack-auto
8071
8072 2003-02-23  Borut Razem <borut.razem AT siol.net>
8073
8074         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8075         because NDEBUG is defined (see man assert)
8076         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8077
8078 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8079
8080         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8081         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8082
8083 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8084
8085         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8086         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8087
8088 2003-02-18    <johan AT balder>
8089
8090         * as/mcs51/asmain.c (asmbl): module can start with a digit
8091         * as/z80/asmain.c (asmbl): module can start with a digit
8092
8093 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8094
8095         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8096         * src/asm.c: fix pipe() for Mingw32
8097
8098 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8099
8100         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8101         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8102         make -V work again; --c1mode reads now from stdin
8103         * doc/sdccman.lyx: added --c1mode
8104         * support/Util/SDCCerr.c: new messages for c1 mode
8105         * support/Util/SDCCerr.h: new messages for c1 mode
8106         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8107
8108 2003-02-15    <johan AT balder>
8109
8110         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8111
8112 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8113
8114         * doc/sdccman.lyx: Environment variables, -o and other minor things
8115
8116 2003-02-14    <johan AT balder>
8117
8118         * src/xa51/main.c: before anyone really tries to use it :)
8119
8120         * Install doc's in share/sdcc/doc
8121         * removed some obsolete files
8122         * Do a proper make distclean and uninstall
8123         M Makefile.common.in
8124         R sdccbuild.sh
8125         M as/Makefile
8126         M device/include/Makefile.in
8127         M device/lib/Makefile.in
8128         M doc/sdccman.lyx
8129         M link/Makefile
8130         M sim/ucsim/doc/Makefile.in
8131         M src/clean.mk
8132         R src/avr/peeph.rul
8133         R src/xa51/peeph.rul
8134         M support/cpp2/Makefile.in
8135         M support/makebin/Makefile
8136
8137
8138 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8139
8140         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8141
8142 2003-02-10  Borut Razem <borut.razem AT siol.net>
8143
8144         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8145         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8146         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8147         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8148         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8149         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8150         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8151         src/z80/Makefile.bcc: Borland Makefile cleanup
8152         * as/z80/Makefile.bcc: Added Borland Makefile
8153         * support/cpp2/borland.h: Removed
8154
8155 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8156
8157         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8158         * src/SDCC.lex: new pragma NOIV
8159         * src/SDCCglobl.h: new pragma NOIV
8160         * src/SDCCmem.c: new pragma NOIV
8161
8162 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8163
8164         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8165
8166 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8167
8168         * src/SDCCmain.c: signal handling is switched off by --debug
8169         * doc/Makefile: small fix for install; use clean.mk again
8170         * doc/clean.mk: clean *.pdf and *.html too
8171
8172 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8173
8174         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8175         * device/lib/printfl.c: fix a ds390 bug by making it portable
8176         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8177         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8178         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8179         * debugger/mcs51/cmd.c: converted multi-line string literals
8180         * sim/ucsim/globals.cc: converted multi-line string literals
8181         * src/SDCCmain.c: introduced signal handler to remove temp files
8182         * doc/Makefile: small tweaks, implement clean
8183         * doc: removed generated files
8184
8185 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8186
8187         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8188         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8189         Address Record is not correctly generated for DS390."
8190
8191 2003-02-02  Borut Razem <borut.razem AT siol.net>
8192
8193         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8194         * as/mcs51/asm.h: fixed compilation with Borland C
8195         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8196         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8197         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8198         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8199         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8200         src/z80/Makefile.bcc: delete $(LIB) only if exist
8201         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8202
8203 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8204
8205         * device/include/malloc.h: introduced NULL
8206         * device/include/string.h: introduced NULL
8207         * device/include/stdlib.h: introduced NULL
8208         * device/lib/_memcpy.c: removed NULL
8209         * device/lib/_strcat.c: removed NULL
8210         * device/lib/_strchr.c: removed NULL
8211         * device/lib/_strcmp.c: removed NULL
8212         * device/lib/_strcpy.c: removed NULL
8213         * device/lib/_strcspn.c: removed NULL
8214         * device/lib/_strlen.c: removed NULL
8215         * device/lib/_strncat.c: removed NULL
8216         * device/lib/_strncmp.c: removed NULL
8217         * device/lib/_strncpy.c: removed NULL
8218         * device/lib/_strpbrk.c: removed NULL
8219         * device/lib/_strrchr.c: removed NULL
8220         * device/lib/_strspn.c: removed NULL
8221         * device/lib/_strstr.c: removed NULL
8222         * device/lib/_strtok.c: removed NULL
8223         * device/lib/malloc.c: removed NULL, include own header
8224
8225 2003-02-02    <johan AT balder>
8226
8227         * 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
8228         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8229         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8230         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8231         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8232         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8233
8234 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8235
8236         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8237         area 'DATA'"
8238
8239 2003-02-01    <johan AT balder>
8240
8241         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8242
8243 2003-01-31    <johan AT CP255758-A>
8244
8245         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8246
8247 2003-01-30    <johan AT balder>
8248
8249         * src/SDCCBBlock.c: automatic bug detection
8250         * src/SDCCicode.c: automatic bug detection
8251
8252 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8253
8254         * src/SDCCglobl.h:   now --xram-size 0 works
8255         * src/SDCCmain.c:    now --xram-size 0 works
8256
8257 2003-01-29    <johan AT balder>
8258
8259         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8260
8261 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8262
8263         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8264         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8265         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8266         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8267         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8268         * src/SDCCmain.c:    Added options --xram-size and --code-size
8269
8270 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8271
8272         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8273         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8274
8275 2003-01-27    <johan AT balder>
8276
8277         * src/SDCC.y: fixed bug #613764
8278
8279 2003-01-26    <johan AT balder>
8280
8281         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8282         * src/SDCCsymt.h: fixed bug #673374
8283         * src/SDCCglue.c: fixed bug #661910
8284         * src/SDCCast.c: fixed bug #458099 and 673374
8285
8286 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8287
8288         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8289         * as/mcs51/strcmpi.h: added
8290         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8291         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8292         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8293         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8294         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8295         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8296         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8297         * as/mcs51/Makefile.aslink: new module strcmpi
8298         * as/mcs51/Makefile.asx8051: new module strcmpi
8299         * as/mcs51/Makefil.bcc: new module strcmpi
8300         * as/mcs51/Makefile.in: new module strcmpi
8301         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8302
8303 2003-01-26    <johan AT balder>
8304
8305         * src/SDCCglue.c: reverted back to 1.124
8306         * src/SDCCast.c: reverted back to 1.156
8307         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8308
8309 2003-01-25    <johan AT balder>
8310
8311         * src/SDCCglue.c: A better fix for bug #661910
8312         * src/SDCCast.c: A better fix for bug #661910
8313         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8314
8315 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8316
8317         * src/Makefile.in: remove spawn.o
8318         * src/SDCCmain.c: remove spawn.h
8319         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8320         * src/spawn.c: removed
8321         * src/spawn.h: removed
8322         * support/regression/ports/ds390/spec.mk: link with -r
8323
8324 2003-01-24    <johan AT CP255758-A>
8325
8326         * src/ds390/gen.c (aopOp): fixed bug #667458
8327         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8328         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8329         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8330
8331 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8332
8333         * src/mcs51/peeph.def: better assembler identation by Frieder
8334         * src/mcs51/gen.c: better assembler identation by Frieder
8335
8336 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8337
8338         * as/z80/string.h: removed for gcc 3.2
8339         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8340         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8341
8342 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8343
8344         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8345         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8346         * support/regression/Makefile: separate temp files for ports
8347         * support/regression/generate-cases.py: separate temp files for ports
8348         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8349         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8350
8351 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8352
8353         * moved tinitalk to device/examples/ds390
8354
8355 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8356
8357         * as/mcs51/lkmem.c: rflag is for DS390
8358         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8359         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8360                          (linkEdit): move mem- and map-files the same way as ihx-files
8361         * src/z80/main.c (_setDefaultOptions): removed --generic
8362         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8363         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8364         * src/pic/glue.c (picglue): --c1mode works again
8365         * src/pic16/glue.c (pic16glue): --c1mode works again
8366         * src/asm.c (printCLine): fix #660034
8367
8368 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8369
8370         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8371         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8372         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8373         * as/mcs51/lkmem (summary): better fix for sp problem
8374         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8375         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8376         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8377                                               remove --stack-after-data
8378
8379 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8380
8381         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8382         * src/SDCCutil.c (join): ugly bug: missing '\0'
8383         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8384
8385 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8388         * src/port.h: typo
8389         * src/pic/main.c (_asmCmd): gpasm supports -o
8390         * src/z80/main.c: more general macros
8391         * device/lib/Makefile.in: remove intermediate files
8392
8393 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8394
8395         * .version: Bumped version number to 2.3.3
8396         * src/SDCCBBlock.c: new option -o
8397         * src/SDCCglobl.h: new option -o
8398         * src/SDCCglue.c: new option -o
8399         * src/SDCCmain.c: new option -o
8400         * src/asm.c: new option -o
8401         * src/ds390/main.c: new option -o
8402         * src/pic/glue.c: new option -o
8403         * src/pic/pcode.c: new option -o
8404         * src/pic/ralloc.c: new option -o
8405         * src/pic16/glue.c: new option -o
8406         * src/pic16/pcode.c: new option -o
8407         * src/pic16/ralloc.c: new option -o
8408         * src/z80/main.c: new option -o
8409         * device/lib/Makefile.in: use -o
8410         * support/regression/ports/ds390/spec.mk: use -o
8411         * support/regression/ports/gbz80/spec.mk: use -o
8412         * support/regression/ports/mcs51/spec.mk: use -o
8413         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8414         * support/regression/ports/z80/spec.mk: use -o
8415         * support/regression/ports/ucz80/spec.mk: use -o
8416         * support/regression/ports/xa51/spec.mk: use -o
8417         * support/regression/fwk/lib/timeout.c: fix usage string
8418
8419 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8420         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8421
8422 2003-01-07    <johan AT balder>
8423
8424         * src/SDCCast.c (decorateType): fixed bug #600035
8425
8426 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8427         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8428         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8429         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8430         * src/pic/pcode.c: outcommented unused variable to remove warnings
8431         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8432
8433 2003-01-06    <karl AT turbobit.com>
8434         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8435    regression tests.
8436
8437 2003-01-06    <johan AT balder>
8438
8439         * src/SDCCicode.c: fixed array add
8440
8441 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8442         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8443         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8444
8445 2003-01-04    <johan AT balder>
8446
8447         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8448
8449 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8450         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8451
8452 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8453         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8454         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8455
8456 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8457         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8458
8459 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8460         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8461
8462 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8463         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8464
8465 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8466
8467     * in \sdcc\as\mcs51\ changed these files in order to create an
8468     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8469     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8470     following files to include the previous two files: aslink.dsp,
8471     Makefile.aslink, Makefile.bcc, and Makefile.in.
8472
8473     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8474     .adb instead of .cdb
8475
8476 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8477
8478         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8479         value from option --iram-size.
8480
8481 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8482
8483         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8484         dram[] array.
8485
8486 2002-09-18    <wiml AT hhhh.org>
8487
8488         * SDCClrange.h: exposed setFromRange() and setToRange()
8489         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8490           packRegsForAccUse() (bug 542397)
8491         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8492           multiple times and emitting the fetch operations more than once
8493           added aopGetUsesAcc() function to allow binary operators to
8494           fetch their operands in the correct order; made genMinus() emit
8495           compact code for X = LITERAL - Y
8496
8497 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8498         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8499         sprintf() in line 1267.
8500
8501 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8502         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8503         like ports.
8504
8505 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8506         Changes to aslink (All the changes are marked with 'JCF'):
8507
8508         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8509         summary().
8510
8511         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8512         area BSEG.  Also moves, if possible, the DATA area down into the internal
8513         ram so more space is available.
8514
8515         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8516         sflag.
8517
8518         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8519         not bytes.  Function summary() which creates a memory usage summary
8520         file with extension .mem.  Reports of overlaping stack and small stack
8521         size.  If the space for the stack is less than 16 bytes aslink trows a
8522         warning.
8523
8524         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8525         the 8051.  Option 'y' for memory summary output file.
8526
8527         Changes to sdcc (All the changes are marked with 'JCF'):
8528
8529         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8530
8531         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8532         overlaying area for it (uses RegBankUsed[4]).
8533
8534         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8535         bank zero as used by default.  By default aslink locates the stack
8536         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8537         the creation of the .mem file.  Delegates the allocation of data area
8538         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8539         the begining of the stack area to aslink.
8540
8541         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8542         glue() in SDCCglue.c creates an area for it.
8543
8544 2002-09-03  Borut Razem <borut.razem AT siol.net>
8545         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8546         sdcc/src/pic/glue.c:
8547         introduced atexit() handler for teporay files removal in case of
8548         errors, assertions, ...
8549
8550 2002-08-29  Borut Razem <borut.razem AT siol.net>
8551         * sdcc/support/cpp2/auto-host_vc_in.h:
8552         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8553         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8554         Maybe there is a similar problem with BORLANDC? It should be checked!
8555
8556         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8557         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8558         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8559         was not executed, and the compiler (cl) launched a warning:
8560         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8561
8562 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8563         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8564
8565 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8566         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8567
8568         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8569           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8570           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8571           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8572           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8573           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8574           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8575         - added Release configuration in VS projects
8576         - review of compiler an linker options
8577         - VC .exe files are generated in bin_vc directory, not to interfere
8578           with binaries generated from other projects (cygwin, mingw, bcc ...)
8579
8580         * sdcc/src/yacc.dsp: added
8581
8582         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8583         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8584         and insert the version number definitions from .version
8585
8586         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8587
8588         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8589         added - genarate auto-host.h using auto-host_vc_in.h as template
8590
8591         * sdcc/sdcc_vc.h,
8592         removed from CVS, generated automatically
8593
8594 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8595         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8596
8597 2002-08-11  Borut Razem <borut.razem AT siol.net>
8598         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8599
8600 2002-08-10  Borut Razem <borut.razem AT siol.net>
8601         * src/SDCCmain.c (main):
8602         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8603         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8604         The consequence was that some temporary files were not removed.
8605
8606         * src/SDCCglue.c:
8607         unification of code in functions tempfilename() and tempfile():
8608         function tempnam() is defined in Visual Studio 6.0 and .NET
8609
8610         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8611
8612         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8613           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8614         - removed compiler command line option /WX: Treats all warnings as errors
8615         - update a list of source files, included into the project
8616
8617         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8618           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8619         changed project type to Generic Project so that can be correcly converted to VS.NET project
8620
8621         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8622
8623         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8624
8625         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8626
8627         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8628         added return 0 statements after assert() to make compiler happy
8629
8630         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8631         added newline in the def file to keep MSC compiler satisfied
8632
8633         * sdcc/src/z80/gen.c:
8634         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8635           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8636         - solved MSC error in function aopDump()
8637
8638         * sdcc_vc.h: define PREFIX as "\\sdcc"
8639
8640 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8641         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8642
8643 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8644         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8645         - Rewrote the register banking algorithm.
8646         - Added pCode live-range analysis to registers (for now, only non-used and
8647         singly-used registers optimized away)
8648
8649         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8650
8651         * 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.
8652
8653 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8654         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8655
8656 2002-04-22  Michael Hope  <michaelh AT vroom>
8657
8658         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8659
8660         * configure.in (DD_COPT): Added include support required for gbdk.
8661
8662         * .version: Bumped version number just to increase it.
8663
8664         * src/SDCCmain.c: Added -nostdinc to the default options.
8665
8666 2002-04-15  Michael Hope  <michaelh AT vroom>
8667
8668         * device/lib/z80/printf.c (sprintf): Added.
8669
8670         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8671
8672         * src/z80/peeph.def: Added transpose redundent load rule.
8673
8674         * src/z80/main.c: Added force callee saves for jaune.
8675
8676         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8677
8678         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8679
8680 2002-03-28  Johan Knol  <johan AT balder>
8681
8682         * src/SDCCval.c: fixed bug #532436
8683
8684 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8685         * /src/port.h:
8686         Added "char *Processor" field to the port structure.
8687
8688         * /src/SDCCmain.c:
8689         Added -p option. Allows port dependent processor to be specified.
8690
8691         * all ports:
8692         Initialized the new field char *Processor field to NULL in all ports
8693
8694         * /src/pic/*:
8695         Compiler generated registers for interrupt context saving
8696         were not getting allocated.
8697
8698 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8699
8700         * /src/SDCCast.c:
8701         Fixed left shift. Will promote the left side of a left shift
8702         if a) left shifting more than size of operand or b) when assigned
8703         to something size > size of left side
8704
8705 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8706         * src/pic/*
8707         tons of changes. Register allocation has been
8708         rewritten. Added customization for the various PICs. Flow
8709         analysis is restructured. ...
8710
8711         * src/pic/device.h:
8712         Added
8713
8714         * src/pic/device.c:
8715         Added. device.c is a PIC port hack to accomodate variations
8716         in PIC devices.
8717
8718 2002-03-13  Michael Hope  <michaelh AT vroom>
8719
8720         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8721
8722 2002-03-04  johanknol  <johanknol AT manik>
8723
8724         * /src/SDCCval.c: fixed
8725
8726         const unsigned char arr[][2] = { { 0, 1 } };
8727         t18.c:1: error: Initializer element is not constant
8728
8729 2002-03-04  bela  <bela AT manik>
8730
8731         * /device/include/mcs51reg.h:
8732         ds89c420 register definition update
8733
8734 2002-03-03    <johan AT FRIJA>
8735
8736         * support/Util/SDCCerr.c: did something, but don't no why anymore
8737
8738         * support/regression/tests/bug-524691.c: made it a little less shy
8739
8740         * src/SDCCast.c (decorateType): fixed bug #524697
8741
8742         * src/SDCCast.c: made some lineno improvements
8743
8744         * src/SDCCval.c (getNelements): changed warning to error
8745
8746         * src/SDCCglue.c (printIvalArray): changed warning to error
8747
8748         * src/SDCCicode.c: fixed a warning for mingw
8749
8750         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8751
8752         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8753
8754 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8755
8756         * src/ds390/peeph.def:
8757         Added some more peephole rules
8758
8759         * src/ds390/gen.c: Various fixes & enhancements
8760
8761         * src/SDCClrange.c, src/SDCClrange.h:
8762         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8763
8764         * src/ds390/ralloc.c:
8765         various fixes & enhancements (ds390) specific
8766
8767         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8768         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8769         from rallocs.
8770
8771         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8772
8773 2002-03-02    <johan AT FRIJA>
8774
8775         * src/SDCCast.c (decorateType): fixed bug #524708
8776
8777         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8778
8779         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8780
8781 2002-03-01  Michael Hope  <michaelh AT vroom>
8782
8783         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8784
8785         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8786
8787 2002-03-01    <johan AT FRIJA>
8788
8789         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8790
8791         * src/SDCCast.c (decorateType): fixed bug #524209
8792
8793         * src/SDCCval.c (valNot): fixed bug #524195
8794
8795 2002-02-26    <johan AT balder>
8796
8797         * src/xa51/gen.c: fixed a warning
8798
8799         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8800
8801         * src/SDCCast.c (decorateType): fixed bug #522534
8802
8803 2002-02-23    <johan AT balder>
8804
8805         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8806
8807 2002-02-22    <johan AT balder>
8808
8809         * src/SDCCast.c: fixed bug #514865
8810
8811         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8812
8813 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8814
8815         * sdcc/src/SDCCloop.c:
8816         Previous fix was not good. basic blocks that have "break" or "return" are
8817         not really partof a loop , but live ranges used in these blocks should
8818         be live thru the entire loop, so set partOfLoop but don't add them to
8819         loop region
8820
8821 2002-02-21    <johan AT FRIJA>
8822
8823         * src/SDCCcse.c: fixed bug #514308
8824
8825 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8826
8827         * src/SDCCloop.c:
8828         Fixed BUG #519583. If a conditional block ended in a return/break
8829         statement inside a loop, it was not being considered part of the loop.
8830
8831         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8832
8833 2002-02-10  Karl Bongers <karl AT turbobit.com>
8834
8835         * debugger/*:
8836         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8837         with lots of comments and notes.
8838
8839         * device/examples/test2.c:
8840         Fix bug, "red" variable not being initialized(compiler complained).
8841
8842         * device/examples/Makefile, examples/test3.c:
8843         Add Makefile in device/examples folder, compiles test3.c
8844         for use as a multiple module SDCDB test case.
8845
8846         * sim/ucsim/cmd.src/cmdset.cc:
8847         Took out debug printfs in ucsim "next" command.
8848
8849         * sim/ucsim/xa.src:
8850         Karl and Johan start ucsim XA support.  Most dissassembly working,
8851         about 75% emulation done(plenty of work remaining).
8852
8853         * sim/ucsim/z80.src:
8854         Add Z80 support to ucsim, add test-ucz80 regression test,
8855         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8856         Notice z80 compiler fails on examples/test3.c/crc code.
8857
8858 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8859
8860         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8861         Added support for --parms-in-bank1
8862
8863         * src/ds390/peeph.def:
8864         added a few more peephole optimzations
8865
8866         * src/ds390/main.c:
8867         1) added __builtin_inp & __builtin_outp used to read in data of given length
8868            from a memory mapped port
8869         2) added __builtin_memcmp
8870         3) added __builtin_swapw swap bytes of a short
8871
8872         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8873         1) handle multiple send & receives from register bank1
8874         2) ralloc can now allocate DPTR1 to some liveRanges
8875
8876         * src/SDCCsymt.c, src/SDCCsymt.h:
8877         changes to handle multiple sends & receives
8878
8879         * src/SDCCptropt.h:
8880         added some pointer arithmetic optimization
8881
8882         * src/SDCCptropt.c:
8883         added some pointer arithmetic optimizations but not stable yet so not
8884         called from anywhere (will get this working shortly)
8885
8886         * src/SDCCopt.c: fixed for multiple sends & receives
8887
8888         * src/SDCCmain.c:
8889         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8890         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8891            set preprocessor defines (depending on options)
8892
8893         * src/SDCCicode.c, src/SDCCicode.h:
8894         changes made to handle multiple sends & receives
8895
8896         * src/SDCCglobl.h:
8897         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8898
8899         * src/SDCCcse.c, src/SDCCcse.h:
8900         added function findbackward def (to be used in upcoming optimization)
8901
8902         * src/SDCCcflow.c, src/SDCCcflow.h:
8903         added function returnAtEnd - to determine if a basic block terminates with
8904         a RETURN iCode
8905
8906         * src/SDCCast.c, src/SDCCast.h:
8907         added option parms-in-bank1
8908
8909         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8910         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8911         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8912         adjusted for --parms-in-bank1 option
8913
8914         * device/include/string.h:
8915         donot redefine "reentrant" keyword
8916
8917         * device/include/ds80c390.h: Added some more SFRs
8918
8919 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8920
8921         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8922
8923 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8924
8925         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8926
8927 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8928
8929         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8930
8931 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8932
8933         * Added --xram-movc option
8934
8935 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8936
8937         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8938
8939 2002-01-11  Johan Knol
8940
8941         * Added math lib of Jesus Calvino-Fraga
8942
8943 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8944
8945         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8946         * support/regression/Makefile: new target test-mcs51-stack-auto
8947         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8948
8949 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8950
8951         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8952
8953 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8954
8955         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8956
8957 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8958
8959         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8960
8961         * src/SDCCglue.h: add definition for printIvalChar()
8962
8963 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8964
8965         * src/SDCCast.c: fix #498138 by Johan
8966
8967         * src/SDCCglue.c: fix #498138 by Johan
8968
8969 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8970
8971         * support/regression/Makefile: fix clean
8972
8973         * support/regression/ports/ds390/support.c: fix transmission of last character
8974
8975 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8976
8977         * /sdcc/src/ds390/gen.c:
8978         a) improved computing address of stack variable
8979         b) took out some #if 0 code
8980         c) improved parmBytes adjustment
8981         d) improved genPlusIncr & genMinusIncr
8982         e) genCmp could generate bad code (when left assigned to DPTR)
8983         f) Fixed bug in hasInc
8984
8985         * /sdcc/src/ds390/ralloc.c:
8986         a) packRegsForSupport could mess up live information (Fixed)
8987         b) packRegsDPTRuse could be incorrect for left & right shift
8988
8989         * /sdcc/src/mcs51/ralloc.c:
8990         packRegsForSupport could mess up the live information (Fixed)
8991
8992         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8993
8994         * /sdcc/src/SDCCast.c:
8995         can reverse a loop even if function call is present as long
8996         as the loop control variable is local & is not passed as parameter
8997
8998 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8999
9000         * /sdcc/ChangeLog: *** empty log message ***
9001
9002         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9003         More builtin function additions for TININative
9004
9005         * /sdcc/src/ds390/ralloc.c:
9006         Had broken the regression testsuite
9007
9008         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9009
9010         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9011         Added funcattr hasStackParms will be set for reentrant functions when there
9012         are paramteres on the stack, this helps in minimizing frame pointer generation
9013         typeFromStr can handle function pointers now
9014
9015         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9016         *** empty log message ***
9017
9018 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9019
9020         * /src/ds390/gen.c, /src/ds390/main.c:
9021         More builtin function additions for TININative
9022
9023         * /src/ds390/ralloc.c:
9024         Had broken the regression testsuite
9025
9026         * /src/SDCCast.c: Fixed a bug in dumptree
9027
9028         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9029         Added funcattr hasStackParms will be set for reentrant functions when there
9030         are paramteres on the stack, this helps in minimizing frame pointer generation
9031         typeFromStr can handle function pointers now
9032
9033         * /doc/builtins.txt, /doc/TININative.txt:
9034         *** empty log message ***
9035
9036
9037 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9038
9039         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9040         ALPHA version for -mTININative
9041
9042         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9043         updated to reflect changes in the port structure
9044
9045         * /src/port.h:
9046         added function do_assemble (similar to do_link) if non-null this function
9047         will be called to do assembly (-mTININative) requires a multi command
9048         assembly
9049         added function genAssemblerEnd will be called to generate assembler Epilogue
9050
9051         * /src/SDCCsymt.c:
9052         added _JavaNative to debug info printing
9053
9054         * /src/SDCCmain.c: added option --tini-libid
9055         added port->do_assemble function (-mTININative) has a multi command assemble
9056
9057         * /src/SDCCglue.c: Disabled "constExpr" check
9058         added port->genAssemblerEnd function
9059
9060         * /src/SDCCglobl.h: Added option --tini-libid value
9061
9062         * /src/SDCCast.h:
9063         tookout optimizeCompare from the header (has no external references)
9064
9065         * /src/SDCCast.c: made one more function "static"
9066
9067 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9068
9069         * src/z80/mappings.i: Added z80asm support.
9070
9071         * src/z80/main.c: Added z80asm support on --asm=z80asm
9072
9073         * src/z80/gen.c: Fixed asm portability issues.
9074
9075         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9076
9077         * src/SDCCglue.c (printExterns): Added global/extern split.
9078
9079 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9080
9081         * support/regression/Makefile: added test for mcs51 model large
9082
9083         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9084
9085         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9086
9087 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9088
9089         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9090
9091 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9092
9093         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9094
9095         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9096
9097 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9098
9099         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9100
9101         * support/regression/tests/simplefloat.c: Port to mcs51.
9102
9103 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9104         * support/regression/tests/bug-485362.c: Added.
9105
9106         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9107
9108         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9109
9110         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9111
9112         * src/z80/gen.c (aopDump): Added a dump function.
9113
9114 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9115         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9116
9117         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9118
9119         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9120
9121         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9122
9123         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9124
9125         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9126
9127         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9128
9129         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9130
9131         * support/regression/ports/ds390/support.c: Use tinibios.
9132
9133         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9134
9135 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9136
9137         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9138         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9139
9140         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9141
9142         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9143
9144 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9145
9146         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9147
9148         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9149         (packRegsForIYUse): Created and optimised.
9150
9151 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9152
9153         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9154 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9155
9156         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9157
9158         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9159
9160         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9161
9162 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9163
9164         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9165
9166         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9167
9168 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9169
9170         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9171
9172         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9173
9174         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9175
9176 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9177
9178         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9179         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9180         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9181
9182         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9183
9184         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9185         (genNotFloat): Added.
9186         (genUminusFloat): Added.
9187
9188         * device/lib/z80/Makefile: Added floating pt stubs.
9189
9190         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9191
9192         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9193
9194         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9195
9196 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9197
9198         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9199
9200         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9201
9202         * sdcc/support/regression/Makefile: Add port ds390.
9203
9204         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9205
9206         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9207
9208         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9209
9210         * sdcc/support/regression/ports/ds390/support.c: Added.
9211
9212         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9213
9214         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9215
9216         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9217
9218 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9219
9220         * device/include/malloc.h: Added z80 and gbz80 support.
9221
9222         * device/lib/gbz80/heap.s: Added.
9223
9224         * device/lib/z80/heap.s: Added.
9225
9226         * device/lib/malloc.c: Added z80 and gbz80 support.
9227
9228         * support/regression/tests/malloc.c (testMalloc): Added.
9229
9230         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9231
9232         * support/regression/tests/bug-478094.c: Added.
9233
9234         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9235
9236 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9237
9238         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9239
9240         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9241
9242         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9243
9244         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9245
9246         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9247
9248 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9249
9250         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9251
9252 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9253
9254         * support/regression/tests/bug-477927.c: Added.
9255
9256         * src/z80/peeph.def: Added minor rules.
9257
9258         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9259
9260         * src/z80/peeph.def: Added jump optimisation modification.
9261
9262 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9263
9264         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9265
9266 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9267
9268         * support/regression/tests/funptrs.c: Added.
9269
9270 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9271
9272         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9273
9274 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9275
9276         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9277
9278         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9279
9280         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9281         (movLeft2ResultLong): Created.
9282
9283         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9284         (joinPushes): Added.  Joins two char pushes into a word push.
9285
9286 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9287
9288         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9289
9290         * support/makebin/Makefile (install): Added creation of dest dir.
9291
9292 2001-10-24 Karl Bongers <karl AT turbobit.com>
9293
9294         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9295
9296 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9297
9298         * src/z80/ralloc.c: Turned off faulty pack for one use.
9299
9300         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9301
9302         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9303
9304 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9305
9306         * support/regression/Makefile: Improved clean
9307
9308         * support/regression/ports/gbz80/spec.mk: Added clean
9309
9310         * support/regression/ports/host/spec.mk: Added clean
9311
9312         * support/regression/ports/z80/spec.mk: Added clean
9313
9314         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9315
9316         * support/regression/ports/mcs51/timeout.c: little improvements
9317
9318 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9319
9320         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9321
9322         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9323
9324         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9325
9326 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9327
9328         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9329
9330         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9331
9332 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9333         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9334
9335         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9336
9337         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9338
9339         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9340
9341         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9342
9343         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9344
9345         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9346
9347         * support/regression/tests/longor.c: Added.
9348
9349 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9350
9351         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9352
9353         * as/mcs51/aslink.h: define PATH_MAX
9354
9355         * as/mcs51/asm.h: define PATH_MAX
9356
9357         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9358
9359         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9360
9361         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9362
9363         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9364
9365         * src/SDCCglobl.h: define PATH_MAX
9366
9367         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9368
9369         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9370
9371 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9372
9373         * src/z80/gen.c (gencjneshort): Fixed
9374
9375         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9376
9377 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9378
9379         * support/regression/tests/bug-469671.c: Added.
9380
9381         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9382
9383 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9384
9385         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9386
9387         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9388
9389 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9390
9391         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9392
9393         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9394
9395         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9396
9397         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9398
9399         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9400
9401         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9402
9403         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9404
9405 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9406
9407         * 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.
9408
9409         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9410
9411         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9412
9413 2001-10-07    <johan AT FRIJA>
9414
9415         * device/lib/gets.c (gets): fixed the return value.
9416
9417 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9418         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9419
9420         * 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.
9421
9422         * 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.
9423
9424         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9425
9426         * src/pic/gen.c: Removed Safe_strdup.
9427
9428         * configure.in: Added option to enable libgc support.
9429
9430         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9431         (bitVectUnion): Optimised.
9432         (bitVectIntersect): Optimised.
9433         (bitVectBitsInCommon): Optimised.
9434         (bitVectCplAnd): Optimised.
9435
9436         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9437
9438 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9439
9440         * src/SDCCmain.c: distinguish between assembler debug and plain options
9441
9442         * src/avr/main.c:   remove standard assembler options
9443
9444         * src/ds390/main.c: remove standard assembler options
9445
9446         * src/mcs51/main.c: remove standard assembler options
9447
9448         * src/port.h: removed "PENDING" comment
9449
9450 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9451
9452         * src/device/lib/_mulint.c  : new, with assember functions
9453
9454         * src/device/lib/_mullong.c : new, with assember functions
9455
9456         * src/device/lib/_divuint.c : with assember functions
9457
9458         * src/device/lib/_divsint.c : with assember functions
9459
9460         * src/device/lib/_divulong.c: with assember functions
9461
9462         * src/device/lib/_divslong.c: with assember functions
9463
9464         * src/device/lib/_moduint.c : with assember functions
9465
9466         * src/device/lib/_modsint.c : with assember functions
9467
9468         * src/device/lib/_modulong.c: with assember functions
9469
9470         * src/device/lib/_modslong.c: with assember functions
9471
9472         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9473
9474         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9475
9476         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9477                                       replaced _mululong.c and _mulslong.c by _mullong.c
9478
9479 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9480
9481         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9482
9483 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9484
9485         * src/SDCCglue.c: test, if win32api is available for MINGW
9486
9487 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9488
9489         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9490         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9491         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9492         * support/regression/ports/host/spec.mk: removed GENERIC
9493         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9494         * support/regression/ports/z80/spec.mk: removed GENERIC
9495
9496 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9497
9498         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9499
9500         * support/regression/tests/bug-467035.c: Created.
9501
9502 2001-10-01    <johan AT FRIJA>
9503
9504         * src/SDCC.y: fixed bug #466586 part 1
9505
9506 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9507
9508         * SDCCicode.c: z80 has no generic pointers
9509         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9510
9511 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9512
9513         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9514
9515 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9516
9517         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9518
9519         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9520
9521 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9522
9523         * configure.in: Fixed up so that ucsim is only configured once.
9524
9525         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9526
9527         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9528         (getPathDifference): As above.
9529
9530         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9531
9532         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9533
9534 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9535         * .version: Updated to 2.3.1
9536
9537         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9538         Added copyright header.
9539
9540         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9541         (assemble): Added support for macro based assembler commands.
9542         (linkEdit): Added support for macro based linker commands.
9543         (preProcess): Changed the pre-processor to use macros.
9544         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9545         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9546
9547         * device/lib/z80/crt0.s: Added module name for debugging.
9548
9549 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9550
9551         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9552
9553         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9554
9555         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9556
9557         * src/Makefile.in: Added SDCCmacro and SDCCutil
9558
9559 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9560
9561         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9562
9563 2001-09-16    <johan AT FRIJA>
9564
9565         * 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.
9566
9567 2001-09-15    <johan AT FRIJA>
9568
9569         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9570         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9571
9572 2001-09-11    <johan AT FRIJA>
9573
9574         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9575
9576 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9577
9578         * support/regression/tests/bug-460444.c: Added test case.
9579
9580         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9581         (genCast): Added justification for all of the asserts.
9582
9583 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9584
9585         * support/regression/support.c: _xdata replaced by xdata
9586
9587         * support/regression/spec.mk: removed _generic
9588
9589 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9590
9591         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9592
9593         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9594         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9595
9596         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9597
9598         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9599
9600         * support/regression/tests/bug-460010.c: Added test case.
9601
9602         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9603
9604 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9605
9606         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9607
9608         * support/regression/testfwk.c: removed workaround for bug #436344
9609
9610         * support/regression/tests/bp.c: use less memory with mcs51
9611
9612         * support/regression/tests/bug-441448.c: use less memory
9613
9614         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9615
9616         * support/regression/collate-results.py: typo
9617
9618 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9619
9620         * support/regression/tests/fetchoverlap.c: Added new test case.
9621
9622         * support/regression/tests/bp.c: Added new test case.
9623
9624         * support/regression/tests/bug-448984.c: Added new test case.
9625
9626         * support/regression/tests/pow2shifts.c: Added new test case.
9627
9628         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9629         (genlshTwo): Fixed right shift for count > 8.
9630
9631         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9632
9633 2001-09-08    <johan AT FRIJA>
9634
9635         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9636
9637 2001-09-07    <johan AT FRIJA>
9638
9639         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9640
9641         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9642
9643 2001-09-06    <johan AT FRIJA>
9644
9645         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9646         * bernhard noted me at this: "() equals to (void)" (1.38)
9647
9648 2001-09-05    <johan AT FRIJA>
9649
9650         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9651
9652 2001-09-04    <johan AT FRIJA>
9653
9654         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9655
9656
9657 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9658
9659         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9660
9661 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9662
9663         * link/z80/aslink.h: Fixed path for PATH_MAX
9664
9665 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9666
9667         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9668
9669         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9670
9671         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9672
9673         * 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.
9674
9675 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9676
9677         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9678         (genCmp): Fixed up genCmp for the GB with longs.
9679
9680         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9681
9682         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9683
9684         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9685
9686         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9687
9688 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9689
9690         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9691
9692 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9693
9694         * 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.
9695
9696         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9697
9698 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9699
9700         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9701
9702         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9703
9704 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9705
9706   * sim/ucsim/configure:    little improvement of Cygwin-detection
9707   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9708   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9709   * support/regression/tests/bug-221100.c: small changes for mcs51
9710   * support/regression/tests/bug-221168.c: small changes for mcs51
9711   * support/regression/tests/bug-227710.c: small changes for mcs51
9712   * support/regression/tests/staticinit.c: small changes for mcs51
9713   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9714   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9715   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9716
9717 $Revision$