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