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