forked from Imagelibrary/binutils-gdb
FT32 initial support
FT32 is a new 32-bit RISC core developed by FTDI for embedded applications. * configure.ac: Add FT32 support. * configure: Regenerate. bfd/ * Makefile.am: Add FT32 files. * archures.c (enum bfd_architecture): Add bfd_arch_ft32. (bfd_mach_ft32): Define. (bfd_ft32_arch): Declare. (bfd_archures_list): Add bfd_ft32_arch. * config.bfd: Handle FT32. * configure.ac: Likewise. * cpu-ft32.c: New file. * elf32-ft32.c: New file. * reloc.c (BFD_RELOC_FT32_10, BFD_RELOC_FT32_20, BFD_RELOC_FT32_17, BFD_RELOC_FT32_18): Define. * targets.c (_bfd_target_vector): Add ft32_elf32_vec. * bfd-in2.h: Regenerate. * libbfd.h: Regenerate. * Makefile.in: Regenerate. * configure: Regenerate. * po/SRC-POTFILES.in: Regenerate. binutils/ * readelf.c: Add FT32 support. gas/ * Makefile.am: Add FT32 files. * config/tc-ft32.c: New file. * config/tc-ft32.h: New file. * configure.tgt: Add FT32 support. * Makefile.in: Regenerate. * po/POTFILES.in: Regenerate. gas/testsuite/ * gas/ft32/ft32.exp: New file. * gas/ft32/insn.d: New file. * gas/ft32/insn.s: New file. include/ * dis-asm.h (print_insn_ft32): Declare. include/elf/ * common.h (EM_FT32): Define. * ft32.h: New file. include/opcode/ * ft32.h: New file. ld/ * Makefile.am: Add FT32 files. * configure.tgt: Handle FT32 target. * emulparams/elf32ft32.sh: New file. * scripttempl/ft32.sc: New file. * Makefile.in: Regenerate. opcodes/ * Makefile.am: Add FT32 files. * configure.ac: Handle FT32. * disassemble.c (disassembler): Call print_insn_ft32. * ft32-dis.c: New file. * ft32-opc.c: New file. * Makefile.in: Regenerate. * configure: Regenerate. * po/POTFILES.in: Regenerate.
This commit is contained in:
@@ -1,3 +1,7 @@
|
||||
2015-01-28 James Bowman <james.bowman@ftdichip.com>
|
||||
|
||||
* readelf.c: Add FT32 support.
|
||||
|
||||
2015-01-27 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR binutils/17512
|
||||
|
||||
@@ -106,6 +106,7 @@
|
||||
#include "elf/epiphany.h"
|
||||
#include "elf/fr30.h"
|
||||
#include "elf/frv.h"
|
||||
#include "elf/ft32.h"
|
||||
#include "elf/h8.h"
|
||||
#include "elf/hppa.h"
|
||||
#include "elf/i386.h"
|
||||
@@ -709,6 +710,7 @@ guess_is_rela (unsigned int e_machine)
|
||||
case EM_D30V:
|
||||
case EM_CYGNUS_D30V:
|
||||
case EM_FR30:
|
||||
case EM_FT32:
|
||||
case EM_CYGNUS_FR30:
|
||||
case EM_CYGNUS_FRV:
|
||||
case EM_H8S:
|
||||
@@ -1234,6 +1236,10 @@ dump_relocations (FILE * file,
|
||||
rtype = elf_frv_reloc_type (type);
|
||||
break;
|
||||
|
||||
case EM_FT32:
|
||||
rtype = elf_ft32_reloc_type (type);
|
||||
break;
|
||||
|
||||
case EM_MCORE:
|
||||
rtype = elf_mcore_reloc_type (type);
|
||||
break;
|
||||
@@ -2072,6 +2078,7 @@ get_machine_name (unsigned e_machine)
|
||||
case EM_PPC: return "PowerPC";
|
||||
case EM_PPC64: return "PowerPC64";
|
||||
case EM_FR20: return "Fujitsu FR20";
|
||||
case EM_FT32: return "FTDI FT32";
|
||||
case EM_RH32: return "TRW RH32";
|
||||
case EM_MCORE: return "MCORE";
|
||||
case EM_ARM: return "ARM";
|
||||
@@ -11033,6 +11040,8 @@ is_32bit_abs_reloc (unsigned int reloc_type)
|
||||
case EM_CYGNUS_FR30:
|
||||
case EM_FR30:
|
||||
return reloc_type == 3; /* R_FR30_32. */
|
||||
case EM_FT32:
|
||||
return reloc_type == 1; /* R_FT32_32. */
|
||||
case EM_H8S:
|
||||
case EM_H8_300:
|
||||
case EM_H8_300H:
|
||||
@@ -11400,6 +11409,7 @@ is_none_reloc (unsigned int reloc_type)
|
||||
case EM_L1OM: /* R_X86_64_NONE. */
|
||||
case EM_K1OM: /* R_X86_64_NONE. */
|
||||
case EM_MN10300: /* R_MN10300_NONE. */
|
||||
case EM_FT32: /* R_FT32_NONE. */
|
||||
case EM_MOXIE: /* R_MOXIE_NONE. */
|
||||
case EM_M32R: /* R_M32R_NONE. */
|
||||
case EM_TI_C6000:/* R_C6000_NONE. */
|
||||
|
||||
Reference in New Issue
Block a user