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