PIC14 - Added support to generate code for struct bit fields.
[fw/sdcc] / ChangeLog
1 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
2
3         * src/pic/pcode.c,
4         * src/pic/device.c,
5         * src/pic/ralloc.c,
6         * src/pic/gen.c : added support to generate code for struct bit fields.
7
8 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
9
10         * as/xa51/xa_version.h,
11         * device/include/errno.h,
12         * device/include/regc515c.h,
13         * device/lib/_itoa.c,
14         * device/lib/_ltoa.c,
15         * device/lib/ser_ir_cts_rts.c,
16         * sim/ucsim/xa.src/glob.cc,
17         * sim/ucsim/xa.src/inst_gen.cc,
18         * sim/ucsim/xa.src/xa_bit.cc,
19         * sim/ucsim/xa.src/xa_sfr.cc,
20         * sim/ucsim/z80.src/inst_dd.cc,
21         * sim/ucsim/z80.src/inst_fdcb.cc,
22         * support/scripts/keil2sdcc.pl,
23         * src/pic16/pic16.dsp,
24         * src/pic16/pic16a.dsp: corrected cvs line endings
25         * device/lib/printf_large.c: fixed bug 1057979
26         * src/pic16/gen.c: fixed non-C standard code
27         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
28         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
29         * support/regression/ports/mcs51/support.c: reload T1 asap
30         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
31           pdata use and clear idata startup behaviour
32
33 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
34
35         * device/examples/ds390/ow390/ad26.h,
36         * device/examples/ds390/ow390/cnt1d.h,
37         * device/examples/ds390/ow390/crcutil.c,
38         * device/examples/ds390/ow390/ownet.h,
39         * device/examples/ds390/ow390/owsesu.c,
40         * device/examples/ds390/ow390/swt12.h,
41         * device/examples/ds390/ow390/swtoper.c,
42         * device/examples/ds390/ow390/temp10.h,
43         * device/examples/ds390/ow390/thermodl.c,
44         * device/examples/ds390/tinitalk/tinitalk.dsp,
45         * device/examples/ds390/tinitalk/tinitalk.dsw,
46         * device/examples/mcs51/clock/hw.h,
47         * device/examples/mcs51/simple2/go.bat,
48         * device/examples/serialcomm/windows/serial.h,
49         * device/examples/xa51/dummy.c,
50         * device/examples/xa51/hello.c,
51         * device/include/80c51xa.h,
52         * device/include/at89x051.h: corrected cvs line endings
53
54 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
55
56         * src/pic16/main.c (options): added command line --gstack, to trace
57         stack over/under flows,
58         * added pragma 'wparam' to allow passing first byte of function
59         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
60         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
61         call to __gstack_test function and sets up the symbol as extern,
62         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
63         * popaop): added call to pic16_testStackOverflow,
64         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
65         wparamList list,
66         * (genCall, genPcall): now all parameters are passed via stack
67         except in functions that are pass to wparam pragma in which WREG is
68         used too,
69         * (genPcall): REENTRANT flag is checked to see if variable prototype
70         contains reentrant keyword, don't call a non-reentrant function, via
71         a reentrant function pointer or vice versa, functions are never
72         passed via WREG,
73         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
74         D.Winkler,
75         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
76         SIGSEGV when accessing a NULL register stucture,
77         * (pic16_printGPointerType): modified to handle UPPER modifier for
78         function initializers, changed prototype of function to simpler one,
79         * (pic16_printIvalFuncPtr): check to see if function is already
80         added in externs list,
81         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
82         optimized a move from W to SFR with a move to the same register
83         later after a CALL,
84         * device/lib/pic16/debug: NEW directory, contains debug features
85         which are enabled when linking with libdebug.lib, currently command
86         line option --gstack enables stack pointer tracing for over/under
87         flow, corresponding sources are in debug/gstack
88
89 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
90
91         * doc/sdccman.lyx: updated SDCC version,
92         * (PIC16 port): update list of command line options,
93         * src/pic16/device.h (structure pic16_options_t): added field gstack
94         to enable stack overflow tracing on push/pops,
95         * src/pic16/device.c (statistics structure): added statistics
96         structure,
97         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
98         pic16_dump_int_registers): increase statistics counters for each
99         * variable which is encountered
100         * (pic16_dump_usection): emit each .udata variable to its own udata
101         section,
102         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
103         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
104         parameters via stack, otherwise use old scheme,
105         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
106         assembler output file,
107         * src/pic16/main.c: added command line options --gstack to enable
108         push/pop tracing for stack overflow,
109         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
110         instructions): added size of each instruction,
111         * (pic16_countInstruction): estimate size of instructions in
112         the_pFile list, inline assembly blocks are not counted,
113         * (pic16_FixRegisterBanking): trace previous register usage, when
114         banksel optimizations is greater than 0, don't emit a redudant
115         banksel directive,
116
117 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
118
119         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
120         * src/pic16/ralloc.c : applied same fix for pic16.
121         * src/pic/gen.c : tidied it up a little.
122
123 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
124
125         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
126         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
127
128 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
129
130         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
131
132 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
133
134         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
135         non-reentrant function __modsint in the interrupt function (thus
136         corrupting math operations during serial I/O)
137         * device/lib/ser_ir.c: as above, changed buffersize
138         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
139         256.c,d for zeroing
140         * doc/Makefile: added option -t for rsync
141
142 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
143
144         * src/SDCCast.h (struct ast),
145         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
146
147 2004-10-20 Borut Razem <borut.razem AT siol.net>
148
149         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
150         package
151
152 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
153
154         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
155         makefile targets,
156         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
157         support functions to replace long sequences of MOVFF's from access
158         bank registers to stack and vice versa,
159         * src/pic16/device.h: added new field opt_flags, where optimization
160         flags can be set to enable certain features,
161         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
162         * pBlock, (genFunction, genEndFunction): surroung loop for
163         saving/loading used registers in stack with PC_INFO pCodes,
164         INF_LREGS. Code in between can then be optimized by pCode optimizer
165         to support function calls,
166         * (genDataPointerSet): fixed bug which loaded float fields in
167         structures with corrupt data,
168         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
169         in a standard way debug info on stderr. Feature used for developing
170         and debugging only,
171         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
172         obsolete chunks of code,
173         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
174         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
175         * pic16/src/pcode.c (pic16_newpCodeInfo,
176         * (pic16_newpCodeOpLocalRegs),
177         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
178         feature,
179         * (pic16_pCodeConstString): printing of the initial value of a
180         symbol as a comment is inhibited since parsing was already done by
181         copyStr and output is corrupt,
182         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
183
184 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
185
186         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
187
188 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
189
190         * as/mcs51/lkarea.c: removed old K&R style,
191           (lnksect): changed check on boundary error,
192           (lnksect2): changed check on boundary error,
193           (lnksect2): extend XSTK to end of page if size = 1
194         * as/mcs51/lkmain.c: removed old K&R style,
195           (Areas51): create l_IRAM symbol
196         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
197         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
198           model-mcs51-stack-auto, added model-mcs51-xstack-auto
199         * device/lib/_mullong.c: added version to be compiled with xstack
200         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
201         * device/lib/mcs51/crtxclear.asm: clear pdata as well
202         * device/lib/mcs51/crtxstack.asm: fixed comment
203         * src/SDCCglue.c: maxInterrupts defaults to 0,
204           (emitMaps): added pdata,
205           (createInterruptVect): (re)moved default,
206           (glue): added pdata,
207           (glue): moved __start__xstack to XSTK with default size 1
208         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
209           and options.float_rent when options.stackAuto is set,
210           (linkEdit): only write XDATA_NAME if provided on command line
211         * src/SDCCmem.h,
212         * src/SDCCmem.c: added pdata
213         * src/port.h: added pdata_name to PORT
214         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
215           (saveRegisters, unsaveRegisters): removed usage of B,
216           (genMinus): fixed accumulator clash,
217           (genJumpTab): added comment, this needs another look
218         * src/mcs51/gen.c: added check for "B in use" paranoia,
219           added pushB() and popB()
220         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
221           chance
222         * src/avr/main.c,
223         * src/ds390/main.c,
224         * src/hc08/main.c,
225         * src/mcs51/main.c,
226         * src/pic/main.c,
227         * src/pic16/main.c,
228         * src/xa51/main.c,
229         * src/z80/main.c: (reset_regparms) made void parameter explicit and
230           added PSEG (PAG,XDATA) or NULL to port specifier
231         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
232         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
233           (_mcs51_genInitStartup): removed __start__xstack equ,
234           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
235         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
236         * src/z80/gen.c (_rleAppend): fixed warnings
237         * support/regression/tests/zeropad.c: added pdata test
238         * .version: bumped to 2.4.6
239
240 2004-10-17 Borut Razem <borut.razem AT siol.net>
241
242         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
243         as a part of nightly build
244
245 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
246
247         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
248         WREG holds the first byte function parameters,
249         * (aopForSym): take special case for symbols which are in FARSPACE
250         but in CODESPACE too,
251         * (assignResultValue): modified to take into account _G.useWreg,
252         * (genCall): don't use wreg for parameter passing when function is
253         declared as reentrant, too, added optimization INCF to stack
254         pointer when stack parameter count is 1,
255         * (genFunction, genEndFunction): refurnished and fixed to not using
256         wreg for passing parameters when function has varargs or is
257         reentrant, fixed bug with symbol name compare for generating
258         functions in absolute address,
259         * (pic16_storeForReturn): refurnished,
260         * (genCmp): began writing a new version of the function, not ready
261         yet, therefore it is disabled,
262         * (genAssign): do not read code memory when assigning a function to
263         a pointer function,
264         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
265         array of characters, not pointer,
266         * (pic16initialComments): in debug mode emit an .ident directive for
267         the assembler,
268         * (_process_pragma): emit a new warning type (internal to pic16)
269         when setting stack to default length, emit a similar warning when
270         placing a function at absolute address and address is not word aligned
271         * (_pic16_parseOptions): added 'return TRUE' statement,
272         * (_pic16_linkEdit): if compiling a source, then add the source's
273         file object, first in the list of objects to link,
274
275 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
276
277         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
278         * src/pic/main.c : removed VC warning.
279         * src/pic/gen.c : changed comment.
280
281 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
282
283         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
284         reference to a deprecated symbol _GPTRREG was causing failure to
285         link. Thanks G. M. Gallant for the info.
286
287 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
288
289         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
290         comments for Bugs item #954788.
291
292 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
293
294         * src/pic16/device.c (pic16_dump_gsection,
295         * pic16_groupRegistersInSection): handle symbols declared to be in
296         access bank differently,
297         * src/pic16/gen.c (struct _G): added field resDirect,
298         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
299         send values read from stack directly to result and don't allocate
300         temporary values,
301         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
302         same registers,
303         * (pic16_sameRegsOfs): NEW,
304         * (freeAsmop): if _G.resDirect is set then do not mark registers as
305         free because they were not allocated from temporary pool,
306         * pic16_popRegFromString): workaround to fix a problem with
307         allocating variables twice or never,
308         * (genGenPointerGet): using PRODL instead of FSR0H,
309         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
310         instead of FSR0H,
311         * (genAssign): take advantage of the _G.resDirect flag,
312         * (genCast): around line 11844, use mov2f instead of directly
313         MOVFF'ing between operands to account for literal values,
314         * src/pic16/genutils.c: some new debug functions for gpsim have been
315         added,
316         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
317         float with integer part only,
318         * src/pic16/main.c (_process_pragma): handle pragma udata access to
319         place variables in access bank
320         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
321         updated sources to reflect recent changes in gen.c
322
323 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
324
325         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
326         sources that searched for headers in installation path, now the
327         device/include/pic16 is used,
328         * src/pic16/glue.c (pic16glue),
329         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
330         .line directives if not in debug mode, this suppresses assembler's
331         warnings for ignored directives
332
333 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
334
335         * src/port.h: made reset_regparms prototype void parameter explicit.
336         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
337         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
338         * doc/sdccman.lyx: documented warning disabling and how to use
339           printf_large to make it print floats.
340         * device/include/stdbool.h: NEW
341         * device/lib/_atof.c,
342         * device/lib/_divuint.c,
343         * device/lib/_divulong.c,
344         * device/lib/expf.c,
345         * device/lib/printf_large.c,
346         * device/lib/sincosf.c,
347         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
348         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
349           a completely reentrant lib.
350
351 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
352
353         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
354         * device/include/pic16/stdio.h: fixed bug with colon
355
356 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
357
358         * device/include/pic16/stdio.h,
359         * device/include/pic16/stdlib.h,
360         * device/include/pic16/math.h: NEW
361         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
362         declared as _naked to reduce overhead
363         * device/lib/Makefile.in (target port-specific-objects-pic16):
364         changed * to *.* so to ignore the CVS directory,
365         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
366         stacked variables back in stack,
367         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
368         corruption
369
370 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
371
372         * .version: bumped version number to 2.4.5
373         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
374         * support/Util/SDCCerr.c (messages structure): added entry for
375         W_POSSBUG2
376
377         Large cumulative patch for pic16 port and libraries.
378         * device/include/pic16/sdcc-lib.h,
379         * device/include/pic16/stdarg.h,
380         * device/include/asm/pic16/features.h,
381         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
382         * device/include/pic16/float.h: changes reentrant keyword with
383         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
384         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
385         updated target build-libraries to include objects from gptr,
386         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
387         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
388         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
389         all function headings,
390         * src/SDCCmain.c: added global parameter userIncDirsSet,
391         * (parseCmdLine): when option -I is encountered add directory to
392         userIncDirsSet too,
393         * src/version.awk: added space between control and long,
394         * src/pic16/NOTES: added some notes for the port,
395         * src/pic16/gen.c: added prototype for mov2fp function,
396         * (fReturnpic16[]): properly named return value registers,
397         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
398         * (aopForSym): added code to handle symbols with onStack flag set,
399         symbols onStack are allocated PTRSIZE bytes,
400         * (aopFreeAsmop): handles special case where asmops are stack objects,
401         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
402         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
403         added argument lock to trace flaws in allocating temporary registers
404         when developing port,
405         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
406         * (pic16_popRegFromString): reenabled allocating a direct register
407         from string,
408         * (assignResultValue): various beautifications,
409         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
410         referenced function argument,
411         * (genIpush): reenabled to allow stacked arguments, handles only
412         ic->parmPush iCodes,
413         * (genCall, genPcall): major changes to allow for variable argument
414         functions, fixed a bug with falsely restoring stack pointer after
415         returning from call,
416         * (genFunction): pending code for critical function,
417         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
418         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
419         * (genNearPointerGet): fixed bug with indirect reading, was always
420         reading from INDF0
421         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
422         pointers,
423         * (genAddrOf): rewrote code to take address of a stacked function parameter
424         * (genCast): fixed casting to generic pointer type,
425         * src/pic16/gen.h: added AOP_STA,
426         * (struct asmop): added field stk,
427         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
428         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
429         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
430         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
431         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
432         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
433         generic pointers,
434         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
435         and library paths,
436         * (pic16_port structure): generic pointer size is set to 3,
437         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
438         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
439         compiler warning,
440         * src/pic16/ralloc.c (allocReg): prevent allocating register when
441         operand is an iTemp,
442
443 2004-09-24 Martin Helmling <mh AT octo-soft.de>
444
445         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
446         * debugger/mcs51/simi.c: addapt new syntax of s51
447
448 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
449
450         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
451         * src/pic16/pcode.c: commented out some calls to free() in order to
452         fix bug #989576,
453
454 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
455
456         * src/SDCCicode.h,
457         * src/SDCCicode.c (isiCodeInFunctionCall),
458         * src/avr/ralloc.c (selectSpil),
459         * src/pic/ralloc.c (selectSpil),
460         * src/pic16/ralloc.c (selectSpil),
461         * src/ds390/ralloc.c (selectSpil),
462         * src/hc08/ralloc.c (selectSpil),
463         * src/xa51/ralloc.c (selectSpil),
464         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
465         stack in the middle of a function call sequence (fixes bug #1020268)
466         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
467         costs associated with the minimum switch case.
468
469 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
470
471         * src/SDCC.lex: fixed bug #1030549
472
473 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
474
475         * src/SDCCcse.h (struct cseDef),
476         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
477         over a function call if the CSE is derived from a symbol whose
478         address has been taken (fixes bug #1029883)
479         * support/regression/tests/bug-1029883: a new regression test for
480         this bug
481
482 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
483
484         * src/hc08/gen.c (emitinline): fixed bug #1029778
485         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
486         to a cast object is no longer a syntax error ("fixes" bug #1030006,
487         and starts toward RFE #905167)
488
489 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
490
491         * src/pic16/gen.c (mov2f): New function to move an operand to
492         another without considering if it is a literal or a register,
493         * (pic16_sameRegs): don't check if they are both AOP_REG,
494         * (AccRsh): removed andmask=0 lines,
495         * (genLeftShift): duplicated to be improved in future versions,
496         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
497         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
498         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
499         * (pic16initMnemonics): added initialization for POC_INFSNZW,
500         * (insertBankSwitch): fixed inserting banksel directives algorithm
501         for instructions that follow a skip instruction, this fixes a report
502         for broken subtraction code generation,
503         * src/pic16/ralloc.c (deassignLRs): do not free register if current
504         iCode is a left op, just in case result and right share the same
505         registers
506
507 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
508
509         * src/hc08/main.c,
510         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
511         preservation of HX
512         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
513         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
514         on 2004-09-12; it was buggy
515
516 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
517
518         * src/SDCCsymt.h: removed RESULT_CHECK
519         * src/SDCCast.c,
520         * src/SDCCglue.c,
521         * src/SDCCval.c,
522         * src/pic/glue.c,
523         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
524
525 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
526
527         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
528         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
529         configuration values no more rejected by compiler, they are assigned
530         to configuration registers with a warning message instead,
531         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
532         the for-loop so last conf register is emitted too,
533         * (_pic16_initPaths): link library libsdcc.lib by default,
534         * (_hasNativeMulFor): modified test for multiplication according to
535         Raphael Neider's remarks. Integer multiplication is also done with
536         support functions,
537         * device/include/pic16/pic18fregs.h: corrected type error in while
538         testing and including 18f6720 header file
539
540 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
541
542         * src/pic16/device.h (pic16_options): removed field use_crt,
543         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
544         until an optimization to handle single bits is added,
545         * (pic16_loadFSR0): moved before genUnpackBits,
546         * (genAnd): some white lines removed,
547         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
548         leave_reset flags in pic16_options when using crt modules,
549
550 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
551
552         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
553           for bugs 898889 & 979599. Also used some safer print instructions.
554
555 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
556
557         * src/pic16/device.h (pic16_options_t): added field use_crt,
558         crt_name, no_crt,
559         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
560         catch a probable future bug,
561         * src/pic16/gen.c: aopIdx function commented out,
562         * (genAssign): commented out old code which used aopIdx,
563         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
564         code, added if conditionals to take into account the --use-crt
565         command line options,
566         * src/pic16/main.c (pic16_optionsTable): added new command line
567         options, --use-crt= and --no-crt,
568         * (_pic16_linkEdit): now the proper crt object is added in the
569         linker command line except than when --no-crt is specified,
570         * src/pic16/pcode.c,
571         * src/pic16/pcode.h: added some structures and functions for a new
572         optimization scheme to compansate for instruction overhead between
573         same iCodes, this scheme is currently under development and is not
574         working in any way,
575         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
576         to && operator,
577         * device/lib/pic16/startup/crt0i.c,
578         * device/lib/pic16/startup/crt0iz.c: added global char variable
579         __uflags to force the generation of an idata section
580
581 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
582
583         * doc/Makefile,
584         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
585         * doc/sdccman.lyx: updated sdcc version to 2.4.4
586
587 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
588
589         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
590         Frieder) and clarified the default code optimization mode
591
592 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
593
594         * src/SDCC.lex (doPragma, process_pragma),
595         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
596         "opt_code_size", and "opt_code_balanced"
597         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
598         regrouped options by category, added support for category headers
599         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
600         and "--opt-code-size"
601         * doc/sdccman.lyx: documented these new options and pragmas
602         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
603         preference into account
604
605 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
606
607         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
608           geniCodePreDec): Fixed bug 904237 by generating a warning
609         * src/SDCCerr.h,
610         * src/SDCCerr.c: added warning W_SIZEOF_VOID
611
612 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
613
614         * src/pic/device.c : When no max ram set validate full memory range.
615         * src/pic/pcode.c,
616         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
617
618 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
619
620         * device/lib/_gptrget.c,
621         * device/lib/_gptrput.c: updated comment
622         * device/lib/calloc.c,
623         * device/lib/free.c,
624         * device/lib/malloc.c,
625         * device/lib/realloc.c: added LGPL, made them reentrant-safe
626         * src/SDCCcse.c (cseBBlock),
627         * src/SDCCicode.c (printOperand, geniCodeArray),
628         * src/SDCCicode.h (struct operand): fixed bug 868103
629         * support/regression/tests/bug-868103.c: added
630         * src/SDCCast.c (searchLitOp),
631         * src/SDCCcse.h (struct cseDef),
632         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
633         * src/SDCCicode.h (struct operand),
634         * src/SDCCsymt.h (struct sym_link),
635         * src/avr/gen.c (hasInc),
636         * src/ds390/gen.c (hasInc),
637         * src/hc08/gen.c (genPlusIncr, hasInc),
638         * src/mcs51/gen.c (hasInc),
639         * src/pic16/glue.c (pic16_printIvalChar),
640         * src/pic16/ralloc.c (regWithIdx),
641         * src/xa51/gen.c (hasInc) : removed warnings
642         * src/SDCCast.c (createBlock): added comment ???
643         * src/hc08/ralloc.c: updated comments
644
645 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
646
647         * doc/sdccman.lyx: updated section on switch statements, added
648         section about semaphore locking
649         * doc/Makefile: added option -info for latex2html
650         * device/lib/_gptrget.c,
651         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
652
653 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
654
655         * src/pic/device.h,
656         * src/pic/device.c,
657         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
658          maxram is less than 0x100.
659
660 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
661
662         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
663
664 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
665
666         * src/port.h,
667         * src/mcs51/main.c,
668         * src/ds390/main.c,
669         * src/z80/main.c,
670         * src/hc08/main.c,
671         * src/pic/main.c,
672         * src/pic16/main.c,
673         * src/avr/main.c,
674         * src/xa51/main.c
675         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
676         a jump table is the best form for a switch statement, including
677         automatic insertion of missing cases to make the case range
678         continuous. Developed in collaboration with Frieder Ferlemann.
679
680 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
681
682         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
683         accumulator result if it needs sign extension
684
685 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
686
687         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
688
689 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
690
691         * device/lib/gbz80/printf.c,
692         * device/lib/z80/printf.c: removed define for NULL
693
694 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
695
696         * as/xa51/xa_link.c,
697         * device/examples/ds390/ow390/ad26.c,
698         * device/examples/ds390/ow390/cnt1d.c,
699         * device/examples/ds390/ow390/counter.c,
700         * device/examples/ds390/ow390/ds2480.h,
701         * device/examples/ds390/ow390/ds2480ut.c,
702         * device/examples/ds390/ow390/findtype.c,
703         * device/examples/ds390/ow390/gethumd.c,
704         * device/examples/ds390/ow390/owllu.c,
705         * device/examples/ds390/ow390/ownetu.c,
706         * device/examples/ds390/ow390/swt12.c,
707         * device/examples/ds390/ow390/swtloop.c,
708         * device/examples/ds390/ow390/temp.c,
709         * device/examples/ds390/ow390/temp10.c,
710         * device/examples/ds390/ow390/thermo21.c,
711         * device/examples/ds390/ow390/tinilnk.c,
712         * device/examples/ds390/ow390/tstfind.c,
713         * device/examples/serialcomm/windows/serial.cpp,
714         * device/examples/serialcomm/windows/test_serialcomm.cpp,
715         * device/include/reg51.h: fixed line endings for cvs
716
717 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
718
719         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
720         packRegsForAccUse, packRegisters): new accumulator register
721         packing algorithm
722         * support/regression/ports/hc08/support.c (_putchar): suppress
723         warning of unused variable
724         * src/SDCCicode.c: added SWAP entry to codeTable
725
726 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
727
728         * device/lib/sprintf.c: forgot to add this file before previous commit
729
730 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
731
732         * src/pic16/gen.c (genPackBits): added operand right in function
733         parameters, load result directly if p_type is POINTER (that is
734         called by genNearPointerSet)
735         * (genUnPackBits): added operand left in function parameters,
736         * (genNearPointerGet, genNearPointerSet): prevent the loading of
737         FSR0 if accessing bitfields,
738
739 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
740
741         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
742           _print_format; updated printf, sprintf, vsprintf
743         * device/include/asm/default/features.h: corrected comment/define
744         * device/lib/Makefile.in: added sprintf.c
745         * device/lib/libsdcc.lib: added sprintf module
746         * device/lib/printf_large.c,
747         * device/lib/vprintf.c,
748         * device/lib/sprintf.c: totally refactored printf_large and vprintf
749           into these 3 files
750         * support/regression/Makefile: changed ALL_PORTS into a usefull default
751         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
752         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
753           hc08 test
754         * support/regression/tests/zeropad.c: define idata as data for hc08
755
756 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
757
758         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
759         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
760         labels are referenced at least once (even if a reference is not found)
761         * src/hc08/gen.c (emitcode): set isComment flag for comments
762         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
763         loads), rules 6a..6b (optimize jumps to return)
764
765 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
766
767         * device/lib/acosf.c (acosf),
768         * device/lib/asinf.c (asinf),
769         * device/lib/atanf.c (atanf),
770         * device/lib/ceilf.c (ceilf),
771         * device/lib/cosf.c (cosf),
772         * device/lib/coshf.c (coshf),
773         * device/lib/cotf.c (cotf),
774         * device/lib/fabsf.c (fabsf),
775         * device/lib/floorf.c (floorf),
776         * device/lib/log10f.c (log10f),
777         * device/lib/logf.c (logf),
778         * device/lib/sinf.c (sinf),
779         * device/lib/sinhf.c (sinhf),
780         * device/lib/sqrtf.c (sqrtf),
781         * device/lib/tanf.c (tanf),
782         * device/lib/tanhf.c (tanhf),
783         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
784         replaced all instances of "reentrant" in the library functions
785         defined in math.h with this macro.
786         * support/regression/tests/float_trans.c: reenabled test for hc08
787
788 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
789
790         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
791         erroneously deleted
792
793 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
794
795         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
796         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
797         multi-byte volatile operands are used
798         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
799         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
800         initialization to area GSINIT0 so that it would always precede
801         any static initializers in GSINIT
802         * support/regression/tests/zeropad.c: fixed idata define for hc08
803         * support/regression/tests/bug-927659.c,
804         * support/regression/tests/float_trans.c: disabled tests for hc08
805         pending missing library routines
806         * .version: increased version number to 2.4.4 - hc08 port now passes
807         regression tests
808
809
810 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
811
812         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
813         * Makefile.common.in,
814         * as/Makefile,
815         * as/hc08/Makefile.in,
816         * as/mcs51/Makefile.in,
817         * as/z80/Makefile.in,
818         * debugger/mcs51/Makefile.in,
819         * device/include/Makefile.in,
820         * device/lib/Makefile.in,
821         * doc/Makefile,
822         * link/Makefile,
823         * link/z80/Makefile.in,
824         * packihx/Makefile.in,
825         * sim/ucsim/main_in.mk,
826         * sim/ucsim/avr.src/Makefile.in,
827         * sim/ucsim/doc/Makefile.in,
828         * sim/ucsim/gui.src/serio.src/Makefile.in,
829         * sim/ucsim/hc08.src/Makefile.in,
830         * sim/ucsim/s51.src/Makefile.in,
831         * sim/ucsim/xa.src/Makefile.in,
832         * sim/ucsim/z80.src/Makefile.in,
833         * src/Makefile.in,
834         * support/cpp2/Makefile.in,
835         * support/librarian/Makefile,
836         * support/makebin/Makefile: added DESTDIR to the install path proposed
837         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
838         * doc/sdccman.lyx: added DESTDIR documentation
839
840 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
841
842         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
843         instruction for interrupt handlers, use fast returns when returning
844         from high priority interrupts
845
846 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
847
848         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
849         code generation
850         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
851         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
852         bugs, ported much of Bernhard's code from mcs51
853         * src/mcs51/gen.c (genSend),
854         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
855         than one when calling a reentrant function
856         * device/lib/_mullong.c: defined an alternate struct layout for big
857         endian ports (hc08)
858
859 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
860
861         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
862         test
863
864 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
865
866         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
867         are sane and complete before asking the port its prefered parameter
868         passing method (fixes bug #1017633)
869         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
870         and _ret3
871
872 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
873
874         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
875         problem in bitfields >= 8 bits.
876
877 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
878
879         * src/SDCCsymt.c: undid changes that were not meant to be committed
880
881 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
882
883         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
884
885 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
886
887         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
888           copied and wrong bit got inverted
889
890 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
891
892         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
893         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
894         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
895         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
896         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
897         assignments to bitfields at known addresses
898         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
899         reads from bitfields at known addresses
900         * src/hc08/ralloc.c (packRegisters),
901         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
902         genhc08Code): optimize pointer get values used as conditionals
903         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
904         and branch
905
906 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
907
908         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
909         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
910         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
911         as conditionals
912
913 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
914
915         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
916
917 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
918
919         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
920         related problems
921
922 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
923
924         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
925
926 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
927
928         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
929         mcs51 port
930
931 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
932
933         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
934
935 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
936
937         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
938         cases use more compact code.
939
940 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
941
942         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
943
944 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
945
946         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
947
948 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
949
950         * src/SDCCsymt.h,
951         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
952         parameter of changePointer() from symbol* to sym_link*
953         * src/SDCCast.c (decorateType): call changePointer() for CAST op
954         * src/SDCCsymt.c (compareType): void* type is castable to other
955         pointers, but not necesarily an exact match.
956         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
957         is no longer blindly treated as an exact match.
958         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
959
960 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
961
962         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
963
964 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
965
966         * src/pic/gen.c,
967         * src/pic/pcode.c,
968         * src/pic/ralloc.h,
969         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
970
971 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
972
973         * src/pic/device.c,
974         * src/pic/device.h,
975         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
976
977 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
978
979         * src/mcs51/gen.c (emitcode): fixed bug #992819
980
981 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
982
983         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
984           there's no need to make it worse
985
986 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
987
988         * src/mcs51/ralloc.c (deassignLR),
989         * src/ds390/ralloc.c (deassignLR),
990         * src/hc08/ralloc.c (deassignLR),
991         * src/z80/ralloc.c (deassignLR),
992         * src/pic/ralloc.c (deassignLR),
993         * src/pic16/ralloc.c (deassignLR),
994         * src/avr/ralloc.c (deassignLR),
995         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
996         rlivePoint): fixed another part of bug #971834
997
998 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
999
1000         * src/z80/main.c: enabled "critical" keyword
1001         * src/z80/mappings.i,
1002         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
1003         functions (fixes bug #979646)
1004         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
1005
1006 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1007
1008         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
1009           such as c:\mydir.
1010
1011 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
1012
1013         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
1014           doesn't disable too much optimizations
1015
1016 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
1017
1018         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
1019
1020 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
1021
1022         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
1023
1024 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
1025
1026         * src/pic/gen.c tidied up tabs
1027         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
1028         * src/pic/main.c tidied up tabs
1029         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
1030         * src/pic/pcoderegs.c tidied up tabs
1031         * src/pic/ralloc.c tidied up tabs
1032
1033 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
1034
1035         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
1036         to S_FIXED for pic16 port and when symbol is not in level 0,
1037         allocate for S_REGISTER storage class and pic16 port, too,
1038         * src/pic16/device.h: prototype for checkSym,
1039         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
1040         * (pic16_assignConfigWordValue): test the value and the mask to
1041         validate that the value is suitable for the configuration word,
1042         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
1043         collect extern declared symbols, don't emit symbol twice, check
1044         first if symbol is in publics set first,
1045         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
1046         * added command line '--fstack' which enables an experimental
1047         feature for stack access, too buggy to be used yet...
1048         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
1049         * (pic16_allocDirReg): when register has storage class S_REGISTER
1050         allocate in pic16_dynAccessRegs,
1051         * device/include/pic16/pic18f????.h: modified configuration word
1052         naming convention, words started as CONFIG0H but should be CONFIG1H
1053
1054 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
1055
1056         * device/include/mcs51reg.h: fixed bug 970993
1057
1058 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
1059
1060         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
1061         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
1062         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
1063         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
1064         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
1065         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
1066           error/warning numbers,
1067           added function setWarningDisabled()
1068         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
1069         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
1070           _memcmp.c _memmove.c calloc.c realloc.c free.c
1071         * support/regression/tests/malloc.c: added tests for new functionality
1072         * support/regression/tests/zeropad.c: added tests for truncated initializers
1073           and initialized char arrays starting with '\x0'
1074         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
1075
1076 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
1077
1078         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
1079
1080 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1081
1082         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
1083         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
1084         peephole 177.e. Thanks to anonymous
1085
1086 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
1087
1088         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
1089         function isn't used in the source but referenced as a
1090         variable initializer then declare it as extern in .asm file
1091
1092 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
1093
1094         * .version: increased version number to 2.4.3
1095
1096         Adding version extension according to ChangeLog CVS revision
1097         * src/Makefile.in (target all): added dependency 'version.h'
1098         * (rule version.h): added rule to create version.h from ChangeLog,
1099         * (rule dep): added dependency version.h,
1100         * src/version.awk: AWK script to create version.h
1101         * src/SDCCdwarf2.c (dwWriteModule),
1102         * src/SDCCglue.c (initialComments),
1103         * src/SDCCmain.c (printVersionInfo): modified to write after
1104         version string the version extension number,
1105         * src/SDCCutil.c: included "version.h"
1106         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
1107         number,
1108         * src/SDCCutil.h: added prototype for getBuildNumber
1109
1110         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
1111         includeDirsSet, too,
1112         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
1113         const char [] is found in function prototype...
1114
1115         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
1116         moving to WREG with source is already in WREG,
1117         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
1118         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
1119         * (aopForSym): stack'ed symbols are partially supported, added
1120         if-clause to support symbols in FARSPACE,
1121         * (sameRegs): added test for AOP_ACC to see if registers are same,
1122         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
1123         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
1124         * (pic16_popRegFromString): will not allocate a new register if it
1125         doesn't find one by name, bug may have introduced...
1126         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
1127         * (genIpush): revived to use pic16 port's stack,
1128         * (genAddrOf): added incomplete case for stack'ed operand,
1129         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
1130         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
1131         can handle multibyte operands,
1132         * src/pic16/glue.c (pic16_printIval*): some debug info added,
1133         * (pic16initialComments): added message for MPLAB compatibility
1134         mode enabled,
1135         * src/pic16/main.h: prototype for pic16_mplab_comp,
1136         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
1137         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
1138         * (_pic16_linkEdit): NEW, handles link stage, transferred here
1139         because of increased complexity of procedure,
1140         * (_process_pragma): stack pragma changed to format 'stack pos len',
1141         emit symbol '_stack_end' to conform with gplink,
1142         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
1143         to search for register,
1144         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
1145         PO_GPR_REGISTER,
1146         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
1147         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
1148         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
1149         case for PO_GPR_REGISTER,
1150         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
1151         dies, the new era is ahead !...
1152         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
1153         pic16_dynInternalRegs,
1154         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
1155         * (pic16_allocDirReg): minor optimizations and bug fixes,
1156         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
1157
1158         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
1159         load stack and frame pointer with address of 'stack_end' symbol
1160
1161 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
1162
1163         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
1164         without source code but only variable initializers
1165
1166 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
1167
1168         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
1169         external are not declared as extern to reduce overhead while linking
1170
1171 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
1172
1173         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
1174
1175 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
1176
1177         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
1178           Yee Keat for the patch
1179         * src/SDCCast.c (decorateType): fixed bug #979599
1180         * src/ds390/gen.h: removed local fReturnSizeDS390
1181         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
1182         * src/ds390/gen.c (genAnd, genOr, genXor),
1183         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
1184
1185 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
1186
1187         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
1188         add relFilesSet to $3, manipulate $2 to handle linking of object
1189         files without source files in command line,
1190         * device/include/pic16 (all headers): added ID location macros,
1191         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
1192         entries for ID location bytes,
1193         * (pic16_assignIdByteValue): NEW,
1194         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
1195         added field dumpcalltree to pic16_options_t,
1196         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
1197         is used instead of pic16_Gstack_base_addr, check if (ifx) before
1198         emitting rFalseIfx label after check_carry label,
1199         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
1200         pic16_emitDIRegs), NEW
1201         * (pic16glue): dump .calltree file when option --calltree found,
1202         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
1203         * (_pic16_genAssemblerPreamble): emit ID locations after
1204         configuration registers,
1205         * (pic16_linkCmd): modifications of the link command,
1206         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
1207         * (pic16_pCodeInitRegisters): don't init stack registers,
1208         * (pic16_findPrevInstruction): fixed bug,
1209         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
1210         bug with immediate registers,
1211         * (buildCallTree): traces stack push and pop,
1212         * (pct2): dump also stack usage for each function,
1213         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
1214         * (pic16_allocDirReg): various modifications,
1215         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
1216         fixed to 1,
1217
1218 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
1219
1220         * src/pic16/pcode.c: removed buggy double colon
1221
1222 2004-07-01 Borut Razem <borut.razem AT siol.net>
1223
1224         * support/scripts/sdcc.nsi: added include/pic16 to setup
1225
1226 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
1227
1228         * device/lib/Makefile.in: fixed bug in target objects-pic16,
1229         * device/lib/pic16/Makefile: prefixed with dash (-) command under
1230         target 'clean',
1231         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
1232         specific command line arguments. Also added sample lkr script
1233         for placing a variable at a specific memory bank.
1234         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
1235         at a specific memory bank,
1236         * (pic16_dump_isection): fixed bug which caused string literals to
1237         be omitted when dumping idata section,
1238         * (pic16_groupRegistersInSection): added code to handle registers
1239         in specific memory banks,
1240         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
1241         public, all references are renamed too,
1242         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
1243         AOP_DPTR2,
1244         * (pic16_storeForReturn): added case to handle when dest is WREG,
1245         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
1246         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
1247         pic16_rel_udata, check to see if that register is marked as being
1248         a member of a specific memory bank,
1249         * (pic16_printIvalCharPtr): added code to add string literals either
1250         to code or the idata sections,
1251         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
1252         also accept the 'udata' pragma,
1253         * src/pic16/main.h: new structure types sectName and sectSym
1254         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
1255         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
1256         * (pic16_findPrevInstruction): fixed, it returned nothing,
1257         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
1258         instruction combinations,
1259         * (pic16_FixRegisterBanking): heavily reorganised,
1260         * (pic16_AnalyzeBanking): if generating banksel directives is
1261         disabled, then don't call FixRegisterBanking at all,
1262         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
1263         completely removed,
1264         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
1265
1266 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
1267
1268         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
1269         Phuah Yee Keat <yk.phuah AT nestac.com>
1270
1271 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
1272
1273         * src/pic16/glue.c (pic16createInterruptVect): function now emits
1274         correctly the IVT even if it is relocated to some other location
1275
1276 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
1277
1278         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
1279         * device/include/pic16/pic18f2220.h: NEW,
1280         * device/lib/pic16/libdev/pic18f2220.c: NEW,
1281         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
1282         * src/pic16/device.c (struct Pics16): added info for 18f2220,
1283         * src/pic16/device.h (struct pic16_options): added ivt_loc and
1284         nodefaultlibs, ivt_loc is the location of the interrupt vector
1285         table, and nodefaultlibs signs that default libraries should not be
1286         linked in link stage,
1287         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
1288         according to --ivt-loc argument,
1289         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
1290         when pragma stack is found,
1291
1292 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1293
1294         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
1295         256 (range check), 257 (do while), 258.a-f (bit banging
1296         f.e. on 3-wire SPI bus)
1297
1298 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1299
1300         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
1301         variables used exclusively within a loop
1302
1303 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
1304
1305         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
1306
1307 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1308
1309         * src/SDCClrange.c (computeClash): fixed bug #971834
1310
1311 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1312
1313         * src/mcs51/gen.c (genCmp): fixed bug #975903
1314         * src/hc08/gen.c (operandsEqu),
1315         * src/ds390/gen.c (operandsEqu),
1316         * src/z80/gen.c (operandsEqu),
1317         * src/pic/gen.c (operandsEqu),
1318         * src/pic16/gen.c (operandsEqu),
1319         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
1320         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
1321
1322 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1323
1324         * src/SDCCcse.c (cseBBlock): fixed bug #966963
1325
1326 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
1327
1328         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
1329         default case in switch statement,
1330         * glue.c (pic16_initPointer): expr is initialised via decoarteType
1331         to eliminate problem with initialisation of pointers, but problem
1332         still exists,
1333         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
1334         * (emitStaticSegment): removed various lines emitting debug info,
1335         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
1336         added processor registers for utilizing EEPROM,
1337         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
1338         configurable and set 8
1339
1340 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
1341
1342         * .version: increased version number to 2.4.2,
1343
1344         Cumulative patch for pic16 port
1345         * src/pic16/device.c: changed scheme to dump initial values for
1346         variables in idata segment, all print_idata* functions were removed,
1347         now the pic16_printIval* will be called,
1348         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
1349         * _pic16_printPointerType, pic16_printPointerType,
1350         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
1351         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
1352         NEW, similar to the respective functions in SDCCglue.c,
1353         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
1354         way, emitting hex bytes,
1355         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
1356
1357 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1358
1359         * src/avr/ralloc.c (serialRegAssign),
1360         * src/xa51/ralloc.c (serialRegAssign),
1361         * src/pic/ralloc.c (serialRegAssign),
1362         * src/pic16/ralloc.c (serialRegAssign),
1363         * src/hc08/ralloc.c (serialRegAssign),
1364         * src/z80/ralloc.c (serialRegAssign),
1365         * src/ds390/ralloc.c (serialRegAssign),
1366         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
1367
1368 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1369
1370         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
1371         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
1372
1373 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
1374
1375         Cumulative patch for pic16 port:
1376         * src/pic16/device.h (typedef PIC16_device) modified fields for
1377         defining microcontrollers,
1378         * src/pic16/device.c: added new info for all devices in Pics16 array,
1379         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
1380         to be optimised out by the pCode optimiser,
1381         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
1382         specially, bug reported by G.M. Gallant,
1383         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
1384         as force'd so that cannot be optimised out by pCode optimiser,
1385         * src/pic16/pcode.c,
1386         * src/pic16/pcodepeeph.c,
1387         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
1388         they are disabled by default, but can be enabled explicit with
1389         command argument --denable-peeps, for testing,
1390         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
1391         --pomit-ivt in COMPILE_FLAGS
1392
1393 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
1394
1395         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
1396           compilation on MSVC
1397
1398 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
1399
1400         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
1401
1402 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1403
1404         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
1405         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
1406
1407 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
1408
1409         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
1410         would only assign 0x300001 register.
1411
1412 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
1413
1414         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
1415         in COMPILE_FLAGS. Thanks to G. Gallant for report.
1416
1417 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1418
1419         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
1420         for ds80c400
1421         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
1422         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
1423         added peephole 254 (left shift), 255 (jump table)
1424
1425 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
1426
1427         * device/lib/Makefile.in: removed comment line with model-pic16,
1428         * (target port-specific-objects-pic16): the libraries and objects
1429         are copied to the build directory form the device/lib/pic16/bin
1430         directory
1431
1432         Cumulative patch concerning pic16 port:
1433         * library directory has been re-organized,
1434         * added support for PIC18F1220,
1435         * added headers and library sources for chips 18f1220,18f6520,
1436         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
1437
1438         * configuration registers setting has changed, now each supported
1439         device has a complete description of the registers it uses,
1440         * all initialisations are moved to idata sections, these section
1441         can be absolute or relocatable,
1442         * fixed initialisation of codespace variables,
1443         * fixed warning about PCLATU and gpsim,
1444         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
1445         * (genAssign): use table reads when assigning from variables in codespace,
1446         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
1447         char/int variables placed in codespace,
1448         * (pic16_emitConfigRegs): NEW, emits a list with configuration
1449         registers set in .asm file, no need for --pomit-config-words anymore,
1450         * (pic16glue): some 8051 legacy segments are commented out
1451         (to be removed completely),
1452         * added support for alternative assembler and linker with --asm=
1453         and --link= command line arguments,
1454         * peepholes are disabled automatically in the port, no need to
1455         specify on command line,
1456         * port supports natively char/int/long multiplication, but converts
1457         all divisions to support functions,
1458         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
1459         to the file set in variable $2,
1460         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
1461         strings in ASCII format and not in hex,
1462         * ralloc.c (serialRegAssign): added a triplet of conditional calls
1463         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
1464         allocate proper register if iCodes aren't temporary,
1465
1466 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
1467
1468         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
1469
1470 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
1471
1472         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
1473         is commented out
1474
1475 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1476
1477         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
1478         computed address is reused
1479         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
1480         multi-byte bitfields
1481
1482 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
1483
1484         * src/z80/gen.c: (genArrayInit): must check for pointers too
1485
1486 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
1487
1488         * support/regression/tests/zeropad.c: never meant to commit the
1489           nestedstruct test: removed, added check for GCC version
1490
1491 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
1492
1493         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
1494         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
1495         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
1496           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
1497           bugs 928906 and 954082 half-empty initializers
1498         * src/SDCCsymt.h,
1499         * src/SDCCsymt.c (getAllocSize): added for above fix
1500         * src/z80/gen.c (genArrayInit): fixed bug 741044
1501         * support/regression/tests/zeropad.c: added tests
1502
1503 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
1504
1505         * src/pic16/device.c (pic16_dump_section): corrected bug which
1506         caused some symbols of the libraries to be misplaced
1507
1508 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
1509
1510         * src/pic16/glue.c,
1511         * src/pic16/ralloc.h,
1512         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
1513         to fix conflict with pic port
1514
1515 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
1516
1517         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
1518         externs configuration variables,
1519         * src/pic16/ralloc.h,
1520         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
1521         prototype in header, commented out some debug messages
1522
1523 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
1524
1525         * src/pic16/glue.c,
1526         * src/pic16/main.c,
1527         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
1528         for gpasm COFF object generation. Thanks to D. Hawkins for
1529         his patch info
1530
1531 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1532
1533         * src/ds390/main.c,
1534         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
1535         Brock for spotting this)
1536         * src/ds390/gen.c (genEndFunction),
1537         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
1538         interrupt handler and critical. Disable push/pop optimizations when
1539         peephole optimizations disabled.
1540
1541 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
1542
1543         Updated pic16 library sources and headers.
1544         * device/lib/pic16/pic18f*/ ,
1545         * device/include/pic16/*.h: modified to handle structured SFR
1546         definitions
1547
1548 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
1549
1550         * src/port.h (PORT structure): added hook initPaths, now each
1551         port can declare its own default search paths,
1552         which can been seen with the --print-search-dirs option,
1553         see pic16 port for example,
1554         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
1555         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
1556         * (doPrintSearchDirs): NEW, replaces in a central manner the
1557         printing of search dirs which was split in set*Paths functions,
1558         * (main): added call to port->initPaths and doPrintSearchDirs,
1559         * src/avr/main.c,
1560         * src/ds390/main.c,
1561         * src/hc08/main.c,
1562         * src/izt/i186.c,
1563         * src/izt/tlcs900h.c,
1564         * src/mcs51/main.c,
1565         * src/pic/main.c,
1566         * src/pic16/main.c: modified port structures to reflect addition of
1567         initPaths hook,
1568
1569         * src/pic16/device.c (regCompare): registers are finally sorted by name,
1570         * (pic16_dump_section): for registers in same address reserve memory once,
1571         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
1572         to no_banksel,
1573         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
1574         result is greater in size than right or left,
1575         * (pic16_genUMult8X8_8): there are some cases where the result can
1576         be 16 bits size, so handle these,
1577         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
1578         * (pic16_outBitC): modified to emit pcodes,
1579         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
1580         or not,
1581         * (genDivOneByte): implemented algorithm to divide 8-bits,
1582         * (genCmp): uncommented goto, but issues still exist,
1583         * (genAnd): fixed a bug with variables >8bits,
1584         * (genPackBits): optimization added that uses BCF/BSF to change a
1585         single bit,
1586         * (genAssign): fixed bug when assigning floating point literals,
1587         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
1588         __sdcc_gsinit_startup label,
1589         * src/pic16/main.c (_pic16_init): removed search directory
1590         initialisations,
1591         * (_pic16_initPaths): NEW, used to initialise search directories,
1592         * (_hasNativeMulFor): support functions for all except char/int
1593         multiplication, and char division,
1594         * (PIC16_port struct): modified entry for native mul support,
1595         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
1596         no_banksel option,
1597         * (buildCallTree): call to register_usage is ifdef'ed out,
1598
1599 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1600
1601         * device/include/string.h: applied Stas Sergeev's patch to make this
1602         header file compatible with the preprocessor -Wundef option
1603         * src/SDCCmain.c (main): abort compilation if preprocessor reports
1604         failure (fixes bug #941458)
1605
1606 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1607
1608         * src/SDCCopt.c (killDeadCode): fixed bug #907733
1609         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
1610         that the variable, not the function, should be static
1611         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
1612         to be consistent with non-literal case
1613
1614 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1615
1616         * src/SDCCast.c (isConformingBody): fixed bug #949967
1617         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
1618         convilong): fixed bug #952086
1619
1620 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1621
1622         * src/SDCCmem.c (allocVariables): fixed bug #955321
1623
1624 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1625
1626         * src/hc08/main.c (_hc08_genAssemblerEnd),
1627         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
1628         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
1629         completely eliminated the use of a temporary file
1630         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
1631         when more than one file linked
1632         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
1633
1634 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1635
1636         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
1637         which fixes bug #543481
1638         * support/regression/tests/bug-751703.c: fixed comments left from a
1639         cut and paste error
1640         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
1641         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
1642         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
1643         scopes
1644         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
1645         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
1646         are now changed to underscores in moduleName
1647
1648 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1649
1650         * as/mcs51/lkmem.c: better fix for bug #954173
1651
1652 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
1653         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1654
1655         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
1656         * device/include/c8051f000.h,
1657         * device/include/c8051f120.h,
1658         * device/include/c8051f300.h,
1659         * device/include/c8051f310.h,
1660         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
1661         PWM16) and detab'ed
1662
1663 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1664
1665         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
1666         and mailing lists, doc'ed --no-peep-comments, removed reference
1667         to knoppix (newest version has no LyX/LaTeX), other minor changes
1668         * src/SDCCglue.c (glue): save 2 bytes stack space with
1669         option --main-return. The ljmp could probably be avoided too
1670
1671 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1672
1673         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
1674
1675 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1676
1677         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
1678         * src/SDCCopt.c (isLocalWithoutDef),
1679         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
1680         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
1681         (credit to Maarten Brock for patch #949363, on which this is based)
1682         * support/regression/tests/bug-751703.c: some test cases of extern used
1683         within inner scopes.
1684
1685 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1686
1687         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
1688         SPEC_STRUCT
1689         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
1690         struct definitions
1691         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
1692         dwWriteLabel): fix to create valid debugger symbols even when
1693         the module name has non-alphanumeric symbols in it
1694         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
1695         when a variable's allocation has been optimized away
1696
1697
1698 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1699
1700         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
1701         * src/hc08/main.c,
1702         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
1703         * src/mcs51/main.c,
1704         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
1705         * src/ds390/main.c,
1706         * src/z80/gen.c (z80_emitDebuggerSymbol),
1707         * src/z80/main.c,
1708         * src/pic/gen.c (pic14_emitDebuggerSymbol),
1709         * src/pic/main.c,
1710         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
1711         * src/pic16/main.c,
1712         * src/avr/gen.c (avr_emitDebuggerSymbol),
1713         * src/avr/main.c,
1714         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
1715         * src/xa51/main.c,
1716         * src/SDCCdebug.c (emitDebuggerSymbol),
1717         * src/SDCCdebug.h,
1718         * src/port.h: added a debugger struct to the port struct. Added a
1719         callback for defining debugger symbols
1720
1721         * src/SDCCast.c (createLabel),
1722         * src/SDCC.y (labeled_statement): mark all compiler generated labels
1723         with isitmp = 1
1724         * src/SDCCicode.h,
1725         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
1726         iCode back to the ast for the function
1727
1728         * src/hc08/ralloc.c (hc08_assignRegisters),
1729         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
1730         unneeded fields from the regs struct.
1731         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
1732         pushReg() & pullReg() functions instead of emitcode()
1733
1734         * src/hc08/gen.c (genLabel, genhc08Code),
1735         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
1736
1737         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
1738         debugger hooks
1739
1740         * src/hc08/gen.c (genEndFunction, genhc08Code),
1741         * src/hc08/gen.h,
1742         * src/mcs51/gen.c (genEndFunction, gen51Code),
1743         * src/mcs51/gen.h,
1744         * src/ds390/gen.c (genEndFunction, gen390Code),
1745         * src/ds390/gen.h,
1746         * src/z80/gen.c (genEndFunction, genZ80Code),
1747         * src/z80/gen.h,
1748         * src/z80/z80.h,
1749         * src/pic/gen.c (genEndFunction, genpic14Code),
1750         * src/pic/gen.h,
1751         * src/pic16/gen.c (genEndFunction, genpic16Code),
1752         * src/pic16/gen.h,
1753         * src/avr/gen.c (genEndFunction, genAVRCode),
1754         * src/avr/gen.h,
1755         * src/xa51/gen.c (genEndFunction, genXA51Code),
1756         * src/xa51/gen.h,
1757         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
1758         specific code to cdbFile.c and out of the backend code generators
1759
1760         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
1761         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
1762         starting address is now 0
1763
1764         * as/hc08/asm.h,
1765         * as/hc08/m08pst.c,
1766         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
1767         assembler directive for DWARF support
1768         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
1769
1770         * src/src.dsp,
1771         * src/Makefile.in,
1772         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
1773
1774 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1775
1776         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
1777         and inappropriate peephole optimization in jump tables
1778
1779 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1780
1781         * as/hc08/m08pst.c,
1782         * src/SDCCglue.c: sdccopt works for the hc08 port now
1783
1784 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
1785
1786         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
1787
1788 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1789
1790         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
1791
1792 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1793
1794         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
1795         rules
1796         * src/SDCCmain.c,
1797         * src/SDCCglobl.h,
1798         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
1799         comments from the peephole optimizer replacement rules
1800         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
1801         symbols
1802         * src/SDCCcse.c (updateSpillLocation),
1803         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
1804         equivalents
1805         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
1806         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
1807         objects far pointers
1808
1809 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1810
1811         * src/SDCCsymt.h: a missing part of my last change
1812         * src/pic/ralloc.c (regTypeNum),
1813         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
1814
1815 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1816
1817         * src/SDCCicode.h,
1818         * src/SDCCicode.c (aggrToPtrDclType),
1819         * src/SDCCptropt.h,
1820         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
1821         ptrPseudoSymConvert),
1822         * src/pic/ralloc.c (regTypeNum),
1823         * src/pic16/ralloc.c (regTypeNum),
1824         * src/hc08/ralloc.c (regTypeNum),
1825         * src/ds390/ralloc.c (regTypeNum),
1826         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
1827         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
1828
1829 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1830
1831         * link/z80/lkmain.c (afile),
1832         * as/hc08/lkmain.c (afile),
1833         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
1834         prevent a pointer problem when a filename has no directory and
1835         no extension specified.
1836
1837 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1838
1839         * link/z80/lkmain.c (afile): allow periods in directory names
1840         * link/z80/lkmain.c (afile),
1841         * as/mcs51/lkmain.c (afile),
1842         * as/hc08/lkmain.c (afile): allow linker script file to have an
1843         extension other than ".lnk"
1844         * link/z80/lklex.c (getfid),
1845         * link/z80/lkmain.c (parse),
1846         * as/mcs51/lklex.c (getfid),
1847         * as/mcs51/lkmain.c (parse),
1848         * as/hc08/lklex.c (getfid),
1849         * as/hc08/lkmain.c (parse): Support comments in the linker script
1850         file on lines by themselves and after filenames
1851
1852 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1853
1854         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
1855
1856 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1857
1858         * src/z80/peeph-z80.def: removed some peephole rules that don't
1859         work with multibyte arithmetic (fixed bug #937126)
1860         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
1861         to registers and not global variables
1862         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
1863         geniCodePreInc, geniCodePostDec, geniCodePreDec,
1864         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
1865         checking for assignments not internally generated (fixed bug #931895)
1866         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
1867         structure member (fixed bug #930072)
1868
1869 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1870
1871         * src/SDCCmain.c (linkEdit),
1872         * src/hc08/main.c (_hc08_parseOptions),
1873         * as/hc08/Makefile.in,
1874         * as/hc08/aslink.h,
1875         * as/hc08/asm.h,
1876         * as/hc08/m08pst.c,
1877         * as/hc08/lkrloc.c (relr, rele),
1878         * as/hc08/lkarea.c (lnkarea)
1879         * as/hc08/lkmain.c (afile, parse),
1880         * as/hc08/lkelf.c: support for ELF output
1881         * as/hc08/lks19.c (s19),
1882         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
1883
1884 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1885
1886         * as/mcs51/lkihx.c: Fixed bug #899105.
1887
1888 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1889
1890         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
1891         .dsp files from Unix to DOS.
1892
1893 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1894
1895         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
1896         function pointers; we have been compliant for several months now.
1897         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
1898         change that was accidently commented out
1899         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
1900         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
1901         bug #922319
1902
1903 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1904
1905         * src/hc08/gen.c: output of all of the internal debugging information
1906         is now controlled by the D() macro; it is disabled by default
1907
1908 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1909
1910         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
1911         harder to keep the same registers during a CAST iCode
1912         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
1913         long via int can be done in a single cast, if the signedness is
1914         correct.
1915         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
1916         putchar() in tinibios.c in ds390's library
1917
1918 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
1919
1920         * src/SDCCast.c (decorateType): fixed bug #898889,
1921         cast result of a literal complement too
1922         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
1923         fixed check for bitfields
1924
1925 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
1926
1927         * src/SDCCicode.c (geniCodeLogic): made it static,
1928         (geniCodeLogicAndOr): added in order to fix bug #905492,
1929         (ast2iCode): fixed bug #905492
1930         * support/regression/tests/bug-905492.c: added
1931         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
1932         (processParms): fixed bug #927659: don't copy parms, this will clear
1933         decorated flag
1934         * support/regression/tests/bug-927659.c: added
1935
1936 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
1937
1938         * src/SDCCast.c (addCast): don't cast float to char
1939         * device/lib/libsdcc.lib: added _memmove
1940
1941 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
1942
1943         * device/lib/large/Makefile: fixed parallel execution by
1944         replacing `make` by `$(MAKE)`
1945
1946 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1947
1948         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
1949         offsets (fixes bug #923936)
1950
1951 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
1952
1953         * device/lib/small/Makefile: fixed parallel execution by
1954         replacing `make` by `$(MAKE)`
1955
1956 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
1957
1958         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
1959
1960 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
1961
1962         * src/pic/gen.c (genCpl): multi-byte complements were not working.
1963         * src/regression/Makefile: Regression test was not running.
1964
1965 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
1966
1967         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
1968         complement if possible
1969         * src/SDCCval.c (valComplement),
1970         * src/SDCCicode.c (operandOperation): fixed complement of literal
1971         * support/regression/tests/onebyte.c (testComplement): added
1972
1973 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
1974
1975         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
1976         return an optimized tree; actually replace actParm with the new tree
1977         * src/SDCCast.h: added some parantheses to remove side effects
1978         * support/regression/tests/bug-920866.c
1979
1980 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
1981         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
1982         Bit operands were not being handled properly in the pic14 port.
1983         (now src/regression/add.c passes again).
1984
1985 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1986
1987         * src/SDCC.y (labeled_statement): case and default no longer require
1988         a following statement (RFE #893037)
1989
1990 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1991
1992         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
1993         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
1994         disabled (fixes bug #916294)
1995         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
1996         "mov a,acc"; patch provided by Lenny Story
1997         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
1998
1999 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2000
2001         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
2002         functions
2003         * src/ds390/gen.c (genFunction, genEndFunction),
2004         * src/ds390/ralloc.c (ds390_assignRegisters),
2005         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
2006         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
2007         pushed if there are parameters passed on the stack. Also, a cleaner
2008         way to decide if r0/r1 should be pushed/popped. (Together they fix
2009         bug #918693)
2010
2011 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2012
2013         * doc/sdccman.lyx,
2014         * device/lib/mcs51/crtpagesfr.asm,
2015         * device/lib/mcs51/crtxinit.asm,
2016         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
2017         to avoid confusion with Si Lab's SFRPAGE register.
2018
2019 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2020
2021         * src/SDCCglue.c (emitMaps): allow public sfr variables
2022         * src/SDCCglue.c (initialComments): include compiler build date
2023         with compiler version and put the timestamp of the generated
2024         assembly file on a serperate line to be less confusing.
2025         * src/port.h: added genInitStartup hook
2026         * src/avr/main.c,
2027         * src/ds390/main.c,
2028         * src/hc08/main.c,
2029         * src/pic/main.c,
2030         * src/pic16/main.c,
2031         * src/xa51/main.c,
2032         * src/z80/main.c: genInitStartup initialize as NULL (default to
2033         historical behaviour)
2034         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
2035         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
2036         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
2037         library instead of hard coding it into the compiler.
2038         * support/regression/ports/mcs51-stack-auto/spec.mk,
2039         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
2040         * device/lib/mcs51/Makefile,
2041         * device/lib/small/Makefile,
2042         * device/lib/large/Makefile,
2043         * device/lib/mcs51/crtpagesfr.asm,
2044         * device/lib/mcs51/crtstart.asm,
2045         * device/lib/mcs51/crtxclear.asm,
2046         * device/lib/mcs51/crtxinit.asm,
2047         * device/lib/mcs51/crtclear.asm,
2048         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
2049         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
2050         and into user configurable files.
2051         * device/lib/clean.mk: clean mcs51 directory too
2052         * support/regression/tests/longlit.c: added static to T1 declaration
2053         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
2054         accesses in the initialization code
2055
2056 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2057
2058         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
2059         OSCTRIMVAL as noted in bug #916008
2060
2061 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2062
2063         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
2064         in loops with multiple exits (reported as incorrect registers
2065         used by Martin Helmling in Sdcc-user list)
2066
2067 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2068
2069         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
2070         made ds390 register extensions look less like error messages
2071
2072 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2073
2074         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
2075         reported by Adam Wozniak in Sdcc-user list
2076
2077 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
2078
2079         * src/SDCCast.c (decorateType): fixed with bug and promotion in
2080         arithmetic optimizations, added debug output
2081
2082 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
2083
2084         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
2085         * sdcc.spec: updated and split sdcc into 3 rpms
2086         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
2087         needed for literals of LEFT_OP and '+'
2088         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
2089         introduced RESULT_TYPE_NOPROM
2090         (geniCodeMultiply): fixed logic for decision if mul is optimized to
2091         left shift
2092         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
2093         limited promotion to int only for '*'
2094         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
2095
2096 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
2097
2098         * src/pic16/gen.c (genSkip),
2099         (genc16bit2lit), (gencjneshort): commented out
2100         (is_LitOp): new helper function, checks operand type
2101         (genCmpEq): rewritten
2102
2103 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
2104
2105         * support/regression/tests/bug-908454.c: added
2106
2107 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
2108
2109         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
2110         * src/SDCCicode.c (usualBinaryConversions): op needs int type
2111         (geniCodeCast): cosmetic, don't preserve bit storage class
2112         (geniCodeLeftShift): added promotion
2113         (geniCodeLogic): fixed regression
2114         * src/SDCCsymt.c (computeTypeOr): accept bits too
2115         (compareType): 2nd part of fix for bug #908454, needed for bitfields
2116
2117 2004-03-07  Borut Razem <borut.razem AT siol.net>
2118
2119         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
2120
2121 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
2122
2123         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
2124         version of pic16_genPackRegisters which does not check if ic is a
2125         CAST operator,
2126         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
2127         function cause string1.c regression test fails
2128
2129 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
2130
2131         * sim/ucsim/configure.in,
2132         * sim/ucsim/configure,
2133         * sim/ucsim/doc/Makefile.in: use docdir
2134         * src/SDCC.y: fixed sbit atrributes
2135         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
2136         * src/SDCCast.c (decorateType): |^& need special promotion handling
2137         * src/SDCCast.h,
2138         * src/SDCCsymt.h: moved definition of RESULT_TYPE
2139         * src/SDCCsymt.h (computeType),
2140         * src/SDCCicode.c: computeType() needs op
2141         * src/SDCCsymt.c (checkTypeSanity),
2142         * doc/sddman.lyx: "plain" bitfields are unsigned
2143         * src/SDCCsymt.c (computeTypeOr): added
2144         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
2145         |^& ops
2146         * src/SDCCval.c (val*): computeType() needs op
2147         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
2148         * support/regression/tests/onebyte.c: added tests for |^&
2149
2150 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
2151
2152         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
2153         for writing icode into asm output.
2154
2155 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
2156
2157         * src/pic16/device.c: added some debug lines enabled
2158         with macro DEBUG_CHECK,
2159         * src/pic16/genarith.c: more debug in genPlus,
2160         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
2161         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
2162         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
2163         * (aopForSym): onStack symbols are re-placed in data memspace,
2164         and onStack flag is cleared,
2165         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
2166         copy temporary pcodeop,
2167         * (genPcall): added warning for not updating PCLATU,
2168         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
2169         always true for pic16 port,
2170         * (genMultOneWord): NEW, supports integer multiplication,
2171         * (genMult): modified to call genMultOneWord,
2172         * (ifxForOp): added warning when return NULL,
2173         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
2174         flag is set before call to operandFromSymbol for implicit
2175         added structures,
2176         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
2177         options.intlong_rent are set by default,
2178         * (_hasNativeMulFor): modified to allow port generation of integer
2179         multiplication,
2180         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
2181         set regtype to REG_SFR for all registers, restricting seting the
2182         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
2183
2184 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2185
2186         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
2187         more than 500 times in the regression tests
2188
2189 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2190
2191         * support/Util/SDCCerr.h,
2192         * support/Util/SDCCerr.c,
2193         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
2194         enumerator_list),
2195         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
2196         for symbol conflicts.
2197         * support/valdiags/tests/enum.c,
2198         * support/valdiags/tests/tentdecl.c,
2199         * support/valdiags/tests/struct.c: expect possible error messages
2200         referring to original symbol definitions.
2201         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
2202         * src/SDCCsymt.h,
2203         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
2204
2205 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
2206
2207         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
2208
2209 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
2210
2211         * src/pic16/ralloc.c (newReg): fixed bug #908929
2212
2213 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2214
2215         * src/ds390/gen.c: added missing #include "main.h"
2216
2217 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
2218
2219         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
2220         checking if symbol is already in set,
2221         * src/pic16/device.h: prototype for checkAddSym,
2222         * src/pic16/gen.c: (_G): added entry interruptvector,
2223         * (assignResultValue): removed some commented out lines,
2224         * (genFunction): check for ISR via sym->type, absolute section for
2225         interrupt code is created via a new pBlock, the goto instruction is
2226         placed now correctly at the interrupt vector position, changed all
2227         references from ivec to _G.interruptvector,
2228         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
2229         is the interrupt is a high priority one, same for return from ISR,
2230         * src/pic16/glue.c: changed all calls of addSetHead for publics and
2231         externs to calls of checkAddSym,
2232         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
2233         pic16_pcode_verbose flag is set,
2234         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
2235         * src/pic16/pcoderegs.c: message about how many registers are saved
2236         will only be emitted if pic16_pcode_verbose flag is set,
2237
2238 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2239
2240         * src/ds390/ralloc.h,
2241         * src/ds390/ralloc.c (ds390_regWithIdx),
2242         * src/ds390/gen.c (emitcode),
2243         * src/ds390/main.h,
2244         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
2245         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
2246         ds390operandCompare, getRegsRead, getRegsWritten,
2247         initializeAsmLineNode): customized instruction size calculation for
2248         ds390, started basis for some register optimizations
2249         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
2250         corresponding assembly output
2251         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
2252         missing push/pop of r0/r1. Optimized push/pops
2253
2254 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2255
2256         * src/mcs51/main.c (instructionSize): fixed ACALL size
2257         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
2258
2259 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
2260
2261         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
2262         the sorting of rlist with NULL elements
2263         * (print_idataType, print_idata): NEW to create idata sections
2264         * src/pic16/device.h: idataSymSet new variable
2265         * src/pic16/gen.c (genFunction): fixed some bugs in string
2266         comparing, improved the absolute section creation for ISRs,
2267         added FSR0L/FSR0H in registers that are saved in an ISR,
2268         * (genInline): fixed the processing of inline snippets,
2269         now they undergo no process by the peephole optimizer
2270         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
2271         are placed in idataSymSet,
2272         * (pic16emitStaticSeg): extern symbols are added in externs,
2273         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
2274         switching when aboslute variables are placed in access bank memory
2275         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
2276         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
2277         commented out with #if,
2278         * (pic16_packRegisters): reintroduce the check for CAST because some
2279         symbols are not correctly handled,
2280         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
2281         pCodeInstruction instead of pCode,
2282         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
2283         pCodeAsmDir definition,
2284         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
2285         directive, then the argument directive is emitted without the leading
2286         tab, hack for inline labels which must be in the first column,
2287         * (compareLabel,pic16_findNextInstruction),
2288         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
2289         * (insertBankSwitch): modified for the new pCodeAsmDir,
2290
2291 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2292         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
2293
2294         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
2295         instance,
2296         * (pushSide): commented out with #if,
2297         * (assignResultValue): fixed some typos in saving
2298         registers,
2299         * (genPcall): FIXED and sync'ed with genCall,
2300         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
2301         * (genNearPointerGet): fixed to handle some more cases,
2302         implementation scheme via table reads,
2303         * (genConstPointerGet): modified to access code memory correct,
2304         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
2305         and improved to handle some cases
2306         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
2307         instead of "RETLW" for init data
2308         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
2309         not IN_DIRSPACE, work around to reduce bank switching when aboslute
2310         variables are placed in access bank memory (<0x80 and >=0xf80),
2311         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
2312         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
2313         TBLWT_POSTDEC,TBLWT_PREINC
2314         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
2315         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
2316         directives
2317         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
2318         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
2319         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
2320         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
2321
2322 2004-02-29  Borut Razem <borut.razem AT siol.net>
2323
2324         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
2325         support/Util/findme.h, support/Util/system.h: enhance binary relative
2326         search for lib and include by using findProgramPath()
2327
2328 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2329
2330         * src/SDCCpeeph.h,
2331         * src/SDCCpeeph.c (pcDistance),
2332         * src/port.h,
2333         * src/mcs51/ralloc.h,
2334         * src/mcs51/ralloc.c (mcs51_regWithIdx),
2335         * src/mcs51/main.h,
2336         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
2337         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
2338         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
2339         size calculation port specific, started basis for some register
2340         optimizations
2341         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
2342         missing push/pop of r0/r1. Optimized push/pops
2343         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
2344         * device/lib/_modsint.c (_modsint),
2345         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
2346         and stack version so regression tests pass
2347
2348 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
2349
2350         * src/Makefile.in (dep): include SLIBOBJS in dependency check
2351         * src/SDCCast.c (decorateType): catch another small optimization
2352         with '?' operator
2353         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
2354         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
2355         modified to finally use computeType() all over SDCC,
2356         see Feature Request #877103
2357         * src/SDCCval.h: cosmetic
2358         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
2359         valCompare(); regression tested in muldiv.c
2360         * support/regression/tests/muldiv.c (testMod): mod sign follows
2361         dividend only
2362
2363 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
2364
2365         * src/SDCCast.c (decorateType): fixed bug #902362
2366         * doc/INSTALL.txt: fixed install instructions for win32
2367
2368 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
2369
2370         * device/include/Makefile.in (install): fixed by replacing spaces
2371         by tabs
2372         * doc/README.txt,
2373         * doc/INSTALL.txt: updated for release
2374         * doc/sdccman.lyx: added warning for --xstack being buggy
2375
2376 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
2377
2378         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
2379         to eliminate build warnings.
2380         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
2381
2382 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
2383            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2384
2385         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
2386         removed -penable-stack, added comment for stack pragma, added
2387         warning for not initializing the stack/frame registers, removed
2388         comment at interrupts section
2389
2390         Stack is made permanent, there is no ability to disable stack usage.
2391         * src/pic16/device.h,
2392         * src/pic16/device.c: removed all references to USE_STACK macro,
2393         * src/pic16/device.c (pic16_dump_section): when no elements in
2394         rlist, free rlist before return,
2395         * (pic16_dump_int_registers): NEW, internal registers are a new set
2396         of general purpose registers reused by each function,
2397         * (checkAddReg): returns 1 if registers is added to set,
2398         * (pic16_groupRegistersInSection): when a registers is of type
2399         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
2400         * src/pic16/device.h: memRange and Assigned Memory are deleted,
2401         SRCASECMP macro is moved here from device.c
2402         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
2403         PO_PCLATU, PO_PRODL, PO_PRODH,
2404         * (pic16_pCodeOpType, genMinus,
2405         changed compares to "a" register, with AOP_ACC,
2406         * (pic16_genPlus): fixed some bugs and indented properly,
2407         * (pic16_addSign): changed size to size+offset in the MOVWF
2408         instruction,
2409         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
2410         multiply 8-bit operand by literal, result is 8-bit,
2411         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
2412         multiply 2 8-bit operand, result is 8-bit,
2413         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
2414         genUMult8X*_16,
2415         * src/pic16/gen.c: changed accUse to contain WREG only,
2416         * (pic16_emitcomment): renamed to pic16_emitpcomment,
2417         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
2418         true, do not use immediate addressing any more unless sym is a
2419         pointer in codespace,
2420         * (aopForRemat): do not use immediate addressing when symbol not in
2421         codespace and when symbol's address is requested,
2422         * (aopOp): for-loop in if(sym->accUse) is modified for the new
2423         accUse size (= 1),
2424         * (aopGet): added case for AOP_ACC and don't return "accumulator
2425         bug" but WREG instead,
2426         * (popGetTempReg): pushes contents of temporary register in stack,
2427         * (popReleaseTempReg): pops contents of temporary register from
2428         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
2429         * (pic16_popGet): separated case AOP_ACC to return register WREG
2430         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
2431         or PO_IMMEDIATE and initializes their instance/offset appropriately,
2432         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
2433         the use of immediate pointers to certain cases only.
2434
2435         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
2436         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
2437         * (assignResultValue, genCall, genRet): modified to use the new
2438         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
2439         genPcall is still broken,
2440         * (genFunction): added code to create 'A' type pBlocks when
2441         interrupt functions are generated, code not extensively tested yet,
2442         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
2443         * (genEndFunction): modified so ISRs pop stored registers from stack,
2444         * (genMultOneByte): cleanup,
2445         * (AccRsh): added flag andmask, to and result with appropriate mask,
2446         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
2447         * (genDataPointerGet): fixed and reenabled its use,
2448         * (genNearDataPointerGet): bugs fixed,
2449         * (genDataPointerSet): bugs fixed,
2450         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
2451         pic16_DumpSymbol, pic16_DumpOp,
2452         * src/pic16/genutils.h: function prototypes for the above functions,
2453         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
2454         pointers,
2455         * (pic16emitRegularMap): many many many improvements, but needs a
2456         major cleanup,
2457         * src/pic16/main.c: enable_stack in pic16_options is removed,
2458         * (_pic16_parseOptions): removed command line options -penable-stack,
2459         * (_process_pragma): emit stack symbol only when stack pragma is
2460         processed,
2461         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
2462         redirected to FSR0L/FSR0H pair,
2463         * (pic16_get_op, pic16_get_op2): modifications and improvements,
2464         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
2465         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
2466         for immediates,
2467         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
2468         * (dumpPicOptype): NEW,
2469         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
2470         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
2471         with movff instruction,
2472         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
2473         added pic16_int_regs, some packRegsFor* functions are commented out,
2474         because produce errors,
2475         * src/pic16/NOTES: minor modifications
2476
2477 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2478
2479         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
2480         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
2481         --pack-iram.
2482         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
2483         * as/mcs51/lkaomf51.c: fixed bug #895763
2484
2485 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
2486
2487         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
2488
2489 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2490
2491         * doc/sdccman.lyx: added details about the HC08 storage classes and
2492         interrupts, fixed the register usage info for z80 & gbz80
2493
2494 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
2495
2496         * doc/sdccman.lyx: added more pic16 port documentation
2497         * device/include/pic16/: added header pic18fregs.h
2498
2499 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
2500
2501         * doc/sdccman.lyx: added Vangelis' contribution
2502
2503 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2504
2505         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
2506         extend to the next CALL or PCALL, not just to the next CALL.
2507
2508 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
2509
2510         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
2511
2512 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2513
2514         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
2515         bug #895752 and a better fix for bug #716790
2516
2517 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2518
2519         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
2520
2521 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2522
2523         * doc/sdccman.lyx: minor changes, minor changed
2524
2525 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
2526
2527         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
2528         which can't handle SDCC_NEWONEBYTEOPS,
2529         (geniCodeMultiply): removed conversion from mult to shift for pic14
2530         and pic16
2531
2532 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2533
2534         * src/hc08/gen.h,
2535         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
2536         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
2537         thus fixing bug #895406
2538
2539 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
2540
2541         * device/lib/_modsint.c,
2542         * device/lib/_modslong.c: sign follows divisor only
2543         * src/hc08/gen.c (genMultOneByte): if result size is 1,
2544         signs or signedness can be ignored
2545         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
2546         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
2547         added optimization for IFX,
2548         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
2549         arguments;
2550         reenabled optimization for IFX, which was removed on 2004-01-11
2551         * src/SDCCast.h: added return type IFX
2552         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
2553         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
2554         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
2555         SDCC_OLDONEBYTEOPS selects the old behaviour
2556         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
2557         changed again and commented promotion rule
2558         * src/SDCCval.c (valDiv): promotion no longer necessary
2559         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
2560         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
2561         rewritten
2562         * support/regression/tests/onebyte.c: added
2563
2564 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
2565
2566         * gen.c (genInline): reverted to old code for assemnling inline
2567         code because of bug reported James Chadd
2568
2569 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
2570
2571         * ralloc.h: missing declarations from previous patch,
2572         seems that patch for ralloc.h was never applied, fixed
2573
2574 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2575            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
2576
2577         * pcode.c,
2578         * pcode.h,
2579         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
2580         indirect addressing. Marked FSR0 as deprecated
2581         * gen.c (pointerCode): commented out, not needed now
2582         (pic16_popGet2p): new MOVFF helper function
2583         (genGenPointerGet),
2584         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
2585         (shiftRLong): removed duplicate debugging info
2586
2587 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2588
2589         * src/ds390/gen.c (genNearPointerGet),
2590         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
2591         optimization with bits, but not bitfields.
2592         * src/ds390/ralloc.c (packRegisters),
2593         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
2594
2595 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
2596
2597         * src/SDCCcse.c (algebraicOpts): copy operands before modification
2598
2599 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2600
2601         * src/SDCCsymt.h,
2602         * src/SDCCicode.c (operandFromSymbol),
2603         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
2604         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
2605         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
2606         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
2607         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
2608         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
2609         bug #892038
2610         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
2611         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
2612         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
2613         * src/SDCCsymt.c (newSymbol),
2614         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
2615         enumerator_list),
2616         * src/SDCCval.h,
2617         * src/SDCCval.c (newiList): fixed bug #885705
2618
2619 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2620
2621         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
2622         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
2623
2624 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2625
2626         * device/include/c8051f120.h,
2627         * device/include/c8051f300.h,
2628         * device/include/c8051f310.h: added/updated header files for Silicon
2629         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
2630         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
2631         in new section Submitting patches
2632
2633 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2634
2635         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
2636         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2637         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2638         genGenPointerSet),
2639         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
2640         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2641         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2642         genGenPointerSet),
2643         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
2644         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2645         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2646         genGenPointerSet),
2647         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
2648         genFarPointerGet, genCodePointerGet, genGenPointerGet,
2649         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
2650         genGenPointerSet): fixed bug #892400
2651         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
2652         to eliminate build warnings.
2653         * src/SDCCast.c (processParms),
2654         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
2655         fixed bug 751859
2656         * support/valdiag/valdiag.py: added GCC to the list of defines active
2657         when compiling with gcc
2658
2659 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2660
2661         * support/Util/SDCCerr.h,
2662         * support/Util/SDCCerr.c,
2663         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
2664         with an incomplete type (fixed bug #883734)
2665         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
2666
2667 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2668
2669         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
2670
2671 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2672
2673         * src/SDCCast.c (decorateType),
2674         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
2675         function pointer implementation
2676         * support/regression/tests/funptrs.c: added tests to verify both forms
2677         of function pointers work correctly. Added tests to verify parameters
2678         are passed in the correct order.
2679
2680 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
2681
2682         * device.c (regCompare): registers are sorted by ascending
2683         address and increasing size,
2684         * main.c (_pic16_finaliseOptions): removed the declaration
2685         of compiler macro MCU. Now a macro of the format pic18fxxxx
2686         will be defined from the command line
2687
2688 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
2689             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
2690
2691         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
2692         PCOP_RLCF was overwritten!
2693         * gen.c (genSkip): commented out calls to pic16_emitcode,
2694         * (genCmpEQ): fixed "long" compares, only high word did get compared,
2695         * (genlshTwo),
2696         * (genRRC): added debugging info,
2697         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
2698         overwritten while shifting,
2699         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
2700         overwritten while shifting,
2701         * (AccLsh),
2702         * (AccRsh),
2703         * (shiftLLeftOrResult),
2704         * (shiftRLeftOrResult),
2705         * (shiftRLong),
2706         * (shiftLLong): Implemented with pic16_emitpcode
2707         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
2708         * (genLeftShift): Fixed bug, operand for shift by variable always
2709         was "and"ed with 0x0f,
2710         * (genLeftShiftLiteral),
2711         * (genrshTwo),
2712         * (genRightShiftLiteral): added debugging info,
2713         * (genrshFour): added comment,
2714         * (genRightShift): determined signedness from operand "left"
2715         instead of "result"
2716
2717 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2718
2719         * src/SDCCicode.c (geniCodeParms),
2720         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
2721         function pointers, fixed function pointer bugs #861242 and #861896
2722
2723 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2724
2725         * device/include/c8051f000.h,
2726         * device/include/c8051f120.h,
2727         * device/include/c8051f300.h: added header files for Silicon
2728         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
2729
2730 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
2731
2732         * src/SDCCast.c (processParams): added new type flow and restructured
2733         (gatherAutoInit): added new type flow
2734         (addCast): cosmetic changes
2735         (getLeftResultType): added new type flow for array indices, patch
2736         provided by Stas, see FR #877103
2737         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
2738         array index patch by Stas
2739         * src/SDCCast.h: added prototype getResultTypeFromType()
2740         * src/SDCCval.h,
2741         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
2742         * src/pic/glue.c (pic14emitStaticSeg),
2743         * src/pic16/glue.c (pic16emitStaticSeg),
2744         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
2745         for initialization of symbols
2746         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
2747         * support/Util/SDCCerr.h:
2748         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
2749         * .version: bumped version number to 2.3.8
2750         * device/include/Makefile.in (install),
2751         * doc/Makefile (install): changed to 'rm `find ...`' construct to
2752         avoid warnings
2753
2754 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
2755
2756         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
2757         Slade Rich fixed an optimization bug
2758         * src/pic/pcodepeep.c,
2759         * src/pic/pcoderegs.c
2760         * doc/Makefile (install): added test for directory
2761
2762 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2763
2764         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
2765         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
2766         * src/pic/ralloc.c (getRegPtr, getRegGpr),
2767         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
2768         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
2769         * as/mcs51/asexpr.c (term),
2770         * as/hc08/asexpr.c (term): fixed bug #887146
2771
2772 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2773
2774         * src/z80/gen.c (genMult): handle single byte result product
2775         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
2776         DUMMY_READ_VOLATILE (fixed bug #886367)
2777
2778 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
2779
2780         * support/regression/tests/libmullong.c: fixed logic, on little endian
2781         hosts we ended without a mullong_wrapper()
2782
2783 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2784
2785         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
2786         virus/worm forged address usage.
2787
2788 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
2789
2790         Fixed promotion, it should be done on AST level:
2791         * src/SDCCast.c (addCast): added promotion to int
2792         (decorateType): updated call to upCast()
2793         * src/SDCCicode.c (geniCodeLeftShift): removed call to
2794         usualUnaryConversions()
2795
2796 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
2797
2798         * support/regression/tests/literalop.c (mulWrapper): Added a
2799         wrapper to remove integer overflow warnings.
2800
2801         * support/regression/tests/float_trans.c: Made work on host.
2802
2803         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
2804         location of sz80.
2805
2806         * support/regression/generate-cases.py (main): Changed from inline
2807         to a main method.
2808
2809         * doc/Makefile (install): Changed to depth first to get rid of
2810         missing directory install warning.
2811
2812         * as/Makefile (install-doc): Made work on Mac.
2813
2814 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
2815
2816         * src/SDCCast.c: added an additional type flow in decorateType() of
2817         opposite direction, see feature request #860006; it's enabled at runtime
2818         by setting the environment variable SDCC_NEWTYPEFLOW
2819         * src/SDCCast.h: changed prototype of decorateType()
2820         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
2821         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
2822         'char' to 'int' can be omitted, if both operands are 'unsigned char';
2823         see feature request #877103
2824         * src/SDCCval.c: updated call of decorateType()
2825         (valBitwise): fixed bug #882876
2826         (valMinus): added promotion
2827         (valLogicAndOr): result is unsigned
2828         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
2829         * src/SDCCsymt.c (computeType),
2830         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
2831         must not cause an unsigned operation
2832         * src/pic/glue (pic14emitRegularMap),
2833         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
2834
2835 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
2836
2837         * src/pic/pcode.c (PCodeID): commented out left over debug code
2838
2839 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
2840
2841         * support/valdiag/tests/overflow.c: added shift tests
2842         * src/pic/device.c,
2843         * src/pic/gen.c,
2844         * src/pic/gen.h,
2845         * src/pic/glue.c,
2846         * src/pic/main.c,
2847         * src/pic/pcode.c,
2848         * src/pic/pcode.h,
2849         * src/pic/pcodepeep.c,
2850         * src/pic/pcoderegs.c,
2851         * src/pic/ralloc.c,
2852         * src/pic/ralloc.h: applied patch from Slade Rich;
2853         added support for multiple code pages and multiple RAM banks on the
2854         PIC 14 port. The ASM files now no longer simply assume all the
2855         code / RAM are in the same page / bank. This means the linker can
2856         safely allocate code/RAM of separate ASM files to different pages/banks.
2857         * doc/sdccman.lyx: added Slade's tips
2858         * src/mcs51/peeph.def: fixed bug #880768
2859
2860 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2861
2862         * src/hc08/ralloc.c (rematStr): fixed bug #879282
2863         * src/SDCCast.c (decorateType): fixed bug #880197
2864
2865 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
2866
2867         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
2868         getopt.h.
2869
2870         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
2871         strtof is not part of C89 and isn't included with Mac OS X.
2872
2873 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2874
2875         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
2876         shiftL2Left2Result): fixed bug #879326
2877         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
2878         (genMultOneByte): fixed bug in signed vs unsigned multiplication
2879         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
2880         address fetch for clr instruction
2881         * device/lib/hc08/_mulint.c: created optimized assembly version
2882         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
2883
2884 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
2885
2886         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
2887         proposed in FR #877103
2888
2889 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
2890
2891         * src/SDCCval.c (cheapestVal): added missing checks
2892         * src/SDCCicode.c (usualBinaryConversions): fixed condition
2893         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
2894
2895 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
2896
2897         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
2898         equal operands
2899
2900 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
2901
2902         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
2903         loaded with the linker search paths (-L arguments) and the libraries
2904         to be linked with the current source (-l arguments). Changes
2905         currently will affect only the pic16 port.
2906         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
2907         include path the port specific paths and port specific libraries,
2908         * gplink command now contains the $3 argument,
2909         * src/pic16/device.h,
2910         * src/pic16/device.c,: structure PIC_device is made public and
2911         renamed to PIC16_device, the same for variable Pics which is renamed
2912         to Pics16. Updated all references to them.
2913         * src/pic16/glue.c (pic16glue): corrected bug with code
2914         initialization which bypassed the variable initializations block.
2915
2916         * device/lib/pic16/Makefile.rules: removed --penable-stack from
2917         COMPILE_FLAGS and added the --nostdinc option
2918
2919 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2920
2921         * device/include/mc68hc908jb8.h: Register defs for another member
2922         of the hc08 family. Contributed by Bjorn Bringert - thanks!
2923
2924 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
2925
2926         Documenting changes from previous commits.
2927         * configure.in (version 1.56),
2928         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
2929         when generating output files to configure the pic16 library,
2930         but now I've commented it out, since gputils aren't installed in the
2931         SF compile farm, so library won't compile
2932
2933         * device/lib/Makefile.in (version 1.56): initially I've added in
2934         target 'all' the prerequestive 'model-pic16' so it compiled the
2935         pic16 library, but now I've commented it out for the same reasons
2936         above,
2937         * added targets 'model-pic16' and 'objects-pic16' to compile the
2938         library
2939         * added target 'port-specific-objects-pic16' to handle the
2940         generated libraries and copy them into the build/ directory
2941         * added target 'clean-intermediate-pic16' to clean intermediate
2942         files into pic16 directory
2943         * in target 'installdirs' added line to create directory pic16 in
2944         the installation path
2945
2946         * device/include/Makefile.in (version 1.11): in target 'install'
2947         added lines to copy all header files to installation path,
2948         * in target 'installdirs' added line create directory for pic16
2949         headers in the installation path
2950
2951 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
2952
2953         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
2954          a function call
2955
2956 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
2957
2958         * configure,
2959         * device/lib/configure.in,
2960         * device/lib/configure: fixed for autoconf 2.57
2961
2962 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2963
2964         * src/z80/main.c (_parseOptions): fixed the portmode= command line
2965         option so that it actually works. Made it specific to the z80, since
2966         the gbz80 doesn't have these kinds of I/O ports.
2967
2968 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2969
2970         * device/include/z180.h,
2971         * device/lib/_memcpy.c,
2972         * device/lib/_memmove.c,
2973         * device/lib/_mulint.c,
2974         * device/lib/ser_ir.c,
2975         * device/lib/ser_ir_cts_rts.c,
2976         * device/lib/_strcmp.c,
2977         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
2978         * src/z80/main.c (_process_pragma): add support for pragmas bank and
2979         portmode; added deprecation warning for bank= and protmode= forms.
2980         Also, guard against buffer overflow.
2981         * src/z80/gen.c (aopGet): generate better code for sfr banked read
2982
2983 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2984
2985         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
2986         changed interrupt vector table generation to only emit declared vectors.
2987         * device/include/Makefile.in: added missing backslash
2988         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
2989
2990 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
2991
2992         Mainly changes to support compilation of the device libraries
2993         * src/pic16/device.c: stack is allocated via symbol and not
2994         via literal number. The symbol is placed in the corresponding
2995         position of the data ram
2996         * (pic16_dump_section): relocatable and absolute uninitialized
2997         data are now emitted in sorted order to reduce section naming,
2998         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
2999         weren't marked as being in the access bank,
3000
3001 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
3002
3003         Added portion of GNU PIC Library under the directory
3004         device/include/pic16 and device/lib/pic16. These files
3005         contain the declarations of SFRs for the PIC18Fxx2 devices.
3006         The directory is initialized via configure from toplevel.
3007
3008 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
3009
3010         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
3011         the spilllocations to be compared correctly
3012
3013 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
3014
3015         * src/SDCCast.c (decorateType): fixed bug introduced today
3016
3017 2004-01-12  Borut Razem <borut.razem AT siol.net>
3018
3019         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
3020         doc/sdccman.lyx: upper case pragmas are deprecated
3021
3022 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
3023
3024         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
3025         in simpler and even better code
3026
3027 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
3028
3029         * src/SDCCicode.c (operandOperation): fixed bug #874819
3030         * src/SDCCast.c (decorateType): fixed
3031         char foo (unsigned long ul) { return ul > 0; }
3032
3033 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3034
3035         * doc/sdccman.lyx: Moved and added some sections, small changes
3036         all over. Telling LaTeX to be less strict with word spacing
3037         to better keep the right margin. Changed some notes about
3038         maintainance of the ports in section 3.2.1 - is it OK like this?
3039
3040 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
3041
3042         SDCC source changes:
3043         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
3044         convilong): modified to inform the pic16 port that builtin functions
3045         are external
3046
3047         PIC16 PORT specific changes:
3048         * src/pic16/device.c pic16_dump_equates() added,
3049         processor registers declared internally by the port are emitted in
3050         the translation as equates,
3051         * src/pic16/gen.c: inline code is passed unprocessed to the
3052         translation,
3053         * (pic16_popGetLit2): fnuction modified to take second operand as
3054         pCodeOp pointer and not as literal,
3055         * (popRegFromIdx): prefixed with pic16_,
3056         * (pic16_popCombine2): modified to receive already allocated pCode
3057         operands,
3058         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
3059         * (genFunction): initializes local stack frame and pushes on stack
3060         all the registers used by this function,
3061         * (genEndFunction): restores all registers from stack and restores
3062         stack frame,
3063         * src/pic16/glue.c (pic16emitRegularMap): various changes and
3064         improvements,
3065         * (pic16glue): changed the program startup sequence,
3066         * added new dbName code 'A' for functions placed in absolute section
3067         * src/pic16/main.c: added function attribute _naked,
3068         * added pragma 'code' to place a fnuction at an absolute address,
3069         * added command line arguments --debug-ralloc and --pcode-verbose,
3070         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
3071         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
3072         * (pic16_newpCodeOpLit2): modified to take the second operand as
3073         pCodeOp pointer,
3074         * (pic16_printpBlock): modified to emit each function in a separate
3075         section,
3076         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
3077         UPPER for immediate operands,
3078         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
3079         instruction,
3080         * src/pic16/peeph.def: all peepholes with movff are commented out,
3081         because there is a problem in the pcode peep optimizer,
3082         * src/pic16/ralloc.c: the register allocator can now reuse local
3083         function symbols for another function. This saves register usage.
3084         * src/pic16/ralloc.h: added flag isLocal in structure regs,
3085
3086         Added file src/pic16/NOTES with information about program writing on
3087         the current port version.
3088
3089 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3090
3091         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
3092         and peephole 252 (array access)
3093
3094 2004-01-09  Borut Razem <borut.razem AT siol.net>
3095
3096         * src/SDCCmain.c : fixed #872250: -l command line defined library
3097           files are scanned before standard library files
3098
3099 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3100
3101         * src/SDCCast.c (decorateType): fixed bug #874046
3102
3103 2004-01-09  Borut Razem <borut.razem AT siol.net>
3104
3105         * support/scripts/sdcc.nsi: remove previous installation
3106
3107 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3108
3109         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
3110         bytes for last interrupt vector (mcs51)
3111         * sdcc.spec: fixed typo
3112
3113 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3114
3115         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
3116         gen51Code): more efficient parameter receive for --model-large
3117         ("bug" #845294)
3118
3119 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3120
3121         * src/ds390/main.c,
3122         * src/z80/main.c: added missed needLinkerScript flags (more than
3123         one port structure defined in these file)
3124         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
3125         bug #795325
3126
3127 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
3128
3129         * src/SDCCmain.c: removed various references to DEFAULT_PORT
3130         * src/port.h: added flag needLinkerScript in port->linker
3131         structure to inform whether to create a .lnk file or not,
3132         * src/avr/main.c,
3133         * src/ds390/main.c,
3134         * src/hc08/main.c,
3135         * src/mcs51/main.c,
3136         * src/pic/main.c,
3137         * src/pic16/main.c,
3138         * src/xa51/main.c,
3139         * src/z80/main.c: changed appropriately to configure
3140         needLinkerScript flag
3141         * src/pic/gen.c,
3142         * src/pic16/gen.c (genAddrOf): fixed bug #863624
3143         * src/pic/glue.c: added variable udata_section_name to
3144         override default uninitialized data segment definition for
3145         devices only with SHAREBANK memory (reported from Erik Epetrich)
3146         * (pic14emitOverlay): modified to emit a commented overlay segment
3147         directive when no overlay data exist
3148         * (picglue): modified to emit uninitialized data segment
3149         according to udata_section_name
3150         * src/pic/main.c (_pic14_parseOptions): added command line
3151         options --udata-section-name=[name] to override default
3152         udata definition name
3153         * modified _linkCmd and _asmCmd to include compiler passed
3154         arguments via -W option
3155         * src/pic16/main.c: added $l in _asmCmd, changed extension for
3156         object file from '.rel' to '.o' in port->linker structure,
3157         changed size of fptr from 2 to 3 in port structure
3158
3159 2004-01-07  Borut Razem <borut.razem AT siol.net>
3160
3161         * support/scripts/sdcc.nsi: update PATH
3162         * support/scripts/sdcc.ico: craeted
3163
3164 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
3165
3166         * device/include/Makefile.in: fix install
3167         * doc/Makefile: fix install
3168
3169 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3170
3171         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
3172         in bug #860505
3173         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
3174         how the function variable allocation summary is displayed; also
3175         include information about variables allocated to the overlay
3176         segment
3177
3178 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3179
3180         * as/mcs51/lkmain.c: Help about -Y option
3181         * as/mcs51/lkarea.c: Fixed gcc warnings
3182
3183 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
3184
3185         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
3186         fixed warning
3187         * support/valdiag/tests/overflow.c: added
3188         * src/SDCCast.c (decorateType),
3189         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
3190         LEFT_OP (left shift)
3191
3192 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3193
3194         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
3195         (default behaviour).
3196
3197 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3198
3199         A python script to validate compiler diagnostic messages. It can be
3200         used to verify that sdcc complains about bad c source code and
3201         gives a good location of the error.
3202         * support/valdiag/Makefile,
3203         * support/valdiag/valdiag.py,
3204         * support/valdiag/tests/*
3205
3206 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3207
3208         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
3209         * src/SDCCsymt.c (newEnumType),
3210         * src/SDCCsymt.h
3211         * support/Util/SDCCerr.c,
3212         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
3213         enum related bugs.
3214         * support/regression/tests/enum.c: added test for enum values that
3215         require at least 2 bytes of storage.
3216
3217 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
3218
3219         * src/common.h: added ifndef/define/endif macros
3220         around the header file.
3221         Bug reported from Jesus Calvino-Fraga
3222
3223 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
3224
3225         * sdcc.spec: updated
3226         * device/include/Makefile.in: don't install CVS directories
3227         * device/lib/Makefile.in: added removal of CVS directories after install
3228         * doc/Makefile: fixed install, added local_icons
3229         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
3230         * src/mcs51/gen.c (genRightShift): fixed bug #870788
3231         * src/ds390/gen.c (genRightShift): fixed bug #870788
3232         * src/SDCCast.c (decorateType): fixed bug #870781
3233
3234 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
3235
3236         PIC16 port related changes:
3237         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
3238         added variable stackPos,
3239
3240         * gen.c: genCall, assignResultValue: added support for
3241         pushing/retrieving function parameters to/from stack,
3242         genFunction,genEndFunction: setup stack frame for the
3243         generated function,
3244         genAddrOf: will be changed according to bug 863624
3245
3246         * added files genutils.c and genutils.h which contain gen*
3247         debugged and optimised functions extracted from gen.c
3248
3249         * glue.c: added variable 'externs' which holds extern symbols,
3250         pic16emitRegularMap: is modified to properly handle relocatable
3251          symbols under the new scheme,
3252         pic16createInterruptVect: is modified
3253         pic16printPublics: is modified to emit 'global' assembler directives,
3254         added pic16_printExterns to print extern symbols,
3255         pic16glue: initializes stack/frame pointer in the beginning of
3256         the assembly output. Temporary hack, will be corrected later,
3257         because gplink yet does not support stack and SDCC does not
3258         yet support a type of crt0.o object to create the final binary.
3259
3260         * Removed many lines that contain 8051 legacy code.
3261         * The code is finally placed under a 'code' directive.
3262         * Added port specific options.
3263
3264         * _process_pragma: simplified since now we do not need *special*
3265         include file to define SFR registers. But a separate header
3266         will be needed. This will be developed later.
3267         * _pic16_parseOptions: added, parses port specific options:
3268         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
3269         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
3270         --preplace-udata-with=
3271
3272         * _pic16_setDefaultOptions: modified to initialize section names,
3273         but hack is temporarly out of order since it needs improvement.
3274         * _pic16_genAssemblerPreamble: configuration words are emitted by
3275         their address instead of their name. This part is incomplete and
3276         supports only the 18Fxx2 devices. Other devices will emit an error
3277         during assembly since they do not contain the same set of config
3278         registers
3279         * _pic16_genIVT: is modified,
3280
3281         * pcode.c: added definitions for some hardware registers that are needed
3282         for stack support
3283         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
3284         All PCI entries are updated. Now LFSR is supported.
3285         * Removed pic16_pciTRIS is mentioned by mdubuc in source
3286         * added pic16_newpCodeOpLit2 to support instructions with
3287         two literal arguments
3288         * pic16_pCode2str: corrected code that emits assembler instructions
3289         with two literal operands and those that have an access bit modifier
3290         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
3291         this fixes a bug which caused some labels to be lost, when an
3292         assembler directive was added, i.e. banksel,
3293         * pic16_FixRegisterBanking: improved logic that causes the insertion
3294         of bank switching,
3295         * InlineFunction: functions that are called once, are not any more
3296         inlined. This can be a port option in the future,
3297
3298         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
3299
3300         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
3301         hold the corresponding uninitialized symbols,
3302         * pic16_allocProcessorRegister: registers have explicit marked the
3303         accessBank field,
3304         * pic16_allocInternalRegister: registers are explicit marked as
3305         not used,
3306         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
3307         processing list, so bit registers were lost,
3308         *
3309
3310         * ralloc.h: added field 'accessBank' and original symbol operand
3311         in register definition,
3312         * removed the field isMapped from register definition,
3313
3314         ** Several functions have been removed from various sources:
3315         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
3316         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
3317         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
3318         pic16_assignRelocatableRegisters
3319
3320         ** others have been introduced:
3321         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
3322         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
3323
3324 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
3325
3326         * support/scripts/inc2h.pl: changed definition of BIT_AT
3327         to emit 'sbit at' instead of 'bit at'. This was a request.
3328
3329         PIC16 port related preliminary changes:
3330         * gen.c: prefixed function popRegFromString with
3331         pic16_ and all references to it corrected
3332         * pcode.c: all pic16_pc_* hardware registers prefixed
3333         with underscore (_),
3334         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
3335         * ralloc.c: newReg(): when register is REG_SFR then
3336         set address to rIdx,
3337         pic16_allocProcessorRegister(): marks register wasUsed=0
3338         pic16_writeUsedRegs(): added a call to assign processor
3339         registers via pic16_assignFixedRegisters
3340
3341 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3342
3343         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
3344         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
3345         variables in unused register banks.  Also the SSEG is placed
3346         wherever there is enough space for it, and IDATA can be anywhere
3347         in internal RAM.  For now compile using -Wl-Y[stack_size].
3348         The mem file is different for this option as well, since it
3349         makes no sense of talking about DSEG lenght.
3350
3351 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
3352
3353         * src/SDCClrange.c: fixed bug 869095 that caused segfault
3354         in certain cases, e.g. when ROM assignment, patch provided
3355         from Albert den Haan.
3356
3357 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
3358
3359         Many signedness and type propagation fixes:
3360         * src/SDCCicode.c: made geniCodeCast() static
3361         replaced SPEC_ by IS_ (cosmetic)
3362         (operandOperation): fixed div and mod operation
3363         (usualBinaryConversions): added support for promotion of char
3364         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
3365         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
3366         (geniCodeAdd): an array index will stay unsigned, even if promoted
3367         from char to int
3368         (geniCodeArray): ditto
3369         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
3370         * src/SDCCsymt.c (computeType): added more support for char;
3371         promotion of char is selectable by promoteCharToInt, fixed signedness
3372         for all cases
3373         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
3374         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
3375         * src/SDCCval (val*): replaced signedness calculation by
3376         computeType()
3377         rearranged if-branches (cosmetic)
3378         (valShift): added warning W_SHIFT_CHANGED
3379         (valCompare): fixed problem with different types
3380         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
3381         * support/regression/tests/literalop.c: added many cases
3382         * support/regression/tests/ast_constant_folding.c: changed finally to
3383         'unsigned int'
3384         * .version: new year, new version: 2.3.7
3385         * src/SDCCmain.c (main): applied patch #866468
3386         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
3387         provided by Scott Bronson
3388         * doc/sdccman.lyx: updated documentation for sdcdb
3389         updated and added chapter tips
3390
3391 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3392
3393         * src/SDCCsymt.h: missing from yesterday's commits
3394
3395 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3396
3397         * src/SDCC.y (struct_or_union_specifier),
3398         * support/Util/SDCCerr.c,
3399         * support/Util/SDCCerr.h: verify that struct & union tags are used
3400         as declared.
3401
3402 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3403
3404         * src/SDCCglobl.h: missing from yesterday's commits
3405
3406 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3407
3408         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
3409         sft_attributes, struct_declaration, parameter_declaration,
3410         type_name, start_block, declaration_list),
3411         * src/SDCC.lex (check_type): support redefinition of typedef names
3412
3413 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3414
3415         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
3416         aligned xdata arrays. Erik helped me with the if clause.
3417
3418 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3419
3420         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
3421         warning
3422
3423 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3424
3425         * src/SDCCast.h,
3426         * src/SDCCast.c (newAst_),
3427         * src/SDCCicode.h,
3428         * src/SDCCicode.c (ast2iCode, newiCode),
3429         * src/SDCCglobl.h,
3430         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
3431         expr, statement, expression_statement, selection_statement,
3432         iteration_statement, expr_opt, jump_statement): foundation for tracking
3433         sequence points
3434         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
3435         point code too)
3436
3437 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3438
3439         * support/Util/SDCCerr.c,
3440         * src/SDCCast.h,
3441         * src/SDCCast.c (createCase, createDefault, decorateType),
3442         * src/SDCClabel.c (labelUnreach),
3443         * src/SDCC.y (labeled_statement, jump_statement): More improvements
3444         to error messages.
3445         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
3446         (with thanks to Stas Sergeev)
3447         * device/include/time.h,
3448         * device/lib/time.c (CheckTime): suppress unreachable code warning
3449
3450 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3451
3452         * src/SDCCast.c (createIvalCharPtr),
3453         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
3454         bug #753752)
3455         * support/regression/tests/nullstring.c: tests for these two bugs
3456
3457 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3458
3459         * support/Util/SDCCerr.h,
3460         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
3461         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
3462         about storage class and 'at' used inside struct or union
3463         * src/SDCCBBlock.c (iCodeFromeBBlock),
3464         * src/SDCCcse.c (ifxOptimize),
3465         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
3466         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
3467         printIval, emitStaticSeg, emitOverlay),
3468         * src/SDCClabel.c (deleteIfx),
3469         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
3470         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
3471         gatherAutoInit, processParms),
3472         * support/Util/SDCCerr.h,
3473         * support/Util/SDCCerr.c (werrorfl): Support for better error location
3474         reporting for post-parse errors.
3475
3476 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3477
3478         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
3479         implicit casts via union; they don't work on big endian systems
3480         (possible fix for bug #861138)
3481
3482 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3483
3484         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
3485         * src/mcs51/main.c: fixed the fix for bug #737001
3486
3487 2003-12-15  Borut Razem <borut.razem AT siol.net>
3488
3489         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
3490
3491 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3492
3493         * support/makebin/makebin.c: put output in binary mode
3494
3495 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3496
3497         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
3498         xdata and data memory on startup. Set the environment variable
3499         SDCC_NOGENRAMCLEAR to disable this.
3500         * src/mcs51/peephole.def,
3501         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
3502         (allows non-interrupt and interrupt code to safely compete for a resource
3503         without the non-interrupt code having to disable interrupts)
3504
3505 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3506
3507         * src/SDCCicode.c (geniCodeAdd),
3508         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
3509         with valFromType if type might be a pointer and host is big endian).
3510         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
3511         types, not just integer types.
3512         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
3513         multiply defined with mismatching "at" address.
3514
3515 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3516
3517         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
3518         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
3519         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
3520         with embedded nulls (fixed bug #753752)
3521
3522 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3523
3524         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
3525         Apparently this did not see much testing (endless loop)
3526
3527 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3528
3529         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
3530
3531 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3532
3533         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
3534         gracefully handle NULL memmap pointers
3535
3536 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3537
3538         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
3539         instead of deleting the iCode when an operand is volatile
3540         * src/z80/gen.c (genDummyRead),
3541         * src/mcs51/gen.c (genDummyRead),
3542         * src/ds390/gen.c (genDummyRead),
3543         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
3544         not just IC_RIGHT
3545         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
3546         * src/SDCC.y: fixed bug #850420
3547
3548 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3549
3550         Applied z80 i/o port patch from Peter Townson and fixed some operators
3551         to better handle operands in A register.
3552         * device/include/z180.h
3553         * src/SDCC.y
3554         * src/SDCCglue.c
3555         * src/z80/gen.c
3556         * src/z80/gen.h
3557         * src/z80/main.c
3558         * src/z80/peeph-z80.def
3559         * src/z80/peeph.def
3560         * src/z80/z80.h
3561
3562 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3563
3564         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
3565
3566 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3567
3568         * device/lib/hc08/_mullong.c: Removed extra #endif
3569
3570 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3571
3572         * sim/ucsim/hc08.src/inst.cc,
3573         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
3574         carries from x to h
3575         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
3576         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
3577         * device/include/stdarg.h: fixed varargs for hc08
3578         * device/lib/Makefile.in,
3579         * device/lib/hc08/Makefile,
3580         * device/lib/hc08/_mulint.c,
3581         * device/lib/hc08/_mullong.c: fixed some endian problems
3582
3583 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3584
3585         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
3586         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
3587         * device/lib/_gptrget.c,
3588         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
3589
3590 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3591
3592         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
3593         * src/SDCCast.c (astErrors): fixed bug #846007
3594         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
3595
3596 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3597
3598         * src/SDCCast.c (decorateType): disabled a transformation I added in
3599         revision 1.188 (access to fields of a structure at an absolute address);
3600         it breaks with bitfields, extern declarations, and gcse analysis.
3601         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
3602         could be assigned through a pointer, so don't complain.
3603         * src/SDCCast.c (astErrors),
3604         * src/SDCCast.h,
3605         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
3606
3607 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
3608
3609         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
3610         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
3611         output of __config directives, since gpasm now supports them
3612         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
3613         pre-processor macro, i.e. -DMCU=p18f452
3614         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
3615         and modified to handle 'cast' icode similarly to '=' icode
3616         * src/pic16/device.h (typedef struct PIC_device): added field
3617         'extMIface' to indicate that chip has external memory interface
3618         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
3619         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
3620         18F8720
3621
3622 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3623
3624         * src/SDCC.y (pointer): fixed bug #846006
3625         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
3626         * src/SDCCast.c (decorateType): fixed bug #846009
3627         * src/ds390/peeph.def,
3628         * src/ds390/gen.c (genAnd, genOr),
3629         * src/mcs51/peeph.def,
3630         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
3631
3632 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3633
3634         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
3635         * src/SDCCdflow.c
3636         * src/SDCCcse.c
3637         * src/SDCCcse.h
3638         * src/SDCCBBlock.h
3639         * src/SDCCBBlock.c
3640
3641 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
3642
3643         fixed bug #845089
3644         * src/SDCCbitv.h,
3645         * src/SDCCbitv.c: added function to free a bitvector
3646         * src/SDCClrange.h,
3647         * src/SDCClrange.c: added function to recompute the liveranges
3648         * src/avr/ralloc.c,
3649         * src/ds390/ralloc.c,
3650         * src/hc08/ralloc.c,
3651         * src/mcs51/ralloc.c,
3652         * src/pic/ralloc.c,
3653         * src/pic16/ralloc.c,
3654         * src/xa51/ralloc.c,
3655         * src/z80/ralloc.c: recompute the liveranges after register packing
3656
3657 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
3658
3659         * src/SDCCloop.c (newInduction): fixed bug #845630
3660
3661 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3662
3663         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
3664         inadvertantly left behind from my 2003-11-12 change
3665
3666 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3667
3668         Updated headers I neglected to commit yesterday.
3669         * src/SDCClrange.h,
3670         * src/SDCCicode.h
3671
3672 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3673
3674         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
3675         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
3676         * src/SDCCopt.c (eBBlockFromiCode),
3677         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
3678         the creation of the key hash table from the sequencing so it can be used
3679         earlier (for some GCSE bug fixes still pending)
3680
3681 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3682
3683         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
3684         * support/regression/tests/addsub.c: testing genPlus shortcut
3685
3686 2003-11-15  Borut Razem <borut.razem AT siol.net>
3687
3688         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
3689
3690 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3691
3692         * src/SDCCcse.c (cseBBlock): fixed bug #527779
3693         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
3694         ordering is immaterial.
3695         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
3696
3697 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3698
3699         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
3700         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
3701         (SIGSEV) of bug #840381
3702         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
3703         unlink new file before rename if new and old filenames are the same)
3704
3705 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3706
3707         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
3708         uninitialized variables) for the mcs51. Set environment variable
3709         SDCC_GENRAMCLEAR to test.
3710         xdata initialization slightly shorter
3711
3712 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3713
3714         * src/SDCCsymt.h,
3715         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
3716         #838241 & 780691 (basicly the same bug)
3717         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
3718         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
3719
3720 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
3721
3722         * src/SDCCmain.c (linkEdit): "fix" #834252
3723
3724 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3725
3726         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
3727         * src/SDCCast.h,
3728         * src/SDCC.y: fixed bug #819403
3729
3730 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3731
3732         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
3733         the reentrant attribute.
3734         * src/hc08/gen.c (genPackBits): added missing stack readjustment
3735         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
3736         simulation
3737         * src/SDCCast.c (decorateType): fixed bug with storage class not being
3738         updated during pointer dereference; f.e. ~(((char *)1)*) was being
3739         erroneously reduced to a literal.
3740         * src/hc08/ralloc.c (packRegisters, rematStr),
3741         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
3742         some cases
3743
3744 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3745
3746         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
3747         * doc/sdccman.lyx: changed from 'article' to 'book'
3748         * doc/Makefile: readded test_suite_spec and cdbfileformat
3749
3750 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
3751
3752         * device/include/stdlib.h: include malloc.h to comply with ANSI
3753         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
3754
3755 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3756
3757         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
3758         * doc/clean.mk: also remove *.out files
3759         * doc/sdccman.lyx: some additions, larger top/bottom margins
3760
3761 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3762
3763         * src/SDCC.y: fixed bug #837365
3764         * support/regression/tests/bitopcse.c
3765         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
3766         a symbol (might be valop instead)
3767         * device/lib/Makefile.in: added errno.c to HC08SOURCES
3768         * device/lib/clean.mk: added hc08 to the cleaning list
3769
3770 2003-11-04  Borut Razem <borut.razem AT siol.net>
3771
3772         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
3773           made 2003-11-04
3774         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
3775           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
3776           malloc is declared in standard stdlib.h
3777
3778 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3779
3780         * device/lib/hc08/Makefile: need to clean .rel not .o files
3781         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
3782
3783 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3784
3785         * src/port.h,
3786         * src/hc08/main.c,
3787         * src/mcs51/main.c,
3788         * src/ds390/main.c,
3789         * src/z80/main.c,
3790         * src/avr/main.c,
3791         * src/pic/main.c,
3792         * src/pic16/main.c,
3793         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
3794         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
3795         tests (which uses the port's oclsExpense function)
3796         * src/SDCC.y,
3797         * src/SDCCast.c,
3798         * src/SDCCicode.c,
3799         * src/hc08/gen.c,
3800         * src/ds390/gen.c,
3801         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
3802
3803 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3804
3805         * src/SDCCcse.c (ifxOptimize),
3806         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
3807         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
3808         deleting the IFX iCode.
3809         * src/hc08/ralloc.c: reduced unneeded slocs
3810         * src/hc08/gen.c: fixed bug in asmopToBoolean
3811
3812 2003-11-04  Borut Razem <borut.razem AT siol.net>
3813
3814         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
3815           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
3816           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
3817           transferred to configure
3818
3819 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
3820
3821         Use headers defined in the C[++] standards:
3822         * sim/ucsim/gui.src/serio.src/fileio.cc
3823         * sim/ucsim/gui.src/serio.src/frontend.cc
3824         * sim/ucsim/gui.src/serio.src/main.cc
3825         * sim/ucsim/gui.src/serio.src/posix_signal.cc
3826         * support/Util/NewAlloc.c
3827         * as/hc08/lklibr.c
3828         * as/mcs51/lklibr.c
3829         * as/z80/aslist.c
3830         * as/z80/assym.c
3831
3832 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3833
3834         * Added MSVC projects for hc08 assembler and linker:
3835         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
3836         /as/hc08/link_hc08.dsp
3837
3838 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
3839
3840         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
3841
3842 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
3843
3844         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
3845
3846 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3847
3848         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
3849
3850 2003-10-31  Borut Razem <borut.razem AT siol.net>
3851
3852         * support/cpp2/cpplib.h,
3853           support/cpp2/cpplib.c,
3854           support/cpp2/cpplex.c,
3855           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
3856           to switch _asm block preprocessing on / off. Default is
3857           #pragma preproc_asm +
3858
3859 2003-10-31  Borut Razem <borut.razem AT siol.net>
3860
3861         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
3862           when outputting comment blocks (when executed with -C option) and
3863           _asm (SDCPP specific) blocks
3864
3865 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3866
3867         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
3868
3869 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
3870
3871         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
3872
3873 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
3874
3875         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
3876         * src/SDCCast.c (decorateType): fixed bug #832664
3877
3878 2003-10-31  Borut Razem <borut.razem AT siol.net>
3879
3880         * support\cpp2\cpplex.c: fixed for SDCPP:
3881           comments(when executed with -C option) and _asm blocks
3882           were included even if they where in skipped #if block.
3883           Applied solution from GCC cpp 3.3.2
3884
3885 2003-10-31  Borut Razem <borut.razem AT siol.net>
3886
3887         * src/SDCC.lex: sdcc now understands both formats:
3888           '# <line_number> <file_name>' and
3889           '#line <line_number> <file_name>'
3890         * support/cpp2/cppmain.c: sdcpp now generates the standard
3891           '# <line_number> <file_name>' instead of former
3892           '#line <line_number> <file_name>'
3893
3894 2003-10-30  Borut Razem <borut.razem AT siol.net>
3895
3896         * support/cpp2/cpphash.h,
3897         * support/cpp2/cpplib.h
3898         * support/cpp2/cpplex.c,
3899         * support/cpp2/cppmain.c,
3900         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
3901
3902 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3903
3904         Fixed a number of problems revealed by bug #827883.
3905         * src/SDCCloop.c (loopInvariants): Spill location of the
3906         result operand should be recomputed if extracted from
3907         a loop. Also, don't extract assignments of an iTemp
3908         from a literal.
3909         * src/SDCCast.c (isConformingBody): loop reversal should
3910         not occur if the control variable is involved with a
3911         relational operator.
3912
3913 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
3914
3915         * .version: bumped to 2.3.6 to reflect the big improvements
3916         made by Erik and Klaus. Thanks!
3917
3918 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
3919
3920         Replaced the livrange code.
3921         * src/SDCClrange.c: added new LR code
3922         * src/SDCCloop.c,
3923         * src/SDCCBBlock.h: removed remainig parts from old LR code
3924         * src/ds390/ralloc.c,
3925         * src/ds390/gen.c: minor fixes to make it work with new code
3926
3927 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3928
3929         * as/hc08/asm.h,
3930         * as/hc08/lkrloc.c,
3931         * src/hc08/gen.c,
3932         * src/hc08/ralloc.c: Fix various warnings related to the hc08
3933         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
3934         (tweaked fix for bug #818696)
3935
3936 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3937
3938         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
3939
3940 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3941
3942         * src/SDCCmain.c,
3943         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
3944         * src/mcs51/gen.c (gencjneshort),
3945         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
3946         more efficient (per Scott Bronson's suggestion)
3947
3948 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3949
3950         Extended the semantics of the critical keyword to include
3951         individual statements. See RFE #827755 and #799831
3952         * src/SDCC.y
3953         * src/SDCCicode.c
3954         * src/SDCCopt.c
3955         * src/SDCCast.c
3956         * support/Util/SDCCerr.c
3957         * support/Util/SDCCerr.h
3958         * src/mcs51/gen.c
3959         * src/ds390/gen.c
3960         * src/hc08/gen.c
3961
3962 2003-10-19  Borut Razem <borut.razem AT siol.net>
3963
3964         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
3965
3966 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3967
3968         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
3969         Fixed bug #818696
3970         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
3971         and predecrement operand is displayed
3972
3973 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
3974
3975         * src/SDCCval.c (valMinus): fixed bug #826041
3976
3977 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3978
3979         Some hc08 related updates that I missed earlier
3980         * sim/ucsim/stypes.h
3981         * support/regression/ports/hc08/spec.mk
3982
3983 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3984
3985         New target "hc08" for the Motorola 68hc08 family of micros
3986
3987         * configure
3988         * configure.in
3989         * Makefile
3990         * src/hc08/*
3991         * src/SDCCmain.c
3992         * src/port.h
3993         * sim/ucsim/hc08.src/*
3994         * sim/ucsim/configure.in
3995         * src/ucsim/configure
3996         * sim/ucsim/packages_in.mk
3997         * as/hc08/*
3998         * as/Makefile
3999         * device/include/mc68hc908qy.h
4000         * device/lib/hc08/*
4001         * device/lib/Makefile.in
4002         * support/regression/ports/hc08/*
4003         * support/regression/Makefile
4004
4005 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4006
4007         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
4008         regression test
4009         * src/ds390/gen.c (genCast): fixed bug #821957
4010
4011 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
4012
4013         * device/lib/logf.c: "fixed" overlay bug
4014         * support/regression/ports/host/spec.mk: added m library
4015         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
4016         * support/regression/tests/float_trans: added (for Eric)
4017
4018 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
4019
4020         * src/mcs51/gen.c (genCpl): fixed bug
4021         http://sf.net/mailarchive/message.php?msg_id=6263915
4022
4023 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
4024
4025         * src/SDCCast.c (decorateType): added extended constant folding
4026         * src/SDCCsymt.c (computeType): cleanup
4027         * src/SDCCval.c (valShift): minor optimization
4028         * support/regression/tests/ast_constant_folding.c: added
4029
4030 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4031
4032         * src/SDCCmain.c: removed some unintended changes
4033
4034 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4035
4036         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
4037         * src/z80/gen.c: fixed part of bug #817589
4038         * src/SDCCsymt.c (checkFunction): fixed bug #817895
4039
4040 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
4041
4042         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
4043         * src/SDCCcflow.c
4044         * src/SDCCcse.c
4045         * src/SDCCdflow.c
4046         * src/SDCClabel.c
4047         * src/SDCClrange.c
4048         * src/SDCCmem.c
4049         * src/SDCCopt.c
4050         * src/SDCCpeeph.c
4051         * src/SDCCset.c
4052         * src/avr/ralloc.c
4053         * src/ds390/ralloc.c
4054         * src/izt/ralloc.c
4055         * src/mcs51/ralloc.c
4056         * src/pic/ralloc.c
4057         * src/pic16/ralloc.c
4058         * src/xa51/ralloc.c
4059         * src/z80/ralloc.c
4060         * src/z80/gen.c: removed unused label "release:"
4061
4062 2003-10-06  Borut Razem <borut.razem AT siol.net>
4063
4064         * src/SDCC.lex: removed definition of unused variables
4065           save_optimize and save_options
4066
4067 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
4068
4069         * clean.mk: removed '=' in "-maxdepth=1"
4070         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
4071         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
4072
4073 2003-10-06  Borut Razem <borut.razem AT siol.net>
4074
4075         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
4076           my_unput() replaced by unput()
4077
4078 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
4079
4080         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
4081         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
4082         type-punned pointer will break strict-aliasing rules"
4083         Old LR behaviour is again default; Klaus' LR can be choosen by
4084         defining the environment variable LRKLAUS
4085         * src/SDCCBBlock.h
4086         * src/SDCCloop.c
4087         * src/SDCClrange.c
4088         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
4089         * clean.mk: fixed removal of files in bin/CVS/
4090         * device/lib/clean.mk: fixed removal of directories small and large
4091         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
4092         * src/SDCCicode.c,
4093         * src/SDCCval.c: removed superflous test for pedantic
4094
4095 2003-10-05  Borut Razem <borut.razem AT siol.net>
4096
4097         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
4098           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
4099           message "unmatched #pragma SAVE and #pragma RESTORE"
4100
4101 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4102
4103         * doc/sdccman.lyx: various additions and updates (interrupts, inline
4104           assembly, critical functions, atomic, nojtbound)
4105
4106 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
4107
4108         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
4109         * src/SDCCBBlock.h
4110         * src/SDCCloop.c
4111         * src/SDCCloop.h
4112         * src/SDCClrange.c
4113
4114 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4115
4116         * src/z80/gen.h,
4117         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
4118         * src/mcs51/gen.h
4119         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
4120         * src/ds390/gen.h
4121         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
4122         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
4123         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
4124
4125 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4126
4127         * src/z80/gen.c (genRet): fixed bug #524753
4128         * src/z80/gen.c (genCast): fixed internal error on cast from
4129         pointer to long
4130         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
4131         fix for bug #477835 to the z80
4132         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
4133         for tracking iCodes in the peephole optimizer for z80
4134
4135 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4136
4137         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
4138         the other part of bug #814548
4139         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
4140
4141 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
4142
4143         * src/SDCCcse.c: fixed part of bug #814548
4144
4145 2003-09-28  Borut Razem <borut.razem AT siol.net>
4146
4147         * src/asm.c: rewrite of printILine() to use temporary file instead
4148           a pipe
4149         * src/xa51/main.c: commented out declaration of int rewinds
4150
4151 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4152
4153         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
4154
4155 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4156
4157         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
4158         * src/asm.c (printILine): Fixed bug #811015
4159
4160 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4161
4162         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
4163         freeing.
4164
4165 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4166
4167         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
4168         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
4169         to correctly handle general case of AOP_PAIRPTR
4170         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
4171
4172 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4173
4174         * src/mcs51/ralloc.c (fillGaps),
4175         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
4176         register positioning bug)
4177
4178 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
4179
4180         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
4181
4182 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4183
4184         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
4185         genCodePointerGet, genGenPointerGet, genFarPointerSet,
4186         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
4187         (ralloc doesn't intentionally do this now, but perhaps later)
4188         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
4189         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
4190         register positioning bugs (Fixed bug #762602 and #795325)
4191         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
4192         (Fixed bug #808779)
4193         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
4194         lines that --i-code-in-asm generates
4195
4196 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4197
4198         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
4199         trying to fclose a FILE* that was already closed.
4200
4201 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4202
4203         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
4204         of const struct should be treated as if const themselves)
4205
4206 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
4207
4208         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
4209
4210 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4211
4212         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
4213         Unix (/n) and DOS (/r/n) line terminations.
4214
4215 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4216
4217         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
4218         bug #613775
4219
4220 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4221
4222         * src/mcs51/gen.c (genFunction, genEndFunction),
4223         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
4224         and restore of EA so that stack offsets to parameters are
4225         correct when using both critical and reentrant/stack-auto.
4226         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
4227         size (can be triggered in error if sloc is shared between
4228         different sized objects)
4229         * device/include/float.h: fixed macros to explicitly use
4230         unsigned long where needed
4231
4232 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
4233
4234         Feature req. 799831: added code to allow nesting of critical functions
4235         * src/mcs51/gen.c (genFunction, genEndFunction)
4236         * src/ds390/gen.c (genFunction, genEndFunction)
4237
4238 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4239
4240         * src/SDCCsymt.c (sclsFromPtr),
4241         * src/SDCCsymt.h,
4242         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
4243         support for standard C idiom of memory mapped variables; for
4244         example, *((xdata int*)0x1234) = 1 is now internally equivalent
4245         to xdata int at 0x1234 tempvar = 1.
4246         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
4247         provided by Akiya ISHIDA
4248
4249 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
4250
4251         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
4252         * src/SDCCval.c (constVal): added reduction from int to char
4253         * src/SDCCval.c (valMult, valDiv): fixed sign handling
4254         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
4255         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
4256         to ignore the sign
4257         * support/regression/tests/shifts.c: fixed
4258
4259 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4260
4261         * src/z80/gen.c (genXor): Fixed bug #805445
4262
4263 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4264
4265         Fixed bug #621531 (const & volatile confusion in the type chain).
4266         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
4267         refer to the const or volatile state of the pointer itself.
4268
4269         * src/SDCCast.c
4270         * src/SDCCglue.c
4271         * src/SDCCicode.c
4272         * src/SDCCsymt.c
4273         * src/SDCCval.c
4274         * src/SDCC.y
4275         * src/SDCCsymt.h
4276         * src/pic/gen.c
4277         * src/pic/ralloc.c
4278         * src/pic16/gen.c
4279         * src/pic16/ralloc.c
4280         * support/regression/tests/const.c
4281
4282 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4283
4284         When checking for duplicated modules, use absolute paths
4285         instead of relative paths.  Files changed:
4286
4287         * as/mcs51/lklib.c
4288         * link/z80/lklib.c
4289
4290 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4291
4292         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
4293
4294 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4295
4296         * device/include/string.h: added size_t typedef, changed
4297         prototypes to use size_t, eliminated separate reentrant and
4298         non-reentrant declarations, added _memmove declaration
4299         * device/lib/_memcpy.c: changed to use size_t instead of int,
4300         changed /4 to >>2 to avoid division library call
4301         * device/lib/_memcmp.c,
4302         * device/lib/_memset.c,
4303         * device/lib/_strncat.c,
4304         * device/lib/_strncpy.c,
4305         * device/lib/_strncmp.c: changed to use size_t instead of int
4306         * device/lib/_memmove.c: new file (fixed bug #772294)
4307         * device/lib/Makefile.in: added _memmove.c
4308         * device/lib/z80/asm_strings.s: fixed bug #772290
4309         * support/regression/tests/bitfields.c: attempt to fix host assertion
4310         failure on amd64-unknown-linux2.2
4311
4312 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4313
4314         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
4315         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
4316         * as/z80/asmain.c (main): fixed bug #801766
4317
4318 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
4319
4320         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
4321         compilers
4322
4323 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4324
4325         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
4326         reported in bug #800609
4327
4328 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
4329
4330         * Top header beautifications in src/pic16 directory:
4331           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
4332           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
4333           pcoderegs.h, ralloc.c, ralloc.h
4334         * main.c: added top header and GPL license notice
4335         * pcode.c: fixed the if-conditional warning
4336
4337 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
4338
4339         * device/lib/_mullong.c: replaced int by short for gcc
4340
4341 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4342
4343         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
4344         and JUMPTABLE iCodes properly now (worked by accident before)
4345         * src/mcs51/gen.c (leftRightUseAcc),
4346         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
4347         iCode properly now. Use getSize instead of nRegs since a & b
4348         aren't part of the nRegs tally.
4349
4350 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
4351
4352         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
4353         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
4354           before instructions that use the _STATUS register
4355
4356 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
4357
4358         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
4359         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
4360         fetching of the pointer
4361         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
4362         copied from genNearPointerSet()
4363         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
4364         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
4365         If they pop r0/r1 they must be called in the opposite order than aopOp().
4366         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
4367         (resp. --stack-auto), prepared for --xstack
4368
4369 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4370
4371         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
4372
4373 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
4374
4375         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
4376         these ports have their own __sdcc_external_start()
4377
4378 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
4379
4380         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
4381         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
4382         type for bits was changed. It resulted in bit variables becoming
4383         global, which is not permitted in PIC 14 assembly output.
4384
4385 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4386
4387         * doc/sdccman.lyx: various additions and updates. Rearranged sections
4388
4389 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4390
4391         Z80 and MCS51 linkers complaint if a public symbol is defined
4392         in more than one library module:
4393
4394         * as/mcs51/lklib.c
4395         * link/z80/lklib.c
4396         * as/mcs51/Makefile.in
4397
4398 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4399
4400         A few small changes that speed up the peephole optimizer.
4401
4402         * src/SDCCpeeph.c
4403
4404 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4405
4406         Try to make the peephole optimizer smarter by maintaining
4407         an association between the assembly source code and the
4408         iCodes that originated them. Put this information to use
4409         with a new peephole rule condition "notVolatile" so that
4410         the rules can be aggressive yet still safe.
4411
4412         * src/SDCCpeeph.c
4413         * src/SDCCpeeph.h
4414         * src/mcs51/gen.c
4415         * src/mcs51/peeph.def
4416
4417 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4418
4419         Fixed bug #741761
4420
4421         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
4422         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
4423         if the left or right operand symbols have the accuse flag set.
4424
4425 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4426
4427         Changed the type of the result of the ! (NOT) operator to char;
4428         previously it returned the same type as the source. This allows
4429         us to eliminate all the genFloatNot functions (all of its target
4430         implementations were very buggy) since !float can use the same
4431         code as !long now.
4432
4433         * src/SDCCicode.c (ast2iCode): ! returns char
4434         * src/mcs51/gen.c (genNot, genNotFloat),
4435         * src/ds390/gen.c (genNot, genNotFloat),
4436         * src/z80/gen.c (genNot, genNotFloat),
4437         * src/pic/gen.c (genNot, genNotFloat),
4438         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
4439
4440 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
4441
4442         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
4443         1. Interrupt would not compile properly. Ensure PCLATH register is saved
4444            during interrupts. Ensure WSAVE is located at a shared bank address.
4445         2. Fixed page selection in some places
4446         3. Fixed BTFSS/C to where necessary use registers directly and not simply
4447            the registers name strings.
4448         4. Fixed "signed / unsigned compare" compiler warnings.
4449         5. The PIC port manages its own allocation of the general purpose
4450            registers, but makes no attempt to reuse them. As a result when
4451            compiling it soon runs out of general purpose registers. Some
4452            additional code was added to the files pcode.c and device.c to walk
4453            through the function call tree and rename the registers so that they
4454            get reused.
4455
4456         * src/pic/device.c
4457         * src/pic/gen.c
4458         * src/pic/glue.c
4459         * src/pic/pcode.c
4460         * src/pic/pcode.h
4461         * src/pic/ralloc.c
4462         * src/pic/ralloc.h
4463         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
4464         genPlus() & genMinus() when the result is the same as left or right
4465
4466 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4467
4468         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
4469
4470 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4471
4472         Made bitfield a distinct type from bit so that bitfields
4473         convert as per ANSI C and bits retain their traditional
4474         boolean style behaviour. Implemented bitfield support in
4475         the z80 port.
4476
4477         * src/SDCCsymt.h,
4478         * src/SDCCsymt.c,
4479         * src/SDCCast.c,
4480         * src/cdbFile.c,
4481         * src/mcs51/gen.c,
4482         * src/ds390/gen.c: bit v bitfield split
4483         * src/z80/gen.c: New support for bitfields
4484         * support/regression/tests/bitfields.c: reenabled z80,
4485         added more tests
4486
4487 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4488
4489         Rules 246.x, 247.x relate to bitfields, the others speed up
4490         access to xdata mapped I/O devices.
4491
4492         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
4493
4494 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4495
4496         Cleaned up genPackBits and genUnpackBits and added two helper
4497         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
4498         for literal assignments in genPackBits (thanks to Frieder for
4499         reminding me).
4500
4501         * src/mcs51/gen.c
4502         * src/ds390/gen.c
4503
4504 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4505
4506         Fixed bug #748310 (pointer to function type mishandled when the
4507         function name is omitted). Also fixed a SIGSEGV when a function
4508         attribute (reentrant, etc) is used on a non-function or on a
4509         function but misplaced before the parameter list.
4510
4511         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
4512         bug #748310
4513         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
4514         * support/Util/SDCCerr.h,
4515         * support/Util/SDCCerr.c: Added func attr misuse error msg
4516
4517 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
4518
4519         Fixed bug #787649 by anonymous
4520         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
4521         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
4522
4523 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4524
4525         Fixed numerous bitfield problems.
4526
4527         * src/SDCC.y: More bitfield related error checking
4528         * src/SDCCsymt.h,
4529         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
4530         * support/Util/SDCCerr.h,
4531         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
4532         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
4533         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
4534         * support/regression/tests/bitfields.c: tests added
4535
4536 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4537
4538         Made the constant following the "interrupt" keyword optional. If
4539         omitted, the function will not automatically be given an entry
4540         in the interrupt vector table (similar to #pragma NOIV, but
4541         less syntacticly kludgy). The interrupt number is also now
4542         range checked. Also fixed a bug in the high order bit example
4543         in the manual.
4544
4545         * src/SDCC.y
4546         * src/SDCCmem.c
4547         * src/SDCCglue.c
4548         * src/SDCCsymt.h
4549         * support/Util/SDCCerr.c
4550         * support/Util/SDCCerr.h
4551         * doc/sdccman.lyx
4552
4553 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
4554
4555         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
4556         * src/SDCCicode.c (operandOperation): rewritten some ops
4557         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
4558         * src/SDCCsymt.c (computeType): literals are handled the same way as any
4559         other type
4560         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
4561         be re-activated by defining REDUCE_LITERALS)
4562         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
4563         unsigned, but are signed by default
4564         * src/SDCCval.c (constVal): rearranged
4565         * src/SDCCval.c (valMod): preliminary fix
4566         * src/SDCCval.c (valCastLiteral): use TYPE_* types
4567         * support/regression/literalop.c: added, work in progress
4568
4569 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4570
4571         Generate warnings for useless declarations like "char data;"
4572         that don't do what new users expect.
4573
4574         * src/SDCC.y
4575         * support/Util/SDCCerr.h
4576         * support/Util/SDCCerr.c
4577
4578 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
4579
4580         * src/SDCCval.c (valMult): fix overflow detection of negative int
4581
4582 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4583
4584         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
4585
4586         Changes to support big endian targets:
4587
4588         * src/ports.h
4589         * src/SDCCglue.c
4590         * src/avr/main.c
4591         * src/ds390/main.c
4592         * src/izt/i186.c
4593         * src/mcs51/main.c
4594         * src/pic/main.c
4595         * src/pic16/main.c
4596         * src/xa51/main.c
4597         * src/z80/main.c
4598
4599 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
4600
4601         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
4602         * device/lib/time.c: fixed warning "integer overflow in expression"
4603
4604 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
4605
4606         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
4607         * src/SDCCval.c (constVal): changed default to signed; hex and octal
4608         constants are unsigned; added recognition of "u" flag for unsigned
4609         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
4610         * src/SDCCval.c (valDiv, valMod): fixed signdness
4611         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
4612         signedness of modulo, left and right shift
4613         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
4614         * support/Util/SDCCerr.h: added warning W_INT_OVL
4615         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
4616         * src/SDCCast.c (ast_print): improved output of constants
4617
4618 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4619
4620         Fixed some warnings when building with MSVC:
4621
4622         * as\mcs51\asdata.c
4623         * as\z80\asdata.c
4624         * as\mcs51\asm.h
4625         * as\z80\asm.h
4626         * link\z80\aslink.h
4627         * link\z80\lkdata.c
4628         * link\z80\lkeval.c
4629         * link\z80\lkgb.c
4630         * link\z80\lkihx.c
4631         * link\z80\lks19.c
4632         * link\z80\lksym.c
4633         * support\cpp2\cpplib.c
4634         * src\ds390\gen.c
4635         * src\mcs51\gen.c
4636
4637 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
4638
4639         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
4640
4641 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4642
4643         * support\librarian\clean.mk: Do not remove Makefile.
4644         * support\librarian\Makefile: added.
4645
4646 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4647
4648         Added librarian to MSVC build:
4649         * all.dsp
4650         * sdcc.dsw
4651         * support\librarian\librarian.dsp
4652
4653         'configure' not needed for librarian, removed:
4654         * support\librarian\configure
4655         * support\librarian\configure.in
4656         * support\librarian\config_in.h
4657         * support\librarian\Makefile.in
4658
4659         Hopefully these ones built the librarian and the rest of sdcc properly:
4660         * Makefile
4661         * Makefile.common.in
4662
4663         Messed up 'configure', so revert to previous version:
4664         * configure
4665         * configure.in
4666
4667 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
4668
4669         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
4670         there, while the mantissa of a double is "only" 53 bits wide.
4671
4672 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4673
4674         Adding sdcclib to the build.  MSVC project coming soon.
4675         Files added/changed:
4676
4677         * support\librarian\clean.mk
4678         * support\librarian\configure
4679         * support\librarian\configure.in
4680         * support\librarian\config_in.h
4681         * support\librarian\Makefile.bcc
4682         * support\librarian\Makefile.in
4683         * support\librarian\sdcclib.c
4684         * Makefile.bcc
4685         * Makefile
4686         * Makefile.common.in
4687         * configure
4688         * configure.in
4689
4690 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4691
4692         Linker now complaints if linked modules have conflicting options, for
4693         example, one compiled using --model-large and another one compiled with
4694         --model-small.  The following files were modified:
4695
4696         * as\mcs51\asdata.c
4697         * as\mcs51\aslink.h
4698         * as\mcs51\asm.h
4699         * as\mcs51\asmain.c
4700         * as\mcs51\asout.c
4701         * as\mcs51\i51pst.c
4702         * as\mcs51\lkdata.c
4703         * as\mcs51\lklibr.c
4704         * as\mcs51\lkmain.c
4705         * as\z80\asdata.c
4706         * as\z80\asm.h
4707         * as\z80\asmain.c
4708         * as\z80\asout.c
4709         * as\z80\z80pst.c
4710         * link\z80\aslink.h
4711         * link\z80\lkdata.c
4712         * link\z80\lklibr.c
4713         * link\z80\lkmain.c
4714         * src\SDCCglue.c
4715
4716 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4717
4718         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
4719         as/mcs51/lklibr.c: Generate a warning when a library is not found.
4720
4721 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
4722
4723         * src/z80/mappings.i: fix _mul[us][int,long] entries
4724
4725 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4726
4727         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
4728
4729 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
4730
4731         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
4732         * support/regression/tests/bitopcse.c: added
4733         fixed warning:
4734         * src/avr/gen.c:
4735         * src/pic/gen.c:
4736         * src/pic16/gen.c:
4737         * src/z80/gen.c:
4738         * src/xa51/gen.c:
4739
4740 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4741
4742         added support for new library format to z80, gbz80 linkers:
4743         *link/z80/aslink.h
4744         *link/z80/lklex.c
4745         *link/z80/lklib.c
4746         *link/z80/lklist.c
4747
4748 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
4749
4750         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
4751         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
4752
4753 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
4754
4755         added DUMMY_READ_VOLATILE:
4756         * src/SDCC.y:
4757         * src/avr/gen.c:
4758         * src/xa51/gen.c:
4759         * src/z80/gen.c:
4760         * src/pic/gen.c:
4761         * src/pic16/gen.c:
4762         * src/mcs51/gen.c:
4763         * src/ds390/gen.c:
4764         * src/SDCCcse.c (algebraicOpts): many improvements
4765         * src/SDCCcse.h: removed algebraicOpts()
4766         * src/SDCCicode.c (picDummyRead): added
4767
4768 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4769
4770         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
4771         "Insufficient space in data memory".
4772
4773 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4774
4775         * src/mcs51/gen.c: fixed bug #771358
4776         * src/z80/gen.c: fixed bug #759087
4777
4778 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
4779
4780         * src/pic16/glue.c: minor cleanup by Vangelis
4781
4782 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4783
4784         * device/include/regc515c.h: fixed #758477
4785         * device/lib/_gptrget.c: saving some cycles in generic pointer get
4786         * device/lib/_gptrput.c: saved a few bytes
4787         * my tab spacing is 8, yours too?)
4788         * device/lib/_ser.c: process RX bytes earlier than TX bytes
4789         * device/lib/serial.c: process RX bytes earlier than TX bytes
4790         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
4791
4792 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4793
4794         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
4795
4796 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4797
4798     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
4799
4800 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
4801
4802         * device/lib/Makefile.in: bad fix, reverted to 1.43
4803
4804 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
4805
4806         * device/lib/Makefile.in: added missing z80 object files
4807
4808 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
4809
4810         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
4811         pic16 progress by Vangelis:
4812         * src/SDCCglobl.h:
4813         * src/SDCCmain.c:
4814         * src/pic/Makefile:
4815         * src/pic:
4816         * pic/Makefile:
4817         * pic16/device.c:
4818         * pic16/device.h:
4819         * pic16/gen.c:
4820         * pic16/gen.h:
4821         * pic16/genarith.c:
4822         * pic16/glue.c:
4823         * pic16/main.c:
4824         * pic16/pcode.c:
4825         * pic16/pcode.h:
4826         * pic16/pcodepeep.c:
4827         * pic16/peeph.def:
4828
4829 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4830
4831     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
4832
4833 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4834
4835     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
4836     added gbz80 build to MSVC project.
4837     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
4838     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
4839     from 8051 stuff and setup so it links using a .lnk file.
4840
4841 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4842
4843     * support/librarian/sdcclib.c: sdcc librarian.
4844     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
4845     with sdcclib.
4846
4847 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4848
4849     * as/mcs51/lkmain.c: properly handle extensions in function afile.
4850
4851 2003-07-02  Borut Razem <borut.razem AT siol.net>
4852
4853         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
4854         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
4855         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
4856         src/xa51/main.c, src/z80/main.c:
4857         virtualization of glue() function: each port has it's own glue function,
4858         which is accessed by do_glue function pointer in PORT.general structure
4859
4860 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
4861
4862         * DS800C400 fun, improved ROM interface and tinibios.
4863
4864 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
4865
4866         * More support for DS80C400. Now includes beginning of interface to ROM.
4867
4868 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
4869
4870         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
4871
4872 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4873
4874         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
4875
4876 2003-06-19  Borut Razem <borut.razem AT siol.net>
4877
4878         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
4879
4880 2003-06-19  Borut Razem <borut.razem AT siol.net>
4881
4882         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
4883         fixed Z80 port - crt0.o: cannot open.
4884
4885 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
4886
4887         * support/Util/MySystem.c (merge_command): revert bad fix
4888
4889 2003-06-18  Borut Razem <borut.razem AT siol.net>
4890
4891         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
4892
4893 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4894
4895         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
4896         option --use-stdout sends errors to stdout instead of stderr.
4897
4898 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
4899
4900         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
4901
4902 2003-06-15  Borut Razem <borut.razem AT siol.net>
4903
4904         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
4905         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
4906         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
4907         fixed width array of pointers replaced with sets;
4908         multiple include and lib paths ared transferred to preprocessor and linker
4909         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
4910         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
4911         fixed width array of pointers
4912         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
4913         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
4914         fixupPath(), getPathDifference()
4915         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
4916         fixed width array of pointers
4917
4918 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
4919
4920         * src/pic16/ralloc.c: fix warnings
4921         * src/pic16/pcode.c: fix warning
4922
4923 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
4924
4925          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
4926         know all the details, but essentially this set of changes enable
4927         the pic16 port to generate movff instructions and generate assembler
4928         directives,
4929         * src/SDCCmain.c:
4930         * src/pic16/gen.c:
4931         * src/pic16/glue.c:
4932         * src/pic16/pcode.c:
4933         * src/pic16/device.c:
4934         * src/pic16/main.c:
4935         * src/pic16/pcode.h:
4936         * src/pic16/pcoderegs.c:
4937         * src/pic16/ralloc.c:
4938         * src/pic16/ralloc.h:
4939
4940 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4941
4942         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
4943         added option --vc, so sdcc errors and warnings are compatible with
4944         Microsoft Visual Studio.
4945
4946 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4947
4948         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
4949           device/lib/libfloat.lib: added atof function.
4950
4951 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * doc/sdccman.lyx: updated to Lyx 1.3
4954         * doc/cdbfileformat.lyx: updated to Lyx 1.3
4955         * doc/test_suite_spec.lyx: updated to Lyx 1.3
4956         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
4957
4958 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
4959
4960         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
4961
4962 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4963
4964         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
4965           additions to the "related tools/documentation" section
4966
4967 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
4968
4969         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
4970
4971 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
4972
4973         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
4974         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
4975
4976 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
4977
4978         * doc/sdccman.lyx: fix double dash and other minor things
4979         * doc/Makefile: fix double dash
4980
4981 2003-05-28  Karl Bongers(patches from Martin Helmling)
4982         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
4983           condition and ignore commands.
4984
4985 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4986
4987         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
4988           is in parts still quite out of date, I did changes as far as I felt makes sense
4989           for a non-native english speaker.
4990           Please feel free to add to the manual or to correct my changes.
4991         * doc/Makefile: undid touching the date of intermediate tex files.
4992
4993 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4994
4995         * doc/sdccman.lyx: Manual has an index now
4996
4997 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
4998
4999         Finalize muluint/mulsint and mululong/mulslong merging:
5000         * device/lib/_mulint.c
5001         * device/lib/_mullong.c
5002         * device/lib/gbz80/mul.s
5003         * device/lib/gbz80/stubs.s
5004         * device/lib/z80/mul.s
5005         * device/lib/z80/stubs.s
5006         * src/SDCCsymt.c (initCSupport)
5007
5008 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5009
5010         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
5011         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
5012           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
5013           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
5014           instead of /Zm500.
5015
5016 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5017
5018         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
5019           the regression tests I'm not brave enough to enable 245.b, 245.c
5020         * doc/sdccman.lyx: added latex preamble for hyperref package.
5021           Using pdflatex this will give you a hyperlinked pdf file with
5022           bookmarks. (prepend '%' before /usepackage if this breaks something)
5023
5024 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5025
5026          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
5027
5028 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
5029
5030         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
5031
5032 2003-05-21    <johan AT balder>
5033
5034         * src/SDCCglue.c (printIval): fixed bug #739934
5035
5036 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
5037
5038         Applied patch from bug 737905 (renamed yylineo to mylineno):
5039         * src/altlex.c
5040         * src/SDCCast.c
5041         * src/SDCglobl.h
5042         * src/SDCC.lex
5043         * src/SDCCsymt.c
5044         * src/SDCCval.c
5045         * src/pic16/pcode.c: Cleaned warnings
5046         * src/pic16/pcodeflow.c: Cleaned warnings
5047         * src/pic16/pcoderegs.c: Cleaned warnings
5048
5049 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
5050
5051         * src/pic16/pcode.c: Cleaned warnings
5052         * src/pic16/pcodepeep.c: Cleaned warnings
5053         * src/pic16/ralloc.c: Cleaned warnings
5054
5055 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
5056
5057         * doc/sdccman.lyx: fixed bug 739745
5058         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
5059
5060 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
5061
5062         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
5063         it can be defined with CFLAGS when running configure
5064         * src/SDCCmain.c: fixed compiling + linking with object files
5065
5066 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
5067
5068         * configure.in: configure for pic16 port,
5069             added --disable-pic16-port
5070         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
5071         * src/SDCCmain.c: linkOptions is changed to set *,
5072             added if/endif conditional macros to remove options help
5073             messages from optionsTable when a port is not configured, added
5074             support for the PIc16 port in the ports table, when executing
5075             the compiler with no port specified on command line, a default
5076             port is selected with the new macro DEFAULT_PORT which is
5077             defined in port.h, in setDefaultOptions() linkOptions is removed
5078             from initialization assignment, since now it is a set,
5079             parseCmdLine uses setParseWithComma for linkOptions, in
5080             linkEdit() linkOptions are accessed with new function indexSet()
5081             which returns the i'th item of a set variable. See SDCCset.c, in
5082             linkEdit() when calling buildCmdLine(), added linkOptions as
5083             last argument. Now users can pass arguments to gplink via the
5084             -Wl option, main() uses pic16glue() to glue up pic16 programs
5085         * src/SDCCpeeph.c: various changes to support pic16
5086         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
5087             return the i'th item of the set
5088         * src/SDCCset.h: added function prototype for indexSet()
5089         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
5090         * src/clean.mk: added pic16 in CLEANALLPORTS variable
5091         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
5092             added macro DEFAULT_PORT
5093         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
5094         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
5095             generated
5096         * src/pic16/glue.c: commented out some error producing lines
5097         * src/pic16/main.c: __config directives are commented out to stop
5098             gpasm complaining and test the linkage with gplink, _linkCmd and
5099             _asmCmd changed to be more gplink and gpasm friendly
5100         * src/pic16/peeph.def: peep rule 3 is commented out, since it
5101             produced an error when parsed, peep rule 12 is added to utilize
5102             movff, but it is commented out since the pCode does not support
5103             yet a command with 2 address arguments
5104
5105 2003-05-18    <johan AT balder>
5106
5107         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
5108         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
5109 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
5110
5111         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
5112   Added feature to script commands from file.
5113
5114 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
5115
5116         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
5117         * src/SDCCutil.c: include ctype.h for win32
5118
5119 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
5120
5121         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
5122
5123 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
5124
5125         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
5126   Fixed so you can set breakpoints prior to run, run does not stop
5127   on entry now.  Add tbreak.  Other enhancements and fixes for use
5128   with ddd.
5129
5130 2003-05-12  Borut Razem <borut.razem AT siol.net>
5131
5132         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
5133
5134 2003-05-11  Borut Razem <borut.razem AT siol.net>
5135
5136         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
5137         the path of bin directory, so that PATH is the only env. variable, which has to be set
5138         in case of standard installation.
5139         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
5140         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
5141         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
5142
5143 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
5144
5145         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
5146         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
5147         temp files are in the port dir; clean the gen/test directory when
5148         generating new test.c
5149         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
5150         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
5151         * support/regression/tests/zeropad.c: added
5152
5153 2003-05-09    <johan AT balder>
5154
5155         * src/SDCCglue.c: fixed bug #597940
5156
5157 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
5158
5159         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
5160   cache sfr, optimize next,step, fix off by one sourceline,
5161   support ddd list function.
5162         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
5163
5164 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
5165
5166         * support/regression/HTMLgen.py: added compare_s2f()
5167         * support/regression/Makefile: redo 1.27
5168         * support/regression/generate-cases.py: redo 1.5
5169
5170 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
5171
5172         * support/regression/tests/float.c: workaround 33 bit hex constant
5173         * support/regression/tests/simplefloat.c: fix division for host
5174
5175 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
5176
5177         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
5178         that tame's the PIC's over-aggressive optimizer.
5179
5180 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5181
5182          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
5183          support for MSVC.
5184
5185 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
5186
5187         Initial support for DS80C400. "Hello world" runs on TINIm400
5188         (with polled I/O).
5189
5190 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
5191
5192          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
5193          * Some notes on ddd usage added in debugger/README
5194          Martin Helmling adding more features and fixes for ddd GUI debugger.
5195          Code added for nexti, stepi, up, down, and other adjustments.
5196
5197 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
5198
5199         * src/pic/pCodepeep.c non-wildcard asmops are now handled
5200         * src/pic/peeph.def Added two rules to optimize carry manipulation
5201         * src/pic/* removed debug printfs
5202
5203 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
5204
5205         * debugger/mcs51/cmd.c: added header newalloc.h
5206
5207 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
5208
5209         * as/Makefile: new EXEEXT
5210         * as/z80/Makefile: remove trailing slash of BUILDIR
5211         * as/z80/clean.mk: new EXEEXT
5212         * Makefile.common.in: add to CFLAGS (and others), don't replace it
5213         * support/cpp2/Makefile.in: new EXEEXT
5214         * src/pic/glue.c (pic14emitRegularMap): fixed warning
5215
5216 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
5217
5218         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
5219         EXEEXT was introduced to fix all related problems with targets
5220         "clean", "install" and "uninstall"; a couple of further flaws
5221         especially with "clean" have been fixed too
5222         * as/mcs51/Makefile.in
5223         * as/mcs51/clean.mk
5224         * as/z80/Makefile
5225         * Makefile
5226         * clean.mk
5227         * debugger/mcs51/Makefile.in
5228         * debugger/mcs51/clean.mk
5229         * link/z80/Makefile
5230         * link/z80/Makefile.in
5231         * link/z80/clean.mk
5232         * link/Makefile
5233         * packihx/Makefile.in
5234         * packihx/clean.mk
5235         * sim/ucsim/Makefile
5236         * sim/ucsim/clean.mk
5237         * sim/ucsim/avr.src/Makefile.in
5238         * sim/ucsim/avr.src/clean.mk
5239         * sim/ucsim/s51.src/Makefile.in
5240         * sim/ucsim/s51.src/clean.mk
5241         * sim/ucsim/xa.src/Makefile.in
5242         * sim/ucsim/xa.src/clean.mk
5243         * sim/ucsim/z80.src/Makefile.in
5244         * sim/ucsim/z80.src/clean.mk
5245         * sim/ucsim/main_in.mk
5246         * sim/ucsim/packages_in.mk
5247         * sim/ucsim/gui.src/Makefile.in
5248         * sim/ucsim/gui.src/serio.src/Makefile.in
5249         * sim/ucsim/gui.src/serio.src/clean.mk
5250         * src/Makefile.in
5251         * src/clean.mk
5252         * support/cpp2/Makefile.in
5253         * support/cpp2/clean.mk
5254         * support/makebin/Makefile
5255         * support/makebin/clean.mk
5256         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
5257         * doc/sdccman.lyx: --program-suffix no longer needed
5258
5259 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
5260
5261          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
5262          Martin Helmling added support for ddd GUI debugger.
5263          Code added to display assembly, set variables, and other commands
5264          to interface to ddd.
5265
5266 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
5267
5268         * as/Makefile: fix target clean
5269         * as/clean.mk: fix target clean
5270         * as/z80/clean.mk: fix target clean
5271
5272 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
5273
5274         * Makefile.common.in: added  AT EXEEXT AT
5275         * configure.in: removed all mingw32 stuff
5276         * configure: rebuilt from configure.in
5277         * doc/sdccman.lyx: updated section "installation"
5278         * support/scripts/sdcc_mingw32: adapted to configure
5279         * support/scripts/sdcc_cygwin_mingw32: added
5280
5281 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
5282
5283         * src/pic Added object file support for the PIC port
5284         * src/pic Applied patch from Craig Franklin (this started the object file support)
5285         * src/regression Updated the PIC regression tests for object files
5286
5287 2003-04-20  Borut Razem <borut.razem AT siol.net>
5288
5289         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
5290           lklex.c: In function `getfid':
5291           lklex.c:203: warning: array subscript has type `char'
5292         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
5293           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
5294         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
5295           stack handling macros
5296
5297 2003-04-19  Borut Razem <borut.razem AT siol.net>
5298
5299         * "handling space characters in file path" task:
5300         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
5301         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
5302         * support/Util/MySystem.h: make it self-sufficient
5303         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
5304           src/z80/main.c, sdcc/as/mcs51/lklex.c:
5305           handling space characters in file path
5306         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
5307           (it will be used by assemblers, which have their own includes, e.g. gpasm)
5308         * support/Util/MySystem.c: handling space characters in executable's path
5309
5310 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
5311
5312         * as/z80/Makefile: fix permanent rebuild of z80
5313         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
5314         * support/regression/tests/bitfields.c: added Johan's bitfields.c
5315
5316 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
5317
5318         * src/SDCCopt.c: add special case optimization to replace modulo by
5319           a power of two with a bitwise AND.
5320
5321 2003-04-18    <johan AT balder>
5322
5323         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
5324
5325 2003-04-17    <johan AT balder>
5326
5327         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
5328         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
5329
5330 2003-04-13  Borut Razem <borut.razem AT siol.net>
5331
5332         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
5333         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
5334           fixed mingw problem in adl_NORMALIZE_PATH
5335
5336 2003-04-12  Borut Razem <borut.razem AT siol.net>
5337
5338         * fixed "#pragma SAVE/RESTORE can not be nested":
5339         * src/SDCC.lex: reworked pragma handling functions
5340         * sdcc/src/SDCCglobl.h: reworked stack handling macros
5341         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
5342
5343 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
5344
5345         * src/SDCCutil.c (pathEquivalent): defined but not used
5346         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
5347         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
5348         * configure: rebuilt from configure.in
5349         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
5350         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
5351         * device/include/Makefile.in: replace sdcc_datadir
5352         * device/lib/Makefile.in: replace sdcc_datadir
5353         * Makefile.common.in: add LDFLAGS from configure
5354         * packihx/Makefile.in: use LDFLAGS
5355         * src/Makefile.in: use LDFLAGS
5356         * support/cpp2/Makefile.in: add LDFLAGS from configure
5357         * support/makebin/Makefile: use LDFLAGS
5358         * .version: bumped version number to 2.3.5
5359
5360 2003-04-12  Borut Razem <borut.razem AT siol.net>
5361
5362         * completed "different paths" task:
5363         * src/SDCCmacro.c: fixed bug in handling quotes
5364         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
5365         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
5366
5367 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
5368
5369         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
5370
5371 2003-04-11 kevin Vigor <kevin AT vigor.nu>
5372
5373         * ds390/gen.c ds390/peeph.def: fix bug 706781
5374
5375 2003-04-11  Borut Razem <borut.razem AT siol.net>
5376
5377         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
5378
5379 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
5380
5381         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
5382         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
5383          set - this bit used to not be set...).
5384         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
5385           bad code in PIC Port
5386         * src/regression/and2.c added to test bug 609268
5387         * src/regression/Makefile added and2.c to regression test
5388
5389
5390 2003-04-08    <johan AT CP255758-A>
5391
5392         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
5393         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
5394         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
5395
5396 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
5397
5398         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
5399         fix bug #487815
5400         * support/cpp2/Makefile.in: fix bug #487815
5401         * configure: rebuilt from configure.in
5402         * Makefile.common.in: docdir changed, new path suffixes
5403         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
5404         * sdcc_vc_in.h: reflect changes from sdccconf.h
5405         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
5406         * src/SDCCutil.h: remove BINDIR hack
5407         * doc/sdccman.lyx: update new path hierarchy
5408
5409 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
5410
5411         * src/SDCCpeeph.c: added okToRemoveSLOC test
5412
5413 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
5414
5415         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
5416
5417 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
5418
5419         * src/SDCCpeeph.c: added labelIsReturnOnly test
5420         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
5421
5422 2003-04-05    <johan AT balder>
5423
5424         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
5425         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
5426         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
5427         * src/SDCCast.c: fixed a warning
5428         * src/SDCCast.h: fixed a warning
5429         * src/SDCCicode.c (operandFromAst): fixed a warning
5430
5431 2003-04-04    <johan AT balder>
5432
5433         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
5434         * src/SDCCast.c (decorateType): fixed bug #715076
5435         * src/SDCC.y: fixed bug #702907
5436
5437 2003-04-03    <johan AT balder>
5438
5439         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
5440         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
5441         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
5442         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
5443         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
5444
5445 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
5446
5447         * _decdptr.c: fix return values
5448         * _gptrget.c: fix return values
5449         * _gptrgetc.c: fix return values
5450         * _gptrput.c: fix return values
5451         * _mulint.c: fix return values
5452         * as/z80/Makefile: fix 'make -j' problem
5453
5454 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
5455
5456         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
5457         * configure.in: big cleanup, updated to autoconf 2.5x
5458         * configure: rebuilt from configure.in
5459         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
5460         * sdcc_vc_in.h: reflect changes from sdccconf.h
5461         * doc/Makefile: fixed a flaw in "make install"
5462
5463 2003-04-02    <johan AT balder>
5464
5465         * src/ds390/gen.c (genCmp): no comments
5466         * src/mcs51/gen.c (genCmp): no comments
5467         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
5468         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
5469
5470 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
5471
5472         * support/regression/generate-cases.py: place generated file in given sub directory
5473         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
5474         * support/regression/Makefile: improvements for 'make -j';
5475         side effect: it's simpler and faster now
5476
5477 2003-03-31  Borut Razem <borut.razem AT siol.net>
5478
5479         * src/z80/main.c: link-{port} and as-{port} defined without path
5480         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
5481
5482 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
5483
5484         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
5485
5486 2003-03-30  Borut Razem <borut.razem AT siol.net>
5487
5488         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
5489           changed type of list parameter to set
5490         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
5491         * src/port.h: changed type of do_assemble() parameter to set
5492         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
5493           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
5494           definition of "cppoutfilename" macro with NULL value in preProcess()
5495         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
5496         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
5497         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
5498           replaced with set *binPathSet
5499         * shash_add() deallocates the item, if allready exsists, before adding the new one
5500         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
5501
5502 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
5503
5504         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
5505           a nested for loop bug in the PIC port
5506         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
5507           for loops
5508
5509 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
5510
5511         * support/Util/dbuf.h: remove C++ stuff to make it portable
5512
5513 2003-03-28  Borut Razem <borut.razem AT siol.net>
5514
5515         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
5516           literal strings in stringLiteral()
5517         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
5518         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
5519           to the project
5520
5521 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
5522
5523         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
5524
5525 2003-03-26    <johan AT balder>
5526
5527         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
5528         * src/ds390/gen.c (saveRegisters): catched symbol abuse
5529         * src/SDCCast.c (decorateType): fixed " -v < 3"
5530
5531 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
5532
5533         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
5534         Added Lenny Story's debug infrastructure changes:
5535         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
5536         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
5537         * src/cdbFile.c: added
5538         * src/SDCCdebug.c: added
5539         * src/SDCCdebug.h: added
5540         * src/SDCCast.c (createFunction)
5541         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
5542         * src/SDCCmain.c (parseCmdLine, main)
5543         * src/SDCCmem.c (redoStackOffsets)
5544         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
5545         * src/SDCCsymt.h
5546         * src/common.h
5547         * src/avr/gen.c (genAVRCode)
5548         * src/ds390/gen.c (gen390Code)
5549         * src/mcs51/gen.c (gen51Code)
5550         * src/pic/gen.c (genpic14Code)
5551         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
5552         * src/xa51/gen.c (genXA51Code)
5553         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
5554
5555 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5556
5557         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
5558         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
5559
5560 2003-03-22    <johan AT balder>
5561
5562         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
5563
5564 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
5565
5566         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
5567         * doc/cdbfileformat.lyx: added, written by Lenny Story
5568         * doc/Makefile: added cdbfileformat.lyx
5569         * doc/clean.mk: added cdbfileformat.lyx
5570
5571 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
5572
5573         * src/mcs51/peeph.def: fix bug #705773
5574
5575 2003-03-20    <johan AT balder>
5576
5577         An sfr/sbit can have an "at #" AND an initializer
5578         * src/SDCCsymt.c (checkSClass):
5579         * src/SDCCmem.c (allocGlobal):
5580         * src/SDCCmem.c (allocLocal):
5581         * src/SDCCast.c (createBlock):
5582
5583 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
5584
5585         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
5586
5587 2003-03-16    <johan AT balder>
5588
5589         Undid the hackup of const and volatile, the problem is much bigger
5590         * src/SDCC.y:1.65
5591         * src/SDCCast.c:1.171
5592         * src/SDCCglue.c:1.138
5593         * src/SDCCicode.c:1.146
5594         * src/SDCCsymt.c:1.150
5595         * src/SDCCval.c:1.65
5596
5597 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
5598
5599         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
5600         * src/ds390/gen.c (genAddrOf): fixed bug #704087
5601
5602 2003-03-13    <johan AT balder>
5603
5604         Hackup const and volatile modifiers in type chains a bit:
5605         * src/SDCC.y:1.63
5606         * src/SDCCast.c:1.169
5607         * src/SDCCglue.c:1.136
5608         * src/SDCCicode.c:1.143
5609         * src/SDCCsymt.c1.146
5610         * src/SDCCsymt.h1.59
5611         * src/SDCCval.c:1.63
5612
5613 2003-03-12    <johan AT balder>
5614
5615         * src/SDCCBBlock.h: more LRH debugging junk
5616         * src/SDCCcflow.h: more LRH debugging junk
5617         * src/SDCCloop.c: more LRH debugging junk
5618         * src/SDCC.y (struct_declaration): fixed bug #697590
5619         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
5620         * src/ds390/gen.c (aopForRemat): fixed bug #700031
5621         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
5622
5623 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5624         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
5625         test function names must now match exactly).
5626         * src/SDCCcse.c: added special case in findCheaperOp to allow
5627         extending a short integer. Makes less awful code for bug 700121 test case.
5628
5629 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5630
5631         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
5632         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
5633
5634 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5635
5636         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
5637         actually called (operandsNotEqual() was called for all
5638         operandsNotEqualX tests).
5639
5640 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
5641
5642         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
5643         with shorter literals. Fixes bug 700121.
5644
5645 2003-03-11    <johan AT balder>
5646
5647         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
5648
5649 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
5650
5651         * src/SDCCloop.c (mergeRegions): an evil beast is dead
5652         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
5653
5654 2003-03-10  Borut Razem <borut.razem AT siol.net>
5655
5656         * src/SDCCmain.c: pipe preprocessor's output
5657         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
5658         * sdcc_vc_in.h: define pclose as _pclose for WIN32
5659         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
5660         which closes all pipes in pipeSet set
5661         * src/SDCCset.c: free deleted item in function deleteSetItem()
5662         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
5663         moved from z80 to src subproject
5664         * .version: increased version number to 2.3.4
5665
5666 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
5667
5668         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
5669         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
5670         * support/regression/ports/xa51/spec.mk: fix typo
5671
5672 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
5673
5674         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
5675
5676 2003-03-09  Borut Razem <borut.razem AT siol.net>
5677
5678         * src/SDCCmain.c: pipe preprocessor's output
5679         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
5680         * sdcc_vc_in.h: define pclose as _pclose for WIN32
5681         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
5682         which closes all pipes in pipeSet set
5683         * src/SDCCset.c: free deleted item in function deleteSetItem()
5684         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
5685         moved from z80 to src subproject
5686
5687 2003-03-09  Borut Razem <borut.razem AT siol.net>
5688
5689         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
5690         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
5691         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
5692         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
5693         * src/SDCCglobl.h: unification of WIN32 native definitions
5694
5695 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5696
5697         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
5698
5699 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
5700
5701         * src/configure.in:   check for endianess (even while cross-compiling)
5702         * src/configure:      check for endianess (even while cross-compiling)
5703         * src/configure_in.h: check for endianess (even while cross-compiling)
5704         * src/avr/gen.c:        remove old endianess stuff
5705         * src/mcs51/gen.c:      remove old endianess stuff
5706         * src/ds390/gen.c:      remove old endianess stuff
5707         * src/pic/gen.c:        remove old endianess stuff
5708         * src/pic/genarith.c:   remove old endianess stuff
5709         * src/pic/glue.c:       fix endianess check
5710         * src/pic16/gen.c:      remove old endianess stuff
5711         * src/pic16/genarith.c: remove old endianess stuff
5712         * src/pic16/glue.c:     fix endianess check
5713         * src/xa51/gen.c:       remove old endianess stuff
5714         * src/z80/gen.c:        fix endianess check
5715         * src/SDCCglue.c:       fix endianess check
5716         * src/ds390/peeph.def: fix bug 700036
5717
5718 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
5719
5720         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
5721         * src/configure: find appropriate data-types on host for SDCC's int and long
5722         * src/configure.in: find appropriate data-types on host for SDCC's int and long
5723         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
5724         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
5725
5726 2003-03-07    <johan AT balder>
5727
5728         Just a big NOOP:
5729                 some minor cleanups before the big shot
5730                 OP_DEFS and OP_USES now use Kevin's protection
5731                 new option --nolabelopt
5732
5733         * src/SDCCBBlock.c:
5734         * src/SDCCast.c,:
5735         * src/SDCCcflow.c:
5736         * src/SDCCcse.c:
5737         * src/SDCCicode.c:
5738         * src/SDCCicode.h:
5739         * src/SDCClabel.c:
5740         * src/SDCCloop.c:
5741         * src/SDCCmain.c:
5742         * src/ds390/ralloc.c:
5743         * src/mcs51/ralloc.c:
5744         * src/pic/ralloc.c:
5745         * src/xa51/ralloc.c:
5746         * src/z80/ralloc.c:
5747
5748 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
5749
5750         * src/pic/pcode.c (get_op): fix 64 bit warnings
5751         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
5752         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
5753         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
5754         * support/regression/tests/malloc.c: fix 64 bit warnings
5755
5756 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
5757
5758         * src/mcs51/gen.c (genMinus): fixed bug 696436
5759
5760 2003-03-02  Borut Razem <borut.razem AT siol.net>
5761
5762         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
5763
5764 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
5765
5766         * configure.in: test for mkstemp
5767         * sdccconf_in.h: add HAVE_MKSTEMP
5768
5769 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
5770
5771         * device/include/ctype.h: removed warning while using --stack-auto
5772         * device/include/malloc.h: removed warning while using --stack-auto
5773         * device/include/string.h: removed warning while using --stack-auto
5774
5775 2003-02-23  Borut Razem <borut.razem AT siol.net>
5776
5777         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
5778         because NDEBUG is defined (see man assert)
5779         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
5780
5781 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5782
5783         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
5784         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
5785
5786 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5787
5788         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
5789         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
5790
5791 2003-02-18    <johan AT balder>
5792
5793         * as/mcs51/asmain.c (asmbl): module can start with a digit
5794         * as/z80/asmain.c (asmbl): module can start with a digit
5795
5796 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
5797
5798         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
5799         * src/asm.c: fix pipe() for Mingw32
5800
5801 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
5802
5803         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
5804         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
5805         make -V work again; --c1mode reads now from stdin
5806         * doc/sdccman.lyx: added --c1mode
5807         * support/Util/SDCCerr.c: new messages for c1 mode
5808         * support/Util/SDCCerr.h: new messages for c1 mode
5809         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
5810
5811 2003-02-15    <johan AT balder>
5812
5813         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
5814
5815 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
5816
5817         * doc/sdccman.lyx: Environment variables, -o and other minor things
5818
5819 2003-02-14    <johan AT balder>
5820
5821         * src/xa51/main.c: before anyone really tries to use it :)
5822
5823         * Install doc's in share/sdcc/doc
5824         * removed some obsolete files
5825         * Do a proper make distclean and uninstall
5826         M Makefile.common.in
5827         R sdccbuild.sh
5828         M as/Makefile
5829         M device/include/Makefile.in
5830         M device/lib/Makefile.in
5831         M doc/sdccman.lyx
5832         M link/Makefile
5833         M sim/ucsim/doc/Makefile.in
5834         M src/clean.mk
5835         R src/avr/peeph.rul
5836         R src/xa51/peeph.rul
5837         M support/cpp2/Makefile.in
5838         M support/makebin/Makefile
5839
5840
5841 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
5842
5843         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
5844
5845 2003-02-10  Borut Razem <borut.razem AT siol.net>
5846
5847         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
5848         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
5849         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
5850         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
5851         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
5852         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
5853         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
5854         src/z80/Makefile.bcc: Borland Makefile cleanup
5855         * as/z80/Makefile.bcc: Added Borland Makefile
5856         * support/cpp2/borland.h: Removed
5857
5858 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
5859
5860         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
5861         * src/SDCC.lex: new pragma NOIV
5862         * src/SDCCglobl.h: new pragma NOIV
5863         * src/SDCCmem.c: new pragma NOIV
5864
5865 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
5866
5867         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
5868
5869 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
5870
5871         * src/SDCCmain.c: signal handling is switched off by --debug
5872         * doc/Makefile: small fix for install; use clean.mk again
5873         * doc/clean.mk: clean *.pdf and *.html too
5874
5875 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
5876
5877         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
5878         * device/lib/printfl.c: fix a ds390 bug by making it portable
5879         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
5880         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
5881         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
5882         * debugger/mcs51/cmd.c: converted multi-line string literals
5883         * sim/ucsim/globals.cc: converted multi-line string literals
5884         * src/SDCCmain.c: introduced signal handler to remove temp files
5885         * doc/Makefile: small tweaks, implement clean
5886         * doc: removed generated files
5887
5888 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5889
5890         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
5891         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
5892         Address Record is not correctly generated for DS390."
5893
5894 2003-02-02  Borut Razem <borut.razem AT siol.net>
5895
5896         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
5897         * as/mcs51/asm.h: fixed compilation with Borland C
5898         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
5899         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
5900         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
5901         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
5902         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
5903         src/z80/Makefile.bcc: delete $(LIB) only if exist
5904         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
5905
5906 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
5907
5908         * device/include/malloc.h: introduced NULL
5909         * device/include/string.h: introduced NULL
5910         * device/include/stdlib.h: introduced NULL
5911         * device/lib/_memcpy.c: removed NULL
5912         * device/lib/_strcat.c: removed NULL
5913         * device/lib/_strchr.c: removed NULL
5914         * device/lib/_strcmp.c: removed NULL
5915         * device/lib/_strcpy.c: removed NULL
5916         * device/lib/_strcspn.c: removed NULL
5917         * device/lib/_strlen.c: removed NULL
5918         * device/lib/_strncat.c: removed NULL
5919         * device/lib/_strncmp.c: removed NULL
5920         * device/lib/_strncpy.c: removed NULL
5921         * device/lib/_strpbrk.c: removed NULL
5922         * device/lib/_strrchr.c: removed NULL
5923         * device/lib/_strspn.c: removed NULL
5924         * device/lib/_strstr.c: removed NULL
5925         * device/lib/_strtok.c: removed NULL
5926         * device/lib/malloc.c: removed NULL, include own header
5927
5928 2003-02-02    <johan AT balder>
5929
5930         * 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
5931         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
5932         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
5933         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
5934         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
5935         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
5936
5937 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5938
5939         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
5940         area 'DATA'"
5941
5942 2003-02-01    <johan AT balder>
5943
5944         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
5945
5946 2003-01-31    <johan AT CP255758-A>
5947
5948         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
5949
5950 2003-01-30    <johan AT balder>
5951
5952         * src/SDCCBBlock.c: automatic bug detection
5953         * src/SDCCicode.c: automatic bug detection
5954
5955 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5956
5957         * src/SDCCglobl.h:   now --xram-size 0 works
5958         * src/SDCCmain.c:    now --xram-size 0 works
5959
5960 2003-01-29    <johan AT balder>
5961
5962         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
5963
5964 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5965
5966         * as/mcs51/aslink.h: Added options --xram-size and --code-size
5967         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
5968         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
5969         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
5970         * src/SDCCglobl.h:   Added options --xram-size and --code-size
5971         * src/SDCCmain.c:    Added options --xram-size and --code-size
5972
5973 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
5974
5975         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
5976         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
5977
5978 2003-01-27    <johan AT balder>
5979
5980         * src/SDCC.y: fixed bug #613764
5981
5982 2003-01-26    <johan AT balder>
5983
5984         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
5985         * src/SDCCsymt.h: fixed bug #673374
5986         * src/SDCCglue.c: fixed bug #661910
5987         * src/SDCCast.c: fixed bug #458099 and 673374
5988
5989 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
5990
5991         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
5992         * as/mcs51/strcmpi.h: added
5993         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
5994         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
5995         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
5996         * as/mcs51/assym.c: strcmpi -> as_strcmpi
5997         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
5998         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
5999         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
6000         * as/mcs51/Makefile.aslink: new module strcmpi
6001         * as/mcs51/Makefile.asx8051: new module strcmpi
6002         * as/mcs51/Makefil.bcc: new module strcmpi
6003         * as/mcs51/Makefile.in: new module strcmpi
6004         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
6005
6006 2003-01-26    <johan AT balder>
6007
6008         * src/SDCCglue.c: reverted back to 1.124
6009         * src/SDCCast.c: reverted back to 1.156
6010         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
6011
6012 2003-01-25    <johan AT balder>
6013
6014         * src/SDCCglue.c: A better fix for bug #661910
6015         * src/SDCCast.c: A better fix for bug #661910
6016         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
6017
6018 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
6019
6020         * src/Makefile.in: remove spawn.o
6021         * src/SDCCmain.c: remove spawn.h
6022         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
6023         * src/spawn.c: removed
6024         * src/spawn.h: removed
6025         * support/regression/ports/ds390/spec.mk: link with -r
6026
6027 2003-01-24    <johan AT CP255758-A>
6028
6029         * src/ds390/gen.c (aopOp): fixed bug #667458
6030         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
6031         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
6032         (createIvalCharPtr): an ival doesn't always have a storage class anymore
6033
6034 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
6035
6036         * src/mcs51/peeph.def: better assembler identation by Frieder
6037         * src/mcs51/gen.c: better assembler identation by Frieder
6038
6039 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
6040
6041         * as/z80/string.h: removed for gcc 3.2
6042         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
6043         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
6044
6045 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
6046
6047         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
6048         * src/SDCCpeeph.c (replaceRule): fix bug #663503
6049         * support/regression/Makefile: separate temp files for ports
6050         * support/regression/generate-cases.py: separate temp files for ports
6051         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
6052         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
6053
6054 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
6055
6056         * moved tinitalk to device/examples/ds390
6057
6058 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
6059
6060         * as/mcs51/lkmem.c: rflag is for DS390
6061         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
6062         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
6063                          (linkEdit): move mem- and map-files the same way as ihx-files
6064         * src/z80/main.c (_setDefaultOptions): removed --generic
6065         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
6066         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
6067         * src/pic/glue.c (picglue): --c1mode works again
6068         * src/pic16/glue.c (pic16glue): --c1mode works again
6069         * src/asm.c (printCLine): fix #660034
6070
6071 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
6072
6073         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
6074         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
6075         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
6076         * as/mcs51/lkmem (summary): better fix for sp problem
6077         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
6078         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
6079         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
6080                                               remove --stack-after-data
6081
6082 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
6083
6084         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
6085         * src/SDCCutil.c (join): ugly bug: missing '\0'
6086         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
6087
6088 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
6089
6090         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
6091         * src/port.h: typo
6092         * src/pic/main.c (_asmCmd): gpasm supports -o
6093         * src/z80/main.c: more general macros
6094         * device/lib/Makefile.in: remove intermediate files
6095
6096 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
6097
6098         * .version: Bumped version number to 2.3.3
6099         * src/SDCCBBlock.c: new option -o
6100         * src/SDCCglobl.h: new option -o
6101         * src/SDCCglue.c: new option -o
6102         * src/SDCCmain.c: new option -o
6103         * src/asm.c: new option -o
6104         * src/ds390/main.c: new option -o
6105         * src/pic/glue.c: new option -o
6106         * src/pic/pcode.c: new option -o
6107         * src/pic/ralloc.c: new option -o
6108         * src/pic16/glue.c: new option -o
6109         * src/pic16/pcode.c: new option -o
6110         * src/pic16/ralloc.c: new option -o
6111         * src/z80/main.c: new option -o
6112         * device/lib/Makefile.in: use -o
6113         * support/regression/ports/ds390/spec.mk: use -o
6114         * support/regression/ports/gbz80/spec.mk: use -o
6115         * support/regression/ports/mcs51/spec.mk: use -o
6116         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
6117         * support/regression/ports/z80/spec.mk: use -o
6118         * support/regression/ports/ucz80/spec.mk: use -o
6119         * support/regression/ports/xa51/spec.mk: use -o
6120         * support/regression/fwk/lib/timeout.c: fix usage string
6121
6122 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
6123         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
6124
6125 2003-01-07    <johan AT balder>
6126
6127         * src/SDCCast.c (decorateType): fixed bug #600035
6128
6129 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
6130         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
6131         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
6132         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
6133         * src/pic/pcode.c: outcommented unused variable to remove warnings
6134         * src/pic/ralloc.c: outcommented unused variable to remove warnings
6135
6136 2003-01-06    <karl AT turbobit.com>
6137         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
6138    regression tests.
6139
6140 2003-01-06    <johan AT balder>
6141
6142         * src/SDCCicode.c: fixed array add
6143
6144 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
6145         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
6146         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
6147
6148 2003-01-04    <johan AT balder>
6149
6150         * src/SDCCval.c (getNelements): fixed the initialized array of structures
6151
6152 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6153         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
6154
6155 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
6156         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
6157         * support/regression/tests/bug-524697.c: fit mem usage into 8032
6158
6159 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
6160         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
6161
6162 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
6163         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
6164
6165 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
6166         * src/mcs51/main.c: removed {bindir}{sep} from aslink
6167
6168 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6169
6170     * in \sdcc\as\mcs51\ changed these files in order to create an
6171     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
6172     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
6173     following files to include the previous two files: aslink.dsp,
6174     Makefile.aslink, Makefile.bcc, and Makefile.in.
6175
6176     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
6177     .adb instead of .cdb
6178
6179 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6180
6181         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
6182         value from option --iram-size.
6183
6184 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6185
6186         * \sdcc\as\mcs51\lklist.c: added boundary check before using
6187         dram[] array.
6188
6189 2002-09-18    <wiml AT hhhh.org>
6190
6191         * SDCClrange.h: exposed setFromRange() and setToRange()
6192         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
6193           packRegsForAccUse() (bug 542397)
6194         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
6195           multiple times and emitting the fetch operations more than once
6196           added aopGetUsesAcc() function to allow binary operators to
6197           fetch their operands in the correct order; made genMinus() emit
6198           compact code for X = LITERAL - Y
6199
6200 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6201         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
6202         sprintf() in line 1267.
6203
6204 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6205         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
6206         like ports.
6207
6208 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6209         Changes to aslink (All the changes are marked with 'JCF'):
6210
6211         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
6212         summary().
6213
6214         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
6215         area BSEG.  Also moves, if possible, the DATA area down into the internal
6216         ram so more space is available.
6217
6218         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
6219         sflag.
6220
6221         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
6222         not bytes.  Function summary() which creates a memory usage summary
6223         file with extension .mem.  Reports of overlaping stack and small stack
6224         size.  If the space for the stack is less than 16 bytes aslink trows a
6225         warning.
6226
6227         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
6228         the 8051.  Option 'y' for memory summary output file.
6229
6230         Changes to sdcc (All the changes are marked with 'JCF'):
6231
6232         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
6233
6234         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
6235         overlaying area for it (uses RegBankUsed[4]).
6236
6237         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
6238         bank zero as used by default.  By default aslink locates the stack
6239         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
6240         the creation of the .mem file.  Delegates the allocation of data area
6241         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
6242         the begining of the stack area to aslink.
6243
6244         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
6245         glue() in SDCCglue.c creates an area for it.
6246
6247 2002-09-03  Borut Razem <borut.razem AT siol.net>
6248         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
6249         sdcc/src/pic/glue.c:
6250         introduced atexit() handler for teporay files removal in case of
6251         errors, assertions, ...
6252
6253 2002-08-29  Borut Razem <borut.razem AT siol.net>
6254         * sdcc/support/cpp2/auto-host_vc_in.h:
6255         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
6256         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
6257         Maybe there is a similar problem with BORLANDC? It should be checked!
6258
6259         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
6260         corrected improper use of assert: the assignment to clr variable was done inside the assert.
6261         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
6262         was not executed, and the compiler (cl) launched a warning:
6263         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
6264
6265 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6266         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
6267
6268 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
6269         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
6270
6271         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
6272           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
6273           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
6274           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
6275           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
6276           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
6277           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
6278         - added Release configuration in VS projects
6279         - review of compiler an linker options
6280         - VC .exe files are generated in bin_vc directory, not to interfere
6281           with binaries generated from other projects (cygwin, mingw, bcc ...)
6282
6283         * sdcc/src/yacc.dsp: added
6284
6285         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
6286         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
6287         and insert the version number definitions from .version
6288
6289         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
6290
6291         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
6292         added - genarate auto-host.h using auto-host_vc_in.h as template
6293
6294         * sdcc/sdcc_vc.h,
6295         removed from CVS, generated automatically
6296
6297 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
6298         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
6299
6300 2002-08-11  Borut Razem <borut.razem AT siol.net>
6301         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
6302
6303 2002-08-10  Borut Razem <borut.razem AT siol.net>
6304         * src/SDCCmain.c (main):
6305         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
6306         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
6307         The consequence was that some temporary files were not removed.
6308
6309         * src/SDCCglue.c:
6310         unification of code in functions tempfilename() and tempfile():
6311         function tempnam() is defined in Visual Studio 6.0 and .NET
6312
6313         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
6314
6315         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
6316           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
6317         - removed compiler command line option /WX: Treats all warnings as errors
6318         - update a list of source files, included into the project
6319
6320         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
6321           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
6322         changed project type to Generic Project so that can be correcly converted to VS.NET project
6323
6324         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
6325
6326         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
6327
6328         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
6329
6330         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
6331         added return 0 statements after assert() to make compiler happy
6332
6333         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
6334         added newline in the def file to keep MSC compiler satisfied
6335
6336         * sdcc/src/z80/gen.c:
6337         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
6338           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
6339         - solved MSC error in function aopDump()
6340
6341         * sdcc_vc.h: define PREFIX as "\\sdcc"
6342
6343 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
6344         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
6345
6346 2002-06-22  Scott Dattalo <scott AT dattalo.com>
6347         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
6348         - Rewrote the register banking algorithm.
6349         - Added pCode live-range analysis to registers (for now, only non-used and
6350         singly-used registers optimized away)
6351
6352         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
6353
6354         * 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.
6355
6356 2002-05-10  Scott Dattalo <scott AT dattalo.com>
6357         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
6358
6359 2002-04-22  Michael Hope  <michaelh AT vroom>
6360
6361         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
6362
6363         * configure.in (DD_COPT): Added include support required for gbdk.
6364
6365         * .version: Bumped version number just to increase it.
6366
6367         * src/SDCCmain.c: Added -nostdinc to the default options.
6368
6369 2002-04-15  Michael Hope  <michaelh AT vroom>
6370
6371         * device/lib/z80/printf.c (sprintf): Added.
6372
6373         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
6374
6375         * src/z80/peeph.def: Added transpose redundent load rule.
6376
6377         * src/z80/main.c: Added force callee saves for jaune.
6378
6379         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
6380
6381         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
6382
6383 2002-03-28  Johan Knol  <johan AT balder>
6384
6385         * src/SDCCval.c: fixed bug #532436
6386
6387 2002-03-14  Scott Dattalo <scott AT dattalo.com>
6388         * /src/port.h:
6389         Added "char *Processor" field to the port structure.
6390
6391         * /src/SDCCmain.c:
6392         Added -p option. Allows port dependent processor to be specified.
6393
6394         * all ports:
6395         Initialized the new field char *Processor field to NULL in all ports
6396
6397         * /src/pic/*:
6398         Compiler generated registers for interrupt context saving
6399         were not getting allocated.
6400
6401 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
6402
6403         * /src/SDCCast.c:
6404         Fixed left shift. Will promote the left side of a left shift
6405         if a) left shifting more than size of operand or b) when assigned
6406         to something size > size of left side
6407
6408 2002-03-14  Scott Dattalo <scott AT dattalo.com>
6409         * src/pic/*
6410         tons of changes. Register allocation has been
6411         rewritten. Added customization for the various PICs. Flow
6412         analysis is restructured. ...
6413
6414         * src/pic/device.h:
6415         Added
6416
6417         * src/pic/device.c:
6418         Added. device.c is a PIC port hack to accomodate variations
6419         in PIC devices.
6420
6421 2002-03-13  Michael Hope  <michaelh AT vroom>
6422
6423         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
6424
6425 2002-03-04  johanknol  <johanknol AT manik>
6426
6427         * /src/SDCCval.c: fixed
6428
6429         const unsigned char arr[][2] = { { 0, 1 } };
6430         t18.c:1: error: Initializer element is not constant
6431
6432 2002-03-04  bela  <bela AT manik>
6433
6434         * /device/include/mcs51reg.h:
6435         ds89c420 register definition update
6436
6437 2002-03-03    <johan AT FRIJA>
6438
6439         * support/Util/SDCCerr.c: did something, but don't no why anymore
6440
6441         * support/regression/tests/bug-524691.c: made it a little less shy
6442
6443         * src/SDCCast.c (decorateType): fixed bug #524697
6444
6445         * src/SDCCast.c: made some lineno improvements
6446
6447         * src/SDCCval.c (getNelements): changed warning to error
6448
6449         * src/SDCCglue.c (printIvalArray): changed warning to error
6450
6451         * src/SDCCicode.c: fixed a warning for mingw
6452
6453         * src/SDCCast.c (decorateType): fixed the << promotion for ops
6454
6455         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
6456
6457 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
6458
6459         * src/ds390/peeph.def:
6460         Added some more peephole rules
6461
6462         * src/ds390/gen.c: Various fixes & enhancements
6463
6464         * src/SDCClrange.c, src/SDCClrange.h:
6465         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
6466
6467         * src/ds390/ralloc.c:
6468         various fixes & enhancements (ds390) specific
6469
6470         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
6471         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
6472         from rallocs.
6473
6474         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
6475
6476 2002-03-02    <johan AT FRIJA>
6477
6478         * src/SDCCast.c (decorateType): fixed bug #524708
6479
6480         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
6481
6482         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
6483
6484 2002-03-01  Michael Hope  <michaelh AT vroom>
6485
6486         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
6487
6488         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
6489
6490 2002-03-01    <johan AT FRIJA>
6491
6492         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
6493
6494         * src/SDCCast.c (decorateType): fixed bug #524209
6495
6496         * src/SDCCval.c (valNot): fixed bug #524195
6497
6498 2002-02-26    <johan AT balder>
6499
6500         * src/xa51/gen.c: fixed a warning
6501
6502         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
6503
6504         * src/SDCCast.c (decorateType): fixed bug #522534
6505
6506 2002-02-23    <johan AT balder>
6507
6508         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
6509
6510 2002-02-22    <johan AT balder>
6511
6512         * src/SDCCast.c: fixed bug #514865
6513
6514         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
6515
6516 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
6517
6518         * sdcc/src/SDCCloop.c:
6519         Previous fix was not good. basic blocks that have "break" or "return" are
6520         not really partof a loop , but live ranges used in these blocks should
6521         be live thru the entire loop, so set partOfLoop but don't add them to
6522         loop region
6523
6524 2002-02-21    <johan AT FRIJA>
6525
6526         * src/SDCCcse.c: fixed bug #514308
6527
6528 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
6529
6530         * src/SDCCloop.c:
6531         Fixed BUG #519583. If a conditional block ended in a return/break
6532         statement inside a loop, it was not being considered part of the loop.
6533
6534         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
6535
6536 2002-02-10  Karl Bongers <karl AT turbobit.com>
6537
6538         * debugger/*:
6539         Fixed up SDCDB debugger somewhat.  Updated debugger/README
6540         with lots of comments and notes.
6541
6542         * device/examples/test2.c:
6543         Fix bug, "red" variable not being initialized(compiler complained).
6544
6545         * device/examples/Makefile, examples/test3.c:
6546         Add Makefile in device/examples folder, compiles test3.c
6547         for use as a multiple module SDCDB test case.
6548
6549         * sim/ucsim/cmd.src/cmdset.cc:
6550         Took out debug printfs in ucsim "next" command.
6551
6552         * sim/ucsim/xa.src:
6553         Karl and Johan start ucsim XA support.  Most dissassembly working,
6554         about 75% emulation done(plenty of work remaining).
6555
6556         * sim/ucsim/z80.src:
6557         Add Z80 support to ucsim, add test-ucz80 regression test,
6558         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
6559         Notice z80 compiler fails on examples/test3.c/crc code.
6560
6561 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
6562
6563         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
6564         Added support for --parms-in-bank1
6565
6566         * src/ds390/peeph.def:
6567         added a few more peephole optimzations
6568
6569         * src/ds390/main.c:
6570         1) added __builtin_inp & __builtin_outp used to read in data of given length
6571            from a memory mapped port
6572         2) added __builtin_memcmp
6573         3) added __builtin_swapw swap bytes of a short
6574
6575         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
6576         1) handle multiple send & receives from register bank1
6577         2) ralloc can now allocate DPTR1 to some liveRanges
6578
6579         * src/SDCCsymt.c, src/SDCCsymt.h:
6580         changes to handle multiple sends & receives
6581
6582         * src/SDCCptropt.h:
6583         added some pointer arithmetic optimization
6584
6585         * src/SDCCptropt.c:
6586         added some pointer arithmetic optimizations but not stable yet so not
6587         called from anywhere (will get this working shortly)
6588
6589         * src/SDCCopt.c: fixed for multiple sends & receives
6590
6591         * src/SDCCmain.c:
6592         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
6593         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
6594            set preprocessor defines (depending on options)
6595
6596         * src/SDCCicode.c, src/SDCCicode.h:
6597         changes made to handle multiple sends & receives
6598
6599         * src/SDCCglobl.h:
6600         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
6601
6602         * src/SDCCcse.c, src/SDCCcse.h:
6603         added function findbackward def (to be used in upcoming optimization)
6604
6605         * src/SDCCcflow.c, src/SDCCcflow.h:
6606         added function returnAtEnd - to determine if a basic block terminates with
6607         a RETURN iCode
6608
6609         * src/SDCCast.c, src/SDCCast.h:
6610         added option parms-in-bank1
6611
6612         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
6613         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
6614         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
6615         adjusted for --parms-in-bank1 option
6616
6617         * device/include/string.h:
6618         donot redefine "reentrant" keyword
6619
6620         * device/include/ds80c390.h: Added some more SFRs
6621
6622 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
6623
6624         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
6625
6626 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
6627
6628         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
6629
6630 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
6631
6632         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
6633
6634 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
6635
6636         * Added --xram-movc option
6637
6638 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
6639
6640         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
6641
6642 2002-01-11  Johan Knol
6643
6644         * Added math lib of Jesus Calvino-Fraga
6645
6646 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
6647
6648         * src/SDCCmain.c (processFile): fix processing of ../../src.c
6649         * support/regression/Makefile: new target test-mcs51-stack-auto
6650         * support/regression/ports/mcs51-stack-auto/spec.mk: added
6651
6652 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
6653
6654         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
6655
6656 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
6657
6658         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
6659
6660 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
6661
6662         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
6663
6664         * src/SDCCglue.h: add definition for printIvalChar()
6665
6666 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
6667
6668         * src/SDCCast.c: fix #498138 by Johan
6669
6670         * src/SDCCglue.c: fix #498138 by Johan
6671
6672 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
6673
6674         * support/regression/Makefile: fix clean
6675
6676         * support/regression/ports/ds390/support.c: fix transmission of last character
6677
6678 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
6679
6680         * /sdcc/src/ds390/gen.c:
6681         a) improved computing address of stack variable
6682         b) took out some #if 0 code
6683         c) improved parmBytes adjustment
6684         d) improved genPlusIncr & genMinusIncr
6685         e) genCmp could generate bad code (when left assigned to DPTR)
6686         f) Fixed bug in hasInc
6687
6688         * /sdcc/src/ds390/ralloc.c:
6689         a) packRegsForSupport could mess up live information (Fixed)
6690         b) packRegsDPTRuse could be incorrect for left & right shift
6691
6692         * /sdcc/src/mcs51/ralloc.c:
6693         packRegsForSupport could mess up the live information (Fixed)
6694
6695         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
6696
6697         * /sdcc/src/SDCCast.c:
6698         can reverse a loop even if function call is present as long
6699         as the loop control variable is local & is not passed as parameter
6700
6701 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6702
6703         * /sdcc/ChangeLog: *** empty log message ***
6704
6705         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
6706         More builtin function additions for TININative
6707
6708         * /sdcc/src/ds390/ralloc.c:
6709         Had broken the regression testsuite
6710
6711         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
6712
6713         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
6714         Added funcattr hasStackParms will be set for reentrant functions when there
6715         are paramteres on the stack, this helps in minimizing frame pointer generation
6716         typeFromStr can handle function pointers now
6717
6718         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
6719         *** empty log message ***
6720
6721 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6722
6723         * /src/ds390/gen.c, /src/ds390/main.c:
6724         More builtin function additions for TININative
6725
6726         * /src/ds390/ralloc.c:
6727         Had broken the regression testsuite
6728
6729         * /src/SDCCast.c: Fixed a bug in dumptree
6730
6731         * /src/SDCCsymt.c, /src/SDCCsymt.h:
6732         Added funcattr hasStackParms will be set for reentrant functions when there
6733         are paramteres on the stack, this helps in minimizing frame pointer generation
6734         typeFromStr can handle function pointers now
6735
6736         * /doc/builtins.txt, /doc/TININative.txt:
6737         *** empty log message ***
6738
6739
6740 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
6741
6742         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
6743         ALPHA version for -mTININative
6744
6745         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
6746         updated to reflect changes in the port structure
6747
6748         * /src/port.h:
6749         added function do_assemble (similar to do_link) if non-null this function
6750         will be called to do assembly (-mTININative) requires a multi command
6751         assembly
6752         added function genAssemblerEnd will be called to generate assembler Epilogue
6753
6754         * /src/SDCCsymt.c:
6755         added _JavaNative to debug info printing
6756
6757         * /src/SDCCmain.c: added option --tini-libid
6758         added port->do_assemble function (-mTININative) has a multi command assemble
6759
6760         * /src/SDCCglue.c: Disabled "constExpr" check
6761         added port->genAssemblerEnd function
6762
6763         * /src/SDCCglobl.h: Added option --tini-libid value
6764
6765         * /src/SDCCast.h:
6766         tookout optimizeCompare from the header (has no external references)
6767
6768         * /src/SDCCast.c: made one more function "static"
6769
6770 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
6771
6772         * src/z80/mappings.i: Added z80asm support.
6773
6774         * src/z80/main.c: Added z80asm support on --asm=z80asm
6775
6776         * src/z80/gen.c: Fixed asm portability issues.
6777
6778         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
6779
6780         * src/SDCCglue.c (printExterns): Added global/extern split.
6781
6782 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
6783
6784         * support/regression/Makefile: added test for mcs51 model large
6785
6786         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
6787
6788         * support/regression/ports/gbz80/spec.mk: added -mgbz80
6789
6790 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
6791
6792         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
6793
6794 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
6795
6796         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
6797
6798         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
6799
6800 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
6801
6802         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
6803
6804         * support/regression/tests/simplefloat.c: Port to mcs51.
6805
6806 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
6807         * support/regression/tests/bug-485362.c: Added.
6808
6809         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
6810
6811         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
6812
6813         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
6814
6815         * src/z80/gen.c (aopDump): Added a dump function.
6816
6817 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
6818         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
6819
6820         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
6821
6822         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
6823
6824         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
6825
6826         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
6827
6828         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
6829
6830         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
6831
6832         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
6833
6834         * support/regression/ports/ds390/support.c: Use tinibios.
6835
6836         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
6837
6838 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
6839
6840         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
6841         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
6842
6843         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
6844
6845         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
6846
6847 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
6848
6849         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
6850
6851         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
6852         (packRegsForIYUse): Created and optimised.
6853
6854 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
6855
6856         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
6857 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
6858
6859         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
6860
6861         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
6862
6863         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
6864
6865 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6866
6867         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
6868
6869         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
6870
6871 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6872
6873         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
6874
6875         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
6876
6877         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
6878
6879 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
6880
6881         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
6882         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
6883         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
6884
6885         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
6886
6887         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
6888         (genNotFloat): Added.
6889         (genUminusFloat): Added.
6890
6891         * device/lib/z80/Makefile: Added floating pt stubs.
6892
6893         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
6894
6895         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
6896
6897         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
6898
6899 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
6900
6901         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
6902
6903         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
6904
6905         * sdcc/support/regression/Makefile: Add port ds390.
6906
6907         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
6908
6909         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
6910
6911         * sdcc/support/regression/ports/ds390/spec.mk: Added.
6912
6913         * sdcc/support/regression/ports/ds390/support.c: Added.
6914
6915         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
6916
6917         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
6918
6919         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
6920
6921 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
6922
6923         * device/include/malloc.h: Added z80 and gbz80 support.
6924
6925         * device/lib/gbz80/heap.s: Added.
6926
6927         * device/lib/z80/heap.s: Added.
6928
6929         * device/lib/malloc.c: Added z80 and gbz80 support.
6930
6931         * support/regression/tests/malloc.c (testMalloc): Added.
6932
6933         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
6934
6935         * support/regression/tests/bug-478094.c: Added.
6936
6937         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
6938
6939 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
6940
6941         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
6942
6943         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
6944
6945         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
6946
6947         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
6948
6949         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
6950
6951 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
6952
6953         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
6954
6955 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
6956
6957         * support/regression/tests/bug-477927.c: Added.
6958
6959         * src/z80/peeph.def: Added minor rules.
6960
6961         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
6962
6963         * src/z80/peeph.def: Added jump optimisation modification.
6964
6965 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
6966
6967         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
6968
6969 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
6970
6971         * support/regression/tests/funptrs.c: Added.
6972
6973 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
6974
6975         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
6976
6977 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
6978
6979         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
6980
6981         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
6982
6983         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
6984         (movLeft2ResultLong): Created.
6985
6986         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
6987         (joinPushes): Added.  Joins two char pushes into a word push.
6988
6989 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
6990
6991         * support/cpp2/Makefile.in (install): Added creation of dest dir.
6992
6993         * support/makebin/Makefile (install): Added creation of dest dir.
6994
6995 2001-10-24 Karl Bongers <karl AT turbobit.com>
6996
6997         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
6998
6999 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
7000
7001         * src/z80/ralloc.c: Turned off faulty pack for one use.
7002
7003         * src/z80/peeph-gbz80.def: Removed redundent restart options.
7004
7005         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
7006
7007 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
7008
7009         * support/regression/Makefile: Improved clean
7010
7011         * support/regression/ports/gbz80/spec.mk: Added clean
7012
7013         * support/regression/ports/host/spec.mk: Added clean
7014
7015         * support/regression/ports/z80/spec.mk: Added clean
7016
7017         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
7018
7019         * support/regression/ports/mcs51/timeout.c: little improvements
7020
7021 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
7022
7023         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
7024
7025         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
7026
7027         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
7028
7029 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
7030
7031         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
7032
7033         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
7034
7035 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
7036         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
7037
7038         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
7039
7040         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
7041
7042         * src/mcs51/main.c (_linkCmd): Added bin path to command.
7043
7044         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
7045
7046         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
7047
7048         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
7049
7050         * support/regression/tests/longor.c: Added.
7051
7052 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
7053
7054         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
7055
7056         * as/mcs51/aslink.h: define PATH_MAX
7057
7058         * as/mcs51/asm.h: define PATH_MAX
7059
7060         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
7061
7062         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
7063
7064         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
7065
7066         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
7067
7068         * src/SDCCglobl.h: define PATH_MAX
7069
7070         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
7071
7072         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
7073
7074 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
7075
7076         * src/z80/gen.c (gencjneshort): Fixed
7077
7078         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
7079
7080 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
7081
7082         * support/regression/tests/bug-469671.c: Added.
7083
7084         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
7085
7086 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
7087
7088         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
7089
7090         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
7091
7092 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
7093
7094         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
7095
7096         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
7097
7098         * src/device/lib/_mullong.c : removed hint: nooverlay bug
7099
7100         * src/device/lib/_divuint.c : removed hint: nooverlay bug
7101
7102         * src/device/lib/_divulong.c: removed hint: nooverlay bug
7103
7104         * src/device/lib/_moduint.c : removed hint: nooverlay bug
7105
7106         * src/device/lib/_modulong.c: removed hint: nooverlay bug
7107
7108 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
7109
7110         * 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.
7111
7112         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
7113
7114         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
7115
7116 2001-10-07    <johan AT FRIJA>
7117
7118         * device/lib/gets.c (gets): fixed the return value.
7119
7120 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
7121         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
7122
7123         * 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.
7124
7125         * 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.
7126
7127         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
7128
7129         * src/pic/gen.c: Removed Safe_strdup.
7130
7131         * configure.in: Added option to enable libgc support.
7132
7133         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
7134         (bitVectUnion): Optimised.
7135         (bitVectIntersect): Optimised.
7136         (bitVectBitsInCommon): Optimised.
7137         (bitVectCplAnd): Optimised.
7138
7139         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
7140
7141 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
7142
7143         * src/SDCCmain.c: distinguish between assembler debug and plain options
7144
7145         * src/avr/main.c:   remove standard assembler options
7146
7147         * src/ds390/main.c: remove standard assembler options
7148
7149         * src/mcs51/main.c: remove standard assembler options
7150
7151         * src/port.h: removed "PENDING" comment
7152
7153 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
7154
7155         * src/device/lib/_mulint.c  : new, with assember functions
7156
7157         * src/device/lib/_mullong.c : new, with assember functions
7158
7159         * src/device/lib/_divuint.c : with assember functions
7160
7161         * src/device/lib/_divsint.c : with assember functions
7162
7163         * src/device/lib/_divulong.c: with assember functions
7164
7165         * src/device/lib/_divslong.c: with assember functions
7166
7167         * src/device/lib/_moduint.c : with assember functions
7168
7169         * src/device/lib/_modsint.c : with assember functions
7170
7171         * src/device/lib/_modulong.c: with assember functions
7172
7173         * src/device/lib/_modslong.c: with assember functions
7174
7175         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
7176
7177         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
7178
7179         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
7180                                       replaced _mululong.c and _mulslong.c by _mullong.c
7181
7182 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
7183
7184         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
7185
7186 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
7187
7188         * src/SDCCglue.c: test, if win32api is available for MINGW
7189
7190 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
7191
7192         * src/SDCCsymt.c: no more _modifier in printTypeChain()
7193         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
7194         * support/regression/ports/gbz80/spec.mk: removed GENERIC
7195         * support/regression/ports/host/spec.mk: removed GENERIC
7196         * support/regression/ports/mcs51/spec.mk: removed GENERIC
7197         * support/regression/ports/z80/spec.mk: removed GENERIC
7198
7199 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
7200
7201         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
7202
7203         * support/regression/tests/bug-467035.c: Created.
7204
7205 2001-10-01    <johan AT FRIJA>
7206
7207         * src/SDCC.y: fixed bug #466586 part 1
7208
7209 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
7210
7211         * SDCCicode.c: z80 has no generic pointers
7212         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
7213
7214 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
7215
7216         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
7217
7218 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
7219
7220         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
7221
7222         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
7223
7224 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
7225
7226         * configure.in: Fixed up so that ucsim is only configured once.
7227
7228         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
7229
7230         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
7231         (getPathDifference): As above.
7232
7233         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
7234
7235         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
7236
7237 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
7238         * .version: Updated to 2.3.1
7239
7240         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
7241         Added copyright header.
7242
7243         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
7244         (assemble): Added support for macro based assembler commands.
7245         (linkEdit): Added support for macro based linker commands.
7246         (preProcess): Changed the pre-processor to use macros.
7247         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
7248         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
7249
7250         * device/lib/z80/crt0.s: Added module name for debugging.
7251
7252 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
7253
7254         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
7255
7256         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
7257
7258         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
7259
7260         * src/Makefile.in: Added SDCCmacro and SDCCutil
7261
7262 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
7263
7264         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
7265
7266 2001-09-16    <johan AT FRIJA>
7267
7268         * 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.
7269
7270 2001-09-15    <johan AT FRIJA>
7271
7272         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
7273         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
7274
7275 2001-09-11    <johan AT FRIJA>
7276
7277         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
7278
7279 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
7280
7281         * support/regression/tests/bug-460444.c: Added test case.
7282
7283         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
7284         (genCast): Added justification for all of the asserts.
7285
7286 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
7287
7288         * support/regression/support.c: _xdata replaced by xdata
7289
7290         * support/regression/spec.mk: removed _generic
7291
7292 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
7293
7294         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
7295
7296         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
7297         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
7298
7299         * src/z80/peeph.def: Added a rule to optimise shift then compare.
7300
7301         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
7302
7303         * support/regression/tests/bug-460010.c: Added test case.
7304
7305         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
7306
7307 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
7308
7309         * support/regression/Makefile: inter-port-clean adjusted for mcs51
7310
7311         * support/regression/testfwk.c: removed workaround for bug #436344
7312
7313         * support/regression/tests/bp.c: use less memory with mcs51
7314
7315         * support/regression/tests/bug-441448.c: use less memory
7316
7317         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
7318
7319         * support/regression/collate-results.py: typo
7320
7321 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
7322
7323         * support/regression/tests/fetchoverlap.c: Added new test case.
7324
7325         * support/regression/tests/bp.c: Added new test case.
7326
7327         * support/regression/tests/bug-448984.c: Added new test case.
7328
7329         * support/regression/tests/pow2shifts.c: Added new test case.
7330
7331         * src/z80/gen.c: Turned off the noise it normally generates for the release.
7332         (genlshTwo): Fixed right shift for count > 8.
7333
7334         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
7335
7336 2001-09-08    <johan AT FRIJA>
7337
7338         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
7339
7340 2001-09-07    <johan AT FRIJA>
7341
7342         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
7343
7344         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
7345
7346 2001-09-06    <johan AT FRIJA>
7347
7348         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
7349         * bernhard noted me at this: "() equals to (void)" (1.38)
7350
7351 2001-09-05    <johan AT FRIJA>
7352
7353         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
7354
7355 2001-09-04    <johan AT FRIJA>
7356
7357         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
7358
7359
7360 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
7361
7362         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
7363
7364 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
7365
7366         * link/z80/aslink.h: Fixed path for PATH_MAX
7367
7368 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
7369
7370         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
7371
7372         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
7373
7374         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
7375
7376         * 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.
7377
7378 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
7379
7380         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
7381         (genCmp): Fixed up genCmp for the GB with longs.
7382
7383         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
7384
7385         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
7386
7387         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
7388
7389         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
7390
7391 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
7392
7393         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
7394
7395 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
7396
7397         * 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.
7398
7399         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
7400
7401 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
7402
7403         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
7404
7405         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
7406
7407 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
7408
7409   * sim/ucsim/configure:    little improvement of Cygwin-detection
7410   * sim/ucsim/configure.in: little improvement of Cygwin-detection
7411   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
7412   * support/regression/tests/bug-221100.c: small changes for mcs51
7413   * support/regression/tests/bug-221168.c: small changes for mcs51
7414   * support/regression/tests/bug-227710.c: small changes for mcs51
7415   * support/regression/tests/staticinit.c: small changes for mcs51
7416   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
7417   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
7418   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
7419
7420 $Revision$