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