* src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
[fw/sdcc] / ChangeLog
1 2004-01-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
2
3         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4         shiftL2Left2Result): fixed bug #879326
5         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
6         (genMultOneByte): fixed bug in signed vs unsigned multiplication
7         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
8         address fetch for clr instruction
9         * device/lib/hc08/_mulint.c: created optimized assembly version
10         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
11
12 2004-01-19 Bernhard Held <bernhard@bernhardheld.de>
13
14         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
15         proposed in FR #877103
16
17 2004-01-18 Bernhard Held <bernhard@bernhardheld.de>
18
19         * src/SDCCval.c (cheapestVal): added missing checks
20         * src/SDCCicode.c (usualBinaryConversions): fixed condition
21         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
22
23 2004-01-16 Klaus Flittner <klaus_flittner@gmx.de>
24
25         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
26         equal operands
27
28 2004-01-16 Vangelis Rokas <vrokas@otenet.gr>
29
30         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
31         loaded with the linker search paths (-L arguments) and the libraries
32         to be linked with the current source (-l arguments). Changes
33         currently will affect only the pic16 port.
34         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
35         include path the port specific paths and port specific libraries,
36         * gplink command now contains the $3 argument,
37         * src/pic16/device.h,
38         * src/pic16/device.c,: structure PIC_device is made public and
39         renamed to PIC16_device, the same for variable Pics which is renamed
40         to Pics16. Updated all references to them.
41         * src/pic16/glue.c (pic16glue): corrected bug with code
42         initialization which bypassed the variable initializations block.
43
44         * device/lib/pic16/Makefile.rules: removed --penable-stack from
45         COMPILE_FLAGS and added the --nostdinc option
46
47 2004-01-15 Erik Petrich <epetrich@ivorytower.norman.ok.us>
48
49         * device/include/mc68hc908jb8.h: Register defs for another member
50         of the hc08 family. Contributed by Bjorn Bringert - thanks!
51
52 2004-01-14 Vangelis Rokas <vrokas@otenet.gr>
53
54         Documenting changes from previous commits.
55         * configure.in (version 1.56),
56         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
57         when generating output files to configure the pic16 library,
58         but now I've commented it out, since gputils aren't installed in the
59         SF compile farm, so library won't compile
60
61         * device/lib/Makefile.in (version 1.56): initially I've added in
62         target 'all' the prerequestive 'model-pic16' so it compiled the
63         pic16 library, but now I've commented it out for the same reasons
64         above,
65         * added targets 'model-pic16' and 'objects-pic16' to compile the
66         library
67         * added target 'port-specific-objects-pic16' to handle the
68         generated libraries and copy them into the build/ directory
69         * added target 'clean-intermediate-pic16' to clean intermediate
70         files into pic16 directory
71         * in target 'installdirs' added line to create directory pic16 in
72         the installation path
73
74         * device/include/Makefile.in (version 1.11): in target 'install'
75         added lines to copy all header files to installation path,
76         * in target 'installdirs' added line create directory for pic16
77         headers in the installation path
78
79 2004-01-13 Klaus Flittner <klaus_flittner@gmx.de>
80
81         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
82          a function call
83
84 2004-01-13 Bernhard Held <bernhard@bernhardheld.de>
85
86         * configure,
87         * device/lib/configure.in,
88         * device/lib/configure: fixed for autoconf 2.57
89
90 2004-01-13 Erik Petrich <epetrich@ivorytower.norman.ok.us>
91
92         * src/z80/main.c (_parseOptions): fixed the portmode= command line
93         option so that it actually works. Made it specific to the z80, since
94         the gbz80 doesn't have these kinds of I/O ports.
95
96 2004-01-13 Erik Petrich <epetrich@ivorytower.norman.ok.us>
97
98         * device/include/z180.h,
99         * device/lib/_memcpy.c,
100         * device/lib/_memmove.c,
101         * device/lib/_mulint.c,
102         * device/lib/ser_ir.c,
103         * device/lib/ser_ir_cts_rts.c,
104         * device/lib/_strcmp.c,
105         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
106         * src/z80/main.c (_process_pragma): add support for pragmas bank and
107         portmode; added deprecation warning for bank= and protmode= forms.
108         Also, guard against buffer overflow.
109         * src/z80/gen.c (aopGet): generate better code for sfr banked read
110
111 2004-01-13 Erik Petrich <epetrich@ivorytower.norman.ok.us>
112
113         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
114         changed interrupt vector table generation to only emit declared vectors.
115         * device/include/Makefile.in: added missing backslash
116         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
117
118 2004-01-13 Vangelis Rokas <vrokas@otenet.gr>
119
120         Mainly changes to support compilation of the device libraries
121         * src/pic16/device.c: stack is allocated via symbol and not
122         via literal number. The symbol is placed in the corresponding
123         position of the data ram
124         * (pic16_dump_section): relocatable and absolute uninitialized
125         data are now emitted in sorted order to reduce section naming,
126         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
127         weren't marked as being in the access bank,
128
129 2004-01-13 Vangelis Rokas <vrokas@otenet.gr>
130
131         Added portion of GNU PIC Library under the directory
132         device/include/pic16 and device/lib/pic16. These files
133         contain the declarations of SFRs for the PIC18Fxx2 devices.
134         The directory is initialized via configure from toplevel.
135         
136 2004-01-12 Klaus Flittner <klaus_flittner@gmx.de>
137
138         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
139         the spilllocations to be compared correctly
140
141 2004-01-12 Bernhard Held <bernhard@bernhardheld.de>
142
143         * src/SDCCast.c (decorateType): fixed bug introduced today
144
145 2004-01-12  Borut Razem <borut.razem@siol.net>
146
147         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
148         doc/sdccman.lyx: upper case pragmas are deprecated
149
150 2004-01-12 Bernhard Held <bernhard@bernhardheld.de>
151
152         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
153         in simpler and even better code
154
155 2004-01-11 Bernhard Held <bernhard@bernhardheld.de>
156
157         * src/SDCCicode.c (operandOperation): fixed bug #874819
158         * src/SDCCast.c (decorateType): fixed
159         char foo (unsigned long ul) { return ul > 0; }
160
161 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann@web.de>
162
163         * doc/sdccman.lyx: Moved and added some sections, small changes
164         all over. Telling LaTeX to be less strict with word spacing
165         to better keep the right margin. Changed some notes about
166         maintainance of the ports in section 3.2.1 - is it OK like this?
167
168 2004-01-11 Vangelis Rokas <vrokas@otenet.gr>
169
170         SDCC source changes:
171         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
172         convilong): modified to inform the pic16 port that builtin functions
173         are external
174
175         PIC16 PORT specific changes:
176         * src/pic16/device.c pic16_dump_equates() added,
177         processor registers declared internally by the port are emitted in
178         the translation as equates,
179         * src/pic16/gen.c: inline code is passed unprocessed to the
180         translation,
181         * (pic16_popGetLit2): fnuction modified to take second operand as
182         pCodeOp pointer and not as literal,
183         * (popRegFromIdx): prefixed with pic16_,
184         * (pic16_popCombine2): modified to receive already allocated pCode
185         operands,
186         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
187         * (genFunction): initializes local stack frame and pushes on stack
188         all the registers used by this function,
189         * (genEndFunction): restores all registers from stack and restores
190         stack frame,
191         * src/pic16/glue.c (pic16emitRegularMap): various changes and
192         improvements,
193         * (pic16glue): changed the program startup sequence,
194         * added new dbName code 'A' for functions placed in absolute section
195         * src/pic16/main.c: added function attribute _naked,
196         * added pragma 'code' to place a fnuction at an absolute address,
197         * added command line arguments --debug-ralloc and --pcode-verbose,
198         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
199         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
200         * (pic16_newpCodeOpLit2): modified to take the second operand as
201         pCodeOp pointer,
202         * (pic16_printpBlock): modified to emit each function in a separate
203         section,
204         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
205         UPPER for immediate operands,
206         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
207         instruction,
208         * src/pic16/peeph.def: all peepholes with movff are commented out,
209         because there is a problem in the pcode peep optimizer,
210         * src/pic16/ralloc.c: the register allocator can now reuse local
211         function symbols for another function. This saves register usage.
212         * src/pic16/ralloc.h: added flag isLocal in structure regs,
213
214         Added file src/pic16/NOTES with information about program writing on
215         the current port version.
216
217 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann@web.de>
218
219         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
220         and peephole 252 (array access)
221
222 2004-01-09  Borut Razem <borut.razem@siol.net>
223
224         * src/SDCCmain.c : fixed #872250: -l command line defined library
225           files are scanned before standard library files
226
227 2004-01-10 Erik Petrich <epetrich@ivorytower.norman.ok.us>
228
229         * src/SDCCast.c (decorateType): fixed bug #874046
230
231 2004-01-09  Borut Razem <borut.razem@siol.net>
232
233         * support/scripts/sdcc.nsi: remove previous installation
234
235 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann@web.de>
236
237         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
238         bytes for last interrupt vector (mcs51)
239         * sdcc.spec: fixed typo
240
241 2004-01-09 Erik Petrich <epetrich@ivorytower.norman.ok.us>
242
243         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
244         gen51Code): more efficient parameter receive for --model-large
245         ("bug" #845294)
246
247 2004-01-09 Erik Petrich <epetrich@ivorytower.norman.ok.us>
248
249         * src/ds390/main.c,
250         * src/z80/main.c: added missed needLinkerScript flags (more than
251         one port structure defined in these file)
252         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
253         bug #795325
254
255 2004-01-08 Vangelis Rokas <vrokas@otenet.gr>
256
257         * src/SDCCmain.c: removed various references to DEFAULT_PORT
258         * src/port.h: added flag needLinkerScript in port->linker
259         structure to inform whether to create a .lnk file or not,
260         * src/avr/main.c,
261         * src/ds390/main.c,
262         * src/hc08/main.c,
263         * src/mcs51/main.c,
264         * src/pic/main.c,
265         * src/pic16/main.c,
266         * src/xa51/main.c,
267         * src/z80/main.c: changed appropriately to configure
268         needLinkerScript flag
269         * src/pic/gen.c,
270         * src/pic16/gen.c (genAddrOf): fixed bug #863624
271         * src/pic/glue.c: added variable udata_section_name to
272         override default uninitialized data segment definition for
273         devices only with SHAREBANK memory (reported from Erik Epetrich)
274         * (pic14emitOverlay): modified to emit a commented overlay segment
275         directive when no overlay data exist
276         * (picglue): modified to emit uninitialized data segment
277         according to udata_section_name
278         * src/pic/main.c (_pic14_parseOptions): added command line
279         options --udata-section-name=[name] to override default
280         udata definition name
281         * modified _linkCmd and _asmCmd to include compiler passed
282         arguments via -W option
283         * src/pic16/main.c: added $l in _asmCmd, changed extension for
284         object file from '.rel' to '.o' in port->linker structure,
285         changed size of fptr from 2 to 3 in port structure
286
287 2004-01-07  Borut Razem <borut.razem@siol.net>
288
289         * support/scripts/sdcc.nsi: update PATH
290         * support/scripts/sdcc.ico: craeted
291
292 2004-01-07 Bernhard Held <bernhard@bernhardheld.de>
293
294         * device/include/Makefile.in: fix install
295         * doc/Makefile: fix install
296
297 2004-01-07 Erik Petrich <epetrich@ivorytower.norman.ok.us>
298
299         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
300         in bug #860505
301         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
302         how the function variable allocation summary is displayed; also
303         include information about variables allocated to the overlay
304         segment
305
306 2004-01-06  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
307
308         * as/mcs51/lkmain.c: Help about -Y option
309         * as/mcs51/lkarea.c: Fixed gcc warnings
310
311 2004-01-06 Bernhard Held <bernhard@bernhardheld.de>
312
313         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
314         fixed warning
315         * support/valdiag/tests/overflow.c: added
316         * src/SDCCast.c (decorateType),
317         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
318         LEFT_OP (left shift)
319
320 2004-01-06  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
321
322         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
323         (default behaviour).
324
325 2004-01-06 Erik Petrich <epetrich@ivorytower.norman.ok.us>
326
327         A python script to validate compiler diagnostic messages. It can be
328         used to verify that sdcc complains about bad c source code and
329         gives a good location of the error.
330         * support/valdiag/Makefile,
331         * support/valdiag/valdiag.py,
332         * support/valdiag/tests/*
333
334 2004-01-06 Erik Petrich <epetrich@ivorytower.norman.ok.us>
335
336         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
337         * src/SDCCsymt.c (newEnumType),
338         * src/SDCCsymt.h
339         * support/Util/SDCCerr.c,
340         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
341         enum related bugs.
342         * support/regression/tests/enum.c: added test for enum values that
343         require at least 2 bytes of storage.
344
345 2004-01-06 Vangelis Rokas <vrokas@otenet.gr>
346
347         * src/common.h: added ifndef/define/endif macros
348         around the header file.
349         Bug reported from Jesus Calvino-Fraga
350
351 2004-01-06 Bernhard Held <bernhard@bernhardheld.de>
352
353         * sdcc.spec: updated
354         * device/include/Makefile.in: don't install CVS directories
355         * device/lib/Makefile.in: added removal of CVS directories after install
356         * doc/Makefile: fixed install, added local_icons
357         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
358         * src/mcs51/gen.c (genRightShift): fixed bug #870788
359         * src/ds390/gen.c (genRightShift): fixed bug #870788
360         * src/SDCCast.c (decorateType): fixed bug #870781
361
362 2004-01-06 Vangelis Rokas <vrokas@otenet.gr>
363
364         PIC16 port related changes:
365         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
366         added variable stackPos,
367
368         * gen.c: genCall, assignResultValue: added support for
369         pushing/retrieving function parameters to/from stack,
370         genFunction,genEndFunction: setup stack frame for the
371         generated function,
372         genAddrOf: will be changed according to bug 863624
373
374         * added files genutils.c and genutils.h which contain gen*
375         debugged and optimised functions extracted from gen.c
376         
377         * glue.c: added variable 'externs' which holds extern symbols,
378         pic16emitRegularMap: is modified to properly handle relocatable
379          symbols under the new scheme,
380         pic16createInterruptVect: is modified
381         pic16printPublics: is modified to emit 'global' assembler directives,
382         added pic16_printExterns to print extern symbols,
383         pic16glue: initializes stack/frame pointer in the beginning of
384         the assembly output. Temporary hack, will be corrected later,
385         because gplink yet does not support stack and SDCC does not
386         yet support a type of crt0.o object to create the final binary.
387         
388         * Removed many lines that contain 8051 legacy code.
389         * The code is finally placed under a 'code' directive.
390         * Added port specific options.
391         
392         * _process_pragma: simplified since now we do not need *special*
393         include file to define SFR registers. But a separate header
394         will be needed. This will be developed later.
395         * _pic16_parseOptions: added, parses port specific options:
396         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
397         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
398         --preplace-udata-with=
399         
400         * _pic16_setDefaultOptions: modified to initialize section names,
401         but hack is temporarly out of order since it needs improvement.
402         * _pic16_genAssemblerPreamble: configuration words are emitted by
403         their address instead of their name. This part is incomplete and
404         supports only the 18Fxx2 devices. Other devices will emit an error
405         during assembly since they do not contain the same set of config
406         registers
407         * _pic16_genIVT: is modified,
408         
409         * pcode.c: added definitions for some hardware registers that are needed
410         for stack support
411         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
412         All PCI entries are updated. Now LFSR is supported.
413         * Removed pic16_pciTRIS is mentioned by mdubuc in source
414         * added pic16_newpCodeOpLit2 to support instructions with
415         two literal arguments
416         * pic16_pCode2str: corrected code that emits assembler instructions
417         with two literal operands and those that have an access bit modifier
418         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
419         this fixes a bug which caused some labels to be lost, when an
420         assembler directive was added, i.e. banksel,
421         * pic16_FixRegisterBanking: improved logic that causes the insertion
422         of bank switching,
423         * InlineFunction: functions that are called once, are not any more
424         inlined. This can be a port option in the future,
425         
426         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
427         
428         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
429         hold the corresponding uninitialized symbols,
430         * pic16_allocProcessorRegister: registers have explicit marked the
431         accessBank field,
432         * pic16_allocInternalRegister: registers are explicit marked as
433         not used,
434         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
435         processing list, so bit registers were lost,
436         * 
437
438         * ralloc.h: added field 'accessBank' and original symbol operand
439         in register definition,
440         * removed the field isMapped from register definition,
441
442         ** Several functions have been removed from various sources:
443         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
444         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
445         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
446         pic16_assignRelocatableRegisters
447         
448         ** others have been introduced:
449         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
450         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
451         
452 2004-01-05 Vangelis Rokas <vrokas@otenet.gr>
453
454         * support/scripts/inc2h.pl: changed definition of BIT_AT
455         to emit 'sbit at' instead of 'bit at'. This was a request.
456
457         PIC16 port related preliminary changes:
458         * gen.c: prefixed function popRegFromString with
459         pic16_ and all references to it corrected
460         * pcode.c: all pic16_pc_* hardware registers prefixed
461         with underscore (_),
462         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
463         * ralloc.c: newReg(): when register is REG_SFR then
464         set address to rIdx,
465         pic16_allocProcessorRegister(): marks register wasUsed=0
466         pic16_writeUsedRegs(): added a call to assign processor
467         registers via pic16_assignFixedRegisters
468
469 2004-01-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
470
471         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
472         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
473         variables in unused register banks.  Also the SSEG is placed
474         wherever there is enough space for it, and IDATA can be anywhere
475         in internal RAM.  For now compile using -Wl-Y[stack_size].
476         The mem file is different for this option as well, since it
477         makes no sense of talking about DSEG lenght.
478
479 2004-01-02 Vangelis Rokas <vrokas@otenet.gr>
480
481         * src/SDCClrange.c: fixed bug 869095 that caused segfault
482         in certain cases, e.g. when ROM assignment, patch provided
483         from Albert den Haan.
484
485 2004-01-01 Bernhard Held <bernhard@bernhardheld.de>
486
487         Many signedness and type propagation fixes:
488         * src/SDCCicode.c: made geniCodeCast() static
489         replaced SPEC_ by IS_ (cosmetic)
490         (operandOperation): fixed div and mod operation
491         (usualBinaryConversions): added support for promotion of char
492         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
493         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
494         (geniCodeAdd): an array index will stay unsigned, even if promoted
495         from char to int
496         (geniCodeArray): ditto
497         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
498         * src/SDCCsymt.c (computeType): added more support for char;
499         promotion of char is selectable by promoteCharToInt, fixed signedness
500         for all cases
501         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
502         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
503         * src/SDCCval (val*): replaced signedness calculation by
504         computeType()
505         rearranged if-branches (cosmetic)
506         (valShift): added warning W_SHIFT_CHANGED
507         (valCompare): fixed problem with different types
508         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
509         * support/regression/tests/literalop.c: added many cases
510         * support/regression/tests/ast_constant_folding.c: changed finally to
511         'unsigned int'
512         * .version: new year, new version: 2.3.7
513         * src/SDCCmain.c (main): applied patch #866468
514         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
515         provided by Scott Bronson
516         * doc/sdccman.lyx: updated documentation for sdcdb
517         updated and added chapter tips
518
519 2004-01-01 Erik Petrich <epetrich@ivorytower.norman.ok.us>
520
521         * src/SDCCsymt.h: missing from yesterday's commits
522
523 2003-12-31 Erik Petrich <epetrich@ivorytower.norman.ok.us>
524
525         * src/SDCC.y (struct_or_union_specifier),
526         * support/Util/SDCCerr.c,
527         * support/Util/SDCCerr.h: verify that struct & union tags are used
528         as declared.
529
530 2003-12-29 Erik Petrich <epetrich@ivorytower.norman.ok.us>
531
532         * src/SDCCglobl.h: missing from yesterday's commits
533
534 2003-12-28 Erik Petrich <epetrich@ivorytower.norman.ok.us>
535
536         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
537         sft_attributes, struct_declaration, parameter_declaration,
538         type_name, start_block, declaration_list),
539         * src/SDCC.lex (check_type): support redefinition of typedef names
540
541 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann@web.de>
542
543         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
544         aligned xdata arrays. Erik helped me with the if clause.
545
546 2003-12-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
547
548         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
549         warning
550
551 2003-12-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
552
553         * src/SDCCast.h,
554         * src/SDCCast.c (newAst_),
555         * src/SDCCicode.h,
556         * src/SDCCicode.c (ast2iCode, newiCode),
557         * src/SDCCglobl.h,
558         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
559         expr, statement, expression_statement, selection_statement,
560         iteration_statement, expr_opt, jump_statement): foundation for tracking
561         sequence points
562         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
563         point code too)
564
565 2003-12-19 Erik Petrich <epetrich@ivorytower.norman.ok.us>
566
567         * support/Util/SDCCerr.c,
568         * src/SDCCast.h,
569         * src/SDCCast.c (createCase, createDefault, decorateType),
570         * src/SDCClabel.c (labelUnreach),
571         * src/SDCC.y (labeled_statement, jump_statement): More improvements
572         to error messages.
573         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
574         (with thanks to Stas Sergeev)
575         * device/include/time.h,
576         * device/lib/time.c (CheckTime): suppress unreachable code warning
577
578 2003-12-18 Erik Petrich <epetrich@ivorytower.norman.ok.us>
579
580         * src/SDCCast.c (createIvalCharPtr),
581         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
582         bug #753752)
583         * support/regression/tests/nullstring.c: tests for these two bugs
584
585 2003-12-18 Erik Petrich <epetrich@ivorytower.norman.ok.us>
586
587         * support/Util/SDCCerr.h,
588         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
589         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
590         about storage class and 'at' used inside struct or union
591         * src/SDCCBBlock.c (iCodeFromeBBlock),
592         * src/SDCCcse.c (ifxOptimize),
593         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
594         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
595         printIval, emitStaticSeg, emitOverlay),
596         * src/SDCClabel.c (deleteIfx),
597         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
598         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
599         gatherAutoInit, processParms),
600         * support/Util/SDCCerr.h,
601         * support/Util/SDCCerr.c (werrorfl): Support for better error location
602         reporting for post-parse errors.
603
604 2003-12-16 Erik Petrich <epetrich@ivorytower.norman.ok.us>
605
606         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
607         implicit casts via union; they don't work on big endian systems
608         (possible fix for bug #861138)
609
610 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann@web.de>
611
612         (committed by Erik Petrich <epetrich@ivorytower.norman.ok.us> on Frieder's behalf)
613         * src/mcs51/main.c: fixed the fix for bug #737001
614
615 2003-12-15  Borut Razem <borut.razem@siol.net>
616
617         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
618
619 2003-12-14 Erik Petrich <epetrich@ivorytower.norman.ok.us>
620
621         * support/makebin/makebin.c: put output in binary mode
622
623 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann@web.de>
624
625         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
626         xdata and data memory on startup. Set the environment variable
627         SDCC_NOGENRAMCLEAR to disable this.
628         * src/mcs51/peephole.def,
629         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
630         (allows non-interrupt and interrupt code to safely compete for a resource
631         without the non-interrupt code having to disable interrupts)
632
633 2003-12-13 Erik Petrich <epetrich@ivorytower.norman.ok.us>
634
635         * src/SDCCicode.c (geniCodeAdd),
636         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
637         with valFromType if type might be a pointer and host is big endian).
638         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
639         types, not just integer types.
640         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
641         multiply defined with mismatching "at" address.
642
643 2003-12-12 Erik Petrich <epetrich@ivorytower.norman.ok.us>
644
645         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
646         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
647         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
648         with embedded nulls (fixed bug #753752)
649
650 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann@web.de>
651
652         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
653         Apparently this did not see much testing (endless loop)
654
655 2003-12-11 Erik Petrich <epetrich@ivorytower.norman.ok.us>
656
657         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
658
659 2003-12-10 Erik Petrich <epetrich@ivorytower.norman.ok.us>
660
661         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
662         gracefully handle NULL memmap pointers
663
664 2003-12-08 Erik Petrich <epetrich@ivorytower.norman.ok.us>
665
666         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
667         instead of deleting the iCode when an operand is volatile
668         * src/z80/gen.c (genDummyRead),
669         * src/mcs51/gen.c (genDummyRead),
670         * src/ds390/gen.c (genDummyRead),
671         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
672         not just IC_RIGHT
673         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
674         * src/SDCC.y: fixed bug #850420
675
676 2003-12-05 Erik Petrich <epetrich@ivorytower.norman.ok.us>
677
678         Applied z80 i/o port patch from Peter Townson and fixed some operators
679         to better handle operands in A register.
680         * device/include/z180.h
681         * src/SDCC.y
682         * src/SDCCglue.c
683         * src/z80/gen.c
684         * src/z80/gen.h
685         * src/z80/main.c
686         * src/z80/peeph-z80.def
687         * src/z80/peeph.def
688         * src/z80/z80.h
689
690 2003-12-03 Erik Petrich <epetrich@ivorytower.norman.ok.us>
691
692         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
693
694 2003-12-01 Erik Petrich <epetrich@ivorytower.norman.ok.us>
695
696         * device/lib/hc08/_mullong.c: Removed extra #endif
697
698 2003-12-01 Erik Petrich <epetrich@ivorytower.norman.ok.us>
699
700         * sim/ucsim/hc08.src/inst.cc,
701         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
702         carries from x to h
703         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
704         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
705         * device/include/stdarg.h: fixed varargs for hc08
706         * device/lib/Makefile.in,
707         * device/lib/hc08/Makefile,
708         * device/lib/hc08/_mulint.c,
709         * device/lib/hc08/_mullong.c: fixed some endian problems
710
711 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann@web.de>
712
713         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
714         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
715         * device/lib/_gptrget.c,
716         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
717
718 2003-11-27 Erik Petrich <epetrich@ivorytower.norman.ok.us>
719
720         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
721         * src/SDCCast.c (astErrors): fixed bug #846007
722         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
723
724 2003-11-26 Erik Petrich <epetrich@ivorytower.norman.ok.us>
725
726         * src/SDCCast.c (decorateType): disabled a transformation I added in
727         revision 1.188 (access to fields of a structure at an absolute address);
728         it breaks with bitfields, extern declarations, and gcse analysis.
729         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
730         could be assigned through a pointer, so don't complain.
731         * src/SDCCast.c (astErrors),
732         * src/SDCCast.h,
733         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
734
735 2003-11-26 Vangelis Rokas <vrokas@otenet.gr>
736         
737         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
738         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
739         output of __config directives, since gpasm now supports them
740         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
741         pre-processor macro, i.e. -DMCU=p18f452
742         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
743         and modified to handle 'cast' icode similarly to '=' icode
744         * src/pic16/device.h (typedef struct PIC_device): added field
745         'extMIface' to indicate that chip has external memory interface
746         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
747         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
748         18F8720
749
750 2003-11-26 Erik Petrich <epetrich@ivorytower.norman.ok.us>
751
752         * src/SDCC.y (pointer): fixed bug #846006
753         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
754         * src/SDCCast.c (decorateType): fixed bug #846009
755         * src/ds390/peeph.def,        
756         * src/ds390/gen.c (genAnd, genOr),
757         * src/mcs51/peeph.def,        
758         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
759
760 2003-11-25 Erik Petrich <epetrich@ivorytower.norman.ok.us>
761
762         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
763         * src/SDCCdflow.c
764         * src/SDCCcse.c
765         * src/SDCCcse.h
766         * src/SDCCBBlock.h
767         * src/SDCCBBlock.c
768
769 2003-11-23 Klaus Flittner <klaus_flittner@gmx.de>
770
771         fixed bug #845089
772         * src/SDCCbitv.h,
773         * src/SDCCbitv.c: added function to free a bitvector
774         * src/SDCClrange.h,
775         * src/SDCClrange.c: added function to recompute the liveranges
776         * src/avr/ralloc.c,
777         * src/ds390/ralloc.c,
778         * src/hc08/ralloc.c,
779         * src/mcs51/ralloc.c,
780         * src/pic/ralloc.c,
781         * src/pic16/ralloc.c,
782         * src/xa51/ralloc.c,
783         * src/z80/ralloc.c: recompute the liveranges after register packing
784
785 2003-11-21 Klaus Flittner <klaus_flittner@gmx.de>
786
787         * src/SDCCloop.c (newInduction): fixed bug #845630
788
789 2003-11-21 Erik Petrich <epetrich@ivorytower.norman.ok.us>
790
791         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
792         inadvertantly left behind from my 2003-11-12 change
793
794 2003-11-20 Erik Petrich <epetrich@ivorytower.norman.ok.us>
795
796         Updated headers I neglected to commit yesterday.
797         * src/SDCClrange.h,
798         * src/SDCCicode.h
799
800 2003-11-19 Erik Petrich <epetrich@ivorytower.norman.ok.us>
801
802         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
803         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
804         * src/SDCCopt.c (eBBlockFromiCode),
805         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
806         the creation of the key hash table from the sequencing so it can be used
807         earlier (for some GCSE bug fixes still pending)
808
809 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann@web.de>
810
811         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
812         * support/regression/tests/addsub.c: testing genPlus shortcut
813
814 2003-11-15  Borut Razem <borut.razem@siol.net>
815
816         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
817
818 2003-11-15 Erik Petrich <epetrich@ivorytower.norman.ok.us>
819
820         * src/SDCCcse.c (cseBBlock): fixed bug #527779
821         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
822         ordering is immaterial.
823         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
824
825 2003-11-14 Erik Petrich <epetrich@ivorytower.norman.ok.us>
826         
827         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
828         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
829         (SIGSEV) of bug #840381
830         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
831         unlink new file before rename if new and old filenames are the same)
832
833 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann@web.de>
834
835         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
836         uninitialized variables) for the mcs51. Set environment variable 
837         SDCC_GENRAMCLEAR to test. 
838         xdata initialization slightly shorter
839
840 2003-11-12 Erik Petrich <epetrich@ivorytower.norman.ok.us>
841
842         * src/SDCCsymt.h,
843         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
844         #838241 & 780691 (basicly the same bug)
845         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
846         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
847
848 2003-11-11 Bernhard Held <bernhard@bernhardheld.de>
849
850         * src/SDCCmain.c (linkEdit): "fix" #834252
851
852 2003-11-11 Erik Petrich <epetrich@ivorytower.norman.ok.us>
853
854         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
855         * src/SDCCast.h,
856         * src/SDCC.y: fixed bug #819403
857
858 2003-11-08 Erik Petrich <epetrich@ivorytower.norman.ok.us>
859
860         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
861         the reentrant attribute.
862         * src/hc08/gen.c (genPackBits): added missing stack readjustment
863         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
864         simulation
865         * src/SDCCast.c (decorateType): fixed bug with storage class not being
866         updated during pointer dereference; f.e. ~(((char *)1)*) was being
867         erroneously reduced to a literal.
868         * src/hc08/ralloc.c (packRegisters, rematStr),
869         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
870         some cases
871
872 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann@web.de>
873
874         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
875         * doc/sdccman.lyx: changed from 'article' to 'book'
876         * doc/Makefile: readded test_suite_spec and cdbfileformat
877
878 2003-11-08 Bernhard Held <bernhard@bernhardheld.de>
879
880         * device/include/stdlib.h: include malloc.h to comply with ANSI
881         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
882
883 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann@web.de>
884
885         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
886         * doc/clean.mk: also remove *.out files
887         * doc/sdccman.lyx: some additions, larger top/bottom margins
888
889 2003-11-07 Erik Petrich <epetrich@ivorytower.norman.ok.us>
890
891         * src/SDCC.y: fixed bug #837365
892         * support/regression/tests/bitopcse.c
893         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
894         a symbol (might be valop instead)
895         * device/lib/Makefile.in: added errno.c to HC08SOURCES
896         * device/lib/clean.mk: added hc08 to the cleaning list
897
898 2003-11-04  Borut Razem <borut.razem@siol.net>
899
900         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
901           made 2003-11-04
902         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
903           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
904           malloc is declared in standard stdlib.h
905
906 2003-11-06 Erik Petrich <epetrich@ivorytower.norman.ok.us>
907
908         * device/lib/hc08/Makefile: need to clean .rel not .o files
909         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
910
911 2003-11-06 Erik Petrich <epetrich@ivorytower.norman.ok.us>
912
913         * src/port.h,
914         * src/hc08/main.c,
915         * src/mcs51/main.c,
916         * src/ds390/main.c,
917         * src/z80/main.c,
918         * src/avr/main.c,
919         * src/pic/main.c,
920         * src/pic16/main.c,
921         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
922         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
923         tests (which uses the port's oclsExpense function)
924         * src/SDCC.y,
925         * src/SDCCast.c,
926         * src/SDCCicode.c,
927         * src/hc08/gen.c,
928         * src/ds390/gen.c,
929         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
930
931 2003-11-04 Erik Petrich <epetrich@ivorytower.norman.ok.us>
932
933         * src/SDCCcse.c (ifxOptimize),
934         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
935         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
936         deleting the IFX iCode.
937         * src/hc08/ralloc.c: reduced unneeded slocs
938         * src/hc08/gen.c: fixed bug in asmopToBoolean
939
940 2003-11-04  Borut Razem <borut.razem@siol.net>
941
942         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
943           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
944           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
945           transferred to configure
946
947 2003-11-03 Bernhard Held <bernhard@bernhardheld.de>
948
949         Use headers defined in the C[++] standards:
950         * sim/ucsim/gui.src/serio.src/fileio.cc
951         * sim/ucsim/gui.src/serio.src/frontend.cc
952         * sim/ucsim/gui.src/serio.src/main.cc
953         * sim/ucsim/gui.src/serio.src/posix_signal.cc
954         * support/Util/NewAlloc.c
955         * as/hc08/lklibr.c
956         * as/mcs51/lklibr.c
957         * as/z80/aslist.c
958         * as/z80/assym.c
959
960 2003-11-03  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
961
962         * Added MSVC projects for hc08 assembler and linker:
963         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
964         /as/hc08/link_hc08.dsp
965
966 2003-11-03 Martin Helmling <Martin.Helmling@octo-soft.de>
967
968         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
969
970 2003-11-02 Bernhard Held <bernhard@bernhardheld.de>
971
972         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
973
974 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann@web.de>
975
976         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
977
978 2003-10-31  Borut Razem <borut.razem@siol.net>
979
980         * support/cpp2/cpplib.h,
981           support/cpp2/cpplib.c,
982           support/cpp2/cpplex.c,
983           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
984           to switch _asm block preprocessing on / off. Default is
985           #pragma preproc_asm +
986
987 2003-10-31  Borut Razem <borut.razem@siol.net>
988
989         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
990           when outputting comment blocks (when executed with -C option) and
991           _asm (SDCPP specific) blocks
992
993 2003-10-31 Erik Petrich <epetrich@ivorytower.norman.ok.us>
994         
995         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
996
997 2003-10-31 Klaus Flittner <klaus_flittner@gmx.de>
998
999         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
1000
1001 2003-10-31 Bernhard Held <bernhard@bernhardheld.de>
1002
1003         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
1004         * src/SDCCast.c (decorateType): fixed bug #832664
1005
1006 2003-10-31  Borut Razem <borut.razem@siol.net>
1007
1008         * support\cpp2\cpplex.c: fixed for SDCPP:
1009           comments(when executed with -C option) and _asm blocks
1010           were included even if they where in skipped #if block.
1011           Applied solution from GCC cpp 3.3.2
1012
1013 2003-10-31  Borut Razem <borut.razem@siol.net>
1014
1015         * src/SDCC.lex: sdcc now understands both formats:
1016           '# <line_number> <file_name>' and
1017           '#line <line_number> <file_name>'
1018         * support/cpp2/cppmain.c: sdcpp now generates the standard
1019           '# <line_number> <file_name>' instead of former
1020           '#line <line_number> <file_name>'
1021
1022 2003-10-30  Borut Razem <borut.razem@siol.net>
1023
1024         * support/cpp2/cpphash.h,
1025         * support/cpp2/cpplib.h
1026         * support/cpp2/cpplex.c,
1027         * support/cpp2/cppmain.c,
1028         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
1029
1030 2003-10-30 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1031
1032         Fixed a number of problems revealed by bug #827883.
1033         * src/SDCCloop.c (loopInvariants): Spill location of the
1034         result operand should be recomputed if extracted from
1035         a loop. Also, don't extract assignments of an iTemp
1036         from a literal.
1037         * src/SDCCast.c (isConformingBody): loop reversal should
1038         not occur if the control variable is involved with a
1039         relational operator.
1040
1041 2003-10-28 Bernhard Held <bernhard@bernhardheld.de>
1042
1043         * .version: bumped to 2.3.6 to reflect the big improvements
1044         made by Erik and Klaus. Thanks!
1045
1046 2003-10-28 Klaus Flittner <klaus_flittner@gmx.de>
1047
1048         Replaced the livrange code.
1049         * src/SDCClrange.c: added new LR code
1050         * src/SDCCloop.c,
1051         * src/SDCCBBlock.h: removed remainig parts from old LR code
1052         * src/ds390/ralloc.c,
1053         * src/ds390/gen.c: minor fixes to make it work with new code
1054
1055 2003-10-28 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1056
1057         * as/hc08/asm.h,
1058         * as/hc08/lkrloc.c,
1059         * src/hc08/gen.c,
1060         * src/hc08/ralloc.c: Fix various warnings related to the hc08
1061         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
1062         (tweaked fix for bug #818696)
1063
1064 2003-10-23 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1065
1066         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
1067
1068 2003-10-23 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1069
1070         * src/SDCCmain.c,
1071         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
1072         * src/mcs51/gen.c (gencjneshort),
1073         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
1074         more efficient (per Scott Bronson's suggestion)
1075
1076 2003-10-22 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1077
1078         Extended the semantics of the critical keyword to include
1079         individual statements. See RFE #827755 and #799831
1080         * src/SDCC.y
1081         * src/SDCCicode.c
1082         * src/SDCCopt.c
1083         * src/SDCCast.c
1084         * support/Util/SDCCerr.c
1085         * support/Util/SDCCerr.h
1086         * src/mcs51/gen.c
1087         * src/ds390/gen.c
1088         * src/hc08/gen.c
1089
1090 2003-10-19  Borut Razem <borut.razem@siol.net>
1091
1092         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
1093
1094 2003-10-19 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1095
1096         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
1097         Fixed bug #818696
1098         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
1099         and predecrement operand is displayed
1100
1101 2003-10-13 Bernhard Held <bernhard@bernhardheld.de>
1102
1103         * src/SDCCval.c (valMinus): fixed bug #826041
1104
1105 2003-10-15 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1106
1107         Some hc08 related updates that I missed earlier
1108         * sim/ucsim/stypes.h
1109         * support/regression/ports/hc08/spec.mk
1110
1111 2003-10-15 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1112
1113         New target "hc08" for the Motorola 68hc08 family of micros
1114
1115         * configure
1116         * configure.in
1117         * Makefile
1118         * src/hc08/*
1119         * src/SDCCmain.c
1120         * src/port.h
1121         * sim/ucsim/hc08.src/*
1122         * sim/ucsim/configure.in
1123         * src/ucsim/configure
1124         * sim/ucsim/packages_in.mk
1125         * as/hc08/*
1126         * as/Makefile
1127         * device/include/mc68hc908qy.h
1128         * device/lib/hc08/*
1129         * device/lib/Makefile.in
1130         * support/regression/ports/hc08/*
1131         * support/regression/Makefile
1132
1133 2003-10-14 Erik Petrich <epetrich@ivorytower.norman.ok.us>
1134
1135         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
1136         regression test
1137         * src/ds390/gen.c (genCast): fixed bug #821957
1138
1139 2003-10-13 Bernhard Held <bernhard@bernhardheld.de>
1140
1141         * device/lib/logf.c: "fixed" overlay bug
1142         * support/regression/ports/host/spec.mk: added m library
1143         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
1144         * support/regression/tests/float_trans: added (for Eric)
1145
1146 2003-10-12 Bernhard Held <bernhard@bernhardheld.de>
1147
1148         * src/mcs51/gen.c (genCpl): fixed bug
1149         http://sf.net/mailarchive/message.php?msg_id=6263915
1150
1151 2003-10-10 Bernhard Held <bernhard@bernhardheld.de>
1152
1153         * src/SDCCast.c (decorateType): added extended constant folding
1154         * src/SDCCsymt.c (computeType): cleanup
1155         * src/SDCCval.c (valShift): minor optimization
1156         * support/regression/tests/ast_constant_folding.c: added
1157
1158 2003-10-09  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1159
1160         * src/SDCCmain.c: removed some unintended changes
1161
1162 2003-10-09  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1163
1164         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
1165         * src/z80/gen.c: fixed part of bug #817589
1166         * src/SDCCsymt.c (checkFunction): fixed bug #817895
1167
1168 2003-10-08 Bernhard Held <bernhard@bernhardheld.de>
1169
1170         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
1171         * src/SDCCcflow.c
1172         * src/SDCCcse.c
1173         * src/SDCCdflow.c
1174         * src/SDCClabel.c
1175         * src/SDCClrange.c
1176         * src/SDCCmem.c
1177         * src/SDCCopt.c
1178         * src/SDCCpeeph.c
1179         * src/SDCCset.c
1180         * src/avr/ralloc.c
1181         * src/ds390/ralloc.c
1182         * src/izt/ralloc.c
1183         * src/mcs51/ralloc.c
1184         * src/pic/ralloc.c
1185         * src/pic16/ralloc.c
1186         * src/xa51/ralloc.c
1187         * src/z80/ralloc.c
1188         * src/z80/gen.c: removed unused label "release:"
1189
1190 2003-10-06  Borut Razem <borut.razem@siol.net>
1191
1192         * src/SDCC.lex: removed definition of unused variables
1193           save_optimize and save_options
1194
1195 2003-10-06 Bernhard Held <bernhard@bernhardheld.de>
1196
1197         * clean.mk: removed '=' in "-maxdepth=1"
1198         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
1199         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
1200
1201 2003-10-06  Borut Razem <borut.razem@siol.net>
1202
1203         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
1204           my_unput() replaced by unput()
1205
1206 2003-10-05 Bernhard Held <bernhard@bernhardheld.de>
1207
1208         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
1209         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
1210         type-punned pointer will break strict-aliasing rules"
1211         Old LR behaviour is again default; Klaus' LR can be choosen by
1212         defining the environment variable LRKLAUS
1213         * src/SDCCBBlock.h
1214         * src/SDCCloop.c
1215         * src/SDCClrange.c
1216         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
1217         * clean.mk: fixed removal of files in bin/CVS/
1218         * device/lib/clean.mk: fixed removal of directories small and large
1219         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
1220         * src/SDCCicode.c,
1221         * src/SDCCval.c: removed superflous test for pedantic
1222
1223 2003-10-05  Borut Razem <borut.razem@siol.net>
1224
1225         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
1226           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
1227           message "unmatched #pragma SAVE and #pragma RESTORE"
1228
1229 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1230
1231         * doc/sdccman.lyx: various additions and updates (interrupts, inline
1232           assembly, critical functions, atomic, nojtbound)
1233
1234 2003-10-04 Bernhard Held <bernhard@bernhardheld.de>
1235
1236         Applied liferange patch from Klaus Flittner <klaus_flittner@gmx.de>
1237         * src/SDCCBBlock.h
1238         * src/SDCCloop.c
1239         * src/SDCCloop.h
1240         * src/SDCClrange.c
1241
1242 2003-10-03  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1243
1244         * src/z80/gen.h,
1245         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
1246         * src/mcs51/gen.h
1247         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
1248         * src/ds390/gen.h
1249         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
1250         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
1251         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
1252
1253 2003-10-02  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1254
1255         * src/z80/gen.c (genRet): fixed bug #524753
1256         * src/z80/gen.c (genCast): fixed internal error on cast from
1257         pointer to long
1258         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
1259         fix for bug #477835 to the z80
1260         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
1261         for tracking iCodes in the peephole optimizer for z80
1262
1263 2003-10-01  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1264
1265         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
1266         the other part of bug #814548
1267         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
1268
1269 2003-09-30  Bernhard Held <bernhard@bernhardheld.de>
1270
1271         * src/SDCCcse.c: fixed part of bug #814548
1272
1273 2003-09-28  Borut Razem <borut.razem@siol.net>
1274
1275         * src/asm.c: rewrite of printILine() to use temporary file instead
1276           a pipe
1277         * src/xa51/main.c: commented out declaration of int rewinds
1278
1279 2003-09-27  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1280
1281         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
1282
1283 2003-09-26  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1284
1285         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
1286         * src/asm.c (printILine): Fixed bug #811015
1287
1288 2003-09-22  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1289
1290         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
1291         freeing.
1292
1293 2003-09-21  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1294
1295         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
1296         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
1297         to correctly handle general case of AOP_PAIRPTR
1298         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
1299
1300 2003-09-21  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1301
1302         * src/mcs51/ralloc.c (fillGaps),
1303         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
1304         register positioning bug)
1305
1306 2003-09-21  Bernhard Held <bernhard@bernhardheld.de>
1307
1308         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
1309
1310 2003-09-19  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1311
1312         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
1313         genCodePointerGet, genGenPointerGet, genFarPointerSet,
1314         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
1315         (ralloc doesn't intentionally do this now, but perhaps later)
1316         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
1317         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
1318         register positioning bugs (Fixed bug #762602 and #795325)
1319         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
1320         (Fixed bug #808779)
1321         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
1322         lines that --i-code-in-asm generates
1323
1324 2003-09-18  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1325
1326         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
1327         trying to fclose a FILE* that was already closed.
1328
1329 2003-09-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1330
1331         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
1332         of const struct should be treated as if const themselves)
1333
1334 2003-09-18  Bernhard Held <bernhard@bernhardheld.de>
1335
1336         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
1337
1338 2003-07-06  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1339
1340         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
1341         Unix (/n) and DOS (/r/n) line terminations.
1342
1343 2003-09-17  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1344
1345         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
1346         bug #613775
1347
1348 2003-09-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1349
1350         * src/mcs51/gen.c (genFunction, genEndFunction),
1351         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
1352         and restore of EA so that stack offsets to parameters are
1353         correct when using both critical and reentrant/stack-auto.
1354         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
1355         size (can be triggered in error if sloc is shared between
1356         different sized objects)
1357         * device/include/float.h: fixed macros to explicitly use
1358         unsigned long where needed
1359
1360 2003-09-15  Bernhard Held <bernhard@bernhardheld.de>
1361
1362         Feature req. 799831: added code to allow nesting of critical functions
1363         * src/mcs51/gen.c (genFunction, genEndFunction)
1364         * src/ds390/gen.c (genFunction, genEndFunction)
1365
1366 2003-09-14  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1367
1368         * src/SDCCsymt.c (sclsFromPtr),
1369         * src/SDCCsymt.h,
1370         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
1371         support for standard C idiom of memory mapped variables; for
1372         example, *((xdata int*)0x1234) = 1 is now internally equivalent
1373         to xdata int at 0x1234 tempvar = 1.
1374         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
1375         provided by Akiya ISHIDA
1376
1377 2003-09-13  Bernhard Held <bernhard@bernhardheld.de>
1378
1379         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
1380         * src/SDCCval.c (constVal): added reduction from int to char
1381         * src/SDCCval.c (valMult, valDiv): fixed sign handling
1382         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
1383         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
1384         to ignore the sign
1385         * support/regression/tests/shifts.c: fixed
1386
1387 2003-09-13  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1388
1389         * src/z80/gen.c (genXor): Fixed bug #805445
1390
1391 2003-09-12  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1392
1393         Fixed bug #621531 (const & volatile confusion in the type chain).
1394         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
1395         refer to the const or volatile state of the pointer itself.
1396
1397         * src/SDCCast.c
1398         * src/SDCCglue.c
1399         * src/SDCCicode.c
1400         * src/SDCCsymt.c
1401         * src/SDCCval.c
1402         * src/SDCC.y
1403         * src/SDCCsymt.h
1404         * src/pic/gen.c
1405         * src/pic/ralloc.c
1406         * src/pic16/gen.c
1407         * src/pic16/ralloc.c
1408         * support/regression/tests/const.c
1409
1410 2003-09-10  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1411
1412         When checking for duplicated modules, use absolute paths
1413         instead of relative paths.  Files changed:
1414
1415         * as/mcs51/lklib.c
1416         * link/z80/lklib.c
1417
1418 2003-09-09  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1419
1420         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
1421
1422 2003-09-07  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1423
1424         * device/include/string.h: added size_t typedef, changed
1425         prototypes to use size_t, eliminated separate reentrant and
1426         non-reentrant declarations, added _memmove declaration
1427         * device/lib/_memcpy.c: changed to use size_t instead of int,
1428         changed /4 to >>2 to avoid division library call
1429         * device/lib/_memcmp.c,
1430         * device/lib/_memset.c,
1431         * device/lib/_strncat.c,
1432         * device/lib/_strncpy.c,
1433         * device/lib/_strncmp.c: changed to use size_t instead of int
1434         * device/lib/_memmove.c: new file (fixed bug #772294)
1435         * device/lib/Makefile.in: added _memmove.c
1436         * device/lib/z80/asm_strings.s: fixed bug #772290
1437         * support/regression/tests/bitfields.c: attempt to fix host assertion
1438         failure on amd64-unknown-linux2.2
1439
1440 2003-09-06  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1441
1442         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
1443         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
1444         * as/z80/asmain.c (main): fixed bug #801766
1445
1446 2003-09-06  Bernhard Held <bernhard@bernhardheld.de>
1447
1448         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
1449         compilers
1450
1451 2003-09-05  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1452
1453         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
1454         reported in bug #800609
1455
1456 2003-09-04  Vangelis Rokas <vrokas@otenet.gr>
1457
1458         * Top header beautifications in src/pic16 directory:
1459           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
1460           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
1461           pcoderegs.h, ralloc.c, ralloc.h
1462         * main.c: added top header and GPL license notice
1463         * pcode.c: fixed the if-conditional warning
1464  
1465 2003-09-04  Bernhard Held <bernhard@bernhardheld.de>
1466
1467         * device/lib/_mullong.c: replaced int by short for gcc
1468
1469 2003-08-31  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1470
1471         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
1472         and JUMPTABLE iCodes properly now (worked by accident before)
1473         * src/mcs51/gen.c (leftRightUseAcc),
1474         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
1475         iCode properly now. Use getSize instead of nRegs since a & b
1476         aren't part of the nRegs tally.
1477
1478 2003-08-31  Vangelis Rokas <vrokas@otenet.gr>
1479
1480         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
1481         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
1482           before instructions that use the _STATUS register
1483
1484 2003-08-31  Bernhard Held <bernhard@bernhardheld.de>
1485
1486         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
1487         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
1488         fetching of the pointer
1489         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
1490         copied from genNearPointerSet()
1491         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
1492         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
1493         If they pop r0/r1 they must be called in the opposite order than aopOp().
1494         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
1495         (resp. --stack-auto), prepared for --xstack
1496
1497 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1498
1499         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
1500
1501 2003-08-28  Bernhard Held <bernhard@bernhardheld.de>
1502
1503         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
1504         these ports have their own __sdcc_external_start()
1505
1506 2003-08-26  Bernhard Held <bernhard@bernhardheld.de>
1507
1508         pic patch provided by Slade Rich <slade_rich@yahoo.com>
1509         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
1510         type for bits was changed. It resulted in bit variables becoming
1511         global, which is not permitted in PIC 14 assembly output.
1512
1513 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1514
1515         * doc/sdccman.lyx: various additions and updates. Rearranged sections
1516
1517 2003-08-22  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1518
1519         Z80 and MCS51 linkers complaint if a public symbol is defined
1520         in more than one library module:
1521
1522         * as/mcs51/lklib.c
1523         * link/z80/lklib.c
1524         * as/mcs51/Makefile.in
1525
1526 2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1527
1528         A few small changes that speed up the peephole optimizer.
1529
1530         * src/SDCCpeeph.c
1531
1532 2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1533
1534         Try to make the peephole optimizer smarter by maintaining
1535         an association between the assembly source code and the
1536         iCodes that originated them. Put this information to use
1537         with a new peephole rule condition "notVolatile" so that
1538         the rules can be aggressive yet still safe.
1539
1540         * src/SDCCpeeph.c
1541         * src/SDCCpeeph.h
1542         * src/mcs51/gen.c
1543         * src/mcs51/peeph.def
1544
1545 2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1546
1547         Fixed bug #741761
1548
1549         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
1550         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
1551         if the left or right operand symbols have the accuse flag set.
1552
1553 2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1554
1555         Changed the type of the result of the ! (NOT) operator to char;
1556         previously it returned the same type as the source. This allows
1557         us to eliminate all the genFloatNot functions (all of its target
1558         implementations were very buggy) since !float can use the same
1559         code as !long now.
1560
1561         * src/SDCCicode.c (ast2iCode): ! returns char
1562         * src/mcs51/gen.c (genNot, genNotFloat),
1563         * src/ds390/gen.c (genNot, genNotFloat),
1564         * src/z80/gen.c (genNot, genNotFloat),
1565         * src/pic/gen.c (genNot, genNotFloat),
1566         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
1567
1568 2003-08-19  Bernhard Held <bernhard@bernhardheld.de>
1569
1570         pic patch provided by Slade Rich <slade_rich@yahoo.com>
1571         1. Interrupt would not compile properly. Ensure PCLATH register is saved
1572            during interrupts. Ensure WSAVE is located at a shared bank address.
1573         2. Fixed page selection in some places
1574         3. Fixed BTFSS/C to where necessary use registers directly and not simply
1575            the registers name strings.
1576         4. Fixed "signed / unsigned compare" compiler warnings.
1577         5. The PIC port manages its own allocation of the general purpose
1578            registers, but makes no attempt to reuse them. As a result when
1579            compiling it soon runs out of general purpose registers. Some
1580            additional code was added to the files pcode.c and device.c to walk
1581            through the function call tree and rename the registers so that they
1582            get reused.
1583
1584         * src/pic/device.c
1585         * src/pic/gen.c
1586         * src/pic/glue.c
1587         * src/pic/pcode.c
1588         * src/pic/pcode.h
1589         * src/pic/ralloc.c
1590         * src/pic/ralloc.h
1591         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
1592         genPlus() & genMinus() when the result is the same as left or right
1593
1594 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1595
1596         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
1597
1598 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1599
1600         Made bitfield a distinct type from bit so that bitfields
1601         convert as per ANSI C and bits retain their traditional
1602         boolean style behaviour. Implemented bitfield support in
1603         the z80 port.
1604
1605         * src/SDCCsymt.h,
1606         * src/SDCCsymt.c,
1607         * src/SDCCast.c,
1608         * src/cdbFile.c,
1609         * src/mcs51/gen.c,
1610         * src/ds390/gen.c: bit v bitfield split
1611         * src/z80/gen.c: New support for bitfields
1612         * support/regression/tests/bitfields.c: reenabled z80,
1613         added more tests
1614
1615 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1616
1617         Rules 246.x, 247.x relate to bitfields, the others speed up
1618         access to xdata mapped I/O devices.
1619
1620         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
1621
1622 2003-08-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1623
1624         Cleaned up genPackBits and genUnpackBits and added two helper
1625         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
1626         for literal assignments in genPackBits (thanks to Frieder for
1627         reminding me).
1628
1629         * src/mcs51/gen.c
1630         * src/ds390/gen.c
1631
1632 2003-08-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1633
1634         Fixed bug #748310 (pointer to function type mishandled when the
1635         function name is omitted). Also fixed a SIGSEGV when a function
1636         attribute (reentrant, etc) is used on a non-function or on a
1637         function but misplaced before the parameter list.
1638
1639         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
1640         bug #748310
1641         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
1642         * support/Util/SDCCerr.h,
1643         * support/Util/SDCCerr.c: Added func attr misuse error msg
1644
1645 2003-08-13  Bernhard Held <bernhard@bernhardheld.de>
1646
1647         Fixed bug #787649 by anonymous
1648         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
1649         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
1650
1651 2003-08-14  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1652
1653         Fixed numerous bitfield problems.
1654
1655         * src/SDCC.y: More bitfield related error checking
1656         * src/SDCCsymt.h,
1657         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
1658         * support/Util/SDCCerr.h,
1659         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
1660         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
1661         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
1662         * support/regression/tests/bitfields.c: tests added
1663
1664 2003-08-13  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1665
1666         Made the constant following the "interrupt" keyword optional. If
1667         omitted, the function will not automatically be given an entry
1668         in the interrupt vector table (similar to #pragma NOIV, but
1669         less syntacticly kludgy). The interrupt number is also now
1670         range checked. Also fixed a bug in the high order bit example
1671         in the manual.
1672
1673         * src/SDCC.y
1674         * src/SDCCmem.c
1675         * src/SDCCglue.c
1676         * src/SDCCsymt.h
1677         * support/Util/SDCCerr.c
1678         * support/Util/SDCCerr.h
1679         * doc/sdccman.lyx
1680
1681 2003-08-13  Bernhard Held <bernhard@bernhardheld.de>
1682
1683         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
1684         * src/SDCCicode.c (operandOperation): rewritten some ops
1685         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
1686         * src/SDCCsymt.c (computeType): literals are handled the same way as any
1687         other type
1688         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
1689         be re-activated by defining REDUCE_LITERALS)
1690         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
1691         unsigned, but are signed by default
1692         * src/SDCCval.c (constVal): rearranged
1693         * src/SDCCval.c (valMod): preliminary fix
1694         * src/SDCCval.c (valCastLiteral): use TYPE_* types
1695         * support/regression/literalop.c: added, work in progress
1696
1697 2003-08-12  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1698
1699         Generate warnings for useless declarations like "char data;"
1700         that don't do what new users expect.
1701
1702         * src/SDCC.y
1703         * support/Util/SDCCerr.h
1704         * support/Util/SDCCerr.c
1705
1706 2003-08-09  Bernhard Held <bernhard@bernhardheld.de>
1707
1708         * src/SDCCval.c (valMult): fix overflow detection of negative int
1709
1710 2003-08-07  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1711
1712         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
1713
1714         Changes to support big endian targets:
1715
1716         * src/ports.h
1717         * src/SDCCglue.c
1718         * src/avr/main.c
1719         * src/ds390/main.c
1720         * src/izt/i186.c
1721         * src/mcs51/main.c
1722         * src/pic/main.c
1723         * src/pic16/main.c
1724         * src/xa51/main.c
1725         * src/z80/main.c
1726
1727 2003-08-06  Bernhard Held <bernhard@bernhardheld.de>
1728
1729         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
1730         * device/lib/time.c: fixed warning "integer overflow in expression"
1731
1732 2003-08-05  Bernhard Held <bernhard@bernhardheld.de>
1733
1734         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
1735         * src/SDCCval.c (constVal): changed default to signed; hex and octal
1736         constants are unsigned; added recognition of "u" flag for unsigned
1737         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
1738         * src/SDCCval.c (valDiv, valMod): fixed signdness
1739         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
1740         signedness of modulo, left and right shift
1741         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
1742         * support/Util/SDCCerr.h: added warning W_INT_OVL
1743         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
1744         * src/SDCCast.c (ast_print): improved output of constants
1745
1746 2003-08-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1747
1748         Fixed some warnings when building with MSVC:
1749
1750         * as\mcs51\asdata.c
1751         * as\z80\asdata.c
1752         * as\mcs51\asm.h
1753         * as\z80\asm.h
1754         * link\z80\aslink.h
1755         * link\z80\lkdata.c
1756         * link\z80\lkeval.c
1757         * link\z80\lkgb.c
1758         * link\z80\lkihx.c
1759         * link\z80\lks19.c
1760         * link\z80\lksym.c
1761         * support\cpp2\cpplib.c
1762         * src\ds390\gen.c
1763         * src\mcs51\gen.c
1764     
1765 2003-08-03  Bernhard Held <bernhard@bernhardheld.de>
1766
1767         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth@isi.edu>
1768
1769 2003-08-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1770
1771         * support\librarian\clean.mk: Do not remove Makefile.
1772         * support\librarian\Makefile: added.
1773
1774 2003-08-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1775
1776         Added librarian to MSVC build:
1777         * all.dsp
1778         * sdcc.dsw
1779         * support\librarian\librarian.dsp
1780
1781         'configure' not needed for librarian, removed:
1782         * support\librarian\configure
1783         * support\librarian\configure.in
1784         * support\librarian\config_in.h
1785         * support\librarian\Makefile.in
1786
1787         Hopefully these ones built the librarian and the rest of sdcc properly:
1788         * Makefile
1789         * Makefile.common.in
1790
1791         Messed up 'configure', so revert to previous version:
1792         * configure
1793         * configure.in
1794
1795 2003-07-31  Bernhard Held <bernhard@bernhardheld.de>
1796
1797         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
1798         there, while the mantissa of a double is "only" 53 bits wide.
1799
1800 2003-07-31  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1801
1802         Adding sdcclib to the build.  MSVC project coming soon.
1803         Files added/changed:
1804
1805         * support\librarian\clean.mk
1806         * support\librarian\configure
1807         * support\librarian\configure.in
1808         * support\librarian\config_in.h
1809         * support\librarian\Makefile.bcc
1810         * support\librarian\Makefile.in
1811         * support\librarian\sdcclib.c
1812         * Makefile.bcc
1813         * Makefile
1814         * Makefile.common.in
1815         * configure
1816         * configure.in
1817
1818 2003-07-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1819
1820         Linker now complaints if linked modules have conflicting options, for
1821         example, one compiled using --model-large and another one compiled with
1822         --model-small.  The following files were modified:
1823
1824         * as\mcs51\asdata.c
1825         * as\mcs51\aslink.h
1826         * as\mcs51\asm.h
1827         * as\mcs51\asmain.c
1828         * as\mcs51\asout.c
1829         * as\mcs51\i51pst.c
1830         * as\mcs51\lkdata.c
1831         * as\mcs51\lklibr.c
1832         * as\mcs51\lkmain.c
1833         * as\z80\asdata.c
1834         * as\z80\asm.h
1835         * as\z80\asmain.c
1836         * as\z80\asout.c
1837         * as\z80\z80pst.c
1838         * link\z80\aslink.h
1839         * link\z80\lkdata.c
1840         * link\z80\lklibr.c
1841         * link\z80\lkmain.c
1842         * src\SDCCglue.c
1843
1844 2003-07-28  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1845
1846         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
1847         as/mcs51/lklibr.c: Generate a warning when a library is not found.
1848
1849 2003-07-28  Bernhard Held <bernhard@bernhardheld.de>
1850
1851         * src/z80/mappings.i: fix _mul[us][int,long] entries
1852
1853 2003-07-26  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1854
1855         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
1856
1857 2003-07-24  Bernhard Held <bernhard@bernhardheld.de>
1858
1859         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
1860         * support/regression/tests/bitopcse.c: added
1861         fixed warning:
1862         * src/avr/gen.c:
1863         * src/pic/gen.c:
1864         * src/pic16/gen.c:
1865         * src/z80/gen.c:
1866         * src/xa51/gen.c:
1867
1868 2003-07-24  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1869
1870         added support for new library format to z80, gbz80 linkers:
1871         *link/z80/aslink.h
1872         *link/z80/lklex.c
1873         *link/z80/lklib.c
1874         *link/z80/lklist.c
1875
1876 2003-07-24  Bernhard Held <bernhard@bernhardheld.de>
1877
1878         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
1879         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
1880
1881 2003-07-23  Bernhard Held <bernhard@bernhardheld.de>
1882
1883         added DUMMY_READ_VOLATILE:
1884         * src/SDCC.y:
1885         * src/avr/gen.c:
1886         * src/xa51/gen.c:
1887         * src/z80/gen.c:
1888         * src/pic/gen.c:
1889         * src/pic16/gen.c:
1890         * src/mcs51/gen.c:
1891         * src/ds390/gen.c:
1892         * src/SDCCcse.c (algebraicOpts): many improvements
1893         * src/SDCCcse.h: removed algebraicOpts()
1894         * src/SDCCicode.c (picDummyRead): added
1895
1896 2003-07-23  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1897
1898         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
1899         "Insufficient space in data memory".
1900
1901 2003-07-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1902
1903         * src/mcs51/gen.c: fixed bug #771358
1904         * src/z80/gen.c: fixed bug #759087
1905
1906 2003-07-20  Bernhard Held <bernhard@bernhardheld.de>
1907
1908         * src/pic16/glue.c: minor cleanup by Vangelis
1909
1910 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1911
1912         * device/include/regc515c.h: fixed #758477
1913         * device/lib/_gptrget.c: saving some cycles in generic pointer get
1914         * device/lib/_gptrput.c: saved a few bytes
1915         * my tab spacing is 8, yours too?)
1916         * device/lib/_ser.c: process RX bytes earlier than TX bytes
1917         * device/lib/serial.c: process RX bytes earlier than TX bytes
1918         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
1919
1920 2003-07-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
1921
1922         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
1923
1924 2003-07-17  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1925
1926     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
1927
1928 2003-07-17  Bernhard Held <bernhard@bernhardheld.de>
1929
1930         * device/lib/Makefile.in: bad fix, reverted to 1.43
1931
1932 2003-07-16  Bernhard Held <bernhard@bernhardheld.de>
1933
1934         * device/lib/Makefile.in: added missing z80 object files
1935
1936 2003-07-14  Bernhard Held <bernhard@bernhardheld.de>
1937
1938         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
1939         pic16 progress by Vangelis:
1940         * src/SDCCglobl.h:
1941         * src/SDCCmain.c:
1942         * src/pic/Makefile:
1943         * src/pic:
1944         * pic/Makefile:
1945         * pic16/device.c:
1946         * pic16/device.h:
1947         * pic16/gen.c:
1948         * pic16/gen.h:
1949         * pic16/genarith.c:
1950         * pic16/glue.c:
1951         * pic16/main.c:
1952         * pic16/pcode.c:
1953         * pic16/pcode.h:
1954         * pic16/pcodepeep.c:
1955         * pic16/peeph.def:
1956
1957 2003-07-13  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1958
1959     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
1960
1961 2003-07-12  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1962
1963     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
1964     added gbz80 build to MSVC project.
1965     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
1966     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
1967     from 8051 stuff and setup so it links using a .lnk file.
1968
1969 2003-07-06  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1970
1971     * support/librarian/sdcclib.c: sdcc librarian.
1972     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
1973     with sdcclib.
1974
1975 2003-07-03  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1976
1977     * as/mcs51/lkmain.c: properly handle extensions in function afile.
1978
1979 2003-07-02  Borut Razem <borut.razem@siol.net>
1980
1981         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
1982         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
1983         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
1984         src/xa51/main.c, src/z80/main.c:
1985         virtualization of glue() function: each port has it's own glue function,
1986         which is accessed by do_glue function pointer in PORT.general structure
1987
1988 2003-07-01 Kevin Vigor <kevin@vigor.nu>
1989
1990         * DS800C400 fun, improved ROM interface and tinibios.
1991
1992 2003-06-27 Kevin Vigor <kevin@vigor.nu>
1993
1994         * More support for DS80C400. Now includes beginning of interface to ROM.
1995
1996 2003-06-25  Bernhard Held <bernhard@bernhardheld.de>
1997
1998         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
1999
2000 2003-06-20  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2001
2002         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
2003
2004 2003-06-19  Borut Razem <borut.razem@siol.net>
2005
2006         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
2007
2008 2003-06-19  Borut Razem <borut.razem@siol.net>
2009
2010         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
2011         fixed Z80 port - crt0.o: cannot open.
2012
2013 2003-06-19  Bernhard Held <bernhard@bernhardheld.de>
2014
2015         * support/Util/MySystem.c (merge_command): revert bad fix
2016
2017 2003-06-18  Borut Razem <borut.razem@siol.net>
2018
2019         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
2020
2021 2003-06-18  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2022
2023         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
2024         option --use-stdout sends errors to stdout instead of stderr.
2025
2026 2003-06-18  Bernhard Held <bernhard@bernhardheld.de>
2027
2028         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
2029
2030 2003-06-15  Borut Razem <borut.razem@siol.net>
2031
2032         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
2033         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
2034         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
2035         fixed width array of pointers replaced with sets;
2036         multiple include and lib paths ared transferred to preprocessor and linker
2037         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
2038         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
2039         fixed width array of pointers
2040         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
2041         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
2042         fixupPath(), getPathDifference()
2043         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
2044         fixed width array of pointers
2045
2046 2003-06-11  Bernhard Held <bernhard@bernhardheld.de>
2047
2048         * src/pic16/ralloc.c: fix warnings
2049         * src/pic16/pcode.c: fix warning
2050
2051 2003-06-10  Scott Dattalo  <scott@dattalo.com>
2052
2053          Scott D. for Vangelis Rokas (vrokas@otenet.gr). I (scott) don't
2054         know all the details, but essentially this set of changes enable
2055         the pic16 port to generate movff instructions and generate assembler
2056         directives,
2057         * src/SDCCmain.c:
2058         * src/pic16/gen.c:
2059         * src/pic16/glue.c:
2060         * src/pic16/pcode.c:
2061         * src/pic16/device.c:
2062         * src/pic16/main.c:
2063         * src/pic16/pcode.h:
2064         * src/pic16/pcoderegs.c:
2065         * src/pic16/ralloc.c:
2066         * src/pic16/ralloc.h:
2067
2068 2003-06-08  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2069
2070         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
2071         added option --vc, so sdcc errors and warnings are compatible with
2072         Microsoft Visual Studio.
2073
2074 2003-06-07  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2075
2076         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
2077           device/lib/libfloat.lib: added atof function.
2078
2079 2003-06-04  Bernhard Held <bernhard@bernhardheld.de>
2080
2081         * doc/sdccman.lyx: updated to Lyx 1.3
2082         * doc/cdbfileformat.lyx: updated to Lyx 1.3
2083         * doc/test_suite_spec.lyx: updated to Lyx 1.3
2084         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
2085
2086 2003-06-03  Bernhard Held <bernhard@bernhardheld.de>
2087
2088         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas@otenet.gr>
2089
2090 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2091
2092         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
2093           additions to the "related tools/documentation" section
2094
2095 2003-06-02  Bernhard Held <bernhard@bernhardheld.de>
2096
2097         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
2098
2099 2003-05-29  Bernhard Held <bernhard@bernhardheld.de>
2100
2101         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn@vt.edu>
2102         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
2103
2104 2003-05-28  Bernhard Held <bernhard@bernhardheld.de>
2105
2106         * doc/sdccman.lyx: fix double dash and other minor things
2107         * doc/Makefile: fix double dash
2108
2109 2003-05-28  Karl Bongers(patches from Martin Helmling)
2110         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
2111           condition and ignore commands.
2112
2113 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2114
2115         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
2116           is in parts still quite out of date, I did changes as far as I felt makes sense
2117           for a non-native english speaker.
2118           Please feel free to add to the manual or to correct my changes.
2119         * doc/Makefile: undid touching the date of intermediate tex files.
2120
2121 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2122
2123         * doc/sdccman.lyx: Manual has an index now
2124
2125 2003-05-25  Bernhard Held <bernhard@bernhardheld.de>
2126
2127         Finalize muluint/mulsint and mululong/mulslong merging:
2128         * device/lib/_mulint.c
2129         * device/lib/_mullong.c
2130         * device/lib/gbz80/mul.s
2131         * device/lib/gbz80/stubs.s
2132         * device/lib/z80/mul.s
2133         * device/lib/z80/stubs.s
2134         * src/SDCCsymt.c (initCSupport)
2135
2136 2003-05-25  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2137
2138         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
2139         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
2140           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
2141           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
2142           instead of /Zm500.
2143
2144 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2145
2146         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
2147           the regression tests I'm not brave enough to enable 245.b, 245.c
2148         * doc/sdccman.lyx: added latex preamble for hyperref package.
2149           Using pdflatex this will give you a hyperlinked pdf file with
2150           bookmarks. (prepend '%' before /usepackage if this breaks something)
2151
2152 2003-05-24  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2153
2154          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
2155          
2156 2003-05-22  Bernhard Held <bernhard@bernhardheld.de>
2157
2158         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
2159
2160 2003-05-21    <johan@balder>
2161
2162         * src/SDCCglue.c (printIval): fixed bug #739934
2163
2164 2003-05-19  Bernhard Held <bernhard@bernhardheld.de>
2165
2166         Applied patch from bug 737905 (renamed yylineo to mylineno):
2167         * src/altlex.c
2168         * src/SDCCast.c
2169         * src/SDCglobl.h
2170         * src/SDCC.lex
2171         * src/SDCCsymt.c
2172         * src/SDCCval.c 
2173         * src/pic16/pcode.c: Cleaned warnings
2174         * src/pic16/pcodeflow.c: Cleaned warnings
2175         * src/pic16/pcoderegs.c: Cleaned warnings
2176
2177 2003-05-19  Scott Dattalo  <scott@dattalo.com>
2178
2179         * src/pic16/pcode.c: Cleaned warnings
2180         * src/pic16/pcodepeep.c: Cleaned warnings
2181         * src/pic16/ralloc.c: Cleaned warnings
2182
2183 2003-05-19  Bernhard Held <bernhard@bernhardheld.de>
2184
2185         * doc/sdccman.lyx: fixed bug 739745
2186         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
2187
2188 2003-05-18  Bernhard Held <bernhard@bernhardheld.de>
2189
2190         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
2191         it can be defined with CFLAGS when running configure
2192         * src/SDCCmain.c: fixed compiling + linking with object files
2193
2194 2003-05-18  Vangelis Rokas (vrokas@otenet.gr)
2195
2196         * configure.in: configure for pic16 port,
2197             added --disable-pic16-port
2198         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
2199         * src/SDCCmain.c: linkOptions is changed to set *,
2200             added if/endif conditional macros to remove options help
2201             messages from optionsTable when a port is not configured, added
2202             support for the PIc16 port in the ports table, when executing
2203             the compiler with no port specified on command line, a default
2204             port is selected with the new macro DEFAULT_PORT which is
2205             defined in port.h, in setDefaultOptions() linkOptions is removed
2206             from initialization assignment, since now it is a set,
2207             parseCmdLine uses setParseWithComma for linkOptions, in
2208             linkEdit() linkOptions are accessed with new function indexSet()
2209             which returns the i'th item of a set variable. See SDCCset.c, in
2210             linkEdit() when calling buildCmdLine(), added linkOptions as
2211             last argument. Now users can pass arguments to gplink via the
2212             -Wl option, main() uses pic16glue() to glue up pic16 programs
2213         * src/SDCCpeeph.c: various changes to support pic16
2214         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
2215             return the i'th item of the set
2216         * src/SDCCset.h: added function prototype for indexSet()
2217         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
2218         * src/clean.mk: added pic16 in CLEANALLPORTS variable
2219         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
2220             added macro DEFAULT_PORT
2221         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
2222         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
2223             generated
2224         * src/pic16/glue.c: commented out some error producing lines
2225         * src/pic16/main.c: __config directives are commented out to stop
2226             gpasm complaining and test the linkage with gplink, _linkCmd and
2227             _asmCmd changed to be more gplink and gpasm friendly
2228         * src/pic16/peeph.def: peep rule 3 is commented out, since it
2229             produced an error when parsed, peep rule 12 is added to utilize
2230             movff, but it is commented out since the pCode does not support
2231             yet a command with 2 address arguments
2232
2233 2003-05-18    <johan@balder>
2234
2235         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
2236         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
2237 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
2238
2239         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
2240   Added feature to script commands from file.
2241
2242 2003-05-14  Bernhard Held <bernhard@bernhardheld.de>
2243
2244         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
2245         * src/SDCCutil.c: include ctype.h for win32
2246
2247 2003-05-13  Bernhard Held <bernhard@bernhardheld.de>
2248
2249         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
2250
2251 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
2252
2253         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
2254   Fixed so you can set breakpoints prior to run, run does not stop
2255   on entry now.  Add tbreak.  Other enhancements and fixes for use
2256   with ddd.
2257
2258 2003-05-12  Borut Razem <borut.razem@siol.net>
2259
2260         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
2261
2262 2003-05-11  Borut Razem <borut.razem@siol.net>
2263
2264         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
2265         the path of bin directory, so that PATH is the only env. variable, which has to be set
2266         in case of standard installation.
2267         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
2268         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
2269         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
2270
2271 2003-05-04  Bernhard Held <bernhard@bernhardheld.de>
2272
2273         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
2274         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
2275         temp files are in the port dir; clean the gen/test directory when
2276         generating new test.c
2277         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
2278         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
2279         * support/regression/tests/zeropad.c: added
2280
2281 2003-05-09    <johan@balder>
2282
2283         * src/SDCCglue.c: fixed bug #597940
2284
2285 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
2286
2287         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
2288   cache sfr, optimize next,step, fix off by one sourceline,
2289   support ddd list function.
2290         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
2291
2292 2003-05-04  Bernhard Held <bernhard@bernhardheld.de>
2293
2294         * support/regression/HTMLgen.py: added compare_s2f()
2295         * support/regression/Makefile: redo 1.27
2296         * support/regression/generate-cases.py: redo 1.5
2297
2298 2003-04-30  Bernhard Held <bernhard@bernhardheld.de>
2299
2300         * support/regression/tests/float.c: workaround 33 bit hex constant
2301         * support/regression/tests/simplefloat.c: fix division for host
2302
2303 2003-04-29  Scott Dattalo  <scott@dattalo.com>
2304
2305         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim@jimhawkridge.uk.eu.org>
2306         that tame's the PIC's over-aggressive optimizer.
2307
2308 2003-04-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2309
2310          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
2311          support for MSVC.
2312          
2313 2003-04-29  Kevin Vigor <kevin@vigor.nu>
2314
2315         Initial support for DS80C400. "Hello world" runs on TINIm400
2316         (with polled I/O).
2317
2318 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
2319
2320          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
2321          * Some notes on ddd usage added in debugger/README
2322          Martin Helmling adding more features and fixes for ddd GUI debugger.
2323          Code added for nexti, stepi, up, down, and other adjustments.
2324
2325 2003-04-28  Scott Dattalo  <scott@DATTALO.COM>
2326
2327         * src/pic/pCodepeep.c non-wildcard asmops are now handled
2328         * src/pic/peeph.def Added two rules to optimize carry manipulation
2329         * src/pic/* removed debug printfs
2330
2331 2003-04-28  Bernhard Held <bernhard@bernhardheld.de>
2332
2333         * debugger/mcs51/cmd.c: added header newalloc.h
2334
2335 2003-04-26  Bernhard Held <bernhard@bernhardheld.de>
2336
2337         * as/Makefile: new EXEEXT
2338         * as/z80/Makefile: remove trailing slash of BUILDIR
2339         * as/z80/clean.mk: new EXEEXT
2340         * Makefile.common.in: add to CFLAGS (and others), don't replace it
2341         * support/cpp2/Makefile.in: new EXEEXT
2342         * src/pic/glue.c (pic14emitRegularMap): fixed warning
2343
2344 2003-04-24  Bernhard Held <bernhard@bernhardheld.de>
2345
2346         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
2347         EXEEXT was introduced to fix all related problems with targets
2348         "clean", "install" and "uninstall"; a couple of further flaws
2349         especially with "clean" have been fixed too
2350         * as/mcs51/Makefile.in
2351         * as/mcs51/clean.mk
2352         * as/z80/Makefile
2353         * Makefile
2354         * clean.mk
2355         * debugger/mcs51/Makefile.in
2356         * debugger/mcs51/clean.mk
2357         * link/z80/Makefile
2358         * link/z80/Makefile.in
2359         * link/z80/clean.mk
2360         * link/Makefile
2361         * packihx/Makefile.in
2362         * packihx/clean.mk
2363         * sim/ucsim/Makefile
2364         * sim/ucsim/clean.mk
2365         * sim/ucsim/avr.src/Makefile.in
2366         * sim/ucsim/avr.src/clean.mk
2367         * sim/ucsim/s51.src/Makefile.in
2368         * sim/ucsim/s51.src/clean.mk
2369         * sim/ucsim/xa.src/Makefile.in
2370         * sim/ucsim/xa.src/clean.mk
2371         * sim/ucsim/z80.src/Makefile.in
2372         * sim/ucsim/z80.src/clean.mk
2373         * sim/ucsim/main_in.mk
2374         * sim/ucsim/packages_in.mk
2375         * sim/ucsim/gui.src/Makefile.in
2376         * sim/ucsim/gui.src/serio.src/Makefile.in
2377         * sim/ucsim/gui.src/serio.src/clean.mk
2378         * src/Makefile.in
2379         * src/clean.mk
2380         * support/cpp2/Makefile.in
2381         * support/cpp2/clean.mk
2382         * support/makebin/Makefile
2383         * support/makebin/clean.mk
2384         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
2385         * doc/sdccman.lyx: --program-suffix no longer needed
2386
2387 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
2388
2389          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
2390          Martin Helmling added support for ddd GUI debugger.
2391          Code added to display assembly, set variables, and other commands
2392          to interface to ddd.
2393
2394 2003-04-23  Bernhard Held <bernhard@bernhardheld.de>
2395
2396         * as/Makefile: fix target clean
2397         * as/clean.mk: fix target clean
2398         * as/z80/clean.mk: fix target clean
2399
2400 2003-04-22  Bernhard Held <bernhard@bernhardheld.de>
2401
2402         * Makefile.common.in: added @EXEEXT@
2403         * configure.in: removed all mingw32 stuff
2404         * configure: rebuilt from configure.in
2405         * doc/sdccman.lyx: updated section "installation"
2406         * support/scripts/sdcc_mingw32: adapted to configure
2407         * support/scripts/sdcc_cygwin_mingw32: added
2408
2409 2003-04-22  Scott Dattalo  <scott@dattalo.com>
2410
2411         * src/pic Added object file support for the PIC port
2412         * src/pic Applied patch from Craig Franklin (this started the object file support)
2413         * src/regression Updated the PIC regression tests for object files
2414
2415 2003-04-20  Borut Razem <borut.razem@siol.net>
2416
2417         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
2418           lklex.c: In function `getfid':
2419           lklex.c:203: warning: array subscript has type `char'
2420         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
2421           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
2422         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
2423           stack handling macros
2424
2425 2003-04-19  Borut Razem <borut.razem@siol.net>
2426
2427         * "handling space characters in file path" task:
2428         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
2429         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
2430         * support/Util/MySystem.h: make it self-sufficient
2431         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
2432           src/z80/main.c, sdcc/as/mcs51/lklex.c:
2433           handling space characters in file path
2434         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
2435           (it will be used by assemblers, which have their own includes, e.g. gpasm)
2436         * support/Util/MySystem.c: handling space characters in executable's path
2437
2438 2003-04-19  Bernhard Held <bernhard@bernhardheld.de>
2439
2440         * as/z80/Makefile: fix permanent rebuild of z80
2441         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
2442         * support/regression/tests/bitfields.c: added Johan's bitfields.c
2443
2444 2003-04-18      Kevin Vigor <kevin@vigor.nu>
2445
2446         * src/SDCCopt.c: add special case optimization to replace modulo by
2447           a power of two with a bitwise AND.
2448
2449 2003-04-18    <johan@balder>
2450
2451         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
2452
2453 2003-04-17    <johan@balder>
2454
2455         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
2456         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
2457
2458 2003-04-13  Borut Razem <borut.razem@siol.net>
2459
2460         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
2461         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
2462           fixed mingw problem in adl_NORMALIZE_PATH
2463
2464 2003-04-12  Borut Razem <borut.razem@siol.net>
2465
2466         * fixed "#pragma SAVE/RESTORE can not be nested":
2467         * src/SDCC.lex: reworked pragma handling functions
2468         * sdcc/src/SDCCglobl.h: reworked stack handling macros
2469         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
2470
2471 2003-04-12  Bernhard Held <bernhard@bernhardheld.de>
2472
2473         * src/SDCCutil.c (pathEquivalent): defined but not used
2474         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
2475         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
2476         * configure: rebuilt from configure.in
2477         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
2478         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
2479         * device/include/Makefile.in: replace sdcc_datadir
2480         * device/lib/Makefile.in: replace sdcc_datadir
2481         * Makefile.common.in: add LDFLAGS from configure
2482         * packihx/Makefile.in: use LDFLAGS
2483         * src/Makefile.in: use LDFLAGS
2484         * support/cpp2/Makefile.in: add LDFLAGS from configure
2485         * support/makebin/Makefile: use LDFLAGS
2486         * .version: bumped version number to 2.3.5
2487
2488 2003-04-12  Borut Razem <borut.razem@siol.net>
2489
2490         * completed "different paths" task:
2491         * src/SDCCmacro.c: fixed bug in handling quotes
2492         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
2493         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
2494
2495 2003-04-12  Bernhard Held <bernhard@bernhardheld.de>
2496
2497         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
2498
2499 2003-04-11 kevin Vigor <kevin@vigor.nu>
2500
2501         * ds390/gen.c ds390/peeph.def: fix bug 706781
2502
2503 2003-04-11  Borut Razem <borut.razem@siol.net>
2504
2505         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
2506
2507 2003-04-10  Scott Dattalo  <scott@dattalo.com>
2508
2509         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
2510         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
2511          set - this bit used to not be set...).
2512         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated 
2513           bad code in PIC Port
2514         * src/regression/and2.c added to test bug 609268
2515         * src/regression/Makefile added and2.c to regression test
2516
2517
2518 2003-04-08    <johan@CP255758-A>
2519
2520         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
2521         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
2522         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
2523
2524 2003-04-07  Bernhard Held <bernhard@bernhardheld.de>
2525
2526         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
2527         fix bug #487815
2528         * support/cpp2/Makefile.in: fix bug #487815
2529         * configure: rebuilt from configure.in
2530         * Makefile.common.in: docdir changed, new path suffixes
2531         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
2532         * sdcc_vc_in.h: reflect changes from sdccconf.h
2533         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
2534         * src/SDCCutil.h: remove BINDIR hack
2535         * doc/sdccman.lyx: update new path hierarchy
2536
2537 2003-04-06    Paul Stoffregen <paul@pjrc.com>
2538
2539         * src/SDCCpeeph.c: added okToRemoveSLOC test
2540
2541 2003-04-06    Paul Stoffregen <paul@pjrc.com>
2542
2543         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
2544
2545 2003-04-06    Paul Stoffregen <paul@pjrc.com>
2546
2547         * src/SDCCpeeph.c: added labelIsReturnOnly test
2548         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
2549
2550 2003-04-05    <johan@balder>
2551
2552         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
2553         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
2554         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
2555         * src/SDCCast.c: fixed a warning
2556         * src/SDCCast.h: fixed a warning
2557         * src/SDCCicode.c (operandFromAst): fixed a warning
2558
2559 2003-04-04    <johan@balder>
2560
2561         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
2562         * src/SDCCast.c (decorateType): fixed bug #715076
2563         * src/SDCC.y: fixed bug #702907
2564
2565 2003-04-03    <johan@balder>
2566
2567         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
2568         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
2569         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
2570         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
2571         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
2572
2573 2003-04-03  Bernhard Held <bernhard@bernhardheld.de>
2574
2575         * _decdptr.c: fix return values
2576         * _gptrget.c: fix return values
2577         * _gptrgetc.c: fix return values
2578         * _gptrput.c: fix return values
2579         * _mulint.c: fix return values
2580         * as/z80/Makefile: fix 'make -j' problem
2581
2582 2003-04-02  Bernhard Held <bernhard@bernhardheld.de>
2583
2584         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
2585         * configure.in: big cleanup, updated to autoconf 2.5x
2586         * configure: rebuilt from configure.in
2587         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
2588         * sdcc_vc_in.h: reflect changes from sdccconf.h
2589         * doc/Makefile: fixed a flaw in "make install"
2590
2591 2003-04-02    <johan@balder>
2592
2593         * src/ds390/gen.c (genCmp): no comments
2594         * src/mcs51/gen.c (genCmp): no comments
2595         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
2596         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
2597
2598 2003-04-01  Bernhard Held <bernhard@bernhardheld.de>
2599
2600         * support/regression/generate-cases.py: place generated file in given sub directory
2601         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
2602         * support/regression/Makefile: improvements for 'make -j';
2603         side effect: it's simpler and faster now
2604
2605 2003-03-31  Borut Razem <borut.razem@siol.net>
2606
2607         * src/z80/main.c: link-{port} and as-{port} defined without path
2608         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
2609
2610 2003-03-31  Bernhard Held <bernhard@bernhardheld.de>
2611
2612         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
2613
2614 2003-03-30  Borut Razem <borut.razem@siol.net>
2615
2616         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
2617           changed type of list parameter to set
2618         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
2619         * src/port.h: changed type of do_assemble() parameter to set
2620         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
2621           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
2622           definition of "cppoutfilename" macro with NULL value in preProcess()
2623         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
2624         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
2625         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
2626           replaced with set *binPathSet
2627         * shash_add() deallocates the item, if allready exsists, before adding the new one
2628         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
2629
2630 2003-03-30  Scott Dattalo  <scott@dattalo.com>
2631
2632         * src/pic/gen.c: Commit patch from Steve Tell <tell@telltronics.org> that fixes
2633           a nested for loop bug in the PIC port
2634         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
2635           for loops
2636
2637 2003-03-29  Bernhard Held <bernhard@bernhardheld.de>
2638
2639         * support/Util/dbuf.h: remove C++ stuff to make it portable
2640
2641 2003-03-28  Borut Razem <borut.razem@siol.net>
2642
2643         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
2644           literal strings in stringLiteral()
2645         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
2646         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
2647           to the project
2648
2649 2003-03-27  Paul Stoffregen <paul@pjrc.com>
2650
2651         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
2652
2653 2003-03-26    <johan@balder>
2654
2655         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
2656         * src/ds390/gen.c (saveRegisters): catched symbol abuse
2657         * src/SDCCast.c (decorateType): fixed " -v < 3"
2658
2659 2003-03-23  Bernhard Held <bernhard@bernhardheld.de>
2660
2661         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
2662         Added Lenny Story's debug infrastructure changes:
2663         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
2664         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
2665         * src/cdbFile.c: added
2666         * src/SDCCdebug.c: added
2667         * src/SDCCdebug.h: added
2668         * src/SDCCast.c (createFunction)
2669         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
2670         * src/SDCCmain.c (parseCmdLine, main)
2671         * src/SDCCmem.c (redoStackOffsets)
2672         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
2673         * src/SDCCsymt.h
2674         * src/common.h
2675         * src/avr/gen.c (genAVRCode)
2676         * src/ds390/gen.c (gen390Code)
2677         * src/mcs51/gen.c (gen51Code) 
2678         * src/pic/gen.c (genpic14Code)
2679         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
2680         * src/xa51/gen.c (genXA51Code)
2681         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
2682
2683 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2684
2685         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
2686         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
2687
2688 2003-03-22    <johan@balder>
2689
2690         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
2691
2692 2003-03-21  Bernhard Held <bernhard@bernhardheld.de>
2693
2694         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
2695         * doc/cdbfileformat.lyx: added, written by Lenny Story
2696         * doc/Makefile: added cdbfileformat.lyx
2697         * doc/clean.mk: added cdbfileformat.lyx
2698
2699 2003-03-20  Bernhard Held <bernhard@bernhardheld.de>
2700
2701         * src/mcs51/peeph.def: fix bug #705773
2702
2703 2003-03-20    <johan@balder>
2704
2705         An sfr/sbit can have an "at #" AND an initializer
2706         * src/SDCCsymt.c (checkSClass): 
2707         * src/SDCCmem.c (allocGlobal): 
2708         * src/SDCCmem.c (allocLocal):
2709         * src/SDCCast.c (createBlock): 
2710
2711 2003-03-17  Bernhard Held <bernhard@bernhardheld.de>
2712
2713         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
2714
2715 2003-03-16    <johan@balder>
2716
2717         Undid the hackup of const and volatile, the problem is much bigger
2718         * src/SDCC.y:1.65
2719         * src/SDCCast.c:1.171
2720         * src/SDCCglue.c:1.138
2721         * src/SDCCicode.c:1.146
2722         * src/SDCCsymt.c:1.150
2723         * src/SDCCval.c:1.65
2724
2725 2003-03-15  Bernhard Held <bernhard@bernhardheld.de>
2726
2727         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
2728         * src/ds390/gen.c (genAddrOf): fixed bug #704087
2729
2730 2003-03-13    <johan@balder>
2731
2732         Hackup const and volatile modifiers in type chains a bit:
2733         * src/SDCC.y:1.63
2734         * src/SDCCast.c:1.169
2735         * src/SDCCglue.c:1.136
2736         * src/SDCCicode.c:1.143
2737         * src/SDCCsymt.c1.146
2738         * src/SDCCsymt.h1.59
2739         * src/SDCCval.c:1.63
2740
2741 2003-03-12    <johan@balder>
2742
2743         * src/SDCCBBlock.h: more LRH debugging junk
2744         * src/SDCCcflow.h: more LRH debugging junk
2745         * src/SDCCloop.c: more LRH debugging junk
2746         * src/SDCC.y (struct_declaration): fixed bug #697590
2747         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
2748         * src/ds390/gen.c (aopForRemat): fixed bug #700031
2749         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
2750
2751 2003-03-11 Kevin Vigor <kevin@vigor.nu>
2752         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
2753         test function names must now match exactly).
2754         * src/SDCCcse.c: added special case in findCheaperOp to allow
2755         extending a short integer. Makes less awful code for bug 700121 test case.
2756
2757 2003-03-11  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
2758
2759         * as/mcs51/lkmain.c: Added ASlink-Warning to messages 
2760         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
2761
2762 2003-03-11 Kevin Vigor <kevin@vigor.nu>
2763
2764         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
2765         actually called (operandsNotEqual() was called for all 
2766         operandsNotEqualX tests).
2767
2768 2003-03-11 Kevin Vigor <kevin@vigor.nu>
2769
2770         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
2771         with shorter literals. Fixes bug 700121.
2772
2773 2003-03-11    <johan@balder>
2774
2775         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
2776
2777 2003-03-11  Bernhard Held <bernhard@bernhardheld.de>
2778
2779         * src/SDCCloop.c (mergeRegions): an evil beast is dead
2780         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
2781
2782 2003-03-10  Borut Razem <borut.razem@siol.net>
2783
2784         * src/SDCCmain.c: pipe preprocessor's output
2785         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
2786         * sdcc_vc_in.h: define pclose as _pclose for WIN32
2787         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
2788         which closes all pipes in pipeSet set
2789         * src/SDCCset.c: free deleted item in function deleteSetItem()
2790         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
2791         moved from z80 to src subproject
2792         * .version: increased version number to 2.3.4
2793
2794 2003-03-10  Bernhard Held <bernhard@bernhardheld.de>
2795
2796         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
2797         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
2798         * support/regression/ports/xa51/spec.mk: fix typo
2799
2800 2003-03-09  Bernhard Held <bernhard@bernhardheld.de>
2801
2802         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
2803
2804 2003-03-09  Borut Razem <borut.razem@siol.net>
2805
2806         * src/SDCCmain.c: pipe preprocessor's output
2807         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
2808         * sdcc_vc_in.h: define pclose as _pclose for WIN32
2809         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
2810         which closes all pipes in pipeSet set
2811         * src/SDCCset.c: free deleted item in function deleteSetItem()
2812         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
2813         moved from z80 to src subproject
2814
2815 2003-03-09  Borut Razem <borut.razem@siol.net>
2816
2817         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
2818         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
2819         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
2820         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
2821         * src/SDCCglobl.h: unification of WIN32 native definitions
2822
2823 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2824
2825         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
2826
2827 2003-03-08  Bernhard Held <bernhard@bernhardheld.de>
2828
2829         * src/configure.in:   check for endianess (even while cross-compiling)
2830         * src/configure:      check for endianess (even while cross-compiling)
2831         * src/configure_in.h: check for endianess (even while cross-compiling)
2832         * src/avr/gen.c:        remove old endianess stuff
2833         * src/mcs51/gen.c:      remove old endianess stuff
2834         * src/ds390/gen.c:      remove old endianess stuff
2835         * src/pic/gen.c:        remove old endianess stuff
2836         * src/pic/genarith.c:   remove old endianess stuff
2837         * src/pic/glue.c:       fix endianess check
2838         * src/pic16/gen.c:      remove old endianess stuff
2839         * src/pic16/genarith.c: remove old endianess stuff
2840         * src/pic16/glue.c:     fix endianess check
2841         * src/xa51/gen.c:       remove old endianess stuff
2842         * src/z80/gen.c:        fix endianess check
2843         * src/SDCCglue.c:       fix endianess check
2844         * src/ds390/peeph.def: fix bug 700036
2845
2846 2003-03-08  Bernhard Held <bernhard@bernhardheld.de>
2847
2848         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
2849         * src/configure: find appropriate data-types on host for SDCC's int and long
2850         * src/configure.in: find appropriate data-types on host for SDCC's int and long
2851         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
2852         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
2853
2854 2003-03-07    <johan@balder>
2855
2856         Just a big NOOP:
2857                 some minor cleanups before the big shot
2858                 OP_DEFS and OP_USES now use Kevin's protection
2859                 new option --nolabelopt
2860
2861         * src/SDCCBBlock.c:
2862         * src/SDCCast.c,:
2863         * src/SDCCcflow.c:
2864         * src/SDCCcse.c:
2865         * src/SDCCicode.c:
2866         * src/SDCCicode.h:
2867         * src/SDCClabel.c:
2868         * src/SDCCloop.c:
2869         * src/SDCCmain.c:
2870         * src/ds390/ralloc.c:
2871         * src/mcs51/ralloc.c:
2872         * src/pic/ralloc.c:
2873         * src/xa51/ralloc.c:
2874         * src/z80/ralloc.c:
2875
2876 2003-03-06  Bernhard Held <bernhard@bernhardheld.de>
2877
2878         * src/pic/pcode.c (get_op): fix 64 bit warnings
2879         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
2880         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
2881         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
2882         * support/regression/tests/malloc.c: fix 64 bit warnings
2883
2884 2003-03-04  Bernhard Held <bernhard@bernhardheld.de>
2885
2886         * src/mcs51/gen.c (genMinus): fixed bug 696436
2887
2888 2003-03-02  Borut Razem <borut.razem@siol.net>
2889
2890         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
2891
2892 2003-02-26  Bernhard Held <bernhard@bernhardheld.de>
2893
2894         * configure.in: test for mkstemp
2895         * sdccconf_in.h: add HAVE_MKSTEMP
2896
2897 2003-02-24  Bernhard Held <bernhard@bernhardheld.de>
2898
2899         * device/include/ctype.h: removed warning while using --stack-auto
2900         * device/include/malloc.h: removed warning while using --stack-auto
2901         * device/include/string.h: removed warning while using --stack-auto
2902
2903 2003-02-23  Borut Razem <borut.razem@siol.net>
2904
2905         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
2906         because NDEBUG is defined (see man assert)
2907         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
2908
2909 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2910
2911         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
2912         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
2913
2914 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann@web.de>
2915
2916         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
2917         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
2918
2919 2003-02-18    <johan@balder>
2920
2921         * as/mcs51/asmain.c (asmbl): module can start with a digit
2922         * as/z80/asmain.c (asmbl): module can start with a digit
2923
2924 2003-02-16  Bernhard Held <bernhard@bernhardheld.de>
2925
2926         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
2927         * src/asm.c: fix pipe() for Mingw32
2928
2929 2003-02-15  Bernhard Held <bernhard@bernhardheld.de>
2930
2931         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
2932         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
2933         make -V work again; --c1mode reads now from stdin
2934         * doc/sdccman.lyx: added --c1mode
2935         * support/Util/SDCCerr.c: new messages for c1 mode
2936         * support/Util/SDCCerr.h: new messages for c1 mode
2937         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
2938
2939 2003-02-15    <johan@balder>
2940
2941         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
2942
2943 2003-02-14  Bernhard Held <bernhard@bernhardheld.de>
2944
2945         * doc/sdccman.lyx: Environment variables, -o and other minor things
2946
2947 2003-02-14    <johan@balder>
2948
2949         * src/xa51/main.c: before anyone really tries to use it :)
2950
2951         * Install doc's in share/sdcc/doc
2952         * removed some obsolete files
2953         * Do a proper make distclean and uninstall
2954         M Makefile.common.in
2955         R sdccbuild.sh
2956         M as/Makefile
2957         M device/include/Makefile.in
2958         M device/lib/Makefile.in
2959         M doc/sdccman.lyx
2960         M link/Makefile
2961         M sim/ucsim/doc/Makefile.in
2962         M src/clean.mk
2963         R src/avr/peeph.rul
2964         R src/xa51/peeph.rul
2965         M support/cpp2/Makefile.in
2966         M support/makebin/Makefile
2967
2968
2969 2003-02-13  Bernhard Held <bernhard@bernhardheld.de>
2970
2971         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
2972
2973 2003-02-10  Borut Razem <borut.razem@siol.net>
2974
2975         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
2976         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
2977         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
2978         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
2979         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
2980         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
2981         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
2982         src/z80/Makefile.bcc: Borland Makefile cleanup
2983         * as/z80/Makefile.bcc: Added Borland Makefile
2984         * support/cpp2/borland.h: Removed
2985
2986 2003-02-10  Bernhard Held <bernhard@bernhardheld.de>
2987
2988         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js@convergence.de>
2989         * src/SDCC.lex: new pragma NOIV
2990         * src/SDCCglobl.h: new pragma NOIV
2991         * src/SDCCmem.c: new pragma NOIV
2992
2993 2003-02-09  Bernhard Held <bernhard@bernhardheld.de>
2994
2995         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
2996
2997 2003-02-09  Bernhard Held <bernhard@bernhardheld.de>
2998
2999         * src/SDCCmain.c: signal handling is switched off by --debug
3000         * doc/Makefile: small fix for install; use clean.mk again
3001         * doc/clean.mk: clean *.pdf and *.html too
3002
3003 2003-02-08  Bernhard Held <bernhard@bernhardheld.de>
3004
3005         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
3006         * device/lib/printfl.c: fix a ds390 bug by making it portable
3007         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
3008         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
3009         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
3010         * debugger/mcs51/cmd.c: converted multi-line string literals
3011         * sim/ucsim/globals.cc: converted multi-line string literals
3012         * src/SDCCmain.c: introduced signal handler to remove temp files
3013         * doc/Makefile: small tweaks, implement clean
3014         * doc: removed generated files
3015
3016 2003-02-05  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3017
3018         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
3019         patch from Jan Rejlek <jr@apex-lib.cz> to fix Bug 677692: "Extended
3020         Address Record is not correctly generated for DS390."
3021
3022 2003-02-02  Borut Razem <borut.razem@siol.net>
3023
3024         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
3025         * as/mcs51/asm.h: fixed compilation with Borland C
3026         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
3027         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
3028         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
3029         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
3030         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
3031         src/z80/Makefile.bcc: delete $(LIB) only if exist
3032         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
3033
3034 2003-02-02  Bernhard Held <bernhard@bernhardheld.de>
3035
3036         * device/include/malloc.h: introduced NULL
3037         * device/include/string.h: introduced NULL
3038         * device/include/stdlib.h: introduced NULL
3039         * device/lib/_memcpy.c: removed NULL
3040         * device/lib/_strcat.c: removed NULL
3041         * device/lib/_strchr.c: removed NULL
3042         * device/lib/_strcmp.c: removed NULL
3043         * device/lib/_strcpy.c: removed NULL
3044         * device/lib/_strcspn.c: removed NULL
3045         * device/lib/_strlen.c: removed NULL
3046         * device/lib/_strncat.c: removed NULL
3047         * device/lib/_strncmp.c: removed NULL
3048         * device/lib/_strncpy.c: removed NULL
3049         * device/lib/_strpbrk.c: removed NULL
3050         * device/lib/_strrchr.c: removed NULL
3051         * device/lib/_strspn.c: removed NULL
3052         * device/lib/_strstr.c: removed NULL
3053         * device/lib/_strtok.c: removed NULL
3054         * device/lib/malloc.c: removed NULL, include own header
3055
3056 2003-02-02    <johan@balder>
3057
3058         * 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
3059         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
3060         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
3061         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
3062         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
3063         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
3064
3065 2003-02-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3066
3067         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
3068         area 'DATA'"
3069
3070 2003-02-01    <johan@balder>
3071
3072         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
3073
3074 2003-01-31    <johan@CP255758-A>
3075
3076         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
3077
3078 2003-01-30    <johan@balder>
3079
3080         * src/SDCCBBlock.c: automatic bug detection
3081         * src/SDCCicode.c: automatic bug detection
3082
3083 2003-01-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3084
3085         * src/SDCCglobl.h:   now --xram-size 0 works
3086         * src/SDCCmain.c:    now --xram-size 0 works
3087
3088 2003-01-29    <johan@balder>
3089
3090         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
3091
3092 2003-01-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3093
3094         * as/mcs51/aslink.h: Added options --xram-size and --code-size 
3095         * as/mcs51/lkdata.c: Added options --xram-size and --code-size 
3096         * as/mcs51/lkmain.c: Added options --xram-size and --code-size 
3097         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size 
3098         * src/SDCCglobl.h:   Added options --xram-size and --code-size 
3099         * src/SDCCmain.c:    Added options --xram-size and --code-size 
3100
3101 2003-01-28  Bernhard Held <bernhard@bernhardheld.de>
3102
3103         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
3104         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
3105
3106 2003-01-27    <johan@balder>
3107
3108         * src/SDCC.y: fixed bug #613764
3109
3110 2003-01-26    <johan@balder>
3111
3112         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
3113         * src/SDCCsymt.h: fixed bug #673374
3114         * src/SDCCglue.c: fixed bug #661910
3115         * src/SDCCast.c: fixed bug #458099 and 673374
3116
3117 2003-01-26  Bernhard Held <bernhard@bernhardheld.de>
3118
3119         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
3120         * as/mcs51/strcmpi.h: added
3121         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
3122         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
3123         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
3124         * as/mcs51/assym.c: strcmpi -> as_strcmpi
3125         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
3126         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
3127         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
3128         * as/mcs51/Makefile.aslink: new module strcmpi
3129         * as/mcs51/Makefile.asx8051: new module strcmpi
3130         * as/mcs51/Makefil.bcc: new module strcmpi
3131         * as/mcs51/Makefile.in: new module strcmpi
3132         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
3133
3134 2003-01-26    <johan@balder>
3135
3136         * src/SDCCglue.c: reverted back to 1.124
3137         * src/SDCCast.c: reverted back to 1.156
3138         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
3139
3140 2003-01-25    <johan@balder>
3141
3142         * src/SDCCglue.c: A better fix for bug #661910
3143         * src/SDCCast.c: A better fix for bug #661910
3144         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
3145
3146 2003-01-24  Bernhard Held <bernhard@bernhardheld.de>
3147
3148         * src/Makefile.in: remove spawn.o
3149         * src/SDCCmain.c: remove spawn.h
3150         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
3151         * src/spawn.c: removed
3152         * src/spawn.h: removed
3153         * support/regression/ports/ds390/spec.mk: link with -r
3154
3155 2003-01-24    <johan@CP255758-A>
3156
3157         * src/ds390/gen.c (aopOp): fixed bug #667458
3158         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
3159         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
3160         (createIvalCharPtr): an ival doesn't always have a storage class anymore
3161
3162 2003-01-24  Bernhard Held <bernhard@bernhardheld.de>
3163
3164         * src/mcs51/peeph.def: better assembler identation by Frieder
3165         * src/mcs51/gen.c: better assembler identation by Frieder
3166
3167 2003-01-22  Bernhard Held <bernhard@bernhardheld.de>
3168
3169         * as/z80/string.h: removed for gcc 3.2
3170         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
3171         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
3172
3173 2003-01-19  Bernhard Held <bernhard@bernhardheld.de>
3174
3175         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
3176         * src/SDCCpeeph.c (replaceRule): fix bug #663503
3177         * support/regression/Makefile: separate temp files for ports
3178         * support/regression/generate-cases.py: separate temp files for ports
3179         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
3180         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
3181
3182 2003-01-19  Bernhard Held <bernhard@bernhardheld.de>
3183
3184         * moved tinitalk to device/examples/ds390
3185
3186 2003-01-14  Bernhard Held <bernhard@bernhardheld.de>
3187
3188         * as/mcs51/lkmem.c: rflag is for DS390
3189         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
3190         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
3191                          (linkEdit): move mem- and map-files the same way as ihx-files
3192         * src/z80/main.c (_setDefaultOptions): removed --generic
3193         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
3194         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
3195         * src/pic/glue.c (picglue): --c1mode works again
3196         * src/pic16/glue.c (pic16glue): --c1mode works again
3197         * src/asm.c (printCLine): fix #660034
3198
3199 2003-01-13  Bernhard Held <bernhard@bernhardheld.de>
3200
3201         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia@tin.it>, 1 by Frieder
3202         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
3203         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
3204         * as/mcs51/lkmem (summary): better fix for sp problem
3205         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
3206         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
3207         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
3208                                               remove --stack-after-data
3209
3210 2003-01-12  Bernhard Held <bernhard@bernhardheld.de>
3211
3212         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
3213         * src/SDCCutil.c (join): ugly bug: missing '\0'
3214         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
3215
3216 2003-01-11  Bernhard Held <bernhard@bernhardheld.de>
3217
3218         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
3219         * src/port.h: typo
3220         * src/pic/main.c (_asmCmd): gpasm supports -o
3221         * src/z80/main.c: more general macros
3222         * device/lib/Makefile.in: remove intermediate files
3223
3224 2003-01-11  Bernhard Held <bernhard@bernhardheld.de>
3225
3226         * .version: Bumped version number to 2.3.3
3227         * src/SDCCBBlock.c: new option -o
3228         * src/SDCCglobl.h: new option -o
3229         * src/SDCCglue.c: new option -o
3230         * src/SDCCmain.c: new option -o
3231         * src/asm.c: new option -o
3232         * src/ds390/main.c: new option -o
3233         * src/pic/glue.c: new option -o
3234         * src/pic/pcode.c: new option -o
3235         * src/pic/ralloc.c: new option -o
3236         * src/pic16/glue.c: new option -o
3237         * src/pic16/pcode.c: new option -o
3238         * src/pic16/ralloc.c: new option -o
3239         * src/z80/main.c: new option -o
3240         * device/lib/Makefile.in: use -o
3241         * support/regression/ports/ds390/spec.mk: use -o
3242         * support/regression/ports/gbz80/spec.mk: use -o
3243         * support/regression/ports/mcs51/spec.mk: use -o
3244         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
3245         * support/regression/ports/z80/spec.mk: use -o
3246         * support/regression/ports/ucz80/spec.mk: use -o
3247         * support/regression/ports/xa51/spec.mk: use -o
3248         * support/regression/fwk/lib/timeout.c: fix usage string
3249
3250 2003-01-09  Bernhard Held <bernhard@bernhardheld.de>
3251         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia@tin.it>
3252         
3253 2003-01-07    <johan@balder>
3254
3255         * src/SDCCast.c (decorateType): fixed bug #600035
3256
3257 2003-01-07  Bernhard Held <bernhard@bernhardheld.de>
3258         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
3259         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
3260         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
3261         * src/pic/pcode.c: outcommented unused variable to remove warnings
3262         * src/pic/ralloc.c: outcommented unused variable to remove warnings
3263
3264 2003-01-06    <karl@turbobit.com>
3265         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
3266    regression tests.
3267
3268 2003-01-06    <johan@balder>
3269
3270         * src/SDCCicode.c: fixed array add
3271
3272 2002-01-05  Bernhard Held <bernhard@bernhardheld.de>
3273         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
3274         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
3275
3276 2003-01-04    <johan@balder>
3277
3278         * src/SDCCval.c (getNelements): fixed the initialized array of structures
3279
3280 2002-12-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3281         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
3282
3283 2002-12-28  Bernhard Held <bernhard@bernhardheld.de>
3284         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann@web.de>
3285         * support/regression/tests/bug-524697.c: fit mem usage into 8032
3286
3287 2002-12-28  Bernhard Held <bernhard@bernhardheld.de>
3288         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
3289
3290 2002-12-27  Bernhard Held <bernhard@bernhardheld.de>
3291         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
3292
3293 2002-12-26  Bernhard Held <bernhard@bernhardheld.de>
3294         * src/mcs51/main.c: removed {bindir}{sep} from aslink
3295
3296 2002-12-10  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3297
3298     * in \sdcc\as\mcs51\ changed these files in order to create an
3299     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
3300     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the 
3301     following files to include the previous two files: aslink.dsp,
3302     Makefile.aslink, Makefile.bcc, and Makefile.in.
3303
3304     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
3305     .adb instead of .cdb
3306     
3307 2002-11-09  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3308
3309         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
3310         value from option --iram-size.
3311
3312 2002-09-20  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3313
3314         * \sdcc\as\mcs51\lklist.c: added boundary check before using
3315         dram[] array.
3316
3317 2002-09-18    <wiml@hhhh.org>
3318
3319         * SDCClrange.h: exposed setFromRange() and setToRange()
3320         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
3321           packRegsForAccUse() (bug 542397)
3322         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
3323           multiple times and emitting the fetch operations more than once
3324           added aopGetUsesAcc() function to allow binary operators to
3325           fetch their operands in the correct order; made genMinus() emit
3326           compact code for X = LITERAL - Y 
3327
3328 2002-09-00  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3329         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
3330         sprintf() in line 1267.
3331
3332 2002-09-08  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3333         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
3334         like ports.
3335
3336 2002-09-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
3337         Changes to aslink (All the changes are marked with 'JCF'):
3338
3339         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
3340         summary().
3341
3342         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
3343         area BSEG.  Also moves, if possible, the DATA area down into the internal
3344         ram so more space is available.
3345
3346         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
3347         sflag.
3348
3349         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
3350         not bytes.  Function summary() which creates a memory usage summary
3351         file with extension .mem.  Reports of overlaping stack and small stack
3352         size.  If the space for the stack is less than 16 bytes aslink trows a
3353         warning.
3354         
3355         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
3356         the 8051.  Option 'y' for memory summary output file.
3357
3358         Changes to sdcc (All the changes are marked with 'JCF'):
3359
3360         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
3361
3362         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
3363         overlaying area for it (uses RegBankUsed[4]).
3364
3365         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
3366         bank zero as used by default.  By default aslink locates the stack
3367         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
3368         the creation of the .mem file.  Delegates the allocation of data area
3369         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
3370         the begining of the stack area to aslink.
3371
3372         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
3373         glue() in SDCCglue.c creates an area for it.
3374         
3375 2002-09-03  Borut Razem <borut.razem@siol.net>
3376         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
3377         sdcc/src/pic/glue.c:
3378         introduced atexit() handler for teporay files removal in case of
3379         errors, assertions, ...
3380
3381 2002-08-29  Borut Razem <borut.razem@siol.net>
3382         * sdcc/support/cpp2/auto-host_vc_in.h:
3383         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
3384         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
3385         Maybe there is a similar problem with BORLANDC? It should be checked!
3386
3387         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
3388         corrected improper use of assert: the assignment to clr variable was done inside the assert.
3389         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
3390         was not executed, and the compiler (cl) launched a warning:
3391         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
3392
3393 2002-08-28  Bernhard Held <bernhard@bernhardheld.de>
3394         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
3395
3396 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem@siol.net>
3397         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
3398
3399         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
3400           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
3401           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
3402           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
3403           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
3404           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
3405           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
3406         - added Release configuration in VS projects
3407         - review of compiler an linker options
3408         - VC .exe files are generated in bin_vc directory, not to interfere
3409           with binaries generated from other projects (cygwin, mingw, bcc ...)
3410
3411         * sdcc/src/yacc.dsp: added
3412
3413         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
3414         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
3415         and insert the version number definitions from .version 
3416
3417         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
3418
3419         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
3420         added - genarate auto-host.h using auto-host_vc_in.h as template
3421
3422         * sdcc/sdcc_vc.h,
3423         removed from CVS, generated automatically
3424
3425 2002-08-25  Bernhard Held <bernhard@bernhardheld.de>
3426         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
3427
3428 2002-08-11  Borut Razem <borut.razem@siol.net>
3429         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
3430
3431 2002-08-10  Borut Razem <borut.razem@siol.net>
3432         * src/SDCCmain.c (main):
3433         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
3434         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
3435         The consequence was that some temporary files were not removed.
3436
3437         * src/SDCCglue.c:
3438         unification of code in functions tempfilename() and tempfile():
3439         function tempnam() is defined in Visual Studio 6.0 and .NET
3440
3441         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
3442
3443         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
3444           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
3445         - removed compiler command line option /WX: Treats all warnings as errors
3446         - update a list of source files, included into the project
3447
3448         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
3449           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
3450         changed project type to Generic Project so that can be correcly converted to VS.NET project
3451
3452         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
3453
3454         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
3455
3456         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
3457
3458         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
3459         added return 0 statements after assert() to make compiler happy
3460
3461         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
3462         added newline in the def file to keep MSC compiler satisfied
3463
3464         * sdcc/src/z80/gen.c:
3465         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
3466           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
3467         - solved MSC error in function aopDump()
3468
3469         * sdcc_vc.h: define PREFIX as "\\sdcc"
3470
3471 2002-07-18  Bernhard Held <bernhard@bernhardheld.de>
3472         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
3473
3474 2002-06-22  Scott Dattalo <scott@dattalo.com>
3475         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced. 
3476         - Rewrote the register banking algorithm. 
3477         - Added pCode live-range analysis to registers (for now, only non-used and 
3478         singly-used registers optimized away)
3479
3480         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
3481
3482         * support/scripts/inc2h.pl Kevin L. Pauba <klpauba@cox.net> submitted this perl script for converting MicroChip include files into SDCC Pic include files.
3483         
3484 2002-05-10  Scott Dattalo <scott@dattalo.com>
3485         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
3486         
3487 2002-04-22  Michael Hope  <michaelh@vroom>
3488
3489         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
3490
3491         * configure.in (DD_COPT): Added include support required for gbdk.
3492
3493         * .version: Bumped version number just to increase it.
3494
3495         * src/SDCCmain.c: Added -nostdinc to the default options.
3496
3497 2002-04-15  Michael Hope  <michaelh@vroom>
3498
3499         * device/lib/z80/printf.c (sprintf): Added.
3500
3501         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
3502
3503         * src/z80/peeph.def: Added transpose redundent load rule.
3504
3505         * src/z80/main.c: Added force callee saves for jaune.
3506
3507         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
3508
3509         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
3510
3511 2002-03-28  Johan Knol  <johan@balder>
3512
3513         * src/SDCCval.c: fixed bug #532436
3514
3515 2002-03-14  Scott Dattalo <scott@dattalo.com>
3516         * /src/port.h:
3517         Added "char *Processor" field to the port structure.
3518
3519         * /src/SDCCmain.c:
3520         Added -p option. Allows port dependent processor to be specified.
3521
3522         * all ports:
3523         Initialized the new field char *Processor field to NULL in all ports
3524
3525         * /src/pic/*:
3526         Compiler generated registers for interrupt context saving
3527         were not getting allocated.
3528                 
3529 2002-03-16  Sandeep Dutta  <sandeep@ddi.com>
3530
3531         * /src/SDCCast.c:
3532         Fixed left shift. Will promote the left side of a left shift
3533         if a) left shifting more than size of operand or b) when assigned
3534         to something size > size of left side
3535
3536 2002-03-14  Scott Dattalo <scott@dattalo.com>
3537         * src/pic/*
3538         tons of changes. Register allocation has been 
3539         rewritten. Added customization for the various PICs. Flow
3540         analysis is restructured. ...
3541
3542         * src/pic/device.h:
3543         Added
3544
3545         * src/pic/device.c:
3546         Added. device.c is a PIC port hack to accomodate variations
3547         in PIC devices.
3548
3549 2002-03-13  Michael Hope  <michaelh@vroom>
3550
3551         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
3552
3553 2002-03-04  johanknol  <johanknol@manik>
3554
3555         * /src/SDCCval.c: fixed
3556
3557         const unsigned char arr[][2] = { { 0, 1 } };
3558         t18.c:1: error: Initializer element is not constant
3559
3560 2002-03-04  bela  <bela@manik>
3561
3562         * /device/include/mcs51reg.h:
3563         ds89c420 register definition update
3564
3565 2002-03-03    <johan@FRIJA>
3566
3567         * support/Util/SDCCerr.c: did something, but don't no why anymore
3568
3569         * support/regression/tests/bug-524691.c: made it a little less shy 
3570
3571         * src/SDCCast.c (decorateType): fixed bug #524697
3572
3573         * src/SDCCast.c: made some lineno improvements
3574
3575         * src/SDCCval.c (getNelements): changed warning to error
3576
3577         * src/SDCCglue.c (printIvalArray): changed warning to error
3578
3579         * src/SDCCicode.c: fixed a warning for mingw
3580
3581         * src/SDCCast.c (decorateType): fixed the << promotion for ops
3582
3583         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
3584
3585 2002-03-02  Sandeep Dutta  <sandeep@ddi.com>
3586
3587         * src/ds390/peeph.def:
3588         Added some more peephole rules
3589
3590         * src/ds390/gen.c: Various fixes & enhancements
3591
3592         * src/SDCClrange.c, src/SDCClrange.h:
3593         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
3594
3595         * src/ds390/ralloc.c:
3596         various fixes & enhancements (ds390) specific
3597
3598         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
3599         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
3600         from rallocs.
3601
3602         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
3603
3604 2002-03-02    <johan@FRIJA>
3605
3606         * src/SDCCast.c (decorateType): fixed bug #524708
3607
3608         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
3609
3610         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
3611
3612 2002-03-01  Michael Hope  <michaelh@vroom>
3613
3614         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
3615
3616         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
3617
3618 2002-03-01    <johan@FRIJA>
3619
3620         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
3621
3622         * src/SDCCast.c (decorateType): fixed bug #524209
3623
3624         * src/SDCCval.c (valNot): fixed bug #524195
3625
3626 2002-02-26    <johan@balder>
3627
3628         * src/xa51/gen.c: fixed a warning
3629
3630         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
3631
3632         * src/SDCCast.c (decorateType): fixed bug #522534
3633
3634 2002-02-23    <johan@balder>
3635
3636         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
3637
3638 2002-02-22    <johan@balder>
3639
3640         * src/SDCCast.c: fixed bug #514865
3641
3642         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
3643
3644 2002-02-21  Sandeep Dutta  <sandeep@ddi.com>
3645
3646         * sdcc/src/SDCCloop.c:
3647         Previous fix was not good. basic blocks that have "break" or "return" are
3648         not really partof a loop , but live ranges used in these blocks should
3649         be live thru the entire loop, so set partOfLoop but don't add them to
3650         loop region
3651
3652 2002-02-21    <johan@FRIJA>
3653
3654         * src/SDCCcse.c: fixed bug #514308
3655
3656 2002-02-20  Sandeep Dutta  <sandeep@ddi.com>
3657
3658         * src/SDCCloop.c:
3659         Fixed BUG #519583. If a conditional block ended in a return/break
3660         statement inside a loop, it was not being considered part of the loop.
3661
3662         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
3663
3664 2002-02-10  Karl Bongers <karl@turbobit.com>
3665
3666         * debugger/*:
3667         Fixed up SDCDB debugger somewhat.  Updated debugger/README
3668         with lots of comments and notes.
3669
3670         * device/examples/test2.c:
3671         Fix bug, "red" variable not being initialized(compiler complained).
3672
3673         * device/examples/Makefile, examples/test3.c:
3674         Add Makefile in device/examples folder, compiles test3.c
3675         for use as a multiple module SDCDB test case.
3676
3677         * sim/ucsim/cmd.src/cmdset.cc:
3678         Took out debug printfs in ucsim "next" command.
3679
3680         * sim/ucsim/xa.src:
3681         Karl and Johan start ucsim XA support.  Most dissassembly working,
3682         about 75% emulation done(plenty of work remaining).
3683
3684         * sim/ucsim/z80.src:
3685         Add Z80 support to ucsim, add test-ucz80 regression test,
3686         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
3687         Notice z80 compiler fails on examples/test3.c/crc code.
3688
3689 2002-01-30  Sandeep Dutta  <sandeep@ddi.com>
3690
3691         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
3692         Added support for --parms-in-bank1
3693
3694         * src/ds390/peeph.def:
3695         added a few more peephole optimzations
3696
3697         * src/ds390/main.c:
3698         1) added __builtin_inp & __builtin_outp used to read in data of given length
3699            from a memory mapped port
3700         2) added __builtin_memcmp
3701         3) added __builtin_swapw swap bytes of a short
3702
3703         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
3704         1) handle multiple send & receives from register bank1
3705         2) ralloc can now allocate DPTR1 to some liveRanges
3706
3707         * src/SDCCsymt.c, src/SDCCsymt.h:
3708         changes to handle multiple sends & receives
3709
3710         * src/SDCCptropt.h:
3711         added some pointer arithmetic optimization
3712
3713         * src/SDCCptropt.c:
3714         added some pointer arithmetic optimizations but not stable yet so not
3715         called from anywhere (will get this working shortly)
3716
3717         * src/SDCCopt.c: fixed for multiple sends & receives
3718
3719         * src/SDCCmain.c:
3720         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
3721         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
3722            set preprocessor defines (depending on options)
3723
3724         * src/SDCCicode.c, src/SDCCicode.h:
3725         changes made to handle multiple sends & receives
3726
3727         * src/SDCCglobl.h:
3728         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
3729
3730         * src/SDCCcse.c, src/SDCCcse.h:
3731         added function findbackward def (to be used in upcoming optimization)
3732
3733         * src/SDCCcflow.c, src/SDCCcflow.h:
3734         added function returnAtEnd - to determine if a basic block terminates with
3735         a RETURN iCode
3736
3737         * src/SDCCast.c, src/SDCCast.h:
3738         added option parms-in-bank1
3739
3740         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c 
3741         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c 
3742         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
3743         adjusted for --parms-in-bank1 option
3744
3745         * device/include/string.h:
3746         donot redefine "reentrant" keyword
3747
3748         * device/include/ds80c390.h: Added some more SFRs
3749
3750 2002-01-28  Bernhard Held  <bernhard@bernhardheld.de>
3751
3752         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4 
3753
3754 2002-01-26  Bernhard Held  <bernhard@bernhardheld.de>
3755
3756         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
3757
3758 2002-01-22  Bernhard Held  <bernhard@bernhardheld.de>
3759
3760         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
3761
3762 2002-01-18  Paul Stoffregen  <paul@pjrc.com>
3763
3764         * Added --xram-movc option
3765
3766 2002-01-13  Bernhard Held  <bernhard@bernhardheld.de>
3767
3768         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
3769
3770 2002-01-11  Johan Knol
3771
3772         * Added math lib of Jesus Calvino-Fraga
3773
3774 2002-01-08  Bernhard Held  <bernhard@bernhardheld.de>
3775
3776         * src/SDCCmain.c (processFile): fix processing of ../../src.c
3777         * support/regression/Makefile: new target test-mcs51-stack-auto
3778         * support/regression/ports/mcs51-stack-auto/spec.mk: added
3779
3780 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
3781
3782         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
3783
3784 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
3785
3786         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
3787
3788 2002-01-03  Bernhard Held  <bernhard@bernhardheld.de>
3789
3790         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
3791
3792         * src/SDCCglue.h: add definition for printIvalChar()
3793
3794 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
3795
3796         * src/SDCCast.c: fix #498138 by Johan
3797
3798         * src/SDCCglue.c: fix #498138 by Johan
3799
3800 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
3801
3802         * support/regression/Makefile: fix clean
3803
3804         * support/regression/ports/ds390/support.c: fix transmission of last character
3805
3806 2001-12-29  Sandeep Dutta  <sandeep@ddi.com>
3807
3808         * /sdcc/src/ds390/gen.c:
3809         a) improved computing address of stack variable
3810         b) took out some #if 0 code
3811         c) improved parmBytes adjustment
3812         d) improved genPlusIncr & genMinusIncr
3813         e) genCmp could generate bad code (when left assigned to DPTR)
3814         f) Fixed bug in hasInc
3815
3816         * /sdcc/src/ds390/ralloc.c:
3817         a) packRegsForSupport could mess up live information (Fixed)
3818         b) packRegsDPTRuse could be incorrect for left & right shift
3819
3820         * /sdcc/src/mcs51/ralloc.c:
3821         packRegsForSupport could mess up the live information (Fixed)
3822
3823         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
3824
3825         * /sdcc/src/SDCCast.c:
3826         can reverse a loop even if function call is present as long
3827         as the loop control variable is local & is not passed as parameter
3828
3829 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
3830
3831         * /sdcc/ChangeLog: *** empty log message ***
3832
3833         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
3834         More builtin function additions for TININative
3835
3836         * /sdcc/src/ds390/ralloc.c:
3837         Had broken the regression testsuite
3838
3839         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
3840
3841         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
3842         Added funcattr hasStackParms will be set for reentrant functions when there
3843         are paramteres on the stack, this helps in minimizing frame pointer generation
3844         typeFromStr can handle function pointers now
3845
3846         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
3847         *** empty log message ***
3848
3849 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
3850
3851         * /src/ds390/gen.c, /src/ds390/main.c:
3852         More builtin function additions for TININative
3853
3854         * /src/ds390/ralloc.c:
3855         Had broken the regression testsuite
3856
3857         * /src/SDCCast.c: Fixed a bug in dumptree
3858
3859         * /src/SDCCsymt.c, /src/SDCCsymt.h:
3860         Added funcattr hasStackParms will be set for reentrant functions when there
3861         are paramteres on the stack, this helps in minimizing frame pointer generation
3862         typeFromStr can handle function pointers now
3863
3864         * /doc/builtins.txt, /doc/TININative.txt:
3865         *** empty log message ***
3866
3867
3868 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
3869
3870         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
3871         ALPHA version for -mTININative
3872
3873         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
3874         updated to reflect changes in the port structure
3875
3876         * /src/port.h:
3877         added function do_assemble (similar to do_link) if non-null this function
3878         will be called to do assembly (-mTININative) requires a multi command
3879         assembly
3880         added function genAssemblerEnd will be called to generate assembler Epilogue
3881
3882         * /src/SDCCsymt.c:
3883         added _JavaNative to debug info printing
3884
3885         * /src/SDCCmain.c: added option --tini-libid
3886         added port->do_assemble function (-mTININative) has a multi command assemble
3887
3888         * /src/SDCCglue.c: Disabled "constExpr" check
3889         added port->genAssemblerEnd function
3890
3891         * /src/SDCCglobl.h: Added option --tini-libid value
3892
3893         * /src/SDCCast.h:
3894         tookout optimizeCompare from the header (has no external references)
3895
3896         * /src/SDCCast.c: made one more function "static"
3897
3898 2001-12-23  Michael Hope  <michaelh@juju.net.nz>
3899
3900         * src/z80/mappings.i: Added z80asm support.
3901
3902         * src/z80/main.c: Added z80asm support on --asm=z80asm
3903
3904         * src/z80/gen.c: Fixed asm portability issues.
3905
3906         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
3907
3908         * src/SDCCglue.c (printExterns): Added global/extern split.
3909
3910 2001-12-17  Bernhard Held  <bernhard@bernhardheld.de>
3911
3912         * support/regression/Makefile: added test for mcs51 model large
3913
3914         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
3915
3916         * support/regression/ports/gbz80/spec.mk: added -mgbz80
3917
3918 2001-12-05  Michael Hope  <michaelh@juju.net.nz>
3919
3920         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
3921
3922 1904-01-06  Michael Hope  <michaelh@juju.net.nz>
3923
3924         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
3925
3926         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
3927
3928 2001-12-02  Bernhard Held  <bernhard@bernhardheld.de>
3929
3930         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
3931
3932         * support/regression/tests/simplefloat.c: Port to mcs51.
3933
3934 2001-11-25  Michael Hope  <michaelh@juju.net.nz>
3935         * support/regression/tests/bug-485362.c: Added.
3936
3937         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
3938
3939         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
3940
3941         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
3942
3943         * src/z80/gen.c (aopDump): Added a dump function.
3944
3945 2001-11-25  Bernhard Held  <bernhard@bernhardheld.de>
3946         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
3947
3948         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
3949
3950         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
3951
3952         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
3953
3954         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
3955
3956         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
3957
3958         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
3959
3960         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
3961
3962         * support/regression/ports/ds390/support.c: Use tinibios.
3963
3964         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
3965
3966 2001-11-23  Michael Hope  <michaelh@juju.net.nz>support/regression/tests/bug-460010.c
3967
3968         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
3969         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
3970
3971         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
3972
3973         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
3974
3975 2001-11-18  Michael Hope  <michaelh@juju.net.nz>
3976
3977         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
3978
3979         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
3980         (packRegsForIYUse): Created and optimised.
3981
3982 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
3983
3984         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
3985 2001-11-18  Bernhard Held  <bernhard@bernhardheld.de>
3986
3987         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
3988
3989         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
3990
3991         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
3992
3993 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
3994
3995         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
3996
3997         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
3998
3999 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
4000
4001         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
4002
4003         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
4004
4005         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
4006
4007 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
4008
4009         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
4010         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
4011         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
4012
4013         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
4014
4015         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
4016         (genNotFloat): Added.
4017         (genUminusFloat): Added.
4018
4019         * device/lib/z80/Makefile: Added floating pt stubs.
4020
4021         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
4022
4023         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
4024
4025         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
4026
4027 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
4028
4029         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
4030
4031         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
4032
4033         * sdcc/support/regression/Makefile: Add port ds390.
4034
4035         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
4036
4037         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
4038
4039         * sdcc/support/regression/ports/ds390/spec.mk: Added.
4040
4041         * sdcc/support/regression/ports/ds390/support.c: Added.
4042
4043         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
4044
4045         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
4046
4047         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
4048
4049 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
4050
4051         * device/include/malloc.h: Added z80 and gbz80 support.
4052
4053         * device/lib/gbz80/heap.s: Added.
4054
4055         * device/lib/z80/heap.s: Added.
4056
4057         * device/lib/malloc.c: Added z80 and gbz80 support.
4058
4059         * support/regression/tests/malloc.c (testMalloc): Added.
4060
4061         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
4062
4063         * support/regression/tests/bug-478094.c: Added.
4064
4065         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
4066
4067 2001-11-04  Bernhard Held  <bernhard@bernhardheld.de>
4068
4069         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
4070
4071         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
4072
4073         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
4074
4075         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
4076
4077         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
4078
4079 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
4080
4081         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
4082
4083 2001-11-03  Michael Hope  <michaelh@juju.net.nz>
4084
4085         * support/regression/tests/bug-477927.c: Added.
4086
4087         * src/z80/peeph.def: Added minor rules.
4088
4089         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
4090
4091         * src/z80/peeph.def: Added jump optimisation modification.
4092
4093 2001-11-01  Michael Hope  <michaelh@juju.net.nz>
4094
4095         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
4096
4097 2001-10-30  Michael Hope  <michaelh@juju.net.nz>
4098
4099         * support/regression/tests/funptrs.c: Added.
4100
4101 2001-10-29  Michael Hope  <michaelh@juju.net.nz>
4102
4103         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
4104
4105 2001-10-28  Michael Hope  <michaelh@juju.net.nz>
4106
4107         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
4108
4109         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
4110
4111         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
4112         (movLeft2ResultLong): Created.
4113
4114         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
4115         (joinPushes): Added.  Joins two char pushes into a word push.
4116
4117 2001-10-27  Michael Hope  <michaelh@juju.net.nz>
4118
4119         * support/cpp2/Makefile.in (install): Added creation of dest dir.
4120
4121         * support/makebin/Makefile (install): Added creation of dest dir.
4122
4123 2001-10-24 Karl Bongers <karl@turbobit.com>
4124
4125         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
4126
4127 2001-10-21  Michael Hope  <michaelh@juju.net.nz>
4128
4129         * src/z80/ralloc.c: Turned off faulty pack for one use.
4130
4131         * src/z80/peeph-gbz80.def: Removed redundent restart options.
4132
4133         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
4134
4135 2001-10-21  Bernhard Held  <bernhard@bernhardheld.de>
4136
4137         * support/regression/Makefile: Improved clean
4138
4139         * support/regression/ports/gbz80/spec.mk: Added clean
4140
4141         * support/regression/ports/host/spec.mk: Added clean
4142
4143         * support/regression/ports/z80/spec.mk: Added clean
4144
4145         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
4146
4147         * support/regression/ports/mcs51/timeout.c: little improvements
4148
4149 2001-10-17  Michael Hope  <michaelh@juju.net.nz>
4150
4151         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
4152
4153         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
4154
4155         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
4156
4157 2001-10-16  Bernhard Held  <bernhard@bernhardheld.de>
4158
4159         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
4160
4161         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
4162
4163 2001-10-13  Michael Hope  <michaelh@juju.net.nz>
4164         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
4165
4166         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
4167
4168         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
4169
4170         * src/mcs51/main.c (_linkCmd): Added bin path to command.
4171
4172         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
4173
4174         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
4175
4176         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
4177
4178         * support/regression/tests/longor.c: Added.
4179
4180 2001-10-11  Bernhard Held  <bernhard@bernhardheld.de>
4181
4182         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
4183
4184         * as/mcs51/aslink.h: define PATH_MAX
4185
4186         * as/mcs51/asm.h: define PATH_MAX
4187
4188         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
4189
4190         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
4191
4192         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
4193
4194         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
4195
4196         * src/SDCCglobl.h: define PATH_MAX
4197
4198         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
4199
4200         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
4201
4202 2001-10-11  Michael Hope  <michaelh@juju.net.nz>
4203
4204         * src/z80/gen.c (gencjneshort): Fixed
4205
4206         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
4207
4208 2001-10-09  Michael Hope  <michaelh@juju.net.nz>
4209
4210         * support/regression/tests/bug-469671.c: Added.
4211
4212         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
4213
4214 2001-10-08  Michael Hope  <michaelh@juju.net.nz>
4215
4216         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
4217
4218         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
4219
4220 2001-10-08  Bernhar Held  <bernhard@bernhardheld.de>
4221
4222         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
4223
4224         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
4225
4226         * src/device/lib/_mullong.c : removed hint: nooverlay bug
4227
4228         * src/device/lib/_divuint.c : removed hint: nooverlay bug
4229
4230         * src/device/lib/_divulong.c: removed hint: nooverlay bug
4231
4232         * src/device/lib/_moduint.c : removed hint: nooverlay bug
4233
4234         * src/device/lib/_modulong.c: removed hint: nooverlay bug
4235
4236 2001-10-07  Michael Hope  <michaelh@juju.net.nz>
4237
4238         * 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.
4239
4240         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
4241
4242         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
4243
4244 2001-10-07    <johan@FRIJA>
4245
4246         * device/lib/gets.c (gets): fixed the return value.
4247
4248 2001-10-06  Michael Hope  <michaelh@juju.net.nz>
4249         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
4250
4251         * 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.
4252
4253         * 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.
4254
4255         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
4256
4257         * src/pic/gen.c: Removed Safe_strdup.
4258
4259         * configure.in: Added option to enable libgc support.
4260
4261         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
4262         (bitVectUnion): Optimised.
4263         (bitVectIntersect): Optimised.
4264         (bitVectBitsInCommon): Optimised.
4265         (bitVectCplAnd): Optimised.
4266
4267         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
4268
4269 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
4270
4271         * src/SDCCmain.c: distinguish between assembler debug and plain options
4272
4273         * src/avr/main.c:   remove standard assembler options
4274
4275         * src/ds390/main.c: remove standard assembler options
4276
4277         * src/mcs51/main.c: remove standard assembler options
4278
4279         * src/port.h: removed "PENDING" comment
4280
4281 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
4282
4283         * src/device/lib/_mulint.c  : new, with assember functions
4284
4285         * src/device/lib/_mullong.c : new, with assember functions
4286
4287         * src/device/lib/_divuint.c : with assember functions
4288
4289         * src/device/lib/_divsint.c : with assember functions
4290
4291         * src/device/lib/_divulong.c: with assember functions
4292
4293         * src/device/lib/_divslong.c: with assember functions
4294
4295         * src/device/lib/_moduint.c : with assember functions
4296
4297         * src/device/lib/_modsint.c : with assember functions
4298
4299         * src/device/lib/_modulong.c: with assember functions
4300
4301         * src/device/lib/_modslong.c: with assember functions
4302
4303         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
4304
4305         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
4306
4307         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
4308                                       replaced _mululong.c and _mulslong.c by _mullong.c
4309
4310 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
4311
4312         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
4313
4314 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
4315
4316         * src/SDCCglue.c: test, if win32api is available for MINGW
4317
4318 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
4319
4320         * src/SDCCsymt.c: no more _modifier in printTypeChain()
4321         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
4322         * support/regression/ports/gbz80/spec.mk: removed GENERIC
4323         * support/regression/ports/host/spec.mk: removed GENERIC
4324         * support/regression/ports/mcs51/spec.mk: removed GENERIC
4325         * support/regression/ports/z80/spec.mk: removed GENERIC
4326
4327 2001-10-01  Michael Hope  <michaelh@juju.net.nz>
4328
4329         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
4330
4331         * support/regression/tests/bug-467035.c: Created.
4332
4333 2001-10-01    <johan@FRIJA>
4334
4335         * src/SDCC.y: fixed bug #466586 part 1
4336
4337 2001-10-01  Johan Knol <johan.knol@iduna.nl>
4338
4339         * SDCCicode.c: z80 has no generic pointers
4340         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
4341         
4342 2001-09-30  Michael Hope  <michaelh@juju.net.nz>
4343
4344         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
4345
4346 2001-09-29  Michael Hope  <michaelh@juju.net.nz>
4347
4348         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
4349
4350         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
4351
4352 2001-09-25  Michael Hope  <michaelh@juju.net.nz>
4353
4354         * configure.in: Fixed up so that ucsim is only configured once.
4355
4356         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
4357
4358         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
4359         (getPathDifference): As above.
4360
4361         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
4362
4363         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
4364
4365 2001-09-23  Michael Hope  <michaelh@juju.net.nz>
4366         * .version: Updated to 2.3.1
4367
4368         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
4369         Added copyright header.
4370
4371         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
4372         (assemble): Added support for macro based assembler commands.
4373         (linkEdit): Added support for macro based linker commands.
4374         (preProcess): Changed the pre-processor to use macros.
4375         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
4376         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
4377
4378         * device/lib/z80/crt0.s: Added module name for debugging.
4379
4380 2001-09-20  Michael Hope  <michaelh@juju.net.nz>
4381
4382         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
4383
4384         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
4385
4386         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
4387
4388         * src/Makefile.in: Added SDCCmacro and SDCCutil
4389
4390 2001-09-19  Michael Hope  <michaelh@juju.net.nz>
4391
4392         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
4393
4394 2001-09-16    <johan@FRIJA>
4395
4396         * 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.
4397
4398 2001-09-15    <johan@FRIJA>
4399
4400         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
4401         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
4402
4403 2001-09-11    <johan@FRIJA>
4404
4405         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
4406
4407 2001-09-10  Michael Hope  <michaelh@juju.net.nz>
4408
4409         * support/regression/tests/bug-460444.c: Added test case.
4410
4411         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
4412         (genCast): Added justification for all of the asserts.
4413
4414 2001-09-10  Bernhard Held <bernhard@bernhardheld.de>
4415
4416         * support/regression/support.c: _xdata replaced by xdata
4417
4418         * support/regression/spec.mk: removed _generic
4419
4420 2001-09-09  Michael Hope  <michaelh@juju.net.nz>
4421
4422         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
4423
4424         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
4425         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
4426
4427         * src/z80/peeph.def: Added a rule to optimise shift then compare.
4428
4429         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
4430
4431         * support/regression/tests/bug-460010.c: Added test case.
4432
4433         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
4434
4435 2001-09-09  Bernhard Held <bernhard@bernhardheld.de>
4436
4437         * support/regression/Makefile: inter-port-clean adjusted for mcs51
4438
4439         * support/regression/testfwk.c: removed workaround for bug #436344
4440
4441         * support/regression/tests/bp.c: use less memory with mcs51
4442
4443         * support/regression/tests/bug-441448.c: use less memory
4444
4445         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
4446
4447         * support/regression/collate-results.py: typo
4448
4449 2001-09-08  Michael Hope  <michaelh@juju.net.nz>
4450
4451         * support/regression/tests/fetchoverlap.c: Added new test case.
4452
4453         * support/regression/tests/bp.c: Added new test case.
4454
4455         * support/regression/tests/bug-448984.c: Added new test case.
4456
4457         * support/regression/tests/pow2shifts.c: Added new test case.
4458
4459         * src/z80/gen.c: Turned off the noise it normally generates for the release.
4460         (genlshTwo): Fixed right shift for count > 8.
4461
4462         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
4463
4464 2001-09-08    <johan@FRIJA>
4465
4466         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
4467
4468 2001-09-07    <johan@FRIJA>
4469
4470         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
4471
4472         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
4473
4474 2001-09-06    <johan@FRIJA>
4475
4476         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
4477         * bernhard noted me at this: "() equals to (void)" (1.38)
4478
4479 2001-09-05    <johan@FRIJA>
4480
4481         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
4482
4483 2001-09-04    <johan@FRIJA>
4484
4485         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
4486
4487
4488 2001-09-04  Paul Stoffregen  <paul@pjrc.com>
4489
4490         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
4491
4492 2001-09-03  Michael Hope  <michaelh@juju.net.nz>
4493
4494         * link/z80/aslink.h: Fixed path for PATH_MAX
4495
4496 2001-09-02  Michael Hope  <michaelh@juju.net.nz>
4497
4498         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
4499
4500         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
4501
4502         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
4503
4504         * 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.
4505
4506 2001-09-01  Michael Hope  <michaelh@juju.net.nz>
4507
4508         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
4509         (genCmp): Fixed up genCmp for the GB with longs.
4510
4511         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
4512
4513         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
4514
4515         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
4516
4517         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
4518
4519 2001-08-30  Paul Stoffregen  <paul@pjrc.com>
4520
4521         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
4522
4523 2001-08-30  Michael Hope  <michaelh@juju.net.nz>
4524
4525         * 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.
4526
4527         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
4528
4529 2001-08-29  Michael Hope  <michaelh@juju.net.nz>
4530
4531         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
4532
4533         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
4534
4535 2001-08-30 Bernhard Held   <bernhard@bernhardheld.de>
4536
4537   * sim/ucsim/configure:    little improvement of Cygwin-detection      
4538   * sim/ucsim/configure.in: little improvement of Cygwin-detection      
4539   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
4540   * support/regression/tests/bug-221100.c: small changes for mcs51
4541   * support/regression/tests/bug-221168.c: small changes for mcs51
4542   * support/regression/tests/bug-227710.c: small changes for mcs51
4543   * support/regression/tests/staticinit.c: small changes for mcs51
4544   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
4545   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
4546   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601