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