3c74880737b90e377bcca132df3ea052014eed1f
[fw/sdcc] / ChangeLog
1 2002-12-26  Bernhard Held <bernhard@bernhardheld.de>
2         * src/mcs51/main.c: removed {bindir}{sep} from aslink
3
4 2002-12-10  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
5
6     * in \sdcc\as\mcs51\ changed these files in order to create an
7     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the 
9     following files to include the previous two files: aslink.dsp,
10     Makefile.aslink, Makefile.bcc, and Makefile.in.
11
12     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
13     .adb instead of .cdb
14     
15 2002-11-09  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
16
17         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
18         value from option --iram-size.
19
20 2002-09-20  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
21
22         * \sdcc\as\mcs51\lklist.c: added boundary check before using
23         dram[] array.
24
25 2002-09-18    <wiml@hhhh.org>
26
27         * SDCClrange.h: exposed setFromRange() and setToRange()
28         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
29           packRegsForAccUse() (bug 542397)
30         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
31           multiple times and emitting the fetch operations more than once
32           added aopGetUsesAcc() function to allow binary operators to
33           fetch their operands in the correct order; made genMinus() emit
34           compact code for X = LITERAL - Y 
35
36 2002-09-00  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
37         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
38         sprintf() in line 1267.
39
40 2002-09-08  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
41         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
42         like ports.
43
44 2002-09-04  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
45         Changes to aslink (All the changes are marked with 'JCF'):
46
47         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
48         summary().
49
50         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
51         area BSEG.  Also moves, if possible, the DATA area down into the internal
52         ram so more space is available.
53
54         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
55         sflag.
56
57         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
58         not bytes.  Function summary() which creates a memory usage summary
59         file with extension .mem.  Reports of overlaping stack and small stack
60         size.  If the space for the stack is less than 16 bytes aslink trows a
61         warning.
62         
63         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
64         the 8051.  Option 'y' for memory summary output file.
65
66         Changes to sdcc (All the changes are marked with 'JCF'):
67
68         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
69
70         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
71         overlaying area for it (uses RegBankUsed[4]).
72
73         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
74         bank zero as used by default.  By default aslink locates the stack
75         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
76         the creation of the .mem file.  Delegates the allocation of data area
77         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
78         the begining of the stack area to aslink.
79
80         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
81         glue() in SDCCglue.c creates an area for it.
82         
83 2002-09-03  Borut Razem <borut.razem@siol.net>
84         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
85         sdcc/src/pic/glue.c:
86         introduced atexit() handler for teporay files removal in case of
87         errors, assertions, ...
88
89 2002-08-29  Borut Razem <borut.razem@siol.net>
90         * sdcc/support/cpp2/auto-host_vc_in.h:
91         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
92         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
93         Maybe there is a similar problem with BORLANDC? It should be checked!
94
95         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
96         corrected improper use of assert: the assignment to clr variable was done inside the assert.
97         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
98         was not executed, and the compiler (cl) launched a warning:
99         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
100
101 2002-08-28  Bernhard Held <bernhard@bernhardheld.de>
102         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
103
104 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem@siol.net>
105         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
106
107         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
108           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
109           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
110           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
111           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
112           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
113           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
114         - added Release configuration in VS projects
115         - review of compiler an linker options
116         - VC .exe files are generated in bin_vc directory, not to interfere
117           with binaries generated from other projects (cygwin, mingw, bcc ...)
118
119         * sdcc/src/yacc.dsp: added
120
121         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
122         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
123         and insert the version number definitions from .version 
124
125         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
126
127         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
128         added - genarate auto-host.h using auto-host_vc_in.h as template
129
130         * sdcc/sdcc_vc.h,
131         removed from CVS, generated automatically
132
133 2002-08-25  Bernhard Held <bernhard@bernhardheld.de>
134         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
135
136 2002-08-11  Borut Razem <borut.razem@siol.net>
137         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
138
139 2002-08-10  Borut Razem <borut.razem@siol.net>
140         * src/SDCCmain.c (main):
141         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
142         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
143         The consequence was that some temporary files were not removed.
144
145         * src/SDCCglue.c:
146         unification of code in functions tempfilename() and tempfile():
147         function tempnam() is defined in Visual Studio 6.0 and .NET
148
149         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
150
151         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
152           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
153         - removed compiler command line option /WX: Treats all warnings as errors
154         - update a list of source files, included into the project
155
156         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
157           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
158         changed project type to Generic Project so that can be correcly converted to VS.NET project
159
160         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
161
162         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
163
164         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
165
166         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
167         added return 0 statements after assert() to make compiler happy
168
169         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
170         added newline in the def file to keep MSC compiler satisfied
171
172         * sdcc/src/z80/gen.c:
173         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
174           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
175         - solved MSC error in function aopDump()
176
177         * sdcc_vc.h: define PREFIX as "\\sdcc"
178
179 2002-07-18  Bernhard Held <bernhard@bernhardheld.de>
180         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
181
182 2002-06-22  Scott Dattalo <scott@dattalo.com>
183         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced. 
184         - Rewrote the register banking algorithm. 
185         - Added pCode live-range analysis to registers (for now, only non-used and 
186         singly-used registers optimized away)
187
188         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
189
190         * support/scripts/inc2h.pl Kevin L. Pauba <klpauba@cox.net> submitted this perl script for converting MicroChip include files into SDCC Pic include files.
191         
192 2002-05-10  Scott Dattalo <scott@dattalo.com>
193         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
194         
195 2002-04-22  Michael Hope  <michaelh@vroom>
196
197         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
198
199         * configure.in (DD_COPT): Added include support required for gbdk.
200
201         * .version: Bumped version number just to increase it.
202
203         * src/SDCCmain.c: Added -nostdinc to the default options.
204
205 2002-04-15  Michael Hope  <michaelh@vroom>
206
207         * device/lib/z80/printf.c (sprintf): Added.
208
209         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
210
211         * src/z80/peeph.def: Added transpose redundent load rule.
212
213         * src/z80/main.c: Added force callee saves for jaune.
214
215         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
216
217         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
218
219 2002-03-28  Johan Knol  <johan@balder>
220
221         * src/SDCCval.c: fixed bug #532436
222
223 2002-03-14  Scott Dattalo <scott@dattalo.com>
224         * /src/port.h:
225         Added "char *Processor" field to the port structure.
226
227         * /src/SDCCmain.c:
228         Added -p option. Allows port dependent processor to be specified.
229
230         * all ports:
231         Initialized the new field char *Processor field to NULL in all ports
232
233         * /src/pic/*:
234         Compiler generated registers for interrupt context saving
235         were not getting allocated.
236                 
237 2002-03-16  Sandeep Dutta  <sandeep@ddi.com>
238
239         * /src/SDCCast.c:
240         Fixed left shift. Will promote the left side of a left shift
241         if a) left shifting more than size of operand or b) when assigned
242         to something size > size of left side
243
244 2002-03-14  Scott Dattalo <scott@dattalo.com>
245         * src/pic/*
246         tons of changes. Register allocation has been 
247         rewritten. Added customization for the various PICs. Flow
248         analysis is restructured. ...
249
250         * src/pic/device.h:
251         Added
252
253         * src/pic/device.c:
254         Added. device.c is a PIC port hack to accomodate variations
255         in PIC devices.
256
257 2002-03-13  Michael Hope  <michaelh@vroom>
258
259         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
260
261 2002-03-04  johanknol  <johanknol@manik>
262
263         * /src/SDCCval.c: fixed
264
265         const unsigned char arr[][2] = { { 0, 1 } };
266         t18.c:1: error: Initializer element is not constant
267
268 2002-03-04  bela  <bela@manik>
269
270         * /device/include/mcs51reg.h:
271         ds89c420 register definition update
272
273 2002-03-03    <johan@FRIJA>
274
275         * support/Util/SDCCerr.c: did something, but don't no why anymore
276
277         * support/regression/tests/bug-524691.c: made it a little less shy 
278
279         * src/SDCCast.c (decorateType): fixed bug #524697 
280
281         * src/SDCCast.c: made some lineno improvements
282
283         * src/SDCCval.c (getNelements): changed warning to error
284
285         * src/SDCCglue.c (printIvalArray): changed warning to error
286
287         * src/SDCCicode.c: fixed a warning for mingw
288
289         * src/SDCCast.c (decorateType): fixed the << promotion for ops
290
291         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
292
293 2002-03-02  Sandeep Dutta  <sandeep@ddi.com>
294
295         * src/ds390/peeph.def:
296         Added some more peephole rules
297
298         * src/ds390/gen.c: Various fixes & enhancements
299
300         * src/SDCClrange.c, src/SDCClrange.h:
301         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
302
303         * src/ds390/ralloc.c:
304         various fixes & enhancements (ds390) specific
305
306         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
307         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
308         from rallocs.
309
310         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
311
312 2002-03-02    <johan@FRIJA>
313
314         * src/SDCCast.c (decorateType): fixed bug #524708
315
316         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
317
318         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
319
320 2002-03-01  Michael Hope  <michaelh@vroom>
321
322         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
323
324         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
325
326 2002-03-01    <johan@FRIJA>
327
328         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
329
330         * src/SDCCast.c (decorateType): fixed bug #524209
331
332         * src/SDCCval.c (valNot): fixed bug #524195
333
334 2002-02-26    <johan@balder>
335
336         * src/xa51/gen.c: fixed a warning
337
338         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
339
340         * src/SDCCast.c (decorateType): fixed bug #522534
341
342 2002-02-23    <johan@balder>
343
344         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
345
346 2002-02-22    <johan@balder>
347
348         * src/SDCCast.c: fixed bug #514865
349
350         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
351
352 2002-02-21  Sandeep Dutta  <sandeep@ddi.com>
353
354         * sdcc/src/SDCCloop.c:
355         Previous fix was not good. basic blocks that have "break" or "return" are
356         not really partof a loop , but live ranges used in these blocks should
357         be live thru the entire loop, so set partOfLoop but don't add them to
358         loop region
359
360 2002-02-21    <johan@FRIJA>
361
362         * src/SDCCcse.c: fixed bug #514308
363
364 2002-02-20  Sandeep Dutta  <sandeep@ddi.com>
365
366         * src/SDCCloop.c:
367         Fixed BUG #519583. If a conditional block ended in a return/break
368         statement inside a loop, it was not being considered part of the loop.
369
370         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
371
372 2002-02-10  Karl Bongers <karl@turbobit.com>
373
374         * debugger/*:
375         Fixed up SDCDB debugger somewhat.  Updated debugger/README
376         with lots of comments and notes.
377
378         * device/examples/test2.c:
379         Fix bug, "red" variable not being initialized(compiler complained).
380
381         * device/examples/Makefile, examples/test3.c:
382         Add Makefile in device/examples folder, compiles test3.c
383         for use as a multiple module SDCDB test case.
384
385         * sim/ucsim/cmd.src/cmdset.cc:
386         Took out debug printfs in ucsim "next" command.
387
388         * sim/ucsim/xa.src:
389         Karl and Johan start ucsim XA support.  Most dissassembly working,
390         about 75% emulation done(plenty of work remaining).
391
392         * sim/ucsim/z80.src:
393         Add Z80 support to ucsim, add test-ucz80 regression test,
394         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
395         Notice z80 compiler fails on examples/test3.c/crc code.
396
397 2002-01-30  Sandeep Dutta  <sandeep@ddi.com>
398
399         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
400         Added support for --parms-in-bank1
401
402         * src/ds390/peeph.def:
403         added a few more peephole optimzations
404
405         * src/ds390/main.c:
406         1) added __builtin_inp & __builtin_outp used to read in data of given length
407            from a memory mapped port
408         2) added __builtin_memcmp
409         3) added __builtin_swapw swap bytes of a short
410
411         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
412         1) handle multiple send & receives from register bank1
413         2) ralloc can now allocate DPTR1 to some liveRanges
414
415         * src/SDCCsymt.c, src/SDCCsymt.h:
416         changes to handle multiple sends & receives
417
418         * src/SDCCptropt.h:
419         added some pointer arithmetic optimization
420
421         * src/SDCCptropt.c:
422         added some pointer arithmetic optimizations but not stable yet so not
423         called from anywhere (will get this working shortly)
424
425         * src/SDCCopt.c: fixed for multiple sends & receives
426
427         * src/SDCCmain.c:
428         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
429         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
430            set preprocessor defines (depending on options)
431
432         * src/SDCCicode.c, src/SDCCicode.h:
433         changes made to handle multiple sends & receives
434
435         * src/SDCCglobl.h:
436         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
437
438         * src/SDCCcse.c, src/SDCCcse.h:
439         added function findbackward def (to be used in upcoming optimization)
440
441         * src/SDCCcflow.c, src/SDCCcflow.h:
442         added function returnAtEnd - to determine if a basic block terminates with
443         a RETURN iCode
444
445         * src/SDCCast.c, src/SDCCast.h:
446         added option parms-in-bank1
447
448         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c 
449         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c 
450         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
451         adjusted for --parms-in-bank1 option
452
453         * device/include/string.h:
454         donot redefine "reentrant" keyword
455
456         * device/include/ds80c390.h: Added some more SFRs
457
458 2002-01-28  Bernhard Held  <bernhard@bernhardheld.de>
459
460         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4 
461
462 2002-01-26  Bernhard Held  <bernhard@bernhardheld.de>
463
464         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
465
466 2002-01-22  Bernhard Held  <bernhard@bernhardheld.de>
467
468         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
469
470 2002-01-18  Paul Stoffregen  <paul@pjrc.com>
471
472         * Added --xram-movc option
473
474 2002-01-13  Bernhard Held  <bernhard@bernhardheld.de>
475
476         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
477
478 2002-01-11  Johan Knol
479
480         * Added math lib of Jesus Calvino-Fraga
481
482 2002-01-08  Bernhard Held  <bernhard@bernhardheld.de>
483
484         * src/SDCCmain.c (processFile): fix processing of ../../src.c
485         * support/regression/Makefile: new target test-mcs51-stack-auto
486         * support/regression/ports/mcs51-stack-auto/spec.mk: added
487
488 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
489
490         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
491
492 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
493
494         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
495
496 2002-01-03  Bernhard Held  <bernhard@bernhardheld.de>
497
498         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
499
500         * src/SDCCglue.h: add definition for printIvalChar()
501
502 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
503
504         * src/SDCCast.c: fix #498138 by Johan
505
506         * src/SDCCglue.c: fix #498138 by Johan
507
508 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
509
510         * support/regression/Makefile: fix clean
511
512         * support/regression/ports/ds390/support.c: fix transmission of last character
513
514 2001-12-29  Sandeep Dutta  <sandeep@ddi.com>
515
516         * /sdcc/src/ds390/gen.c:
517         a) improved computing address of stack variable
518         b) took out some #if 0 code
519         c) improved parmBytes adjustment
520         d) improved genPlusIncr & genMinusIncr
521         e) genCmp could generate bad code (when left assigned to DPTR)
522         f) Fixed bug in hasInc
523
524         * /sdcc/src/ds390/ralloc.c:
525         a) packRegsForSupport could mess up live information (Fixed)
526         b) packRegsDPTRuse could be incorrect for left & right shift
527
528         * /sdcc/src/mcs51/ralloc.c:
529         packRegsForSupport could mess up the live information (Fixed)
530
531         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
532
533         * /sdcc/src/SDCCast.c:
534         can reverse a loop even if function call is present as long
535         as the loop control variable is local & is not passed as parameter
536
537 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
538
539         * /sdcc/ChangeLog: *** empty log message ***
540
541         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
542         More builtin function additions for TININative
543
544         * /sdcc/src/ds390/ralloc.c:
545         Had broken the regression testsuite
546
547         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
548
549         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
550         Added funcattr hasStackParms will be set for reentrant functions when there
551         are paramteres on the stack, this helps in minimizing frame pointer generation
552         typeFromStr can handle function pointers now
553
554         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
555         *** empty log message ***
556
557 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
558
559         * /src/ds390/gen.c, /src/ds390/main.c:
560         More builtin function additions for TININative
561
562         * /src/ds390/ralloc.c:
563         Had broken the regression testsuite
564
565         * /src/SDCCast.c: Fixed a bug in dumptree
566
567         * /src/SDCCsymt.c, /src/SDCCsymt.h:
568         Added funcattr hasStackParms will be set for reentrant functions when there
569         are paramteres on the stack, this helps in minimizing frame pointer generation
570         typeFromStr can handle function pointers now
571
572         * /doc/builtins.txt, /doc/TININative.txt:
573         *** empty log message ***
574
575
576 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
577
578         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
579         ALPHA version for -mTININative
580
581         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
582         updated to reflect changes in the port structure
583
584         * /src/port.h:
585         added function do_assemble (similar to do_link) if non-null this function
586         will be called to do assembly (-mTININative) requires a multi command
587         assembly
588         added function genAssemblerEnd will be called to generate assembler Epilogue
589
590         * /src/SDCCsymt.c:
591         added _JavaNative to debug info printing
592
593         * /src/SDCCmain.c: added option --tini-libid
594         added port->do_assemble function (-mTININative) has a multi command assemble
595
596         * /src/SDCCglue.c: Disabled "constExpr" check
597         added port->genAssemblerEnd function
598
599         * /src/SDCCglobl.h: Added option --tini-libid value
600
601         * /src/SDCCast.h:
602         tookout optimizeCompare from the header (has no external references)
603
604         * /src/SDCCast.c: made one more function "static"
605
606 2001-12-23  Michael Hope  <michaelh@juju.net.nz>
607
608         * src/z80/mappings.i: Added z80asm support.
609
610         * src/z80/main.c: Added z80asm support on --asm=z80asm
611
612         * src/z80/gen.c: Fixed asm portability issues.
613
614         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
615
616         * src/SDCCglue.c (printExterns): Added global/extern split.
617
618 2001-12-17  Bernhard Held  <bernhard@bernhardheld.de>
619
620         * support/regression/Makefile: added test for mcs51 model large
621
622         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
623
624         * support/regression/ports/gbz80/spec.mk: added -mgbz80
625
626 2001-12-05  Michael Hope  <michaelh@juju.net.nz>
627
628         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
629
630 1904-01-06  Michael Hope  <michaelh@juju.net.nz>
631
632         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
633
634         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
635
636 2001-12-02  Bernhard Held  <bernhard@bernhardheld.de>
637
638         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
639
640         * support/regression/tests/simplefloat.c: Port to mcs51.
641
642 2001-11-25  Michael Hope  <michaelh@juju.net.nz>
643         * support/regression/tests/bug-485362.c: Added.
644
645         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
646
647         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
648
649         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
650
651         * src/z80/gen.c (aopDump): Added a dump function.
652
653 2001-11-25  Bernhard Held  <bernhard@bernhardheld.de>
654         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
655
656         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
657
658         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
659
660         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
661
662         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
663
664         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
665
666         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
667
668         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
669
670         * support/regression/ports/ds390/support.c: Use tinibios.
671
672         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
673
674 2001-11-23  Michael Hope  <michaelh@juju.net.nz>support/regression/tests/bug-460010.c
675
676         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
677         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
678
679         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
680
681         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
682
683 2001-11-18  Michael Hope  <michaelh@juju.net.nz>
684
685         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
686
687         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
688         (packRegsForIYUse): Created and optimised.
689
690 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
691
692         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
693 2001-11-18  Bernhard Held  <bernhard@bernhardheld.de>
694
695         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
696
697         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
698
699         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
700
701 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
702
703         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
704
705         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
706
707 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
708
709         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
710
711         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
712
713         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
714
715 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
716
717         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
718         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
719         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
720
721         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
722
723         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
724         (genNotFloat): Added.
725         (genUminusFloat): Added.
726
727         * device/lib/z80/Makefile: Added floating pt stubs.
728
729         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
730
731         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
732
733         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
734
735 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
736
737         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
738
739         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
740
741         * sdcc/support/regression/Makefile: Add port ds390.
742
743         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
744
745         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
746
747         * sdcc/support/regression/ports/ds390/spec.mk: Added.
748
749         * sdcc/support/regression/ports/ds390/support.c: Added.
750
751         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
752
753         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
754
755         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
756
757 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
758
759         * device/include/malloc.h: Added z80 and gbz80 support.
760
761         * device/lib/gbz80/heap.s: Added.
762
763         * device/lib/z80/heap.s: Added.
764
765         * device/lib/malloc.c: Added z80 and gbz80 support.
766
767         * support/regression/tests/malloc.c (testMalloc): Added.
768
769         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
770
771         * support/regression/tests/bug-478094.c: Added.
772
773         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
774
775 2001-11-04  Bernhard Held  <bernhard@bernhardheld.de>
776
777         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
778
779         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
780
781         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
782
783         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
784
785         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
786
787 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
788
789         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
790
791 2001-11-03  Michael Hope  <michaelh@juju.net.nz>
792
793         * support/regression/tests/bug-477927.c: Added.
794
795         * src/z80/peeph.def: Added minor rules.
796
797         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
798
799         * src/z80/peeph.def: Added jump optimisation modification.
800
801 2001-11-01  Michael Hope  <michaelh@juju.net.nz>
802
803         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
804
805 2001-10-30  Michael Hope  <michaelh@juju.net.nz>
806
807         * support/regression/tests/funptrs.c: Added.
808
809 2001-10-29  Michael Hope  <michaelh@juju.net.nz>
810
811         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
812
813 2001-10-28  Michael Hope  <michaelh@juju.net.nz>
814
815         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
816
817         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
818
819         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
820         (movLeft2ResultLong): Created.
821
822         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
823         (joinPushes): Added.  Joins two char pushes into a word push.
824
825 2001-10-27  Michael Hope  <michaelh@juju.net.nz>
826
827         * support/cpp2/Makefile.in (install): Added creation of dest dir.
828
829         * support/makebin/Makefile (install): Added creation of dest dir.
830
831 2001-10-24 Karl Bongers <karl@turbobit.com>
832
833         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
834
835 2001-10-21  Michael Hope  <michaelh@juju.net.nz>
836
837         * src/z80/ralloc.c: Turned off faulty pack for one use.
838
839         * src/z80/peeph-gbz80.def: Removed redundent restart options.
840
841         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
842
843 2001-10-21  Bernhard Held  <bernhard@bernhardheld.de>
844
845         * support/regression/Makefile: Improved clean
846
847         * support/regression/ports/gbz80/spec.mk: Added clean
848
849         * support/regression/ports/host/spec.mk: Added clean
850
851         * support/regression/ports/z80/spec.mk: Added clean
852
853         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
854
855         * support/regression/ports/mcs51/timeout.c: little improvements
856
857 2001-10-17  Michael Hope  <michaelh@juju.net.nz>
858
859         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
860
861         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
862
863         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
864
865 2001-10-16  Bernhard Held  <bernhard@bernhardheld.de>
866
867         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
868
869         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
870
871 2001-10-13  Michael Hope  <michaelh@juju.net.nz>
872         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
873
874         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
875
876         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
877
878         * src/mcs51/main.c (_linkCmd): Added bin path to command.
879
880         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
881
882         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
883
884         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
885
886         * support/regression/tests/longor.c: Added.
887
888 2001-10-11  Bernhard Held  <bernhard@bernhardheld.de>
889
890         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
891
892         * as/mcs51/aslink.h: define PATH_MAX
893
894         * as/mcs51/asm.h: define PATH_MAX
895
896         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
897
898         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
899
900         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
901
902         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
903
904         * src/SDCCglobl.h: define PATH_MAX
905
906         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
907
908         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
909
910 2001-10-11  Michael Hope  <michaelh@juju.net.nz>
911
912         * src/z80/gen.c (gencjneshort): Fixed
913
914         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
915
916 2001-10-09  Michael Hope  <michaelh@juju.net.nz>
917
918         * support/regression/tests/bug-469671.c: Added.
919
920         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
921
922 2001-10-08  Michael Hope  <michaelh@juju.net.nz>
923
924         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
925
926         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
927
928 2001-10-08  Bernhar Held  <bernhard@bernhardheld.de>
929
930         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
931
932         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
933
934         * src/device/lib/_mullong.c : removed hint: nooverlay bug
935
936         * src/device/lib/_divuint.c : removed hint: nooverlay bug
937
938         * src/device/lib/_divulong.c: removed hint: nooverlay bug
939
940         * src/device/lib/_moduint.c : removed hint: nooverlay bug
941
942         * src/device/lib/_modulong.c: removed hint: nooverlay bug
943
944 2001-10-07  Michael Hope  <michaelh@juju.net.nz>
945
946         * 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.
947
948         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
949
950         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
951
952 2001-10-07    <johan@FRIJA>
953
954         * device/lib/gets.c (gets): fixed the return value.
955
956 2001-10-06  Michael Hope  <michaelh@juju.net.nz>
957         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
958
959         * 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.
960
961         * 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.
962
963         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
964
965         * src/pic/gen.c: Removed Safe_strdup.
966
967         * configure.in: Added option to enable libgc support.
968
969         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
970         (bitVectUnion): Optimised.
971         (bitVectIntersect): Optimised.
972         (bitVectBitsInCommon): Optimised.
973         (bitVectCplAnd): Optimised.
974
975         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
976
977 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
978
979         * src/SDCCmain.c: distinguish between assembler debug and plain options
980
981         * src/avr/main.c:   remove standard assembler options
982
983         * src/ds390/main.c: remove standard assembler options
984
985         * src/mcs51/main.c: remove standard assembler options
986
987         * src/port.h: removed "PENDING" comment
988
989 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
990
991         * src/device/lib/_mulint.c  : new, with assember functions
992
993         * src/device/lib/_mullong.c : new, with assember functions
994
995         * src/device/lib/_divuint.c : with assember functions
996
997         * src/device/lib/_divsint.c : with assember functions
998
999         * src/device/lib/_divulong.c: with assember functions
1000
1001         * src/device/lib/_divslong.c: with assember functions
1002
1003         * src/device/lib/_moduint.c : with assember functions
1004
1005         * src/device/lib/_modsint.c : with assember functions
1006
1007         * src/device/lib/_modulong.c: with assember functions
1008
1009         * src/device/lib/_modslong.c: with assember functions
1010
1011         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
1012
1013         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
1014
1015         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
1016                                       replaced _mululong.c and _mulslong.c by _mullong.c
1017
1018 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
1019
1020         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
1021
1022 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
1023
1024         * src/SDCCglue.c: test, if win32api is available for MINGW
1025
1026 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
1027
1028         * src/SDCCsymt.c: no more _modifier in printTypeChain()
1029         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
1030         * support/regression/ports/gbz80/spec.mk: removed GENERIC
1031         * support/regression/ports/host/spec.mk: removed GENERIC
1032         * support/regression/ports/mcs51/spec.mk: removed GENERIC
1033         * support/regression/ports/z80/spec.mk: removed GENERIC
1034
1035 2001-10-01  Michael Hope  <michaelh@juju.net.nz>
1036
1037         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
1038
1039         * support/regression/tests/bug-467035.c: Created.
1040
1041 2001-10-01    <johan@FRIJA>
1042
1043         * src/SDCC.y: fixed bug #466586 part 1
1044
1045 2001-10-01  Johan Knol <johan.knol@iduna.nl>
1046
1047         * SDCCicode.c: z80 has no generic pointers
1048         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
1049         
1050 2001-09-30  Michael Hope  <michaelh@juju.net.nz>
1051
1052         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
1053
1054 2001-09-29  Michael Hope  <michaelh@juju.net.nz>
1055
1056         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
1057
1058         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
1059
1060 2001-09-25  Michael Hope  <michaelh@juju.net.nz>
1061
1062         * configure.in: Fixed up so that ucsim is only configured once.
1063
1064         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
1065
1066         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
1067         (getPathDifference): As above.
1068
1069         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
1070
1071         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
1072
1073 2001-09-23  Michael Hope  <michaelh@juju.net.nz>
1074         * .version: Updated to 2.3.1
1075
1076         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
1077         Added copyright header.
1078
1079         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
1080         (assemble): Added support for macro based assembler commands.
1081         (linkEdit): Added support for macro based linker commands.
1082         (preProcess): Changed the pre-processor to use macros.
1083         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
1084         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
1085
1086         * device/lib/z80/crt0.s: Added module name for debugging.
1087
1088 2001-09-20  Michael Hope  <michaelh@juju.net.nz>
1089
1090         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
1091
1092         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
1093
1094         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
1095
1096         * src/Makefile.in: Added SDCCmacro and SDCCutil
1097
1098 2001-09-19  Michael Hope  <michaelh@juju.net.nz>
1099
1100         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
1101
1102 2001-09-16    <johan@FRIJA>
1103
1104         * 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.
1105
1106 2001-09-15    <johan@FRIJA>
1107
1108         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
1109         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
1110
1111 2001-09-11    <johan@FRIJA>
1112
1113         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
1114
1115 2001-09-10  Michael Hope  <michaelh@juju.net.nz>
1116
1117         * support/regression/tests/bug-460444.c: Added test case.
1118
1119         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
1120         (genCast): Added justification for all of the asserts.
1121
1122 2001-09-10  Bernhard Held <bernhard@bernhardheld.de>
1123
1124         * support/regression/support.c: _xdata replaced by xdata
1125
1126         * support/regression/spec.mk: removed _generic
1127
1128 2001-09-09  Michael Hope  <michaelh@juju.net.nz>
1129
1130         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
1131
1132         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
1133         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
1134
1135         * src/z80/peeph.def: Added a rule to optimise shift then compare.
1136
1137         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
1138
1139         * support/regression/tests/bug-460010.c: Added test case.
1140
1141         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
1142
1143 2001-09-09  Bernhard Held <bernhard@bernhardheld.de>
1144
1145         * support/regression/Makefile: inter-port-clean adjusted for mcs51
1146
1147         * support/regression/testfwk.c: removed workaround for bug #436344
1148
1149         * support/regression/tests/bp.c: use less memory with mcs51
1150
1151         * support/regression/tests/bug-441448.c: use less memory
1152
1153         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
1154
1155         * support/regression/collate-results.py: typo
1156
1157 2001-09-08  Michael Hope  <michaelh@juju.net.nz>
1158
1159         * support/regression/tests/fetchoverlap.c: Added new test case.
1160
1161         * support/regression/tests/bp.c: Added new test case.
1162
1163         * support/regression/tests/bug-448984.c: Added new test case.
1164
1165         * support/regression/tests/pow2shifts.c: Added new test case.
1166
1167         * src/z80/gen.c: Turned off the noise it normally generates for the release.
1168         (genlshTwo): Fixed right shift for count > 8.
1169
1170         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
1171
1172 2001-09-08    <johan@FRIJA>
1173
1174         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
1175
1176 2001-09-07    <johan@FRIJA>
1177
1178         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
1179
1180         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
1181
1182 2001-09-06    <johan@FRIJA>
1183
1184         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
1185         * bernhard noted me at this: "() equals to (void)" (1.38)
1186
1187 2001-09-05    <johan@FRIJA>
1188
1189         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
1190
1191 2001-09-04    <johan@FRIJA>
1192
1193         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
1194
1195
1196 2001-09-04  Paul Stoffregen  <paul@pjrc.com>
1197
1198         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
1199
1200 2001-09-03  Michael Hope  <michaelh@juju.net.nz>
1201
1202         * link/z80/aslink.h: Fixed path for PATH_MAX
1203
1204 2001-09-02  Michael Hope  <michaelh@juju.net.nz>
1205
1206         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
1207
1208         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
1209
1210         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
1211
1212         * 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.
1213
1214 2001-09-01  Michael Hope  <michaelh@juju.net.nz>
1215
1216         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
1217         (genCmp): Fixed up genCmp for the GB with longs.
1218
1219         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
1220
1221         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
1222
1223         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
1224
1225         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
1226
1227 2001-08-30  Paul Stoffregen  <paul@pjrc.com>
1228
1229         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
1230
1231 2001-08-30  Michael Hope  <michaelh@juju.net.nz>
1232
1233         * 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.
1234
1235         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
1236
1237 2001-08-29  Michael Hope  <michaelh@juju.net.nz>
1238
1239         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
1240
1241         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
1242
1243 2001-08-30 Bernhard Held   <bernhard@bernhardheld.de>
1244
1245   * sim/ucsim/configure:    little improvement of Cygwin-detection      
1246   * sim/ucsim/configure.in: little improvement of Cygwin-detection      
1247   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
1248   * support/regression/tests/bug-221100.c: small changes for mcs51
1249   * support/regression/tests/bug-221168.c: small changes for mcs51
1250   * support/regression/tests/bug-227710.c: small changes for mcs51
1251   * support/regression/tests/staticinit.c: small changes for mcs51
1252   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
1253   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
1254   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601