Add "do/while(0);" to COPY_INPUT_RELOC_P/VERIFY_COPY_RELOC
[external/binutils.git] / bfd / elfxx-x86.h
1 /* x86 specific support for ELF
2    Copyright (C) 2017 Free Software Foundation, Inc.
3
4    This file is part of BFD, the Binary File Descriptor library.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 3 of the License, or
9    (at your option) any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software
18    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19    MA 02110-1301, USA.  */
20
21 #include "sysdep.h"
22 #include "bfd.h"
23 #include "bfdlink.h"
24 #include "libbfd.h"
25 #include "elf-bfd.h"
26 #include "bfd_stdint.h"
27 #include "hashtab.h"
28
29 #define PLT_CIE_LENGTH          20
30 #define PLT_FDE_LENGTH          36
31 #define PLT_FDE_START_OFFSET    4 + PLT_CIE_LENGTH + 8
32 #define PLT_FDE_LEN_OFFSET      4 + PLT_CIE_LENGTH + 12
33
34 #define ABI_64_P(abfd) \
35   (get_elf_backend_data (abfd)->s->elfclass == ELFCLASS64)
36
37 /* If ELIMINATE_COPY_RELOCS is non-zero, the linker will try to avoid
38    copying dynamic variables from a shared lib into an app's dynbss
39    section, and instead use a dynamic relocation to point into the
40    shared lib.  */
41 #define ELIMINATE_COPY_RELOCS 1
42
43 #define elf_x86_hash_table(p, id) \
44   (is_elf_hash_table ((p)->hash) \
45    && elf_hash_table_id ((struct elf_link_hash_table *) ((p)->hash)) == (id) \
46     ? ((struct elf_x86_link_hash_table *) ((p)->hash)) : NULL)
47
48 /* Will references to this symbol always be local in this object?  */
49 #define SYMBOL_REFERENCES_LOCAL_P(INFO, H) \
50   _bfd_x86_elf_link_symbol_references_local ((INFO), (H))
51
52 /* Is a undefined weak symbol which is resolved to 0.  Reference to an
53    undefined weak symbol is resolved to 0 when building executable if
54    it isn't dynamic and
55    1. Has non-GOT/non-PLT relocations in text section.  Or
56    2. Has no GOT/PLT relocation.
57    Local undefined weak symbol is always resolved to 0.
58  */
59 #define UNDEFINED_WEAK_RESOLVED_TO_ZERO(INFO, EH) \
60   ((EH)->elf.root.type == bfd_link_hash_undefweak                \
61    && (SYMBOL_REFERENCES_LOCAL_P ((INFO), &(EH)->elf)            \
62        || (bfd_link_executable (INFO)                            \
63            && (!(EH)->has_got_reloc                              \
64                || (EH)->has_non_got_reloc))))
65
66 /* Should copy relocation be generated for a symbol.  Don't generate
67    copy relocation against a protected symbol defined in a shared
68    object with GNU_PROPERTY_NO_COPY_ON_PROTECTED.  */
69 #define SYMBOL_NO_COPYRELOC(INFO, EH) \
70   ((EH)->def_protected \
71    && ((EH)->elf.root.type == bfd_link_hash_defined \
72        || (EH)->elf.root.type == bfd_link_hash_defweak) \
73    && elf_has_no_copy_on_protected ((EH)->elf.root.u.def.section->owner) \
74    && ((EH)->elf.root.u.def.section->owner->flags & DYNAMIC) != 0 \
75    && ((EH)->elf.root.u.def.section->flags & SEC_CODE) == 0)
76
77 /* TRUE if dynamic relocation is needed.  If we are creating a shared
78    library, and this is a reloc against a global symbol, or a non PC
79    relative reloc against a local symbol, then we need to copy the reloc
80    into the shared library.  However, if we are linking with -Bsymbolic,
81    we do not need to copy a reloc against a global symbol which is
82    defined in an object we are including in the link (i.e., DEF_REGULAR
83    is set).  At this point we have not seen all the input files, so it
84    is possible that DEF_REGULAR is not set now but will be set later (it
85    is never cleared).  In case of a weak definition, DEF_REGULAR may be
86    cleared later by a strong definition in a shared library.  We account
87    for that possibility below by storing information in the relocs_copied
88    field of the hash table entry.  A similar situation occurs when
89    creating shared libraries and symbol visibility changes render the
90    symbol local.
91
92    If on the other hand, we are creating an executable, we may need to
93    keep relocations for symbols satisfied by a dynamic library if we
94    manage to avoid copy relocs for the symbol.
95
96    We also need to generate dynamic pointer relocation against
97    STT_GNU_IFUNC symbol in the non-code section.  */
98 #define NEED_DYNAMIC_RELOCATION_P(INFO, H, SEC, R_TYPE, POINTER_TYPE) \
99   ((bfd_link_pic (INFO) \
100     && (! X86_PCREL_TYPE_P (R_TYPE) \
101         || ((H) != NULL \
102             && (! (bfd_link_pie (INFO) \
103                    || SYMBOLIC_BIND ((INFO), (H))) \
104                 || (H)->root.type == bfd_link_hash_defweak \
105                 || !(H)->def_regular)))) \
106                 || ((H) != NULL \
107                     && (H)->type == STT_GNU_IFUNC \
108                     && (R_TYPE) == POINTER_TYPE \
109                     && ((SEC)->flags & SEC_CODE) == 0) \
110                     || (ELIMINATE_COPY_RELOCS \
111                         && !bfd_link_pic (INFO) \
112                         && (H) != NULL \
113                         && ((H)->root.type == bfd_link_hash_defweak \
114                             || !(H)->def_regular)))
115
116 /* TRUE if dynamic relocation should be generated.  Don't copy a
117    pc-relative relocation into the output file if the symbol needs
118    copy reloc or the symbol is undefined when building executable.
119    Copy dynamic function pointer relocations.  Don't generate dynamic
120    relocations against resolved undefined weak symbols in PIE, except
121    when PC32_RELOC is TRUE.  Undefined weak symbol is bound locally
122    when PIC is false.  */
123 #define GENERATE_DYNAMIC_RELOCATION_P(INFO, EH, R_TYPE, \
124                                       NEED_COPY_RELOC_IN_PIE, \
125                                       RESOLVED_TO_ZERO, PC32_RELOC) \
126   ((bfd_link_pic (INFO) \
127     && !(NEED_COPY_RELOC_IN_PIE) \
128     && ((EH) == NULL \
129         || ((ELF_ST_VISIBILITY ((EH)->elf.other) == STV_DEFAULT \
130              && (!(RESOLVED_TO_ZERO) || PC32_RELOC)) \
131             || (EH)->elf.root.type != bfd_link_hash_undefweak)) \
132     && ((!X86_PCREL_TYPE_P (R_TYPE) \
133          && !X86_SIZE_TYPE_P (R_TYPE)) \
134          || ! SYMBOL_CALLS_LOCAL ((INFO), &(EH)->elf))) \
135    || (ELIMINATE_COPY_RELOCS \
136        && !bfd_link_pic (INFO) \
137        && (EH) != NULL \
138        && (EH)->elf.dynindx != -1 \
139        && (!(EH)->elf.non_got_ref \
140            || (EH)->func_pointer_refcount > 0 \
141            || ((EH)->elf.root.type == bfd_link_hash_undefweak \
142                && !(RESOLVED_TO_ZERO))) \
143                && (((EH)->elf.def_dynamic && !(EH)->elf.def_regular) \
144                    || (EH)->elf.root.type == bfd_link_hash_undefined)))
145
146 /* TRUE if this input relocation should be copied to output.  H->dynindx
147    may be -1 if this symbol was marked to become local.  */
148 #define COPY_INPUT_RELOC_P(INFO, H, R_TYPE) \
149   ((H) != NULL \
150    && (H)->dynindx != -1 \
151    && (X86_PCREL_TYPE_P (R_TYPE) \
152        || !(bfd_link_executable (INFO) || SYMBOLIC_BIND ((INFO), (H))) \
153        || !(H)->def_regular))
154
155 /* TRUE if this is actually a static link, or it is a -Bsymbolic link
156    and the symbol is defined locally, or the symbol was forced to be
157    local because of a version file.  */
158 #define RESOLVED_LOCALLY_P(INFO, H, HTAB) \
159   (!WILL_CALL_FINISH_DYNAMIC_SYMBOL ((HTAB)->elf.dynamic_sections_created, \
160                                      bfd_link_pic (INFO), (H)) \
161    || (bfd_link_pic (INFO) \
162        && SYMBOL_REFERENCES_LOCAL_P ((INFO), (H))) \
163        || (ELF_ST_VISIBILITY ((H)->other) \
164            && (H)->root.type == bfd_link_hash_undefweak))
165
166 /* TRUE if relative relocation should be generated.  GOT reference to
167    global symbol in PIC will lead to dynamic symbol.  It becomes a
168    problem when "time" or "times" is defined as a variable in an
169    executable, clashing with functions of the same name in libc.  If a
170    symbol isn't undefined weak symbol, don't make it dynamic in PIC and
171    generate relative relocation.  */
172 #define GENERATE_RELATIVE_RELOC_P(INFO, H) \
173   ((H)->dynindx == -1 \
174    && !(H)->forced_local \
175    && (H)->root.type != bfd_link_hash_undefweak \
176    && bfd_link_pic (INFO))
177
178 /* TRUE if this is a pointer reference to a local IFUNC.  */
179 #define POINTER_LOCAL_IFUNC_P(INFO, H) \
180   ((H)->dynindx == -1 \
181    || (H)->forced_local \
182    || bfd_link_executable (INFO))
183
184 /* TRUE if this is a PLT reference to a local IFUNC.  */
185 #define PLT_LOCAL_IFUNC_P(INFO, H) \
186   ((H)->dynindx == -1 \
187    || ((bfd_link_executable (INFO) \
188         || ELF_ST_VISIBILITY ((H)->other) != STV_DEFAULT) \
189         && (H)->def_regular \
190         && (H)->type == STT_GNU_IFUNC))
191
192 /* TRUE if TLS IE->LE transition is OK.  */
193 #define TLS_TRANSITION_IE_TO_LE_P(INFO, H, TLS_TYPE) \
194   (bfd_link_executable (INFO) \
195    && (H) != NULL \
196    && (H)->dynindx == -1 \
197    && (TLS_TYPE & GOT_TLS_IE))
198
199 /* Verify that the symbol has an entry in the procedure linkage table.  */
200 #define VERIFY_PLT_ENTRY(INFO, H, PLT, GOTPLT, RELPLT, LOCAL_UNDEFWEAK) \
201   do \
202     { \
203       if (((H)->dynindx == -1 \
204            && !LOCAL_UNDEFWEAK \
205            && !(((H)->forced_local || bfd_link_executable (INFO)) \
206                 && (H)->def_regular \
207                 && (H)->type == STT_GNU_IFUNC)) \
208           || (PLT) == NULL \
209           || (GOTPLT) == NULL \
210           || (RELPLT) == NULL) \
211         abort (); \
212     } \
213   while (0);
214
215 /* Verify that the symbol supports copy relocation.  */
216 #define VERIFY_COPY_RELOC(H, HTAB) \
217   do \
218     { \
219       if ((H)->dynindx == -1 \
220           || ((H)->root.type != bfd_link_hash_defined \
221               && (H)->root.type != bfd_link_hash_defweak) \
222           || (HTAB)->elf.srelbss == NULL \
223           || (HTAB)->elf.sreldynrelro == NULL) \
224         abort (); \
225     } \
226   while (0);
227
228 /* x86 ELF linker hash entry.  */
229
230 struct elf_x86_link_hash_entry
231 {
232   struct elf_link_hash_entry elf;
233
234   /* Track dynamic relocs copied for this symbol.  */
235   struct elf_dyn_relocs *dyn_relocs;
236
237   unsigned char tls_type;
238
239   /* TRUE if symbol has GOT or PLT relocations.  */
240   unsigned int has_got_reloc : 1;
241
242   /* TRUE if symbol has non-GOT/non-PLT relocations in text sections.  */
243   unsigned int has_non_got_reloc : 1;
244
245   /* Don't call finish_dynamic_symbol on this symbol.  */
246   unsigned int no_finish_dynamic_symbol : 1;
247
248   /* TRUE if symbol is __tls_get_addr.  */
249   unsigned int tls_get_addr : 1;
250
251   /* TRUE if symbol is defined as a protected symbol.  */
252   unsigned int def_protected : 1;
253
254   /* 0: Symbol references are unknown.
255      1: Symbol references aren't local.
256      2: Symbol references are local.
257    */
258   unsigned int local_ref : 2;
259
260   /* TRUE if symbol is defined by linker.  */
261   unsigned int linker_def : 1;
262
263   /* TRUE if symbol is referenced by R_386_GOTOFF relocation.  This is
264      only used by i386.  */
265   unsigned int gotoff_ref : 1;
266
267   /* TRUE if a weak symbol with a real definition needs a copy reloc.
268      When there is a weak symbol with a real definition, the processor
269      independent code will have arranged for us to see the real
270      definition first.  We need to copy the needs_copy bit from the
271      real definition and check it when allowing copy reloc in PIE.  This
272      is only used by x86-64.  */
273   unsigned int needs_copy : 1;
274
275   /* Reference count of C/C++ function pointer relocations in read-write
276      section which can be resolved at run-time.  */
277   bfd_signed_vma func_pointer_refcount;
278
279   /* Information about the GOT PLT entry. Filled when there are both
280      GOT and PLT relocations against the same function.  */
281   union gotplt_union plt_got;
282
283   /* Information about the second PLT entry.   */
284   union gotplt_union plt_second;
285
286   /* Offset of the GOTPLT entry reserved for the TLS descriptor,
287      starting at the end of the jump table.  */
288   bfd_vma tlsdesc_got;
289 };
290
291 struct elf_x86_lazy_plt_layout
292 {
293   /* The first entry in an absolute lazy procedure linkage table looks
294      like this.  */
295   const bfd_byte *plt0_entry;
296   unsigned int plt0_entry_size;          /* Size of PLT0 entry.  */
297
298   /* Later entries in an absolute lazy procedure linkage table look
299      like this.  */
300   const bfd_byte *plt_entry;
301   unsigned int plt_entry_size;          /* Size of each PLT entry.  */
302
303   /* Offsets into plt0_entry that are to be replaced with GOT[1] and
304      GOT[2].  */
305   unsigned int plt0_got1_offset;
306   unsigned int plt0_got2_offset;
307
308   /* Offset of the end of the PC-relative instruction containing
309      plt0_got2_offset.  This is for x86-64 only.  */
310   unsigned int plt0_got2_insn_end;
311
312   /* Offsets into plt_entry that are to be replaced with...  */
313   unsigned int plt_got_offset;    /* ... address of this symbol in .got. */
314   unsigned int plt_reloc_offset;  /* ... offset into relocation table. */
315   unsigned int plt_plt_offset;    /* ... offset to start of .plt. */
316
317   /* Length of the PC-relative instruction containing plt_got_offset.
318      This is used for x86-64 only.  */
319   unsigned int plt_got_insn_size;
320
321   /* Offset of the end of the PC-relative jump to plt0_entry.  This is
322      used for x86-64 only.  */
323   unsigned int plt_plt_insn_end;
324
325   /* Offset into plt_entry where the initial value of the GOT entry
326      points.  */
327   unsigned int plt_lazy_offset;
328
329   /* The first entry in a PIC lazy procedure linkage table looks like
330      this.  */
331   const bfd_byte *pic_plt0_entry;
332
333   /* Subsequent entries in a PIC lazy procedure linkage table look
334      like this.  */
335   const bfd_byte *pic_plt_entry;
336
337   /* .eh_frame covering the lazy .plt section.  */
338   const bfd_byte *eh_frame_plt;
339   unsigned int eh_frame_plt_size;
340 };
341
342 struct elf_x86_non_lazy_plt_layout
343 {
344   /* Entries in an absolute non-lazy procedure linkage table look like
345      this.  */
346   const bfd_byte *plt_entry;
347   /* Entries in a PIC non-lazy procedure linkage table look like this.  */
348   const bfd_byte *pic_plt_entry;
349
350   unsigned int plt_entry_size;          /* Size of each PLT entry.  */
351
352   /* Offsets into plt_entry that are to be replaced with...  */
353   unsigned int plt_got_offset;    /* ... address of this symbol in .got. */
354
355   /* Length of the PC-relative instruction containing plt_got_offset.
356      This is used for x86-64 only.  */
357   unsigned int plt_got_insn_size;
358
359   /* .eh_frame covering the non-lazy .plt section.  */
360   const bfd_byte *eh_frame_plt;
361   unsigned int eh_frame_plt_size;
362 };
363
364 struct elf_x86_plt_layout
365 {
366   /* The first entry in a lazy procedure linkage table looks like this.
367      This is only used for i386 where absolute PLT0 and PIC PLT0 are
368      different.  */
369   const bfd_byte *plt0_entry;
370   /* Entries in a procedure linkage table look like this.  */
371   const bfd_byte *plt_entry;
372   unsigned int plt_entry_size;          /* Size of each PLT entry.  */
373
374   /* 1 has PLT0.  */
375   unsigned int has_plt0;
376
377   /* Offsets into plt_entry that are to be replaced with...  */
378   unsigned int plt_got_offset;    /* ... address of this symbol in .got. */
379
380   /* Length of the PC-relative instruction containing plt_got_offset.
381      This is only used for x86-64.  */
382   unsigned int plt_got_insn_size;
383
384   /* .eh_frame covering the .plt section.  */
385   const bfd_byte *eh_frame_plt;
386   unsigned int eh_frame_plt_size;
387 };
388
389 /* Values in tls_type of x86 ELF linker hash entry.  */
390 #define GOT_UNKNOWN     0
391 #define GOT_NORMAL      1
392 #define GOT_TLS_GD      2
393 #define GOT_TLS_IE      4
394 #define GOT_TLS_IE_POS  5
395 #define GOT_TLS_IE_NEG  6
396 #define GOT_TLS_IE_BOTH 7
397 #define GOT_TLS_GDESC   8
398 #define GOT_TLS_GD_BOTH_P(type) \
399   ((type) == (GOT_TLS_GD | GOT_TLS_GDESC))
400 #define GOT_TLS_GD_P(type) \
401   ((type) == GOT_TLS_GD || GOT_TLS_GD_BOTH_P (type))
402 #define GOT_TLS_GDESC_P(type) \
403   ((type) == GOT_TLS_GDESC || GOT_TLS_GD_BOTH_P (type))
404 #define GOT_TLS_GD_ANY_P(type) \
405   (GOT_TLS_GD_P (type) || GOT_TLS_GDESC_P (type))
406
407 #define elf_x86_hash_entry(ent) \
408   ((struct elf_x86_link_hash_entry *)(ent))
409
410 /* x86 ELF linker hash table.  */
411
412 struct elf_x86_link_hash_table
413 {
414   struct elf_link_hash_table elf;
415
416   /* Short-cuts to get to dynamic linker sections.  */
417   asection *interp;
418   asection *plt_eh_frame;
419   asection *plt_second;
420   asection *plt_second_eh_frame;
421   asection *plt_got;
422   asection *plt_got_eh_frame;
423
424   /* Parameters describing PLT generation, lazy or non-lazy.  */
425   struct elf_x86_plt_layout plt;
426
427   /* Parameters describing lazy PLT generation.  */
428   const struct elf_x86_lazy_plt_layout *lazy_plt;
429
430   /* Parameters describing non-lazy PLT generation.  */
431   const struct elf_x86_non_lazy_plt_layout *non_lazy_plt;
432
433   union
434   {
435     bfd_signed_vma refcount;
436     bfd_vma offset;
437   } tls_ld_or_ldm_got;
438
439   /* The amount of space used by the jump slots in the GOT.  */
440   bfd_vma sgotplt_jump_table_size;
441
442   /* Small local sym cache.  */
443   struct sym_cache sym_cache;
444
445   /* _TLS_MODULE_BASE_ symbol.  */
446   struct bfd_link_hash_entry *tls_module_base;
447
448   /* Used by local STT_GNU_IFUNC symbols.  */
449   htab_t loc_hash_table;
450   void * loc_hash_memory;
451
452   /* The offset into sgot of the GOT entry used by the PLT entry
453      above.  */
454   bfd_vma tlsdesc_got;
455
456   /* The index of the next R_X86_64_JUMP_SLOT entry in .rela.plt.  */
457   bfd_vma next_jump_slot_index;
458   /* The index of the next R_X86_64_IRELATIVE entry in .rela.plt.  */
459   bfd_vma next_irelative_index;
460
461   /* TRUE if there are dynamic relocs against IFUNC symbols that apply
462      to read-only sections.  */
463   bfd_boolean readonly_dynrelocs_against_ifunc;
464
465   /* TRUE if this is a VxWorks x86 target.  This is only used for
466      i386.  */
467   bfd_boolean is_vxworks;
468
469   /* The (unloaded but important) .rel.plt.unloaded section on VxWorks.
470      This is used for i386 only.  */
471   asection *srelplt2;
472
473   /* The index of the next unused R_386_TLS_DESC slot in .rel.plt.  This
474      is only used for i386.  */
475   bfd_vma next_tls_desc_index;
476
477   /* The offset into splt of the PLT entry for the TLS descriptor
478      resolver.  Special values are 0, if not necessary (or not found
479      to be necessary yet), and -1 if needed but not determined
480      yet.  This is only used for x86-64.  */
481   bfd_vma tlsdesc_plt;
482
483   bfd_vma (*r_info) (bfd_vma, bfd_vma);
484   bfd_vma (*r_sym) (bfd_vma);
485   bfd_boolean (*is_reloc_section) (const char *);
486   enum elf_target_id target_id;
487   unsigned int sizeof_reloc;
488   unsigned int dt_reloc;
489   unsigned int dt_reloc_sz;
490   unsigned int dt_reloc_ent;
491   unsigned int got_entry_size;
492   unsigned int pointer_r_type;
493   int dynamic_interpreter_size;
494   const char *dynamic_interpreter;
495   const char *tls_get_addr;
496 };
497
498 struct elf_x86_init_table
499 {
500   /* The lazy PLT layout.  */
501   const struct elf_x86_lazy_plt_layout *lazy_plt;
502
503   /* The non-lazy PLT layout.  */
504   const struct elf_x86_non_lazy_plt_layout *non_lazy_plt;
505
506   /* The lazy PLT layout for IBT.  */
507   const struct elf_x86_lazy_plt_layout *lazy_ibt_plt;
508
509   /* The non-lazy PLT layout for IBT.  */
510   const struct elf_x86_non_lazy_plt_layout *non_lazy_ibt_plt;
511
512   /* TRUE if this is a normal x86 target.  */
513   bfd_boolean normal_target;
514
515   /* TRUE if this is a VxWorks x86 target.  */
516   bfd_boolean is_vxworks;
517
518   bfd_vma (*r_info) (bfd_vma, bfd_vma);
519   bfd_vma (*r_sym) (bfd_vma);
520 };
521
522 struct elf_x86_obj_tdata
523 {
524   struct elf_obj_tdata root;
525
526   /* tls_type for each local got entry.  */
527   char *local_got_tls_type;
528
529   /* GOTPLT entries for TLS descriptors.  */
530   bfd_vma *local_tlsdesc_gotent;
531 };
532
533 enum elf_x86_plt_type
534 {
535   plt_non_lazy = 0,
536   plt_lazy = 1 << 0,
537   plt_pic = 1 << 1,
538   plt_second = 1 << 2,
539   plt_unknown = -1
540 };
541
542 struct elf_x86_plt
543 {
544   const char *name;
545   asection *sec;
546   bfd_byte *contents;
547   enum elf_x86_plt_type type;
548   unsigned int plt_got_offset;
549   unsigned int plt_entry_size;
550   unsigned int plt_got_insn_size;       /* Only used for x86-64.  */
551   long count;
552 };
553
554 #define elf_x86_tdata(abfd) \
555   ((struct elf_x86_obj_tdata *) (abfd)->tdata.any)
556
557 #define elf_x86_local_got_tls_type(abfd) \
558   (elf_x86_tdata (abfd)->local_got_tls_type)
559
560 #define elf_x86_local_tlsdesc_gotent(abfd) \
561   (elf_x86_tdata (abfd)->local_tlsdesc_gotent)
562
563 #define elf_x86_compute_jump_table_size(htab) \
564   ((htab)->elf.srelplt->reloc_count * (htab)->got_entry_size)
565
566 #define is_x86_elf(bfd, htab)                           \
567   (bfd_get_flavour (bfd) == bfd_target_elf_flavour      \
568    && elf_tdata (bfd) != NULL                           \
569    && elf_object_id (bfd) == (htab)->target_id)
570
571 extern bfd_boolean _bfd_x86_elf_mkobject
572   (bfd *);
573
574 extern void _bfd_x86_elf_set_tls_module_base
575   (struct bfd_link_info *);
576
577 extern bfd_vma _bfd_x86_elf_dtpoff_base
578   (struct bfd_link_info *);
579
580 extern bfd_boolean _bfd_x86_elf_readonly_dynrelocs
581   (struct elf_link_hash_entry *, void *);
582
583 extern struct elf_link_hash_entry * _bfd_elf_x86_get_local_sym_hash
584   (struct elf_x86_link_hash_table *, bfd *, const Elf_Internal_Rela *,
585    bfd_boolean);
586
587 extern hashval_t _bfd_x86_elf_local_htab_hash
588   (const void *);
589
590 extern int _bfd_x86_elf_local_htab_eq
591   (const void *, const void *);
592
593 extern struct bfd_hash_entry * _bfd_x86_elf_link_hash_newfunc
594   (struct bfd_hash_entry *, struct bfd_hash_table *, const char *);
595
596 extern struct bfd_link_hash_table * _bfd_x86_elf_link_hash_table_create
597   (bfd *);
598
599 extern int _bfd_x86_elf_compare_relocs
600   (const void *, const void *);
601
602 extern bfd_boolean _bfd_x86_elf_link_check_relocs
603   (bfd *, struct bfd_link_info *);
604
605 extern bfd_boolean _bfd_x86_elf_size_dynamic_sections
606   (bfd *, struct bfd_link_info *);
607
608 extern bfd_boolean _bfd_x86_elf_always_size_sections
609   (bfd *, struct bfd_link_info *);
610
611 extern void _bfd_x86_elf_merge_symbol_attribute
612   (struct elf_link_hash_entry *, const Elf_Internal_Sym *,
613    bfd_boolean, bfd_boolean);
614
615 extern void _bfd_x86_elf_copy_indirect_symbol
616   (struct bfd_link_info *, struct elf_link_hash_entry *,
617    struct elf_link_hash_entry *);
618
619 extern bfd_boolean _bfd_x86_elf_fixup_symbol
620   (struct bfd_link_info *, struct elf_link_hash_entry *);
621
622 extern bfd_boolean _bfd_x86_elf_hash_symbol
623   (struct elf_link_hash_entry *);
624
625 extern bfd_boolean _bfd_x86_elf_adjust_dynamic_symbol
626   (struct bfd_link_info *, struct elf_link_hash_entry *);
627
628 extern bfd_boolean _bfd_x86_elf_link_symbol_references_local
629   (struct bfd_link_info *, struct elf_link_hash_entry *);
630
631 extern asection * _bfd_x86_elf_gc_mark_hook
632   (asection *, struct bfd_link_info *, Elf_Internal_Rela *,
633    struct elf_link_hash_entry *, Elf_Internal_Sym *);
634
635 extern long _bfd_x86_elf_get_synthetic_symtab
636   (bfd *, long, long, bfd_vma, struct elf_x86_plt [], asymbol **,
637    asymbol **);
638
639 extern enum elf_property_kind _bfd_x86_elf_parse_gnu_properties
640   (bfd *, unsigned int, bfd_byte *, unsigned int);
641
642 extern bfd_boolean _bfd_x86_elf_merge_gnu_properties
643   (struct bfd_link_info *, bfd *, elf_property *, elf_property *);
644
645 extern bfd * _bfd_x86_elf_link_setup_gnu_properties
646   (struct bfd_link_info *, struct elf_x86_init_table *);
647
648 #define bfd_elf64_mkobject \
649   _bfd_x86_elf_mkobject
650 #define bfd_elf32_mkobject \
651   _bfd_x86_elf_mkobject
652 #define bfd_elf64_bfd_link_hash_table_create \
653   _bfd_x86_elf_link_hash_table_create
654 #define bfd_elf32_bfd_link_hash_table_create \
655   _bfd_x86_elf_link_hash_table_create
656 #define bfd_elf64_bfd_link_check_relocs \
657   _bfd_x86_elf_link_check_relocs
658 #define bfd_elf32_bfd_link_check_relocs \
659   _bfd_x86_elf_link_check_relocs
660
661 #define elf_backend_size_dynamic_sections \
662   _bfd_x86_elf_size_dynamic_sections
663 #define elf_backend_always_size_sections \
664   _bfd_x86_elf_always_size_sections
665 #define elf_backend_merge_symbol_attribute \
666   _bfd_x86_elf_merge_symbol_attribute
667 #define elf_backend_copy_indirect_symbol \
668   _bfd_x86_elf_copy_indirect_symbol
669 #define elf_backend_fixup_symbol \
670   _bfd_x86_elf_fixup_symbol
671 #define elf_backend_hash_symbol \
672   _bfd_x86_elf_hash_symbol
673 #define elf_backend_adjust_dynamic_symbol \
674   _bfd_x86_elf_adjust_dynamic_symbol
675 #define elf_backend_gc_mark_hook \
676   _bfd_x86_elf_gc_mark_hook
677 #define elf_backend_omit_section_dynsym \
678   ((bfd_boolean (*) (bfd *, struct bfd_link_info *, asection *)) bfd_true)
679 #define elf_backend_parse_gnu_properties \
680   _bfd_x86_elf_parse_gnu_properties
681 #define elf_backend_merge_gnu_properties \
682   _bfd_x86_elf_merge_gnu_properties