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