fixed 64 bit hosts
[fw/sdcc] / ChangeLog
index 949a959ae8cbd8c95e9d07e6d9cc0fb3efa6e3ad..414d399132c03af4bfe91fce5db798e4cd1e825f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,146 @@
+2003-09-05  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+       * src/SDCCast.c (isConformingBody): fixed loop reversal bug
+       reported in bug #800609
+
+2003-09-04  Vangelis Rokas <vrokas@otenet.gr>
+       * Top header beautifications in src/pic16 directory:
+         device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
+         pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
+         pcoderegs.h, ralloc.c, ralloc.h
+       * main.c: added top header and GPL license notice
+       * pcode.c: fixed the if-conditional warning
+2003-09-04  Bernhard Held <bernhard@bernhardheld.de>
+
+       * device/lib/_mullong.c: replaced int by short for gcc
+
+2003-08-31  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
+        and JUMPTABLE iCodes properly now (worked by accident before)
+       * src/mcs51/gen.c (leftRightUseAcc),
+       * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
+       iCode properly now. Use getSize instead of nRegs since a & b
+       aren't part of the nRegs tally. 
+
+2003-08-31  Vangelis Rokas <vrokas@otenet.gr>
+       * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
+       * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
+         before instructions that use the _STATUS register
+
+2003-08-31  Bernhard Held <bernhard@bernhardheld.de>
+
+       * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
+       * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
+       fetching of the pointer
+       * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
+       copied from genNearPointerSet()
+       * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
+       * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
+       If they pop r0/r1 they must be called in the opposite order than aopOp().
+       * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
+       (resp. --stack-auto), prepared for --xstack
+
+2003-08-28  Frieder Ferlemann <Frieder.Ferlemann@web.de>
+
+       * doc/sdccman.lyx: reverted tables to those in cvs 1.64
+
+2003-08-28  Bernhard Held <bernhard@bernhardheld.de>
+
+       * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
+       these ports have their own __sdcc_external_start()
+
+2003-08-26  Bernhard Held <bernhard@bernhardheld.de>
+
+       pic patch provided by Slade Rich <slade_rich@yahoo.com>
+       * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
+       type for bits was changed. It resulted in bit variables becoming
+       global, which is not permitted in PIC 14 assembly output.
+
+2003-08-23  Frieder Ferlemann <Frieder.Ferlemann@web.de>
+
+       * doc/sdccman.lyx: various additions and updates. Rearranged sections
+
+2003-08-22  Jesus Calvino-Fraga <jesusc@ece.ubc.ca>
+
+       Z80 and MCS51 linkers complaint if a public symbol is defined
+       in more than one library module:
+
+       * as/mcs51/lklib.c
+       * link/z80/lklib.c
+       * as/mcs51/Makefile.in
+
+2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       A few small changes that speed up the peephole optimizer.
+
+       * src/SDCCpeeph.c
+
+2003-08-22  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       Try to make the peephole optimizer smarter by maintaining
+       an association between the assembly source code and the
+       iCodes that originated them. Put this information to use
+       with a new peephole rule condition "notVolatile" so that
+       the rules can be aggressive yet still safe.
+
+       * src/SDCCpeeph.c
+       * src/SDCCpeeph.h
+       * src/mcs51/gen.c
+       * src/mcs51/peeph.def
+
+2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       Fixed bug #741761
+
+       * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
+       * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
+       if the left or right operand symbols have the accuse flag set.
+
+2003-08-20  Erik Petrich <epetrich@ivorytower.norman.ok.us>
+
+       Changed the type of the result of the ! (NOT) operator to char;
+       previously it returned the same type as the source. This allows
+       us to eliminate all the genFloatNot functions (all of its target
+       implementations were very buggy) since !float can use the same
+       code as !long now.
+
+       * src/SDCCicode.c (ast2iCode): ! returns char
+       * src/mcs51/gen.c (genNot, genNotFloat),
+       * src/ds390/gen.c (genNot, genNotFloat),
+       * src/z80/gen.c (genNot, genNotFloat),
+       * src/pic/gen.c (genNot, genNotFloat),
+       * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
+
+2003-08-19  Bernhard Held <bernhard@bernhardheld.de>
+
+       pic patch provided by Slade Rich <slade_rich@yahoo.com>
+       1. Interrupt would not compile properly. Ensure PCLATH register is saved
+          during interrupts. Ensure WSAVE is located at a shared bank address.
+       2. Fixed page selection in some places
+       3. Fixed BTFSS/C to where necessary use registers directly and not simply
+          the registers name strings.
+       4. Fixed "signed / unsigned compare" compiler warnings.
+       5. The PIC port manages its own allocation of the general purpose
+          registers, but makes no attempt to reuse them. As a result when
+          compiling it soon runs out of general purpose registers. Some
+          additional code was added to the files pcode.c and device.c to walk
+          through the function call tree and rename the registers so that they
+          get reused.
+
+       * src/pic/device.c
+       * src/pic/gen.c
+       * src/pic/glue.c
+       * src/pic/pcode.c
+       * src/pic/pcode.h
+       * src/pic/ralloc.c
+       * src/pic/ralloc.h
+       * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
+       genPlus() & genMinus() when the result is the same as left or right
+
 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
 
-       * src/z80/gen.c (isUnsplitable, fetchPairLog): fixed bug #770454
+       * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
 
 2003-08-18  Erik Petrich <epetrich@ivorytower.norman.ok.us>
 
        Rules 246.x, 247.x relate to bitfields, the others speed up
        access to xdata mapped I/O devices.
 
-       * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x 
+       * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
 
 2003-08-16  Erik Petrich <epetrich@ivorytower.norman.ok.us>