* src/pic16/device.h: removed unused field PIC16_device.sfrRange,
[fw/sdcc] / ChangeLog
index 442af4b11dd4d95ee50efbc49572f32bcc87239a..d428756abcf24429f66747dcb5eed14623a3b2c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,136 @@
+2008-05-01 Raphael Neider <rneider AT web.de>
+
+       * src/pic16/device.h: removed unused field PIC16_device.sfrRange,
+         moved xinst flag into pic16_options_t
+       * src/pic16/device.c (default_device, pic16_list_devices,
+         pic16_find_device): removed references to sfrrange
+       * src/pic16/gen.c (genFunction),
+         src/pic16/glue.c (pic16initialComments),
+         src/pic16/main.c (pic16_optionsTable),
+         src/pic16/ralloc.c (newReg, pic16_writeUsedRegs): updated references
+         to xinst
+       * device/include/pic16/pic16devices.txt: removed sfrrange lines
+
+2008-04-29 Raphael Neider <rneider AT web.de>
+
+       * src/pic16/devices.inc,
+         device/include/pic16/pic16devices.txt: replaced compiled-in list
+         of devices with a variant parsed at runtime
+       * src/pic16/device.c: added support for parsing pic16devices.txt,
+         clean up
+       * src/pic16/device.h: removed (now) unused fields from PIC_device
+       * src/pic16/main.c: removed #pragma maxram,
+         (_pic16_initPaths): removed bogus generation of search paths,
+         setup the port proper only after the search paths (for
+         pic16devices.txt) are set up,
+         (_pic16_finaliseOptions): moved processor dependant code here
+         from _pic16_initPaths(), clean up
+       * src/pic16/ralloc.c (pic16_init_stack),
+       * src/pic16/ralloc.h,
+       * src/pic16/pcode.c: clean up
+       * device/include/Makefile.in,
+         support/scripts/sdcc.nsi: also install/package pic16devices.txt
+       * support/scripts/inc2h-pic16.pl: updated instructions
+
+2008-04-29 Raphael Neider <rneider AT web.de>
+
+       * device/include/pic16/{pic18f2480.h, pic18f2580.h, pic18f4423.h,
+         pic18f4480.h, pic18f4523.h, pic18f4580.h, pic18f6585.h, pic18f8585.h},
+         device/lib/pic16/libdev/{pic18f2480.c, pic18f2580.c, pic18f4423.c,
+         pic18f4480.c, pic18f4523.c, pic18f4580.c, pic18f6585.c, pic18f8585.c}:
+         added missing family members and 18f2480/2580/4480/4580 family
+       * device/include/pic16/{pic18f2423.h, pic18f2523.h}: use 18f4523.h
+       * device/include/pic16/pic18f2525.h: use 18f4620.h
+       * device/include/pic16/pic18f6680.h: use 18f8680.h
+       * device/include/pic16/pic18fregs.h,
+         device/lib/pic16/pics.all,
+         src/pic16/devices.inc: add new devices
+       * device/lib/pic16/libdev/{pic18f2423.c, pic18f2523.c}: use 18f4523.c
+       * device/lib/pic16/libdev/pic18f2525.c: use 18f4620.c
+       * device/lib/pic16/libdev/pic18f6680.c: uso 18f8680.c
+       * device/lib/pic16/libio/{adc.ignore, i2c.ignore, usart.ignore}:
+         prevent attempting to build the libio for some new devices
+
+2008-04-29 Raphael Neider <rneider AT web.de>
+
+       * debugger/mcs51/Makefile.in: fixed paths to sources
+
+2008-04-25 Borut Razem <borut.razem AT siol.net>
+
+       * as/link/lklibr.c: moved from as/link/z80/lklibr.c
+       * as/link/hc08/lklibr.c, as/link/mcs51/lklibr.c: deleted
+       * as/link/hc08/Makefile.bcc, as/link/hc08/Makefile.in,
+       * as/link/hc08/link_hc08.dsp, as/link/mcs51/Makefile.bcc,
+         as/link/mcs51/Makefile.in, as/link/mcs51/aslink.dsp,
+         as/link/z80/Makefile.in, as/link/z80/linkgbz80.dsp,
+         as/link/z80/linkz80.dsp: lklibr.c moved
+       * doc/INSTALL.txt: binary archives in bz2 format
+       * support/cpp/auto-host_vc_in.h: CPP2 replaced with CPP
+
+2008-04-23 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/SDCCglue.c (printIvalType, printIvalBitFields): fixed bug 1856409
+       * support/regression/tests/bug1856409.c: new, added
+
+2008-04-20 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * src/z80/peep.c,
+       * src/mcs51/peep.c: Use werror for error messages.
+       * src/SDCCicode.c (geniCodeConditional),
+       * src/SDCCsymt.c (structElemType): fixed bug 1839321
+       * src/z80/Makefile.bcc,
+       * src/z80/z80.dsp: added src/z80/peep.c/h
+       * support/regression/tests/bug1839321.c: new, added
+
+2008-04-20 Raphael Neider <rneider AT web.de>
+
+       * device/include/pic16/pic18f2455.h: added bitfields for port C
+
+2008-04-20 Philipp Klaus Krause <pkk AT spth.de>
+
+       * src/z80/peep.c: Use werror for error messages.
+
+2008-04-19 Philipp Klaus Krause <pkk AT spth.de>
+
+       * src/z80/peep.h (declaration of notUsed()),
+       * src/z80/main.c (enabled notUsed() for z80 port, documented z80_port
+         struct),
+       * src/z80/z80.h (added dependency on peep.h),
+       * src/z80/peep.c (definition of notUsed()): Implemented RFE #1880202
+         for Z80.
+
+2008-04-19 Philipp Klaus Krause <pkk AT spth.de>
+
+       * src/SDCCpeeph.c (added support for notUsed()),
+       * src/mcs51/main.c (added dependency on peep.h, documented mcs51_port
+         struct),
+       * src/port.h (removed dependency on mcs51/peep.h, added declaration
+         for notUsed()): Implemented generic (that is not port-specific) part
+         of RFE #1880202.
+
+2008-04-17 Maarten Brock <sourceforge.brock AT dse.nl>
+
+       * as/link/mcs51/lkmem.c (summary2): fixed bug 1796077
+       * device/lib/libsdcc.lib,
+       * device/lib/Makefile.in,
+       * support/regression/ports/mcs51-xstack-auto/spec.mk,
+       * device/lib/calloc.c: renamed to _calloc.c
+       * device/lib/free.c: renamed to _free.c
+       * device/lib/malloc.c: renamed to _malloc.c
+       * device/lib/realloc.c: renamed to _realloc.c
+       * src/ds390/gen.c (aopGet, aopPut, genPlusBits, genDataPointerSet,
+         genNearPointerSet, genPagedPointerSet): synchronized with mcs51/gen.c
+       * src/ds390/gen.c (popForBranch, genIfxJump, genCmp, genCmpEq, ifxForOp,
+         genAnd, genOr, genXor, genIfx, gen390Code): fixed bug 1509084
+       * src/mcs51/gen.c (popForBranch, genIfxJump, genCmp, genCmpEq,
+         ifxForOp, genAnd, genOr, genXor, genNearPointerGet,
+         genPagedPointerGet, genFarPointerGet, genCodePointerGet,
+         genGenPointerGet, genIfx, gen51Code): fixed bug 1509084
+       * src/ds390/gen.c,
+       * src/mcs51/gen.c: throughout cosmetic changes for syncing both
+       * src/SDCCsymt.h: updated IS_OP_RUONLY, IS_OP_ACCUSE
+       * support/regression/tests/bug1509084.c: new, added
+
 2008-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
 
        * device/include/mcs51/cc2510fx.h: added _XPAGE
