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