1 /* x86_64 ELF support for BFD. 2 Copyright (C) 2000, 2002 Free Software Foundation, Inc. 3 Contributed by Jan Hubicka <jh@suse.cz> 4 5 This file is part of BFD, the Binary File Descriptor library. 6 7 This program is free software; you can redistribute it and/or modify 8 it under the terms of the GNU General Public License as published by 9 the Free Software Foundation; either version 2 of the License, or 10 (at your option) any later version. 11 12 This program is distributed in the hope that it will be useful, 13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 GNU General Public License for more details. 16 17 You should have received a copy of the GNU General Public License 18 along with this program; if not, write to the Free Software Foundation, 19 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ 20 21 #ifndef _ELF_X86_64_H 22 #define _ELF_X86_64_H 23 24 #include "elf/reloc-macros.h" 25 26 START_RELOC_NUMBERS (elf_x86_64_reloc_type) 27 RELOC_NUMBER (R_X86_64_NONE, 0) /* No reloc */ 28 RELOC_NUMBER (R_X86_64_64, 1) /* Direct 64 bit */ 29 RELOC_NUMBER (R_X86_64_PC32, 2) /* PC relative 32 bit signed */ 30 RELOC_NUMBER (R_X86_64_GOT32, 3) /* 32 bit GOT entry */ 31 RELOC_NUMBER (R_X86_64_PLT32, 4) /* 32 bit PLT address */ 32 RELOC_NUMBER (R_X86_64_COPY, 5) /* Copy symbol at runtime */ 33 RELOC_NUMBER (R_X86_64_GLOB_DAT, 6) /* Create GOT entry */ 34 RELOC_NUMBER (R_X86_64_JUMP_SLOT,7) /* Create PLT entry */ 35 RELOC_NUMBER (R_X86_64_RELATIVE, 8) /* Adjust by program base */ 36 RELOC_NUMBER (R_X86_64_GOTPCREL, 9) /* 32 bit signed pc relative 37 offset to GOT */ 38 RELOC_NUMBER (R_X86_64_32, 10) /* Direct 32 bit zero extended */ 39 RELOC_NUMBER (R_X86_64_32S, 11) /* Direct 32 bit sign extended */ 40 RELOC_NUMBER (R_X86_64_16, 12) /* Direct 16 bit zero extended */ 41 RELOC_NUMBER (R_X86_64_PC16, 13) /* 16 bit sign extended pc relative*/ 42 RELOC_NUMBER (R_X86_64_8, 14) /* Direct 8 bit sign extended */ 43 RELOC_NUMBER (R_X86_64_PC8, 15) /* 8 bit sign extended pc relative*/ 44 RELOC_NUMBER (R_X86_64_DTPMOD64, 16) /* ID of module containing symbol */ 45 RELOC_NUMBER (R_X86_64_DTPOFF64, 17) /* Offset in TLS block */ 46 RELOC_NUMBER (R_X86_64_TPOFF64, 18) /* Offset in initial TLS block */ 47 RELOC_NUMBER (R_X86_64_TLSGD, 19) /* PC relative offset to GD GOT block */ 48 RELOC_NUMBER (R_X86_64_TLSLD, 20) /* PC relative offset to LD GOT block */ 49 RELOC_NUMBER (R_X86_64_DTPOFF32, 21) /* Offset in TLS block */ 50 RELOC_NUMBER (R_X86_64_GOTTPOFF, 22) /* PC relative offset to IE GOT entry */ 51 RELOC_NUMBER (R_X86_64_TPOFF32, 23) /* Offset in initial TLS block */ 52 RELOC_NUMBER (R_X86_64_GNU_VTINHERIT, 250) /* GNU C++ hack */ 53 RELOC_NUMBER (R_X86_64_GNU_VTENTRY, 251) /* GNU C++ hack */ 54 END_RELOC_NUMBERS (R_X86_64_max) 55 56 #endif 57