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