From: Tristan Gingold Date: Mon, 11 Jan 2010 15:57:59 +0000 (+0000) Subject: 2010-01-11 Tristan Gingold X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a753de0adf48e4693c378823c484c7f0061d22f;p=binutils-gdb.git 2010-01-11 Tristan Gingold * mach-o.h: Add x86-64 relocation types. --- diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 22b26ab97ef..5b15e5602a4 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,7 @@ +2010-01-11 Tristan Gingold + + * mach-o.h: Add x86-64 relocation types. + 2010-01-11 Tristan Gingold * mach-o.h (bfd_mach_o_backend_data): Add arch field. diff --git a/bfd/mach-o.h b/bfd/mach-o.h index bdd76321a16..d4ca600c46e 100644 --- a/bfd/mach-o.h +++ b/bfd/mach-o.h @@ -396,6 +396,17 @@ bfd_mach_o_segment_command; #define BFD_MACH_O_GENERIC_RELOC_PB_LA_PTR 3 #define BFD_MACH_O_GENERIC_RELOC_LOCAL_SECTDIFF 4 +/* X86-64 relocations. */ +#define BFD_MACH_O_X86_64_RELOC_UNSIGNED 0 /* Absolute addresses. */ +#define BFD_MACH_O_X86_64_RELOC_SIGNED 1 /* 32-bit disp. */ +#define BFD_MACH_O_X86_64_RELOC_BRANCH 2 /* 32-bit pcrel disp. */ +#define BFD_MACH_O_X86_64_RELOC_GOT_LOAD 3 /* Movq load of a GOT entry. */ +#define BFD_MACH_O_X86_64_RELOC_GOT 4 /* GOT reference. */ +#define BFD_MACH_O_X86_64_RELOC_SUBTRACTOR 5 /* Symbol difference. */ +#define BFD_MACH_O_X86_64_RELOC_SIGNED_1 6 /* 32-bit signed disp -1. */ +#define BFD_MACH_O_X86_64_RELOC_SIGNED_2 7 /* 32-bit signed disp -2. */ +#define BFD_MACH_O_X86_64_RELOC_SIGNED_4 8 /* 32-bit signed disp -4. */ + /* Size of a relocation entry. */ #define BFD_MACH_O_RELENT_SIZE 8