aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorNick Clifton <nickc@redhat.com>2009-11-20 15:13:17 +0000
committerNick Clifton <nickc@redhat.com>2009-11-20 15:13:17 +0000
commitc29aca4a95885ab0b01c346590afa685cf121919 (patch)
treef92f04f5c26798bcf77e20381a6c31af43d26ef0 /binutils
parentce5181b407dfce78ab7e4e10051eaf44246ad1b4 (diff)
downloadgdb-c29aca4a95885ab0b01c346590afa685cf121919.zip
gdb-c29aca4a95885ab0b01c346590afa685cf121919.tar.gz
gdb-c29aca4a95885ab0b01c346590afa685cf121919.tar.bz2
* readelf.c: Include xc16x.h.
(dump_relocations): Handle relocations for the xc16x target. (get_machine_name): Accept EM_C166 for xc16x targets. (is_32bit_abs_reloc): Add support for xc16c 32-bit absolute reloc. (is_16bit_abs_reloc): Add support for xc16c 16-bit absolute reloc. (is_none_reloc): Add support for xc16c null reloc.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog9
-rw-r--r--binutils/readelf.c16
2 files changed, 24 insertions, 1 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 586c3fb..6eb2154 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,12 @@
+2009-11-20 Nick Clifton <nickc@redhat.com>
+
+ * readelf.c: Include xc16x.h.
+ (dump_relocations): Handle relocations for the xc16x target.
+ (get_machine_name): Accept EM_C166 for xc16x targets.
+ (is_32bit_abs_reloc): Add support for xc16c 32-bit absolute reloc.
+ (is_16bit_abs_reloc): Add support for xc16c 16-bit absolute reloc.
+ (is_none_reloc): Add support for xc16c null reloc.
+
2009-11-20 Ben Elliston <bje@au.ibm.com>
* Makefile.am (syslex.o): Use $(NO_WERROR) not -Wno-error.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 1fdde3b..1d3332e 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -139,6 +139,7 @@
#include "elf/v850.h"
#include "elf/vax.h"
#include "elf/x86-64.h"
+#include "elf/xc16x.h"
#include "elf/xstormy16.h"
#include "elf/xtensa.h"
@@ -1221,6 +1222,11 @@ dump_relocations (FILE * file,
case EM_RX:
rtype = elf_rx_reloc_type (type);
break;
+
+ case EM_XC16X:
+ case EM_C166:
+ rtype = elf_xc16x_reloc_type (type);
+ break;
}
if (rtype == NULL)
@@ -1887,6 +1893,7 @@ get_machine_name (unsigned e_machine)
case EM_BLACKFIN: return "Analog Devices Blackfin";
case EM_NIOS32: return "Altera Nios";
case EM_ALTERA_NIOS2: return "Altera Nios II";
+ case EM_C166:
case EM_XC16X: return "Infineon Technologies xc16x";
case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
case EM_CR16:
@@ -8094,12 +8101,14 @@ is_32bit_abs_reloc (unsigned int reloc_type)
case EM_X86_64:
case EM_L1OM:
return reloc_type == 10; /* R_X86_64_32. */
+ case EM_XC16X:
+ case EM_C166:
+ return reloc_type == 3; /* R_XC16C_ABS_32. */
case EM_XSTORMY16:
return reloc_type == 1; /* R_XSTROMY16_32. */
case EM_XTENSA_OLD:
case EM_XTENSA:
return reloc_type == 1; /* R_XTENSA_32. */
-
default:
error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
elf_header.e_machine);
@@ -8267,6 +8276,9 @@ is_16bit_abs_reloc (unsigned int reloc_type)
case EM_ALTERA_NIOS2:
case EM_NIOS32:
return reloc_type == 9; /* R_NIOS_16. */
+ case EM_XC16X:
+ case EM_C166:
+ return reloc_type == 2; /* R_XC16C_ABS_16. */
default:
return FALSE;
}
@@ -8300,6 +8312,8 @@ is_none_reloc (unsigned int reloc_type)
case EM_L1OM: /* R_X86_64_NONE. */
case EM_MN10300: /* R_MN10300_NONE. */
case EM_M32R: /* R_M32R_NONE. */
+ case EM_XC16X:
+ case EM_C166: /* R_XC16X_NONE. */
return reloc_type == 0;
case EM_XTENSA_OLD:
case EM_XTENSA: