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