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