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