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