src/pic/glue.c (pic14printPublics): fix bitvars can't be public
[fw/sdcc] / ChangeLog
1 2003-08-26  Bernhard Held <bernhard@bernhardheld.de>
2
3         pic patch provided by Slade Rich <slade_rich@yahoo.com>
4         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
5         type for bits was changed. It resulted in bit variables becoming
6         global, which is not permitted in PIC 14 assembly output.
7
8 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
9
10         * doc/sdccman.lyx: various additions and updates. Rearranged sections
11
12 2003-08-22  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
13
14         Z80 and MCS51 linkers complaint if a public symbol is defined
15         in more than one library module:
16
17         * as/mcs51/lklib.c
18         * link/z80/lklib.c
19         * as/mcs51/Makefile.in
20
21 2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
22
23         A few small changes that speed up the peephole optimizer.
24
25         * src/SDCCpeeph.c
26
27 2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
28
29         Try to make the peephole optimizer smarter by maintaining
30         an association between the assembly source code and the
31         iCodes that originated them. Put this information to use
32         with a new peephole rule condition "notVolatile" so that
33         the rules can be aggressive yet still safe.
34
35         * src/SDCCpeeph.c
36         * src/SDCCpeeph.h
37         * src/mcs51/gen.c
38         * src/mcs51/peeph.def
39
40 2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
41
42         Fixed bug #741761
43
44         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
45         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
46         if the left or right operand symbols have the accuse flag set.
47
48 2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
49
50         Changed the type of the result of the ! (NOT) operator to char;
51         previously it returned the same type as the source. This allows
52         us to eliminate all the genFloatNot functions (all of its target
53         implementations were very buggy) since !float can use the same
54         code as !long now.
55
56         * src/SDCCicode.c (ast2iCode): ! returns char
57         * src/mcs51/gen.c (genNot, genNotFloat),
58         * src/ds390/gen.c (genNot, genNotFloat),
59         * src/z80/gen.c (genNot, genNotFloat),
60         * src/pic/gen.c (genNot, genNotFloat),
61         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
62
63 2003-08-19  Bernhard Held <bernhard@bernhardheld.de>
64
65         pic patch provided by Slade Rich <slade_rich@yahoo.com>
66         1. Interrupt would not compile properly. Ensure PCLATH register is saved
67            during interrupts. Ensure WSAVE is located at a shared bank address.
68         2. Fixed page selection in some places
69         3. Fixed BTFSS/C to where necessary use registers directly and not simply
70            the registers name strings.
71         4. Fixed "signed / unsigned compare" compiler warnings.
72         5. The PIC port manages its own allocation of the general purpose
73            registers, but makes no attempt to reuse them. As a result when
74            compiling it soon runs out of general purpose registers. Some
75            additional code was added to the files pcode.c and device.c to walk
76            through the function call tree and rename the registers so that they
77            get reused.
78
79         * src/pic/device.c
80         * src/pic/gen.c
81         * src/pic/glue.c
82         * src/pic/pcode.c
83         * src/pic/pcode.h
84         * src/pic/ralloc.c
85         * src/pic/ralloc.h
86         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
87         genPlus() & genMinus() when the result is the same as left or right
88
89 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
90
91         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
92
93 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
94
95         Made bitfield a distinct type from bit so that bitfields
96         convert as per ANSI C and bits retain their traditional
97         boolean style behaviour. Implemented bitfield support in
98         the z80 port.
99
100         * src/SDCCsymt.h,
101         * src/SDCCsymt.c,
102         * src/SDCCast.c,
103         * src/cdbFile.c,
104         * src/mcs51/gen.c,
105         * src/ds390/gen.c: bit v bitfield split
106         * src/z80/gen.c: New support for bitfields
107         * support/regression/tests/bitfields.c: reenabled z80,
108         added more tests
109
110 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann@web.de>
111
112         Rules 246.x, 247.x relate to bitfields, the others speed up
113         access to xdata mapped I/O devices.
114
115         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
116
117 2003-08-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>
118
119         Cleaned up genPackBits and genUnpackBits and added two helper
120         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
121         for literal assignments in genPackBits (thanks to Frieder for
122         reminding me).
123
124         * src/mcs51/gen.c
125         * src/ds390/gen.c
126
127 2003-08-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>
128
129         Fixed bug #748310 (pointer to function type mishandled when the
130         function name is omitted). Also fixed a SIGSEGV when a function
131         attribute (reentrant, etc) is used on a non-function or on a
132         function but misplaced before the parameter list.
133
134         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
135         bug #748310
136         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
137         * support/Util/SDCCerr.h,
138         * support/Util/SDCCerr.c: Added func attr misuse error msg
139
140 2003-08-13  Bernhard Held <bernhard@bernhardheld.de>
141
142         Fixed bug #787649 by anonymous
143         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
144         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
145
146 2003-08-14  Erik Petrich <epetrich@ivorytower.norman.ok.us>
147
148         Fixed numerous bitfield problems.
149
150         * src/SDCC.y: More bitfield related error checking
151         * src/SDCCsymt.h,
152         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
153         * support/Util/SDCCerr.h,
154         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
155         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
156         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
157         * support/regression/tests/bitfields.c: tests added
158
159 2003-08-13  Erik Petrich <epetrich@ivorytower.norman.ok.us>
160
161         Made the constant following the "interrupt" keyword optional. If
162         omitted, the function will not automatically be given an entry
163         in the interrupt vector table (similar to #pragma NOIV, but
164         less syntacticly kludgy). The interrupt number is also now
165         range checked. Also fixed a bug in the high order bit example
166         in the manual.
167
168         * src/SDCC.y
169         * src/SDCCmem.c
170         * src/SDCCglue.c
171         * src/SDCCsymt.h
172         * support/Util/SDCCerr.c
173         * support/Util/SDCCerr.h
174         * doc/sdccman.lyx
175
176 2003-08-13  Bernhard Held <bernhard@bernhardheld.de>
177
178         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
179         * src/SDCCicode.c (operandOperation): rewritten some ops
180         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
181         * src/SDCCsymt.c (computeType): literals are handled the same way as any
182         other type
183         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
184         be re-activated by defining REDUCE_LITERALS)
185         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
186         unsigned, but are signed by default
187         * src/SDCCval.c (constVal): rearranged
188         * src/SDCCval.c (valMod): preliminary fix
189         * src/SDCCval.c (valCastLiteral): use TYPE_* types
190         * support/regression/literalop.c: added, work in progress
191
192 2003-08-12  Erik Petrich <epetrich@ivorytower.norman.ok.us>
193
194         Generate warnings for useless declarations like "char data;"
195         that don't do what new users expect.
196
197         * src/SDCC.y
198         * support/Util/SDCCerr.h
199         * support/Util/SDCCerr.c
200
201 2003-08-09  Bernhard Held <bernhard@bernhardheld.de>
202
203         * src/SDCCval.c (valMult): fix overflow detection of negative int
204
205 2003-08-07  Erik Petrich <epetrich@ivorytower.norman.ok.us>
206
207         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
208
209         Changes to support big endian targets:
210
211         * src/ports.h
212         * src/SDCCglue.c
213         * src/avr/main.c
214         * src/ds390/main.c
215         * src/izt/i186.c
216         * src/mcs51/main.c
217         * src/pic/main.c
218         * src/pic16/main.c
219         * src/xa51/main.c
220         * src/z80/main.c
221
222 2003-08-06  Bernhard Held <bernhard@bernhardheld.de>
223
224         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
225         * device/lib/time.c: fixed warning "integer overflow in expression"
226
227 2003-08-05  Bernhard Held <bernhard@bernhardheld.de>
228
229         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
230         * src/SDCCval.c (constVal): changed default to signed; hex and octal
231         constants are unsigned; added recognition of "u" flag for unsigned
232         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
233         * src/SDCCval.c (valDiv, valMod): fixed signdness
234         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
235         signedness of modulo, left and right shift
236         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
237         * support/Util/SDCCerr.h: added warning W_INT_OVL
238         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
239         * src/SDCCast.c (ast_print): improved output of constants
240
241 2003-08-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
242
243         Fixed some warnings when building with MSVC:
244
245         * as\mcs51\asdata.c
246         * as\z80\asdata.c
247         * as\mcs51\asm.h
248         * as\z80\asm.h
249         * link\z80\aslink.h
250         * link\z80\lkdata.c
251         * link\z80\lkeval.c
252         * link\z80\lkgb.c
253         * link\z80\lkihx.c
254         * link\z80\lks19.c
255         * link\z80\lksym.c
256         * support\cpp2\cpplib.c
257         * src\ds390\gen.c
258         * src\mcs51\gen.c
259     
260 2003-08-03  Bernhard Held <bernhard@bernhardheld.de>
261
262         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth@isi.edu>
263
264 2003-08-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
265
266         * support\librarian\clean.mk: Do not remove Makefile.
267         * support\librarian\Makefile: added.
268
269 2003-08-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
270
271         Added librarian to MSVC build:
272         * all.dsp
273         * sdcc.dsw
274         * support\librarian\librarian.dsp
275
276         'configure' not needed for librarian, removed:
277         * support\librarian\configure
278         * support\librarian\configure.in
279         * support\librarian\config_in.h
280         * support\librarian\Makefile.in
281
282         Hopefully these ones built the librarian and the rest of sdcc properly:
283         * Makefile
284         * Makefile.common.in
285
286         Messed up 'configure', so revert to previous version:
287         * configure
288         * configure.in
289
290 2003-07-31  Bernhard Held <bernhard@bernhardheld.de>
291
292         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
293         there, while the mantissa of a double is "only" 53 bits wide.
294
295 2003-07-31  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
296
297         Adding sdcclib to the build.  MSVC project coming soon.
298         Files added/changed:
299
300         * support\librarian\clean.mk
301         * support\librarian\configure
302         * support\librarian\configure.in
303         * support\librarian\config_in.h
304         * support\librarian\Makefile.bcc
305         * support\librarian\Makefile.in
306         * support\librarian\sdcclib.c
307         * Makefile.bcc
308         * Makefile
309         * Makefile.common.in
310         * configure
311         * configure.in
312
313 2003-07-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
314
315         Linker now complaints if linked modules have conflicting options, for
316         example, one compiled using --model-large and another one compiled with
317         --model-small.  The following files were modified:
318
319         * as\mcs51\asdata.c
320         * as\mcs51\aslink.h
321         * as\mcs51\asm.h
322         * as\mcs51\asmain.c
323         * as\mcs51\asout.c
324         * as\mcs51\i51pst.c
325         * as\mcs51\lkdata.c
326         * as\mcs51\lklibr.c
327         * as\mcs51\lkmain.c
328         * as\z80\asdata.c
329         * as\z80\asm.h
330         * as\z80\asmain.c
331         * as\z80\asout.c
332         * as\z80\z80pst.c
333         * link\z80\aslink.h
334         * link\z80\lkdata.c
335         * link\z80\lklibr.c
336         * link\z80\lkmain.c
337         * src\SDCCglue.c
338
339 2003-07-28  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
340
341         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
342         as/mcs51/lklibr.c: Generate a warning when a library is not found.
343
344 2003-07-28  Bernhard Held <bernhard@bernhardheld.de>
345
346         * src/z80/mappings.i: fix _mul[us][int,long] entries
347
348 2003-07-26  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
349
350         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
351
352 2003-07-24  Bernhard Held <bernhard@bernhardheld.de>
353
354         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
355         * support/regression/tests/bitopcse.c: added
356         fixed warning:
357         * src/avr/gen.c:
358         * src/pic/gen.c:
359         * src/pic16/gen.c:
360         * src/z80/gen.c:
361         * src/xa51/gen.c:
362
363 2003-07-24  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
364
365         added support for new library format to z80, gbz80 linkers:
366         *link/z80/aslink.h
367         *link/z80/lklex.c
368         *link/z80/lklib.c
369         *link/z80/lklist.c
370
371 2003-07-24  Bernhard Held <bernhard@bernhardheld.de>
372
373         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
374         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
375
376 2003-07-23  Bernhard Held <bernhard@bernhardheld.de>
377
378         added DUMMY_READ_VOLATILE:
379         * src/SDCC.y:
380         * src/avr/gen.c:
381         * src/xa51/gen.c:
382         * src/z80/gen.c:
383         * src/pic/gen.c:
384         * src/pic16/gen.c:
385         * src/mcs51/gen.c:
386         * src/ds390/gen.c:
387         * src/SDCCcse.c (algebraicOpts): many improvements
388         * src/SDCCcse.h: removed algebraicOpts()
389         * src/SDCCicode.c (picDummyRead): added
390
391 2003-07-23  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
392
393         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
394         "Insufficient space in data memory".
395
396 2003-07-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
397
398         * src/mcs51/gen.c: fixed bug #771358
399         * src/z80/gen.c: fixed bug #759087
400
401 2003-07-20  Bernhard Held <bernhard@bernhardheld.de>
402
403         * src/pic16/glue.c: minor cleanup by Vangelis
404
405 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann@web.de>
406
407         * device/include/regc515c.h: fixed #758477
408         * device/lib/_gptrget.c: saving some cycles in generic pointer get
409         * device/lib/_gptrput.c: saved a few bytes
410         * my tab spacing is 8, yours too?)
411         * device/lib/_ser.c: process RX bytes earlier than TX bytes
412         * device/lib/serial.c: process RX bytes earlier than TX bytes
413         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
414
415 2003-07-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
416
417         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
418
419 2003-07-17  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
420
421     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
422
423 2003-07-17  Bernhard Held <bernhard@bernhardheld.de>
424
425         * device/lib/Makefile.in: bad fix, reverted to 1.43
426
427 2003-07-16  Bernhard Held <bernhard@bernhardheld.de>
428
429         * device/lib/Makefile.in: added missing z80 object files
430
431 2003-07-14  Bernhard Held <bernhard@bernhardheld.de>
432
433         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
434         pic16 progress by Vangelis:
435         * src/SDCCglobl.h:
436         * src/SDCCmain.c:
437         * src/pic/Makefile:
438         * src/pic:
439         * pic/Makefile:
440         * pic16/device.c:
441         * pic16/device.h:
442         * pic16/gen.c:
443         * pic16/gen.h:
444         * pic16/genarith.c:
445         * pic16/glue.c:
446         * pic16/main.c:
447         * pic16/pcode.c:
448         * pic16/pcode.h:
449         * pic16/pcodepeep.c:
450         * pic16/peeph.def:
451
452 2003-07-13  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
453
454     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
455
456 2003-07-12  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
457
458     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
459     added gbz80 build to MSVC project.
460     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
461     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
462     from 8051 stuff and setup so it links using a .lnk file.
463
464 2003-07-06  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
465
466     * support/librarian/sdcclib.c: sdcc librarian.
467     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
468     with sdcclib.
469
470 2003-07-03  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
471
472     * as/mcs51/lkmain.c: properly handle extensions in function afile.
473
474 2003-07-02  Borut Razem <borut.razem@siol.net>
475
476         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
477         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
478         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
479         src/xa51/main.c, src/z80/main.c:
480         virtualization of glue() function: each port has it's own glue function,
481         which is accessed by do_glue function pointer in PORT.general structure
482
483 2003-07-01 Kevin Vigor <kevin@vigor.nu>
484
485         * DS800C400 fun, improved ROM interface and tinibios.
486
487 2003-06-27 Kevin Vigor <kevin@vigor.nu>
488
489         * More support for DS80C400. Now includes beginning of interface to ROM.
490
491 2003-06-25  Bernhard Held <bernhard@bernhardheld.de>
492
493         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
494
495 2003-06-20  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
496
497         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
498
499 2003-06-19  Borut Razem <borut.razem@siol.net>
500
501         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
502
503 2003-06-19  Borut Razem <borut.razem@siol.net>
504
505         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
506         fixed Z80 port - crt0.o: cannot open.
507
508 2003-06-19  Bernhard Held <bernhard@bernhardheld.de>
509
510         * support/Util/MySystem.c (merge_command): revert bad fix
511
512 2003-06-18  Borut Razem <borut.razem@siol.net>
513
514         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
515
516 2003-06-18  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
517
518         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
519         option --use-stdout sends errors to stdout instead of stderr.
520
521 2003-06-18  Bernhard Held <bernhard@bernhardheld.de>
522
523         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
524
525 2003-06-15  Borut Razem <borut.razem@siol.net>
526
527         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
528         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
529         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
530         fixed width array of pointers replaced with sets;
531         multiple include and lib paths ared transferred to preprocessor and linker
532         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
533         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
534         fixed width array of pointers
535         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
536         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
537         fixupPath(), getPathDifference()
538         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
539         fixed width array of pointers
540
541 2003-06-11  Bernhard Held <bernhard@bernhardheld.de>
542
543         * src/pic16/ralloc.c: fix warnings
544         * src/pic16/pcode.c: fix warning
545
546 2003-06-10  Scott Dattalo  <scott@dattalo.com>
547
548          Scott D. for Vangelis Rokas (vrokas@otenet.gr). I (scott) don't
549         know all the details, but essentially this set of changes enable
550         the pic16 port to generate movff instructions and generate assembler
551         directives,
552         * src/SDCCmain.c:
553         * src/pic16/gen.c:
554         * src/pic16/glue.c:
555         * src/pic16/pcode.c:
556         * src/pic16/device.c:
557         * src/pic16/main.c:
558         * src/pic16/pcode.h:
559         * src/pic16/pcoderegs.c:
560         * src/pic16/ralloc.c:
561         * src/pic16/ralloc.h:
562
563 2003-06-08  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
564
565         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
566         added option --vc, so sdcc errors and warnings are compatible with
567         Microsoft Visual Studio.
568
569 2003-06-07  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
570
571         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
572           device/lib/libfloat.lib: added atof function.
573
574 2003-06-04  Bernhard Held <bernhard@bernhardheld.de>
575
576         * doc/sdccman.lyx: updated to Lyx 1.3
577         * doc/cdbfileformat.lyx: updated to Lyx 1.3
578         * doc/test_suite_spec.lyx: updated to Lyx 1.3
579         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
580
581 2003-06-03  Bernhard Held <bernhard@bernhardheld.de>
582
583         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas@otenet.gr>
584
585 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann@web.de>
586
587         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
588           additions to the "related tools/documentation" section
589
590 2003-06-02  Bernhard Held <bernhard@bernhardheld.de>
591
592         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
593
594 2003-05-29  Bernhard Held <bernhard@bernhardheld.de>
595
596         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn@vt.edu>
597         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
598
599 2003-05-28  Bernhard Held <bernhard@bernhardheld.de>
600
601         * doc/sdccman.lyx: fix double dash and other minor things
602         * doc/Makefile: fix double dash
603
604 2003-05-28  Karl Bongers(patches from Martin Helmling)
605         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
606           condition and ignore commands.
607
608 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann@web.de>
609
610         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
611           is in parts still quite out of date, I did changes as far as I felt makes sense
612           for a non-native english speaker.
613           Please feel free to add to the manual or to correct my changes.
614         * doc/Makefile: undid touching the date of intermediate tex files.
615
616 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann@web.de>
617
618         * doc/sdccman.lyx: Manual has an index now
619
620 2003-05-25  Bernhard Held <bernhard@bernhardheld.de>
621
622         Finalize muluint/mulsint and mululong/mulslong merging:
623         * device/lib/_mulint.c
624         * device/lib/_mullong.c
625         * device/lib/gbz80/mul.s
626         * device/lib/gbz80/stubs.s
627         * device/lib/z80/mul.s
628         * device/lib/z80/stubs.s
629         * src/SDCCsymt.c (initCSupport)
630
631 2003-05-25  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
632
633         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
634         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
635           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
636           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
637           instead of /Zm500.
638
639 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann@web.de>
640
641         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
642           the regression tests I'm not brave enough to enable 245.b, 245.c
643         * doc/sdccman.lyx: added latex preamble for hyperref package.
644           Using pdflatex this will give you a hyperlinked pdf file with
645           bookmarks. (prepend '%' before /usepackage if this breaks something)
646
647 2003-05-24  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
648
649          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
650          
651 2003-05-22  Bernhard Held <bernhard@bernhardheld.de>
652
653         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
654
655 2003-05-21    <johan@balder>
656
657         * src/SDCCglue.c (printIval): fixed bug #739934
658
659 2003-05-19  Bernhard Held <bernhard@bernhardheld.de>
660
661         Applied patch from bug 737905 (renamed yylineo to mylineno):
662         * src/altlex.c
663         * src/SDCCast.c
664         * src/SDCglobl.h
665         * src/SDCC.lex
666         * src/SDCCsymt.c
667         * src/SDCCval.c 
668         * src/pic16/pcode.c: Cleaned warnings
669         * src/pic16/pcodeflow.c: Cleaned warnings
670         * src/pic16/pcoderegs.c: Cleaned warnings
671
672 2003-05-19  Scott Dattalo  <scott@dattalo.com>
673
674         * src/pic16/pcode.c: Cleaned warnings
675         * src/pic16/pcodepeep.c: Cleaned warnings
676         * src/pic16/ralloc.c: Cleaned warnings
677
678 2003-05-19  Bernhard Held <bernhard@bernhardheld.de>
679
680         * doc/sdccman.lyx: fixed bug 739745
681         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
682
683 2003-05-18  Bernhard Held <bernhard@bernhardheld.de>
684
685         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
686         it can be defined with CFLAGS when running configure
687         * src/SDCCmain.c: fixed compiling + linking with object files
688
689 2003-05-18  Vangelis Rokas (vrokas@otenet.gr)
690
691         * configure.in: configure for pic16 port,
692             added --disable-pic16-port
693         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
694         * src/SDCCmain.c: linkOptions is changed to set *,
695             added if/endif conditional macros to remove options help
696             messages from optionsTable when a port is not configured, added
697             support for the PIc16 port in the ports table, when executing
698             the compiler with no port specified on command line, a default
699             port is selected with the new macro DEFAULT_PORT which is
700             defined in port.h, in setDefaultOptions() linkOptions is removed
701             from initialization assignment, since now it is a set,
702             parseCmdLine uses setParseWithComma for linkOptions, in
703             linkEdit() linkOptions are accessed with new function indexSet()
704             which returns the i'th item of a set variable. See SDCCset.c, in
705             linkEdit() when calling buildCmdLine(), added linkOptions as
706             last argument. Now users can pass arguments to gplink via the
707             -Wl option, main() uses pic16glue() to glue up pic16 programs
708         * src/SDCCpeeph.c: various changes to support pic16
709         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
710             return the i'th item of the set
711         * src/SDCCset.h: added function prototype for indexSet()
712         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
713         * src/clean.mk: added pic16 in CLEANALLPORTS variable
714         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
715             added macro DEFAULT_PORT
716         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
717         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
718             generated
719         * src/pic16/glue.c: commented out some error producing lines
720         * src/pic16/main.c: __config directives are commented out to stop
721             gpasm complaining and test the linkage with gplink, _linkCmd and
722             _asmCmd changed to be more gplink and gpasm friendly
723         * src/pic16/peeph.def: peep rule 3 is commented out, since it
724             produced an error when parsed, peep rule 12 is added to utilize
725             movff, but it is commented out since the pCode does not support
726             yet a command with 2 address arguments
727
728 2003-05-18    <johan@balder>
729
730         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
731         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
732 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
733
734         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
735   Added feature to script commands from file.
736
737 2003-05-14  Bernhard Held <bernhard@bernhardheld.de>
738
739         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
740         * src/SDCCutil.c: include ctype.h for win32
741
742 2003-05-13  Bernhard Held <bernhard@bernhardheld.de>
743
744         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
745
746 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
747
748         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
749   Fixed so you can set breakpoints prior to run, run does not stop
750   on entry now.  Add tbreak.  Other enhancements and fixes for use
751   with ddd.
752
753 2003-05-12  Borut Razem <borut.razem@siol.net>
754
755         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
756
757 2003-05-11  Borut Razem <borut.razem@siol.net>
758
759         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
760         the path of bin directory, so that PATH is the only env. variable, which has to be set
761         in case of standard installation.
762         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
763         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
764         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
765
766 2003-05-04  Bernhard Held <bernhard@bernhardheld.de>
767
768         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
769         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
770         temp files are in the port dir; clean the gen/test directory when
771         generating new test.c
772         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
773         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
774         * support/regression/tests/zeropad.c: added
775
776 2003-05-09    <johan@balder>
777
778         * src/SDCCglue.c: fixed bug #597940
779
780 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
781
782         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
783   cache sfr, optimize next,step, fix off by one sourceline,
784   support ddd list function.
785         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
786
787 2003-05-04  Bernhard Held <bernhard@bernhardheld.de>
788
789         * support/regression/HTMLgen.py: added compare_s2f()
790         * support/regression/Makefile: redo 1.27
791         * support/regression/generate-cases.py: redo 1.5
792
793 2003-04-30  Bernhard Held <bernhard@bernhardheld.de>
794
795         * support/regression/tests/float.c: workaround 33 bit hex constant
796         * support/regression/tests/simplefloat.c: fix division for host
797
798 2003-04-29  Scott Dattalo  <scott@dattalo.com>
799
800         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim@jimhawkridge.uk.eu.org>
801         that tame's the PIC's over-aggressive optimizer.
802
803 2003-04-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
804
805          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
806          support for MSVC.
807          
808 2003-04-29  Kevin Vigor <kevin@vigor.nu>
809
810         Initial support for DS80C400. "Hello world" runs on TINIm400
811         (with polled I/O).
812
813 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
814
815          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
816          * Some notes on ddd usage added in debugger/README
817          Martin Helmling adding more features and fixes for ddd GUI debugger.
818          Code added for nexti, stepi, up, down, and other adjustments.
819
820 2003-04-28  Scott Dattalo  <scott@DATTALO.COM>
821
822         * src/pic/pCodepeep.c non-wildcard asmops are now handled
823         * src/pic/peeph.def Added two rules to optimize carry manipulation
824         * src/pic/* removed debug printfs
825
826 2003-04-28  Bernhard Held <bernhard@bernhardheld.de>
827
828         * debugger/mcs51/cmd.c: added header newalloc.h
829
830 2003-04-26  Bernhard Held <bernhard@bernhardheld.de>
831
832         * as/Makefile: new EXEEXT
833         * as/z80/Makefile: remove trailing slash of BUILDIR
834         * as/z80/clean.mk: new EXEEXT
835         * Makefile.common.in: add to CFLAGS (and others), don't replace it
836         * support/cpp2/Makefile.in: new EXEEXT
837         * src/pic/glue.c (pic14emitRegularMap): fixed warning
838
839 2003-04-24  Bernhard Held <bernhard@bernhardheld.de>
840
841         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
842         EXEEXT was introduced to fix all related problems with targets
843         "clean", "install" and "uninstall"; a couple of further flaws
844         especially with "clean" have been fixed too
845         * as/mcs51/Makefile.in
846         * as/mcs51/clean.mk
847         * as/z80/Makefile
848         * Makefile
849         * clean.mk
850         * debugger/mcs51/Makefile.in
851         * debugger/mcs51/clean.mk
852         * link/z80/Makefile
853         * link/z80/Makefile.in
854         * link/z80/clean.mk
855         * link/Makefile
856         * packihx/Makefile.in
857         * packihx/clean.mk
858         * sim/ucsim/Makefile
859         * sim/ucsim/clean.mk
860         * sim/ucsim/avr.src/Makefile.in
861         * sim/ucsim/avr.src/clean.mk
862         * sim/ucsim/s51.src/Makefile.in
863         * sim/ucsim/s51.src/clean.mk
864         * sim/ucsim/xa.src/Makefile.in
865         * sim/ucsim/xa.src/clean.mk
866         * sim/ucsim/z80.src/Makefile.in
867         * sim/ucsim/z80.src/clean.mk
868         * sim/ucsim/main_in.mk
869         * sim/ucsim/packages_in.mk
870         * sim/ucsim/gui.src/Makefile.in
871         * sim/ucsim/gui.src/serio.src/Makefile.in
872         * sim/ucsim/gui.src/serio.src/clean.mk
873         * src/Makefile.in
874         * src/clean.mk
875         * support/cpp2/Makefile.in
876         * support/cpp2/clean.mk
877         * support/makebin/Makefile
878         * support/makebin/clean.mk
879         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
880         * doc/sdccman.lyx: --program-suffix no longer needed
881
882 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
883
884          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
885          Martin Helmling added support for ddd GUI debugger.
886          Code added to display assembly, set variables, and other commands
887          to interface to ddd.
888
889 2003-04-23  Bernhard Held <bernhard@bernhardheld.de>
890
891         * as/Makefile: fix target clean
892         * as/clean.mk: fix target clean
893         * as/z80/clean.mk: fix target clean
894
895 2003-04-22  Bernhard Held <bernhard@bernhardheld.de>
896
897         * Makefile.common.in: added @EXEEXT@
898         * configure.in: removed all mingw32 stuff
899         * configure: rebuilt from configure.in
900         * doc/sdccman.lyx: updated section "installation"
901         * support/scripts/sdcc_mingw32: adapted to configure
902         * support/scripts/sdcc_cygwin_mingw32: added
903
904 2003-04-22  Scott Dattalo  <scott@dattalo.com>
905
906         * src/pic Added object file support for the PIC port
907         * src/pic Applied patch from Craig Franklin (this started the object file support)
908         * src/regression Updated the PIC regression tests for object files
909
910 2003-04-20  Borut Razem <borut.razem@siol.net>
911
912         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
913           lklex.c: In function `getfid':
914           lklex.c:203: warning: array subscript has type `char'
915         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
916           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
917         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
918           stack handling macros
919
920 2003-04-19  Borut Razem <borut.razem@siol.net>
921
922         * "handling space characters in file path" task:
923         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
924         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
925         * support/Util/MySystem.h: make it self-sufficient
926         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
927           src/z80/main.c, sdcc/as/mcs51/lklex.c:
928           handling space characters in file path
929         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
930           (it will be used by assemblers, which have their own includes, e.g. gpasm)
931         * support/Util/MySystem.c: handling space characters in executable's path
932
933 2003-04-19  Bernhard Held <bernhard@bernhardheld.de>
934
935         * as/z80/Makefile: fix permanent rebuild of z80
936         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
937         * support/regression/tests/bitfields.c: added Johan's bitfields.c
938
939 2003-04-18      Kevin Vigor <kevin@vigor.nu>
940
941         * src/SDCCopt.c: add special case optimization to replace modulo by
942           a power of two with a bitwise AND.
943
944 2003-04-18    <johan@balder>
945
946         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
947
948 2003-04-17    <johan@balder>
949
950         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
951         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
952
953 2003-04-13  Borut Razem <borut.razem@siol.net>
954
955         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
956         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
957           fixed mingw problem in adl_NORMALIZE_PATH
958
959 2003-04-12  Borut Razem <borut.razem@siol.net>
960
961         * fixed "#pragma SAVE/RESTORE can not be nested":
962         * src/SDCC.lex: reworked pragma handling functions
963         * sdcc/src/SDCCglobl.h: reworked stack handling macros
964         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
965
966 2003-04-12  Bernhard Held <bernhard@bernhardheld.de>
967
968         * src/SDCCutil.c (pathEquivalent): defined but not used
969         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
970         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
971         * configure: rebuilt from configure.in
972         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
973         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
974         * device/include/Makefile.in: replace sdcc_datadir
975         * device/lib/Makefile.in: replace sdcc_datadir
976         * Makefile.common.in: add LDFLAGS from configure
977         * packihx/Makefile.in: use LDFLAGS
978         * src/Makefile.in: use LDFLAGS
979         * support/cpp2/Makefile.in: add LDFLAGS from configure
980         * support/makebin/Makefile: use LDFLAGS
981         * .version: bumped version number to 2.3.5
982
983 2003-04-12  Borut Razem <borut.razem@siol.net>
984
985         * completed "different paths" task:
986         * src/SDCCmacro.c: fixed bug in handling quotes
987         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
988         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
989
990 2003-04-12  Bernhard Held <bernhard@bernhardheld.de>
991
992         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
993
994 2003-04-11 kevin Vigor <kevin@vigor.nu>
995
996         * ds390/gen.c ds390/peeph.def: fix bug 706781
997
998 2003-04-11  Borut Razem <borut.razem@siol.net>
999
1000         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
1001
1002 2003-04-10  Scott Dattalo  <scott@dattalo.com>
1003
1004         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
1005         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
1006          set - this bit used to not be set...).
1007         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated 
1008           bad code in PIC Port
1009         * src/regression/and2.c added to test bug 609268
1010         * src/regression/Makefile added and2.c to regression test
1011
1012
1013 2003-04-08    <johan@CP255758-A>
1014
1015         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
1016         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
1017         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
1018
1019 2003-04-07  Bernhard Held <bernhard@bernhardheld.de>
1020
1021         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
1022         fix bug #487815
1023         * support/cpp2/Makefile.in: fix bug #487815
1024         * configure: rebuilt from configure.in
1025         * Makefile.common.in: docdir changed, new path suffixes
1026         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
1027         * sdcc_vc_in.h: reflect changes from sdccconf.h
1028         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
1029         * src/SDCCutil.h: remove BINDIR hack
1030         * doc/sdccman.lyx: update new path hierarchy
1031
1032 2003-04-06    Paul Stoffregen <paul@pjrc.com>
1033
1034         * src/SDCCpeeph.c: added okToRemoveSLOC test
1035
1036 2003-04-06    Paul Stoffregen <paul@pjrc.com>
1037
1038         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
1039
1040 2003-04-06    Paul Stoffregen <paul@pjrc.com>
1041
1042         * src/SDCCpeeph.c: added labelIsReturnOnly test
1043         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
1044
1045 2003-04-05    <johan@balder>
1046
1047         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
1048         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
1049         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
1050         * src/SDCCast.c: fixed a warning
1051         * src/SDCCast.h: fixed a warning
1052         * src/SDCCicode.c (operandFromAst): fixed a warning
1053
1054 2003-04-04    <johan@balder>
1055
1056         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
1057         * src/SDCCast.c (decorateType): fixed bug #715076
1058         * src/SDCC.y: fixed bug #702907
1059
1060 2003-04-03    <johan@balder>
1061
1062         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
1063         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
1064         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
1065         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
1066         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
1067
1068 2003-04-03  Bernhard Held <bernhard@bernhardheld.de>
1069
1070         * _decdptr.c: fix return values
1071         * _gptrget.c: fix return values
1072         * _gptrgetc.c: fix return values
1073         * _gptrput.c: fix return values
1074         * _mulint.c: fix return values
1075         * as/z80/Makefile: fix 'make -j' problem
1076
1077 2003-04-02  Bernhard Held <bernhard@bernhardheld.de>
1078
1079         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
1080         * configure.in: big cleanup, updated to autoconf 2.5x
1081         * configure: rebuilt from configure.in
1082         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
1083         * sdcc_vc_in.h: reflect changes from sdccconf.h
1084         * doc/Makefile: fixed a flaw in "make install"
1085
1086 2003-04-02    <johan@balder>
1087
1088         * src/ds390/gen.c (genCmp): no comments
1089         * src/mcs51/gen.c (genCmp): no comments
1090         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
1091         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
1092
1093 2003-04-01  Bernhard Held <bernhard@bernhardheld.de>
1094
1095         * support/regression/generate-cases.py: place generated file in given sub directory
1096         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
1097         * support/regression/Makefile: improvements for 'make -j';
1098         side effect: it's simpler and faster now
1099
1100 2003-03-31  Borut Razem <borut.razem@siol.net>
1101
1102         * src/z80/main.c: link-{port} and as-{port} defined without path
1103         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
1104
1105 2003-03-31  Bernhard Held <bernhard@bernhardheld.de>
1106
1107         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
1108
1109 2003-03-30  Borut Razem <borut.razem@siol.net>
1110
1111         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
1112           changed type of list parameter to set
1113         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
1114         * src/port.h: changed type of do_assemble() parameter to set
1115         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
1116           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
1117           definition of "cppoutfilename" macro with NULL value in preProcess()
1118         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
1119         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
1120         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
1121           replaced with set *binPathSet
1122         * shash_add() deallocates the item, if allready exsists, before adding the new one
1123         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
1124
1125 2003-03-30  Scott Dattalo  <scott@dattalo.com>
1126
1127         * src/pic/gen.c: Commit patch from Steve Tell <tell@telltronics.org> that fixes
1128           a nested for loop bug in the PIC port
1129         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
1130           for loops
1131
1132 2003-03-29  Bernhard Held <bernhard@bernhardheld.de>
1133
1134         * support/Util/dbuf.h: remove C++ stuff to make it portable
1135
1136 2003-03-28  Borut Razem <borut.razem@siol.net>
1137
1138         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
1139           literal strings in stringLiteral()
1140         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
1141         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
1142           to the project
1143
1144 2003-03-27  Paul Stoffregen <paul@pjrc.com>
1145
1146         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
1147
1148 2003-03-26    <johan@balder>
1149
1150         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
1151         * src/ds390/gen.c (saveRegisters): catched symbol abuse
1152         * src/SDCCast.c (decorateType): fixed " -v < 3"
1153
1154 2003-03-23  Bernhard Held <bernhard@bernhardheld.de>
1155
1156         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
1157         Added Lenny Story's debug infrastructure changes:
1158         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
1159         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
1160         * src/cdbFile.c: added
1161         * src/SDCCdebug.c: added
1162         * src/SDCCdebug.h: added
1163         * src/SDCCast.c (createFunction)
1164         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
1165         * src/SDCCmain.c (parseCmdLine, main)
1166         * src/SDCCmem.c (redoStackOffsets)
1167         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
1168         * src/SDCCsymt.h
1169         * src/common.h
1170         * src/avr/gen.c (genAVRCode)
1171         * src/ds390/gen.c (gen390Code)
1172         * src/mcs51/gen.c (gen51Code) 
1173         * src/pic/gen.c (genpic14Code)
1174         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
1175         * src/xa51/gen.c (genXA51Code)
1176         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
1177
1178 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1179
1180         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
1181         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
1182
1183 2003-03-22    <johan@balder>
1184
1185         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
1186
1187 2003-03-21  Bernhard Held <bernhard@bernhardheld.de>
1188
1189         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
1190         * doc/cdbfileformat.lyx: added, written by Lenny Story
1191         * doc/Makefile: added cdbfileformat.lyx
1192         * doc/clean.mk: added cdbfileformat.lyx
1193
1194 2003-03-20  Bernhard Held <bernhard@bernhardheld.de>
1195
1196         * src/mcs51/peeph.def: fix bug #705773
1197
1198 2003-03-20    <johan@balder>
1199
1200         An sfr/sbit can have an "at #" AND an initializer
1201         * src/SDCCsymt.c (checkSClass): 
1202         * src/SDCCmem.c (allocGlobal): 
1203         * src/SDCCmem.c (allocLocal): 
1204         * src/SDCCast.c (createBlock): 
1205
1206 2003-03-17  Bernhard Held <bernhard@bernhardheld.de>
1207
1208         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
1209
1210 2003-03-16    <johan@balder>
1211
1212         Undid the hackup of const and volatile, the problem is much bigger
1213         * src/SDCC.y:1.65
1214         * src/SDCCast.c:1.171
1215         * src/SDCCglue.c:1.138
1216         * src/SDCCicode.c:1.146
1217         * src/SDCCsymt.c:1.150
1218         * src/SDCCval.c:1.65
1219
1220 2003-03-15  Bernhard Held <bernhard@bernhardheld.de>
1221
1222         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
1223         * src/ds390/gen.c (genAddrOf): fixed bug #704087
1224
1225 2003-03-13    <johan@balder>
1226
1227         Hackup const and volatile modifiers in type chains a bit:
1228         * src/SDCC.y:1.63
1229         * src/SDCCast.c:1.169
1230         * src/SDCCglue.c:1.136
1231         * src/SDCCicode.c:1.143
1232         * src/SDCCsymt.c1.146
1233         * src/SDCCsymt.h1.59
1234         * src/SDCCval.c:1.63
1235
1236 2003-03-12    <johan@balder>
1237
1238         * src/SDCCBBlock.h: more LRH debugging junk
1239         * src/SDCCcflow.h: more LRH debugging junk
1240         * src/SDCCloop.c: more LRH debugging junk
1241         * src/SDCC.y (struct_declaration): fixed bug #697590
1242         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
1243         * src/ds390/gen.c (aopForRemat): fixed bug #700031
1244         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
1245
1246 2003-03-11 Kevin Vigor <kevin@vigor.nu>
1247         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
1248         test function names must now match exactly).
1249         * src/SDCCcse.c: added special case in findCheaperOp to allow
1250         extending a short integer. Makes less awful code for bug 700121 test case.
1251
1252 2003-03-11  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1253
1254         * as/mcs51/lkmain.c: Added ASlink-Warning to messages 
1255         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
1256
1257 2003-03-11 Kevin Vigor <kevin@vigor.nu>
1258
1259         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
1260         actually called (operandsNotEqual() was called for all 
1261         operandsNotEqualX tests).
1262
1263 2003-03-11 Kevin Vigor <kevin@vigor.nu>
1264
1265         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
1266         with shorter literals. Fixes bug 700121.
1267
1268 2003-03-11    <johan@balder>
1269
1270         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
1271
1272 2003-03-11  Bernhard Held <bernhard@bernhardheld.de>
1273
1274         * src/SDCCloop.c (mergeRegions): an evil beast is dead
1275         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
1276
1277 2003-03-10  Borut Razem <borut.razem@siol.net>
1278
1279         * src/SDCCmain.c: pipe preprocessor's output
1280         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
1281         * sdcc_vc_in.h: define pclose as _pclose for WIN32
1282         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
1283         which closes all pipes in pipeSet set
1284         * src/SDCCset.c: free deleted item in function deleteSetItem()
1285         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
1286         moved from z80 to src subproject
1287         * .version: increased version number to 2.3.4
1288
1289 2003-03-10  Bernhard Held <bernhard@bernhardheld.de>
1290
1291         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
1292         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
1293         * support/regression/ports/xa51/spec.mk: fix typo
1294
1295 2003-03-09  Bernhard Held <bernhard@bernhardheld.de>
1296
1297         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
1298
1299 2003-03-09  Borut Razem <borut.razem@siol.net>
1300
1301         * src/SDCCmain.c: pipe preprocessor's output
1302         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
1303         * sdcc_vc_in.h: define pclose as _pclose for WIN32
1304         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
1305         which closes all pipes in pipeSet set
1306         * src/SDCCset.c: free deleted item in function deleteSetItem()
1307         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
1308         moved from z80 to src subproject
1309
1310 2003-03-09  Borut Razem <borut.razem@siol.net>
1311
1312         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
1313         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
1314         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
1315         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
1316         * src/SDCCglobl.h: unification of WIN32 native definitions
1317
1318 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1319
1320         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
1321
1322 2003-03-08  Bernhard Held <bernhard@bernhardheld.de>
1323
1324         * src/configure.in:   check for endianess (even while cross-compiling)
1325         * src/configure:      check for endianess (even while cross-compiling)
1326         * src/configure_in.h: check for endianess (even while cross-compiling)
1327         * src/avr/gen.c:        remove old endianess stuff
1328         * src/mcs51/gen.c:      remove old endianess stuff
1329         * src/ds390/gen.c:      remove old endianess stuff
1330         * src/pic/gen.c:        remove old endianess stuff
1331         * src/pic/genarith.c:   remove old endianess stuff
1332         * src/pic/glue.c:       fix endianess check
1333         * src/pic16/gen.c:      remove old endianess stuff
1334         * src/pic16/genarith.c: remove old endianess stuff
1335         * src/pic16/glue.c:     fix endianess check
1336         * src/xa51/gen.c:       remove old endianess stuff
1337         * src/z80/gen.c:        fix endianess check
1338         * src/SDCCglue.c:       fix endianess check
1339         * src/ds390/peeph.def: fix bug 700036
1340
1341 2003-03-08  Bernhard Held <bernhard@bernhardheld.de>
1342
1343         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
1344         * src/configure: find appropriate data-types on host for SDCC's int and long
1345         * src/configure.in: find appropriate data-types on host for SDCC's int and long
1346         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
1347         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
1348
1349 2003-03-07    <johan@balder>
1350
1351         Just a big NOOP:
1352                 some minor cleanups before the big shot
1353                 OP_DEFS and OP_USES now use Kevin's protection
1354                 new option --nolabelopt
1355
1356         * src/SDCCBBlock.c:
1357         * src/SDCCast.c,:
1358         * src/SDCCcflow.c:
1359         * src/SDCCcse.c:
1360         * src/SDCCicode.c:
1361         * src/SDCCicode.h:
1362         * src/SDCClabel.c:
1363         * src/SDCCloop.c:
1364         * src/SDCCmain.c:
1365         * src/ds390/ralloc.c:
1366         * src/mcs51/ralloc.c:
1367         * src/pic/ralloc.c:
1368         * src/xa51/ralloc.c:
1369         * src/z80/ralloc.c:
1370
1371 2003-03-06  Bernhard Held <bernhard@bernhardheld.de>
1372
1373         * src/pic/pcode.c (get_op): fix 64 bit warnings
1374         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
1375         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
1376         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
1377         * support/regression/tests/malloc.c: fix 64 bit warnings
1378
1379 2003-03-04  Bernhard Held <bernhard@bernhardheld.de>
1380
1381         * src/mcs51/gen.c (genMinus): fixed bug 696436
1382
1383 2003-03-02  Borut Razem <borut.razem@siol.net>
1384
1385         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
1386
1387 2003-02-26  Bernhard Held <bernhard@bernhardheld.de>
1388
1389         * configure.in: test for mkstemp
1390         * sdccconf_in.h: add HAVE_MKSTEMP
1391
1392 2003-02-24  Bernhard Held <bernhard@bernhardheld.de>
1393
1394         * device/include/ctype.h: removed warning while using --stack-auto
1395         * device/include/malloc.h: removed warning while using --stack-auto
1396         * device/include/string.h: removed warning while using --stack-auto
1397
1398 2003-02-23  Borut Razem <borut.razem@siol.net>
1399
1400         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
1401         because NDEBUG is defined (see man assert)
1402         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
1403
1404 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1405
1406         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
1407         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
1408
1409 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann@web.de>
1410
1411         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
1412         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
1413
1414 2003-02-18    <johan@balder>
1415
1416         * as/mcs51/asmain.c (asmbl): module can start with a digit
1417         * as/z80/asmain.c (asmbl): module can start with a digit
1418
1419 2003-02-16  Bernhard Held <bernhard@bernhardheld.de>
1420
1421         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
1422         * src/asm.c: fix pipe() for Mingw32
1423
1424 2003-02-15  Bernhard Held <bernhard@bernhardheld.de>
1425
1426         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
1427         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
1428         make -V work again; --c1mode reads now from stdin
1429         * doc/sdccman.lyx: added --c1mode
1430         * support/Util/SDCCerr.c: new messages for c1 mode
1431         * support/Util/SDCCerr.h: new messages for c1 mode
1432         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
1433
1434 2003-02-15    <johan@balder>
1435
1436         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
1437
1438 2003-02-14  Bernhard Held <bernhard@bernhardheld.de>
1439
1440         * doc/sdccman.lyx: Environment variables, -o and other minor things
1441
1442 2003-02-14    <johan@balder>
1443
1444         * src/xa51/main.c: before anyone really tries to use it :)
1445
1446         * Install doc's in share/sdcc/doc
1447         * removed some obsolete files
1448         * Do a proper make distclean and uninstall
1449         M Makefile.common.in
1450         R sdccbuild.sh
1451         M as/Makefile
1452         M device/include/Makefile.in
1453         M device/lib/Makefile.in
1454         M doc/sdccman.lyx
1455         M link/Makefile
1456         M sim/ucsim/doc/Makefile.in
1457         M src/clean.mk
1458         R src/avr/peeph.rul
1459         R src/xa51/peeph.rul
1460         M support/cpp2/Makefile.in
1461         M support/makebin/Makefile
1462
1463
1464 2003-02-13  Bernhard Held <bernhard@bernhardheld.de>
1465
1466         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
1467
1468 2003-02-10  Borut Razem <borut.razem@siol.net>
1469
1470         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
1471         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
1472         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
1473         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
1474         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
1475         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
1476         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
1477         src/z80/Makefile.bcc: Borland Makefile cleanup
1478         * as/z80/Makefile.bcc: Added Borland Makefile
1479         * support/cpp2/borland.h: Removed
1480
1481 2003-02-10  Bernhard Held <bernhard@bernhardheld.de>
1482
1483         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js@convergence.de>
1484         * src/SDCC.lex: new pragma NOIV
1485         * src/SDCCglobl.h: new pragma NOIV
1486         * src/SDCCmem.c: new pragma NOIV
1487
1488 2003-02-09  Bernhard Held <bernhard@bernhardheld.de>
1489
1490         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
1491
1492 2003-02-09  Bernhard Held <bernhard@bernhardheld.de>
1493
1494         * src/SDCCmain.c: signal handling is switched off by --debug
1495         * doc/Makefile: small fix for install; use clean.mk again
1496         * doc/clean.mk: clean *.pdf and *.html too
1497
1498 2003-02-08  Bernhard Held <bernhard@bernhardheld.de>
1499
1500         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
1501         * device/lib/printfl.c: fix a ds390 bug by making it portable
1502         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
1503         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
1504         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
1505         * debugger/mcs51/cmd.c: converted multi-line string literals
1506         * sim/ucsim/globals.cc: converted multi-line string literals
1507         * src/SDCCmain.c: introduced signal handler to remove temp files
1508         * doc/Makefile: small tweaks, implement clean
1509         * doc: removed generated files
1510
1511 2003-02-05  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1512
1513         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
1514         patch from Jan Rejlek <jr@apex-lib.cz> to fix Bug 677692: "Extended
1515         Address Record is not correctly generated for DS390."
1516
1517 2003-02-02  Borut Razem <borut.razem@siol.net>
1518
1519         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
1520         * as/mcs51/asm.h: fixed compilation with Borland C
1521         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
1522         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
1523         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
1524         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
1525         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
1526         src/z80/Makefile.bcc: delete $(LIB) only if exist
1527         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
1528
1529 2003-02-02  Bernhard Held <bernhard@bernhardheld.de>
1530
1531         * device/include/malloc.h: introduced NULL
1532         * device/include/string.h: introduced NULL
1533         * device/include/stdlib.h: introduced NULL
1534         * device/lib/_memcpy.c: removed NULL
1535         * device/lib/_strcat.c: removed NULL
1536         * device/lib/_strchr.c: removed NULL
1537         * device/lib/_strcmp.c: removed NULL
1538         * device/lib/_strcpy.c: removed NULL
1539         * device/lib/_strcspn.c: removed NULL
1540         * device/lib/_strlen.c: removed NULL
1541         * device/lib/_strncat.c: removed NULL
1542         * device/lib/_strncmp.c: removed NULL
1543         * device/lib/_strncpy.c: removed NULL
1544         * device/lib/_strpbrk.c: removed NULL
1545         * device/lib/_strrchr.c: removed NULL
1546         * device/lib/_strspn.c: removed NULL
1547         * device/lib/_strstr.c: removed NULL
1548         * device/lib/_strtok.c: removed NULL
1549         * device/lib/malloc.c: removed NULL, include own header
1550
1551 2003-02-02    <johan@balder>
1552
1553         * 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
1554         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
1555         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
1556         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
1557         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
1558         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
1559
1560 2003-02-01  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1561
1562         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
1563         area 'DATA'"
1564
1565 2003-02-01    <johan@balder>
1566
1567         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
1568
1569 2003-01-31    <johan@CP255758-A>
1570
1571         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
1572
1573 2003-01-30    <johan@balder>
1574
1575         * src/SDCCBBlock.c: automatic bug detection
1576         * src/SDCCicode.c: automatic bug detection
1577
1578 2003-01-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1579
1580         * src/SDCCglobl.h:   now --xram-size 0 works
1581         * src/SDCCmain.c:    now --xram-size 0 works
1582
1583 2003-01-29    <johan@balder>
1584
1585         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
1586
1587 2003-01-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1588
1589         * as/mcs51/aslink.h: Added options --xram-size and --code-size 
1590         * as/mcs51/lkdata.c: Added options --xram-size and --code-size 
1591         * as/mcs51/lkmain.c: Added options --xram-size and --code-size 
1592         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size 
1593         * src/SDCCglobl.h:   Added options --xram-size and --code-size 
1594         * src/SDCCmain.c:    Added options --xram-size and --code-size 
1595
1596 2003-01-28  Bernhard Held <bernhard@bernhardheld.de>
1597
1598         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
1599         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
1600
1601 2003-01-27    <johan@balder>
1602
1603         * src/SDCC.y: fixed bug #613764
1604
1605 2003-01-26    <johan@balder>
1606
1607         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
1608         * src/SDCCsymt.h: fixed bug #673374
1609         * src/SDCCglue.c: fixed bug #661910
1610         * src/SDCCast.c: fixed bug #458099 and 673374
1611
1612 2003-01-26  Bernhard Held <bernhard@bernhardheld.de>
1613
1614         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
1615         * as/mcs51/strcmpi.h: added
1616         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
1617         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
1618         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
1619         * as/mcs51/assym.c: strcmpi -> as_strcmpi
1620         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
1621         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
1622         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
1623         * as/mcs51/Makefile.aslink: new module strcmpi
1624         * as/mcs51/Makefile.asx8051: new module strcmpi
1625         * as/mcs51/Makefil.bcc: new module strcmpi
1626         * as/mcs51/Makefile.in: new module strcmpi
1627         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
1628
1629 2003-01-26    <johan@balder>
1630
1631         * src/SDCCglue.c: reverted back to 1.124
1632         * src/SDCCast.c: reverted back to 1.156
1633         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
1634
1635 2003-01-25    <johan@balder>
1636
1637         * src/SDCCglue.c: A better fix for bug #661910
1638         * src/SDCCast.c: A better fix for bug #661910
1639         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
1640
1641 2003-01-24  Bernhard Held <bernhard@bernhardheld.de>
1642
1643         * src/Makefile.in: remove spawn.o
1644         * src/SDCCmain.c: remove spawn.h
1645         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
1646         * src/spawn.c: removed
1647         * src/spawn.h: removed
1648         * support/regression/ports/ds390/spec.mk: link with -r
1649
1650 2003-01-24    <johan@CP255758-A>
1651
1652         * src/ds390/gen.c (aopOp): fixed bug #667458
1653         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
1654         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
1655         (createIvalCharPtr): an ival doesn't always have a storage class anymore
1656
1657 2003-01-24  Bernhard Held <bernhard@bernhardheld.de>
1658
1659         * src/mcs51/peeph.def: better assembler identation by Frieder
1660         * src/mcs51/gen.c: better assembler identation by Frieder
1661
1662 2003-01-22  Bernhard Held <bernhard@bernhardheld.de>
1663
1664         * as/z80/string.h: removed for gcc 3.2
1665         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
1666         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
1667
1668 2003-01-19  Bernhard Held <bernhard@bernhardheld.de>
1669
1670         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
1671         * src/SDCCpeeph.c (replaceRule): fix bug #663503
1672         * support/regression/Makefile: separate temp files for ports
1673         * support/regression/generate-cases.py: separate temp files for ports
1674         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
1675         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
1676
1677 2003-01-19  Bernhard Held <bernhard@bernhardheld.de>
1678
1679         * moved tinitalk to device/examples/ds390
1680
1681 2003-01-14  Bernhard Held <bernhard@bernhardheld.de>
1682
1683         * as/mcs51/lkmem.c: rflag is for DS390
1684         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
1685         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
1686                          (linkEdit): move mem- and map-files the same way as ihx-files
1687         * src/z80/main.c (_setDefaultOptions): removed --generic
1688         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
1689         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
1690         * src/pic/glue.c (picglue): --c1mode works again
1691         * src/pic16/glue.c (pic16glue): --c1mode works again
1692         * src/asm.c (printCLine): fix #660034
1693
1694 2003-01-13  Bernhard Held <bernhard@bernhardheld.de>
1695
1696         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia@tin.it>, 1 by Frieder
1697         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
1698         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
1699         * as/mcs51/lkmem (summary): better fix for sp problem
1700         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
1701         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
1702         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
1703                                               remove --stack-after-data
1704
1705 2003-01-12  Bernhard Held <bernhard@bernhardheld.de>
1706
1707         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
1708         * src/SDCCutil.c (join): ugly bug: missing '\0'
1709         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
1710
1711 2003-01-11  Bernhard Held <bernhard@bernhardheld.de>
1712
1713         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
1714         * src/port.h: typo
1715         * src/pic/main.c (_asmCmd): gpasm supports -o
1716         * src/z80/main.c: more general macros
1717         * device/lib/Makefile.in: remove intermediate files
1718
1719 2003-01-11  Bernhard Held <bernhard@bernhardheld.de>
1720
1721         * .version: Bumped version number to 2.3.3
1722         * src/SDCCBBlock.c: new option -o
1723         * src/SDCCglobl.h: new option -o
1724         * src/SDCCglue.c: new option -o
1725         * src/SDCCmain.c: new option -o
1726         * src/asm.c: new option -o
1727         * src/ds390/main.c: new option -o
1728         * src/pic/glue.c: new option -o
1729         * src/pic/pcode.c: new option -o
1730         * src/pic/ralloc.c: new option -o
1731         * src/pic16/glue.c: new option -o
1732         * src/pic16/pcode.c: new option -o
1733         * src/pic16/ralloc.c: new option -o
1734         * src/z80/main.c: new option -o
1735         * device/lib/Makefile.in: use -o
1736         * support/regression/ports/ds390/spec.mk: use -o
1737         * support/regression/ports/gbz80/spec.mk: use -o
1738         * support/regression/ports/mcs51/spec.mk: use -o
1739         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
1740         * support/regression/ports/z80/spec.mk: use -o
1741         * support/regression/ports/ucz80/spec.mk: use -o
1742         * support/regression/ports/xa51/spec.mk: use -o
1743         * support/regression/fwk/lib/timeout.c: fix usage string
1744
1745 2003-01-09  Bernhard Held <bernhard@bernhardheld.de>
1746         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia@tin.it>
1747         
1748 2003-01-07    <johan@balder>
1749
1750         * src/SDCCast.c (decorateType): fixed bug #600035
1751
1752 2003-01-07  Bernhard Held <bernhard@bernhardheld.de>
1753         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
1754         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
1755         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
1756         * src/pic/pcode.c: outcommented unused variable to remove warnings
1757         * src/pic/ralloc.c: outcommented unused variable to remove warnings
1758
1759 2003-01-06    <karl@turbobit.com>
1760         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
1761    regression tests.
1762
1763 2003-01-06    <johan@balder>
1764
1765         * src/SDCCicode.c: fixed array add
1766
1767 2002-01-05  Bernhard Held <bernhard@bernhardheld.de>
1768         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
1769         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
1770
1771 2003-01-04    <johan@balder>
1772
1773         * src/SDCCval.c (getNelements): fixed the initialized array of structures
1774
1775 2002-12-29  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1776         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
1777
1778 2002-12-28  Bernhard Held <bernhard@bernhardheld.de>
1779         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann@web.de>
1780         * support/regression/tests/bug-524697.c: fit mem usage into 8032
1781
1782 2002-12-28  Bernhard Held <bernhard@bernhardheld.de>
1783         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
1784
1785 2002-12-27  Bernhard Held <bernhard@bernhardheld.de>
1786         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
1787
1788 2002-12-26  Bernhard Held <bernhard@bernhardheld.de>
1789         * src/mcs51/main.c: removed {bindir}{sep} from aslink
1790
1791 2002-12-10  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1792
1793     * in \sdcc\as\mcs51\ changed these files in order to create an
1794     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
1795     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the 
1796     following files to include the previous two files: aslink.dsp,
1797     Makefile.aslink, Makefile.bcc, and Makefile.in.
1798
1799     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
1800     .adb instead of .cdb
1801     
1802 2002-11-09  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1803
1804         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
1805         value from option --iram-size.
1806
1807 2002-09-20  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1808
1809         * \sdcc\as\mcs51\lklist.c: added boundary check before using
1810         dram[] array.
1811
1812 2002-09-18    <wiml@hhhh.org>
1813
1814         * SDCClrange.h: exposed setFromRange() and setToRange()
1815         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
1816           packRegsForAccUse() (bug 542397)
1817         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
1818           multiple times and emitting the fetch operations more than once
1819           added aopGetUsesAcc() function to allow binary operators to
1820           fetch their operands in the correct order; made genMinus() emit
1821           compact code for X = LITERAL - Y 
1822
1823 2002-09-00  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1824         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
1825         sprintf() in line 1267.
1826
1827 2002-09-08  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1828         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
1829         like ports.
1830
1831 2002-09-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
1832         Changes to aslink (All the changes are marked with 'JCF'):
1833
1834         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
1835         summary().
1836
1837         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
1838         area BSEG.  Also moves, if possible, the DATA area down into the internal
1839         ram so more space is available.
1840
1841         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
1842         sflag.
1843
1844         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
1845         not bytes.  Function summary() which creates a memory usage summary
1846         file with extension .mem.  Reports of overlaping stack and small stack
1847         size.  If the space for the stack is less than 16 bytes aslink trows a
1848         warning.
1849         
1850         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
1851         the 8051.  Option 'y' for memory summary output file.
1852
1853         Changes to sdcc (All the changes are marked with 'JCF'):
1854
1855         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
1856
1857         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
1858         overlaying area for it (uses RegBankUsed[4]).
1859
1860         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
1861         bank zero as used by default.  By default aslink locates the stack
1862         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
1863         the creation of the .mem file.  Delegates the allocation of data area
1864         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
1865         the begining of the stack area to aslink.
1866
1867         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
1868         glue() in SDCCglue.c creates an area for it.
1869         
1870 2002-09-03  Borut Razem <borut.razem@siol.net>
1871         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
1872         sdcc/src/pic/glue.c:
1873         introduced atexit() handler for teporay files removal in case of
1874         errors, assertions, ...
1875
1876 2002-08-29  Borut Razem <borut.razem@siol.net>
1877         * sdcc/support/cpp2/auto-host_vc_in.h:
1878         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
1879         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
1880         Maybe there is a similar problem with BORLANDC? It should be checked!
1881
1882         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
1883         corrected improper use of assert: the assignment to clr variable was done inside the assert.
1884         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
1885         was not executed, and the compiler (cl) launched a warning:
1886         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
1887
1888 2002-08-28  Bernhard Held <bernhard@bernhardheld.de>
1889         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
1890
1891 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem@siol.net>
1892         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
1893
1894         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
1895           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
1896           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
1897           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
1898           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
1899           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
1900           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
1901         - added Release configuration in VS projects
1902         - review of compiler an linker options
1903         - VC .exe files are generated in bin_vc directory, not to interfere
1904           with binaries generated from other projects (cygwin, mingw, bcc ...)
1905
1906         * sdcc/src/yacc.dsp: added
1907
1908         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
1909         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
1910         and insert the version number definitions from .version 
1911
1912         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
1913
1914         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
1915         added - genarate auto-host.h using auto-host_vc_in.h as template
1916
1917         * sdcc/sdcc_vc.h,
1918         removed from CVS, generated automatically
1919
1920 2002-08-25  Bernhard Held <bernhard@bernhardheld.de>
1921         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
1922
1923 2002-08-11  Borut Razem <borut.razem@siol.net>
1924         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
1925
1926 2002-08-10  Borut Razem <borut.razem@siol.net>
1927         * src/SDCCmain.c (main):
1928         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
1929         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
1930         The consequence was that some temporary files were not removed.
1931
1932         * src/SDCCglue.c:
1933         unification of code in functions tempfilename() and tempfile():
1934         function tempnam() is defined in Visual Studio 6.0 and .NET
1935
1936         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
1937
1938         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
1939           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
1940         - removed compiler command line option /WX: Treats all warnings as errors
1941         - update a list of source files, included into the project
1942
1943         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
1944           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
1945         changed project type to Generic Project so that can be correcly converted to VS.NET project
1946
1947         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
1948
1949         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
1950
1951         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
1952
1953         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
1954         added return 0 statements after assert() to make compiler happy
1955
1956         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
1957         added newline in the def file to keep MSC compiler satisfied
1958
1959         * sdcc/src/z80/gen.c:
1960         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
1961           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
1962         - solved MSC error in function aopDump()
1963
1964         * sdcc_vc.h: define PREFIX as "\\sdcc"
1965
1966 2002-07-18  Bernhard Held <bernhard@bernhardheld.de>
1967         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
1968
1969 2002-06-22  Scott Dattalo <scott@dattalo.com>
1970         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced. 
1971         - Rewrote the register banking algorithm. 
1972         - Added pCode live-range analysis to registers (for now, only non-used and 
1973         singly-used registers optimized away)
1974
1975         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
1976
1977         * support/scripts/inc2h.pl Kevin L. Pauba <klpauba@cox.net> submitted this perl script for converting MicroChip include files into SDCC Pic include files.
1978         
1979 2002-05-10  Scott Dattalo <scott@dattalo.com>
1980         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
1981         
1982 2002-04-22  Michael Hope  <michaelh@vroom>
1983
1984         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
1985
1986         * configure.in (DD_COPT): Added include support required for gbdk.
1987
1988         * .version: Bumped version number just to increase it.
1989
1990         * src/SDCCmain.c: Added -nostdinc to the default options.
1991
1992 2002-04-15  Michael Hope  <michaelh@vroom>
1993
1994         * device/lib/z80/printf.c (sprintf): Added.
1995
1996         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
1997
1998         * src/z80/peeph.def: Added transpose redundent load rule.
1999
2000         * src/z80/main.c: Added force callee saves for jaune.
2001
2002         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
2003
2004         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
2005
2006 2002-03-28  Johan Knol  <johan@balder>
2007
2008         * src/SDCCval.c: fixed bug #532436
2009
2010 2002-03-14  Scott Dattalo <scott@dattalo.com>
2011         * /src/port.h:
2012         Added "char *Processor" field to the port structure.
2013
2014         * /src/SDCCmain.c:
2015         Added -p option. Allows port dependent processor to be specified.
2016
2017         * all ports:
2018         Initialized the new field char *Processor field to NULL in all ports
2019
2020         * /src/pic/*:
2021         Compiler generated registers for interrupt context saving
2022         were not getting allocated.
2023                 
2024 2002-03-16  Sandeep Dutta  <sandeep@ddi.com>
2025
2026         * /src/SDCCast.c:
2027         Fixed left shift. Will promote the left side of a left shift
2028         if a) left shifting more than size of operand or b) when assigned
2029         to something size > size of left side
2030
2031 2002-03-14  Scott Dattalo <scott@dattalo.com>
2032         * src/pic/*
2033         tons of changes. Register allocation has been 
2034         rewritten. Added customization for the various PICs. Flow
2035         analysis is restructured. ...
2036
2037         * src/pic/device.h:
2038         Added
2039
2040         * src/pic/device.c:
2041         Added. device.c is a PIC port hack to accomodate variations
2042         in PIC devices.
2043
2044 2002-03-13  Michael Hope  <michaelh@vroom>
2045
2046         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
2047
2048 2002-03-04  johanknol  <johanknol@manik>
2049
2050         * /src/SDCCval.c: fixed
2051
2052         const unsigned char arr[][2] = { { 0, 1 } };
2053         t18.c:1: error: Initializer element is not constant
2054
2055 2002-03-04  bela  <bela@manik>
2056
2057         * /device/include/mcs51reg.h:
2058         ds89c420 register definition update
2059
2060 2002-03-03    <johan@FRIJA>
2061
2062         * support/Util/SDCCerr.c: did something, but don't no why anymore
2063
2064         * support/regression/tests/bug-524691.c: made it a little less shy 
2065
2066         * src/SDCCast.c (decorateType): fixed bug #524697
2067
2068         * src/SDCCast.c: made some lineno improvements
2069
2070         * src/SDCCval.c (getNelements): changed warning to error
2071
2072         * src/SDCCglue.c (printIvalArray): changed warning to error
2073
2074         * src/SDCCicode.c: fixed a warning for mingw
2075
2076         * src/SDCCast.c (decorateType): fixed the << promotion for ops
2077
2078         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
2079
2080 2002-03-02  Sandeep Dutta  <sandeep@ddi.com>
2081
2082         * src/ds390/peeph.def:
2083         Added some more peephole rules
2084
2085         * src/ds390/gen.c: Various fixes & enhancements
2086
2087         * src/SDCClrange.c, src/SDCClrange.h:
2088         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
2089
2090         * src/ds390/ralloc.c:
2091         various fixes & enhancements (ds390) specific
2092
2093         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
2094         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
2095         from rallocs.
2096
2097         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
2098
2099 2002-03-02    <johan@FRIJA>
2100
2101         * src/SDCCast.c (decorateType): fixed bug #524708
2102
2103         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
2104
2105         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
2106
2107 2002-03-01  Michael Hope  <michaelh@vroom>
2108
2109         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
2110
2111         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
2112
2113 2002-03-01    <johan@FRIJA>
2114
2115         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
2116
2117         * src/SDCCast.c (decorateType): fixed bug #524209
2118
2119         * src/SDCCval.c (valNot): fixed bug #524195
2120
2121 2002-02-26    <johan@balder>
2122
2123         * src/xa51/gen.c: fixed a warning
2124
2125         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
2126
2127         * src/SDCCast.c (decorateType): fixed bug #522534
2128
2129 2002-02-23    <johan@balder>
2130
2131         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
2132
2133 2002-02-22    <johan@balder>
2134
2135         * src/SDCCast.c: fixed bug #514865
2136
2137         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
2138
2139 2002-02-21  Sandeep Dutta  <sandeep@ddi.com>
2140
2141         * sdcc/src/SDCCloop.c:
2142         Previous fix was not good. basic blocks that have "break" or "return" are
2143         not really partof a loop , but live ranges used in these blocks should
2144         be live thru the entire loop, so set partOfLoop but don't add them to
2145         loop region
2146
2147 2002-02-21    <johan@FRIJA>
2148
2149         * src/SDCCcse.c: fixed bug #514308
2150
2151 2002-02-20  Sandeep Dutta  <sandeep@ddi.com>
2152
2153         * src/SDCCloop.c:
2154         Fixed BUG #519583. If a conditional block ended in a return/break
2155         statement inside a loop, it was not being considered part of the loop.
2156
2157         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
2158
2159 2002-02-10  Karl Bongers <karl@turbobit.com>
2160
2161         * debugger/*:
2162         Fixed up SDCDB debugger somewhat.  Updated debugger/README
2163         with lots of comments and notes.
2164
2165         * device/examples/test2.c:
2166         Fix bug, "red" variable not being initialized(compiler complained).
2167
2168         * device/examples/Makefile, examples/test3.c:
2169         Add Makefile in device/examples folder, compiles test3.c
2170         for use as a multiple module SDCDB test case.
2171
2172         * sim/ucsim/cmd.src/cmdset.cc:
2173         Took out debug printfs in ucsim "next" command.
2174
2175         * sim/ucsim/xa.src:
2176         Karl and Johan start ucsim XA support.  Most dissassembly working,
2177         about 75% emulation done(plenty of work remaining).
2178
2179         * sim/ucsim/z80.src:
2180         Add Z80 support to ucsim, add test-ucz80 regression test,
2181         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
2182         Notice z80 compiler fails on examples/test3.c/crc code.
2183
2184 2002-01-30  Sandeep Dutta  <sandeep@ddi.com>
2185
2186         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
2187         Added support for --parms-in-bank1
2188
2189         * src/ds390/peeph.def:
2190         added a few more peephole optimzations
2191
2192         * src/ds390/main.c:
2193         1) added __builtin_inp & __builtin_outp used to read in data of given length
2194            from a memory mapped port
2195         2) added __builtin_memcmp
2196         3) added __builtin_swapw swap bytes of a short
2197
2198         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
2199         1) handle multiple send & receives from register bank1
2200         2) ralloc can now allocate DPTR1 to some liveRanges
2201
2202         * src/SDCCsymt.c, src/SDCCsymt.h:
2203         changes to handle multiple sends & receives
2204
2205         * src/SDCCptropt.h:
2206         added some pointer arithmetic optimization
2207
2208         * src/SDCCptropt.c:
2209         added some pointer arithmetic optimizations but not stable yet so not
2210         called from anywhere (will get this working shortly)
2211
2212         * src/SDCCopt.c: fixed for multiple sends & receives
2213
2214         * src/SDCCmain.c:
2215         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
2216         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
2217            set preprocessor defines (depending on options)
2218
2219         * src/SDCCicode.c, src/SDCCicode.h:
2220         changes made to handle multiple sends & receives
2221
2222         * src/SDCCglobl.h:
2223         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
2224
2225         * src/SDCCcse.c, src/SDCCcse.h:
2226         added function findbackward def (to be used in upcoming optimization)
2227
2228         * src/SDCCcflow.c, src/SDCCcflow.h:
2229         added function returnAtEnd - to determine if a basic block terminates with
2230         a RETURN iCode
2231
2232         * src/SDCCast.c, src/SDCCast.h:
2233         added option parms-in-bank1
2234
2235         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c 
2236         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c 
2237         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
2238         adjusted for --parms-in-bank1 option
2239
2240         * device/include/string.h:
2241         donot redefine "reentrant" keyword
2242
2243         * device/include/ds80c390.h: Added some more SFRs
2244
2245 2002-01-28  Bernhard Held  <bernhard@bernhardheld.de>
2246
2247         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4 
2248
2249 2002-01-26  Bernhard Held  <bernhard@bernhardheld.de>
2250
2251         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
2252
2253 2002-01-22  Bernhard Held  <bernhard@bernhardheld.de>
2254
2255         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
2256
2257 2002-01-18  Paul Stoffregen  <paul@pjrc.com>
2258
2259         * Added --xram-movc option
2260
2261 2002-01-13  Bernhard Held  <bernhard@bernhardheld.de>
2262
2263         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
2264
2265 2002-01-11  Johan Knol
2266
2267         * Added math lib of Jesus Calvino-Fraga
2268
2269 2002-01-08  Bernhard Held  <bernhard@bernhardheld.de>
2270
2271         * src/SDCCmain.c (processFile): fix processing of ../../src.c
2272         * support/regression/Makefile: new target test-mcs51-stack-auto
2273         * support/regression/ports/mcs51-stack-auto/spec.mk: added
2274
2275 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
2276
2277         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
2278
2279 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
2280
2281         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
2282
2283 2002-01-03  Bernhard Held  <bernhard@bernhardheld.de>
2284
2285         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
2286
2287         * src/SDCCglue.h: add definition for printIvalChar()
2288
2289 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
2290
2291         * src/SDCCast.c: fix #498138 by Johan
2292
2293         * src/SDCCglue.c: fix #498138 by Johan
2294
2295 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
2296
2297         * support/regression/Makefile: fix clean
2298
2299         * support/regression/ports/ds390/support.c: fix transmission of last character
2300
2301 2001-12-29  Sandeep Dutta  <sandeep@ddi.com>
2302
2303         * /sdcc/src/ds390/gen.c:
2304         a) improved computing address of stack variable
2305         b) took out some #if 0 code
2306         c) improved parmBytes adjustment
2307         d) improved genPlusIncr & genMinusIncr
2308         e) genCmp could generate bad code (when left assigned to DPTR)
2309         f) Fixed bug in hasInc
2310
2311         * /sdcc/src/ds390/ralloc.c:
2312         a) packRegsForSupport could mess up live information (Fixed)
2313         b) packRegsDPTRuse could be incorrect for left & right shift
2314
2315         * /sdcc/src/mcs51/ralloc.c:
2316         packRegsForSupport could mess up the live information (Fixed)
2317
2318         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
2319
2320         * /sdcc/src/SDCCast.c:
2321         can reverse a loop even if function call is present as long
2322         as the loop control variable is local & is not passed as parameter
2323
2324 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
2325
2326         * /sdcc/ChangeLog: *** empty log message ***
2327
2328         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
2329         More builtin function additions for TININative
2330
2331         * /sdcc/src/ds390/ralloc.c:
2332         Had broken the regression testsuite
2333
2334         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
2335
2336         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
2337         Added funcattr hasStackParms will be set for reentrant functions when there
2338         are paramteres on the stack, this helps in minimizing frame pointer generation
2339         typeFromStr can handle function pointers now
2340
2341         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
2342         *** empty log message ***
2343
2344 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
2345
2346         * /src/ds390/gen.c, /src/ds390/main.c:
2347         More builtin function additions for TININative
2348
2349         * /src/ds390/ralloc.c:
2350         Had broken the regression testsuite
2351
2352         * /src/SDCCast.c: Fixed a bug in dumptree
2353
2354         * /src/SDCCsymt.c, /src/SDCCsymt.h:
2355         Added funcattr hasStackParms will be set for reentrant functions when there
2356         are paramteres on the stack, this helps in minimizing frame pointer generation
2357         typeFromStr can handle function pointers now
2358
2359         * /doc/builtins.txt, /doc/TININative.txt:
2360         *** empty log message ***
2361
2362
2363 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
2364
2365         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
2366         ALPHA version for -mTININative
2367
2368         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
2369         updated to reflect changes in the port structure
2370
2371         * /src/port.h:
2372         added function do_assemble (similar to do_link) if non-null this function
2373         will be called to do assembly (-mTININative) requires a multi command
2374         assembly
2375         added function genAssemblerEnd will be called to generate assembler Epilogue
2376
2377         * /src/SDCCsymt.c:
2378         added _JavaNative to debug info printing
2379
2380         * /src/SDCCmain.c: added option --tini-libid
2381         added port->do_assemble function (-mTININative) has a multi command assemble
2382
2383         * /src/SDCCglue.c: Disabled "constExpr" check
2384         added port->genAssemblerEnd function
2385
2386         * /src/SDCCglobl.h: Added option --tini-libid value
2387
2388         * /src/SDCCast.h:
2389         tookout optimizeCompare from the header (has no external references)
2390
2391         * /src/SDCCast.c: made one more function "static"
2392
2393 2001-12-23  Michael Hope  <michaelh@juju.net.nz>
2394
2395         * src/z80/mappings.i: Added z80asm support.
2396
2397         * src/z80/main.c: Added z80asm support on --asm=z80asm
2398
2399         * src/z80/gen.c: Fixed asm portability issues.
2400
2401         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
2402
2403         * src/SDCCglue.c (printExterns): Added global/extern split.
2404
2405 2001-12-17  Bernhard Held  <bernhard@bernhardheld.de>
2406
2407         * support/regression/Makefile: added test for mcs51 model large
2408
2409         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
2410
2411         * support/regression/ports/gbz80/spec.mk: added -mgbz80
2412
2413 2001-12-05  Michael Hope  <michaelh@juju.net.nz>
2414
2415         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
2416
2417 1904-01-06  Michael Hope  <michaelh@juju.net.nz>
2418
2419         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
2420
2421         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
2422
2423 2001-12-02  Bernhard Held  <bernhard@bernhardheld.de>
2424
2425         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
2426
2427         * support/regression/tests/simplefloat.c: Port to mcs51.
2428
2429 2001-11-25  Michael Hope  <michaelh@juju.net.nz>
2430         * support/regression/tests/bug-485362.c: Added.
2431
2432         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
2433
2434         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
2435
2436         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
2437
2438         * src/z80/gen.c (aopDump): Added a dump function.
2439
2440 2001-11-25  Bernhard Held  <bernhard@bernhardheld.de>
2441         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
2442
2443         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
2444
2445         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
2446
2447         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
2448
2449         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
2450
2451         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
2452
2453         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
2454
2455         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
2456
2457         * support/regression/ports/ds390/support.c: Use tinibios.
2458
2459         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
2460
2461 2001-11-23  Michael Hope  <michaelh@juju.net.nz>support/regression/tests/bug-460010.c
2462
2463         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
2464         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
2465
2466         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
2467
2468         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
2469
2470 2001-11-18  Michael Hope  <michaelh@juju.net.nz>
2471
2472         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
2473
2474         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
2475         (packRegsForIYUse): Created and optimised.
2476
2477 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
2478
2479         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
2480 2001-11-18  Bernhard Held  <bernhard@bernhardheld.de>
2481
2482         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
2483
2484         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
2485
2486         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
2487
2488 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
2489
2490         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
2491
2492         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
2493
2494 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
2495
2496         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
2497
2498         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
2499
2500         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
2501
2502 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
2503
2504         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
2505         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
2506         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
2507
2508         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
2509
2510         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
2511         (genNotFloat): Added.
2512         (genUminusFloat): Added.
2513
2514         * device/lib/z80/Makefile: Added floating pt stubs.
2515
2516         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
2517
2518         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
2519
2520         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
2521
2522 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
2523
2524         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
2525
2526         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
2527
2528         * sdcc/support/regression/Makefile: Add port ds390.
2529
2530         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
2531
2532         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
2533
2534         * sdcc/support/regression/ports/ds390/spec.mk: Added.
2535
2536         * sdcc/support/regression/ports/ds390/support.c: Added.
2537
2538         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
2539
2540         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
2541
2542         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
2543
2544 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
2545
2546         * device/include/malloc.h: Added z80 and gbz80 support.
2547
2548         * device/lib/gbz80/heap.s: Added.
2549
2550         * device/lib/z80/heap.s: Added.
2551
2552         * device/lib/malloc.c: Added z80 and gbz80 support.
2553
2554         * support/regression/tests/malloc.c (testMalloc): Added.
2555
2556         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
2557
2558         * support/regression/tests/bug-478094.c: Added.
2559
2560         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
2561
2562 2001-11-04  Bernhard Held  <bernhard@bernhardheld.de>
2563
2564         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
2565
2566         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
2567
2568         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
2569
2570         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
2571
2572         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
2573
2574 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
2575
2576         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
2577
2578 2001-11-03  Michael Hope  <michaelh@juju.net.nz>
2579
2580         * support/regression/tests/bug-477927.c: Added.
2581
2582         * src/z80/peeph.def: Added minor rules.
2583
2584         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
2585
2586         * src/z80/peeph.def: Added jump optimisation modification.
2587
2588 2001-11-01  Michael Hope  <michaelh@juju.net.nz>
2589
2590         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
2591
2592 2001-10-30  Michael Hope  <michaelh@juju.net.nz>
2593
2594         * support/regression/tests/funptrs.c: Added.
2595
2596 2001-10-29  Michael Hope  <michaelh@juju.net.nz>
2597
2598         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
2599
2600 2001-10-28  Michael Hope  <michaelh@juju.net.nz>
2601
2602         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
2603
2604         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
2605
2606         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
2607         (movLeft2ResultLong): Created.
2608
2609         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
2610         (joinPushes): Added.  Joins two char pushes into a word push.
2611
2612 2001-10-27  Michael Hope  <michaelh@juju.net.nz>
2613
2614         * support/cpp2/Makefile.in (install): Added creation of dest dir.
2615
2616         * support/makebin/Makefile (install): Added creation of dest dir.
2617
2618 2001-10-24 Karl Bongers <karl@turbobit.com>
2619
2620         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
2621
2622 2001-10-21  Michael Hope  <michaelh@juju.net.nz>
2623
2624         * src/z80/ralloc.c: Turned off faulty pack for one use.
2625
2626         * src/z80/peeph-gbz80.def: Removed redundent restart options.
2627
2628         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
2629
2630 2001-10-21  Bernhard Held  <bernhard@bernhardheld.de>
2631
2632         * support/regression/Makefile: Improved clean
2633
2634         * support/regression/ports/gbz80/spec.mk: Added clean
2635
2636         * support/regression/ports/host/spec.mk: Added clean
2637
2638         * support/regression/ports/z80/spec.mk: Added clean
2639
2640         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
2641
2642         * support/regression/ports/mcs51/timeout.c: little improvements
2643
2644 2001-10-17  Michael Hope  <michaelh@juju.net.nz>
2645
2646         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
2647
2648         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
2649
2650         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
2651
2652 2001-10-16  Bernhard Held  <bernhard@bernhardheld.de>
2653
2654         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
2655
2656         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
2657
2658 2001-10-13  Michael Hope  <michaelh@juju.net.nz>
2659         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
2660
2661         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
2662
2663         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
2664
2665         * src/mcs51/main.c (_linkCmd): Added bin path to command.
2666
2667         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
2668
2669         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
2670
2671         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
2672
2673         * support/regression/tests/longor.c: Added.
2674
2675 2001-10-11  Bernhard Held  <bernhard@bernhardheld.de>
2676
2677         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
2678
2679         * as/mcs51/aslink.h: define PATH_MAX
2680
2681         * as/mcs51/asm.h: define PATH_MAX
2682
2683         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
2684
2685         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
2686
2687         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
2688
2689         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
2690
2691         * src/SDCCglobl.h: define PATH_MAX
2692
2693         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
2694
2695         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
2696
2697 2001-10-11  Michael Hope  <michaelh@juju.net.nz>
2698
2699         * src/z80/gen.c (gencjneshort): Fixed
2700
2701         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
2702
2703 2001-10-09  Michael Hope  <michaelh@juju.net.nz>
2704
2705         * support/regression/tests/bug-469671.c: Added.
2706
2707         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
2708
2709 2001-10-08  Michael Hope  <michaelh@juju.net.nz>
2710
2711         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
2712
2713         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
2714
2715 2001-10-08  Bernhar Held  <bernhard@bernhardheld.de>
2716
2717         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
2718
2719         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
2720
2721         * src/device/lib/_mullong.c : removed hint: nooverlay bug
2722
2723         * src/device/lib/_divuint.c : removed hint: nooverlay bug
2724
2725         * src/device/lib/_divulong.c: removed hint: nooverlay bug
2726
2727         * src/device/lib/_moduint.c : removed hint: nooverlay bug
2728
2729         * src/device/lib/_modulong.c: removed hint: nooverlay bug
2730
2731 2001-10-07  Michael Hope  <michaelh@juju.net.nz>
2732
2733         * 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.
2734
2735         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
2736
2737         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
2738
2739 2001-10-07    <johan@FRIJA>
2740
2741         * device/lib/gets.c (gets): fixed the return value.
2742
2743 2001-10-06  Michael Hope  <michaelh@juju.net.nz>
2744         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
2745
2746         * 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.
2747
2748         * 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.
2749
2750         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
2751
2752         * src/pic/gen.c: Removed Safe_strdup.
2753
2754         * configure.in: Added option to enable libgc support.
2755
2756         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
2757         (bitVectUnion): Optimised.
2758         (bitVectIntersect): Optimised.
2759         (bitVectBitsInCommon): Optimised.
2760         (bitVectCplAnd): Optimised.
2761
2762         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
2763
2764 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
2765
2766         * src/SDCCmain.c: distinguish between assembler debug and plain options
2767
2768         * src/avr/main.c:   remove standard assembler options
2769
2770         * src/ds390/main.c: remove standard assembler options
2771
2772         * src/mcs51/main.c: remove standard assembler options
2773
2774         * src/port.h: removed "PENDING" comment
2775
2776 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
2777
2778         * src/device/lib/_mulint.c  : new, with assember functions
2779
2780         * src/device/lib/_mullong.c : new, with assember functions
2781
2782         * src/device/lib/_divuint.c : with assember functions
2783
2784         * src/device/lib/_divsint.c : with assember functions
2785
2786         * src/device/lib/_divulong.c: with assember functions
2787
2788         * src/device/lib/_divslong.c: with assember functions
2789
2790         * src/device/lib/_moduint.c : with assember functions
2791
2792         * src/device/lib/_modsint.c : with assember functions
2793
2794         * src/device/lib/_modulong.c: with assember functions
2795
2796         * src/device/lib/_modslong.c: with assember functions
2797
2798         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
2799
2800         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
2801
2802         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
2803                                       replaced _mululong.c and _mulslong.c by _mullong.c
2804
2805 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
2806
2807         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
2808
2809 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
2810
2811         * src/SDCCglue.c: test, if win32api is available for MINGW
2812
2813 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
2814
2815         * src/SDCCsymt.c: no more _modifier in printTypeChain()
2816         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
2817         * support/regression/ports/gbz80/spec.mk: removed GENERIC
2818         * support/regression/ports/host/spec.mk: removed GENERIC
2819         * support/regression/ports/mcs51/spec.mk: removed GENERIC
2820         * support/regression/ports/z80/spec.mk: removed GENERIC
2821
2822 2001-10-01  Michael Hope  <michaelh@juju.net.nz>
2823
2824         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
2825
2826         * support/regression/tests/bug-467035.c: Created.
2827
2828 2001-10-01    <johan@FRIJA>
2829
2830         * src/SDCC.y: fixed bug #466586 part 1
2831
2832 2001-10-01  Johan Knol <johan.knol@iduna.nl>
2833
2834         * SDCCicode.c: z80 has no generic pointers
2835         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
2836         
2837 2001-09-30  Michael Hope  <michaelh@juju.net.nz>
2838
2839         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
2840
2841 2001-09-29  Michael Hope  <michaelh@juju.net.nz>
2842
2843         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
2844
2845         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
2846
2847 2001-09-25  Michael Hope  <michaelh@juju.net.nz>
2848
2849         * configure.in: Fixed up so that ucsim is only configured once.
2850
2851         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
2852
2853         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
2854         (getPathDifference): As above.
2855
2856         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
2857
2858         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
2859
2860 2001-09-23  Michael Hope  <michaelh@juju.net.nz>
2861         * .version: Updated to 2.3.1
2862
2863         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
2864         Added copyright header.
2865
2866         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
2867         (assemble): Added support for macro based assembler commands.
2868         (linkEdit): Added support for macro based linker commands.
2869         (preProcess): Changed the pre-processor to use macros.
2870         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
2871         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
2872
2873         * device/lib/z80/crt0.s: Added module name for debugging.
2874
2875 2001-09-20  Michael Hope  <michaelh@juju.net.nz>
2876
2877         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
2878
2879         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
2880
2881         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
2882
2883         * src/Makefile.in: Added SDCCmacro and SDCCutil
2884
2885 2001-09-19  Michael Hope  <michaelh@juju.net.nz>
2886
2887         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
2888
2889 2001-09-16    <johan@FRIJA>
2890
2891         * 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.
2892
2893 2001-09-15    <johan@FRIJA>
2894
2895         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
2896         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
2897
2898 2001-09-11    <johan@FRIJA>
2899
2900         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
2901
2902 2001-09-10  Michael Hope  <michaelh@juju.net.nz>
2903
2904         * support/regression/tests/bug-460444.c: Added test case.
2905
2906         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
2907         (genCast): Added justification for all of the asserts.
2908
2909 2001-09-10  Bernhard Held <bernhard@bernhardheld.de>
2910
2911         * support/regression/support.c: _xdata replaced by xdata
2912
2913         * support/regression/spec.mk: removed _generic
2914
2915 2001-09-09  Michael Hope  <michaelh@juju.net.nz>
2916
2917         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
2918
2919         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
2920         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
2921
2922         * src/z80/peeph.def: Added a rule to optimise shift then compare.
2923
2924         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
2925
2926         * support/regression/tests/bug-460010.c: Added test case.
2927
2928         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
2929
2930 2001-09-09  Bernhard Held <bernhard@bernhardheld.de>
2931
2932         * support/regression/Makefile: inter-port-clean adjusted for mcs51
2933
2934         * support/regression/testfwk.c: removed workaround for bug #436344
2935
2936         * support/regression/tests/bp.c: use less memory with mcs51
2937
2938         * support/regression/tests/bug-441448.c: use less memory
2939
2940         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
2941
2942         * support/regression/collate-results.py: typo
2943
2944 2001-09-08  Michael Hope  <michaelh@juju.net.nz>
2945
2946         * support/regression/tests/fetchoverlap.c: Added new test case.
2947
2948         * support/regression/tests/bp.c: Added new test case.
2949
2950         * support/regression/tests/bug-448984.c: Added new test case.
2951
2952         * support/regression/tests/pow2shifts.c: Added new test case.
2953
2954         * src/z80/gen.c: Turned off the noise it normally generates for the release.
2955         (genlshTwo): Fixed right shift for count > 8.
2956
2957         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
2958
2959 2001-09-08    <johan@FRIJA>
2960
2961         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
2962
2963 2001-09-07    <johan@FRIJA>
2964
2965         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
2966
2967         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
2968
2969 2001-09-06    <johan@FRIJA>
2970
2971         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
2972         * bernhard noted me at this: "() equals to (void)" (1.38)
2973
2974 2001-09-05    <johan@FRIJA>
2975
2976         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
2977
2978 2001-09-04    <johan@FRIJA>
2979
2980         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
2981
2982
2983 2001-09-04  Paul Stoffregen  <paul@pjrc.com>
2984
2985         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
2986
2987 2001-09-03  Michael Hope  <michaelh@juju.net.nz>
2988
2989         * link/z80/aslink.h: Fixed path for PATH_MAX
2990
2991 2001-09-02  Michael Hope  <michaelh@juju.net.nz>
2992
2993         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
2994
2995         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
2996
2997         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
2998
2999         * 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.
3000
3001 2001-09-01  Michael Hope  <michaelh@juju.net.nz>
3002
3003         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
3004         (genCmp): Fixed up genCmp for the GB with longs.
3005
3006         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
3007
3008         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
3009
3010         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
3011
3012         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
3013
3014 2001-08-30  Paul Stoffregen  <paul@pjrc.com>
3015
3016         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
3017
3018 2001-08-30  Michael Hope  <michaelh@juju.net.nz>
3019
3020         * 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.
3021
3022         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
3023
3024 2001-08-29  Michael Hope  <michaelh@juju.net.nz>
3025
3026         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
3027
3028         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
3029
3030 2001-08-30 Bernhard Held   <bernhard@bernhardheld.de>
3031
3032   * sim/ucsim/configure:    little improvement of Cygwin-detection      
3033   * sim/ucsim/configure.in: little improvement of Cygwin-detection      
3034   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
3035   * support/regression/tests/bug-221100.c: small changes for mcs51
3036   * support/regression/tests/bug-221168.c: small changes for mcs51
3037   * support/regression/tests/bug-227710.c: small changes for mcs51
3038   * support/regression/tests/staticinit.c: small changes for mcs51
3039   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
3040   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
3041   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601