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