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