Mach-O: Add BFD_MACH_O_CPU_TYPE_ARM64.
include/mach-o/ * loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64. bfd/ * mach-o.c (bfd_mach_o_convert_architecture): Add BFD_MACH_O_CPU_TYPE_ARM64. binutils/ * od-macho.c (bfd_mach_o_cpu_name): Add BFD_MACH_O_CPU_TYPE_ARM64.
This commit is contained in:
parent
f6c7c3e8b7
commit
d80285301a
@ -1,3 +1,8 @@
|
||||
2014-03-26 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* mach-o.c (bfd_mach_o_convert_architecture): Add
|
||||
BFD_MACH_O_CPU_TYPE_ARM64.
|
||||
|
||||
2014-03-26 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* elf64-ppc.c (ppc64_elf_check_relocs): Account for possibly
|
||||
|
@ -905,6 +905,10 @@ bfd_mach_o_convert_architecture (bfd_mach_o_cpu_type mtype,
|
||||
*type = bfd_arch_powerpc;
|
||||
*subtype = bfd_mach_ppc64;
|
||||
break;
|
||||
case BFD_MACH_O_CPU_TYPE_ARM64:
|
||||
*type = bfd_arch_aarch64;
|
||||
*subtype = bfd_mach_aarch64;
|
||||
break;
|
||||
default:
|
||||
*type = bfd_arch_unknown;
|
||||
break;
|
||||
|
@ -1,3 +1,7 @@
|
||||
2014-03-26 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* od-macho.c (bfd_mach_o_cpu_name): Add BFD_MACH_O_CPU_TYPE_ARM64.
|
||||
|
||||
2014-03-24 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* od-macho.c (dump_unwind_encoding_x86): Set the factor.
|
||||
|
@ -99,6 +99,7 @@ static const bfd_mach_o_xlat_name bfd_mach_o_cpu_name[] =
|
||||
{ "powerpc", BFD_MACH_O_CPU_TYPE_POWERPC },
|
||||
{ "powerpc_64", BFD_MACH_O_CPU_TYPE_POWERPC_64 },
|
||||
{ "x86_64", BFD_MACH_O_CPU_TYPE_X86_64 },
|
||||
{ "arm64", BFD_MACH_O_CPU_TYPE_ARM64 },
|
||||
{ NULL, 0}
|
||||
};
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2014-03-26 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* loader.h (bfd_mach_o_cpu_type): Add BFD_MACH_O_CPU_TYPE_ARM64.
|
||||
|
||||
2014-03-17 Tristan Gingold <gingold@adacore.com>
|
||||
|
||||
* unwind.h: New file.
|
||||
@ -14,7 +18,7 @@
|
||||
|
||||
* loader.h (bfd_mach_o_load_command_type): Add
|
||||
BFD_MACH_O_LC_MAIN, BFD_MACH_O_LC_DATA_IN_CODE,
|
||||
BFD_MACH_O_LC_SOURCE_VERSION and BFD_MACH_O_LC_DYLIB_CODE_SIGN_DRS.
|
||||
BFD_MACH_O_LC_SOURCE_VERSION and BFD_MACH_O_LC_DYLIB_CODE_SIGN_DRS.
|
||||
(BFD_MACH_O_REFERENCE_MASK): Adjust value.
|
||||
(BFD_MACH_O_N_REF_TO_WEAK): New definition.
|
||||
(BFD_MACH_O_N_ARM_THUMB_DEF, BFD_MACH_O_N_SYMBOL_RESOLVER): Likewise.
|
||||
|
@ -48,8 +48,12 @@ typedef enum bfd_mach_o_cpu_type
|
||||
BFD_MACH_O_CPU_TYPE_I860 = 15,
|
||||
BFD_MACH_O_CPU_TYPE_ALPHA = 16,
|
||||
BFD_MACH_O_CPU_TYPE_POWERPC = 18,
|
||||
BFD_MACH_O_CPU_TYPE_POWERPC_64 = (BFD_MACH_O_CPU_TYPE_POWERPC | BFD_MACH_O_CPU_IS64BIT),
|
||||
BFD_MACH_O_CPU_TYPE_X86_64 = (BFD_MACH_O_CPU_TYPE_I386 | BFD_MACH_O_CPU_IS64BIT)
|
||||
BFD_MACH_O_CPU_TYPE_POWERPC_64 =
|
||||
(BFD_MACH_O_CPU_TYPE_POWERPC | BFD_MACH_O_CPU_IS64BIT),
|
||||
BFD_MACH_O_CPU_TYPE_X86_64 =
|
||||
(BFD_MACH_O_CPU_TYPE_I386 | BFD_MACH_O_CPU_IS64BIT),
|
||||
BFD_MACH_O_CPU_TYPE_ARM64 =
|
||||
(BFD_MACH_O_CPU_TYPE_ARM | BFD_MACH_O_CPU_IS64BIT)
|
||||
}
|
||||
bfd_mach_o_cpu_type;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user