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