add ucsim z80 test-ucz80 support
[fw/sdcc] / ChangeLog
1 2002-01-30  Sandeep Dutta  <sandeep@ddi.com>
2
3         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
4         Added support for --parms-in-bank1
5
6         * src/ds390/peeph.def:
7         added a few more peephole optimzations
8
9         * src/ds390/main.c:
10         1) added __builtin_inp & __builtin_outp used to read in data of given length
11            from a memory mapped port
12         2) added __builtin_memcmp
13         3) added __builtin_swapw swap bytes of a short
14
15         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
16         1) handle multiple send & receives from register bank1
17         2) ralloc can now allocate DPTR1 to some liveRanges
18
19         * src/SDCCsymt.c, src/SDCCsymt.h:
20         changes to handle multiple sends & receives
21
22         * src/SDCCptropt.h:
23         added some pointer arithmetic optimization
24
25         * src/SDCCptropt.c:
26         added some pointer arithmetic optimizations but not stable yet so not
27         called from anywhere (will get this working shortly)
28
29         * src/SDCCopt.c: fixed for multiple sends & receives
30
31         * src/SDCCmain.c:
32         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
33         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
34            set preprocessor defines (depending on options)
35
36         * src/SDCCicode.c, src/SDCCicode.h:
37         changes made to handle multiple sends & receives
38
39         * src/SDCCglobl.h:
40         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
41
42         * src/SDCCcse.c, src/SDCCcse.h:
43         added function findbackward def (to be used in upcoming optimization)
44
45         * src/SDCCcflow.c, src/SDCCcflow.h:
46         added function returnAtEnd - to determine if a basic block terminates with
47         a RETURN iCode
48
49         * src/SDCCast.c, src/SDCCast.h:
50         added option parms-in-bank1
51
52         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c 
53         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c 
54         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
55         adjusted for --parms-in-bank1 option
56
57         * device/include/string.h:
58         donot redefine "reentrant" keyword
59
60         * device/include/ds80c390.h: Added some more SFRs
61
62 2002-01-28  Bernhard Held  <bernhard@bernhardheld.de>
63
64         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4 
65
66 2002-01-26  Bernhard Held  <bernhard@bernhardheld.de>
67
68         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
69
70 2002-01-22  Bernhard Held  <bernhard@bernhardheld.de>
71
72         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
73
74 2002-01-18  Paul Stoffregen  <paul@pjrc.com>
75
76         * Added --xram-movc option
77
78 2002-01-13  Bernhard Held  <bernhard@bernhardheld.de>
79
80         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
81
82 2002-01-11  Johan Knol
83
84         * Added math lib of Jesus Calvino-Fraga
85
86 2002-01-08  Bernhard Held  <bernhard@bernhardheld.de>
87
88         * src/SDCCmain.c (processFile): fix processing of ../../src.c
89         * support/regression/Makefile: new target test-mcs51-stack-auto
90         * support/regression/ports/mcs51-stack-auto/spec.mk: added
91
92 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
93
94         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
95
96 2002-01-04  Bernhard Held  <bernhard@bernhardheld.de>
97
98         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
99
100 2002-01-03  Bernhard Held  <bernhard@bernhardheld.de>
101
102         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
103
104         * src/SDCCglue.h: add definition for printIvalChar()
105
106 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
107
108         * src/SDCCast.c: fix #498138 by Johan
109
110         * src/SDCCglue.c: fix #498138 by Johan
111
112 2002-01-02  Bernhard Held  <bernhard@bernhardheld.de>
113
114         * support/regression/Makefile: fix clean
115
116         * support/regression/ports/ds390/support.c: fix transmission of last character
117
118 2001-12-29  Sandeep Dutta  <sandeep@ddi.com>
119
120         * /sdcc/src/ds390/gen.c:
121         a) improved computing address of stack variable
122         b) took out some #if 0 code
123         c) improved parmBytes adjustment
124         d) improved genPlusIncr & genMinusIncr
125         e) genCmp could generate bad code (when left assigned to DPTR)
126         f) Fixed bug in hasInc
127
128         * /sdcc/src/ds390/ralloc.c:
129         a) packRegsForSupport could mess up live information (Fixed)
130         b) packRegsDPTRuse could be incorrect for left & right shift
131
132         * /sdcc/src/mcs51/ralloc.c:
133         packRegsForSupport could mess up the live information (Fixed)
134
135         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
136
137         * /sdcc/src/SDCCast.c:
138         can reverse a loop even if function call is present as long
139         as the loop control variable is local & is not passed as parameter
140
141 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
142
143         * /sdcc/ChangeLog: *** empty log message ***
144
145         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
146         More builtin function additions for TININative
147
148         * /sdcc/src/ds390/ralloc.c:
149         Had broken the regression testsuite
150
151         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
152
153         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
154         Added funcattr hasStackParms will be set for reentrant functions when there
155         are paramteres on the stack, this helps in minimizing frame pointer generation
156         typeFromStr can handle function pointers now
157
158         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
159         *** empty log message ***
160
161 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
162
163         * /src/ds390/gen.c, /src/ds390/main.c:
164         More builtin function additions for TININative
165
166         * /src/ds390/ralloc.c:
167         Had broken the regression testsuite
168
169         * /src/SDCCast.c: Fixed a bug in dumptree
170
171         * /src/SDCCsymt.c, /src/SDCCsymt.h:
172         Added funcattr hasStackParms will be set for reentrant functions when there
173         are paramteres on the stack, this helps in minimizing frame pointer generation
174         typeFromStr can handle function pointers now
175
176         * /doc/builtins.txt, /doc/TININative.txt:
177         *** empty log message ***
178
179
180 2001-12-24  Sandeep Dutta  <sandeep@ddi.com>
181
182         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
183         ALPHA version for -mTININative
184
185         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
186         updated to reflect changes in the port structure
187
188         * /src/port.h:
189         added function do_assemble (similar to do_link) if non-null this function
190         will be called to do assembly (-mTININative) requires a multi command
191         assembly
192         added function genAssemblerEnd will be called to generate assembler Epilogue
193
194         * /src/SDCCsymt.c:
195         added _JavaNative to debug info printing
196
197         * /src/SDCCmain.c: added option --tini-libid
198         added port->do_assemble function (-mTININative) has a multi command assemble
199
200         * /src/SDCCglue.c: Disabled "constExpr" check
201         added port->genAssemblerEnd function
202
203         * /src/SDCCglobl.h: Added option --tini-libid value
204
205         * /src/SDCCast.h:
206         tookout optimizeCompare from the header (has no external references)
207
208         * /src/SDCCast.c: made one more function "static"
209
210 2001-12-23  Michael Hope  <michaelh@juju.net.nz>
211
212         * src/z80/mappings.i: Added z80asm support.
213
214         * src/z80/main.c: Added z80asm support on --asm=z80asm
215
216         * src/z80/gen.c: Fixed asm portability issues.
217
218         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
219
220         * src/SDCCglue.c (printExterns): Added global/extern split.
221
222 2001-12-17  Bernhard Held  <bernhard@bernhardheld.de>
223
224         * support/regression/Makefile: added test for mcs51 model large
225
226         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
227
228         * support/regression/ports/gbz80/spec.mk: added -mgbz80
229
230 2001-12-05  Michael Hope  <michaelh@juju.net.nz>
231
232         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
233
234 1904-01-06  Michael Hope  <michaelh@juju.net.nz>
235
236         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
237
238         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
239
240 2001-12-02  Bernhard Held  <bernhard@bernhardheld.de>
241
242         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
243
244         * support/regression/tests/simplefloat.c: Port to mcs51.
245
246 2001-11-25  Michael Hope  <michaelh@juju.net.nz>
247         * support/regression/tests/bug-485362.c: Added.
248
249         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
250
251         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
252
253         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
254
255         * src/z80/gen.c (aopDump): Added a dump function.
256
257 2001-11-25  Bernhard Held  <bernhard@bernhardheld.de>
258         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
259
260         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
261
262         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
263
264         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
265
266         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
267
268         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
269
270         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
271
272         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
273
274         * support/regression/ports/ds390/support.c: Use tinibios.
275
276         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
277
278 2001-11-23  Michael Hope  <michaelh@juju.net.nz>support/regression/tests/bug-460010.c
279
280         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
281         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
282
283         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
284
285         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
286
287 2001-11-18  Michael Hope  <michaelh@juju.net.nz>
288
289         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
290
291         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
292         (packRegsForIYUse): Created and optimised.
293
294 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
295
296         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
297 2001-11-18  Bernhard Held  <bernhard@bernhardheld.de>
298
299         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
300
301         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
302
303         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
304
305 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
306
307         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
308
309         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
310
311 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
312
313         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
314
315         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
316
317         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
318
319 2001-11-07  Michael Hope  <michaelh@juju.net.nz>
320
321         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
322         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
323         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
324
325         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
326
327         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
328         (genNotFloat): Added.
329         (genUminusFloat): Added.
330
331         * device/lib/z80/Makefile: Added floating pt stubs.
332
333         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
334
335         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
336
337         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
338
339 2001-11-07  Bernhard Held  <bernhard@bernhardheld.de>
340
341         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
342
343         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
344
345         * sdcc/support/regression/Makefile: Add port ds390.
346
347         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
348
349         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
350
351         * sdcc/support/regression/ports/ds390/spec.mk: Added.
352
353         * sdcc/support/regression/ports/ds390/support.c: Added.
354
355         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
356
357         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
358
359         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
360
361 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
362
363         * device/include/malloc.h: Added z80 and gbz80 support.
364
365         * device/lib/gbz80/heap.s: Added.
366
367         * device/lib/z80/heap.s: Added.
368
369         * device/lib/malloc.c: Added z80 and gbz80 support.
370
371         * support/regression/tests/malloc.c (testMalloc): Added.
372
373         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
374
375         * support/regression/tests/bug-478094.c: Added.
376
377         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
378
379 2001-11-04  Bernhard Held  <bernhard@bernhardheld.de>
380
381         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
382
383         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
384
385         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
386
387         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
388
389         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
390
391 2001-11-04  Michael Hope  <michaelh@juju.net.nz>
392
393         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
394
395 2001-11-03  Michael Hope  <michaelh@juju.net.nz>
396
397         * support/regression/tests/bug-477927.c: Added.
398
399         * src/z80/peeph.def: Added minor rules.
400
401         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
402
403         * src/z80/peeph.def: Added jump optimisation modification.
404
405 2001-11-01  Michael Hope  <michaelh@juju.net.nz>
406
407         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
408
409 2001-10-30  Michael Hope  <michaelh@juju.net.nz>
410
411         * support/regression/tests/funptrs.c: Added.
412
413 2001-10-29  Michael Hope  <michaelh@juju.net.nz>
414
415         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
416
417 2001-10-28  Michael Hope  <michaelh@juju.net.nz>
418
419         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
420
421         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
422
423         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
424         (movLeft2ResultLong): Created.
425
426         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
427         (joinPushes): Added.  Joins two char pushes into a word push.
428
429 2001-10-27  Michael Hope  <michaelh@juju.net.nz>
430
431         * support/cpp2/Makefile.in (install): Added creation of dest dir.
432
433         * support/makebin/Makefile (install): Added creation of dest dir.
434
435 2001-10-24 Karl Bongers <karl@turbobit.com>
436
437         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
438
439 2001-10-21  Michael Hope  <michaelh@juju.net.nz>
440
441         * src/z80/ralloc.c: Turned off faulty pack for one use.
442
443         * src/z80/peeph-gbz80.def: Removed redundent restart options.
444
445         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
446
447 2001-10-21  Bernhard Held  <bernhard@bernhardheld.de>
448
449         * support/regression/Makefile: Improved clean
450
451         * support/regression/ports/gbz80/spec.mk: Added clean
452
453         * support/regression/ports/host/spec.mk: Added clean
454
455         * support/regression/ports/z80/spec.mk: Added clean
456
457         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
458
459         * support/regression/ports/mcs51/timeout.c: little improvements
460
461 2001-10-17  Michael Hope  <michaelh@juju.net.nz>
462
463         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
464
465         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
466
467         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
468
469 2001-10-16  Bernhard Held  <bernhard@bernhardheld.de>
470
471         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
472
473         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
474
475 2001-10-13  Michael Hope  <michaelh@juju.net.nz>
476         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
477
478         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
479
480         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
481
482         * src/mcs51/main.c (_linkCmd): Added bin path to command.
483
484         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
485
486         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
487
488         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
489
490         * support/regression/tests/longor.c: Added.
491
492 2001-10-11  Bernhard Held  <bernhard@bernhardheld.de>
493
494         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
495
496         * as/mcs51/aslink.h: define PATH_MAX
497
498         * as/mcs51/asm.h: define PATH_MAX
499
500         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
501
502         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
503
504         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
505
506         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
507
508         * src/SDCCglobl.h: define PATH_MAX
509
510         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
511
512         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
513
514 2001-10-11  Michael Hope  <michaelh@juju.net.nz>
515
516         * src/z80/gen.c (gencjneshort): Fixed
517
518         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
519
520 2001-10-09  Michael Hope  <michaelh@juju.net.nz>
521
522         * support/regression/tests/bug-469671.c: Added.
523
524         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
525
526 2001-10-08  Michael Hope  <michaelh@juju.net.nz>
527
528         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
529
530         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
531
532 2001-10-08  Bernhar Held  <bernhard@bernhardheld.de>
533
534         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
535
536         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
537
538         * src/device/lib/_mullong.c : removed hint: nooverlay bug
539
540         * src/device/lib/_divuint.c : removed hint: nooverlay bug
541
542         * src/device/lib/_divulong.c: removed hint: nooverlay bug
543
544         * src/device/lib/_moduint.c : removed hint: nooverlay bug
545
546         * src/device/lib/_modulong.c: removed hint: nooverlay bug
547
548 2001-10-07  Michael Hope  <michaelh@juju.net.nz>
549
550         * 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.
551
552         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
553
554         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
555
556 2001-10-07    <johan@FRIJA>
557
558         * device/lib/gets.c (gets): fixed the return value.
559
560 2001-10-06  Michael Hope  <michaelh@juju.net.nz>
561         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
562
563         * 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.
564
565         * 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.
566
567         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
568
569         * src/pic/gen.c: Removed Safe_strdup.
570
571         * configure.in: Added option to enable libgc support.
572
573         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
574         (bitVectUnion): Optimised.
575         (bitVectIntersect): Optimised.
576         (bitVectBitsInCommon): Optimised.
577         (bitVectCplAnd): Optimised.
578
579         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
580
581 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
582
583         * src/SDCCmain.c: distinguish between assembler debug and plain options
584
585         * src/avr/main.c:   remove standard assembler options
586
587         * src/ds390/main.c: remove standard assembler options
588
589         * src/mcs51/main.c: remove standard assembler options
590
591         * src/port.h: removed "PENDING" comment
592
593 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
594
595         * src/device/lib/_mulint.c  : new, with assember functions
596
597         * src/device/lib/_mullong.c : new, with assember functions
598
599         * src/device/lib/_divuint.c : with assember functions
600
601         * src/device/lib/_divsint.c : with assember functions
602
603         * src/device/lib/_divulong.c: with assember functions
604
605         * src/device/lib/_divslong.c: with assember functions
606
607         * src/device/lib/_moduint.c : with assember functions
608
609         * src/device/lib/_modsint.c : with assember functions
610
611         * src/device/lib/_modulong.c: with assember functions
612
613         * src/device/lib/_modslong.c: with assember functions
614
615         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
616
617         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
618
619         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
620                                       replaced _mululong.c and _mulslong.c by _mullong.c
621
622 2001-10-03 Bernhard Held <bernhard@bernhardheld.de>
623
624         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
625
626 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
627
628         * src/SDCCglue.c: test, if win32api is available for MINGW
629
630 2001-10-01 Bernhard Held <bernhard@bernhardheld.de>
631
632         * src/SDCCsymt.c: no more _modifier in printTypeChain()
633         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
634         * support/regression/ports/gbz80/spec.mk: removed GENERIC
635         * support/regression/ports/host/spec.mk: removed GENERIC
636         * support/regression/ports/mcs51/spec.mk: removed GENERIC
637         * support/regression/ports/z80/spec.mk: removed GENERIC
638
639 2001-10-01  Michael Hope  <michaelh@juju.net.nz>
640
641         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
642
643         * support/regression/tests/bug-467035.c: Created.
644
645 2001-10-01    <johan@FRIJA>
646
647         * src/SDCC.y: fixed bug #466586 part 1
648
649 2001-10-01  Johan Knol <johan.knol@iduna.nl>
650
651         * SDCCicode.c: z80 has no generic pointers
652         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
653         
654 2001-09-30  Michael Hope  <michaelh@juju.net.nz>
655
656         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
657
658 2001-09-29  Michael Hope  <michaelh@juju.net.nz>
659
660         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
661
662         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
663
664 2001-09-25  Michael Hope  <michaelh@juju.net.nz>
665
666         * configure.in: Fixed up so that ucsim is only configured once.
667
668         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
669
670         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
671         (getPathDifference): As above.
672
673         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
674
675         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
676
677 2001-09-23  Michael Hope  <michaelh@juju.net.nz>
678         * .version: Updated to 2.3.1
679
680         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
681         Added copyright header.
682
683         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
684         (assemble): Added support for macro based assembler commands.
685         (linkEdit): Added support for macro based linker commands.
686         (preProcess): Changed the pre-processor to use macros.
687         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
688         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
689
690         * device/lib/z80/crt0.s: Added module name for debugging.
691
692 2001-09-20  Michael Hope  <michaelh@juju.net.nz>
693
694         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
695
696         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
697
698         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
699
700         * src/Makefile.in: Added SDCCmacro and SDCCutil
701
702 2001-09-19  Michael Hope  <michaelh@juju.net.nz>
703
704         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
705
706 2001-09-16    <johan@FRIJA>
707
708         * 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.
709
710 2001-09-15    <johan@FRIJA>
711
712         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
713         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
714
715 2001-09-11    <johan@FRIJA>
716
717         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
718
719 2001-09-10  Michael Hope  <michaelh@juju.net.nz>
720
721         * support/regression/tests/bug-460444.c: Added test case.
722
723         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
724         (genCast): Added justification for all of the asserts.
725
726 2001-09-10  Bernhard Held <bernhard@bernhardheld.de>
727
728         * support/regression/support.c: _xdata replaced by xdata
729
730         * support/regression/spec.mk: removed _generic
731
732 2001-09-09  Michael Hope  <michaelh@juju.net.nz>
733
734         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
735
736         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
737         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
738
739         * src/z80/peeph.def: Added a rule to optimise shift then compare.
740
741         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
742
743         * support/regression/tests/bug-460010.c: Added test case.
744
745         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
746
747 2001-09-09  Bernhard Held <bernhard@bernhardheld.de>
748
749         * support/regression/Makefile: inter-port-clean adjusted for mcs51
750
751         * support/regression/testfwk.c: removed workaround for bug #436344
752
753         * support/regression/tests/bp.c: use less memory with mcs51
754
755         * support/regression/tests/bug-441448.c: use less memory
756
757         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
758
759         * support/regression/collate-results.py: typo
760
761 2001-09-08  Michael Hope  <michaelh@juju.net.nz>
762
763         * support/regression/tests/fetchoverlap.c: Added new test case.
764
765         * support/regression/tests/bp.c: Added new test case.
766
767         * support/regression/tests/bug-448984.c: Added new test case.
768
769         * support/regression/tests/pow2shifts.c: Added new test case.
770
771         * src/z80/gen.c: Turned off the noise it normally generates for the release.
772         (genlshTwo): Fixed right shift for count > 8.
773
774         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
775
776 2001-09-08    <johan@FRIJA>
777
778         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
779
780 2001-09-07    <johan@FRIJA>
781
782         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
783
784         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
785
786 2001-09-06    <johan@FRIJA>
787
788         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
789         * bernhard noted me at this: "() equals to (void)" (1.38)
790
791 2001-09-05    <johan@FRIJA>
792
793         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
794
795 2001-09-04    <johan@FRIJA>
796
797         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
798
799
800 2001-09-04  Paul Stoffregen  <paul@pjrc.com>
801
802         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
803
804 2001-09-03  Michael Hope  <michaelh@juju.net.nz>
805
806         * link/z80/aslink.h: Fixed path for PATH_MAX
807
808 2001-09-02  Michael Hope  <michaelh@juju.net.nz>
809
810         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
811
812         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
813
814         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
815
816         * 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.
817
818 2001-09-01  Michael Hope  <michaelh@juju.net.nz>
819
820         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
821         (genCmp): Fixed up genCmp for the GB with longs.
822
823         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
824
825         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
826
827         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
828
829         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
830
831 2001-08-30  Paul Stoffregen  <paul@pjrc.com>
832
833         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
834
835 2001-08-30  Michael Hope  <michaelh@juju.net.nz>
836
837         * 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.
838
839         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
840
841 2001-08-29  Michael Hope  <michaelh@juju.net.nz>
842
843         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
844
845         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
846
847 2001-08-30 Bernhard Held   <bernhard@bernhardheld.de>
848
849   * sim/ucsim/configure:    little improvement of Cygwin-detection      
850   * sim/ucsim/configure.in: little improvement of Cygwin-detection      
851   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
852   * support/regression/tests/bug-221100.c: small changes for mcs51
853   * support/regression/tests/bug-221168.c: small changes for mcs51
854   * support/regression/tests/bug-227710.c: small changes for mcs51
855   * support/regression/tests/staticinit.c: small changes for mcs51
856   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
857   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
858   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601