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