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