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