@@ -5,7 +138,8 @@
 
 2008-03-31 Maarten Brock <sourceforge.brock AT dse.nl>
 
-       * sdcc.dsw: adapted for moved cpp2, added dependency for as_z80 on config
+       * sdcc.dsw: adapted for moved cpp2, added dependency for as_z80 on
+         config
 
 2008-03-31 Borut Razem <borut.razem AT siol.net>
 
        * support/regression/tests/bug1717943.c: new, added
 
 2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
-       * src/z80/gen.c (assignResultValue): Reverted reversal of order of bytewise
-         return value assignments introduced in last commit.
+
+       * src/z80/gen.c (assignResultValue): Reverted reversal of order of
+         bytewise return value assignments introduced in last commit.
 
 2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
-       * src/z80/gen.c (emitDebug, assignResultValue, genPlus, genMinus, genMult,
-         genJumpTab):
+
+       * src/z80/gen.c (emitDebug, assignResultValue, genPlus, genMinus,
+         genMult, genJumpTab):
          Use 16-bit instructions for addition in some additional cases,
          implemented RFEs #1914251, #1914245, #1922090, #1921382, #1918323.
 
 2008-03-30 Philipp Klaus Krause <pkk AT spth.de>
+
        * src/z80/ralloc.c (serialRegAssign, allocReg, tryAllocatingRegPair):
          Implemented RFE #1921450, changed some debug messages.
 
 
 2008-03-21 Philipp Klaus Krause <pkk AT spth.de>
 
-       * src/z80/ralloc.c (callFuncByName):
-         Used // instead of /**/ to fix compilation warning about nested comments.
+       * src/z80/ralloc.c (callFuncByName): Used // instead of /**/ to fix
+         compilation warning about nested comments.
 
 2008-03-20 Maarten Brock <sourceforge.brock AT dse.nl>