mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-27 05:50:43 +00:00
* common.h (EM_M32C_NEW): Rename to EM_M32C.
(EM_M32C): Rename to EM_M32C_OLD. * elf32-m32c.c (ELF_MACHINE_ALT1): Define as EM_M32C_OLD. * readelf.c (guess_is_rela): Add EM_M32C_OLD. (dump_relocations): Likewise. (process_section_headers): Likewise. (is_32bit_abs_reloc): Likewise. (is_16bit_abs_reloc): Likewise.
This commit is contained in:
parent
310213e869
commit
ff7eeb894e
@ -1,3 +1,7 @@
|
||||
2008-06-12 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* elf32-m32c.c (ELF_MACHINE_ALT1): Define as EM_M32C_OLD.
|
||||
|
||||
2008-06-09 Paul Brook <paul@codesourcery.com>
|
||||
|
||||
bfd/
|
||||
|
@ -1998,6 +1998,7 @@ _bfd_m32c_elf_eh_frame_address_size (bfd *abfd, asection *sec ATTRIBUTE_UNUSED)
|
||||
|
||||
#define ELF_ARCH bfd_arch_m32c
|
||||
#define ELF_MACHINE_CODE EM_M32C
|
||||
#define ELF_MACHINE_ALT1 EM_M32C_OLD
|
||||
#define ELF_MAXPAGESIZE 0x1000
|
||||
|
||||
#if 0
|
||||
|
@ -1,3 +1,11 @@
|
||||
2008-06-12 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* readelf.c (guess_is_rela): Add EM_M32C_OLD.
|
||||
(dump_relocations): Likewise.
|
||||
(process_section_headers): Likewise.
|
||||
(is_32bit_abs_reloc): Likewise.
|
||||
(is_16bit_abs_reloc): Likewise.
|
||||
|
||||
2008-06-12 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
PR binutils/6483
|
||||
|
@ -717,6 +717,7 @@ guess_is_rela (unsigned int e_machine)
|
||||
case EM_IP2K:
|
||||
case EM_IP2K_OLD:
|
||||
case EM_IQ2000:
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C:
|
||||
case EM_M32R:
|
||||
case EM_MCORE:
|
||||
@ -1280,6 +1281,7 @@ dump_relocations (FILE *file,
|
||||
rtype = elf_xtensa_reloc_type (type);
|
||||
break;
|
||||
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C:
|
||||
rtype = elf_m32c_reloc_type (type);
|
||||
break;
|
||||
@ -1914,6 +1916,7 @@ get_machine_name (unsigned e_machine)
|
||||
case EM_IQ2000: return "Vitesse IQ2000";
|
||||
case EM_XTENSA_OLD:
|
||||
case EM_XTENSA: return "Tensilica Xtensa Processor";
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C: return "Renesas M32c";
|
||||
case EM_MT: return "Morpho Techologies MT processor";
|
||||
case EM_BLACKFIN: return "Analog Devices Blackfin";
|
||||
@ -4300,6 +4303,7 @@ process_section_headers (FILE *file)
|
||||
}
|
||||
break;
|
||||
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C:
|
||||
switch (elf_header.e_flags & EF_M32C_CPU_MASK)
|
||||
{
|
||||
@ -8152,6 +8156,7 @@ is_32bit_abs_reloc (unsigned int reloc_type)
|
||||
return reloc_type == 2; /* R_IP2K_32. */
|
||||
case EM_IQ2000:
|
||||
return reloc_type == 2; /* R_IQ2000_32. */
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C:
|
||||
return reloc_type == 3; /* R_M32C_32. */
|
||||
case EM_M32R:
|
||||
@ -8326,6 +8331,7 @@ is_16bit_abs_reloc (unsigned int reloc_type)
|
||||
case EM_IP2K_OLD:
|
||||
case EM_IP2K:
|
||||
return reloc_type == 1; /* R_IP2K_16. */
|
||||
case EM_M32C_OLD:
|
||||
case EM_M32C:
|
||||
return reloc_type == 1; /* R_M32C_16 */
|
||||
case EM_MSP430_OLD:
|
||||
|
@ -1,3 +1,8 @@
|
||||
2008-06-12 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* common.h (EM_M32C_NEW): Rename to EM_M32C.
|
||||
(EM_M32C): Rename to EM_M32C_OLD.
|
||||
|
||||
2008-06-12 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* common.h: Update e_machine table.
|
||||
|
@ -205,7 +205,7 @@
|
||||
#define EM_M16C 117 /* Renesas M16C series microprocessors */
|
||||
#define EM_DSPIC30F 118 /* Microchip Technology dsPIC30F Digital Signal Controller */
|
||||
#define EM_CE 119 /* Freescale Communication Engine RISC core */
|
||||
#define EM_M32C_NEW 120 /* Renesas M32C series microprocessors */
|
||||
#define EM_M32C 120 /* Renesas M32C series microprocessors */
|
||||
|
||||
#define EM_TSK3000 131 /* Altium TSK3000 core */
|
||||
#define EM_RS08 132 /* Freescale RS08 embedded processor */
|
||||
@ -323,7 +323,7 @@
|
||||
#define EM_CYGNUS_MN10200 0xdead
|
||||
|
||||
/* Renesas M32C and M16C. */
|
||||
#define EM_M32C 0xFEB0
|
||||
#define EM_M32C_OLD 0xFEB0
|
||||
|
||||
/* Vitesse IQ2000. */
|
||||
#define EM_IQ2000 0xFEBA
|
||||
|
Loading…
Reference in New Issue
Block a user