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