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