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