64563ccac518744792ba75aef859ff0ac1fec9e3
[fw/sdcc] / ChangeLog
1 2005-09-18 Raphael Neider <rneider AT web.de>
2
3         * src/pic16/gen.c (genFarPointerGet,genFarPointerSet): removed
4           as these are now unused,
5           (genPointerGet,genPointerSet): handle FPOINTERs like POINTERs
6         * src/pic16/pcode.c (pic16_symIsSpecial): assume REG_TMPs to be
7           local, avoids uninitialized pointer dereference on r->name
8         * src/pic16/ralloc.c (newReg): fixed indentation
9
10 2005-09-13 Maarten Brock <sourceforge.brock AT dse.nl>
11
12         * src/SDCCval.c (constVal): fixed bug 730366
13         * support/Util/SDCCerr.c,
14         * support/Util/SDCCerr.h: added warning W_INVALID_INT_CONST
15
16 2005-09-10 Maarten Brock <sourceforge.brock AT dse.nl>
17
18         * as/mcs51/lkmem.c (summary2): fixed report for absolute areas (bug 1210220)
19
20 2005-09-09 Maarten Brock <sourceforge.brock AT dse.nl>
21
22         * src/mcs51/peeph.def (241.x): fixed bug when comparing generic pointers
23
24 2005-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
25
26         * as/hc08/lkaomf51.c (OutputName): made name unsigned char,
27           (hex2dec): made hex_digit unsigned char, removed ascii dependance
28         * as/mcs51/lkaomf51.c (OutputName): made name unsigned char,
29           (hex2dec): made hex_digit unsigned char, removed ascii dependance
30         * as/mcs51/lkarea.c (lnkarea2): sort absolute areas to the front
31         * packihx/packihx.c (hexDigit): made c unsigned char
32         * as/mcs51/lklibr.c (fndsym),
33         * link/z80/lkgb.c (gb),
34         * link/z80/lklibr.c (fndsym),
35         * link/z80/lkrloc.c (relr),
36         * sim/ucsim/libltdl/ltdl.c (load_deplibs, try_dlopen),
37         * src/SDCC.lex (checkCurrFile, process_pragma),
38         * src/SDCCglue.c (spacesToUnderscores),
39         * src/SDCCmain.c (setParseWithComma, processFile),
40         * src/asm.c (tvsprintf, printCLine),
41         * src/avr/gen.c (emitcode, aopPut),
42         * src/ds390/gen.c (emitcode),
43         * src/hc08/gen.c (emitcode, emitinline),
44         * src/mcs51/gen.c (emitcode, genInline),
45         * src/pic/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
46           tokenizeLineNode),
47         * src/pic/ralloc.c (debugLog),
48         * src/pic16/pcodepeep.c (cvt_extract_destination, cvt_extract_status,
49           tokenizeLineNode),
50         * src/pic16/ralloc.c (debugLog),
51         * src/z80/main.c (_process_pragma):
52            made all ctype.h function calls safe
53         * src/SDCCopt.c: include math.h for fabs
54         * src/SDCCpeeph.c: added macros ISCHARDIGIT, ISCHARSPACE and ISCHARALNUM
55           and used them throughout the code to make ctype.h function calls safe
56         * src/ds390/main.c (asmLineNodeFromLineNode),
57         * src/mcs51/main.c (asmLineNodeFromLineNode): made p unsigned char*
58         * src/pic/gen.c (DEBUGpic14_emitcode, pic14_emitcode): made lbp
59            unsigned char*
60         * src/pic/pcode.c (mnem2key): made mnem unsigned char*,
61           (newpCodeAsmDir): made ctype.h function calls safe
62         * src/pic16/gen.c (pic16_emitpcomment, DEBUGpic16_emitcode,
63           pic16_emitcode):  made lbp unsigned char*
64         * src/pic16/pcode.c (mnem2key): made mnem unsigned char*,
65           (pic16_newpCodeAsmDir): made ctype.h function calls safe
66         * src/xa51/gen.c (emitcode),
67         * src/z80/gen.c (_emit2): made lbp unsigned char*
68         * support/Util/MySystem.c (split_command): made cmd_line and p unsigned
69            char*
70
71 2005-09-05 Raphael Neider <rneider AT web.de>
72
73         * src/pic16/ralloc.c (pic16_allocDirReg): use device specific
74           access bank splitpoint
75
76 2005-09-05 Raphael Neider <rneider AT web.de>
77
78         * device/lib/pic16/libc/Makefile: added (missing) string to SUBDIRS
79
80 2005-09-03 Maarten Brock <sourceforge.brock AT dse.nl>
81
82         * .version: changed to version 2.5.3
83         * doc/sdccman.lyx: changed version to 2.5.3,
84           documented --codeseg and --constseg and pragma codeseg and constseg,
85           documented bit parameters (reentrant) and bit returning
86         * src/SDCCicode.c (geniCodeReceive): fixed (possible) bug generating
87            currFunc->recvSize, but is this ok for all ports?
88           (ast2iCode): result of ~ on unsigned char must be cast to int for
89            bool to work
90         * src/SDCCmem.c (allocGlobal, allocLocal): don't put bit returning
91           function pointers in bit space
92         * src/SDCCsymt.c (checkSClass): allow bit returning function pointers,
93           (processFuncArgs): call port.reg_parm() with reentrancy info
94         * src/port.h,
95         * src/avr/main.c,
96         * src/ds390/main.c,
97         * src/hc08/main.c,
98         * src/pic/main.c,
99         * src/pic16/main.c,
100         * src/xa51/main.c,
101         * src/z80/main.c: port.reg_parm prototype extended with
102           "bool reentrant" parameter
103         * src/mcs51/main.c (_mcs51_regparm): use parameter reentrant instead of
104           options.stackAuto for allocating bit register parameters
105         * src/mcs51/gen.c (genNot): optimized complementing direct bit,
106           (genSend): set BitBankUsed if it is,
107           (selectRegBank): factored out of genCall for use in genPcall,
108           (genCall): removed redundant dtype assignmen, use selectRegBank,
109           (genPcall): handle returning in Carry properly, save in F0 if needed,
110           (genReceive): handle bit register parameters
111         * src/mcs51/ralloc.c (updateRegUsage): update BitBankUsed along the way,
112           (mcs51_assignRegisters): enable bit registers for all reentrant
113            functions and don't set BitBankUsed unconditionally
114         * src/mcs51/peeph.def (177.d): fixed bug if %2==%3
115         * support/regression/tests/bitvars.c: enable tests for SDCC_STACK_AUTO
116         * support/regression/tests/funptrs.c: added tests for BOOL and for return
117
118 2005-08-27 Borut Razem <borut.razem AT siol.net>
119
120         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) and on
121         ppc-osx (Darwin) does not support -u option. It seems that it is
122         supported only on Linux - GNU cp
123
124 2005-08-25 Borut Razem <borut.razem AT siol.net>
125
126         * sim/ucsim/gui.src/serio.src/Makefile.in,
127           sim/ucsim/s51.src/Makefile.in, sim/ucsim/avr.src/Makefile.in,
128           sim/ucsim/z80.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
129           sim/ucsim/xa.src/Makefile.in: install -s changed to 2 steps:
130           install and strip, since the strip at /usr/ccs/bin should be used
131           on solaris
132
133 2005-08-24 Borut Razem <borut.razem AT siol.net>
134
135         * clean.mk, device/lib/clean.mk: find on sparc-solaris does not support -maxdepth option
136
137 2005-08-23 Bernhard Held <bernhard AT bernhardheld.de>
138
139         * src/SDCCopt.c (convertToFcall): fixed modulus with divisors 1 and
140         ffffffffu
141
142 2005-08-23 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * as/mcs51/aslink.h: completed lkrloc.c prototypes
145         * as/mcs51/lkmain.c (link_main): fixed warning
146         * device/include/stdbool.h: ds390 has no advanced bit support yet
147         * src/SDCC.y: use SPEC_SHORT and renamed _signed to b_signed
148         * src/SDCCsymt.c: use SPEC_SHORT and renamed _signed to b_signed
149         * src/SDCCsymt.h (struct specifier): renamed _xxx bitfields to b_xxx
150           and updated their macros
151         * src/SDCCval.c (constVal): updated comment for renamed b_long
152
153 2005-08-22 Maarten Brock <sourceforge.brock AT dse.nl>
154
155         * as/mcs51/asdata.c: changed ctype['['] to BINOP
156         * as/mcs51/asexpr.c (expr): added case '[' for bit access in bdata,
157           (term): abused bit 15 of s_addr to indicate bit-addressable bytes,
158           (oprio): set priority for '['
159         * as/mcs51/aslink.h: added define R_BIT, and prototypes for adb_bit
160            and adb_24_bit
161         * as/mcs51/asm.h: added defines R_BIT and S_BIT
162         * as/mcs51/lkarea.c (lnksect2): use T for seg BIT_BANK and overlay it
163         * as/mcs51/lkdata.c: changed ctype['['] to BINOP
164         * as/mcs51/lkmain.c (Areas51): rel2 contains 12 (=C) areas now,
165           added overlayable BIT_BANK area
166         * as/mcs51/lkmem.c (summary): add BIT_BANK to BSEG_BYTES in the report,
167           (summary2): explain 'T' in legenda
168         * as/mcs51/lkrloc.c: replaced old K&R style,
169           (relr): added R_BIT processing,
170           (errmsg): added "Bit-addressable relocation error",
171           (adb_bit): added for converting from byte- to bit-addressable space,
172           (adb_24_bit): added for converting from byte- to bit-addressable space
173         * device/include/stdbool.h: changed BOOL to __bit for mcs51 as it can be
174            used in reentrant functions now even as return value
175         * device/lib/_gptrput.c (_gptrput): removed obsolete code
176         * src/SDCCast.c (resultTypePropagate): also propagate AND_OP and OR_OP,
177           (decorateType): case '!', GETHBIT, AND_OP, OR_OP: result in bool or char
178         * src/SDCCglobl.h: added indicator BitBankUsed
179         * src/SDCCglue.c (glue): emit area BIT_BANK with byte 'bits' and equ's for
180            the bit registers b0-b7
181         * src/SDCCicode.c (operandFromSymbol): removed IS_BITVAR check,
182           (geniCodeCast): fixed bug 1263853,
183           (geniCodeLogicAndOr): put result in bool or char,
184           (geniCodeReceive): added parameter func for accessing the return type,
185           (geniCodeFunctionBody): pass func to geniCodeReceive
186         * src/SDCCmain.c: added indicator BitBankUsed
187         * src/SDCCmem.c (allocLocal): explicitly set sclass for V_BIT
188         * src/SDCCsymt.c (newBoolLink): added for creating a bool/bit,
189           (checkSClass): don't put automatic bool/bit on stack,
190           (checkFunction): removed check on function cannot return bit
191         * src/SDCCsymt.h: added newBoolLink prototype
192         * src/mcs51/gen.c (rb1regs): added bit registers,
193           (movc): created for assigning to carry,
194           (pushReg, popReg): created for pushing registers,
195           (sameRegs): check both AOP_REG and AOP_CRY types,
196           (aopOp): handle bit registers,
197           (aopPut): optimization no self-assign,
198           (saveRegisters): push reg->base (bits) only once for bit registers,
199            and use pushReg,
200           (unsaveRegisters): pop reg->base only once and use popReg,
201           (assignResultValue): added parameter func and return in carry for bits,
202           (genIpush): optimization no reload in A if not changed,
203           (genSend): bit parameters in reentrant functions are passed in bit
204            registers by first assigning to bits in B, then save registers and
205            copy B to bits,
206           (genCall): handle returning in Carry properly, save it in F0 if needed,
207           (genPcall): updated assignResultValue call, this is not safe yet for bit
208            returning function !!!
209           (genFunction): don't generate equ's for bit registers and use pushReg,
210           (genEndFunction): take care of bit returning functions and use popReg,
211           (genRet): return bit in Carry,
212           (genIfx): optimize bit registers and other directly addressable bits,
213           (genReceive): updated assignResultValue call
214         * src/mcs51/main.c (_mcs51_reset_regparm): added regBitParmFlg,
215           (_mcs51_regparm): allow passing of upto 8 bit parameters in bit
216            registers when using stack-auto
217         * src/mcs51/ralloc.c (_G): added allBitregs,
218           (regs8051): added the bit registers,
219           (createStackSpil): use macro IS_BIT,
220           (getRegBit): added to allocate a bit register, else spill,
221           (getRegBitNoSpil): added to allocate a bit register, else a gpr,
222           (updateRegUsage): factored out to ease stepping while debugging,
223           (serialRegAssign): use updateRegUsage, only spill bits if necessary,
224            also allocate bit registers,
225           (fillGaps): handle bit registers,
226           (findAllBitregs): added to create bit vector with all bit registers,
227           (mcs51_allBitregs): returns this bit vector,
228           (mcs51_assignRegisters): when using stack-auto use bit registers for
229            passing parameters and creating local variables
230         * src/mcs51/ralloc.h: added B0_IDX..B7_IDX and prototype mcs51_allBitregs
231
232 2005-08-22 Borut Razem <borut.razem AT siol.net>
233
234         * device/lib/Makefile.in: replaced find option -or with -o
235           to make it run on solaris
236
237 2005-08-22 Raphael Neider <rneider AT web.de>
238
239         * src/pic16/gen.c (pic16_loadFromReturn): added check for AOP_PCODE,
240           fixes #1265442 (crash on Solaris)
241
242 2005-08-20 Borut Razem <borut.razem AT siol.net>
243
244         * configure, configure.in: added tests for libsocket and libnsl libraries,
245           requred by sdcdb on sparc-solaris; generate support/regression/Makefile
246           from support/regression/Makefile.in
247         * support/regression/Makefile.in: added
248         * device/lib/pic16/Makefile.common.in: force make to use bash shell
249         * sim/ucsim/libtool: regenerated on sparc-solaris
250         * sim/ucsim/avr.src/Makefile.in, sim/ucsim/hc08.src/Makefile.in,
251           sim/ucsim/s51.src/Makefile.in, sim/ucsim/xa.src/Makefile.in,
252           sim/ucsim/z80.src/Makefile.in: removed GNU ld specific linker options
253           -Wl,--start-group and -Wl,--end-group to enable ucsim compilation on
254           sparc-solaris, which doesn't use GNU ld linker
255         * device/lib/Makefile.in: cp on sparc-solaris (SunOS) does not support -u option
256         * as/Makefile: find on sparc-solaris does not support -maxdepth option
257
258 2005-08-19 Maarten Brock <sourceforge.brock AT dse.nl>
259
260         * src/mcs51/peeph.def: updated comments
261
262 2005-08-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
263
264         * device/lib/_gptrget.c,
265         * device/lib/_gptrput.c: slightly shorter
266         * doc/sdccman.lyx: incremented version
267         * src/mcs51/peeph.def: moved peephole comments to the line of first
268           change to better keep line correlation, reanimated 186.e
269         * src/mcs51/peeph.def: renamed similar peepholes by using suffixes
270
271 2005-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
272
273         * src/pic/pcode.c : Pasted ".line" assembly directives patch from
274           David Saxton with quotes around file name.
275
276 2005-08-15 Borut Razem <borut.razem AT siol.net>
277
278         * support/regression/tests/bitfields.c, support/regression/tests/bitvars.c,
279           support/regression/tests/bitwise.c, support/regression/tests/literalop.c,
280           support/regression/tests/rotate.c, support/regression/tests/zeropad.c:
281           make tests run on x86_64 platform
282
283 2005-08-13 Raphael Neider <rneider AT web.de>
284
285         * device/lib/pic16/Makefile.subdir: weakened clean-intermediate rule
286           as it might be executed DURING a build (parallel make is wonderful)
287
288 2005-08-13 Raphael Neider <rneider AT web.de>
289
290         * device/lib/Makefile.in (port-specific-objects-pic16):
291           revert to cp $(PORT)/bin/*.* $(PORTDIR)
292         * device/lib/pic16/Makefile: added .PHONY targets, removed builddir
293           dependency
294         * device/lib/pic16/Makefile.rules: build subdirs before creating
295           the library, removed builddir rule, create $(builddir) early in
296           recurse rule, use empty recurse rule for leaf directories
297         * device/lib/pic16/Makefile.subdir: added phony targets, ignore
298           mkdir errors (race condition), removed duplicate suffix "hex"
299           from clean rules
300         * device/lib/pic16/libdev/Makefile: recursive make via + and $(MAKE)
301         * device/lib/pic16/libio/Makefile: create sub-make's builddir early,
302           prevents mkdir -p from aborting on Alpha
303
304 2005-08-12 Raphael Neider <rneider AT web.de>
305
306         * src/pic16/glue.c (pic16_print(G)PointerType): do not flush
307           db-statements in order to allow for arrays of pointers in code
308           sections to be placed without interspersed 0-padding, fixes
309           bug #1256215
310         * (emitStatistics): fixed division by zero for pic18f1220
311         * src/pic16/pcode.c: buffer (up to) 12 DB directives to allow for
312           unpadded writing of 8-bit, 16-bit, 24-bit and 32-bit values
313         * (pic16_emitDS): respect DB_ITEMS_PER_LINE
314         * (pic16_pCodeConstString): keep track of already emitted string
315           literals to prevent "duplicate definitions of symbol _str_NR"
316         * src/pic16/ralloc.c (pic16_allocRegByName): removed not so helpful
317           debug message
318         * device/lib/Makefile.in: ignore failing PIC16 library builds
319         * device/lib/pic16/Makefile: do not build if gputils are missing
320         * device/lib/pic16/Makefile.common.in: do not enforce MAKEFLAGS=-s
321
322 2005-08-10 Raphael Neider <rneider AT web.de>
323
324         * device/lib/Makefile.in: fixed copying pic16 libraries (broken by
325           my last commit)
326
327 2005-08-10 Raphael Neider <rneider AT web.de>
328
329         * src/*.c, src/pic16/{gen.c,glue.c,main.c}: applied Vangelis
330           Rokas' patch to add the new fixed point type "__fixed16x16"
331         * device/lib/pic16/libsdcc/fixed16x16: added Vangelis' support
332           functions for __fixed16x16 arithmetics
333         * device/lib/pic16: reimplemented the build system to support
334           a separate build directory, better handling of libio (create
335           the library in a separate subdir for each architecture) and
336           easier configuration (centralized in Makefile.common)
337
338 2005-08-07 Raphael Neider <rneider AT web.de>
339
340         * src/pic16/gen.c (genrshTwo): fixed sign extension
341         * src/pic16/device.c: added pic18f2320, 4220 and 4320
342         * device/include/pic16/pic18f2220.h: changed some bit definitions,
343           added T0CONbits
344         * device/include/pic16/pic18f4220.h: NEW, header for
345           pic18f4220 and pic18f4320
346         * device/include/pic16/pic18fregs.h: added new devices,
347           embraced Nop(), ClrWdt(), Sleep() and Reset() with do {} while(0)
348         * device/include/pic16/signal.h: resolved name clashes
349           on bit definitions, added DEF_HANDLER2(sig1,sig2,handler)
350           to also allow testing for interrupt enable bits, added
351           comments on how to use the macros
352         * device/lib/pic16/libdev/pic18f2220.c: added T0CONbits
353         * device/lib/pic16/libdev/pic18f{2320,4220,4320}.c: NEW,
354           register definitions for the devices
355         * device/lib/pic16/pics.all: added new devices
356         * device/lib/pic16/libc/stdlib/calloc.c: fixed zeroing
357           allocated memory
358         * device/lib/pic16/libc/stdlib/memfree: do not count
359           the block header as free memory
360         * device/lib/pic16/libc/stdlib/memmisc.c (_initHeap):
361           simplified and added missing end-of-blocklist-marker
362           (reported by Peter Onion, fixes #1252814)
363         * (_mergeHeapBlock): fixed loop condition
364         * device/lib/pic16/libc/stdlib/realloc.c: return NULL for
365           len==0, restructured code
366         * device/lib/pic16/libc/stdlib/{malloc,memfreemax}.c: cleaned
367           up a bit, reduced bitfield accesses, prevent endless loops
368           in case of heap corruption
369         * device/lib/pic16/libc/stdlib/x_ftoa.c: disabled
370           "unreferenced arguments/must return a value" warnings
371         * device/lib/pic16/libio/usart/ubaud.c (usart_baud):
372           replaced BAUDREG with SPBRG
373         * device/lib/pic16/libsdcc/lregs/{lrrest.c,lrst.c},
374           device/lib/pic16/debug/gstack/gstack.c: replaced
375           _naked, _asm, _endasm with __naked, __asm, __endasm
376
377 2005-08-05 Raphael Neider <rneider AT web.de>
378
379         * src/pic16/gen.c (pic16_aopGet): fixed handling of offsets in
380           AOP_PCODE operands, fixes multibyte union-bitfield-accesses
381
382 2005-08-05 Borut Razem <borut.razem AT siol.net>
383
384         * device/lib/Makefile.in: added missing ';'
385         * configure: removed ^M characters
386
387 2005-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
388
389         * device/include/mcs51/at89c51ed2.h, device/include/mcs51/p89v51rd2.h,
390           device/include/mcs51/at89s53.h: changed to GNU Lesser General Public
391           License
392
393 2005-08-04 Borut Razem <borut.razem AT siol.net>
394
395         * configure.in: pic16 libraries build 2nd try - enable running
396           configure in device/lib/pic16
397         * configure: regenerated from configure.in
398         * device/lib/Makefile.in: create $(PORT)/bin directory
399
400 2005-08-03 Raphael Neider <rneider AT web.de>
401
402         * src/pic16/gen.c (pic16_derefPtr): NEW, single place
403           to get/set values via pointers
404         * (genUnpackBits,genPackBits): changed detection of
405           ptr->bitfield vs. sym.bitfield, fixed access via generic
406           pointers, removed dead (wrong) code for multibyte bitfields
407         * (genNearPointerGet, genGenPointerGet): removed useless code,
408           fixed bitfield detection, fixes #1250594
409         * (genNearPointerSet): removed useless code
410         * src/pic16/gen.h: renamed pic16_emitpcode to pic16_emitpcode_real
411           and introduced macro pic16_emitpcode that conditionally emits
412           the origin of the following pCode (useful for debugging SDCC)
413         * src/pic16/pcode.c: changed (and disabled) some debug outputs
414         * (createDefmap): fixed handling of LFSR for --optimize-df
415
416 2005-08-02 Borut Razem <borut.razem AT siol.net>
417
418         * device/lib/Makefile.in: pic16 libraries build enabled since
419           gputils-0.13.2 are now localy installed at sourceforge's compile farm
420
421 2005-08-02 Raphael Neider <rneider AT web.de>
422
423         * src/pic16/gen.c (genPackBits): removed deprecated warning
424         * (genGenPointerSet): fixed bitfield detection
425
426 2005-08-02 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
427
428         * device/include/mcs51/msm8xc154s.h: Removed PT2 definition, now in 8052.h.
429
430 2005-07-31 Raphael Neider <rneider AT web.de>
431
432         * device/lib/pic16/libdev/pic18f458.c,
433           device/include/pic16/pic18f458.h: added missing T0CONbits
434
435 2005-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
436
437         * device/include/mcs51/msm8xc154s.h: added, thanks to Matthias Arndt
438
439 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
440
441         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
442
443 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
444
445         * device/include/mcs51/at89c51ed2.h: added.
446
447 2005-07-23 Raphael Neider <rneider AT web.de>
448
449         * src/pic/gen.h: added emitpcode macro for debugging
450         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
451           and replace by macro adding debug information on demand
452         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
453         * (gencjne): tried to fix; replaced with correct (slower) code
454         * (gen{Unp,P}ackBits): fixed single bit access
455         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
456         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
457           previous instruction
458         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
459           register has to be handled with care (forbidding movement
460           of assignments/uses, removing assignments completely, ...)
461         * (pCodeOptime2pCodes): make use of regIsSpecial
462         * added lots of debugging output (commented out)
463         * src/pic/rallloc.c (deassignLRs): prevent operand registers
464           from being reused as result UNLESS it is known to work
465
466 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
467
468         * support/Util/dbuf.h: include <stddef.h> for size_t
469         * .version: changed to version 2.5.2
470
471 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
472
473         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
474
475 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
476
477         * src/hc08/gen.c (genMinus): fixed bug #1241835,
478           (genModOneByte): removed needless psha/pula
479
480 2005-07-22 Raphael Neider <rneider AT web.de>
481
482         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
483           have PIC14 handled like PIC16, fixes broken pic14 linker calls
484         * src/pic/gen.c (resolveIfx): do not "invent" labels
485         * (genSkipc): changed to positive logic
486         * (genSkipCond): removed as no longer needed
487         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
488           backport from PIC16
489         * (genLeftShift): check operands are in different registers
490         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
491           INCF does not update CARRY...
492         * src/pic/main.c: fixed _linkCmd
493         * src/pic/pcode.c (unlinkpCode): added inactive code
494         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
495           alive (do not assign result and operand overlapping registers)
496
497 2005-07-22 Raphael Neider <rneider AT web.de>
498
499         * src/pic/device.c (dump_sfr): replaced register declaration with
500           call to emitSymbolToFile() to avoid duplicate symbols
501         * (assignRelocatableRegisters): do not declare external symbols
502         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
503           right (take size of type, not etype)
504         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
505         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
506         * (packRegsForAccUse): disabled assignment of WREG as
507           the result reg to prevent occurence of just fixed #1235003,
508           fixes #1242954
509         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
510           symbols (avoids duplicate symbols in .asm file)
511         * (pic14emitRegularMap): use emitSymbolToFile()
512         * src/pic/gen.c (aopOp): fixed spillLocation handling
513         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
514         * (genDataPointerSet): removed unneccessary variables/output
515
516 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
517
518         * as/mcs51/lkarea.c: enlarged codemap for banked memory
519         * device/lib/mcs51/crtbank.asm: added # to 0x0F
520
521 2005-07-21 Raphael Neider <rneider AT web.de>
522
523         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
524           architecture cannot handle them efficiently, fixes bug #1235003
525         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
526           check for empty sets before using them (fixes bug #1232190)
527
528 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
529
530         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
531           (lnksect2): generate warnings for memory overlap
532         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
533           constseg to set the name of these segments so you can instruct the linker
534           to place them in banks
535         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
536         * src/SDCCglobl.h: added MODEL_HUGE to enum,
537           added code_seg and const_seg to options
538         * src/SDCCglue.c (emitMaps): use options.const_seg,
539           (createInterruptVect): put interrupt vectors in segment HOME,
540           (glue): put HOME before static segment and put the main glue in HOME,
541           (glue): use options.code_seg
542         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
543         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
544           these segments so you can instruct the linker to place them in banks
545           (linkEdit): use code_loc for HOME segment which should be the first
546           segment in code memory now
547         * src/SDCCmem.c: fixed more stuff like bug 1238386
548         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
549           (changePointer): don't change function pointers to code pointers for
550           banked functions,
551           (compareType): added exceptional check for banked function pointers
552         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
553         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
554           after static in code memory
555         * src/mcs51/gen.c: added aopLiteralLong prototype,
556           (aopForSym): use getSize for functions,
557           (genCall): generate banked calls over one trampoline __sdcc_banked_call
558           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
559           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
560           the segment,
561           (genPcall): use call for literal function pointers and generate banked
562           calls over the one trampoline so there's only one place for the user to
563           modify according to his/hers hardware,
564           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
565           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
566         * src/mcs51/main.c: added keyword banked,
567           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
568         * support/Util/SDCCerr.c,
569         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
570           needed for passing the bank and address to the trampoline
571         * device/lib/mcs51/crtbank.asm: added for bankswitching
572         * device/lib/mcs51/Makefile: added crtbank
573
574 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
575
576         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
577           for fields at offset 0 of a struct or union as reported
578           on 2005-07-07 in the developer mailing list.
579
580 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
581
582         * src/SDCCmem.c: fixed bug 1238386
583
584 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
585
586         * src/mcs51/peeph.def: added labelrefcounting for peepholes
587           (patch #1144962), added peephole 300, enabled 259.x
588         * doc/sdccman.lyx: removed screenshot and provided link instead
589
590 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
591
592         * doc/sdccman.lyx: added section about debugging with ddd
593         * doc/figures/ddd_example.eps: screenshot of debugging session
594
595 2005-07-04 Raphael Neider <rneider AT web.de>
596
597         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
598           like CODE pointers, fixes #1115683
599         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
600           call, fixes bugs #1232211, #1228110,
601           fixed wrong casts to pCodeFlow from pCodeInstructions
602
603 2005-07-04 Raphael Neider <rneider AT web.de>
604
605         * src/pic/gen.c (popGet): changed assert to allow for
606           bit operands
607         * (popGetAddr): changed signature to provide
608           an additional index, patched all call sites
609         * (genCmpEq): handle literal-like operands correctly
610         * (genAddrOf): added sanity checks on __code/__data pointers
611         * (genAssign): added handling of symbols from __code section
612         * (gencjne): do not generate code for comparisons whose result
613           is neither stored nor used, fixes bug #1171114
614         * (AccLsh, AccRsh): operate on operand instead of WREG
615         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
616           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
617           by known count
618         * rewrote complete shift-by-literal logic, commented unused
619           functions out
620         * (genConstPointerGet): get multiple bytes (if result size > 1),
621           fixed handling of non-immediate addresses
622         * (genPointerGet): handle CODE pointers like CONST pointers
623         * (genpic14Code): insert C-SRC lines as Cource-pCodes
624         * ({aop,op}_isLitLike): NEW, single place to decide whether an
625           operand is to be treated as a literal or not
626         * (mov2w,genPcall,genCmpEq),
627           src/pic/genarith.c: use aop_isLitLike() to decide between
628           literal/register contents
629         * (addSign): added missing offset
630         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
631           only emit comment in debug-mode,
632           use {aop,op}_isLitLike throughout the file
633         * src/pic/glue.c: fix initializers for pointers (work in progress)
634         * src/pic/pcode.c (get_op): honor index on _const symbols
635         * ({reset,dump}pCodeStatistics): NEW, estimate code size
636         * (dumppBlock): added pCode size estimation
637         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
638           check for IS_SYMOP before OP_SYMBOL'ing
639         * fixed indentation, compacted switch-statements
640         * (allocReg): find free register and allocate it instead of
641           allocating new registers all the time
642         * (deassignLRs): prevent POINTER_GET's from being assigned the same
643           registers as its operands (necessary only for multibyte GETs)
644
645 2005-07-01 Raphael Neider <rneider AT web.de>
646
647         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
648           debugging .asm-output macros FENTRY + FEXIT
649         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
650           way... I wonder...
651         * (emitpComment): NEW, printf to pCode
652         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
653           offset handling
654         * (popGetAddr): NEW, variant of popGet to access an immediates
655           high(er) bytes instead of the n'th byte of memory they reference,
656           replaced popGet with popGetAddr where neccessary
657         * (genDataPointerGet): reactivated and fixed implementation
658         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
659           accesses
660         * (genDataPointerSet): fixed multibyte assignments
661         * (genpic14Code): fixed --i-code-in-asm handling
662         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
663         * (genPlus): fixed index-out-of-bounds error
664         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
665         * src/pic/ralloc.c: added debugging output macro FENTRY2
666         * (spillThis): fixed indentation, enbraced for-body for clarity
667         * (rematStr): commented out as now unused
668         * (regTypeNum): commented out special spill case (overwrites
669           arbitrary values)
670         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
671
672 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
673
674         * doc/sdccman.lyx: documented sfr16/sfr32,
675           added example for using storage class with function pointers
676         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
677
678 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
679
680         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
681         * device/lib/_itoa.c,
682         * device/lib/_ltoa.c: optimized codesize
683         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
684           but don't know how to suppress the double warning.
685         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
686         * support/Util/SDCCerr.c,
687         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
688
689 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
690
691         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
692           fixed old K&R prototypes
693         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
694         * device/lib/_gptrget.c,
695         * device/lib/_gptrgetc.c,
696         * device/lib/_gptrput.c: changed versions for new memory indicator values,
697           also new versions for small generic pointers and banked generic pointers
698         * src/port.h: added const_name
699         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
700         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
701         * src/SDCCcse.c (findPrevIc): check all associative operators
702         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
703         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
704         * src/SDCCmem.c: updated comments,
705           set far-space to 0 for pdata, results in optimized code
706         * src/SDCCmem.h: added macro CONST_NAME
707         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
708           moving the info into the highest bits, see also gptrget/gptrput
709         * src/src.dsp: added sdcc.ico to project files
710         * src/avr/gen.c (genCast): fixed bug 0x%d
711         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
712         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
713           relation between ptr_type and DCL_TYPE,
714           (genCast): fixed bug 0x%d
715         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
716           (CODE)" for const_name
717         * src/hc08/gen.c (genCast): fixed bug 0x%d
718         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
719           (hc08_port): added "CONST (CODE)" for const_name
720         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
721           (aopForRemat, adjustArithmeticResult): disconnected direct relation
722           between ptr_type and DCL_TYPE,
723           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
724           operand* and took AOP() inside function so sfr-ness can be checked,
725           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
726           new prototype,
727           (genFunction, genEndFunction): optimized stack setup,
728           (genMinus): optimized for literals with ending zeroes (in bytes),
729           (genCast): fixed bug 0x%d
730         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
731           (mcs51_port): added "CONST (CODE)" for const_name
732         * src/mcs51/peeph.def: made rule 226 more generic
733         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
734         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
735         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
736         * src/z80/main.c (z80_port): added NULL for const_name,
737           (gbz80_port): added NULL for const_name
738         * support/regression/tests/bug663539.c,
739         * support/regression/tests/sfr16.c: new tests
740
741 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
742
743         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
744
745 2005-06-24 Raphael Neider <rneider AT web.de>
746
747         * device/lib/pic16/libdev/pic18f[68][567]20.c:
748           corrected typos...
749         * device/include/pic16/signal.h: added USBIF
750           and SIG_USB
751
752 2005-06-24 Raphael Neider <rneider AT web.de>
753
754         * device/lib/pic16/libdev/pic18f2455.c,
755           device/include/pic16/pic18f2455.h: NEW
756         * device/include/pic16/pic18fregs.h,
757           device/lib/pic16/pics.all,
758           src/pic16/device.c: added 18f2455
759         * device/lib/pic16/libdev/pic18f[68][567]20.c,
760           device/include/pic16/{pic18f[68][567].h,usart.h}:
761           replaced MULTIPLE_USARTS define with more relaible
762           compatibility sfrs (for USART access)
763
764 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
765
766         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
767           and the output asm file line is printed on two lines.
768
769 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
770
771         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
772           BGT, BLE, BHI, and BLS instructions
773         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
774           genCmpEq): removed
775         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
776           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
777           fixes bug #1216342
778         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
779
780 2005-06-15 Raphael Neider <rneider AT web.de>
781
782         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
783         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
784         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
785           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
786           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
787
788 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
789
790         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
791           Marcel Telka in bug #1215704
792
793 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
794
795         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
796           located in shared memory bank.
797
798 2005-05-31 Raphael Neider <rneider AT web.de>
799
800         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
801           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
802           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
803
804 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
805
806         * device/lib/_strncpy.c: fixed the fix
807
808 2005-05-26 Raphael Neider <rneider AT web.de>
809
810         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
811           initializers with \0, bug #1208187
812         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
813           intializers with \0, bug #1208187
814
815 2005-05-26 Raphael Neider <rneider AT web.de>
816
817         * src/pic16/glue.c (pic16_printIvalChar): fixed string
818           initializers with \0, bug #1208187
819         * src/pic16/main.c (_process_pragma): added sanity checks
820           for stack position and size, emit warnings when appropriate
821
822 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
823
824         * device/lib/_strncpy.c: fixed not filling with \0
825
826 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
827
828         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
829           createFunction),
830         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
831           compound_statement),
832         * src/SDCCsymt.h,
833         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
834
835 2005-05-24 Raphael Neider <rneider AT web.de>
836
837         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
838
839 2005-05-24 Raphael Neider <rneider AT web.de>
840
841         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
842           TRISE definitions, closes bug #1162453
843
844 2005-05-22 Raphael Neider <rneider AT web.de>
845
846         * src/pic16/main.c (_process_pragma): check for missing
847           arguments to pragmas code and udata
848         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
849           consistency fixes to match other headers (thanks to Jim Paris)
850         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
851
852 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
853
854         * src/SDCCicode.c (isOperandEqual): fixed missing ;
855
856 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
857
858         * support/regression/tests/bug1198642.c: new test
859         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
860         * src/SDCCcse.c (findPrevIc): added comment, please have a look
861         * support/scripts/resource.h,
862         * support/scripts/resource.rc,
863         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
864         * support/scripts/sdcc.ico: added 32x32 icon
865
866 2005-05-18 Raphael Neider <rneider AT web.de>
867
868         * device/lib/pic16/libdev/pic18f*.c,
869         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
870           keywords to "__sfr" and "__at (X)"
871         * device/include/pic16/pic18fregs.h: added pic18f4520
872         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
873           #1203088 (MPLAB compatibility)
874
875 2005-05-17 Raphael Neider <rneider AT web.de>
876
877         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
878         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
879         * device/lib/pic16/pics.all: added new devices
880         * src/pic16/device.c: added support for pic18f4520
881
882 2005-05-16 Raphael Neider <rneider AT web.de>
883         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
884         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
885         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
886           convenience function for bit access
887
888 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
889
890         * device/lib/printf_large.c: fixed bug 1193299
891         * support/regression/tests/bug1057979.c: added test %3.3s
892
893 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
894
895         * device/include/mcs51/8051.h,
896         * device/include/mcs51/8052.h: made parseable with lint
897         * device/include/mcs51/lint.h: added include file for (sp)lint
898         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
899         * doc/cdbfileformat.lyx,
900         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
901
902 2005-05-14 Raphael Neider <rneider AT web.de>
903
904         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
905         * device/lib/pic16/libc/stdlib/itoa.c (new)
906         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
907         * device/lib/pic16/libio/Makefile: exclude subdir according to
908           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
909         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
910         * src/pic16/gen.c (genFunction): prevent annoying warning
911         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
912           nameclashes on BeOS
913         * support/cpp2/cppmain.c (cpp_output_string): new
914         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
915           fixes bug 1116802
916
917 2005-05-13 Borut Razem <borut.razem AT siol.net>
918
919         * src/SDCCmain.c (linkEdit): fixed bug 1195202
920
921 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
922
923         * .version: changed to version 2.5.1; back to bleeding edge development
924
925 2005-05-11 Borut Razem <borut.razem AT siol.net>
926
927         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
928           generate PDF version 1.3 documents
929
930 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
931
932         * .version: changed to version 2.5.0
933
934 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
935
936         * doc/sdccman.lyx: updated weblinks, index and smaller updates
937
938 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
939
940         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
941         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
942         well as many smaller updates.
943         * .version: changed to version 2.5.0-pre1
944
945 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
946
947         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
948
949 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
950
951         * support/regression/tests/bug1185672.c: added
952         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
953           bug 1185672
954         * src/mcs51/gen.c (genCall): added comments, made it look safer
955         * src/mcs51/gen.c (genEndFunction): simplified
956
957 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
958
959         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
960
961 2005-04-14 Borut Razem <borut.razem AT siol.net>
962
963         * fixed bug 1045046 - SIGSEGV with really simple code?:
964           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
965           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
966
967 2005-04-14 Borut Razem <borut.razem AT siol.net>
968
969         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
970           src/pic16/device.h: temporarily disabled experimental #inline pragma
971           for 2.5.0 release
972
973 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
974
975         * device/include/z80/stdio.h,
976         * device/include/z80/string.h: removed these highly incomplete files so
977           SDCC can use the default ones in device/include/
978
979 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
980
981         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
982         gcc warning.
983         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
984         fix sdcpp warnings.
985
986 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
987
988         * device/include/malloc.h: removed redundant __reentrant prototypes
989         * device/lib/_mullong.c: added working xstack variant in asm (C version
990           doesn't pass regression tests)
991         * device/lib/bpx.c: used __data and made bpx char for mcs51
992         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
993           (createFunction): fixed bug with xstackPtr
994         * src/SDCCcse.c: corrected comments
995         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
996           (killDeadCode, eBBlockFromiCode): removed unused code
997         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
998           corrected comments
999         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
1000           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
1001           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
1002           (genModOneByte): fixed warning in MSVC
1003         * src/mcs51/main.c (): added comments
1004         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
1005
1006 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
1007
1008         * src/SDCCmain.c (linkEdit): oops, changed one line too many
1009
1010 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
1011
1012         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
1013
1014 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
1015
1016         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
1017         characters arrays of larger size than the declared one.
1018
1019 2005-04-10 Borut Razem <borut.razem AT siol.net>
1020
1021         * src/pic/gen.c (genInline),
1022           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
1023           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
1024           (findNextInstruction), (findPrevInstruction),
1025           (findInstructionUsingLabel),
1026           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
1027         * src/pic/pcode.c (findLabel): added missing '\n'
1028         * src/src.dsp: added SDCCdwarf2.c to the project
1029
1030 2005-04-09 Borut Razem <borut.razem AT siol.net>
1031
1032         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
1033
1034 2005-04-08 Raphael Neider <rneider AT web.de>
1035
1036         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
1037           into the chain after a given one) and mergeDefmapSymbols (combine
1038           defmap entries for each symbol per pcode)
1039         * (createDefmap): have defmap entries merged in the end
1040         * (defmapReplaceSymRef): split defmap entries covering two accesses to
1041           a symbol before replacing one access type's symbol, merge symbols in
1042           the end (replacement symbol might already have an entry)
1043         * (assignValnums): keep reference to written WREG intact
1044
1045 2005-04-08 Raphael Neider <rneider AT web.de>
1046
1047         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
1048           Alpha)
1049
1050 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
1051
1052         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
1053         bytes
1054
1055 2005-04-07 Raphael Neider <rneider AT web.de>
1056
1057         * device/include/pic16/usart.h: added compatibility defines for
1058           devices with more than one USART
1059         * device/include/pic16/pic18f[68][567]20.h: activated above defines
1060
1061 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1062
1063         * device/lib/Makefile.in: updated for port specific include
1064
1065 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1066
1067         * support/regression/ports/mcs51/spec.mk: added mcs51 include
1068
1069 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
1070
1071         * device/include/8051.h,
1072         * device/include/8052.h,
1073         * device/include/at89S8252.h,
1074         * device/include/at89c55.h,
1075         * device/include/at89x051.h,
1076         * device/include/at89x51.h,
1077         * device/include/at89x52.h,
1078         * device/include/mcs51reg.h,
1079         * device/include/reg51.h,
1080         * device/include/reg764.h,
1081         * device/include/regc515c.h,
1082         * device/include/sab80515.h: (re)moved these 12 files
1083         * device/include/mcs51/8051.h,
1084         * device/include/mcs51/8052.h,
1085         * device/include/mcs51/at89S8252.h,
1086         * device/include/mcs51/at89c55.h,
1087         * device/include/mcs51/at89x051.h,
1088         * device/include/mcs51/at89x51.h,
1089         * device/include/mcs51/at89x52.h,
1090         * device/include/mcs51/mcs51reg.h,
1091         * device/include/mcs51/reg51.h,
1092         * device/include/mcs51/reg764.h,
1093         * device/include/mcs51/regc515c.h,
1094         * device/include/mcs51/sab80515.h: and added them here
1095
1096 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
1097
1098         * device/include/stdarg.h: changed SDCC specific keywords to double
1099           underlined form.
1100         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
1101           mcs51 and ds390.
1102         * device/include/hc08/mc68hc908gp32.h,
1103         * device/include/hc08/mc68hc908jb8.h,
1104         * device/include/hc08/mc68hc908jkjl.h,
1105         * device/include/hc08/mc68hc908qy.h: fixed comments
1106         * device/include/mcs51/README: updated
1107         * device/include/mcs51/c8051f120.h: added PINRSF
1108         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
1109         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
1110           amidst code. Also inline is not supported.
1111
1112 2005-04-06 Raphael Neider <rneider AT web.de>
1113
1114         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
1115         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
1116           callers stack/frame pointers
1117
1118 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
1119
1120         * device/include/pic16/usart.h: added, missing in previous commit,
1121         * device/include/pic16/adc.h: fixed typo,
1122         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
1123         commit,
1124         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
1125         <p18fxxx.inc>
1126         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
1127         uninitialized because a bug appears with gplink
1128         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
1129         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
1130         complains for unrecognised option
1131
1132 2005-04-05 Raphael Neider <rneider AT web.de>
1133
1134         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
1135           structs as well (using memcpy)
1136         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
1137           on ISRs (GOTO has no label)
1138         * src/pic16/device.h: added OF_OPTIMIZE_DF
1139         * src/pic16/main.c: added compiler switch --optimize-df to enable the
1140           new data flow analysis/optimization
1141         * src/pic16/pcode.c: added (prototypes for and implementation of)
1142           dataflow analysis functions, fixed pCodeInstructions' inCond and
1143           outCond values, made RCALL a branch instruction
1144         * (pic16_unlinkpCode): keep C line if possible
1145         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
1146           C line moved if possible
1147         * (pic16_getRegFrompCodeOp): NEW, improved version of...
1148         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
1149           to use new pic16_getRegFrompCodeOp (works for more SFRs)
1150         * (pic16_BuildFlow): fixed skip instructions with label (did not start
1151           new flow)
1152         * (pic16_getJumptabpCode): NEW, needed in...
1153         * (LinkFlow): fixed handling of jumptables, calls and conditional
1154           branches
1155         * (pic16_InsertCommentAfter): NEW
1156         * (pic16_pCodeReplace): made verbose and flow preserving
1157         * (AnalyzeFlow): added call to data flow analysis
1158         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
1159         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
1160         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
1161
1162 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1163
1164         * src/SDCCast.c (decorateType): fixed bug #1105626
1165
1166 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
1167
1168         * device/include/asm/pic16/features.h,
1169         * pic18f*.h headers,
1170         * device/include/pic16/adc.h,
1171         * device/include/pic16/delay.h,
1172         * device/include/pic16/i2c.h,
1173         * device/include/pic16/malloc.h,
1174         * device/include/pic16/stdio.h,
1175         * device/include/pic16/stdlib.h,
1176         * device/include/pic16/string.h,
1177         * device/lib/pic16/libc/stdio/printf_tiny.c,
1178         * device/lib/pic16/libc/stdio/printf_small.c,
1179         * device/lib/pic16/libc/stdio/strmgpsim.c,
1180         * device/lib/pic16/libc/stdio/strmmssp.c,
1181         * device/lib/pic16/libc/stdio/strmusart.c,
1182         * device/lib/pic16/libc/stdio/vfprintf.c,
1183         * device/lib/pic16/libc/stdlib/ltoa.c,
1184         * device/lib/pic16/libc/stdlib/putchar.c,
1185         * device/lib/pic16/libc/stdlib/x_ftoa.c,
1186         * device/lib/pic16/libc/stdlib/memchrpgm.c,
1187         * device/lib/pic16/libc/stdlib/memchrram.c,
1188         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
1189         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
1190         * device/lib/pic16/libio/adc/adcbusy.c,
1191         * device/lib/pic16/libio/adc/adcread.c,
1192         * device/lib/pic16/libio/adc/adcsetch.c,
1193         * device/lib/pic16/libio/usart/ubaud.c,
1194         * device/lib/pic16/libio/usart/ubusy.c,
1195         * device/lib/pic16/libio/usart/udrdy.c,
1196         * device/lib/pic16/libio/usart/uopen.c,
1197         * device/lib/pic16/libio/usart/uputc.c,
1198         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
1199         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
1200         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
1201         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
1202         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
1203         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
1204         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
1205         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
1206         specific keywords to double underlined form,
1207         * device/lib/pic16/libc/Makefile.rules,
1208         * device/lib/pic16/libsdcc/Makefile.rules,
1209         * device/lib/pic16/libm/Makefile,
1210         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
1211         to compile with C standard set in Makefile.common
1212         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
1213         rand.c and crc.c in compilation process,
1214         * device/lib/pic16/libsdcc/int/divuint.c,
1215         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
1216         `c' from signed to unsigned,
1217         * device/lib/pic16/startup/crt0.c,
1218         * device/lib/pic16/startup/crt0i.c,
1219         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
1220         keywords to double underlined form, bug fixes in _do_cinit function
1221         which prevented the correct initialization of the .idata segment,
1222         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
1223         core to enter a infinite loop
1224         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
1225
1226 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1227
1228         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
1229
1230 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1231
1232         * device/include/Makefile.in: add support for hc08 subdirectory
1233         * device/include/hc08/: new subdirectory
1234         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
1235         Lucas Loizaga, thanks!
1236         * device/include/hc08/mc68hc908qy.h,
1237         * device/include/hc08/mc68hc908gp32.h,
1238         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
1239         their own directory. Changed internal macro names to use the compiler
1240         reserved namespace. Changed SDCC specific keywords to double
1241         underlined form.
1242         * device/include/math.h,
1243         * device/include/malloc.h,
1244         * device/include/stdarg.h,
1245         * device/include/stdbool.h
1246         * device/include/string.h,
1247         * device/include/tinibios.h,
1248         * device/include/ds400rom.h,
1249         * device/include/8051.h,
1250         * device/include/8052.h,
1251         * device/include/80c51xa.h,
1252         * device/include/at89c55.h,
1253         * device/include/at89S8252.h,
1254         * device/include/at89x51.h,
1255         * device/include/at89x52.h,
1256         * device/include/ds80c390.h,
1257         * device/include/reg764.h,
1258         * device/include/regc515c.h,
1259         * device/include/sab80515.h,
1260         * device/include/mcs51/c8051f000.h,
1261         * device/include/mcs51/c8051f018.h,
1262         * device/include/mcs51/c8051f020.h,
1263         * device/include/mcs51/c8051f040.h,
1264         * device/include/mcs51/c8051f060.h,
1265         * device/include/mcs51/c8051f120.h,
1266         * device/include/mcs51/c8051f300.h,
1267         * device/include/mcs51/c8051f310.h,
1268         * device/include/mcs51/c8051f320.h,
1269         * device/include/mcs51/c8051f330.h,
1270         * device/include/mcs51/c8051f350.h,
1271         * device/include/z180.h: Changed SDCC specific keywords to double
1272         underlined form.
1273
1274 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
1275
1276         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
1277         18F4455,
1278         * (pic16_assignConfigWordValue): disable testing of configuration
1279         register value with config mask,
1280         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
1281         function with port->fun_prefix,
1282         * (genFunction): when generating a naked interrupt function never
1283         create an absolute segment placed in interrupt vector address, place
1284         the actual interrupt function at IVA instead, when an interrupt
1285         function is generated with unspecified interrupt then do not create
1286         the absolute section,
1287         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
1288         code for generating a call to generic pointer get/put function with
1289         a call to function pic16_callGenericPointer(),
1290         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
1291         the call to the generic pointer get/put functions with prefixing the
1292         function name with port->fun_prefix,
1293         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
1294         * src/pic16/main.c (_process_pragma): prefix function with
1295         port->fun_prefix,
1296         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
1297         calling assembler, old 18Fxxxx macro is deprecated,
1298         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
1299         PC_ASMDIR in while condition,
1300         * (findInstruction): add PC_ASMDIR in while condition,
1301         * (buildCallTree): prefix main with port->fun_prefix,
1302         * (pic16_pCode2str): fixed bug that didn't emit the memory access
1303         identifier for variable with banked access in instructions BTFSS,
1304         BTFSC, BCF, BSF, BTG
1305         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
1306         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
1307         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
1308         perform optimization when enviroment variable NO_REG_OPT is set,
1309         * (insideLRBlock): NEW, return 1 if register is inside an
1310         INF_LOCALREGS block,
1311         * (RemoveRegFromLRBlock): remove a register that is completely
1312         eliminated by register optimization, but it is still left in local
1313         register store/restore in/from stack block,
1314         * (Remove2pcodes): after removing register, check to see if it
1315         should be removed from local register store/restore in/from stack
1316         block,
1317         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
1318         DUMMY_READ_VOLATILE,
1319
1320         * device/include/pic16/adc.h: minor prototype modifications and
1321         update,
1322         * device/include/pic16/malloc.h: added GPL notice various
1323         modifications,
1324         * device/include/pic16/stdint.h: NEW, standard header for ints
1325         * device/include/pic16/delay.h: NEW, header for delay functions,
1326         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
1327         delay1mtcy,
1328         * device/include/pic16/signal.h: NEW, header providing helper macros
1329         for implementing signal handlers,
1330         * device/include/pic16/stdio.h: added prototypes for functions,
1331         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
1332         prototypes for stdin and stdout, added macro PUTCHAR to
1333         automatically implement putchar function prototype,
1334         * device/include/pic16/usart.h: modified and updated USART library,
1335         * device/lib/pic16/libio/adc/,
1336         * device/lib/pic16/libio/i2c: some modifications to improve library
1337         performance,
1338         * device/lib/pic16/libc/stdio/: modifications for the new printf*
1339         family of functions,
1340         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
1341         family of functions and other sources,
1342         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
1343         of the PIC18Fxx[28] devices,
1344         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
1345         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
1346         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
1347         _do_cinit function, because the previous failed when local variables
1348         where not placed in the same memory bank,
1349         * device/lib/pic16/libsdcc/char/: various modifications to improve
1350         library performance,
1351         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
1352         information on the new functions of the c library and more...
1353
1354 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1355
1356         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
1357
1358 2005-03-26 Raphael Neider <rneider AT web.de>
1359
1360         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
1361           if condition == CARRY)
1362         * (genCmp): adapted to new genSkipc semantics
1363         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
1364           on rIfx (genCmp was broken)
1365
1366 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1367
1368         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
1369         * src/z80/main.c (_keywords[]),
1370         * src/SDCCglobal.h (struct options),
1371         * src/SDCC.y,
1372         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
1373         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
1374         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
1375         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
1376         always available in leading double underscore form. The C99 support is
1377         mostly missing, but it's a start.
1378         * support/regression/tests/bug-227710.c: fixed nonconforming use of
1379         reserved identifier "__data".
1380
1381 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
1382
1383         * src/mcs51/peeph.def: fixed bug 1170013
1384
1385 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
1386
1387         * device/include/mcs51reg.h: fixed bug 842007
1388
1389 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1390
1391         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
1392         last time.
1393
1394 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1395
1396         * src/port.h (struct PORT),
1397         * src/avr/ralloc.c (avr_assignRegisters),
1398         * src/avr/main.c,
1399         * src/ds390/ralloc.c (ds390_assignRegisters),
1400         * src/ds390/main.c,
1401         * src/hc08/ralloc.c (hc08_assignRegisters),
1402         * src/hc08/main.c,
1403         * src/mcs51/ralloc.c (mcs51_assignRegisters),
1404         * src/mcs51/main.c,
1405         * src/pic/ralloc.c (pic14_assignRegisters),
1406         * src/pic/main.c,
1407         * src/pic16/ralloc.c (pic16_assignRegisters),
1408         * src/pic16/main.c,
1409         * src/xa51/ralloc.c (xa51_assignRegisters),
1410         * src/xa51/main.c,
1411         * src/z80/ralloc.c (z80_assignRegisters),
1412         * src/z80/ralloc.h,
1413         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
1414         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
1415         * src/SDCCcse.h,
1416         * src/SDCCdflow.c (computeDataFlow),
1417         * src/SDCCdflow.h,
1418         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
1419         * src/SDCCloop.h,
1420         * src/SDCCcflow.c (*),
1421         * src/SDCCcflow.h,
1422         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
1423         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
1424         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
1425         immedDom() returning wrong block; probably fixes bug #1160833)
1426
1427 2005-03-20 Borut Razem <borut.razem AT siol.net>
1428
1429         * support/scripts/inc2h.pl: WIN32 port
1430
1431 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
1432
1433         * device/lib/makefile.in: added abs.c and labs.c
1434
1435 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
1436
1437         * device/include/stdint.h: added
1438         * device/lib/abs.c: added
1439         * device/lib/labs.c: added
1440         * device/include/stdlib.h: added abs() and labs() prototypes
1441         * device/lib/libsdcc.lib: added abs and labs
1442         * device/include/float.h,
1443         * device/lib/_fsmul.c,
1444         * device/lib/printf_fast.c,
1445         * device/lib/printf_tiny.c: updated comments
1446
1447 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1448
1449         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1450         bug #1164313
1451
1452 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1453
1454         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1455         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1456
1457 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1458
1459         * device/lib/printf_large.c: removed inline assembly for portability and
1460           readability. Use printf_fast if speed or size are more important.
1461         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1462         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1463
1464 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1465
1466         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1467         prevent compiler warning
1468
1469 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1470
1471         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1472         moved to level 0 and declared as static. Also they are explicit
1473         placed in access bank. This was necessery because some times they
1474         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1475         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1476         optimizations. Currently only compare to unsigned char is implemented,
1477         * src/pic16/gen.c: added fReturnIdx array,
1478         * (struct resolvedIfx) is moved to gen.h and made public,
1479         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1480         * (aopForSym): added an optimization to directly store in stack of
1481         the operand of a SEND iCode,
1482         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1483         but as registers instead (AOP_REG) using the fReturnIdx array,
1484         * (pic16_freeAsmop): remove the freed register from the
1485         _G.sregsAlloc field,
1486         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1487         a compare of 'WREG',
1488         * (pic16_popGetTempRegCond): changed function prototype, now
1489         function takes also a bitVector argument v which holds the current
1490         set of registers that are allocated for stack access by aopForSym,
1491         registers allocated in aopForSym for accessing stack symbols are not
1492         any more part of the functions usedRegs field,
1493         * (genCall): some times aopOp is called for a stack variable to be
1494         send, aopForSym might perform the push, if this is true make sure
1495         that genCall doesn't push the variable twice by testing _G.resDirect,
1496         * (genFunction): changed testing for unspecified interrupt number
1497         from 256 to INTNO_UNSPEC,
1498         * modified selection scheme of frame pointer generation. Previously
1499         if function did use local registers a frame pointer was generated,
1500         now a frame pointer is generated only if function has arguments
1501         (that need PLUSW2 register access), or has stack arguments, or the
1502         compiler is not instructed to omit the frame pointer,
1503         * (genEndFunction): before restoring local registers that were saved
1504         in the function preamble, also restore the registers that *might*
1505         have been allocated for stack access,
1506         * (genRet): removed some old comments,
1507         * (genCmp, the active (RN's) version): added a call to the
1508         pic16_genCmp_special function to perform the compare with a more
1509         robust and optimized way,
1510         * (genInline): a feature has been added in inline code generation,
1511         which allows a wildcard variable substitution when writing inline
1512         assembly. Code is incomplete and experimental therefore undocumented,
1513         * (genCast): changed order of aopOp for result and right to allow
1514         aopForSym to directly load the result if possible,
1515         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1516         perform an optimized compare on some selected special occasions,
1517         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1518         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1519         generate an IVT any more,
1520         * src/pic16/main.c (pic16_optionsTable): added command line option
1521         --optimize-cmp,
1522         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1523         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1524         macros,
1525         * src/pic16/NOTES: Raphael Neider added in list of active developers
1526         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1527         jumptable_end to prevent bug #,
1528         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1529         inCond and outCond fields,
1530         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1531         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1532         turn off register spilling,
1533         * (packRegsForOneUse): synced with other ports' versions although it
1534         is not used currently,
1535         * (pic16_packRegisters): added an optimization while reading
1536         structure bitfields, some registers may be saved (malloc code is
1537         decreased by 80 bytes)
1538
1539 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1540
1541         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1542         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1543         this can be optimized more?
1544
1545 2005-03-10 Raphael Neider <rneider AT web.de>
1546
1547         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1548           genNearPointerGet): (hopefully) fixed access to bitfields via
1549           pointers (p->bitN = x; and x = p->bitN; failed)
1550
1551 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1552
1553         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1554
1555 2005-03-09 Raphael Neider <rneider AT web.de>
1556
1557         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1558
1559 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1560
1561         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1562         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1563           (regTypeNum): set REG_BIT type if necessary
1564         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1565         * support/regression/tests/critical.c: check bug 1144613
1566
1567 2005-03-02 Raphael Neider <rneider AT web.de>
1568
1569         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1570
1571 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1572
1573         * src/avr/ralloc.c (serialRegAssign),
1574         * src/ds390/ralloc.c (serialRegAssign),
1575         * src/hc08/ralloc.c (serialRegAssign),
1576         * src/mcs51/ralloc.c (serialRegAssign),
1577         * src/pic/ralloc.c (serialRegAssign),
1578         * src/pic16/ralloc.c (serialRegAssign),
1579         * src/xa51/ralloc.c (serialRegAssign),
1580         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1581
1582 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1583
1584         * src/SDCCast.c (decorateType): fixed bug 1124787
1585
1586 2005-02-20 Hubert Sack <sack AT digiplan.de>
1587         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1588
1589         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1590         patch #1121755
1591
1592 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1593
1594         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1595         to keep the correct label reference count when adding/removing references
1596         to labels. A peephole file using this is appended to patch #1144962.
1597
1598 2005-02-14 Raphael Neider <rneider AT web.de>
1599
1600         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1601         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1602         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1603           retrievals of result operand's value on assignment
1604
1605 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1606
1607         * device/include/pic16/string.h: modified prototype for memccpy()
1608         to memccpy(void *, void *, char, size_t)
1609         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1610         check whether to omit frame pointer or not,
1611         * (genInline): convert all occurences of "\n" to LF in inline
1612         assembler blocks, this helps formatting the inline text,
1613         * (pic16_loadFSR0): modified prototype,
1614         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1615         removed some 8051 legacy code,
1616         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1617         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1618         before allocating temporary registers in functions,
1619
1620 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1621
1622         * support/regression/tests/bitvars.c: corrected the "fix"
1623
1624 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1625
1626         * support/regression/tests/bitvars.c,
1627         * support/regression/tests/bitwise.c,
1628         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1629
1630 2005-02-10 Raphael Neider <rneider AT web.de>
1631
1632         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1633           different size for Alpha
1634         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1635
1636 2005-02-09 Raphael Neider <rneider AT web.de>
1637
1638         * src/SDCC.lex(doPragma) : save and restore warning options as well
1639           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1640         * have #pragma less_pedantic set the errorlevel to WARNING
1641           (fixes #1117001)
1642         * (cloneOptimize) : fixed wrong malloc's size
1643         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1644           facilitate correct handling of #pragma (save|restore)
1645
1646 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1647
1648         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1649
1650 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1651
1652         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1653
1654 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1655
1656         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1657
1658 2005-02-02 Raphael Neider <rneider AT web.de>
1659
1660         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1661         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1662         * (pic16_storeForReturn): fixed to allow returning function pointers
1663         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1664         * device/include/pic16/{stddef.h,stdbool.h}: added
1665
1666 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1667
1668         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1669
1670 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1671
1672         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1673         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1674          appeared to be required
1675
1676 2005-01-31 Borut Razem <borut.razem AT siol.net>
1677
1678         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1679           include/mcs51 and include/z80 directories to the package
1680
1681 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1682
1683         * src/hc08/gen.c (genFunction): fixed bug #1112752
1684
1685 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1686
1687         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1688
1689 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1690
1691         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1692
1693 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1694
1695         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1696
1697 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1698
1699         * device/include/c8051fxxx.h: removed these 6 files
1700         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1701
1702 2005-01-26 Raphael Neider <rneider AT web.de>
1703
1704         * src/pic16/gen.c (genAssign): fixed assignment from longs
1705           in codespace (were cut to three bytes)
1706         * (genDummyRead): implemented (except for CODESPACE...),
1707           fixed bug #1108575
1708         * src/pic16/glue.c (emitStatistics): beautified
1709         * device/lib/pic16/libm/Makefile: added include path
1710
1711 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1712
1713         * src/z80/gen.c (aopPut): fixed bug #1103902
1714
1715 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1716
1717         * device/lib/expf.c: fixed bug #1095792
1718
1719 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1720
1721         * device/lib/pic16/libm: added Math library sources
1722
1723 2005-01-24 Raphael Neider <rneider AT web.de>
1724
1725         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1726           to enable upcast to pCodeOpReg2 (there is no type tag to
1727           differenciate the two and pic16_popGet2p cast into PCOR2)
1728         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1729           (sizeof(sectNames) changed to sizeof(sectName))
1730           Both patches fix segfaults under MinGW.
1731
1732 2005-01-23 Raphael Neider <rneider AT web.de>
1733
1734         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1735           Safe_[mc]?alloc()'ed variables
1736         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1737           of (byte sized) temporaries (assign them to WREG for now)
1738         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1739           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1740           this might fix SIGSEGVs on MinGW...
1741         * src/SDCCopt.c (killDeadCode): restored original behaviour
1742           (volatile operands might get thrown away though)
1743
1744 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1745
1746         * src/pic16/gen.c: fixed bug #1106975,
1747         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1748         pointer update, INTCON is saved, global interrupts are disabled and
1749         restored after updateing TOS.
1750         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1751         * added function attribute 'shadowregs' to take advantage of shadow
1752         registers,
1753         * added function attribute 'wparam' as an alternative to the wparam
1754         pragma,
1755         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1756         user declares a non-ISR function as 'shadowregs',
1757         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1758
1759 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1760
1761         * .version: bumped version number to 2.4.8
1762         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1763         pic16 port,
1764         * device/lib/pic16/libio/i2c/: I2C module support library,
1765         * device/include/pic16/i2c.h: I2C support library header,
1766         * device/lib/pic16/libc/stdio/: standard IO support sources,
1767         * (printf_small.c): printf_small() source, supports float print,
1768         * (printf_tiny.c): printf_tiny() source, does not support floats,
1769         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1770         enable global optimizations for entire library source, other
1771         Makefiles in the source tree are also modified to reflect this,
1772         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1773         function,
1774         * doc/sdccman.lyx: updated to reflect new changes,
1775         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1776         sym->onStack if-case,
1777         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1778         sbit, idata, _idata, xdata, _xdata,
1779         * added pragma library, to link an external library, (see doc),
1780         * removed command line options, --pomit-config-words, --pomit-ivt,
1781         --pleave-reset-vector,
1782         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1783         when calling assembler to reflect memory model used, also define
1784         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1785         reflect stack model used,
1786         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1787         on stack return NULL,
1788
1789 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1790
1791         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1792           of the operands is volatile. Fixes #1020220
1793
1794 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1795
1796         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1797         * (OptimizeRegUsage): make sure that there is really no other flow where
1798           the first pCode is used
1799
1800 2005-01-22 Raphael Neider <rneider AT web.de>
1801
1802         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1803           to fix #1106967 (pCode->seq are not set up correctly)
1804
1805 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1806
1807         * src/SDCCglue.c (glue): make sure code area is declared before the
1808         static initialization area.
1809
1810 2005-01-21 Raphael Neider <rneider AT web.de>
1811
1812         * device/lib/Makefile.in: fixed test for pic16 install dir
1813         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1814           optimizations
1815         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1816           added --optimize-goto compiler switch and pragma wparam documentation
1817         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1818         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1819           and PRODH closing bug #1071770 (peephole optimizer)
1820
1821 2005-01-19 Raphael Neider <rneider AT web.de>
1822
1823         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1824           cmdLine buffers (used when calling sdcpp...) are large enough
1825           (MAX_PATH=256 truncates arguments leading to system halts when
1826           used in MinGW...)
1827         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1828         * (genUminus): rewritten to for efficiency
1829         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1830           used uninitialized in some cases)
1831         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1832           copy the third byte from the int -- now assumes 0x80 (data memory)
1833         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1834           operands (genAddLit expects the iCode's operands to swapped as
1835           well), fixed leftover bytes (crashed for short left operands)
1836         * (pic16_genMinusDec): performance improvements, removed false
1837           PIC14 emitSKPNCs
1838         * (pic16_genMinus): fixed to cope with differently sized operands
1839         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1840           for --obanksel > 1
1841         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1842         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1843           new banksel optimization
1844         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1845           analysis for temporary registers (segfaults...)
1846         * src/pic16/peeph.def: added rule
1847
1848 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1849
1850         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1851         which converts a float number to its ASCII representation
1852         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1853         functions to convert the fractional and integer part of a float to ASCII,
1854         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1855         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1856         ram
1857         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1858         _STATMEM macros,
1859         * device/include/pic16/adc.h: added GPL info,
1860         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1861         a pCodeOp as tested operand,
1862         * (genNearPointerGet): optimized bit testing, does not use
1863         intermediate register for bit value, test directly instead with
1864         BTFSS, BTFSC, works only for single bits,
1865         * (genpic16Code): dump the name of the iCode in the asm,
1866         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1867         renamed to pic16_decodeOp,
1868         * (serialRegAssign): do not allocate a temporary register for iCode
1869         sequences that test a single bit for 1/0
1870
1871 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1872
1873         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1874         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1875         access stack and frame pointers. They are initially assigned to
1876         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1877         accessing SFRs. Updated all occurences of modification of stack or
1878         frame pointer in gen.c and pcode.c,
1879         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1880         assigning of a literal value to pointers,
1881         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1882         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1883         selected
1884
1885 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1886
1887         * doc/sdccman.lyx: update documentation about stack pragma, added
1888         some info for stack memory models
1889
1890 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1891
1892         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1893
1894 2005-01-08 Raphael Neider <rneider AT web.de>
1895
1896         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1897           udata sections to fix bug #1097823
1898
1899 2005-01-05 Raphael Neider <rneider AT web.de>
1900
1901         * src/pic16/gen.c (genGenericShift): added handling of differently
1902           sized left operand and result
1903
1904 2005-01-04 Raphael Neider <rneider AT web.de>
1905
1906         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1907         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1908           to hold the condition bit)
1909         * added new version of genCmp (old code available via #define)
1910         * added new version of genShiftLeft/genShiftRight in a generic
1911           way, now supports shifting by negative values
1912         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1913           shiftCount (expected by genGenericShift)
1914         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1915         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1916           dump
1917         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1918           is an invalid literal too...)
1919
1920 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1921
1922         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1923         from Raphael Neider,
1924         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1925         for 8-bit literals. This fixes some literal operands which are sign
1926         extended to 16-bits ints when instruction needs only 8-bits.
1927
1928 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1929
1930         * device/lib/logf.c: added mcs51 assembly version
1931         * device/lib/expf.c: added mcs51 assembly version
1932         * device/lib/_logexpf.c: new shared asm code for expf and logf
1933         * device/include/math.h: add defines for assembly math library
1934         * device/lib/Makefile.in: build new _logexpf.c
1935         * device/lib/libfloat.lib: use new _logexpf.c
1936
1937 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1938
1939         * src/pic/device.c
1940         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1941           device types which have less than 0x7f registers.
1942
1943 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1944
1945         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1946
1947 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1948
1949         * device/lib/printf_fast.c: only build on supported arch.
1950         * device/lib/printf_tiny.c: only build on supported arch.
1951         * device/lib/printf_fast_f.c: only build if asm float lib
1952         * device/lib/_fsget1arg.c: only build if asm float lib
1953         * device/lib/_fsget2args.c: only build if asm float lib
1954         * device/lib/_fsnormalize.c: only build if asm float lib
1955         * device/lib/_fsreturnval.c: only build if asm float lib
1956         * device/lib/_fsrshift.c: only build if asm float lib
1957         * device/lib/_fsswapargs.c: only build if asm float lib
1958         * device/include/stdio.h: don't provide print_fast,
1959           print_fast_f, print_tiny prototypes if --xstack used
1960
1961 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1962
1963         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1964         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1965           to the SOURCES
1966
1967 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1968
1969         * device/lib/printf_fast_f.c: same as printf_fast, but
1970           with floating point enabled
1971         * device/lib/printf_fast.c: minor tweaks
1972         * device/include/stdio.h: add printf_fast_f
1973
1974 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1975
1976         * src/SDCCmain.c: make --float-reent default for mcs51
1977         * device/lib/_fsadd.c: added mcs51 assembly version
1978         * device/lib/_fssub.c: added mcs51 assembly version
1979         * device/lib/_fsmul.c: added mcs51 assembly version
1980         * device/lib/_fsdiv.c: added mcs51 assembly version
1981         * device/lib/_fseq.c: added mcs51 assembly version
1982         * device/lib/_fsneq.c: added mcs51 assembly version
1983         * device/lib/_fsgt.c: added mcs51 assembly version
1984         * device/lib/_fslt.c: added mcs51 assembly version
1985         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1986         * device/lib/Makefile.in: add _fscmp to build
1987         * device/lib/libfloat.lib: add _fscmp to build
1988
1989 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1990
1991         * device/lib/_fs2slong.c: added mcs51 assembly version
1992         * device/lib/_fs2sint.c: added mcs51 assembly version
1993         * device/lib/_fs2schar.c: added mcs51 assembly version
1994         * device/lib/_fs2ulong.c: added mcs51 assembly version
1995         * device/lib/_fs2uint.c: added mcs51 assembly version
1996         * device/lib/_fs2uchar.c: added mcs51 assembly version
1997         * device/lib/_slong2fs.c: added mcs51 assembly version
1998         * device/lib/_sint2fs.c: added mcs51 assembly version
1999         * device/lib/_schar2fs.c: added mcs51 assembly version
2000         * device/lib/_ulong2fs.c: added mcs51 assembly version
2001         * device/lib/_uint2fs.c: added mcs51 assembly version
2002         * device/lib/_uchar2fs.c: added mcs51 assembly version
2003         * device/include/float.h: added #define to select asm vs c
2004
2005 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
2006
2007         * device/lib/printf_fast.c: improvements to float output
2008         * device/include/float.h: add defines for assembly float library
2009         * device/lib/_fsget1arg.c: receive 1 float arg
2010         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
2011         * device/lib/_fsnormalize.c: normalize a float
2012         * device/lib/_fsreturnval.c: return float, various helper routines
2013         * device/lib/_fsrshift.c: right shift a float's mantissa
2014         * device/lib/_fsswapargs.c: swap 2 floats
2015         * device/lib/Makefile.in: build these 6 new files for mcs51
2016         * device/lib/libfloat.lib: add these 6 files to the library
2017
2018 2004-12-26 Borut Razem <borut.razem AT siol.net>
2019
2020         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
2021           built by gcc 3.4.2
2022
2023 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
2024
2025         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
2026           and fully reentrant and register bank neutral.
2027         * device/lib/printf_fast.c: added float (not enabled by default),
2028           added compact/slower integer (also not enabled by default),
2029           improved size/speed of fast integer code, other minor changes
2030         * device/include/stdio.h, device/lib/Makefile.in,
2031           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
2032
2033 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
2034
2035         * src/pic16/pcode.c: declaring variables other than at the start of a
2036           block is not supported in C by VC6.
2037
2038 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
2039
2040         * applied a previous patch from Raphael Neider that wasn't included
2041         in the previous commits, which fixes infinite loops within jumptable
2042         improvements,
2043         * made some fixes that previous patches introduced
2044
2045 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
2046
2047         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
2048         that fixes an issue with AOP_PCODE asmop's offset,
2049         * (pic16_popCopyReg): update instance field too,
2050         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
2051         function of pic port,
2052         * (genCmp, genAnd, genAssign),
2053         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
2054
2055 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
2056
2057         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
2058         variables initial values to idata section,
2059         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
2060         variables in some functions. This utilizes parmBytes field of iCode
2061         structure to hold the offset of the variable in stack. (might be
2062         able to use the stack field too?)
2063         * applied patch from Raphael Neider # ### , # ###
2064         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
2065         variable initial values in idata section,
2066         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
2067         for static variables with initial value
2068         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
2069         applied fix in while loop from Raphael Neider.
2070
2071 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
2072
2073         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
2074         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
2075         * src/ds390/ralloc.c (serialRegAssign): spill bits
2076         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
2077         * support/Util/SDCCerr.c,
2078         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
2079         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
2080         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
2081
2082 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
2083
2084         * device/include/sdcc-lib.h: inserted LGPL, added includes
2085           asm/ds390/features.h and asm/mcs51/features.h
2086         * device/include/asm/default/features.h,
2087         * device/include/asm/gbz80/features.h,
2088         * device/include/asm/z80/features.h: added empty _AUTOMEM
2089           and _STATMEM
2090         * device/include/asm/ds390/features.h,
2091         * device/include/asm/mcs51/features.h: added files with defines for
2092           _AUTOMEM and _STATMEM indicating automatic and static storage class
2093         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
2094         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
2095         * src/SDCCicode.c (geniCodeCast),
2096         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
2097         * src/SDCCloop.c (loopInduction): removed unused variable lr
2098         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
2099           to convertToFcall to include char modulo (RFE 1065037), added check
2100           if left operand is unsigned and use abs of literal value
2101         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
2102           as it doesn't work after conversion from peephole.def to peephole.rul
2103         * src/mcs51/gen.c (toBoolean): added check for size,
2104           (genModOneByte): optimized code for signed char modulo a literal
2105           power of 2 (thanks to Hubert Sack),
2106           (genRRC): removed unnecessary "clr c",
2107           (genRLC): replaced "add a,acc" with cheaper "rlc a"
2108         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
2109           jump optimization,
2110           swapped rules 256.c and 256.d,
2111           extended 256.d by using new multiple checks (thanks Erik),
2112           added rules 256.e and 256.f,
2113           updated rule 261.a and 261.b to new generated code
2114         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
2115
2116 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2117
2118         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
2119           induction related bugs, including first part of bug #1074377
2120
2121 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
2122
2123         * applied patch from bug-report #1076292,
2124         * applied patches for genAnd and Goto-optimizations for Raphael
2125         Neider,
2126         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
2127         dump a less iCode information,
2128         * src/pic16/device.h (pic16_options_t): added field debgen,
2129         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
2130         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
2131         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
2132         puclic,
2133         * (various functions): added macros FENTRY and FENTRY2 to functions,
2134         to emit function prologue,
2135         * (various functions): fixed indentation,
2136         * (genNearPointerGet): fixed loading of FSR0,
2137         * (genPackBits): applied patch from Raphael Neider to fix updating
2138         of FSR0 and touching only the modified bits,
2139         * src/pic16/genarith.c (various functions): added macros FENTRY to
2140         emit function prologue in comments,
2141         * src/pic16/pcode.h: added functions debugf2, debugf3,
2142         * src/pic16/ralloc.c: partial fix for packForPush caused
2143         segmentation fault,
2144
2145 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2146
2147         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
2148           <stsp AT users.sourceforge.net> with reversed byte order
2149         * support/regression/tests/rotate.c: added (ds390 skips some tests)
2150
2151 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2152
2153         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
2154           bug #1074377
2155         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
2156         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
2157
2158 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2159
2160         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
2161
2162 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2163
2164         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
2165           conditions,
2166           (setFromConditionArgs): friendly operand parser for peephole rules,
2167           (operandBaseName, operandsNotRelated): new peephole condition
2168           "operandsNotRelated" -- similar to "operandsNotSame", but takes
2169           architecture specific register naming into account, handles n-way
2170           comparisons, and supports quoted literals
2171         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
2172
2173 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2174
2175         * src/mcs51/peeph.def: fixed bug #1076940
2176
2177 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
2178
2179         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
2180
2181 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2182
2183         Adding support for replacing ljmps with sjmps in jumptables
2184         generated for switch statements. For now you need to set the
2185         environment variable SDCC_SJMP_JUMPTABLE to enable this.
2186         Now 4 algorithms for mcs51 jumptable generation are used:
2187         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
2188         addresses loaded pc-relative for up to 112 cases and stack-pushing
2189         target addresses loaded with offset from dptr for up to 256 cases.
2190
2191         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
2192         * src/mcs51/main.c: adapted constants for switch table generation
2193         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
2194
2195 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
2196
2197         * device/lib/printf_large.c (_print_format): fixed bug 1073386
2198         * support/regression/tests/bug1057979.c: added test for bug 1073386
2199
2200 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2201
2202         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
2203         compilers
2204
2205 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
2206
2207         * src/pic16/device.h,
2208         * src/pic16/genarith.c,
2209         * src/pic16/glue.c,
2210         * src/pic16/main.c,
2211         * src/pic16/pcode.c: applied patches #1068154 and #1070213
2212
2213 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
2214
2215         Large cummulative patch for pic16 port.
2216         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
2217         to call when a stack overflow occurs,
2218         * (malloc.h): added CVS Id tag,
2219         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
2220         variable,
2221         * added libc directory. The current version of LibC contains string
2222         functions, ctype functions and macros and some functions of the
2223         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
2224         be extensively tested in the future. Standard disclaimer here.
2225         Library is not automatically build yet. But one can build it by
2226         invoking 'make' inside the libc directory.
2227         * added ADC library under libio. Preliminary version yet.
2228
2229         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
2230         * src/pic16/gen.c (aopForRemat): asmop size is filled by
2231         aopForRemat() now and not by pic16_aopOp(),
2232         * (pic16_popGetTempReg): removed warning messgae when allocating
2233         temporary registers, its a buggy feature and will be removed,
2234         * (pic16_popGet): set register instance field in AOP_CRY,
2235         * (pic16_outBitC): fixed for results in size greater than 1,
2236         * (genUminusFloat): fixed for pic16, ported code from mcs51,
2237         * (pic16_storeForReturn): optimized return of 0,
2238         * (genCmp): experimental code for new genCmp which uses PIC18's
2239         special compare&skip instructions. Initial tests fail some times
2240         with variables grater than 1 byte in size, so new code is disabled,
2241         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
2242         a single bit,
2243         * (genCast): began a fix to optimize the casting of a bit to another
2244         bit, now assigning a bitfield to another bitfield will fail, sorry,
2245         * src/pic16/main.c: disabled the use of lr-support feature,
2246         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
2247         * added some function prototypes, added function _debugf prototype,
2248         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
2249         bits with offset (case PO_GPR_BIT),
2250         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
2251         command line,
2252         * (isBankInstruction): modified to return 0 for no banking instruction,
2253         and 1 for banking instruction,
2254         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
2255         caused stop processing pCodes after a inline assembly block,
2256         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
2257         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
2258         registers when it shouldn't,
2259         * src/pic16/ralloc.c (allocReg): add preliminary support for
2260         supporting a limited set of temporary registers,
2261
2262 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2263
2264         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
2265           genDataPointerSet): ensure assignments always copy in MSB to LSB
2266           order,
2267           (loadRegFromAop): recognize CLRH optimization,
2268           (genFunction): optimize RECEIVE iCodes in reentrant functions
2269
2270 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2271
2272         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
2273           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
2274           selected.
2275         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
2276         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
2277           contiguous with data
2278
2279 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2280
2281         * device/lib/_gptrget.c (_gptrget),
2282         * device/lib/_gptrgetc.c (_gptrgetc),
2283         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
2284           instead of sjmp to ret
2285         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
2286           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
2287
2288 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
2289
2290         * .version: bumped version to 2.4.7
2291         * device/lib/_gptrget.c (_gptrget): is now _naked
2292         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
2293         * device/lib/_gptrput.c (_gptrput): is now _naked
2294         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
2295           (createFunction): fixed xstack
2296         * src/SDCCglue.c (emitMaps): set allocation required for bit area
2297         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
2298           or bit either,
2299           (geniCodeCritical): store original interrupt state in an iTemp bit
2300           var unless stack-auto
2301         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
2302         * src/SDCCmain.c (setIncludePath): added include/target to search path
2303         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
2304         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
2305           prototype,
2306           (processFuncArgs): put bit vars in bit area
2307         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
2308           unsaveRBank): fixed xstack,
2309           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
2310           (genFunction, genEndFunction): fixed xstack,
2311           (genAssign): optimization don't walk backwards through mem
2312         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
2313         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
2314         * support/regression/Makefile: also make library (for stack-auto) when
2315           making "all" and added "test-mcs51-xstack-auto"
2316         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
2317         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
2318         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
2319         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
2320         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
2321           make-library by MAKE_LIBRARY
2322         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
2323           regression tests for xstack
2324         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
2325         * support/regression/tests/critical.c: test for critical on mcs51
2326
2327 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2328
2329         * support/regression/ports/ucz80/spec.mk: use include and lib files from
2330           built version of sdcc instead of installed version
2331
2332 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
2333
2334         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
2335         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
2336           vprintf.c now
2337         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
2338         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
2339           WARNING: remove device/lib/build/z80/printf.o by hand when
2340           updating from previous build!
2341         * device/lib/z80/printf.c: updated comment
2342         * support/regression/tests/bug1057979.c: test all ports now
2343         * support/regression/tests/bug1065458.c: file added
2344
2345 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2346
2347         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
2348           *_start and *_end symbols for static functions
2349
2350 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
2351
2352         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
2353           and search crt0.o in all library paths,
2354           (setIncludePath): proper handling of --nostdinc,
2355           (setLibPath): proper handling of --nostdlib
2356         * support/regression/Makefile,
2357         * support/regression/ports/ds390/spec.mk,
2358         * support/regression/ports/gbz80/spec.mk,
2359         * support/regression/ports/hc08/spec.mk,
2360         * support/regression/ports/mcs51/spec.mk,
2361         * support/regression/ports/mcs51-large/spec.mk,
2362         * support/regression/ports/mcs51-stack-auto/spec.mk,
2363         * support/regression/ports/z80/spec.mk: use include and lib files from
2364           built version of sdcc instead of installed version
2365         * doc/sdccman.lyx: fixed typo in --nostdinc
2366
2367 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2368
2369         * src/pic/pcode.c,
2370         * src/pic/device.c,
2371         * src/pic/ralloc.c,
2372         * src/pic/gen.c : added support to generate code for struct bit fields.
2373
2374 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
2375
2376         * as/xa51/xa_version.h,
2377         * device/include/errno.h,
2378         * device/include/regc515c.h,
2379         * device/lib/_itoa.c,
2380         * device/lib/_ltoa.c,
2381         * device/lib/ser_ir_cts_rts.c,
2382         * sim/ucsim/xa.src/glob.cc,
2383         * sim/ucsim/xa.src/inst_gen.cc,
2384         * sim/ucsim/xa.src/xa_bit.cc,
2385         * sim/ucsim/xa.src/xa_sfr.cc,
2386         * sim/ucsim/z80.src/inst_dd.cc,
2387         * sim/ucsim/z80.src/inst_fdcb.cc,
2388         * support/scripts/keil2sdcc.pl,
2389         * src/pic16/pic16.dsp,
2390         * src/pic16/pic16a.dsp: corrected cvs line endings
2391         * device/lib/printf_large.c: fixed bug 1057979
2392         * src/pic16/gen.c: fixed non-C standard code
2393         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
2394         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
2395         * support/regression/ports/mcs51/support.c: reload T1 asap
2396         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
2397           pdata use and clear idata startup behaviour
2398         * support/regression/tests/bug1057979.c: added
2399
2400 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
2401
2402         * device/examples/ds390/ow390/ad26.h,
2403         * device/examples/ds390/ow390/cnt1d.h,
2404         * device/examples/ds390/ow390/crcutil.c,
2405         * device/examples/ds390/ow390/ownet.h,
2406         * device/examples/ds390/ow390/owsesu.c,
2407         * device/examples/ds390/ow390/swt12.h,
2408         * device/examples/ds390/ow390/swtoper.c,
2409         * device/examples/ds390/ow390/temp10.h,
2410         * device/examples/ds390/ow390/thermodl.c,
2411         * device/examples/ds390/tinitalk/tinitalk.dsp,
2412         * device/examples/ds390/tinitalk/tinitalk.dsw,
2413         * device/examples/mcs51/clock/hw.h,
2414         * device/examples/mcs51/simple2/go.bat,
2415         * device/examples/serialcomm/windows/serial.h,
2416         * device/examples/xa51/dummy.c,
2417         * device/examples/xa51/hello.c,
2418         * device/include/80c51xa.h,
2419         * device/include/at89x051.h: corrected cvs line endings
2420
2421 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
2422
2423         * src/pic16/main.c (options): added command line --gstack, to trace
2424         stack over/under flows,
2425         * added pragma 'wparam' to allow passing first byte of function
2426         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
2427         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
2428         call to __gstack_test function and sets up the symbol as extern,
2429         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
2430         * popaop): added call to pic16_testStackOverflow,
2431         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
2432         wparamList list,
2433         * (genCall, genPcall): now all parameters are passed via stack
2434         except in functions that are pass to wparam pragma in which WREG is
2435         used too,
2436         * (genPcall): REENTRANT flag is checked to see if variable prototype
2437         contains reentrant keyword, don't call a non-reentrant function, via
2438         a reentrant function pointer or vice versa, functions are never
2439         passed via WREG,
2440         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2441         D.Winkler,
2442         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2443         SIGSEGV when accessing a NULL register stucture,
2444         * (pic16_printGPointerType): modified to handle UPPER modifier for
2445         function initializers, changed prototype of function to simpler one,
2446         * (pic16_printIvalFuncPtr): check to see if function is already
2447         added in externs list,
2448         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2449         optimized a move from W to SFR with a move to the same register
2450         later after a CALL,
2451         * device/lib/pic16/debug: NEW directory, contains debug features
2452         which are enabled when linking with libdebug.lib, currently command
2453         line option --gstack enables stack pointer tracing for over/under
2454         flow, corresponding sources are in debug/gstack
2455
2456 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2457
2458         * doc/sdccman.lyx: updated SDCC version,
2459         * (PIC16 port): update list of command line options,
2460         * src/pic16/device.h (structure pic16_options_t): added field gstack
2461         to enable stack overflow tracing on push/pops,
2462         * src/pic16/device.c (statistics structure): added statistics
2463         structure,
2464         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2465         pic16_dump_int_registers): increase statistics counters for each
2466         * variable which is encountered
2467         * (pic16_dump_usection): emit each .udata variable to its own udata
2468         section,
2469         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2470         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2471         parameters via stack, otherwise use old scheme,
2472         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2473         assembler output file,
2474         * src/pic16/main.c: added command line options --gstack to enable
2475         push/pop tracing for stack overflow,
2476         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2477         instructions): added size of each instruction,
2478         * (pic16_countInstruction): estimate size of instructions in
2479         the_pFile list, inline assembly blocks are not counted,
2480         * (pic16_FixRegisterBanking): trace previous register usage, when
2481         banksel optimizations is greater than 0, don't emit a redudant
2482         banksel directive,
2483
2484 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2485
2486         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2487         * src/pic16/ralloc.c : applied same fix for pic16.
2488         * src/pic/gen.c : tidied it up a little.
2489
2490 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2491
2492         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2493         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2494
2495 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2496
2497         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2498
2499 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2500
2501         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2502         non-reentrant function __modsint in the interrupt function (thus
2503         corrupting math operations during serial I/O)
2504         * device/lib/ser_ir.c: as above, changed buffersize
2505         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2506         256.c,d for zeroing
2507         * doc/Makefile: added option -t for rsync
2508
2509 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2510
2511         * src/SDCCast.h (struct ast),
2512         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2513
2514 2004-10-20 Borut Razem <borut.razem AT siol.net>
2515
2516         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2517         package
2518
2519 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2520
2521         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2522         makefile targets,
2523         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2524         support functions to replace long sequences of MOVFF's from access
2525         bank registers to stack and vice versa,
2526         * src/pic16/device.h: added new field opt_flags, where optimization
2527         flags can be set to enable certain features,
2528         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2529         * pBlock, (genFunction, genEndFunction): surroung loop for
2530         saving/loading used registers in stack with PC_INFO pCodes,
2531         INF_LREGS. Code in between can then be optimized by pCode optimizer
2532         to support function calls,
2533         * (genDataPointerSet): fixed bug which loaded float fields in
2534         structures with corrupt data,
2535         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2536         in a standard way debug info on stderr. Feature used for developing
2537         and debugging only,
2538         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2539         obsolete chunks of code,
2540         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2541         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2542         * pic16/src/pcode.c (pic16_newpCodeInfo,
2543         * (pic16_newpCodeOpLocalRegs),
2544         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2545         feature,
2546         * (pic16_pCodeConstString): printing of the initial value of a
2547         symbol as a comment is inhibited since parsing was already done by
2548         copyStr and output is corrupt,
2549         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2550
2551 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2552
2553         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2554
2555 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2556
2557         * as/mcs51/lkarea.c: removed old K&R style,
2558           (lnksect): changed check on boundary error,
2559           (lnksect2): changed check on boundary error,
2560           (lnksect2): extend XSTK to end of page if size = 1
2561         * as/mcs51/lkmain.c: removed old K&R style,
2562           (Areas51): create l_IRAM symbol
2563         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2564         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2565           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2566         * device/lib/_mullong.c: added version to be compiled with xstack
2567         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2568         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2569         * device/lib/mcs51/crtxstack.asm: fixed comment
2570         * src/SDCCglue.c: maxInterrupts defaults to 0,
2571           (emitMaps): added pdata,
2572           (createInterruptVect): (re)moved default,
2573           (glue): added pdata,
2574           (glue): moved __start__xstack to XSTK with default size 1
2575         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2576           and options.float_rent when options.stackAuto is set,
2577           (linkEdit): only write XDATA_NAME if provided on command line
2578         * src/SDCCmem.h,
2579         * src/SDCCmem.c: added pdata
2580         * src/port.h: added pdata_name to PORT
2581         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2582           (saveRegisters, unsaveRegisters): removed usage of B,
2583           (genMinus): fixed accumulator clash,
2584           (genJumpTab): added comment, this needs another look
2585         * src/mcs51/gen.c: added check for "B in use" paranoia,
2586           added pushB() and popB()
2587         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2588           chance
2589         * src/avr/main.c,
2590         * src/ds390/main.c,
2591         * src/hc08/main.c,
2592         * src/mcs51/main.c,
2593         * src/pic/main.c,
2594         * src/pic16/main.c,
2595         * src/xa51/main.c,
2596         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2597           added PSEG (PAG,XDATA) or NULL to port specifier
2598         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2599         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2600           (_mcs51_genInitStartup): removed __start__xstack equ,
2601           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2602         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2603         * src/z80/gen.c (_rleAppend): fixed warnings
2604         * support/regression/tests/zeropad.c: added pdata test
2605         * .version: bumped to 2.4.6
2606
2607 2004-10-17 Borut Razem <borut.razem AT siol.net>
2608
2609         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2610         as a part of nightly build
2611
2612 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2613
2614         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2615         WREG holds the first byte function parameters,
2616         * (aopForSym): take special case for symbols which are in FARSPACE
2617         but in CODESPACE too,
2618         * (assignResultValue): modified to take into account _G.useWreg,
2619         * (genCall): don't use wreg for parameter passing when function is
2620         declared as reentrant, too, added optimization INCF to stack
2621         pointer when stack parameter count is 1,
2622         * (genFunction, genEndFunction): refurnished and fixed to not using
2623         wreg for passing parameters when function has varargs or is
2624         reentrant, fixed bug with symbol name compare for generating
2625         functions in absolute address,
2626         * (pic16_storeForReturn): refurnished,
2627         * (genCmp): began writing a new version of the function, not ready
2628         yet, therefore it is disabled,
2629         * (genAssign): do not read code memory when assigning a function to
2630         a pointer function,
2631         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2632         array of characters, not pointer,
2633         * (pic16initialComments): in debug mode emit an .ident directive for
2634         the assembler,
2635         * (_process_pragma): emit a new warning type (internal to pic16)
2636         when setting stack to default length, emit a similar warning when
2637         placing a function at absolute address and address is not word aligned
2638         * (_pic16_parseOptions): added 'return TRUE' statement,
2639         * (_pic16_linkEdit): if compiling a source, then add the source's
2640         file object, first in the list of objects to link,
2641
2642 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2643
2644         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2645         * src/pic/main.c : removed VC warning.
2646         * src/pic/gen.c : changed comment.
2647
2648 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2649
2650         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2651         reference to a deprecated symbol _GPTRREG was causing failure to
2652         link. Thanks G. M. Gallant for the info.
2653
2654 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2655
2656         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2657         comments for Bugs item #954788.
2658
2659 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2660
2661         * src/pic16/device.c (pic16_dump_gsection,
2662         * pic16_groupRegistersInSection): handle symbols declared to be in
2663         access bank differently,
2664         * src/pic16/gen.c (struct _G): added field resDirect,
2665         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2666         send values read from stack directly to result and don't allocate
2667         temporary values,
2668         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2669         same registers,
2670         * (pic16_sameRegsOfs): NEW,
2671         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2672         free because they were not allocated from temporary pool,
2673         * pic16_popRegFromString): workaround to fix a problem with
2674         allocating variables twice or never,
2675         * (genGenPointerGet): using PRODL instead of FSR0H,
2676         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2677         instead of FSR0H,
2678         * (genAssign): take advantage of the _G.resDirect flag,
2679         * (genCast): around line 11844, use mov2f instead of directly
2680         MOVFF'ing between operands to account for literal values,
2681         * src/pic16/genutils.c: some new debug functions for gpsim have been
2682         added,
2683         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2684         float with integer part only,
2685         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2686         place variables in access bank
2687         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2688         updated sources to reflect recent changes in gen.c
2689
2690 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2691
2692         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2693         sources that searched for headers in installation path, now the
2694         device/include/pic16 is used,
2695         * src/pic16/glue.c (pic16glue),
2696         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2697         .line directives if not in debug mode, this suppresses assembler's
2698         warnings for ignored directives
2699
2700 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2701
2702         * src/port.h: made reset_regparms prototype void parameter explicit.
2703         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2704         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2705         * doc/sdccman.lyx: documented warning disabling and how to use
2706           printf_large to make it print floats.
2707         * device/include/stdbool.h: NEW
2708         * device/lib/_atof.c,
2709         * device/lib/_divuint.c,
2710         * device/lib/_divulong.c,
2711         * device/lib/expf.c,
2712         * device/lib/printf_large.c,
2713         * device/lib/sincosf.c,
2714         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2715         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2716           a completely reentrant lib.
2717
2718 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2719
2720         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2721         * device/include/pic16/stdio.h: fixed bug with colon
2722
2723 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2724
2725         * device/include/pic16/stdio.h,
2726         * device/include/pic16/stdlib.h,
2727         * device/include/pic16/math.h: NEW
2728         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2729         declared as _naked to reduce overhead
2730         * device/lib/Makefile.in (target port-specific-objects-pic16):
2731         changed * to *.* so to ignore the CVS directory,
2732         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2733         stacked variables back in stack,
2734         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2735         corruption
2736
2737 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2738
2739         * .version: bumped version number to 2.4.5
2740         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2741         * support/Util/SDCCerr.c (messages structure): added entry for
2742         W_POSSBUG2
2743
2744         Large cumulative patch for pic16 port and libraries.
2745         * device/include/pic16/sdcc-lib.h,
2746         * device/include/pic16/stdarg.h,
2747         * device/include/asm/pic16/features.h,
2748         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2749         * device/include/pic16/float.h: changes reentrant keyword with
2750         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2751         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2752         updated target build-libraries to include objects from gptr,
2753         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2754         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2755         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2756         all function headings,
2757         * src/SDCCmain.c: added global parameter userIncDirsSet,
2758         * (parseCmdLine): when option -I is encountered add directory to
2759         userIncDirsSet too,
2760         * src/version.awk: added space between control and long,
2761         * src/pic16/NOTES: added some notes for the port,
2762         * src/pic16/gen.c: added prototype for mov2fp function,
2763         * (fReturnpic16[]): properly named return value registers,
2764         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2765         * (aopForSym): added code to handle symbols with onStack flag set,
2766         symbols onStack are allocated PTRSIZE bytes,
2767         * (aopFreeAsmop): handles special case where asmops are stack objects,
2768         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2769         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2770         added argument lock to trace flaws in allocating temporary registers
2771         when developing port,
2772         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2773         * (pic16_popRegFromString): reenabled allocating a direct register
2774         from string,
2775         * (assignResultValue): various beautifications,
2776         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2777         referenced function argument,
2778         * (genIpush): reenabled to allow stacked arguments, handles only
2779         ic->parmPush iCodes,
2780         * (genCall, genPcall): major changes to allow for variable argument
2781         functions, fixed a bug with falsely restoring stack pointer after
2782         returning from call,
2783         * (genFunction): pending code for critical function,
2784         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2785         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2786         * (genNearPointerGet): fixed bug with indirect reading, was always
2787         reading from INDF0
2788         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2789         pointers,
2790         * (genAddrOf): rewrote code to take address of a stacked function parameter
2791         * (genCast): fixed casting to generic pointer type,
2792         * src/pic16/gen.h: added AOP_STA,
2793         * (struct asmop): added field stk,
2794         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2795         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2796         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2797         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2798         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2799         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2800         generic pointers,
2801         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2802         and library paths,
2803         * (pic16_port structure): generic pointer size is set to 3,
2804         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2805         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2806         compiler warning,
2807         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2808         operand is an iTemp,
2809
2810 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2811
2812         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2813         * debugger/mcs51/simi.c: addapt new syntax of s51
2814
2815 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2816
2817         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2818         * src/pic16/pcode.c: commented out some calls to free() in order to
2819         fix bug #989576,
2820
2821 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2822
2823         * src/SDCCicode.h,
2824         * src/SDCCicode.c (isiCodeInFunctionCall),
2825         * src/avr/ralloc.c (selectSpil),
2826         * src/pic/ralloc.c (selectSpil),
2827         * src/pic16/ralloc.c (selectSpil),
2828         * src/ds390/ralloc.c (selectSpil),
2829         * src/hc08/ralloc.c (selectSpil),
2830         * src/xa51/ralloc.c (selectSpil),
2831         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2832         stack in the middle of a function call sequence (fixes bug #1020268)
2833         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2834         costs associated with the minimum switch case.
2835
2836 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2837
2838         * src/SDCC.lex: fixed bug #1030549
2839
2840 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2841
2842         * src/SDCCcse.h (struct cseDef),
2843         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2844         over a function call if the CSE is derived from a symbol whose
2845         address has been taken (fixes bug #1029883)
2846         * support/regression/tests/bug-1029883: a new regression test for
2847         this bug
2848
2849 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2850
2851         * src/hc08/gen.c (emitinline): fixed bug #1029778
2852         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2853         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2854         and starts toward RFE #905167)
2855
2856 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2857
2858         * src/pic16/gen.c (mov2f): New function to move an operand to
2859         another without considering if it is a literal or a register,
2860         * (pic16_sameRegs): don't check if they are both AOP_REG,
2861         * (AccRsh): removed andmask=0 lines,
2862         * (genLeftShift): duplicated to be improved in future versions,
2863         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2864         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2865         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2866         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2867         * (insertBankSwitch): fixed inserting banksel directives algorithm
2868         for instructions that follow a skip instruction, this fixes a report
2869         for broken subtraction code generation,
2870         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2871         iCode is a left op, just in case result and right share the same
2872         registers
2873
2874 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2875
2876         * src/hc08/main.c,
2877         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2878         preservation of HX
2879         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2880         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2881         on 2004-09-12; it was buggy
2882
2883 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2884
2885         * src/SDCCsymt.h: removed RESULT_CHECK
2886         * src/SDCCast.c,
2887         * src/SDCCglue.c,
2888         * src/SDCCval.c,
2889         * src/pic/glue.c,
2890         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2891
2892 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2893
2894         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2895         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2896         configuration values no more rejected by compiler, they are assigned
2897         to configuration registers with a warning message instead,
2898         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2899         the for-loop so last conf register is emitted too,
2900         * (_pic16_initPaths): link library libsdcc.lib by default,
2901         * (_hasNativeMulFor): modified test for multiplication according to
2902         Raphael Neider's remarks. Integer multiplication is also done with
2903         support functions,
2904         * device/include/pic16/pic18fregs.h: corrected type error in while
2905         testing and including 18f6720 header file
2906
2907 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2908
2909         * src/pic16/device.h (pic16_options): removed field use_crt,
2910         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2911         until an optimization to handle single bits is added,
2912         * (pic16_loadFSR0): moved before genUnpackBits,
2913         * (genAnd): some white lines removed,
2914         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2915         leave_reset flags in pic16_options when using crt modules,
2916
2917 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2918
2919         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2920           for bugs 898889 & 979599. Also used some safer print instructions.
2921
2922 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2923
2924         * src/pic16/device.h (pic16_options_t): added field use_crt,
2925         crt_name, no_crt,
2926         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2927         catch a probable future bug,
2928         * src/pic16/gen.c: aopIdx function commented out,
2929         * (genAssign): commented out old code which used aopIdx,
2930         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2931         code, added if conditionals to take into account the --use-crt
2932         command line options,
2933         * src/pic16/main.c (pic16_optionsTable): added new command line
2934         options, --use-crt= and --no-crt,
2935         * (_pic16_linkEdit): now the proper crt object is added in the
2936         linker command line except than when --no-crt is specified,
2937         * src/pic16/pcode.c,
2938         * src/pic16/pcode.h: added some structures and functions for a new
2939         optimization scheme to compansate for instruction overhead between
2940         same iCodes, this scheme is currently under development and is not
2941         working in any way,
2942         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2943         to && operator,
2944         * device/lib/pic16/startup/crt0i.c,
2945         * device/lib/pic16/startup/crt0iz.c: added global char variable
2946         __uflags to force the generation of an idata section
2947
2948 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2949
2950         * doc/Makefile,
2951         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2952         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2953
2954 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2955
2956         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2957         Frieder) and clarified the default code optimization mode
2958
2959 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2960
2961         * src/SDCC.lex (doPragma, process_pragma),
2962         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2963         "opt_code_size", and "opt_code_balanced"
2964         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2965         regrouped options by category, added support for category headers
2966         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2967         and "--opt-code-size"
2968         * doc/sdccman.lyx: documented these new options and pragmas
2969         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2970         preference into account
2971
2972 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2973
2974         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2975           geniCodePreDec): Fixed bug 904237 by generating a warning
2976         * src/SDCCerr.h,
2977         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2978
2979 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2980
2981         * src/pic/device.c : When no max ram set validate full memory range.
2982         * src/pic/pcode.c,
2983         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2984
2985 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2986
2987         * device/lib/_gptrget.c,
2988         * device/lib/_gptrput.c: updated comment
2989         * device/lib/calloc.c,
2990         * device/lib/free.c,
2991         * device/lib/malloc.c,
2992         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2993         * src/SDCCcse.c (cseBBlock),
2994         * src/SDCCicode.c (printOperand, geniCodeArray),
2995         * src/SDCCicode.h (struct operand): fixed bug 868103
2996         * support/regression/tests/bug-868103.c: added
2997         * src/SDCCast.c (searchLitOp),
2998         * src/SDCCcse.h (struct cseDef),
2999         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
3000         * src/SDCCicode.h (struct operand),
3001         * src/SDCCsymt.h (struct sym_link),
3002         * src/avr/gen.c (hasInc),
3003         * src/ds390/gen.c (hasInc),
3004         * src/hc08/gen.c (genPlusIncr, hasInc),
3005         * src/mcs51/gen.c (hasInc),
3006         * src/pic16/glue.c (pic16_printIvalChar),
3007         * src/pic16/ralloc.c (regWithIdx),
3008         * src/xa51/gen.c (hasInc) : removed warnings
3009         * src/SDCCast.c (createBlock): added comment ???
3010         * src/hc08/ralloc.c: updated comments
3011
3012 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3013
3014         * doc/sdccman.lyx: updated section on switch statements, added
3015         section about semaphore locking
3016         * doc/Makefile: added option -info for latex2html
3017         * device/lib/_gptrget.c,
3018         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
3019
3020 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3021
3022         * src/pic/device.h,
3023         * src/pic/device.c,
3024         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
3025          maxram is less than 0x100.
3026
3027 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
3028
3029         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
3030
3031 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3032
3033         * src/port.h,
3034         * src/mcs51/main.c,
3035         * src/ds390/main.c,
3036         * src/z80/main.c,
3037         * src/hc08/main.c,
3038         * src/pic/main.c,
3039         * src/pic16/main.c,
3040         * src/avr/main.c,
3041         * src/xa51/main.c
3042         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
3043         a jump table is the best form for a switch statement, including
3044         automatic insertion of missing cases to make the case range
3045         continuous. Developed in collaboration with Frieder Ferlemann.
3046
3047 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3048
3049         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
3050         accumulator result if it needs sign extension
3051
3052 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3053
3054         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
3055
3056 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3057
3058         * device/lib/gbz80/printf.c,
3059         * device/lib/z80/printf.c: removed define for NULL
3060
3061 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
3062
3063         * as/xa51/xa_link.c,
3064         * device/examples/ds390/ow390/ad26.c,
3065         * device/examples/ds390/ow390/cnt1d.c,
3066         * device/examples/ds390/ow390/counter.c,
3067         * device/examples/ds390/ow390/ds2480.h,
3068         * device/examples/ds390/ow390/ds2480ut.c,
3069         * device/examples/ds390/ow390/findtype.c,
3070         * device/examples/ds390/ow390/gethumd.c,
3071         * device/examples/ds390/ow390/owllu.c,
3072         * device/examples/ds390/ow390/ownetu.c,
3073         * device/examples/ds390/ow390/swt12.c,
3074         * device/examples/ds390/ow390/swtloop.c,
3075         * device/examples/ds390/ow390/temp.c,
3076         * device/examples/ds390/ow390/temp10.c,
3077         * device/examples/ds390/ow390/thermo21.c,
3078         * device/examples/ds390/ow390/tinilnk.c,
3079         * device/examples/ds390/ow390/tstfind.c,
3080         * device/examples/serialcomm/windows/serial.cpp,
3081         * device/examples/serialcomm/windows/test_serialcomm.cpp,
3082         * device/include/reg51.h: fixed line endings for cvs
3083
3084 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3085
3086         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
3087         packRegsForAccUse, packRegisters): new accumulator register
3088         packing algorithm
3089         * support/regression/ports/hc08/support.c (_putchar): suppress
3090         warning of unused variable
3091         * src/SDCCicode.c: added SWAP entry to codeTable
3092
3093 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
3094
3095         * device/lib/sprintf.c: forgot to add this file before previous commit
3096
3097 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
3098
3099         * src/pic16/gen.c (genPackBits): added operand right in function
3100         parameters, load result directly if p_type is POINTER (that is
3101         called by genNearPointerSet)
3102         * (genUnPackBits): added operand left in function parameters,
3103         * (genNearPointerGet, genNearPointerSet): prevent the loading of
3104         FSR0 if accessing bitfields,
3105
3106 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
3107
3108         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
3109           _print_format; updated printf, sprintf, vsprintf
3110         * device/include/asm/default/features.h: corrected comment/define
3111         * device/lib/Makefile.in: added sprintf.c
3112         * device/lib/libsdcc.lib: added sprintf module
3113         * device/lib/printf_large.c,
3114         * device/lib/vprintf.c,
3115         * device/lib/sprintf.c: totally refactored printf_large and vprintf
3116           into these 3 files
3117         * support/regression/Makefile: changed ALL_PORTS into a usefull default
3118         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
3119         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
3120           hc08 test
3121         * support/regression/tests/zeropad.c: define idata as data for hc08
3122
3123 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3124
3125         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
3126         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
3127         labels are referenced at least once (even if a reference is not found)
3128         * src/hc08/gen.c (emitcode): set isComment flag for comments
3129         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
3130         loads), rules 6a..6b (optimize jumps to return)
3131
3132 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3133
3134         * device/lib/acosf.c (acosf),
3135         * device/lib/asinf.c (asinf),
3136         * device/lib/atanf.c (atanf),
3137         * device/lib/ceilf.c (ceilf),
3138         * device/lib/cosf.c (cosf),
3139         * device/lib/coshf.c (coshf),
3140         * device/lib/cotf.c (cotf),
3141         * device/lib/fabsf.c (fabsf),
3142         * device/lib/floorf.c (floorf),
3143         * device/lib/log10f.c (log10f),
3144         * device/lib/logf.c (logf),
3145         * device/lib/sinf.c (sinf),
3146         * device/lib/sinhf.c (sinhf),
3147         * device/lib/sqrtf.c (sqrtf),
3148         * device/lib/tanf.c (tanf),
3149         * device/lib/tanhf.c (tanhf),
3150         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
3151         replaced all instances of "reentrant" in the library functions
3152         defined in math.h with this macro.
3153         * support/regression/tests/float_trans.c: reenabled test for hc08
3154
3155 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
3156
3157         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
3158         erroneously deleted
3159
3160 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3161
3162         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
3163         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
3164         multi-byte volatile operands are used
3165         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
3166         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
3167         initialization to area GSINIT0 so that it would always precede
3168         any static initializers in GSINIT
3169         * support/regression/tests/zeropad.c: fixed idata define for hc08
3170         * support/regression/tests/bug-927659.c,
3171         * support/regression/tests/float_trans.c: disabled tests for hc08
3172         pending missing library routines
3173         * .version: increased version number to 2.4.4 - hc08 port now passes
3174         regression tests
3175
3176
3177 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
3178
3179         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
3180         * Makefile.common.in,
3181         * as/Makefile,
3182         * as/hc08/Makefile.in,
3183         * as/mcs51/Makefile.in,
3184         * as/z80/Makefile.in,
3185         * debugger/mcs51/Makefile.in,
3186         * device/include/Makefile.in,
3187         * device/lib/Makefile.in,
3188         * doc/Makefile,
3189         * link/Makefile,
3190         * link/z80/Makefile.in,
3191         * packihx/Makefile.in,
3192         * sim/ucsim/main_in.mk,
3193         * sim/ucsim/avr.src/Makefile.in,
3194         * sim/ucsim/doc/Makefile.in,
3195         * sim/ucsim/gui.src/serio.src/Makefile.in,
3196         * sim/ucsim/hc08.src/Makefile.in,
3197         * sim/ucsim/s51.src/Makefile.in,
3198         * sim/ucsim/xa.src/Makefile.in,
3199         * sim/ucsim/z80.src/Makefile.in,
3200         * src/Makefile.in,
3201         * support/cpp2/Makefile.in,
3202         * support/librarian/Makefile,
3203         * support/makebin/Makefile: added DESTDIR to the install path proposed
3204         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
3205         * doc/sdccman.lyx: added DESTDIR documentation
3206
3207 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
3208
3209         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
3210         instruction for interrupt handlers, use fast returns when returning
3211         from high priority interrupts
3212
3213 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3214
3215         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
3216         code generation
3217         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
3218         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
3219         bugs, ported much of Bernhard's code from mcs51
3220         * src/mcs51/gen.c (genSend),
3221         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
3222         than one when calling a reentrant function
3223         * device/lib/_mullong.c: defined an alternate struct layout for big
3224         endian ports (hc08)
3225
3226 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3227
3228         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
3229         test
3230
3231 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3232
3233         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
3234         are sane and complete before asking the port its prefered parameter
3235         passing method (fixes bug #1017633)
3236         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
3237         and _ret3
3238
3239 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3240
3241         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
3242         problem in bitfields >= 8 bits.
3243
3244 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3245
3246         * src/SDCCsymt.c: undid changes that were not meant to be committed
3247
3248 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3249
3250         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
3251
3252 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
3253
3254         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
3255           copied and wrong bit got inverted
3256
3257 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3258
3259         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
3260         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
3261         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
3262         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
3263         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
3264         assignments to bitfields at known addresses
3265         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
3266         reads from bitfields at known addresses
3267         * src/hc08/ralloc.c (packRegisters),
3268         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
3269         genhc08Code): optimize pointer get values used as conditionals
3270         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
3271         and branch
3272
3273 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3274
3275         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
3276         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
3277         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
3278         as conditionals
3279
3280 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3281
3282         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
3283
3284 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3285
3286         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
3287         related problems
3288
3289 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
3290
3291         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
3292
3293 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3294
3295         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
3296         mcs51 port
3297
3298 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
3299
3300         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
3301
3302 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3303
3304         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
3305         cases use more compact code.
3306
3307 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
3308
3309         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
3310
3311 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3312
3313         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
3314
3315 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3316
3317         * src/SDCCsymt.h,
3318         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
3319         parameter of changePointer() from symbol* to sym_link*
3320         * src/SDCCast.c (decorateType): call changePointer() for CAST op
3321         * src/SDCCsymt.c (compareType): void* type is castable to other
3322         pointers, but not necesarily an exact match.
3323         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
3324         is no longer blindly treated as an exact match.
3325         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
3326
3327 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
3328
3329         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
3330
3331 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
3332
3333         * src/pic/gen.c,
3334         * src/pic/pcode.c,
3335         * src/pic/ralloc.h,
3336         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
3337
3338 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
3339
3340         * src/pic/device.c,
3341         * src/pic/device.h,
3342         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
3343
3344 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3345
3346         * src/mcs51/gen.c (emitcode): fixed bug #992819
3347
3348 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
3349
3350         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
3351           there's no need to make it worse
3352
3353 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3354
3355         * src/mcs51/ralloc.c (deassignLR),
3356         * src/ds390/ralloc.c (deassignLR),
3357         * src/hc08/ralloc.c (deassignLR),
3358         * src/z80/ralloc.c (deassignLR),
3359         * src/pic/ralloc.c (deassignLR),
3360         * src/pic16/ralloc.c (deassignLR),
3361         * src/avr/ralloc.c (deassignLR),
3362         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
3363         rlivePoint): fixed another part of bug #971834
3364
3365 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3366
3367         * src/z80/main.c: enabled "critical" keyword
3368         * src/z80/mappings.i,
3369         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
3370         functions (fixes bug #979646)
3371         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
3372
3373 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3374
3375         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
3376           such as c:\mydir.
3377
3378 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
3379
3380         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
3381           doesn't disable too much optimizations
3382
3383 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3384
3385         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
3386
3387 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
3388
3389         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
3390
3391 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
3392
3393         * src/pic/gen.c tidied up tabs
3394         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
3395         * src/pic/main.c tidied up tabs
3396         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
3397         * src/pic/pcoderegs.c tidied up tabs
3398         * src/pic/ralloc.c tidied up tabs
3399
3400 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
3401
3402         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
3403         to S_FIXED for pic16 port and when symbol is not in level 0,
3404         allocate for S_REGISTER storage class and pic16 port, too,
3405         * src/pic16/device.h: prototype for checkSym,
3406         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
3407         * (pic16_assignConfigWordValue): test the value and the mask to
3408         validate that the value is suitable for the configuration word,
3409         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
3410         collect extern declared symbols, don't emit symbol twice, check
3411         first if symbol is in publics set first,
3412         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
3413         * added command line '--fstack' which enables an experimental
3414         feature for stack access, too buggy to be used yet...
3415         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
3416         * (pic16_allocDirReg): when register has storage class S_REGISTER
3417         allocate in pic16_dynAccessRegs,
3418         * device/include/pic16/pic18f????.h: modified configuration word
3419         naming convention, words started as CONFIG0H but should be CONFIG1H
3420
3421 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
3422
3423         * device/include/mcs51reg.h: fixed bug 970993
3424
3425 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
3426
3427         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
3428         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
3429         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
3430         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
3431         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
3432         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
3433           error/warning numbers,
3434           added function setWarningDisabled()
3435         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
3436         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
3437           _memcmp.c _memmove.c calloc.c realloc.c free.c
3438         * support/regression/tests/malloc.c: added tests for new functionality
3439         * support/regression/tests/zeropad.c: added tests for truncated initializers
3440           and initialized char arrays starting with '\x0'
3441         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3442
3443 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3444
3445         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3446
3447 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3448
3449         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3450         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3451         peephole 177.e. Thanks to anonymous
3452
3453 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3454
3455         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3456         function isn't used in the source but referenced as a
3457         variable initializer then declare it as extern in .asm file
3458
3459 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3460
3461         * .version: increased version number to 2.4.3
3462
3463         Adding version extension according to ChangeLog CVS revision
3464         * src/Makefile.in (target all): added dependency 'version.h'
3465         * (rule version.h): added rule to create version.h from ChangeLog,
3466         * (rule dep): added dependency version.h,
3467         * src/version.awk: AWK script to create version.h
3468         * src/SDCCdwarf2.c (dwWriteModule),
3469         * src/SDCCglue.c (initialComments),
3470         * src/SDCCmain.c (printVersionInfo): modified to write after
3471         version string the version extension number,
3472         * src/SDCCutil.c: included "version.h"
3473         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3474         number,
3475         * src/SDCCutil.h: added prototype for getBuildNumber
3476
3477         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3478         includeDirsSet, too,
3479         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3480         const char [] is found in function prototype...
3481
3482         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3483         moving to WREG with source is already in WREG,
3484         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3485         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3486         * (aopForSym): stack'ed symbols are partially supported, added
3487         if-clause to support symbols in FARSPACE,
3488         * (sameRegs): added test for AOP_ACC to see if registers are same,
3489         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3490         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3491         * (pic16_popRegFromString): will not allocate a new register if it
3492         doesn't find one by name, bug may have introduced...
3493         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3494         * (genIpush): revived to use pic16 port's stack,
3495         * (genAddrOf): added incomplete case for stack'ed operand,
3496         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3497         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3498         can handle multibyte operands,
3499         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3500         * (pic16initialComments): added message for MPLAB compatibility
3501         mode enabled,
3502         * src/pic16/main.h: prototype for pic16_mplab_comp,
3503         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3504         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3505         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3506         because of increased complexity of procedure,
3507         * (_process_pragma): stack pragma changed to format 'stack pos len',
3508         emit symbol '_stack_end' to conform with gplink,
3509         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3510         to search for register,
3511         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3512         PO_GPR_REGISTER,
3513         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3514         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3515         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3516         case for PO_GPR_REGISTER,
3517         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3518         dies, the new era is ahead !...
3519         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3520         pic16_dynInternalRegs,
3521         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3522         * (pic16_allocDirReg): minor optimizations and bug fixes,
3523         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3524
3525         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3526         load stack and frame pointer with address of 'stack_end' symbol
3527
3528 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3529
3530         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3531         without source code but only variable initializers
3532
3533 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3534
3535         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3536         external are not declared as extern to reduce overhead while linking
3537
3538 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3539
3540         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3541
3542 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3543
3544         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3545           Yee Keat for the patch
3546         * src/SDCCast.c (decorateType): fixed bug #979599
3547         * src/ds390/gen.h: removed local fReturnSizeDS390
3548         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3549         * src/ds390/gen.c (genAnd, genOr, genXor),
3550         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3551
3552 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3553
3554         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3555         add relFilesSet to $3, manipulate $2 to handle linking of object
3556         files without source files in command line,
3557         * device/include/pic16 (all headers): added ID location macros,
3558         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3559         entries for ID location bytes,
3560         * (pic16_assignIdByteValue): NEW,
3561         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3562         added field dumpcalltree to pic16_options_t,
3563         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3564         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3565         emitting rFalseIfx label after check_carry label,
3566         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3567         pic16_emitDIRegs), NEW
3568         * (pic16glue): dump .calltree file when option --calltree found,
3569         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3570         * (_pic16_genAssemblerPreamble): emit ID locations after
3571         configuration registers,
3572         * (pic16_linkCmd): modifications of the link command,
3573         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3574         * (pic16_pCodeInitRegisters): don't init stack registers,
3575         * (pic16_findPrevInstruction): fixed bug,
3576         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3577         bug with immediate registers,
3578         * (buildCallTree): traces stack push and pop,
3579         * (pct2): dump also stack usage for each function,
3580         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3581         * (pic16_allocDirReg): various modifications,
3582         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3583         fixed to 1,
3584
3585 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3586
3587         * src/pic16/pcode.c: removed buggy double colon
3588
3589 2004-07-01 Borut Razem <borut.razem AT siol.net>
3590
3591         * support/scripts/sdcc.nsi: added include/pic16 to setup
3592
3593 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3594
3595         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3596         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3597         target 'clean',
3598         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3599         specific command line arguments. Also added sample lkr script
3600         for placing a variable at a specific memory bank.
3601         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3602         at a specific memory bank,
3603         * (pic16_dump_isection): fixed bug which caused string literals to
3604         be omitted when dumping idata section,
3605         * (pic16_groupRegistersInSection): added code to handle registers
3606         in specific memory banks,
3607         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3608         public, all references are renamed too,
3609         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3610         AOP_DPTR2,
3611         * (pic16_storeForReturn): added case to handle when dest is WREG,
3612         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3613         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3614         pic16_rel_udata, check to see if that register is marked as being
3615         a member of a specific memory bank,
3616         * (pic16_printIvalCharPtr): added code to add string literals either
3617         to code or the idata sections,
3618         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3619         also accept the 'udata' pragma,
3620         * src/pic16/main.h: new structure types sectName and sectSym
3621         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3622         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3623         * (pic16_findPrevInstruction): fixed, it returned nothing,
3624         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3625         instruction combinations,
3626         * (pic16_FixRegisterBanking): heavily reorganised,
3627         * (pic16_AnalyzeBanking): if generating banksel directives is
3628         disabled, then don't call FixRegisterBanking at all,
3629         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3630         completely removed,
3631         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3632
3633 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3634
3635         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3636         Phuah Yee Keat <yk.phuah AT nestac.com>
3637
3638 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3639
3640         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3641         correctly the IVT even if it is relocated to some other location
3642
3643 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3644
3645         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3646         * device/include/pic16/pic18f2220.h: NEW,
3647         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3648         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3649         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3650         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3651         nodefaultlibs, ivt_loc is the location of the interrupt vector
3652         table, and nodefaultlibs signs that default libraries should not be
3653         linked in link stage,
3654         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3655         according to --ivt-loc argument,
3656         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3657         when pragma stack is found,
3658
3659 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3660
3661         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3662         256 (range check), 257 (do while), 258.a-f (bit banging
3663         f.e. on 3-wire SPI bus)
3664
3665 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3666
3667         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3668         variables used exclusively within a loop
3669
3670 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3671
3672         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3673
3674 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3675
3676         * src/SDCClrange.c (computeClash): fixed bug #971834
3677
3678 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3679
3680         * src/mcs51/gen.c (genCmp): fixed bug #975903
3681         * src/hc08/gen.c (operandsEqu),
3682         * src/ds390/gen.c (operandsEqu),
3683         * src/z80/gen.c (operandsEqu),
3684         * src/pic/gen.c (operandsEqu),
3685         * src/pic16/gen.c (operandsEqu),
3686         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3687         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3688
3689 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3690
3691         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3692
3693 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3694
3695         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3696         default case in switch statement,
3697         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3698         to eliminate problem with initialisation of pointers, but problem
3699         still exists,
3700         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3701         * (emitStaticSegment): removed various lines emitting debug info,
3702         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3703         added processor registers for utilizing EEPROM,
3704         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3705         configurable and set 8
3706
3707 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3708
3709         * .version: increased version number to 2.4.2,
3710
3711         Cumulative patch for pic16 port
3712         * src/pic16/device.c: changed scheme to dump initial values for
3713         variables in idata segment, all print_idata* functions were removed,
3714         now the pic16_printIval* will be called,
3715         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3716         * _pic16_printPointerType, pic16_printPointerType,
3717         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3718         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3719         NEW, similar to the respective functions in SDCCglue.c,
3720         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3721         way, emitting hex bytes,
3722         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3723
3724 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/avr/ralloc.c (serialRegAssign),
3727         * src/xa51/ralloc.c (serialRegAssign),
3728         * src/pic/ralloc.c (serialRegAssign),
3729         * src/pic16/ralloc.c (serialRegAssign),
3730         * src/hc08/ralloc.c (serialRegAssign),
3731         * src/z80/ralloc.c (serialRegAssign),
3732         * src/ds390/ralloc.c (serialRegAssign),
3733         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3734
3735 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3736
3737         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3738         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3739
3740 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3741
3742         Cumulative patch for pic16 port:
3743         * src/pic16/device.h (typedef PIC16_device) modified fields for
3744         defining microcontrollers,
3745         * src/pic16/device.c: added new info for all devices in Pics16 array,
3746         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3747         to be optimised out by the pCode optimiser,
3748         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3749         specially, bug reported by G.M. Gallant,
3750         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3751         as force'd so that cannot be optimised out by pCode optimiser,
3752         * src/pic16/pcode.c,
3753         * src/pic16/pcodepeeph.c,
3754         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3755         they are disabled by default, but can be enabled explicit with
3756         command argument --denable-peeps, for testing,
3757         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3758         --pomit-ivt in COMPILE_FLAGS
3759
3760 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3761
3762         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3763           compilation on MSVC
3764
3765 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3766
3767         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3768
3769 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3770
3771         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3772         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3773
3774 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3775
3776         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3777         would only assign 0x300001 register.
3778
3779 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3780
3781         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3782         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3783
3784 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3785
3786         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3787         for ds80c400
3788         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3789         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3790         added peephole 254 (left shift), 255 (jump table)
3791
3792 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3793
3794         * device/lib/Makefile.in: removed comment line with model-pic16,
3795         * (target port-specific-objects-pic16): the libraries and objects
3796         are copied to the build directory form the device/lib/pic16/bin
3797         directory
3798
3799         Cumulative patch concerning pic16 port:
3800         * library directory has been re-organized,
3801         * added support for PIC18F1220,
3802         * added headers and library sources for chips 18f1220,18f6520,
3803         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3804
3805         * configuration registers setting has changed, now each supported
3806         device has a complete description of the registers it uses,
3807         * all initialisations are moved to idata sections, these section
3808         can be absolute or relocatable,
3809         * fixed initialisation of codespace variables,
3810         * fixed warning about PCLATU and gpsim,
3811         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3812         * (genAssign): use table reads when assigning from variables in codespace,
3813         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3814         char/int variables placed in codespace,
3815         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3816         registers set in .asm file, no need for --pomit-config-words anymore,
3817         * (pic16glue): some 8051 legacy segments are commented out
3818         (to be removed completely),
3819         * added support for alternative assembler and linker with --asm=
3820         and --link= command line arguments,
3821         * peepholes are disabled automatically in the port, no need to
3822         specify on command line,
3823         * port supports natively char/int/long multiplication, but converts
3824         all divisions to support functions,
3825         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3826         to the file set in variable $2,
3827         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3828         strings in ASCII format and not in hex,
3829         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3830         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3831         allocate proper register if iCodes aren't temporary,
3832
3833 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3834
3835         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3836
3837 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3838
3839         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3840         is commented out
3841
3842 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3843
3844         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3845         computed address is reused
3846         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3847         multi-byte bitfields
3848
3849 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3850
3851         * src/z80/gen.c: (genArrayInit): must check for pointers too
3852
3853 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3854
3855         * support/regression/tests/zeropad.c: never meant to commit the
3856           nestedstruct test: removed, added check for GCC version
3857
3858 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3859
3860         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3861         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3862         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3863           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3864           bugs 928906 and 954082 half-empty initializers
3865         * src/SDCCsymt.h,
3866         * src/SDCCsymt.c (getAllocSize): added for above fix
3867         * src/z80/gen.c (genArrayInit): fixed bug 741044
3868         * support/regression/tests/zeropad.c: added tests
3869
3870 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3871
3872         * src/pic16/device.c (pic16_dump_section): corrected bug which
3873         caused some symbols of the libraries to be misplaced
3874
3875 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3876
3877         * src/pic16/glue.c,
3878         * src/pic16/ralloc.h,
3879         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3880         to fix conflict with pic port
3881
3882 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3883
3884         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3885         externs configuration variables,
3886         * src/pic16/ralloc.h,
3887         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3888         prototype in header, commented out some debug messages
3889
3890 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3891
3892         * src/pic16/glue.c,
3893         * src/pic16/main.c,
3894         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3895         for gpasm COFF object generation. Thanks to D. Hawkins for
3896         his patch info
3897
3898 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3899
3900         * src/ds390/main.c,
3901         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3902         Brock for spotting this)
3903         * src/ds390/gen.c (genEndFunction),
3904         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3905         interrupt handler and critical. Disable push/pop optimizations when
3906         peephole optimizations disabled.
3907
3908 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3909
3910         Updated pic16 library sources and headers.
3911         * device/lib/pic16/pic18f*/ ,
3912         * device/include/pic16/*.h: modified to handle structured SFR
3913         definitions
3914
3915 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3916
3917         * src/port.h (PORT structure): added hook initPaths, now each
3918         port can declare its own default search paths,
3919         which can been seen with the --print-search-dirs option,
3920         see pic16 port for example,
3921         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3922         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3923         * (doPrintSearchDirs): NEW, replaces in a central manner the
3924         printing of search dirs which was split in set*Paths functions,
3925         * (main): added call to port->initPaths and doPrintSearchDirs,
3926         * src/avr/main.c,
3927         * src/ds390/main.c,
3928         * src/hc08/main.c,
3929         * src/izt/i186.c,
3930         * src/izt/tlcs900h.c,
3931         * src/mcs51/main.c,
3932         * src/pic/main.c,
3933         * src/pic16/main.c: modified port structures to reflect addition of
3934         initPaths hook,
3935
3936         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3937         * (pic16_dump_section): for registers in same address reserve memory once,
3938         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3939         to no_banksel,
3940         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3941         result is greater in size than right or left,
3942         * (pic16_genUMult8X8_8): there are some cases where the result can
3943         be 16 bits size, so handle these,
3944         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3945         * (pic16_outBitC): modified to emit pcodes,
3946         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3947         or not,
3948         * (genDivOneByte): implemented algorithm to divide 8-bits,
3949         * (genCmp): uncommented goto, but issues still exist,
3950         * (genAnd): fixed a bug with variables >8bits,
3951         * (genPackBits): optimization added that uses BCF/BSF to change a
3952         single bit,
3953         * (genAssign): fixed bug when assigning floating point literals,
3954         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3955         __sdcc_gsinit_startup label,
3956         * src/pic16/main.c (_pic16_init): removed search directory
3957         initialisations,
3958         * (_pic16_initPaths): NEW, used to initialise search directories,
3959         * (_hasNativeMulFor): support functions for all except char/int
3960         multiplication, and char division,
3961         * (PIC16_port struct): modified entry for native mul support,
3962         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3963         no_banksel option,
3964         * (buildCallTree): call to register_usage is ifdef'ed out,
3965
3966 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3967
3968         * device/include/string.h: applied Stas Sergeev's patch to make this
3969         header file compatible with the preprocessor -Wundef option
3970         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3971         failure (fixes bug #941458)
3972
3973 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3974
3975         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3976         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3977         that the variable, not the function, should be static
3978         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3979         to be consistent with non-literal case
3980
3981 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3982
3983         * src/SDCCast.c (isConformingBody): fixed bug #949967
3984         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3985         convilong): fixed bug #952086
3986
3987 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3988
3989         * src/SDCCmem.c (allocVariables): fixed bug #955321
3990
3991 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3992
3993         * src/hc08/main.c (_hc08_genAssemblerEnd),
3994         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3995         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3996         completely eliminated the use of a temporary file
3997         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3998         when more than one file linked
3999         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
4000
4001 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4002
4003         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
4004         which fixes bug #543481
4005         * support/regression/tests/bug-751703.c: fixed comments left from a
4006         cut and paste error
4007         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
4008         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
4009         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
4010         scopes
4011         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
4012         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
4013         are now changed to underscores in moduleName
4014
4015 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4016
4017         * as/mcs51/lkmem.c: better fix for bug #954173
4018
4019 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
4020         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4021
4022         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
4023         * device/include/c8051f000.h,
4024         * device/include/c8051f120.h,
4025         * device/include/c8051f300.h,
4026         * device/include/c8051f310.h,
4027         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
4028         PWM16) and detab'ed
4029
4030 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4031
4032         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
4033         and mailing lists, doc'ed --no-peep-comments, removed reference
4034         to knoppix (newest version has no LyX/LaTeX), other minor changes
4035         * src/SDCCglue.c (glue): save 2 bytes stack space with
4036         option --main-return. The ljmp could probably be avoided too
4037
4038 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4039
4040         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
4041
4042 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4043
4044         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
4045         * src/SDCCopt.c (isLocalWithoutDef),
4046         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
4047         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
4048         (credit to Maarten Brock for patch #949363, on which this is based)
4049         * support/regression/tests/bug-751703.c: some test cases of extern used
4050         within inner scopes.
4051
4052 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4053
4054         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
4055         SPEC_STRUCT
4056         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
4057         struct definitions
4058         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
4059         dwWriteLabel): fix to create valid debugger symbols even when
4060         the module name has non-alphanumeric symbols in it
4061         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
4062         when a variable's allocation has been optimized away
4063
4064
4065 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4066
4067         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
4068         * src/hc08/main.c,
4069         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
4070         * src/mcs51/main.c,
4071         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
4072         * src/ds390/main.c,
4073         * src/z80/gen.c (z80_emitDebuggerSymbol),
4074         * src/z80/main.c,
4075         * src/pic/gen.c (pic14_emitDebuggerSymbol),
4076         * src/pic/main.c,
4077         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
4078         * src/pic16/main.c,
4079         * src/avr/gen.c (avr_emitDebuggerSymbol),
4080         * src/avr/main.c,
4081         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
4082         * src/xa51/main.c,
4083         * src/SDCCdebug.c (emitDebuggerSymbol),
4084         * src/SDCCdebug.h,
4085         * src/port.h: added a debugger struct to the port struct. Added a
4086         callback for defining debugger symbols
4087
4088         * src/SDCCast.c (createLabel),
4089         * src/SDCC.y (labeled_statement): mark all compiler generated labels
4090         with isitmp = 1
4091         * src/SDCCicode.h,
4092         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
4093         iCode back to the ast for the function
4094
4095         * src/hc08/ralloc.c (hc08_assignRegisters),
4096         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
4097         unneeded fields from the regs struct.
4098         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
4099         pushReg() & pullReg() functions instead of emitcode()
4100
4101         * src/hc08/gen.c (genLabel, genhc08Code),
4102         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
4103
4104         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
4105         debugger hooks
4106
4107         * src/hc08/gen.c (genEndFunction, genhc08Code),
4108         * src/hc08/gen.h,
4109         * src/mcs51/gen.c (genEndFunction, gen51Code),
4110         * src/mcs51/gen.h,
4111         * src/ds390/gen.c (genEndFunction, gen390Code),
4112         * src/ds390/gen.h,
4113         * src/z80/gen.c (genEndFunction, genZ80Code),
4114         * src/z80/gen.h,
4115         * src/z80/z80.h,
4116         * src/pic/gen.c (genEndFunction, genpic14Code),
4117         * src/pic/gen.h,
4118         * src/pic16/gen.c (genEndFunction, genpic16Code),
4119         * src/pic16/gen.h,
4120         * src/avr/gen.c (genEndFunction, genAVRCode),
4121         * src/avr/gen.h,
4122         * src/xa51/gen.c (genEndFunction, genXA51Code),
4123         * src/xa51/gen.h,
4124         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
4125         specific code to cdbFile.c and out of the backend code generators
4126
4127         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
4128         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
4129         starting address is now 0
4130
4131         * as/hc08/asm.h,
4132         * as/hc08/m08pst.c,
4133         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
4134         assembler directive for DWARF support
4135         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
4136
4137         * src/src.dsp,
4138         * src/Makefile.in,
4139         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
4140
4141 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4142
4143         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
4144         and inappropriate peephole optimization in jump tables
4145
4146 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4147
4148         * as/hc08/m08pst.c,
4149         * src/SDCCglue.c: sdccopt works for the hc08 port now
4150
4151 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
4152
4153         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
4154
4155 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4156
4157         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
4158
4159 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4160
4161         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
4162         rules
4163         * src/SDCCmain.c,
4164         * src/SDCCglobl.h,
4165         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
4166         comments from the peephole optimizer replacement rules
4167         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
4168         symbols
4169         * src/SDCCcse.c (updateSpillLocation),
4170         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
4171         equivalents
4172         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
4173         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
4174         objects far pointers
4175
4176 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4177
4178         * src/SDCCsymt.h: a missing part of my last change
4179         * src/pic/ralloc.c (regTypeNum),
4180         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
4181
4182 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * src/SDCCicode.h,
4185         * src/SDCCicode.c (aggrToPtrDclType),
4186         * src/SDCCptropt.h,
4187         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
4188         ptrPseudoSymConvert),
4189         * src/pic/ralloc.c (regTypeNum),
4190         * src/pic16/ralloc.c (regTypeNum),
4191         * src/hc08/ralloc.c (regTypeNum),
4192         * src/ds390/ralloc.c (regTypeNum),
4193         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
4194         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
4195
4196 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4197
4198         * link/z80/lkmain.c (afile),
4199         * as/hc08/lkmain.c (afile),
4200         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
4201         prevent a pointer problem when a filename has no directory and
4202         no extension specified.
4203
4204 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4205
4206         * link/z80/lkmain.c (afile): allow periods in directory names
4207         * link/z80/lkmain.c (afile),
4208         * as/mcs51/lkmain.c (afile),
4209         * as/hc08/lkmain.c (afile): allow linker script file to have an
4210         extension other than ".lnk"
4211         * link/z80/lklex.c (getfid),
4212         * link/z80/lkmain.c (parse),
4213         * as/mcs51/lklex.c (getfid),
4214         * as/mcs51/lkmain.c (parse),
4215         * as/hc08/lklex.c (getfid),
4216         * as/hc08/lkmain.c (parse): Support comments in the linker script
4217         file on lines by themselves and after filenames
4218
4219 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4220
4221         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
4222
4223 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4224
4225         * src/z80/peeph-z80.def: removed some peephole rules that don't
4226         work with multibyte arithmetic (fixed bug #937126)
4227         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
4228         to registers and not global variables
4229         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
4230         geniCodePreInc, geniCodePostDec, geniCodePreDec,
4231         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
4232         checking for assignments not internally generated (fixed bug #931895)
4233         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
4234         structure member (fixed bug #930072)
4235
4236 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4237
4238         * src/SDCCmain.c (linkEdit),
4239         * src/hc08/main.c (_hc08_parseOptions),
4240         * as/hc08/Makefile.in,
4241         * as/hc08/aslink.h,
4242         * as/hc08/asm.h,
4243         * as/hc08/m08pst.c,
4244         * as/hc08/lkrloc.c (relr, rele),
4245         * as/hc08/lkarea.c (lnkarea)
4246         * as/hc08/lkmain.c (afile, parse),
4247         * as/hc08/lkelf.c: support for ELF output
4248         * as/hc08/lks19.c (s19),
4249         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
4250
4251 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4252
4253         * as/mcs51/lkihx.c: Fixed bug #899105.
4254
4255 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4256
4257         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
4258         .dsp files from Unix to DOS.
4259
4260 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4261
4262         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
4263         function pointers; we have been compliant for several months now.
4264         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
4265         change that was accidently commented out
4266         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
4267         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
4268         bug #922319
4269
4270 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4271
4272         * src/hc08/gen.c: output of all of the internal debugging information
4273         is now controlled by the D() macro; it is disabled by default
4274
4275 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4276
4277         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
4278         harder to keep the same registers during a CAST iCode
4279         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
4280         long via int can be done in a single cast, if the signedness is
4281         correct.
4282         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
4283         putchar() in tinibios.c in ds390's library
4284
4285 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
4286
4287         * src/SDCCast.c (decorateType): fixed bug #898889,
4288         cast result of a literal complement too
4289         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
4290         fixed check for bitfields
4291
4292 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
4293
4294         * src/SDCCicode.c (geniCodeLogic): made it static,
4295         (geniCodeLogicAndOr): added in order to fix bug #905492,
4296         (ast2iCode): fixed bug #905492
4297         * support/regression/tests/bug-905492.c: added
4298         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
4299         (processParms): fixed bug #927659: don't copy parms, this will clear
4300         decorated flag
4301         * support/regression/tests/bug-927659.c: added
4302
4303 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
4304
4305         * src/SDCCast.c (addCast): don't cast float to char
4306         * device/lib/libsdcc.lib: added _memmove
4307
4308 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
4309
4310         * device/lib/large/Makefile: fixed parallel execution by
4311         replacing `make` by `$(MAKE)`
4312
4313 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4314
4315         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
4316         offsets (fixes bug #923936)
4317
4318 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
4319
4320         * device/lib/small/Makefile: fixed parallel execution by
4321         replacing `make` by `$(MAKE)`
4322
4323 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4324
4325         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
4326
4327 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
4328
4329         * src/pic/gen.c (genCpl): multi-byte complements were not working.
4330         * src/regression/Makefile: Regression test was not running.
4331
4332 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
4333
4334         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
4335         complement if possible
4336         * src/SDCCval.c (valComplement),
4337         * src/SDCCicode.c (operandOperation): fixed complement of literal
4338         * support/regression/tests/onebyte.c (testComplement): added
4339
4340 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
4341
4342         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
4343         return an optimized tree; actually replace actParm with the new tree
4344         * src/SDCCast.h: added some parantheses to remove side effects
4345         * support/regression/tests/bug-920866.c
4346
4347 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
4348         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
4349         Bit operands were not being handled properly in the pic14 port.
4350         (now src/regression/add.c passes again).
4351
4352 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4353
4354         * src/SDCC.y (labeled_statement): case and default no longer require
4355         a following statement (RFE #893037)
4356
4357 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4358
4359         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
4360         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
4361         disabled (fixes bug #916294)
4362         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
4363         "mov a,acc"; patch provided by Lenny Story
4364         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
4365
4366 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4367
4368         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
4369         functions
4370         * src/ds390/gen.c (genFunction, genEndFunction),
4371         * src/ds390/ralloc.c (ds390_assignRegisters),
4372         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
4373         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
4374         pushed if there are parameters passed on the stack. Also, a cleaner
4375         way to decide if r0/r1 should be pushed/popped. (Together they fix
4376         bug #918693)
4377
4378 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4379
4380         * doc/sdccman.lyx,
4381         * device/lib/mcs51/crtpagesfr.asm,
4382         * device/lib/mcs51/crtxinit.asm,
4383         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
4384         to avoid confusion with Si Lab's SFRPAGE register.
4385
4386 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4387
4388         * src/SDCCglue.c (emitMaps): allow public sfr variables
4389         * src/SDCCglue.c (initialComments): include compiler build date
4390         with compiler version and put the timestamp of the generated
4391         assembly file on a serperate line to be less confusing.
4392         * src/port.h: added genInitStartup hook
4393         * src/avr/main.c,
4394         * src/ds390/main.c,
4395         * src/hc08/main.c,
4396         * src/pic/main.c,
4397         * src/pic16/main.c,
4398         * src/xa51/main.c,
4399         * src/z80/main.c: genInitStartup initialize as NULL (default to
4400         historical behaviour)
4401         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
4402         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
4403         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
4404         library instead of hard coding it into the compiler.
4405         * support/regression/ports/mcs51-stack-auto/spec.mk,
4406         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
4407         * device/lib/mcs51/Makefile,
4408         * device/lib/small/Makefile,
4409         * device/lib/large/Makefile,
4410         * device/lib/mcs51/crtpagesfr.asm,
4411         * device/lib/mcs51/crtstart.asm,
4412         * device/lib/mcs51/crtxclear.asm,
4413         * device/lib/mcs51/crtxinit.asm,
4414         * device/lib/mcs51/crtclear.asm,
4415         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
4416         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
4417         and into user configurable files.
4418         * device/lib/clean.mk: clean mcs51 directory too
4419         * support/regression/tests/longlit.c: added static to T1 declaration
4420         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
4421         accesses in the initialization code
4422
4423 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4424
4425         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
4426         OSCTRIMVAL as noted in bug #916008
4427
4428 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4429
4430         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
4431         in loops with multiple exits (reported as incorrect registers
4432         used by Martin Helmling in Sdcc-user list)
4433
4434 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4435
4436         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
4437         made ds390 register extensions look less like error messages
4438
4439 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4440
4441         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4442         reported by Adam Wozniak in Sdcc-user list
4443
4444 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4445
4446         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4447         arithmetic optimizations, added debug output
4448
4449 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4450
4451         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4452         * sdcc.spec: updated and split sdcc into 3 rpms
4453         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4454         needed for literals of LEFT_OP and '+'
4455         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4456         introduced RESULT_TYPE_NOPROM
4457         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4458         left shift
4459         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4460         limited promotion to int only for '*'
4461         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4462
4463 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4464
4465         * src/pic16/gen.c (genSkip),
4466         (genc16bit2lit), (gencjneshort): commented out
4467         (is_LitOp): new helper function, checks operand type
4468         (genCmpEq): rewritten
4469
4470 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4471
4472         * support/regression/tests/bug-908454.c: added
4473
4474 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4475
4476         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4477         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4478         (geniCodeCast): cosmetic, don't preserve bit storage class
4479         (geniCodeLeftShift): added promotion
4480         (geniCodeLogic): fixed regression
4481         * src/SDCCsymt.c (computeTypeOr): accept bits too
4482         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4483
4484 2004-03-07  Borut Razem <borut.razem AT siol.net>
4485
4486         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4487
4488 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4489
4490         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4491         version of pic16_genPackRegisters which does not check if ic is a
4492         CAST operator,
4493         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4494         function cause string1.c regression test fails
4495
4496 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4497
4498         * sim/ucsim/configure.in,
4499         * sim/ucsim/configure,
4500         * sim/ucsim/doc/Makefile.in: use docdir
4501         * src/SDCC.y: fixed sbit atrributes
4502         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4503         * src/SDCCast.c (decorateType): |^& need special promotion handling
4504         * src/SDCCast.h,
4505         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4506         * src/SDCCsymt.h (computeType),
4507         * src/SDCCicode.c: computeType() needs op
4508         * src/SDCCsymt.c (checkTypeSanity),
4509         * doc/sddman.lyx: "plain" bitfields are unsigned
4510         * src/SDCCsymt.c (computeTypeOr): added
4511         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4512         |^& ops
4513         * src/SDCCval.c (val*): computeType() needs op
4514         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4515         * support/regression/tests/onebyte.c: added tests for |^&
4516
4517 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4518
4519         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4520         for writing icode into asm output.
4521
4522 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4523
4524         * src/pic16/device.c: added some debug lines enabled
4525         with macro DEBUG_CHECK,
4526         * src/pic16/genarith.c: more debug in genPlus,
4527         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4528         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4529         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4530         * (aopForSym): onStack symbols are re-placed in data memspace,
4531         and onStack flag is cleared,
4532         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4533         copy temporary pcodeop,
4534         * (genPcall): added warning for not updating PCLATU,
4535         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4536         always true for pic16 port,
4537         * (genMultOneWord): NEW, supports integer multiplication,
4538         * (genMult): modified to call genMultOneWord,
4539         * (ifxForOp): added warning when return NULL,
4540         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4541         flag is set before call to operandFromSymbol for implicit
4542         added structures,
4543         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4544         options.intlong_rent are set by default,
4545         * (_hasNativeMulFor): modified to allow port generation of integer
4546         multiplication,
4547         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4548         set regtype to REG_SFR for all registers, restricting seting the
4549         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4550
4551 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4552
4553         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4554         more than 500 times in the regression tests
4555
4556 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4557
4558         * support/Util/SDCCerr.h,
4559         * support/Util/SDCCerr.c,
4560         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4561         enumerator_list),
4562         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4563         for symbol conflicts.
4564         * support/valdiags/tests/enum.c,
4565         * support/valdiags/tests/tentdecl.c,
4566         * support/valdiags/tests/struct.c: expect possible error messages
4567         referring to original symbol definitions.
4568         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4569         * src/SDCCsymt.h,
4570         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4571
4572 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4573
4574         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4575
4576 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4577
4578         * src/pic16/ralloc.c (newReg): fixed bug #908929
4579
4580 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4581
4582         * src/ds390/gen.c: added missing #include "main.h"
4583
4584 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4585
4586         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4587         checking if symbol is already in set,
4588         * src/pic16/device.h: prototype for checkAddSym,
4589         * src/pic16/gen.c: (_G): added entry interruptvector,
4590         * (assignResultValue): removed some commented out lines,
4591         * (genFunction): check for ISR via sym->type, absolute section for
4592         interrupt code is created via a new pBlock, the goto instruction is
4593         placed now correctly at the interrupt vector position, changed all
4594         references from ivec to _G.interruptvector,
4595         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4596         is the interrupt is a high priority one, same for return from ISR,
4597         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4598         externs to calls of checkAddSym,
4599         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4600         pic16_pcode_verbose flag is set,
4601         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4602         * src/pic16/pcoderegs.c: message about how many registers are saved
4603         will only be emitted if pic16_pcode_verbose flag is set,
4604
4605 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4606
4607         * src/ds390/ralloc.h,
4608         * src/ds390/ralloc.c (ds390_regWithIdx),
4609         * src/ds390/gen.c (emitcode),
4610         * src/ds390/main.h,
4611         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4612         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4613         ds390operandCompare, getRegsRead, getRegsWritten,
4614         initializeAsmLineNode): customized instruction size calculation for
4615         ds390, started basis for some register optimizations
4616         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4617         corresponding assembly output
4618         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4619         missing push/pop of r0/r1. Optimized push/pops
4620
4621 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4622
4623         * src/mcs51/main.c (instructionSize): fixed ACALL size
4624         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4625
4626 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4627
4628         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4629         the sorting of rlist with NULL elements
4630         * (print_idataType, print_idata): NEW to create idata sections
4631         * src/pic16/device.h: idataSymSet new variable
4632         * src/pic16/gen.c (genFunction): fixed some bugs in string
4633         comparing, improved the absolute section creation for ISRs,
4634         added FSR0L/FSR0H in registers that are saved in an ISR,
4635         * (genInline): fixed the processing of inline snippets,
4636         now they undergo no process by the peephole optimizer
4637         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4638         are placed in idataSymSet,
4639         * (pic16emitStaticSeg): extern symbols are added in externs,
4640         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4641         switching when aboslute variables are placed in access bank memory
4642         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4643         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4644         commented out with #if,
4645         * (pic16_packRegisters): reintroduce the check for CAST because some
4646         symbols are not correctly handled,
4647         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4648         pCodeInstruction instead of pCode,
4649         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4650         pCodeAsmDir definition,
4651         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4652         directive, then the argument directive is emitted without the leading
4653         tab, hack for inline labels which must be in the first column,
4654         * (compareLabel,pic16_findNextInstruction),
4655         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4656         * (insertBankSwitch): modified for the new pCodeAsmDir,
4657
4658 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4659         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4660
4661         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4662         instance,
4663         * (pushSide): commented out with #if,
4664         * (assignResultValue): fixed some typos in saving
4665         registers,
4666         * (genPcall): FIXED and sync'ed with genCall,
4667         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4668         * (genNearPointerGet): fixed to handle some more cases,
4669         implementation scheme via table reads,
4670         * (genConstPointerGet): modified to access code memory correct,
4671         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4672         and improved to handle some cases
4673         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4674         instead of "RETLW" for init data
4675         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4676         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4677         variables are placed in access bank memory (<0x80 and >=0xf80),
4678         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4679         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4680         TBLWT_POSTDEC,TBLWT_PREINC
4681         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4682         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4683         directives
4684         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4685         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4686         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4687         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4688
4689 2004-02-29  Borut Razem <borut.razem AT siol.net>
4690
4691         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4692         support/Util/findme.h, support/Util/system.h: enhance binary relative
4693         search for lib and include by using findProgramPath()
4694
4695 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4696
4697         * src/SDCCpeeph.h,
4698         * src/SDCCpeeph.c (pcDistance),
4699         * src/port.h,
4700         * src/mcs51/ralloc.h,
4701         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4702         * src/mcs51/main.h,
4703         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4704         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4705         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4706         size calculation port specific, started basis for some register
4707         optimizations
4708         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4709         missing push/pop of r0/r1. Optimized push/pops
4710         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4711         * device/lib/_modsint.c (_modsint),
4712         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4713         and stack version so regression tests pass
4714
4715 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4716
4717         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4718         * src/SDCCast.c (decorateType): catch another small optimization
4719         with '?' operator
4720         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4721         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4722         modified to finally use computeType() all over SDCC,
4723         see Feature Request #877103
4724         * src/SDCCval.h: cosmetic
4725         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4726         valCompare(); regression tested in muldiv.c
4727         * support/regression/tests/muldiv.c (testMod): mod sign follows
4728         dividend only
4729
4730 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4731
4732         * src/SDCCast.c (decorateType): fixed bug #902362
4733         * doc/INSTALL.txt: fixed install instructions for win32
4734
4735 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4736
4737         * device/include/Makefile.in (install): fixed by replacing spaces
4738         by tabs
4739         * doc/README.txt,
4740         * doc/INSTALL.txt: updated for release
4741         * doc/sdccman.lyx: added warning for --xstack being buggy
4742
4743 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4744
4745         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4746         to eliminate build warnings.
4747         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4748
4749 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4750            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4751
4752         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4753         removed -penable-stack, added comment for stack pragma, added
4754         warning for not initializing the stack/frame registers, removed
4755         comment at interrupts section
4756
4757         Stack is made permanent, there is no ability to disable stack usage.
4758         * src/pic16/device.h,
4759         * src/pic16/device.c: removed all references to USE_STACK macro,
4760         * src/pic16/device.c (pic16_dump_section): when no elements in
4761         rlist, free rlist before return,
4762         * (pic16_dump_int_registers): NEW, internal registers are a new set
4763         of general purpose registers reused by each function,
4764         * (checkAddReg): returns 1 if registers is added to set,
4765         * (pic16_groupRegistersInSection): when a registers is of type
4766         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4767         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4768         SRCASECMP macro is moved here from device.c
4769         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4770         PO_PCLATU, PO_PRODL, PO_PRODH,
4771         * (pic16_pCodeOpType, genMinus,
4772         changed compares to "a" register, with AOP_ACC,
4773         * (pic16_genPlus): fixed some bugs and indented properly,
4774         * (pic16_addSign): changed size to size+offset in the MOVWF
4775         instruction,
4776         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4777         multiply 8-bit operand by literal, result is 8-bit,
4778         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4779         multiply 2 8-bit operand, result is 8-bit,
4780         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4781         genUMult8X*_16,
4782         * src/pic16/gen.c: changed accUse to contain WREG only,
4783         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4784         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4785         true, do not use immediate addressing any more unless sym is a
4786         pointer in codespace,
4787         * (aopForRemat): do not use immediate addressing when symbol not in
4788         codespace and when symbol's address is requested,
4789         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4790         accUse size (= 1),
4791         * (aopGet): added case for AOP_ACC and don't return "accumulator
4792         bug" but WREG instead,
4793         * (popGetTempReg): pushes contents of temporary register in stack,
4794         * (popReleaseTempReg): pops contents of temporary register from
4795         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4796         * (pic16_popGet): separated case AOP_ACC to return register WREG
4797         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4798         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4799         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4800         the use of immediate pointers to certain cases only.
4801
4802         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4803         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4804         * (assignResultValue, genCall, genRet): modified to use the new
4805         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4806         genPcall is still broken,
4807         * (genFunction): added code to create 'A' type pBlocks when
4808         interrupt functions are generated, code not extensively tested yet,
4809         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4810         * (genEndFunction): modified so ISRs pop stored registers from stack,
4811         * (genMultOneByte): cleanup,
4812         * (AccRsh): added flag andmask, to and result with appropriate mask,
4813         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4814         * (genDataPointerGet): fixed and reenabled its use,
4815         * (genNearDataPointerGet): bugs fixed,
4816         * (genDataPointerSet): bugs fixed,
4817         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4818         pic16_DumpSymbol, pic16_DumpOp,
4819         * src/pic16/genutils.h: function prototypes for the above functions,
4820         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4821         pointers,
4822         * (pic16emitRegularMap): many many many improvements, but needs a
4823         major cleanup,
4824         * src/pic16/main.c: enable_stack in pic16_options is removed,
4825         * (_pic16_parseOptions): removed command line options -penable-stack,
4826         * (_process_pragma): emit stack symbol only when stack pragma is
4827         processed,
4828         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4829         redirected to FSR0L/FSR0H pair,
4830         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4831         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4832         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4833         for immediates,
4834         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4835         * (dumpPicOptype): NEW,
4836         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4837         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4838         with movff instruction,
4839         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4840         added pic16_int_regs, some packRegsFor* functions are commented out,
4841         because produce errors,
4842         * src/pic16/NOTES: minor modifications
4843
4844 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4845
4846         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4847         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4848         --pack-iram.
4849         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4850         * as/mcs51/lkaomf51.c: fixed bug #895763
4851
4852 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4853
4854         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4855
4856 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4857
4858         * doc/sdccman.lyx: added details about the HC08 storage classes and
4859         interrupts, fixed the register usage info for z80 & gbz80
4860
4861 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4862
4863         * doc/sdccman.lyx: added more pic16 port documentation
4864         * device/include/pic16/: added header pic18fregs.h
4865
4866 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4867
4868         * doc/sdccman.lyx: added Vangelis' contribution
4869
4870 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4871
4872         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4873         extend to the next CALL or PCALL, not just to the next CALL.
4874
4875 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4876
4877         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4878
4879 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4880
4881         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4882         bug #895752 and a better fix for bug #716790
4883
4884 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4885
4886         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4887
4888 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4889
4890         * doc/sdccman.lyx: minor changes, minor changed
4891
4892 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4893
4894         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4895         which can't handle SDCC_NEWONEBYTEOPS,
4896         (geniCodeMultiply): removed conversion from mult to shift for pic14
4897         and pic16
4898
4899 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4900
4901         * src/hc08/gen.h,
4902         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4903         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4904         thus fixing bug #895406
4905
4906 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4907
4908         * device/lib/_modsint.c,
4909         * device/lib/_modslong.c: sign follows divisor only
4910         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4911         signs or signedness can be ignored
4912         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4913         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4914         added optimization for IFX,
4915         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4916         arguments;
4917         reenabled optimization for IFX, which was removed on 2004-01-11
4918         * src/SDCCast.h: added return type IFX
4919         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4920         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4921         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4922         SDCC_OLDONEBYTEOPS selects the old behaviour
4923         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4924         changed again and commented promotion rule
4925         * src/SDCCval.c (valDiv): promotion no longer necessary
4926         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4927         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4928         rewritten
4929         * support/regression/tests/onebyte.c: added
4930
4931 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4932
4933         * gen.c (genInline): reverted to old code for assemnling inline
4934         code because of bug reported James Chadd
4935
4936 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4937
4938         * ralloc.h: missing declarations from previous patch,
4939         seems that patch for ralloc.h was never applied, fixed
4940
4941 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4942            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4943
4944         * pcode.c,
4945         * pcode.h,
4946         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4947         indirect addressing. Marked FSR0 as deprecated
4948         * gen.c (pointerCode): commented out, not needed now
4949         (pic16_popGet2p): new MOVFF helper function
4950         (genGenPointerGet),
4951         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4952         (shiftRLong): removed duplicate debugging info
4953
4954 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4955
4956         * src/ds390/gen.c (genNearPointerGet),
4957         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4958         optimization with bits, but not bitfields.
4959         * src/ds390/ralloc.c (packRegisters),
4960         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4961
4962 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4963
4964         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4965
4966 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4967
4968         * src/SDCCsymt.h,
4969         * src/SDCCicode.c (operandFromSymbol),
4970         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4971         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4972         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4973         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4974         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4975         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4976         bug #892038
4977         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4978         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4979         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4980         * src/SDCCsymt.c (newSymbol),
4981         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4982         enumerator_list),
4983         * src/SDCCval.h,
4984         * src/SDCCval.c (newiList): fixed bug #885705
4985
4986 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4987
4988         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4989         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4990
4991 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4992
4993         * device/include/c8051f120.h,
4994         * device/include/c8051f300.h,
4995         * device/include/c8051f310.h: added/updated header files for Silicon
4996         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4997         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4998         in new section Submitting patches
4999
5000 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5001
5002         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
5003         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5004         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5005         genGenPointerSet),
5006         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
5007         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5008         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5009         genGenPointerSet),
5010         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
5011         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5012         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5013         genGenPointerSet),
5014         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
5015         genFarPointerGet, genCodePointerGet, genGenPointerGet,
5016         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
5017         genGenPointerSet): fixed bug #892400
5018         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
5019         to eliminate build warnings.
5020         * src/SDCCast.c (processParms),
5021         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
5022         fixed bug 751859
5023         * support/valdiag/valdiag.py: added GCC to the list of defines active
5024         when compiling with gcc
5025
5026 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5027
5028         * support/Util/SDCCerr.h,
5029         * support/Util/SDCCerr.c,
5030         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
5031         with an incomplete type (fixed bug #883734)
5032         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
5033
5034 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5035
5036         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
5037
5038 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5039
5040         * src/SDCCast.c (decorateType),
5041         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
5042         function pointer implementation
5043         * support/regression/tests/funptrs.c: added tests to verify both forms
5044         of function pointers work correctly. Added tests to verify parameters
5045         are passed in the correct order.
5046
5047 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
5048
5049         * device.c (regCompare): registers are sorted by ascending
5050         address and increasing size,
5051         * main.c (_pic16_finaliseOptions): removed the declaration
5052         of compiler macro MCU. Now a macro of the format pic18fxxxx
5053         will be defined from the command line
5054
5055 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
5056             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
5057
5058         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
5059         PCOP_RLCF was overwritten!
5060         * gen.c (genSkip): commented out calls to pic16_emitcode,
5061         * (genCmpEQ): fixed "long" compares, only high word did get compared,
5062         * (genlshTwo),
5063         * (genRRC): added debugging info,
5064         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
5065         overwritten while shifting,
5066         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
5067         overwritten while shifting,
5068         * (AccLsh),
5069         * (AccRsh),
5070         * (shiftLLeftOrResult),
5071         * (shiftRLeftOrResult),
5072         * (shiftRLong),
5073         * (shiftLLong): Implemented with pic16_emitpcode
5074         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
5075         * (genLeftShift): Fixed bug, operand for shift by variable always
5076         was "and"ed with 0x0f,
5077         * (genLeftShiftLiteral),
5078         * (genrshTwo),
5079         * (genRightShiftLiteral): added debugging info,
5080         * (genrshFour): added comment,
5081         * (genRightShift): determined signedness from operand "left"
5082         instead of "result"
5083
5084 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5085
5086         * src/SDCCicode.c (geniCodeParms),
5087         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
5088         function pointers, fixed function pointer bugs #861242 and #861896
5089
5090 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5091
5092         * device/include/c8051f000.h,
5093         * device/include/c8051f120.h,
5094         * device/include/c8051f300.h: added header files for Silicon
5095         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
5096
5097 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
5098
5099         * src/SDCCast.c (processParams): added new type flow and restructured
5100         (gatherAutoInit): added new type flow
5101         (addCast): cosmetic changes
5102         (getLeftResultType): added new type flow for array indices, patch
5103         provided by Stas, see FR #877103
5104         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
5105         array index patch by Stas
5106         * src/SDCCast.h: added prototype getResultTypeFromType()
5107         * src/SDCCval.h,
5108         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
5109         * src/pic/glue.c (pic14emitStaticSeg),
5110         * src/pic16/glue.c (pic16emitStaticSeg),
5111         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
5112         for initialization of symbols
5113         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
5114         * support/Util/SDCCerr.h:
5115         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
5116         * .version: bumped version number to 2.3.8
5117         * device/include/Makefile.in (install),
5118         * doc/Makefile (install): changed to 'rm `find ...`' construct to
5119         avoid warnings
5120
5121 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
5122
5123         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
5124         Slade Rich fixed an optimization bug
5125         * src/pic/pcodepeep.c,
5126         * src/pic/pcoderegs.c
5127         * doc/Makefile (install): added test for directory
5128
5129 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5130
5131         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
5132         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
5133         * src/pic/ralloc.c (getRegPtr, getRegGpr),
5134         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
5135         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
5136         * as/mcs51/asexpr.c (term),
5137         * as/hc08/asexpr.c (term): fixed bug #887146
5138
5139 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5140
5141         * src/z80/gen.c (genMult): handle single byte result product
5142         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
5143         DUMMY_READ_VOLATILE (fixed bug #886367)
5144
5145 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5146
5147         * support/regression/tests/libmullong.c: fixed logic, on little endian
5148         hosts we ended without a mullong_wrapper()
5149
5150 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5151
5152         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
5153         virus/worm forged address usage.
5154
5155 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
5156
5157         Fixed promotion, it should be done on AST level:
5158         * src/SDCCast.c (addCast): added promotion to int
5159         (decorateType): updated call to upCast()
5160         * src/SDCCicode.c (geniCodeLeftShift): removed call to
5161         usualUnaryConversions()
5162
5163 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
5164
5165         * support/regression/tests/literalop.c (mulWrapper): Added a
5166         wrapper to remove integer overflow warnings.
5167
5168         * support/regression/tests/float_trans.c: Made work on host.
5169
5170         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
5171         location of sz80.
5172
5173         * support/regression/generate-cases.py (main): Changed from inline
5174         to a main method.
5175
5176         * doc/Makefile (install): Changed to depth first to get rid of
5177         missing directory install warning.
5178
5179         * as/Makefile (install-doc): Made work on Mac.
5180
5181 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
5182
5183         * src/SDCCast.c: added an additional type flow in decorateType() of
5184         opposite direction, see feature request #860006; it's enabled at runtime
5185         by setting the environment variable SDCC_NEWTYPEFLOW
5186         * src/SDCCast.h: changed prototype of decorateType()
5187         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
5188         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
5189         'char' to 'int' can be omitted, if both operands are 'unsigned char';
5190         see feature request #877103
5191         * src/SDCCval.c: updated call of decorateType()
5192         (valBitwise): fixed bug #882876
5193         (valMinus): added promotion
5194         (valLogicAndOr): result is unsigned
5195         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
5196         * src/SDCCsymt.c (computeType),
5197         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
5198         must not cause an unsigned operation
5199         * src/pic/glue (pic14emitRegularMap),
5200         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
5201
5202 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
5203
5204         * src/pic/pcode.c (PCodeID): commented out left over debug code
5205
5206 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
5207
5208         * support/valdiag/tests/overflow.c: added shift tests
5209         * src/pic/device.c,
5210         * src/pic/gen.c,
5211         * src/pic/gen.h,
5212         * src/pic/glue.c,
5213         * src/pic/main.c,
5214         * src/pic/pcode.c,
5215         * src/pic/pcode.h,
5216         * src/pic/pcodepeep.c,
5217         * src/pic/pcoderegs.c,
5218         * src/pic/ralloc.c,
5219         * src/pic/ralloc.h: applied patch from Slade Rich;
5220         added support for multiple code pages and multiple RAM banks on the
5221         PIC 14 port. The ASM files now no longer simply assume all the
5222         code / RAM are in the same page / bank. This means the linker can
5223         safely allocate code/RAM of separate ASM files to different pages/banks.
5224         * doc/sdccman.lyx: added Slade's tips
5225         * src/mcs51/peeph.def: fixed bug #880768
5226
5227 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5228
5229         * src/hc08/ralloc.c (rematStr): fixed bug #879282
5230         * src/SDCCast.c (decorateType): fixed bug #880197
5231
5232 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
5233
5234         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
5235         getopt.h.
5236
5237         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
5238         strtof is not part of C89 and isn't included with Mac OS X.
5239
5240 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5241
5242         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
5243         shiftL2Left2Result): fixed bug #879326
5244         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
5245         (genMultOneByte): fixed bug in signed vs unsigned multiplication
5246         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
5247         address fetch for clr instruction
5248         * device/lib/hc08/_mulint.c: created optimized assembly version
5249         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
5250
5251 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
5252
5253         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
5254         proposed in FR #877103
5255
5256 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
5257
5258         * src/SDCCval.c (cheapestVal): added missing checks
5259         * src/SDCCicode.c (usualBinaryConversions): fixed condition
5260         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
5261
5262 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
5263
5264         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
5265         equal operands
5266
5267 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
5268
5269         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
5270         loaded with the linker search paths (-L arguments) and the libraries
5271         to be linked with the current source (-l arguments). Changes
5272         currently will affect only the pic16 port.
5273         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
5274         include path the port specific paths and port specific libraries,
5275         * gplink command now contains the $3 argument,
5276         * src/pic16/device.h,
5277         * src/pic16/device.c,: structure PIC_device is made public and
5278         renamed to PIC16_device, the same for variable Pics which is renamed
5279         to Pics16. Updated all references to them.
5280         * src/pic16/glue.c (pic16glue): corrected bug with code
5281         initialization which bypassed the variable initializations block.
5282
5283         * device/lib/pic16/Makefile.rules: removed --penable-stack from
5284         COMPILE_FLAGS and added the --nostdinc option
5285
5286 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5287
5288         * device/include/mc68hc908jb8.h: Register defs for another member
5289         of the hc08 family. Contributed by Bjorn Bringert - thanks!
5290
5291 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
5292
5293         Documenting changes from previous commits.
5294         * configure.in (version 1.56),
5295         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
5296         when generating output files to configure the pic16 library,
5297         but now I've commented it out, since gputils aren't installed in the
5298         SF compile farm, so library won't compile
5299
5300         * device/lib/Makefile.in (version 1.56): initially I've added in
5301         target 'all' the prerequestive 'model-pic16' so it compiled the
5302         pic16 library, but now I've commented it out for the same reasons
5303         above,
5304         * added targets 'model-pic16' and 'objects-pic16' to compile the
5305         library
5306         * added target 'port-specific-objects-pic16' to handle the
5307         generated libraries and copy them into the build/ directory
5308         * added target 'clean-intermediate-pic16' to clean intermediate
5309         files into pic16 directory
5310         * in target 'installdirs' added line to create directory pic16 in
5311         the installation path
5312
5313         * device/include/Makefile.in (version 1.11): in target 'install'
5314         added lines to copy all header files to installation path,
5315         * in target 'installdirs' added line create directory for pic16
5316         headers in the installation path
5317
5318 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
5319
5320         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
5321          a function call
5322
5323 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
5324
5325         * configure,
5326         * device/lib/configure.in,
5327         * device/lib/configure: fixed for autoconf 2.57
5328
5329 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5330
5331         * src/z80/main.c (_parseOptions): fixed the portmode= command line
5332         option so that it actually works. Made it specific to the z80, since
5333         the gbz80 doesn't have these kinds of I/O ports.
5334
5335 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * device/include/z180.h,
5338         * device/lib/_memcpy.c,
5339         * device/lib/_memmove.c,
5340         * device/lib/_mulint.c,
5341         * device/lib/ser_ir.c,
5342         * device/lib/ser_ir_cts_rts.c,
5343         * device/lib/_strcmp.c,
5344         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
5345         * src/z80/main.c (_process_pragma): add support for pragmas bank and
5346         portmode; added deprecation warning for bank= and protmode= forms.
5347         Also, guard against buffer overflow.
5348         * src/z80/gen.c (aopGet): generate better code for sfr banked read
5349
5350 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5351
5352         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
5353         changed interrupt vector table generation to only emit declared vectors.
5354         * device/include/Makefile.in: added missing backslash
5355         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
5356
5357 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5358
5359         Mainly changes to support compilation of the device libraries
5360         * src/pic16/device.c: stack is allocated via symbol and not
5361         via literal number. The symbol is placed in the corresponding
5362         position of the data ram
5363         * (pic16_dump_section): relocatable and absolute uninitialized
5364         data are now emitted in sorted order to reduce section naming,
5365         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
5366         weren't marked as being in the access bank,
5367
5368 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
5369
5370         Added portion of GNU PIC Library under the directory
5371         device/include/pic16 and device/lib/pic16. These files
5372         contain the declarations of SFRs for the PIC18Fxx2 devices.
5373         The directory is initialized via configure from toplevel.
5374
5375 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
5376
5377         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
5378         the spilllocations to be compared correctly
5379
5380 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5381
5382         * src/SDCCast.c (decorateType): fixed bug introduced today
5383
5384 2004-01-12  Borut Razem <borut.razem AT siol.net>
5385
5386         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
5387         doc/sdccman.lyx: upper case pragmas are deprecated
5388
5389 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
5390
5391         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
5392         in simpler and even better code
5393
5394 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
5395
5396         * src/SDCCicode.c (operandOperation): fixed bug #874819
5397         * src/SDCCast.c (decorateType): fixed
5398         char foo (unsigned long ul) { return ul > 0; }
5399
5400 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5401
5402         * doc/sdccman.lyx: Moved and added some sections, small changes
5403         all over. Telling LaTeX to be less strict with word spacing
5404         to better keep the right margin. Changed some notes about
5405         maintainance of the ports in section 3.2.1 - is it OK like this?
5406
5407 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
5408
5409         SDCC source changes:
5410         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
5411         convilong): modified to inform the pic16 port that builtin functions
5412         are external
5413
5414         PIC16 PORT specific changes:
5415         * src/pic16/device.c pic16_dump_equates() added,
5416         processor registers declared internally by the port are emitted in
5417         the translation as equates,
5418         * src/pic16/gen.c: inline code is passed unprocessed to the
5419         translation,
5420         * (pic16_popGetLit2): fnuction modified to take second operand as
5421         pCodeOp pointer and not as literal,
5422         * (popRegFromIdx): prefixed with pic16_,
5423         * (pic16_popCombine2): modified to receive already allocated pCode
5424         operands,
5425         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
5426         * (genFunction): initializes local stack frame and pushes on stack
5427         all the registers used by this function,
5428         * (genEndFunction): restores all registers from stack and restores
5429         stack frame,
5430         * src/pic16/glue.c (pic16emitRegularMap): various changes and
5431         improvements,
5432         * (pic16glue): changed the program startup sequence,
5433         * added new dbName code 'A' for functions placed in absolute section
5434         * src/pic16/main.c: added function attribute _naked,
5435         * added pragma 'code' to place a fnuction at an absolute address,
5436         * added command line arguments --debug-ralloc and --pcode-verbose,
5437         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5438         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5439         * (pic16_newpCodeOpLit2): modified to take the second operand as
5440         pCodeOp pointer,
5441         * (pic16_printpBlock): modified to emit each function in a separate
5442         section,
5443         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5444         UPPER for immediate operands,
5445         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5446         instruction,
5447         * src/pic16/peeph.def: all peepholes with movff are commented out,
5448         because there is a problem in the pcode peep optimizer,
5449         * src/pic16/ralloc.c: the register allocator can now reuse local
5450         function symbols for another function. This saves register usage.
5451         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5452
5453         Added file src/pic16/NOTES with information about program writing on
5454         the current port version.
5455
5456 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5457
5458         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5459         and peephole 252 (array access)
5460
5461 2004-01-09  Borut Razem <borut.razem AT siol.net>
5462
5463         * src/SDCCmain.c : fixed #872250: -l command line defined library
5464           files are scanned before standard library files
5465
5466 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5467
5468         * src/SDCCast.c (decorateType): fixed bug #874046
5469
5470 2004-01-09  Borut Razem <borut.razem AT siol.net>
5471
5472         * support/scripts/sdcc.nsi: remove previous installation
5473
5474 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5475
5476         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5477         bytes for last interrupt vector (mcs51)
5478         * sdcc.spec: fixed typo
5479
5480 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5481
5482         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5483         gen51Code): more efficient parameter receive for --model-large
5484         ("bug" #845294)
5485
5486 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5487
5488         * src/ds390/main.c,
5489         * src/z80/main.c: added missed needLinkerScript flags (more than
5490         one port structure defined in these file)
5491         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5492         bug #795325
5493
5494 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5495
5496         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5497         * src/port.h: added flag needLinkerScript in port->linker
5498         structure to inform whether to create a .lnk file or not,
5499         * src/avr/main.c,
5500         * src/ds390/main.c,
5501         * src/hc08/main.c,
5502         * src/mcs51/main.c,
5503         * src/pic/main.c,
5504         * src/pic16/main.c,
5505         * src/xa51/main.c,
5506         * src/z80/main.c: changed appropriately to configure
5507         needLinkerScript flag
5508         * src/pic/gen.c,
5509         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5510         * src/pic/glue.c: added variable udata_section_name to
5511         override default uninitialized data segment definition for
5512         devices only with SHAREBANK memory (reported from Erik Epetrich)
5513         * (pic14emitOverlay): modified to emit a commented overlay segment
5514         directive when no overlay data exist
5515         * (picglue): modified to emit uninitialized data segment
5516         according to udata_section_name
5517         * src/pic/main.c (_pic14_parseOptions): added command line
5518         options --udata-section-name=[name] to override default
5519         udata definition name
5520         * modified _linkCmd and _asmCmd to include compiler passed
5521         arguments via -W option
5522         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5523         object file from '.rel' to '.o' in port->linker structure,
5524         changed size of fptr from 2 to 3 in port structure
5525
5526 2004-01-07  Borut Razem <borut.razem AT siol.net>
5527
5528         * support/scripts/sdcc.nsi: update PATH
5529         * support/scripts/sdcc.ico: craeted
5530
5531 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5532
5533         * device/include/Makefile.in: fix install
5534         * doc/Makefile: fix install
5535
5536 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5537
5538         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5539         in bug #860505
5540         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5541         how the function variable allocation summary is displayed; also
5542         include information about variables allocated to the overlay
5543         segment
5544
5545 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5546
5547         * as/mcs51/lkmain.c: Help about -Y option
5548         * as/mcs51/lkarea.c: Fixed gcc warnings
5549
5550 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5551
5552         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5553         fixed warning
5554         * support/valdiag/tests/overflow.c: added
5555         * src/SDCCast.c (decorateType),
5556         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5557         LEFT_OP (left shift)
5558
5559 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5560
5561         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5562         (default behaviour).
5563
5564 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5565
5566         A python script to validate compiler diagnostic messages. It can be
5567         used to verify that sdcc complains about bad c source code and
5568         gives a good location of the error.
5569         * support/valdiag/Makefile,
5570         * support/valdiag/valdiag.py,
5571         * support/valdiag/tests/*
5572
5573 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5574
5575         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5576         * src/SDCCsymt.c (newEnumType),
5577         * src/SDCCsymt.h
5578         * support/Util/SDCCerr.c,
5579         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5580         enum related bugs.
5581         * support/regression/tests/enum.c: added test for enum values that
5582         require at least 2 bytes of storage.
5583
5584 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5585
5586         * src/common.h: added ifndef/define/endif macros
5587         around the header file.
5588         Bug reported from Jesus Calvino-Fraga
5589
5590 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5591
5592         * sdcc.spec: updated
5593         * device/include/Makefile.in: don't install CVS directories
5594         * device/lib/Makefile.in: added removal of CVS directories after install
5595         * doc/Makefile: fixed install, added local_icons
5596         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5597         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5598         * src/ds390/gen.c (genRightShift): fixed bug #870788
5599         * src/SDCCast.c (decorateType): fixed bug #870781
5600
5601 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5602
5603         PIC16 port related changes:
5604         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5605         added variable stackPos,
5606
5607         * gen.c: genCall, assignResultValue: added support for
5608         pushing/retrieving function parameters to/from stack,
5609         genFunction,genEndFunction: setup stack frame for the
5610         generated function,
5611         genAddrOf: will be changed according to bug 863624
5612
5613         * added files genutils.c and genutils.h which contain gen*
5614         debugged and optimised functions extracted from gen.c
5615
5616         * glue.c: added variable 'externs' which holds extern symbols,
5617         pic16emitRegularMap: is modified to properly handle relocatable
5618          symbols under the new scheme,
5619         pic16createInterruptVect: is modified
5620         pic16printPublics: is modified to emit 'global' assembler directives,
5621         added pic16_printExterns to print extern symbols,
5622         pic16glue: initializes stack/frame pointer in the beginning of
5623         the assembly output. Temporary hack, will be corrected later,
5624         because gplink yet does not support stack and SDCC does not
5625         yet support a type of crt0.o object to create the final binary.
5626
5627         * Removed many lines that contain 8051 legacy code.
5628         * The code is finally placed under a 'code' directive.
5629         * Added port specific options.
5630
5631         * _process_pragma: simplified since now we do not need *special*
5632         include file to define SFR registers. But a separate header
5633         will be needed. This will be developed later.
5634         * _pic16_parseOptions: added, parses port specific options:
5635         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5636         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5637         --preplace-udata-with=
5638
5639         * _pic16_setDefaultOptions: modified to initialize section names,
5640         but hack is temporarly out of order since it needs improvement.
5641         * _pic16_genAssemblerPreamble: configuration words are emitted by
5642         their address instead of their name. This part is incomplete and
5643         supports only the 18Fxx2 devices. Other devices will emit an error
5644         during assembly since they do not contain the same set of config
5645         registers
5646         * _pic16_genIVT: is modified,
5647
5648         * pcode.c: added definitions for some hardware registers that are needed
5649         for stack support
5650         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5651         All PCI entries are updated. Now LFSR is supported.
5652         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5653         * added pic16_newpCodeOpLit2 to support instructions with
5654         two literal arguments
5655         * pic16_pCode2str: corrected code that emits assembler instructions
5656         with two literal operands and those that have an access bit modifier
5657         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5658         this fixes a bug which caused some labels to be lost, when an
5659         assembler directive was added, i.e. banksel,
5660         * pic16_FixRegisterBanking: improved logic that causes the insertion
5661         of bank switching,
5662         * InlineFunction: functions that are called once, are not any more
5663         inlined. This can be a port option in the future,
5664
5665         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5666
5667         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5668         hold the corresponding uninitialized symbols,
5669         * pic16_allocProcessorRegister: registers have explicit marked the
5670         accessBank field,
5671         * pic16_allocInternalRegister: registers are explicit marked as
5672         not used,
5673         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5674         processing list, so bit registers were lost,
5675         *
5676
5677         * ralloc.h: added field 'accessBank' and original symbol operand
5678         in register definition,
5679         * removed the field isMapped from register definition,
5680
5681         ** Several functions have been removed from various sources:
5682         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5683         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5684         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5685         pic16_assignRelocatableRegisters
5686
5687         ** others have been introduced:
5688         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5689         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5690
5691 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5692
5693         * support/scripts/inc2h.pl: changed definition of BIT_AT
5694         to emit 'sbit at' instead of 'bit at'. This was a request.
5695
5696         PIC16 port related preliminary changes:
5697         * gen.c: prefixed function popRegFromString with
5698         pic16_ and all references to it corrected
5699         * pcode.c: all pic16_pc_* hardware registers prefixed
5700         with underscore (_),
5701         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5702         * ralloc.c: newReg(): when register is REG_SFR then
5703         set address to rIdx,
5704         pic16_allocProcessorRegister(): marks register wasUsed=0
5705         pic16_writeUsedRegs(): added a call to assign processor
5706         registers via pic16_assignFixedRegisters
5707
5708 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5709
5710         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5711         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5712         variables in unused register banks.  Also the SSEG is placed
5713         wherever there is enough space for it, and IDATA can be anywhere
5714         in internal RAM.  For now compile using -Wl-Y[stack_size].
5715         The mem file is different for this option as well, since it
5716         makes no sense of talking about DSEG lenght.
5717
5718 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5719
5720         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5721         in certain cases, e.g. when ROM assignment, patch provided
5722         from Albert den Haan.
5723
5724 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5725
5726         Many signedness and type propagation fixes:
5727         * src/SDCCicode.c: made geniCodeCast() static
5728         replaced SPEC_ by IS_ (cosmetic)
5729         (operandOperation): fixed div and mod operation
5730         (usualBinaryConversions): added support for promotion of char
5731         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5732         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5733         (geniCodeAdd): an array index will stay unsigned, even if promoted
5734         from char to int
5735         (geniCodeArray): ditto
5736         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5737         * src/SDCCsymt.c (computeType): added more support for char;
5738         promotion of char is selectable by promoteCharToInt, fixed signedness
5739         for all cases
5740         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5741         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5742         * src/SDCCval (val*): replaced signedness calculation by
5743         computeType()
5744         rearranged if-branches (cosmetic)
5745         (valShift): added warning W_SHIFT_CHANGED
5746         (valCompare): fixed problem with different types
5747         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5748         * support/regression/tests/literalop.c: added many cases
5749         * support/regression/tests/ast_constant_folding.c: changed finally to
5750         'unsigned int'
5751         * .version: new year, new version: 2.3.7
5752         * src/SDCCmain.c (main): applied patch #866468
5753         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5754         provided by Scott Bronson
5755         * doc/sdccman.lyx: updated documentation for sdcdb
5756         updated and added chapter tips
5757
5758 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5759
5760         * src/SDCCsymt.h: missing from yesterday's commits
5761
5762 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5763
5764         * src/SDCC.y (struct_or_union_specifier),
5765         * support/Util/SDCCerr.c,
5766         * support/Util/SDCCerr.h: verify that struct & union tags are used
5767         as declared.
5768
5769 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5770
5771         * src/SDCCglobl.h: missing from yesterday's commits
5772
5773 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5774
5775         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5776         sft_attributes, struct_declaration, parameter_declaration,
5777         type_name, start_block, declaration_list),
5778         * src/SDCC.lex (check_type): support redefinition of typedef names
5779
5780 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5781
5782         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5783         aligned xdata arrays. Erik helped me with the if clause.
5784
5785 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5786
5787         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5788         warning
5789
5790 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5791
5792         * src/SDCCast.h,
5793         * src/SDCCast.c (newAst_),
5794         * src/SDCCicode.h,
5795         * src/SDCCicode.c (ast2iCode, newiCode),
5796         * src/SDCCglobl.h,
5797         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5798         expr, statement, expression_statement, selection_statement,
5799         iteration_statement, expr_opt, jump_statement): foundation for tracking
5800         sequence points
5801         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5802         point code too)
5803
5804 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5805
5806         * support/Util/SDCCerr.c,
5807         * src/SDCCast.h,
5808         * src/SDCCast.c (createCase, createDefault, decorateType),
5809         * src/SDCClabel.c (labelUnreach),
5810         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5811         to error messages.
5812         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5813         (with thanks to Stas Sergeev)
5814         * device/include/time.h,
5815         * device/lib/time.c (CheckTime): suppress unreachable code warning
5816
5817 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5818
5819         * src/SDCCast.c (createIvalCharPtr),
5820         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5821         bug #753752)
5822         * support/regression/tests/nullstring.c: tests for these two bugs
5823
5824 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5825
5826         * support/Util/SDCCerr.h,
5827         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5828         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5829         about storage class and 'at' used inside struct or union
5830         * src/SDCCBBlock.c (iCodeFromeBBlock),
5831         * src/SDCCcse.c (ifxOptimize),
5832         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5833         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5834         printIval, emitStaticSeg, emitOverlay),
5835         * src/SDCClabel.c (deleteIfx),
5836         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5837         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5838         gatherAutoInit, processParms),
5839         * support/Util/SDCCerr.h,
5840         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5841         reporting for post-parse errors.
5842
5843 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5844
5845         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5846         implicit casts via union; they don't work on big endian systems
5847         (possible fix for bug #861138)
5848
5849 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5850
5851         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5852         * src/mcs51/main.c: fixed the fix for bug #737001
5853
5854 2003-12-15  Borut Razem <borut.razem AT siol.net>
5855
5856         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5857
5858 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5859
5860         * support/makebin/makebin.c: put output in binary mode
5861
5862 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5863
5864         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5865         xdata and data memory on startup. Set the environment variable
5866         SDCC_NOGENRAMCLEAR to disable this.
5867         * src/mcs51/peephole.def,
5868         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5869         (allows non-interrupt and interrupt code to safely compete for a resource
5870         without the non-interrupt code having to disable interrupts)
5871
5872 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5873
5874         * src/SDCCicode.c (geniCodeAdd),
5875         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5876         with valFromType if type might be a pointer and host is big endian).
5877         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5878         types, not just integer types.
5879         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5880         multiply defined with mismatching "at" address.
5881
5882 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5883
5884         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5885         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5886         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5887         with embedded nulls (fixed bug #753752)
5888
5889 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5890
5891         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5892         Apparently this did not see much testing (endless loop)
5893
5894 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5895
5896         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5897
5898 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5899
5900         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5901         gracefully handle NULL memmap pointers
5902
5903 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5904
5905         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5906         instead of deleting the iCode when an operand is volatile
5907         * src/z80/gen.c (genDummyRead),
5908         * src/mcs51/gen.c (genDummyRead),
5909         * src/ds390/gen.c (genDummyRead),
5910         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5911         not just IC_RIGHT
5912         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5913         * src/SDCC.y: fixed bug #850420
5914
5915 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5916
5917         Applied z80 i/o port patch from Peter Townson and fixed some operators
5918         to better handle operands in A register.
5919         * device/include/z180.h
5920         * src/SDCC.y
5921         * src/SDCCglue.c
5922         * src/z80/gen.c
5923         * src/z80/gen.h
5924         * src/z80/main.c
5925         * src/z80/peeph-z80.def
5926         * src/z80/peeph.def
5927         * src/z80/z80.h
5928
5929 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5930
5931         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5932
5933 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5934
5935         * device/lib/hc08/_mullong.c: Removed extra #endif
5936
5937 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5938
5939         * sim/ucsim/hc08.src/inst.cc,
5940         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5941         carries from x to h
5942         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5943         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5944         * device/include/stdarg.h: fixed varargs for hc08
5945         * device/lib/Makefile.in,
5946         * device/lib/hc08/Makefile,
5947         * device/lib/hc08/_mulint.c,
5948         * device/lib/hc08/_mullong.c: fixed some endian problems
5949
5950 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5951
5952         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5953         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5954         * device/lib/_gptrget.c,
5955         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5956
5957 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5958
5959         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5960         * src/SDCCast.c (astErrors): fixed bug #846007
5961         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5962
5963 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5964
5965         * src/SDCCast.c (decorateType): disabled a transformation I added in
5966         revision 1.188 (access to fields of a structure at an absolute address);
5967         it breaks with bitfields, extern declarations, and gcse analysis.
5968         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5969         could be assigned through a pointer, so don't complain.
5970         * src/SDCCast.c (astErrors),
5971         * src/SDCCast.h,
5972         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5973
5974 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5975
5976         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5977         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5978         output of __config directives, since gpasm now supports them
5979         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5980         pre-processor macro, i.e. -DMCU=p18f452
5981         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5982         and modified to handle 'cast' icode similarly to '=' icode
5983         * src/pic16/device.h (typedef struct PIC_device): added field
5984         'extMIface' to indicate that chip has external memory interface
5985         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5986         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5987         18F8720
5988
5989 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5990
5991         * src/SDCC.y (pointer): fixed bug #846006
5992         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5993         * src/SDCCast.c (decorateType): fixed bug #846009
5994         * src/ds390/peeph.def,
5995         * src/ds390/gen.c (genAnd, genOr),
5996         * src/mcs51/peeph.def,
5997         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5998
5999 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6000
6001         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
6002         * src/SDCCdflow.c
6003         * src/SDCCcse.c
6004         * src/SDCCcse.h
6005         * src/SDCCBBlock.h
6006         * src/SDCCBBlock.c
6007
6008 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
6009
6010         fixed bug #845089
6011         * src/SDCCbitv.h,
6012         * src/SDCCbitv.c: added function to free a bitvector
6013         * src/SDCClrange.h,
6014         * src/SDCClrange.c: added function to recompute the liveranges
6015         * src/avr/ralloc.c,
6016         * src/ds390/ralloc.c,
6017         * src/hc08/ralloc.c,
6018         * src/mcs51/ralloc.c,
6019         * src/pic/ralloc.c,
6020         * src/pic16/ralloc.c,
6021         * src/xa51/ralloc.c,
6022         * src/z80/ralloc.c: recompute the liveranges after register packing
6023
6024 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
6025
6026         * src/SDCCloop.c (newInduction): fixed bug #845630
6027
6028 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6029
6030         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
6031         inadvertantly left behind from my 2003-11-12 change
6032
6033 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6034
6035         Updated headers I neglected to commit yesterday.
6036         * src/SDCClrange.h,
6037         * src/SDCCicode.h
6038
6039 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6040
6041         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
6042         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
6043         * src/SDCCopt.c (eBBlockFromiCode),
6044         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
6045         the creation of the key hash table from the sequencing so it can be used
6046         earlier (for some GCSE bug fixes still pending)
6047
6048 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6049
6050         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
6051         * support/regression/tests/addsub.c: testing genPlus shortcut
6052
6053 2003-11-15  Borut Razem <borut.razem AT siol.net>
6054
6055         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
6056
6057 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6058
6059         * src/SDCCcse.c (cseBBlock): fixed bug #527779
6060         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
6061         ordering is immaterial.
6062         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
6063
6064 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
6067         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
6068         (SIGSEV) of bug #840381
6069         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
6070         unlink new file before rename if new and old filenames are the same)
6071
6072 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6073
6074         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
6075         uninitialized variables) for the mcs51. Set environment variable
6076         SDCC_GENRAMCLEAR to test.
6077         xdata initialization slightly shorter
6078
6079 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6080
6081         * src/SDCCsymt.h,
6082         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
6083         #838241 & 780691 (basicly the same bug)
6084         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
6085         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
6086
6087 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
6088
6089         * src/SDCCmain.c (linkEdit): "fix" #834252
6090
6091 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6092
6093         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
6094         * src/SDCCast.h,
6095         * src/SDCC.y: fixed bug #819403
6096
6097 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6098
6099         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
6100         the reentrant attribute.
6101         * src/hc08/gen.c (genPackBits): added missing stack readjustment
6102         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
6103         simulation
6104         * src/SDCCast.c (decorateType): fixed bug with storage class not being
6105         updated during pointer dereference; f.e. ~(((char *)1)*) was being
6106         erroneously reduced to a literal.
6107         * src/hc08/ralloc.c (packRegisters, rematStr),
6108         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
6109         some cases
6110
6111 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6112
6113         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
6114         * doc/sdccman.lyx: changed from 'article' to 'book'
6115         * doc/Makefile: readded test_suite_spec and cdbfileformat
6116
6117 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
6118
6119         * device/include/stdlib.h: include malloc.h to comply with ANSI
6120         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
6121
6122 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6123
6124         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
6125         * doc/clean.mk: also remove *.out files
6126         * doc/sdccman.lyx: some additions, larger top/bottom margins
6127
6128 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6129
6130         * src/SDCC.y: fixed bug #837365
6131         * support/regression/tests/bitopcse.c
6132         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
6133         a symbol (might be valop instead)
6134         * device/lib/Makefile.in: added errno.c to HC08SOURCES
6135         * device/lib/clean.mk: added hc08 to the cleaning list
6136
6137 2003-11-04  Borut Razem <borut.razem AT siol.net>
6138
6139         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
6140           made 2003-11-04
6141         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6142           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
6143           malloc is declared in standard stdlib.h
6144
6145 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6146
6147         * device/lib/hc08/Makefile: need to clean .rel not .o files
6148         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
6149
6150 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6151
6152         * src/port.h,
6153         * src/hc08/main.c,
6154         * src/mcs51/main.c,
6155         * src/ds390/main.c,
6156         * src/z80/main.c,
6157         * src/avr/main.c,
6158         * src/pic/main.c,
6159         * src/pic16/main.c,
6160         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
6161         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
6162         tests (which uses the port's oclsExpense function)
6163         * src/SDCC.y,
6164         * src/SDCCast.c,
6165         * src/SDCCicode.c,
6166         * src/hc08/gen.c,
6167         * src/ds390/gen.c,
6168         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
6169
6170 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6171
6172         * src/SDCCcse.c (ifxOptimize),
6173         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
6174         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
6175         deleting the IFX iCode.
6176         * src/hc08/ralloc.c: reduced unneeded slocs
6177         * src/hc08/gen.c: fixed bug in asmopToBoolean
6178
6179 2003-11-04  Borut Razem <borut.razem AT siol.net>
6180
6181         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
6182           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
6183           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
6184           transferred to configure
6185
6186 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
6187
6188         Use headers defined in the C[++] standards:
6189         * sim/ucsim/gui.src/serio.src/fileio.cc
6190         * sim/ucsim/gui.src/serio.src/frontend.cc
6191         * sim/ucsim/gui.src/serio.src/main.cc
6192         * sim/ucsim/gui.src/serio.src/posix_signal.cc
6193         * support/Util/NewAlloc.c
6194         * as/hc08/lklibr.c
6195         * as/mcs51/lklibr.c
6196         * as/z80/aslist.c
6197         * as/z80/assym.c
6198
6199 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6200
6201         * Added MSVC projects for hc08 assembler and linker:
6202         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
6203         /as/hc08/link_hc08.dsp
6204
6205 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
6206
6207         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
6208
6209 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
6210
6211         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
6212
6213 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6214
6215         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
6216
6217 2003-10-31  Borut Razem <borut.razem AT siol.net>
6218
6219         * support/cpp2/cpplib.h,
6220           support/cpp2/cpplib.c,
6221           support/cpp2/cpplex.c,
6222           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
6223           to switch _asm block preprocessing on / off. Default is
6224           #pragma preproc_asm +
6225
6226 2003-10-31  Borut Razem <borut.razem AT siol.net>
6227
6228         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
6229           when outputting comment blocks (when executed with -C option) and
6230           _asm (SDCPP specific) blocks
6231
6232 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6233
6234         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
6235
6236 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
6237
6238         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
6239
6240 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
6241
6242         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
6243         * src/SDCCast.c (decorateType): fixed bug #832664
6244
6245 2003-10-31  Borut Razem <borut.razem AT siol.net>
6246
6247         * support\cpp2\cpplex.c: fixed for SDCPP:
6248           comments(when executed with -C option) and _asm blocks
6249           were included even if they where in skipped #if block.
6250           Applied solution from GCC cpp 3.3.2
6251
6252 2003-10-31  Borut Razem <borut.razem AT siol.net>
6253
6254         * src/SDCC.lex: sdcc now understands both formats:
6255           '# <line_number> <file_name>' and
6256           '#line <line_number> <file_name>'
6257         * support/cpp2/cppmain.c: sdcpp now generates the standard
6258           '# <line_number> <file_name>' instead of former
6259           '#line <line_number> <file_name>'
6260
6261 2003-10-30  Borut Razem <borut.razem AT siol.net>
6262
6263         * support/cpp2/cpphash.h,
6264         * support/cpp2/cpplib.h
6265         * support/cpp2/cpplex.c,
6266         * support/cpp2/cppmain.c,
6267         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
6268
6269 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6270
6271         Fixed a number of problems revealed by bug #827883.
6272         * src/SDCCloop.c (loopInvariants): Spill location of the
6273         result operand should be recomputed if extracted from
6274         a loop. Also, don't extract assignments of an iTemp
6275         from a literal.
6276         * src/SDCCast.c (isConformingBody): loop reversal should
6277         not occur if the control variable is involved with a
6278         relational operator.
6279
6280 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
6281
6282         * .version: bumped to 2.3.6 to reflect the big improvements
6283         made by Erik and Klaus. Thanks!
6284
6285 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
6286
6287         Replaced the livrange code.
6288         * src/SDCClrange.c: added new LR code
6289         * src/SDCCloop.c,
6290         * src/SDCCBBlock.h: removed remainig parts from old LR code
6291         * src/ds390/ralloc.c,
6292         * src/ds390/gen.c: minor fixes to make it work with new code
6293
6294 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6295
6296         * as/hc08/asm.h,
6297         * as/hc08/lkrloc.c,
6298         * src/hc08/gen.c,
6299         * src/hc08/ralloc.c: Fix various warnings related to the hc08
6300         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
6301         (tweaked fix for bug #818696)
6302
6303 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6304
6305         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
6306
6307 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6308
6309         * src/SDCCmain.c,
6310         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
6311         * src/mcs51/gen.c (gencjneshort),
6312         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
6313         more efficient (per Scott Bronson's suggestion)
6314
6315 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6316
6317         Extended the semantics of the critical keyword to include
6318         individual statements. See RFE #827755 and #799831
6319         * src/SDCC.y
6320         * src/SDCCicode.c
6321         * src/SDCCopt.c
6322         * src/SDCCast.c
6323         * support/Util/SDCCerr.c
6324         * support/Util/SDCCerr.h
6325         * src/mcs51/gen.c
6326         * src/ds390/gen.c
6327         * src/hc08/gen.c
6328
6329 2003-10-19  Borut Razem <borut.razem AT siol.net>
6330
6331         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
6332
6333 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
6336         Fixed bug #818696
6337         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
6338         and predecrement operand is displayed
6339
6340 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6341
6342         * src/SDCCval.c (valMinus): fixed bug #826041
6343
6344 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6345
6346         Some hc08 related updates that I missed earlier
6347         * sim/ucsim/stypes.h
6348         * support/regression/ports/hc08/spec.mk
6349
6350 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6351
6352         New target "hc08" for the Motorola 68hc08 family of micros
6353
6354         * configure
6355         * configure.in
6356         * Makefile
6357         * src/hc08/*
6358         * src/SDCCmain.c
6359         * src/port.h
6360         * sim/ucsim/hc08.src/*
6361         * sim/ucsim/configure.in
6362         * src/ucsim/configure
6363         * sim/ucsim/packages_in.mk
6364         * as/hc08/*
6365         * as/Makefile
6366         * device/include/mc68hc908qy.h
6367         * device/lib/hc08/*
6368         * device/lib/Makefile.in
6369         * support/regression/ports/hc08/*
6370         * support/regression/Makefile
6371
6372 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6373
6374         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
6375         regression test
6376         * src/ds390/gen.c (genCast): fixed bug #821957
6377
6378 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
6379
6380         * device/lib/logf.c: "fixed" overlay bug
6381         * support/regression/ports/host/spec.mk: added m library
6382         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
6383         * support/regression/tests/float_trans: added (for Eric)
6384
6385 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
6386
6387         * src/mcs51/gen.c (genCpl): fixed bug
6388         http://sf.net/mailarchive/message.php?msg_id=6263915
6389
6390 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
6391
6392         * src/SDCCast.c (decorateType): added extended constant folding
6393         * src/SDCCsymt.c (computeType): cleanup
6394         * src/SDCCval.c (valShift): minor optimization
6395         * support/regression/tests/ast_constant_folding.c: added
6396
6397 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6398
6399         * src/SDCCmain.c: removed some unintended changes
6400
6401 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6402
6403         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
6404         * src/z80/gen.c: fixed part of bug #817589
6405         * src/SDCCsymt.c (checkFunction): fixed bug #817895
6406
6407 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
6408
6409         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
6410         * src/SDCCcflow.c
6411         * src/SDCCcse.c
6412         * src/SDCCdflow.c
6413         * src/SDCClabel.c
6414         * src/SDCClrange.c
6415         * src/SDCCmem.c
6416         * src/SDCCopt.c
6417         * src/SDCCpeeph.c
6418         * src/SDCCset.c
6419         * src/avr/ralloc.c
6420         * src/ds390/ralloc.c
6421         * src/izt/ralloc.c
6422         * src/mcs51/ralloc.c
6423         * src/pic/ralloc.c
6424         * src/pic16/ralloc.c
6425         * src/xa51/ralloc.c
6426         * src/z80/ralloc.c
6427         * src/z80/gen.c: removed unused label "release:"
6428
6429 2003-10-06  Borut Razem <borut.razem AT siol.net>
6430
6431         * src/SDCC.lex: removed definition of unused variables
6432           save_optimize and save_options
6433
6434 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
6435
6436         * clean.mk: removed '=' in "-maxdepth=1"
6437         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6438         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6439
6440 2003-10-06  Borut Razem <borut.razem AT siol.net>
6441
6442         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6443           my_unput() replaced by unput()
6444
6445 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6446
6447         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6448         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6449         type-punned pointer will break strict-aliasing rules"
6450         Old LR behaviour is again default; Klaus' LR can be choosen by
6451         defining the environment variable LRKLAUS
6452         * src/SDCCBBlock.h
6453         * src/SDCCloop.c
6454         * src/SDCClrange.c
6455         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6456         * clean.mk: fixed removal of files in bin/CVS/
6457         * device/lib/clean.mk: fixed removal of directories small and large
6458         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6459         * src/SDCCicode.c,
6460         * src/SDCCval.c: removed superflous test for pedantic
6461
6462 2003-10-05  Borut Razem <borut.razem AT siol.net>
6463
6464         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6465           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6466           message "unmatched #pragma SAVE and #pragma RESTORE"
6467
6468 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6469
6470         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6471           assembly, critical functions, atomic, nojtbound)
6472
6473 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6474
6475         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6476         * src/SDCCBBlock.h
6477         * src/SDCCloop.c
6478         * src/SDCCloop.h
6479         * src/SDCClrange.c
6480
6481 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6482
6483         * src/z80/gen.h,
6484         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6485         * src/mcs51/gen.h
6486         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6487         * src/ds390/gen.h
6488         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6489         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6490         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6491
6492 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6493
6494         * src/z80/gen.c (genRet): fixed bug #524753
6495         * src/z80/gen.c (genCast): fixed internal error on cast from
6496         pointer to long
6497         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6498         fix for bug #477835 to the z80
6499         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6500         for tracking iCodes in the peephole optimizer for z80
6501
6502 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6503
6504         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6505         the other part of bug #814548
6506         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6507
6508 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6509
6510         * src/SDCCcse.c: fixed part of bug #814548
6511
6512 2003-09-28  Borut Razem <borut.razem AT siol.net>
6513
6514         * src/asm.c: rewrite of printILine() to use temporary file instead
6515           a pipe
6516         * src/xa51/main.c: commented out declaration of int rewinds
6517
6518 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6519
6520         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6521
6522 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6523
6524         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6525         * src/asm.c (printILine): Fixed bug #811015
6526
6527 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6528
6529         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6530         freeing.
6531
6532 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6533
6534         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6535         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6536         to correctly handle general case of AOP_PAIRPTR
6537         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6538
6539 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6540
6541         * src/mcs51/ralloc.c (fillGaps),
6542         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6543         register positioning bug)
6544
6545 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6546
6547         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6548
6549 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6550
6551         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6552         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6553         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6554         (ralloc doesn't intentionally do this now, but perhaps later)
6555         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6556         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6557         register positioning bugs (Fixed bug #762602 and #795325)
6558         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6559         (Fixed bug #808779)
6560         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6561         lines that --i-code-in-asm generates
6562
6563 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6564
6565         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6566         trying to fclose a FILE* that was already closed.
6567
6568 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6569
6570         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6571         of const struct should be treated as if const themselves)
6572
6573 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6574
6575         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6576
6577 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6578
6579         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6580         Unix (/n) and DOS (/r/n) line terminations.
6581
6582 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6583
6584         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6585         bug #613775
6586
6587 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6588
6589         * src/mcs51/gen.c (genFunction, genEndFunction),
6590         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6591         and restore of EA so that stack offsets to parameters are
6592         correct when using both critical and reentrant/stack-auto.
6593         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6594         size (can be triggered in error if sloc is shared between
6595         different sized objects)
6596         * device/include/float.h: fixed macros to explicitly use
6597         unsigned long where needed
6598
6599 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6600
6601         Feature req. 799831: added code to allow nesting of critical functions
6602         * src/mcs51/gen.c (genFunction, genEndFunction)
6603         * src/ds390/gen.c (genFunction, genEndFunction)
6604
6605 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6606
6607         * src/SDCCsymt.c (sclsFromPtr),
6608         * src/SDCCsymt.h,
6609         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6610         support for standard C idiom of memory mapped variables; for
6611         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6612         to xdata int at 0x1234 tempvar = 1.
6613         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6614         provided by Akiya ISHIDA
6615
6616 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6617
6618         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6619         * src/SDCCval.c (constVal): added reduction from int to char
6620         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6621         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6622         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6623         to ignore the sign
6624         * support/regression/tests/shifts.c: fixed
6625
6626 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6627
6628         * src/z80/gen.c (genXor): Fixed bug #805445
6629
6630 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6631
6632         Fixed bug #621531 (const & volatile confusion in the type chain).
6633         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6634         refer to the const or volatile state of the pointer itself.
6635
6636         * src/SDCCast.c
6637         * src/SDCCglue.c
6638         * src/SDCCicode.c
6639         * src/SDCCsymt.c
6640         * src/SDCCval.c
6641         * src/SDCC.y
6642         * src/SDCCsymt.h
6643         * src/pic/gen.c
6644         * src/pic/ralloc.c
6645         * src/pic16/gen.c
6646         * src/pic16/ralloc.c
6647         * support/regression/tests/const.c
6648
6649 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6650
6651         When checking for duplicated modules, use absolute paths
6652         instead of relative paths.  Files changed:
6653
6654         * as/mcs51/lklib.c
6655         * link/z80/lklib.c
6656
6657 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6658
6659         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6660
6661 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6662
6663         * device/include/string.h: added size_t typedef, changed
6664         prototypes to use size_t, eliminated separate reentrant and
6665         non-reentrant declarations, added _memmove declaration
6666         * device/lib/_memcpy.c: changed to use size_t instead of int,
6667         changed /4 to >>2 to avoid division library call
6668         * device/lib/_memcmp.c,
6669         * device/lib/_memset.c,
6670         * device/lib/_strncat.c,
6671         * device/lib/_strncpy.c,
6672         * device/lib/_strncmp.c: changed to use size_t instead of int
6673         * device/lib/_memmove.c: new file (fixed bug #772294)
6674         * device/lib/Makefile.in: added _memmove.c
6675         * device/lib/z80/asm_strings.s: fixed bug #772290
6676         * support/regression/tests/bitfields.c: attempt to fix host assertion
6677         failure on amd64-unknown-linux2.2
6678
6679 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6680
6681         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6682         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6683         * as/z80/asmain.c (main): fixed bug #801766
6684
6685 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6686
6687         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6688         compilers
6689
6690 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6691
6692         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6693         reported in bug #800609
6694
6695 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6696
6697         * Top header beautifications in src/pic16 directory:
6698           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6699           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6700           pcoderegs.h, ralloc.c, ralloc.h
6701         * main.c: added top header and GPL license notice
6702         * pcode.c: fixed the if-conditional warning
6703
6704 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6705
6706         * device/lib/_mullong.c: replaced int by short for gcc
6707
6708 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6709
6710         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6711         and JUMPTABLE iCodes properly now (worked by accident before)
6712         * src/mcs51/gen.c (leftRightUseAcc),
6713         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6714         iCode properly now. Use getSize instead of nRegs since a & b
6715         aren't part of the nRegs tally.
6716
6717 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6718
6719         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6720         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6721           before instructions that use the _STATUS register
6722
6723 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6724
6725         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6726         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6727         fetching of the pointer
6728         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6729         copied from genNearPointerSet()
6730         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6731         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6732         If they pop r0/r1 they must be called in the opposite order than aopOp().
6733         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6734         (resp. --stack-auto), prepared for --xstack
6735
6736 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6737
6738         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6739
6740 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6741
6742         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6743         these ports have their own __sdcc_external_start()
6744
6745 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6746
6747         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6748         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6749         type for bits was changed. It resulted in bit variables becoming
6750         global, which is not permitted in PIC 14 assembly output.
6751
6752 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6753
6754         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6755
6756 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6757
6758         Z80 and MCS51 linkers complaint if a public symbol is defined
6759         in more than one library module:
6760
6761         * as/mcs51/lklib.c
6762         * link/z80/lklib.c
6763         * as/mcs51/Makefile.in
6764
6765 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6766
6767         A few small changes that speed up the peephole optimizer.
6768
6769         * src/SDCCpeeph.c
6770
6771 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6772
6773         Try to make the peephole optimizer smarter by maintaining
6774         an association between the assembly source code and the
6775         iCodes that originated them. Put this information to use
6776         with a new peephole rule condition "notVolatile" so that
6777         the rules can be aggressive yet still safe.
6778
6779         * src/SDCCpeeph.c
6780         * src/SDCCpeeph.h
6781         * src/mcs51/gen.c
6782         * src/mcs51/peeph.def
6783
6784 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6785
6786         Fixed bug #741761
6787
6788         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6789         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6790         if the left or right operand symbols have the accuse flag set.
6791
6792 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6793
6794         Changed the type of the result of the ! (NOT) operator to char;
6795         previously it returned the same type as the source. This allows
6796         us to eliminate all the genFloatNot functions (all of its target
6797         implementations were very buggy) since !float can use the same
6798         code as !long now.
6799
6800         * src/SDCCicode.c (ast2iCode): ! returns char
6801         * src/mcs51/gen.c (genNot, genNotFloat),
6802         * src/ds390/gen.c (genNot, genNotFloat),
6803         * src/z80/gen.c (genNot, genNotFloat),
6804         * src/pic/gen.c (genNot, genNotFloat),
6805         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6806
6807 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6808
6809         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6810         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6811            during interrupts. Ensure WSAVE is located at a shared bank address.
6812         2. Fixed page selection in some places
6813         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6814            the registers name strings.
6815         4. Fixed "signed / unsigned compare" compiler warnings.
6816         5. The PIC port manages its own allocation of the general purpose
6817            registers, but makes no attempt to reuse them. As a result when
6818            compiling it soon runs out of general purpose registers. Some
6819            additional code was added to the files pcode.c and device.c to walk
6820            through the function call tree and rename the registers so that they
6821            get reused.
6822
6823         * src/pic/device.c
6824         * src/pic/gen.c
6825         * src/pic/glue.c
6826         * src/pic/pcode.c
6827         * src/pic/pcode.h
6828         * src/pic/ralloc.c
6829         * src/pic/ralloc.h
6830         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6831         genPlus() & genMinus() when the result is the same as left or right
6832
6833 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6834
6835         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6836
6837 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6838
6839         Made bitfield a distinct type from bit so that bitfields
6840         convert as per ANSI C and bits retain their traditional
6841         boolean style behaviour. Implemented bitfield support in
6842         the z80 port.
6843
6844         * src/SDCCsymt.h,
6845         * src/SDCCsymt.c,
6846         * src/SDCCast.c,
6847         * src/cdbFile.c,
6848         * src/mcs51/gen.c,
6849         * src/ds390/gen.c: bit v bitfield split
6850         * src/z80/gen.c: New support for bitfields
6851         * support/regression/tests/bitfields.c: reenabled z80,
6852         added more tests
6853
6854 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6855
6856         Rules 246.x, 247.x relate to bitfields, the others speed up
6857         access to xdata mapped I/O devices.
6858
6859         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6860
6861 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6862
6863         Cleaned up genPackBits and genUnpackBits and added two helper
6864         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6865         for literal assignments in genPackBits (thanks to Frieder for
6866         reminding me).
6867
6868         * src/mcs51/gen.c
6869         * src/ds390/gen.c
6870
6871 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6872
6873         Fixed bug #748310 (pointer to function type mishandled when the
6874         function name is omitted). Also fixed a SIGSEGV when a function
6875         attribute (reentrant, etc) is used on a non-function or on a
6876         function but misplaced before the parameter list.
6877
6878         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6879         bug #748310
6880         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6881         * support/Util/SDCCerr.h,
6882         * support/Util/SDCCerr.c: Added func attr misuse error msg
6883
6884 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6885
6886         Fixed bug #787649 by anonymous
6887         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6888         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6889
6890 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6891
6892         Fixed numerous bitfield problems.
6893
6894         * src/SDCC.y: More bitfield related error checking
6895         * src/SDCCsymt.h,
6896         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6897         * support/Util/SDCCerr.h,
6898         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6899         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6900         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6901         * support/regression/tests/bitfields.c: tests added
6902
6903 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6904
6905         Made the constant following the "interrupt" keyword optional. If
6906         omitted, the function will not automatically be given an entry
6907         in the interrupt vector table (similar to #pragma NOIV, but
6908         less syntacticly kludgy). The interrupt number is also now
6909         range checked. Also fixed a bug in the high order bit example
6910         in the manual.
6911
6912         * src/SDCC.y
6913         * src/SDCCmem.c
6914         * src/SDCCglue.c
6915         * src/SDCCsymt.h
6916         * support/Util/SDCCerr.c
6917         * support/Util/SDCCerr.h
6918         * doc/sdccman.lyx
6919
6920 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6921
6922         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6923         * src/SDCCicode.c (operandOperation): rewritten some ops
6924         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6925         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6926         other type
6927         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6928         be re-activated by defining REDUCE_LITERALS)
6929         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6930         unsigned, but are signed by default
6931         * src/SDCCval.c (constVal): rearranged
6932         * src/SDCCval.c (valMod): preliminary fix
6933         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6934         * support/regression/literalop.c: added, work in progress
6935
6936 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6937
6938         Generate warnings for useless declarations like "char data;"
6939         that don't do what new users expect.
6940
6941         * src/SDCC.y
6942         * support/Util/SDCCerr.h
6943         * support/Util/SDCCerr.c
6944
6945 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6946
6947         * src/SDCCval.c (valMult): fix overflow detection of negative int
6948
6949 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6950
6951         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6952
6953         Changes to support big endian targets:
6954
6955         * src/ports.h
6956         * src/SDCCglue.c
6957         * src/avr/main.c
6958         * src/ds390/main.c
6959         * src/izt/i186.c
6960         * src/mcs51/main.c
6961         * src/pic/main.c
6962         * src/pic16/main.c
6963         * src/xa51/main.c
6964         * src/z80/main.c
6965
6966 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6967
6968         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6969         * device/lib/time.c: fixed warning "integer overflow in expression"
6970
6971 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6972
6973         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6974         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6975         constants are unsigned; added recognition of "u" flag for unsigned
6976         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6977         * src/SDCCval.c (valDiv, valMod): fixed signdness
6978         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6979         signedness of modulo, left and right shift
6980         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6981         * support/Util/SDCCerr.h: added warning W_INT_OVL
6982         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6983         * src/SDCCast.c (ast_print): improved output of constants
6984
6985 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6986
6987         Fixed some warnings when building with MSVC:
6988
6989         * as\mcs51\asdata.c
6990         * as\z80\asdata.c
6991         * as\mcs51\asm.h
6992         * as\z80\asm.h
6993         * link\z80\aslink.h
6994         * link\z80\lkdata.c
6995         * link\z80\lkeval.c
6996         * link\z80\lkgb.c
6997         * link\z80\lkihx.c
6998         * link\z80\lks19.c
6999         * link\z80\lksym.c
7000         * support\cpp2\cpplib.c
7001         * src\ds390\gen.c
7002         * src\mcs51\gen.c
7003
7004 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
7005
7006         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
7007
7008 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7009
7010         * support\librarian\clean.mk: Do not remove Makefile.
7011         * support\librarian\Makefile: added.
7012
7013 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7014
7015         Added librarian to MSVC build:
7016         * all.dsp
7017         * sdcc.dsw
7018         * support\librarian\librarian.dsp
7019
7020         'configure' not needed for librarian, removed:
7021         * support\librarian\configure
7022         * support\librarian\configure.in
7023         * support\librarian\config_in.h
7024         * support\librarian\Makefile.in
7025
7026         Hopefully these ones built the librarian and the rest of sdcc properly:
7027         * Makefile
7028         * Makefile.common.in
7029
7030         Messed up 'configure', so revert to previous version:
7031         * configure
7032         * configure.in
7033
7034 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
7035
7036         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
7037         there, while the mantissa of a double is "only" 53 bits wide.
7038
7039 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7040
7041         Adding sdcclib to the build.  MSVC project coming soon.
7042         Files added/changed:
7043
7044         * support\librarian\clean.mk
7045         * support\librarian\configure
7046         * support\librarian\configure.in
7047         * support\librarian\config_in.h
7048         * support\librarian\Makefile.bcc
7049         * support\librarian\Makefile.in
7050         * support\librarian\sdcclib.c
7051         * Makefile.bcc
7052         * Makefile
7053         * Makefile.common.in
7054         * configure
7055         * configure.in
7056
7057 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7058
7059         Linker now complaints if linked modules have conflicting options, for
7060         example, one compiled using --model-large and another one compiled with
7061         --model-small.  The following files were modified:
7062
7063         * as\mcs51\asdata.c
7064         * as\mcs51\aslink.h
7065         * as\mcs51\asm.h
7066         * as\mcs51\asmain.c
7067         * as\mcs51\asout.c
7068         * as\mcs51\i51pst.c
7069         * as\mcs51\lkdata.c
7070         * as\mcs51\lklibr.c
7071         * as\mcs51\lkmain.c
7072         * as\z80\asdata.c
7073         * as\z80\asm.h
7074         * as\z80\asmain.c
7075         * as\z80\asout.c
7076         * as\z80\z80pst.c
7077         * link\z80\aslink.h
7078         * link\z80\lkdata.c
7079         * link\z80\lklibr.c
7080         * link\z80\lkmain.c
7081         * src\SDCCglue.c
7082
7083 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7084
7085         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
7086         as/mcs51/lklibr.c: Generate a warning when a library is not found.
7087
7088 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
7089
7090         * src/z80/mappings.i: fix _mul[us][int,long] entries
7091
7092 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7093
7094         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
7095
7096 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7097
7098         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
7099         * support/regression/tests/bitopcse.c: added
7100         fixed warning:
7101         * src/avr/gen.c:
7102         * src/pic/gen.c:
7103         * src/pic16/gen.c:
7104         * src/z80/gen.c:
7105         * src/xa51/gen.c:
7106
7107 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7108
7109         added support for new library format to z80, gbz80 linkers:
7110         *link/z80/aslink.h
7111         *link/z80/lklex.c
7112         *link/z80/lklib.c
7113         *link/z80/lklist.c
7114
7115 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
7116
7117         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
7118         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
7119
7120 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
7121
7122         added DUMMY_READ_VOLATILE:
7123         * src/SDCC.y:
7124         * src/avr/gen.c:
7125         * src/xa51/gen.c:
7126         * src/z80/gen.c:
7127         * src/pic/gen.c:
7128         * src/pic16/gen.c:
7129         * src/mcs51/gen.c:
7130         * src/ds390/gen.c:
7131         * src/SDCCcse.c (algebraicOpts): many improvements
7132         * src/SDCCcse.h: removed algebraicOpts()
7133         * src/SDCCicode.c (picDummyRead): added
7134
7135 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7136
7137         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
7138         "Insufficient space in data memory".
7139
7140 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7141
7142         * src/mcs51/gen.c: fixed bug #771358
7143         * src/z80/gen.c: fixed bug #759087
7144
7145 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         * src/pic16/glue.c: minor cleanup by Vangelis
7148
7149 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7150
7151         * device/include/regc515c.h: fixed #758477
7152         * device/lib/_gptrget.c: saving some cycles in generic pointer get
7153         * device/lib/_gptrput.c: saved a few bytes
7154         * my tab spacing is 8, yours too?)
7155         * device/lib/_ser.c: process RX bytes earlier than TX bytes
7156         * device/lib/serial.c: process RX bytes earlier than TX bytes
7157         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
7158
7159 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
7160
7161         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
7162
7163 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7164
7165     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
7166
7167 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
7168
7169         * device/lib/Makefile.in: bad fix, reverted to 1.43
7170
7171 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
7172
7173         * device/lib/Makefile.in: added missing z80 object files
7174
7175 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
7176
7177         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
7178         pic16 progress by Vangelis:
7179         * src/SDCCglobl.h:
7180         * src/SDCCmain.c:
7181         * src/pic/Makefile:
7182         * src/pic:
7183         * pic/Makefile:
7184         * pic16/device.c:
7185         * pic16/device.h:
7186         * pic16/gen.c:
7187         * pic16/gen.h:
7188         * pic16/genarith.c:
7189         * pic16/glue.c:
7190         * pic16/main.c:
7191         * pic16/pcode.c:
7192         * pic16/pcode.h:
7193         * pic16/pcodepeep.c:
7194         * pic16/peeph.def:
7195
7196 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7197
7198     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
7199
7200 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7201
7202     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
7203     added gbz80 build to MSVC project.
7204     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
7205     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
7206     from 8051 stuff and setup so it links using a .lnk file.
7207
7208 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7209
7210     * support/librarian/sdcclib.c: sdcc librarian.
7211     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
7212     with sdcclib.
7213
7214 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7215
7216     * as/mcs51/lkmain.c: properly handle extensions in function afile.
7217
7218 2003-07-02  Borut Razem <borut.razem AT siol.net>
7219
7220         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
7221         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
7222         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
7223         src/xa51/main.c, src/z80/main.c:
7224         virtualization of glue() function: each port has it's own glue function,
7225         which is accessed by do_glue function pointer in PORT.general structure
7226
7227 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
7228
7229         * DS800C400 fun, improved ROM interface and tinibios.
7230
7231 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
7232
7233         * More support for DS80C400. Now includes beginning of interface to ROM.
7234
7235 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
7236
7237         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
7238
7239 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7240
7241         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
7242
7243 2003-06-19  Borut Razem <borut.razem AT siol.net>
7244
7245         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
7246
7247 2003-06-19  Borut Razem <borut.razem AT siol.net>
7248
7249         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
7250         fixed Z80 port - crt0.o: cannot open.
7251
7252 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
7253
7254         * support/Util/MySystem.c (merge_command): revert bad fix
7255
7256 2003-06-18  Borut Razem <borut.razem AT siol.net>
7257
7258         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
7259
7260 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7261
7262         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7263         option --use-stdout sends errors to stdout instead of stderr.
7264
7265 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
7266
7267         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
7268
7269 2003-06-15  Borut Razem <borut.razem AT siol.net>
7270
7271         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
7272         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
7273         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
7274         fixed width array of pointers replaced with sets;
7275         multiple include and lib paths ared transferred to preprocessor and linker
7276         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
7277         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
7278         fixed width array of pointers
7279         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
7280         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
7281         fixupPath(), getPathDifference()
7282         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
7283         fixed width array of pointers
7284
7285 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
7286
7287         * src/pic16/ralloc.c: fix warnings
7288         * src/pic16/pcode.c: fix warning
7289
7290 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
7291
7292          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
7293         know all the details, but essentially this set of changes enable
7294         the pic16 port to generate movff instructions and generate assembler
7295         directives,
7296         * src/SDCCmain.c:
7297         * src/pic16/gen.c:
7298         * src/pic16/glue.c:
7299         * src/pic16/pcode.c:
7300         * src/pic16/device.c:
7301         * src/pic16/main.c:
7302         * src/pic16/pcode.h:
7303         * src/pic16/pcoderegs.c:
7304         * src/pic16/ralloc.c:
7305         * src/pic16/ralloc.h:
7306
7307 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7308
7309         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
7310         added option --vc, so sdcc errors and warnings are compatible with
7311         Microsoft Visual Studio.
7312
7313 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7314
7315         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
7316           device/lib/libfloat.lib: added atof function.
7317
7318 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
7319
7320         * doc/sdccman.lyx: updated to Lyx 1.3
7321         * doc/cdbfileformat.lyx: updated to Lyx 1.3
7322         * doc/test_suite_spec.lyx: updated to Lyx 1.3
7323         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
7324
7325 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
7326
7327         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
7328
7329 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7330
7331         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
7332           additions to the "related tools/documentation" section
7333
7334 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
7335
7336         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
7337
7338 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
7339
7340         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
7341         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
7342
7343 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
7344
7345         * doc/sdccman.lyx: fix double dash and other minor things
7346         * doc/Makefile: fix double dash
7347
7348 2003-05-28  Karl Bongers(patches from Martin Helmling)
7349         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
7350           condition and ignore commands.
7351
7352 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7353
7354         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
7355           is in parts still quite out of date, I did changes as far as I felt makes sense
7356           for a non-native english speaker.
7357           Please feel free to add to the manual or to correct my changes.
7358         * doc/Makefile: undid touching the date of intermediate tex files.
7359
7360 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7361
7362         * doc/sdccman.lyx: Manual has an index now
7363
7364 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
7365
7366         Finalize muluint/mulsint and mululong/mulslong merging:
7367         * device/lib/_mulint.c
7368         * device/lib/_mullong.c
7369         * device/lib/gbz80/mul.s
7370         * device/lib/gbz80/stubs.s
7371         * device/lib/z80/mul.s
7372         * device/lib/z80/stubs.s
7373         * src/SDCCsymt.c (initCSupport)
7374
7375 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7376
7377         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
7378         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
7379           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
7380           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
7381           instead of /Zm500.
7382
7383 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7384
7385         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
7386           the regression tests I'm not brave enough to enable 245.b, 245.c
7387         * doc/sdccman.lyx: added latex preamble for hyperref package.
7388           Using pdflatex this will give you a hyperlinked pdf file with
7389           bookmarks. (prepend '%' before /usepackage if this breaks something)
7390
7391 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7392
7393          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
7394
7395 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
7396
7397         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
7398
7399 2003-05-21    <johan AT balder>
7400
7401         * src/SDCCglue.c (printIval): fixed bug #739934
7402
7403 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7404
7405         Applied patch from bug 737905 (renamed yylineo to mylineno):
7406         * src/altlex.c
7407         * src/SDCCast.c
7408         * src/SDCglobl.h
7409         * src/SDCC.lex
7410         * src/SDCCsymt.c
7411         * src/SDCCval.c
7412         * src/pic16/pcode.c: Cleaned warnings
7413         * src/pic16/pcodeflow.c: Cleaned warnings
7414         * src/pic16/pcoderegs.c: Cleaned warnings
7415
7416 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
7417
7418         * src/pic16/pcode.c: Cleaned warnings
7419         * src/pic16/pcodepeep.c: Cleaned warnings
7420         * src/pic16/ralloc.c: Cleaned warnings
7421
7422 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
7423
7424         * doc/sdccman.lyx: fixed bug 739745
7425         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
7426
7427 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
7428
7429         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
7430         it can be defined with CFLAGS when running configure
7431         * src/SDCCmain.c: fixed compiling + linking with object files
7432
7433 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
7434
7435         * configure.in: configure for pic16 port,
7436             added --disable-pic16-port
7437         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7438         * src/SDCCmain.c: linkOptions is changed to set *,
7439             added if/endif conditional macros to remove options help
7440             messages from optionsTable when a port is not configured, added
7441             support for the PIc16 port in the ports table, when executing
7442             the compiler with no port specified on command line, a default
7443             port is selected with the new macro DEFAULT_PORT which is
7444             defined in port.h, in setDefaultOptions() linkOptions is removed
7445             from initialization assignment, since now it is a set,
7446             parseCmdLine uses setParseWithComma for linkOptions, in
7447             linkEdit() linkOptions are accessed with new function indexSet()
7448             which returns the i'th item of a set variable. See SDCCset.c, in
7449             linkEdit() when calling buildCmdLine(), added linkOptions as
7450             last argument. Now users can pass arguments to gplink via the
7451             -Wl option, main() uses pic16glue() to glue up pic16 programs
7452         * src/SDCCpeeph.c: various changes to support pic16
7453         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7454             return the i'th item of the set
7455         * src/SDCCset.h: added function prototype for indexSet()
7456         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7457         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7458         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7459             added macro DEFAULT_PORT
7460         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7461         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7462             generated
7463         * src/pic16/glue.c: commented out some error producing lines
7464         * src/pic16/main.c: __config directives are commented out to stop
7465             gpasm complaining and test the linkage with gplink, _linkCmd and
7466             _asmCmd changed to be more gplink and gpasm friendly
7467         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7468             produced an error when parsed, peep rule 12 is added to utilize
7469             movff, but it is commented out since the pCode does not support
7470             yet a command with 2 address arguments
7471
7472 2003-05-18    <johan AT balder>
7473
7474         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7475         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7476 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7477
7478         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7479   Added feature to script commands from file.
7480
7481 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7482
7483         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7484         * src/SDCCutil.c: include ctype.h for win32
7485
7486 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7487
7488         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7489
7490 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7491
7492         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7493   Fixed so you can set breakpoints prior to run, run does not stop
7494   on entry now.  Add tbreak.  Other enhancements and fixes for use
7495   with ddd.
7496
7497 2003-05-12  Borut Razem <borut.razem AT siol.net>
7498
7499         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7500
7501 2003-05-11  Borut Razem <borut.razem AT siol.net>
7502
7503         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7504         the path of bin directory, so that PATH is the only env. variable, which has to be set
7505         in case of standard installation.
7506         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7507         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7508         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7509
7510 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7511
7512         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7513         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7514         temp files are in the port dir; clean the gen/test directory when
7515         generating new test.c
7516         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7517         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7518         * support/regression/tests/zeropad.c: added
7519
7520 2003-05-09    <johan AT balder>
7521
7522         * src/SDCCglue.c: fixed bug #597940
7523
7524 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7525
7526         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7527   cache sfr, optimize next,step, fix off by one sourceline,
7528   support ddd list function.
7529         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7530
7531 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7532
7533         * support/regression/HTMLgen.py: added compare_s2f()
7534         * support/regression/Makefile: redo 1.27
7535         * support/regression/generate-cases.py: redo 1.5
7536
7537 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7538
7539         * support/regression/tests/float.c: workaround 33 bit hex constant
7540         * support/regression/tests/simplefloat.c: fix division for host
7541
7542 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7543
7544         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7545         that tame's the PIC's over-aggressive optimizer.
7546
7547 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7548
7549          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7550          support for MSVC.
7551
7552 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7553
7554         Initial support for DS80C400. "Hello world" runs on TINIm400
7555         (with polled I/O).
7556
7557 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7558
7559          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7560          * Some notes on ddd usage added in debugger/README
7561          Martin Helmling adding more features and fixes for ddd GUI debugger.
7562          Code added for nexti, stepi, up, down, and other adjustments.
7563
7564 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7565
7566         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7567         * src/pic/peeph.def Added two rules to optimize carry manipulation
7568         * src/pic/* removed debug printfs
7569
7570 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7571
7572         * debugger/mcs51/cmd.c: added header newalloc.h
7573
7574 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7575
7576         * as/Makefile: new EXEEXT
7577         * as/z80/Makefile: remove trailing slash of BUILDIR
7578         * as/z80/clean.mk: new EXEEXT
7579         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7580         * support/cpp2/Makefile.in: new EXEEXT
7581         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7582
7583 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7584
7585         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7586         EXEEXT was introduced to fix all related problems with targets
7587         "clean", "install" and "uninstall"; a couple of further flaws
7588         especially with "clean" have been fixed too
7589         * as/mcs51/Makefile.in
7590         * as/mcs51/clean.mk
7591         * as/z80/Makefile
7592         * Makefile
7593         * clean.mk
7594         * debugger/mcs51/Makefile.in
7595         * debugger/mcs51/clean.mk
7596         * link/z80/Makefile
7597         * link/z80/Makefile.in
7598         * link/z80/clean.mk
7599         * link/Makefile
7600         * packihx/Makefile.in
7601         * packihx/clean.mk
7602         * sim/ucsim/Makefile
7603         * sim/ucsim/clean.mk
7604         * sim/ucsim/avr.src/Makefile.in
7605         * sim/ucsim/avr.src/clean.mk
7606         * sim/ucsim/s51.src/Makefile.in
7607         * sim/ucsim/s51.src/clean.mk
7608         * sim/ucsim/xa.src/Makefile.in
7609         * sim/ucsim/xa.src/clean.mk
7610         * sim/ucsim/z80.src/Makefile.in
7611         * sim/ucsim/z80.src/clean.mk
7612         * sim/ucsim/main_in.mk
7613         * sim/ucsim/packages_in.mk
7614         * sim/ucsim/gui.src/Makefile.in
7615         * sim/ucsim/gui.src/serio.src/Makefile.in
7616         * sim/ucsim/gui.src/serio.src/clean.mk
7617         * src/Makefile.in
7618         * src/clean.mk
7619         * support/cpp2/Makefile.in
7620         * support/cpp2/clean.mk
7621         * support/makebin/Makefile
7622         * support/makebin/clean.mk
7623         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7624         * doc/sdccman.lyx: --program-suffix no longer needed
7625
7626 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7627
7628          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7629          Martin Helmling added support for ddd GUI debugger.
7630          Code added to display assembly, set variables, and other commands
7631          to interface to ddd.
7632
7633 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7634
7635         * as/Makefile: fix target clean
7636         * as/clean.mk: fix target clean
7637         * as/z80/clean.mk: fix target clean
7638
7639 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7640
7641         * Makefile.common.in: added  AT EXEEXT AT
7642         * configure.in: removed all mingw32 stuff
7643         * configure: rebuilt from configure.in
7644         * doc/sdccman.lyx: updated section "installation"
7645         * support/scripts/sdcc_mingw32: adapted to configure
7646         * support/scripts/sdcc_cygwin_mingw32: added
7647
7648 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7649
7650         * src/pic Added object file support for the PIC port
7651         * src/pic Applied patch from Craig Franklin (this started the object file support)
7652         * src/regression Updated the PIC regression tests for object files
7653
7654 2003-04-20  Borut Razem <borut.razem AT siol.net>
7655
7656         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7657           lklex.c: In function `getfid':
7658           lklex.c:203: warning: array subscript has type `char'
7659         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7660           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7661         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7662           stack handling macros
7663
7664 2003-04-19  Borut Razem <borut.razem AT siol.net>
7665
7666         * "handling space characters in file path" task:
7667         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7668         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7669         * support/Util/MySystem.h: make it self-sufficient
7670         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7671           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7672           handling space characters in file path
7673         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7674           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7675         * support/Util/MySystem.c: handling space characters in executable's path
7676
7677 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7678
7679         * as/z80/Makefile: fix permanent rebuild of z80
7680         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7681         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7682
7683 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7684
7685         * src/SDCCopt.c: add special case optimization to replace modulo by
7686           a power of two with a bitwise AND.
7687
7688 2003-04-18    <johan AT balder>
7689
7690         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7691
7692 2003-04-17    <johan AT balder>
7693
7694         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7695         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7696
7697 2003-04-13  Borut Razem <borut.razem AT siol.net>
7698
7699         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7700         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7701           fixed mingw problem in adl_NORMALIZE_PATH
7702
7703 2003-04-12  Borut Razem <borut.razem AT siol.net>
7704
7705         * fixed "#pragma SAVE/RESTORE can not be nested":
7706         * src/SDCC.lex: reworked pragma handling functions
7707         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7708         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7709
7710 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7711
7712         * src/SDCCutil.c (pathEquivalent): defined but not used
7713         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7714         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7715         * configure: rebuilt from configure.in
7716         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7717         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7718         * device/include/Makefile.in: replace sdcc_datadir
7719         * device/lib/Makefile.in: replace sdcc_datadir
7720         * Makefile.common.in: add LDFLAGS from configure
7721         * packihx/Makefile.in: use LDFLAGS
7722         * src/Makefile.in: use LDFLAGS
7723         * support/cpp2/Makefile.in: add LDFLAGS from configure
7724         * support/makebin/Makefile: use LDFLAGS
7725         * .version: bumped version number to 2.3.5
7726
7727 2003-04-12  Borut Razem <borut.razem AT siol.net>
7728
7729         * completed "different paths" task:
7730         * src/SDCCmacro.c: fixed bug in handling quotes
7731         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7732         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7733
7734 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7735
7736         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7737
7738 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7739
7740         * ds390/gen.c ds390/peeph.def: fix bug 706781
7741
7742 2003-04-11  Borut Razem <borut.razem AT siol.net>
7743
7744         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7745
7746 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7747
7748         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7749         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7750          set - this bit used to not be set...).
7751         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7752           bad code in PIC Port
7753         * src/regression/and2.c added to test bug 609268
7754         * src/regression/Makefile added and2.c to regression test
7755
7756
7757 2003-04-08    <johan AT CP255758-A>
7758
7759         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7760         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7761         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7762
7763 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7764
7765         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7766         fix bug #487815
7767         * support/cpp2/Makefile.in: fix bug #487815
7768         * configure: rebuilt from configure.in
7769         * Makefile.common.in: docdir changed, new path suffixes
7770         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7771         * sdcc_vc_in.h: reflect changes from sdccconf.h
7772         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7773         * src/SDCCutil.h: remove BINDIR hack
7774         * doc/sdccman.lyx: update new path hierarchy
7775
7776 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7777
7778         * src/SDCCpeeph.c: added okToRemoveSLOC test
7779
7780 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7781
7782         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7783
7784 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7785
7786         * src/SDCCpeeph.c: added labelIsReturnOnly test
7787         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7788
7789 2003-04-05    <johan AT balder>
7790
7791         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7792         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7793         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7794         * src/SDCCast.c: fixed a warning
7795         * src/SDCCast.h: fixed a warning
7796         * src/SDCCicode.c (operandFromAst): fixed a warning
7797
7798 2003-04-04    <johan AT balder>
7799
7800         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7801         * src/SDCCast.c (decorateType): fixed bug #715076
7802         * src/SDCC.y: fixed bug #702907
7803
7804 2003-04-03    <johan AT balder>
7805
7806         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7807         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7808         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7809         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7810         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7811
7812 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7813
7814         * _decdptr.c: fix return values
7815         * _gptrget.c: fix return values
7816         * _gptrgetc.c: fix return values
7817         * _gptrput.c: fix return values
7818         * _mulint.c: fix return values
7819         * as/z80/Makefile: fix 'make -j' problem
7820
7821 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7822
7823         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7824         * configure.in: big cleanup, updated to autoconf 2.5x
7825         * configure: rebuilt from configure.in
7826         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7827         * sdcc_vc_in.h: reflect changes from sdccconf.h
7828         * doc/Makefile: fixed a flaw in "make install"
7829
7830 2003-04-02    <johan AT balder>
7831
7832         * src/ds390/gen.c (genCmp): no comments
7833         * src/mcs51/gen.c (genCmp): no comments
7834         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7835         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7836
7837 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7838
7839         * support/regression/generate-cases.py: place generated file in given sub directory
7840         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7841         * support/regression/Makefile: improvements for 'make -j';
7842         side effect: it's simpler and faster now
7843
7844 2003-03-31  Borut Razem <borut.razem AT siol.net>
7845
7846         * src/z80/main.c: link-{port} and as-{port} defined without path
7847         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7848
7849 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7850
7851         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7852
7853 2003-03-30  Borut Razem <borut.razem AT siol.net>
7854
7855         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7856           changed type of list parameter to set
7857         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7858         * src/port.h: changed type of do_assemble() parameter to set
7859         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7860           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7861           definition of "cppoutfilename" macro with NULL value in preProcess()
7862         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7863         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7864         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7865           replaced with set *binPathSet
7866         * shash_add() deallocates the item, if allready exsists, before adding the new one
7867         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7868
7869 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7870
7871         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7872           a nested for loop bug in the PIC port
7873         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7874           for loops
7875
7876 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7877
7878         * support/Util/dbuf.h: remove C++ stuff to make it portable
7879
7880 2003-03-28  Borut Razem <borut.razem AT siol.net>
7881
7882         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7883           literal strings in stringLiteral()
7884         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7885         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7886           to the project
7887
7888 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7889
7890         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7891
7892 2003-03-26    <johan AT balder>
7893
7894         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7895         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7896         * src/SDCCast.c (decorateType): fixed " -v < 3"
7897
7898 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7899
7900         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7901         Added Lenny Story's debug infrastructure changes:
7902         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7903         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7904         * src/cdbFile.c: added
7905         * src/SDCCdebug.c: added
7906         * src/SDCCdebug.h: added
7907         * src/SDCCast.c (createFunction)
7908         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7909         * src/SDCCmain.c (parseCmdLine, main)
7910         * src/SDCCmem.c (redoStackOffsets)
7911         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7912         * src/SDCCsymt.h
7913         * src/common.h
7914         * src/avr/gen.c (genAVRCode)
7915         * src/ds390/gen.c (gen390Code)
7916         * src/mcs51/gen.c (gen51Code)
7917         * src/pic/gen.c (genpic14Code)
7918         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7919         * src/xa51/gen.c (genXA51Code)
7920         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7921
7922 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7923
7924         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7925         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7926
7927 2003-03-22    <johan AT balder>
7928
7929         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7930
7931 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7932
7933         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7934         * doc/cdbfileformat.lyx: added, written by Lenny Story
7935         * doc/Makefile: added cdbfileformat.lyx
7936         * doc/clean.mk: added cdbfileformat.lyx
7937
7938 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7939
7940         * src/mcs51/peeph.def: fix bug #705773
7941
7942 2003-03-20    <johan AT balder>
7943
7944         An sfr/sbit can have an "at #" AND an initializer
7945         * src/SDCCsymt.c (checkSClass):
7946         * src/SDCCmem.c (allocGlobal):
7947         * src/SDCCmem.c (allocLocal):
7948         * src/SDCCast.c (createBlock):
7949
7950 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7951
7952         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7953
7954 2003-03-16    <johan AT balder>
7955
7956         Undid the hackup of const and volatile, the problem is much bigger
7957         * src/SDCC.y:1.65
7958         * src/SDCCast.c:1.171
7959         * src/SDCCglue.c:1.138
7960         * src/SDCCicode.c:1.146
7961         * src/SDCCsymt.c:1.150
7962         * src/SDCCval.c:1.65
7963
7964 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7965
7966         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7967         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7968
7969 2003-03-13    <johan AT balder>
7970
7971         Hackup const and volatile modifiers in type chains a bit:
7972         * src/SDCC.y:1.63
7973         * src/SDCCast.c:1.169
7974         * src/SDCCglue.c:1.136
7975         * src/SDCCicode.c:1.143
7976         * src/SDCCsymt.c1.146
7977         * src/SDCCsymt.h1.59
7978         * src/SDCCval.c:1.63
7979
7980 2003-03-12    <johan AT balder>
7981
7982         * src/SDCCBBlock.h: more LRH debugging junk
7983         * src/SDCCcflow.h: more LRH debugging junk
7984         * src/SDCCloop.c: more LRH debugging junk
7985         * src/SDCC.y (struct_declaration): fixed bug #697590
7986         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7987         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7988         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7989
7990 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7991         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7992         test function names must now match exactly).
7993         * src/SDCCcse.c: added special case in findCheaperOp to allow
7994         extending a short integer. Makes less awful code for bug 700121 test case.
7995
7996 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7997
7998         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7999         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
8000
8001 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8002
8003         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
8004         actually called (operandsNotEqual() was called for all
8005         operandsNotEqualX tests).
8006
8007 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
8008
8009         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
8010         with shorter literals. Fixes bug 700121.
8011
8012 2003-03-11    <johan AT balder>
8013
8014         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
8015
8016 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
8017
8018         * src/SDCCloop.c (mergeRegions): an evil beast is dead
8019         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
8020
8021 2003-03-10  Borut Razem <borut.razem AT siol.net>
8022
8023         * src/SDCCmain.c: pipe preprocessor's output
8024         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8025         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8026         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8027         which closes all pipes in pipeSet set
8028         * src/SDCCset.c: free deleted item in function deleteSetItem()
8029         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8030         moved from z80 to src subproject
8031         * .version: increased version number to 2.3.4
8032
8033 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
8034
8035         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
8036         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
8037         * support/regression/ports/xa51/spec.mk: fix typo
8038
8039 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
8040
8041         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
8042
8043 2003-03-09  Borut Razem <borut.razem AT siol.net>
8044
8045         * src/SDCCmain.c: pipe preprocessor's output
8046         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
8047         * sdcc_vc_in.h: define pclose as _pclose for WIN32
8048         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
8049         which closes all pipes in pipeSet set
8050         * src/SDCCset.c: free deleted item in function deleteSetItem()
8051         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
8052         moved from z80 to src subproject
8053
8054 2003-03-09  Borut Razem <borut.razem AT siol.net>
8055
8056         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
8057         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
8058         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
8059         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
8060         * src/SDCCglobl.h: unification of WIN32 native definitions
8061
8062 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8063
8064         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
8065
8066 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8067
8068         * src/configure.in:   check for endianess (even while cross-compiling)
8069         * src/configure:      check for endianess (even while cross-compiling)
8070         * src/configure_in.h: check for endianess (even while cross-compiling)
8071         * src/avr/gen.c:        remove old endianess stuff
8072         * src/mcs51/gen.c:      remove old endianess stuff
8073         * src/ds390/gen.c:      remove old endianess stuff
8074         * src/pic/gen.c:        remove old endianess stuff
8075         * src/pic/genarith.c:   remove old endianess stuff
8076         * src/pic/glue.c:       fix endianess check
8077         * src/pic16/gen.c:      remove old endianess stuff
8078         * src/pic16/genarith.c: remove old endianess stuff
8079         * src/pic16/glue.c:     fix endianess check
8080         * src/xa51/gen.c:       remove old endianess stuff
8081         * src/z80/gen.c:        fix endianess check
8082         * src/SDCCglue.c:       fix endianess check
8083         * src/ds390/peeph.def: fix bug 700036
8084
8085 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
8086
8087         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
8088         * src/configure: find appropriate data-types on host for SDCC's int and long
8089         * src/configure.in: find appropriate data-types on host for SDCC's int and long
8090         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
8091         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
8092
8093 2003-03-07    <johan AT balder>
8094
8095         Just a big NOOP:
8096                 some minor cleanups before the big shot
8097                 OP_DEFS and OP_USES now use Kevin's protection
8098                 new option --nolabelopt
8099
8100         * src/SDCCBBlock.c:
8101         * src/SDCCast.c,:
8102         * src/SDCCcflow.c:
8103         * src/SDCCcse.c:
8104         * src/SDCCicode.c:
8105         * src/SDCCicode.h:
8106         * src/SDCClabel.c:
8107         * src/SDCCloop.c:
8108         * src/SDCCmain.c:
8109         * src/ds390/ralloc.c:
8110         * src/mcs51/ralloc.c:
8111         * src/pic/ralloc.c:
8112         * src/xa51/ralloc.c:
8113         * src/z80/ralloc.c:
8114
8115 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
8116
8117         * src/pic/pcode.c (get_op): fix 64 bit warnings
8118         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
8119         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
8120         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
8121         * support/regression/tests/malloc.c: fix 64 bit warnings
8122
8123 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
8124
8125         * src/mcs51/gen.c (genMinus): fixed bug 696436
8126
8127 2003-03-02  Borut Razem <borut.razem AT siol.net>
8128
8129         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
8130
8131 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
8132
8133         * configure.in: test for mkstemp
8134         * sdccconf_in.h: add HAVE_MKSTEMP
8135
8136 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
8137
8138         * device/include/ctype.h: removed warning while using --stack-auto
8139         * device/include/malloc.h: removed warning while using --stack-auto
8140         * device/include/string.h: removed warning while using --stack-auto
8141
8142 2003-02-23  Borut Razem <borut.razem AT siol.net>
8143
8144         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
8145         because NDEBUG is defined (see man assert)
8146         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
8147
8148 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8149
8150         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
8151         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
8152
8153 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
8154
8155         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
8156         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
8157
8158 2003-02-18    <johan AT balder>
8159
8160         * as/mcs51/asmain.c (asmbl): module can start with a digit
8161         * as/z80/asmain.c (asmbl): module can start with a digit
8162
8163 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
8164
8165         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
8166         * src/asm.c: fix pipe() for Mingw32
8167
8168 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
8169
8170         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
8171         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
8172         make -V work again; --c1mode reads now from stdin
8173         * doc/sdccman.lyx: added --c1mode
8174         * support/Util/SDCCerr.c: new messages for c1 mode
8175         * support/Util/SDCCerr.h: new messages for c1 mode
8176         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
8177
8178 2003-02-15    <johan AT balder>
8179
8180         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
8181
8182 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
8183
8184         * doc/sdccman.lyx: Environment variables, -o and other minor things
8185
8186 2003-02-14    <johan AT balder>
8187
8188         * src/xa51/main.c: before anyone really tries to use it :)
8189
8190         * Install doc's in share/sdcc/doc
8191         * removed some obsolete files
8192         * Do a proper make distclean and uninstall
8193         M Makefile.common.in
8194         R sdccbuild.sh
8195         M as/Makefile
8196         M device/include/Makefile.in
8197         M device/lib/Makefile.in
8198         M doc/sdccman.lyx
8199         M link/Makefile
8200         M sim/ucsim/doc/Makefile.in
8201         M src/clean.mk
8202         R src/avr/peeph.rul
8203         R src/xa51/peeph.rul
8204         M support/cpp2/Makefile.in
8205         M support/makebin/Makefile
8206
8207
8208 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
8209
8210         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
8211
8212 2003-02-10  Borut Razem <borut.razem AT siol.net>
8213
8214         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
8215         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
8216         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
8217         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
8218         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
8219         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
8220         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
8221         src/z80/Makefile.bcc: Borland Makefile cleanup
8222         * as/z80/Makefile.bcc: Added Borland Makefile
8223         * support/cpp2/borland.h: Removed
8224
8225 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
8226
8227         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
8228         * src/SDCC.lex: new pragma NOIV
8229         * src/SDCCglobl.h: new pragma NOIV
8230         * src/SDCCmem.c: new pragma NOIV
8231
8232 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8233
8234         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
8235
8236 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
8237
8238         * src/SDCCmain.c: signal handling is switched off by --debug
8239         * doc/Makefile: small fix for install; use clean.mk again
8240         * doc/clean.mk: clean *.pdf and *.html too
8241
8242 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
8243
8244         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
8245         * device/lib/printfl.c: fix a ds390 bug by making it portable
8246         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
8247         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
8248         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
8249         * debugger/mcs51/cmd.c: converted multi-line string literals
8250         * sim/ucsim/globals.cc: converted multi-line string literals
8251         * src/SDCCmain.c: introduced signal handler to remove temp files
8252         * doc/Makefile: small tweaks, implement clean
8253         * doc: removed generated files
8254
8255 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8256
8257         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
8258         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
8259         Address Record is not correctly generated for DS390."
8260
8261 2003-02-02  Borut Razem <borut.razem AT siol.net>
8262
8263         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
8264         * as/mcs51/asm.h: fixed compilation with Borland C
8265         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
8266         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
8267         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
8268         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
8269         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
8270         src/z80/Makefile.bcc: delete $(LIB) only if exist
8271         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
8272
8273 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
8274
8275         * device/include/malloc.h: introduced NULL
8276         * device/include/string.h: introduced NULL
8277         * device/include/stdlib.h: introduced NULL
8278         * device/lib/_memcpy.c: removed NULL
8279         * device/lib/_strcat.c: removed NULL
8280         * device/lib/_strchr.c: removed NULL
8281         * device/lib/_strcmp.c: removed NULL
8282         * device/lib/_strcpy.c: removed NULL
8283         * device/lib/_strcspn.c: removed NULL
8284         * device/lib/_strlen.c: removed NULL
8285         * device/lib/_strncat.c: removed NULL
8286         * device/lib/_strncmp.c: removed NULL
8287         * device/lib/_strncpy.c: removed NULL
8288         * device/lib/_strpbrk.c: removed NULL
8289         * device/lib/_strrchr.c: removed NULL
8290         * device/lib/_strspn.c: removed NULL
8291         * device/lib/_strstr.c: removed NULL
8292         * device/lib/_strtok.c: removed NULL
8293         * device/lib/malloc.c: removed NULL, include own header
8294
8295 2003-02-02    <johan AT balder>
8296
8297         * 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
8298         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
8299         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
8300         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
8301         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
8302         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
8303
8304 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8305
8306         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
8307         area 'DATA'"
8308
8309 2003-02-01    <johan AT balder>
8310
8311         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
8312
8313 2003-01-31    <johan AT CP255758-A>
8314
8315         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
8316
8317 2003-01-30    <johan AT balder>
8318
8319         * src/SDCCBBlock.c: automatic bug detection
8320         * src/SDCCicode.c: automatic bug detection
8321
8322 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8323
8324         * src/SDCCglobl.h:   now --xram-size 0 works
8325         * src/SDCCmain.c:    now --xram-size 0 works
8326
8327 2003-01-29    <johan AT balder>
8328
8329         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
8330
8331 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8332
8333         * as/mcs51/aslink.h: Added options --xram-size and --code-size
8334         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
8335         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
8336         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
8337         * src/SDCCglobl.h:   Added options --xram-size and --code-size
8338         * src/SDCCmain.c:    Added options --xram-size and --code-size
8339
8340 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
8341
8342         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
8343         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
8344
8345 2003-01-27    <johan AT balder>
8346
8347         * src/SDCC.y: fixed bug #613764
8348
8349 2003-01-26    <johan AT balder>
8350
8351         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
8352         * src/SDCCsymt.h: fixed bug #673374
8353         * src/SDCCglue.c: fixed bug #661910
8354         * src/SDCCast.c: fixed bug #458099 and 673374
8355
8356 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
8357
8358         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
8359         * as/mcs51/strcmpi.h: added
8360         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
8361         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
8362         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
8363         * as/mcs51/assym.c: strcmpi -> as_strcmpi
8364         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
8365         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
8366         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
8367         * as/mcs51/Makefile.aslink: new module strcmpi
8368         * as/mcs51/Makefile.asx8051: new module strcmpi
8369         * as/mcs51/Makefil.bcc: new module strcmpi
8370         * as/mcs51/Makefile.in: new module strcmpi
8371         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
8372
8373 2003-01-26    <johan AT balder>
8374
8375         * src/SDCCglue.c: reverted back to 1.124
8376         * src/SDCCast.c: reverted back to 1.156
8377         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
8378
8379 2003-01-25    <johan AT balder>
8380
8381         * src/SDCCglue.c: A better fix for bug #661910
8382         * src/SDCCast.c: A better fix for bug #661910
8383         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
8384
8385 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8386
8387         * src/Makefile.in: remove spawn.o
8388         * src/SDCCmain.c: remove spawn.h
8389         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
8390         * src/spawn.c: removed
8391         * src/spawn.h: removed
8392         * support/regression/ports/ds390/spec.mk: link with -r
8393
8394 2003-01-24    <johan AT CP255758-A>
8395
8396         * src/ds390/gen.c (aopOp): fixed bug #667458
8397         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
8398         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
8399         (createIvalCharPtr): an ival doesn't always have a storage class anymore
8400
8401 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
8402
8403         * src/mcs51/peeph.def: better assembler identation by Frieder
8404         * src/mcs51/gen.c: better assembler identation by Frieder
8405
8406 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
8407
8408         * as/z80/string.h: removed for gcc 3.2
8409         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
8410         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
8411
8412 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8413
8414         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
8415         * src/SDCCpeeph.c (replaceRule): fix bug #663503
8416         * support/regression/Makefile: separate temp files for ports
8417         * support/regression/generate-cases.py: separate temp files for ports
8418         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8419         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
8420
8421 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
8422
8423         * moved tinitalk to device/examples/ds390
8424
8425 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
8426
8427         * as/mcs51/lkmem.c: rflag is for DS390
8428         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
8429         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
8430                          (linkEdit): move mem- and map-files the same way as ihx-files
8431         * src/z80/main.c (_setDefaultOptions): removed --generic
8432         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
8433         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
8434         * src/pic/glue.c (picglue): --c1mode works again
8435         * src/pic16/glue.c (pic16glue): --c1mode works again
8436         * src/asm.c (printCLine): fix #660034
8437
8438 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8439
8440         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8441         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8442         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8443         * as/mcs51/lkmem (summary): better fix for sp problem
8444         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8445         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8446         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8447                                               remove --stack-after-data
8448
8449 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8450
8451         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8452         * src/SDCCutil.c (join): ugly bug: missing '\0'
8453         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8454
8455 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8456
8457         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8458         * src/port.h: typo
8459         * src/pic/main.c (_asmCmd): gpasm supports -o
8460         * src/z80/main.c: more general macros
8461         * device/lib/Makefile.in: remove intermediate files
8462
8463 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8464
8465         * .version: Bumped version number to 2.3.3
8466         * src/SDCCBBlock.c: new option -o
8467         * src/SDCCglobl.h: new option -o
8468         * src/SDCCglue.c: new option -o
8469         * src/SDCCmain.c: new option -o
8470         * src/asm.c: new option -o
8471         * src/ds390/main.c: new option -o
8472         * src/pic/glue.c: new option -o
8473         * src/pic/pcode.c: new option -o
8474         * src/pic/ralloc.c: new option -o
8475         * src/pic16/glue.c: new option -o
8476         * src/pic16/pcode.c: new option -o
8477         * src/pic16/ralloc.c: new option -o
8478         * src/z80/main.c: new option -o
8479         * device/lib/Makefile.in: use -o
8480         * support/regression/ports/ds390/spec.mk: use -o
8481         * support/regression/ports/gbz80/spec.mk: use -o
8482         * support/regression/ports/mcs51/spec.mk: use -o
8483         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8484         * support/regression/ports/z80/spec.mk: use -o
8485         * support/regression/ports/ucz80/spec.mk: use -o
8486         * support/regression/ports/xa51/spec.mk: use -o
8487         * support/regression/fwk/lib/timeout.c: fix usage string
8488
8489 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8490         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8491
8492 2003-01-07    <johan AT balder>
8493
8494         * src/SDCCast.c (decorateType): fixed bug #600035
8495
8496 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8497         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8498         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8499         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8500         * src/pic/pcode.c: outcommented unused variable to remove warnings
8501         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8502
8503 2003-01-06    <karl AT turbobit.com>
8504         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8505    regression tests.
8506
8507 2003-01-06    <johan AT balder>
8508
8509         * src/SDCCicode.c: fixed array add
8510
8511 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8512         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8513         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8514
8515 2003-01-04    <johan AT balder>
8516
8517         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8518
8519 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8520         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8521
8522 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8523         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8524         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8525
8526 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8527         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8528
8529 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8530         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8531
8532 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8533         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8534
8535 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8536
8537     * in \sdcc\as\mcs51\ changed these files in order to create an
8538     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8539     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8540     following files to include the previous two files: aslink.dsp,
8541     Makefile.aslink, Makefile.bcc, and Makefile.in.
8542
8543     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8544     .adb instead of .cdb
8545
8546 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8547
8548         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8549         value from option --iram-size.
8550
8551 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8552
8553         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8554         dram[] array.
8555
8556 2002-09-18    <wiml AT hhhh.org>
8557
8558         * SDCClrange.h: exposed setFromRange() and setToRange()
8559         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8560           packRegsForAccUse() (bug 542397)
8561         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8562           multiple times and emitting the fetch operations more than once
8563           added aopGetUsesAcc() function to allow binary operators to
8564           fetch their operands in the correct order; made genMinus() emit
8565           compact code for X = LITERAL - Y
8566
8567 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8568         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8569         sprintf() in line 1267.
8570
8571 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8572         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8573         like ports.
8574
8575 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8576         Changes to aslink (All the changes are marked with 'JCF'):
8577
8578         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8579         summary().
8580
8581         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8582         area BSEG.  Also moves, if possible, the DATA area down into the internal
8583         ram so more space is available.
8584
8585         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8586         sflag.
8587
8588         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8589         not bytes.  Function summary() which creates a memory usage summary
8590         file with extension .mem.  Reports of overlaping stack and small stack
8591         size.  If the space for the stack is less than 16 bytes aslink trows a
8592         warning.
8593
8594         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8595         the 8051.  Option 'y' for memory summary output file.
8596
8597         Changes to sdcc (All the changes are marked with 'JCF'):
8598
8599         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8600
8601         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8602         overlaying area for it (uses RegBankUsed[4]).
8603
8604         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8605         bank zero as used by default.  By default aslink locates the stack
8606         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8607         the creation of the .mem file.  Delegates the allocation of data area
8608         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8609         the begining of the stack area to aslink.
8610
8611         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8612         glue() in SDCCglue.c creates an area for it.
8613
8614 2002-09-03  Borut Razem <borut.razem AT siol.net>
8615         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8616         sdcc/src/pic/glue.c:
8617         introduced atexit() handler for teporay files removal in case of
8618         errors, assertions, ...
8619
8620 2002-08-29  Borut Razem <borut.razem AT siol.net>
8621         * sdcc/support/cpp2/auto-host_vc_in.h:
8622         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8623         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8624         Maybe there is a similar problem with BORLANDC? It should be checked!
8625
8626         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8627         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8628         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8629         was not executed, and the compiler (cl) launched a warning:
8630         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8631
8632 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8633         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8634
8635 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8636         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8637
8638         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8639           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8640           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8641           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8642           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8643           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8644           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8645         - added Release configuration in VS projects
8646         - review of compiler an linker options
8647         - VC .exe files are generated in bin_vc directory, not to interfere
8648           with binaries generated from other projects (cygwin, mingw, bcc ...)
8649
8650         * sdcc/src/yacc.dsp: added
8651
8652         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8653         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8654         and insert the version number definitions from .version
8655
8656         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8657
8658         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8659         added - genarate auto-host.h using auto-host_vc_in.h as template
8660
8661         * sdcc/sdcc_vc.h,
8662         removed from CVS, generated automatically
8663
8664 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8665         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8666
8667 2002-08-11  Borut Razem <borut.razem AT siol.net>
8668         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8669
8670 2002-08-10  Borut Razem <borut.razem AT siol.net>
8671         * src/SDCCmain.c (main):
8672         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8673         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8674         The consequence was that some temporary files were not removed.
8675
8676         * src/SDCCglue.c:
8677         unification of code in functions tempfilename() and tempfile():
8678         function tempnam() is defined in Visual Studio 6.0 and .NET
8679
8680         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8681
8682         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8683           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8684         - removed compiler command line option /WX: Treats all warnings as errors
8685         - update a list of source files, included into the project
8686
8687         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8688           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8689         changed project type to Generic Project so that can be correcly converted to VS.NET project
8690
8691         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8692
8693         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8694
8695         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8696
8697         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8698         added return 0 statements after assert() to make compiler happy
8699
8700         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8701         added newline in the def file to keep MSC compiler satisfied
8702
8703         * sdcc/src/z80/gen.c:
8704         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8705           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8706         - solved MSC error in function aopDump()
8707
8708         * sdcc_vc.h: define PREFIX as "\\sdcc"
8709
8710 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8711         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8712
8713 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8714         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8715         - Rewrote the register banking algorithm.
8716         - Added pCode live-range analysis to registers (for now, only non-used and
8717         singly-used registers optimized away)
8718
8719         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8720
8721         * 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.
8722
8723 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8724         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8725
8726 2002-04-22  Michael Hope  <michaelh AT vroom>
8727
8728         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8729
8730         * configure.in (DD_COPT): Added include support required for gbdk.
8731
8732         * .version: Bumped version number just to increase it.
8733
8734         * src/SDCCmain.c: Added -nostdinc to the default options.
8735
8736 2002-04-15  Michael Hope  <michaelh AT vroom>
8737
8738         * device/lib/z80/printf.c (sprintf): Added.
8739
8740         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8741
8742         * src/z80/peeph.def: Added transpose redundent load rule.
8743
8744         * src/z80/main.c: Added force callee saves for jaune.
8745
8746         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8747
8748         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8749
8750 2002-03-28  Johan Knol  <johan AT balder>
8751
8752         * src/SDCCval.c: fixed bug #532436
8753
8754 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8755         * /src/port.h:
8756         Added "char *Processor" field to the port structure.
8757
8758         * /src/SDCCmain.c:
8759         Added -p option. Allows port dependent processor to be specified.
8760
8761         * all ports:
8762         Initialized the new field char *Processor field to NULL in all ports
8763
8764         * /src/pic/*:
8765         Compiler generated registers for interrupt context saving
8766         were not getting allocated.
8767
8768 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8769
8770         * /src/SDCCast.c:
8771         Fixed left shift. Will promote the left side of a left shift
8772         if a) left shifting more than size of operand or b) when assigned
8773         to something size > size of left side
8774
8775 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8776         * src/pic/*
8777         tons of changes. Register allocation has been
8778         rewritten. Added customization for the various PICs. Flow
8779         analysis is restructured. ...
8780
8781         * src/pic/device.h:
8782         Added
8783
8784         * src/pic/device.c:
8785         Added. device.c is a PIC port hack to accomodate variations
8786         in PIC devices.
8787
8788 2002-03-13  Michael Hope  <michaelh AT vroom>
8789
8790         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8791
8792 2002-03-04  johanknol  <johanknol AT manik>
8793
8794         * /src/SDCCval.c: fixed
8795
8796         const unsigned char arr[][2] = { { 0, 1 } };
8797         t18.c:1: error: Initializer element is not constant
8798
8799 2002-03-04  bela  <bela AT manik>
8800
8801         * /device/include/mcs51reg.h:
8802         ds89c420 register definition update
8803
8804 2002-03-03    <johan AT FRIJA>
8805
8806         * support/Util/SDCCerr.c: did something, but don't no why anymore
8807
8808         * support/regression/tests/bug-524691.c: made it a little less shy
8809
8810         * src/SDCCast.c (decorateType): fixed bug #524697
8811
8812         * src/SDCCast.c: made some lineno improvements
8813
8814         * src/SDCCval.c (getNelements): changed warning to error
8815
8816         * src/SDCCglue.c (printIvalArray): changed warning to error
8817
8818         * src/SDCCicode.c: fixed a warning for mingw
8819
8820         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8821
8822         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8823
8824 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8825
8826         * src/ds390/peeph.def:
8827         Added some more peephole rules
8828
8829         * src/ds390/gen.c: Various fixes & enhancements
8830
8831         * src/SDCClrange.c, src/SDCClrange.h:
8832         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8833
8834         * src/ds390/ralloc.c:
8835         various fixes & enhancements (ds390) specific
8836
8837         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8838         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8839         from rallocs.
8840
8841         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8842
8843 2002-03-02    <johan AT FRIJA>
8844
8845         * src/SDCCast.c (decorateType): fixed bug #524708
8846
8847         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8848
8849         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8850
8851 2002-03-01  Michael Hope  <michaelh AT vroom>
8852
8853         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8854
8855         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8856
8857 2002-03-01    <johan AT FRIJA>
8858
8859         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8860
8861         * src/SDCCast.c (decorateType): fixed bug #524209
8862
8863         * src/SDCCval.c (valNot): fixed bug #524195
8864
8865 2002-02-26    <johan AT balder>
8866
8867         * src/xa51/gen.c: fixed a warning
8868
8869         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8870
8871         * src/SDCCast.c (decorateType): fixed bug #522534
8872
8873 2002-02-23    <johan AT balder>
8874
8875         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8876
8877 2002-02-22    <johan AT balder>
8878
8879         * src/SDCCast.c: fixed bug #514865
8880
8881         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8882
8883 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8884
8885         * sdcc/src/SDCCloop.c:
8886         Previous fix was not good. basic blocks that have "break" or "return" are
8887         not really partof a loop , but live ranges used in these blocks should
8888         be live thru the entire loop, so set partOfLoop but don't add them to
8889         loop region
8890
8891 2002-02-21    <johan AT FRIJA>
8892
8893         * src/SDCCcse.c: fixed bug #514308
8894
8895 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8896
8897         * src/SDCCloop.c:
8898         Fixed BUG #519583. If a conditional block ended in a return/break
8899         statement inside a loop, it was not being considered part of the loop.
8900
8901         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8902
8903 2002-02-10  Karl Bongers <karl AT turbobit.com>
8904
8905         * debugger/*:
8906         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8907         with lots of comments and notes.
8908
8909         * device/examples/test2.c:
8910         Fix bug, "red" variable not being initialized(compiler complained).
8911
8912         * device/examples/Makefile, examples/test3.c:
8913         Add Makefile in device/examples folder, compiles test3.c
8914         for use as a multiple module SDCDB test case.
8915
8916         * sim/ucsim/cmd.src/cmdset.cc:
8917         Took out debug printfs in ucsim "next" command.
8918
8919         * sim/ucsim/xa.src:
8920         Karl and Johan start ucsim XA support.  Most dissassembly working,
8921         about 75% emulation done(plenty of work remaining).
8922
8923         * sim/ucsim/z80.src:
8924         Add Z80 support to ucsim, add test-ucz80 regression test,
8925         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8926         Notice z80 compiler fails on examples/test3.c/crc code.
8927
8928 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8929
8930         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8931         Added support for --parms-in-bank1
8932
8933         * src/ds390/peeph.def:
8934         added a few more peephole optimzations
8935
8936         * src/ds390/main.c:
8937         1) added __builtin_inp & __builtin_outp used to read in data of given length
8938            from a memory mapped port
8939         2) added __builtin_memcmp
8940         3) added __builtin_swapw swap bytes of a short
8941
8942         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8943         1) handle multiple send & receives from register bank1
8944         2) ralloc can now allocate DPTR1 to some liveRanges
8945
8946         * src/SDCCsymt.c, src/SDCCsymt.h:
8947         changes to handle multiple sends & receives
8948
8949         * src/SDCCptropt.h:
8950         added some pointer arithmetic optimization
8951
8952         * src/SDCCptropt.c:
8953         added some pointer arithmetic optimizations but not stable yet so not
8954         called from anywhere (will get this working shortly)
8955
8956         * src/SDCCopt.c: fixed for multiple sends & receives
8957
8958         * src/SDCCmain.c:
8959         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8960         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8961            set preprocessor defines (depending on options)
8962
8963         * src/SDCCicode.c, src/SDCCicode.h:
8964         changes made to handle multiple sends & receives
8965
8966         * src/SDCCglobl.h:
8967         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8968
8969         * src/SDCCcse.c, src/SDCCcse.h:
8970         added function findbackward def (to be used in upcoming optimization)
8971
8972         * src/SDCCcflow.c, src/SDCCcflow.h:
8973         added function returnAtEnd - to determine if a basic block terminates with
8974         a RETURN iCode
8975
8976         * src/SDCCast.c, src/SDCCast.h:
8977         added option parms-in-bank1
8978
8979         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8980         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8981         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8982         adjusted for --parms-in-bank1 option
8983
8984         * device/include/string.h:
8985         donot redefine "reentrant" keyword
8986
8987         * device/include/ds80c390.h: Added some more SFRs
8988
8989 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8990
8991         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8992
8993 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8994
8995         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8996
8997 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8998
8999         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
9000
9001 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
9002
9003         * Added --xram-movc option
9004
9005 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
9006
9007         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
9008
9009 2002-01-11  Johan Knol
9010
9011         * Added math lib of Jesus Calvino-Fraga
9012
9013 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
9014
9015         * src/SDCCmain.c (processFile): fix processing of ../../src.c
9016         * support/regression/Makefile: new target test-mcs51-stack-auto
9017         * support/regression/ports/mcs51-stack-auto/spec.mk: added
9018
9019 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9020
9021         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
9022
9023 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
9024
9025         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
9026
9027 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
9028
9029         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
9030
9031         * src/SDCCglue.h: add definition for printIvalChar()
9032
9033 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9034
9035         * src/SDCCast.c: fix #498138 by Johan
9036
9037         * src/SDCCglue.c: fix #498138 by Johan
9038
9039 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
9040
9041         * support/regression/Makefile: fix clean
9042
9043         * support/regression/ports/ds390/support.c: fix transmission of last character
9044
9045 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
9046
9047         * /sdcc/src/ds390/gen.c:
9048         a) improved computing address of stack variable
9049         b) took out some #if 0 code
9050         c) improved parmBytes adjustment
9051         d) improved genPlusIncr & genMinusIncr
9052         e) genCmp could generate bad code (when left assigned to DPTR)
9053         f) Fixed bug in hasInc
9054
9055         * /sdcc/src/ds390/ralloc.c:
9056         a) packRegsForSupport could mess up live information (Fixed)
9057         b) packRegsDPTRuse could be incorrect for left & right shift
9058
9059         * /sdcc/src/mcs51/ralloc.c:
9060         packRegsForSupport could mess up the live information (Fixed)
9061
9062         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
9063
9064         * /sdcc/src/SDCCast.c:
9065         can reverse a loop even if function call is present as long
9066         as the loop control variable is local & is not passed as parameter
9067
9068 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9069
9070         * /sdcc/ChangeLog: *** empty log message ***
9071
9072         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
9073         More builtin function additions for TININative
9074
9075         * /sdcc/src/ds390/ralloc.c:
9076         Had broken the regression testsuite
9077
9078         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
9079
9080         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
9081         Added funcattr hasStackParms will be set for reentrant functions when there
9082         are paramteres on the stack, this helps in minimizing frame pointer generation
9083         typeFromStr can handle function pointers now
9084
9085         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
9086         *** empty log message ***
9087
9088 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9089
9090         * /src/ds390/gen.c, /src/ds390/main.c:
9091         More builtin function additions for TININative
9092
9093         * /src/ds390/ralloc.c:
9094         Had broken the regression testsuite
9095
9096         * /src/SDCCast.c: Fixed a bug in dumptree
9097
9098         * /src/SDCCsymt.c, /src/SDCCsymt.h:
9099         Added funcattr hasStackParms will be set for reentrant functions when there
9100         are paramteres on the stack, this helps in minimizing frame pointer generation
9101         typeFromStr can handle function pointers now
9102
9103         * /doc/builtins.txt, /doc/TININative.txt:
9104         *** empty log message ***
9105
9106
9107 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
9108
9109         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
9110         ALPHA version for -mTININative
9111
9112         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
9113         updated to reflect changes in the port structure
9114
9115         * /src/port.h:
9116         added function do_assemble (similar to do_link) if non-null this function
9117         will be called to do assembly (-mTININative) requires a multi command
9118         assembly
9119         added function genAssemblerEnd will be called to generate assembler Epilogue
9120
9121         * /src/SDCCsymt.c:
9122         added _JavaNative to debug info printing
9123
9124         * /src/SDCCmain.c: added option --tini-libid
9125         added port->do_assemble function (-mTININative) has a multi command assemble
9126
9127         * /src/SDCCglue.c: Disabled "constExpr" check
9128         added port->genAssemblerEnd function
9129
9130         * /src/SDCCglobl.h: Added option --tini-libid value
9131
9132         * /src/SDCCast.h:
9133         tookout optimizeCompare from the header (has no external references)
9134
9135         * /src/SDCCast.c: made one more function "static"
9136
9137 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
9138
9139         * src/z80/mappings.i: Added z80asm support.
9140
9141         * src/z80/main.c: Added z80asm support on --asm=z80asm
9142
9143         * src/z80/gen.c: Fixed asm portability issues.
9144
9145         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
9146
9147         * src/SDCCglue.c (printExterns): Added global/extern split.
9148
9149 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
9150
9151         * support/regression/Makefile: added test for mcs51 model large
9152
9153         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
9154
9155         * support/regression/ports/gbz80/spec.mk: added -mgbz80
9156
9157 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
9158
9159         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
9160
9161 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
9162
9163         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
9164
9165         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
9166
9167 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
9168
9169         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
9170
9171         * support/regression/tests/simplefloat.c: Port to mcs51.
9172
9173 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
9174         * support/regression/tests/bug-485362.c: Added.
9175
9176         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
9177
9178         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
9179
9180         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
9181
9182         * src/z80/gen.c (aopDump): Added a dump function.
9183
9184 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
9185         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
9186
9187         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
9188
9189         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
9190
9191         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
9192
9193         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
9194
9195         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
9196
9197         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
9198
9199         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
9200
9201         * support/regression/ports/ds390/support.c: Use tinibios.
9202
9203         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
9204
9205 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
9206
9207         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
9208         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
9209
9210         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
9211
9212         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
9213
9214 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
9215
9216         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
9217
9218         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
9219         (packRegsForIYUse): Created and optimised.
9220
9221 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9222
9223         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
9224 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
9225
9226         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
9227
9228         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
9229
9230         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
9231
9232 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9233
9234         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
9235
9236         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
9237
9238 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9239
9240         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
9241
9242         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
9243
9244         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
9245
9246 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
9247
9248         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
9249         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
9250         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
9251
9252         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
9253
9254         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
9255         (genNotFloat): Added.
9256         (genUminusFloat): Added.
9257
9258         * device/lib/z80/Makefile: Added floating pt stubs.
9259
9260         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
9261
9262         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
9263
9264         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
9265
9266 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
9267
9268         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
9269
9270         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
9271
9272         * sdcc/support/regression/Makefile: Add port ds390.
9273
9274         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
9275
9276         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
9277
9278         * sdcc/support/regression/ports/ds390/spec.mk: Added.
9279
9280         * sdcc/support/regression/ports/ds390/support.c: Added.
9281
9282         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
9283
9284         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
9285
9286         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
9287
9288 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9289
9290         * device/include/malloc.h: Added z80 and gbz80 support.
9291
9292         * device/lib/gbz80/heap.s: Added.
9293
9294         * device/lib/z80/heap.s: Added.
9295
9296         * device/lib/malloc.c: Added z80 and gbz80 support.
9297
9298         * support/regression/tests/malloc.c (testMalloc): Added.
9299
9300         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
9301
9302         * support/regression/tests/bug-478094.c: Added.
9303
9304         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
9305
9306 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
9307
9308         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
9309
9310         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
9311
9312         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
9313
9314         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
9315
9316         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
9317
9318 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
9319
9320         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
9321
9322 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
9323
9324         * support/regression/tests/bug-477927.c: Added.
9325
9326         * src/z80/peeph.def: Added minor rules.
9327
9328         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
9329
9330         * src/z80/peeph.def: Added jump optimisation modification.
9331
9332 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
9333
9334         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
9335
9336 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
9337
9338         * support/regression/tests/funptrs.c: Added.
9339
9340 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
9341
9342         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
9343
9344 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
9345
9346         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
9347
9348         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
9349
9350         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
9351         (movLeft2ResultLong): Created.
9352
9353         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
9354         (joinPushes): Added.  Joins two char pushes into a word push.
9355
9356 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
9357
9358         * support/cpp2/Makefile.in (install): Added creation of dest dir.
9359
9360         * support/makebin/Makefile (install): Added creation of dest dir.
9361
9362 2001-10-24 Karl Bongers <karl AT turbobit.com>
9363
9364         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
9365
9366 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
9367
9368         * src/z80/ralloc.c: Turned off faulty pack for one use.
9369
9370         * src/z80/peeph-gbz80.def: Removed redundent restart options.
9371
9372         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
9373
9374 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
9375
9376         * support/regression/Makefile: Improved clean
9377
9378         * support/regression/ports/gbz80/spec.mk: Added clean
9379
9380         * support/regression/ports/host/spec.mk: Added clean
9381
9382         * support/regression/ports/z80/spec.mk: Added clean
9383
9384         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
9385
9386         * support/regression/ports/mcs51/timeout.c: little improvements
9387
9388 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
9389
9390         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
9391
9392         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
9393
9394         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
9395
9396 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
9397
9398         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
9399
9400         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
9401
9402 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
9403         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
9404
9405         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
9406
9407         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
9408
9409         * src/mcs51/main.c (_linkCmd): Added bin path to command.
9410
9411         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
9412
9413         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
9414
9415         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
9416
9417         * support/regression/tests/longor.c: Added.
9418
9419 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
9420
9421         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
9422
9423         * as/mcs51/aslink.h: define PATH_MAX
9424
9425         * as/mcs51/asm.h: define PATH_MAX
9426
9427         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
9428
9429         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
9430
9431         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
9432
9433         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
9434
9435         * src/SDCCglobl.h: define PATH_MAX
9436
9437         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9438
9439         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9440
9441 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9442
9443         * src/z80/gen.c (gencjneshort): Fixed
9444
9445         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9446
9447 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9448
9449         * support/regression/tests/bug-469671.c: Added.
9450
9451         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9452
9453 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9454
9455         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9456
9457         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9458
9459 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9460
9461         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9462
9463         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9464
9465         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9466
9467         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9468
9469         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9470
9471         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9472
9473         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9474
9475 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9476
9477         * 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.
9478
9479         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9480
9481         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9482
9483 2001-10-07    <johan AT FRIJA>
9484
9485         * device/lib/gets.c (gets): fixed the return value.
9486
9487 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9488         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9489
9490         * 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.
9491
9492         * 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.
9493
9494         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9495
9496         * src/pic/gen.c: Removed Safe_strdup.
9497
9498         * configure.in: Added option to enable libgc support.
9499
9500         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9501         (bitVectUnion): Optimised.
9502         (bitVectIntersect): Optimised.
9503         (bitVectBitsInCommon): Optimised.
9504         (bitVectCplAnd): Optimised.
9505
9506         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9507
9508 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9509
9510         * src/SDCCmain.c: distinguish between assembler debug and plain options
9511
9512         * src/avr/main.c:   remove standard assembler options
9513
9514         * src/ds390/main.c: remove standard assembler options
9515
9516         * src/mcs51/main.c: remove standard assembler options
9517
9518         * src/port.h: removed "PENDING" comment
9519
9520 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9521
9522         * src/device/lib/_mulint.c  : new, with assember functions
9523
9524         * src/device/lib/_mullong.c : new, with assember functions
9525
9526         * src/device/lib/_divuint.c : with assember functions
9527
9528         * src/device/lib/_divsint.c : with assember functions
9529
9530         * src/device/lib/_divulong.c: with assember functions
9531
9532         * src/device/lib/_divslong.c: with assember functions
9533
9534         * src/device/lib/_moduint.c : with assember functions
9535
9536         * src/device/lib/_modsint.c : with assember functions
9537
9538         * src/device/lib/_modulong.c: with assember functions
9539
9540         * src/device/lib/_modslong.c: with assember functions
9541
9542         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9543
9544         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9545
9546         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9547                                       replaced _mululong.c and _mulslong.c by _mullong.c
9548
9549 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9550
9551         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9552
9553 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9554
9555         * src/SDCCglue.c: test, if win32api is available for MINGW
9556
9557 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9558
9559         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9560         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9561         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9562         * support/regression/ports/host/spec.mk: removed GENERIC
9563         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9564         * support/regression/ports/z80/spec.mk: removed GENERIC
9565
9566 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9567
9568         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9569
9570         * support/regression/tests/bug-467035.c: Created.
9571
9572 2001-10-01    <johan AT FRIJA>
9573
9574         * src/SDCC.y: fixed bug #466586 part 1
9575
9576 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9577
9578         * SDCCicode.c: z80 has no generic pointers
9579         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9580
9581 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9582
9583         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9584
9585 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9586
9587         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9588
9589         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9590
9591 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9592
9593         * configure.in: Fixed up so that ucsim is only configured once.
9594
9595         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9596
9597         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9598         (getPathDifference): As above.
9599
9600         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9601
9602         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9603
9604 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9605         * .version: Updated to 2.3.1
9606
9607         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9608         Added copyright header.
9609
9610         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9611         (assemble): Added support for macro based assembler commands.
9612         (linkEdit): Added support for macro based linker commands.
9613         (preProcess): Changed the pre-processor to use macros.
9614         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9615         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9616
9617         * device/lib/z80/crt0.s: Added module name for debugging.
9618
9619 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9620
9621         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9622
9623         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9624
9625         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9626
9627         * src/Makefile.in: Added SDCCmacro and SDCCutil
9628
9629 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9630
9631         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9632
9633 2001-09-16    <johan AT FRIJA>
9634
9635         * 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.
9636
9637 2001-09-15    <johan AT FRIJA>
9638
9639         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9640         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9641
9642 2001-09-11    <johan AT FRIJA>
9643
9644         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9645
9646 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9647
9648         * support/regression/tests/bug-460444.c: Added test case.
9649
9650         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9651         (genCast): Added justification for all of the asserts.
9652
9653 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9654
9655         * support/regression/support.c: _xdata replaced by xdata
9656
9657         * support/regression/spec.mk: removed _generic
9658
9659 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9660
9661         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9662
9663         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9664         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9665
9666         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9667
9668         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9669
9670         * support/regression/tests/bug-460010.c: Added test case.
9671
9672         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9673
9674 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9675
9676         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9677
9678         * support/regression/testfwk.c: removed workaround for bug #436344
9679
9680         * support/regression/tests/bp.c: use less memory with mcs51
9681
9682         * support/regression/tests/bug-441448.c: use less memory
9683
9684         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9685
9686         * support/regression/collate-results.py: typo
9687
9688 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9689
9690         * support/regression/tests/fetchoverlap.c: Added new test case.
9691
9692         * support/regression/tests/bp.c: Added new test case.
9693
9694         * support/regression/tests/bug-448984.c: Added new test case.
9695
9696         * support/regression/tests/pow2shifts.c: Added new test case.
9697
9698         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9699         (genlshTwo): Fixed right shift for count > 8.
9700
9701         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9702
9703 2001-09-08    <johan AT FRIJA>
9704
9705         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9706
9707 2001-09-07    <johan AT FRIJA>
9708
9709         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9710
9711         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9712
9713 2001-09-06    <johan AT FRIJA>
9714
9715         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9716         * bernhard noted me at this: "() equals to (void)" (1.38)
9717
9718 2001-09-05    <johan AT FRIJA>
9719
9720         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9721
9722 2001-09-04    <johan AT FRIJA>
9723
9724         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9725
9726
9727 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9728
9729         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9730
9731 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9732
9733         * link/z80/aslink.h: Fixed path for PATH_MAX
9734
9735 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9736
9737         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9738
9739         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9740
9741         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9742
9743         * 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.
9744
9745 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9746
9747         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9748         (genCmp): Fixed up genCmp for the GB with longs.
9749
9750         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9751
9752         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9753
9754         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9755
9756         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9757
9758 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9759
9760         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9761
9762 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9763
9764         * 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.
9765
9766         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9767
9768 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9769
9770         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9771
9772         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9773
9774 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9775
9776   * sim/ucsim/configure:    little improvement of Cygwin-detection
9777   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9778   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9779   * support/regression/tests/bug-221100.c: small changes for mcs51
9780   * support/regression/tests/bug-221168.c: small changes for mcs51
9781   * support/regression/tests/bug-227710.c: small changes for mcs51
9782   * support/regression/tests/staticinit.c: small changes for mcs51
9783   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9784   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9785   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9786
9787 $Revision$