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