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