1 // x86_64.cc -- x86_64 target support for gold.
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
28 #include "parameters.h"
35 #include "copy-relocs.h"
37 #include "target-reloc.h"
38 #include "target-select.h"
49 class Output_data_plt_x86_64
;
51 // The x86_64 target class.
53 // http://www.x86-64.org/documentation/abi.pdf
54 // TLS info comes from
55 // http://people.redhat.com/drepper/tls.pdf
56 // http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt
58 class Target_x86_64
: public Target_freebsd
<64, false>
61 // In the x86_64 ABI (p 68), it says "The AMD64 ABI architectures
62 // uses only Elf64_Rela relocation entries with explicit addends."
63 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true, 64, false> Reloc_section
;
66 : Target_freebsd
<64, false>(&x86_64_info
),
67 got_(NULL
), plt_(NULL
), got_plt_(NULL
), global_offset_table_(NULL
),
68 rela_dyn_(NULL
), copy_relocs_(elfcpp::R_X86_64_COPY
), dynbss_(NULL
),
69 got_mod_index_offset_(-1U), tlsdesc_reloc_info_(),
70 tls_base_symbol_defined_(false)
73 // This function should be defined in targets that can use relocation
74 // types to determine (implemented in local_reloc_may_be_function_pointer
75 // and global_reloc_may_be_function_pointer)
76 // if a function's pointer is taken. ICF uses this in safe mode to only
77 // fold those functions whose pointer is defintely not taken. For x86_64
78 // pie binaries, safe ICF cannot be done by looking at relocation types.
80 can_check_for_function_pointers() const
81 { return !parameters
->options().pie(); }
83 // Hook for a new output section.
85 do_new_output_section(Output_section
*) const;
87 // Scan the relocations to look for symbol adjustments.
89 gc_process_relocs(Symbol_table
* symtab
,
91 Sized_relobj
<64, false>* object
,
92 unsigned int data_shndx
,
94 const unsigned char* prelocs
,
96 Output_section
* output_section
,
97 bool needs_special_offset_handling
,
98 size_t local_symbol_count
,
99 const unsigned char* plocal_symbols
);
101 // Scan the relocations to look for symbol adjustments.
103 scan_relocs(Symbol_table
* symtab
,
105 Sized_relobj
<64, false>* object
,
106 unsigned int data_shndx
,
107 unsigned int sh_type
,
108 const unsigned char* prelocs
,
110 Output_section
* output_section
,
111 bool needs_special_offset_handling
,
112 size_t local_symbol_count
,
113 const unsigned char* plocal_symbols
);
115 // Finalize the sections.
117 do_finalize_sections(Layout
*, const Input_objects
*, Symbol_table
*);
119 // Return the value to use for a dynamic which requires special
122 do_dynsym_value(const Symbol
*) const;
124 // Relocate a section.
126 relocate_section(const Relocate_info
<64, false>*,
127 unsigned int sh_type
,
128 const unsigned char* prelocs
,
130 Output_section
* output_section
,
131 bool needs_special_offset_handling
,
133 elfcpp::Elf_types
<64>::Elf_Addr view_address
,
134 section_size_type view_size
,
135 const Reloc_symbol_changes
*);
137 // Scan the relocs during a relocatable link.
139 scan_relocatable_relocs(Symbol_table
* symtab
,
141 Sized_relobj
<64, false>* object
,
142 unsigned int data_shndx
,
143 unsigned int sh_type
,
144 const unsigned char* prelocs
,
146 Output_section
* output_section
,
147 bool needs_special_offset_handling
,
148 size_t local_symbol_count
,
149 const unsigned char* plocal_symbols
,
150 Relocatable_relocs
*);
152 // Relocate a section during a relocatable link.
154 relocate_for_relocatable(const Relocate_info
<64, false>*,
155 unsigned int sh_type
,
156 const unsigned char* prelocs
,
158 Output_section
* output_section
,
159 off_t offset_in_output_section
,
160 const Relocatable_relocs
*,
162 elfcpp::Elf_types
<64>::Elf_Addr view_address
,
163 section_size_type view_size
,
164 unsigned char* reloc_view
,
165 section_size_type reloc_view_size
);
167 // Return a string used to fill a code section with nops.
169 do_code_fill(section_size_type length
) const;
171 // Return whether SYM is defined by the ABI.
173 do_is_defined_by_abi(const Symbol
* sym
) const
174 { return strcmp(sym
->name(), "__tls_get_addr") == 0; }
176 // Return the symbol index to use for a target specific relocation.
177 // The only target specific relocation is R_X86_64_TLSDESC for a
178 // local symbol, which is an absolute reloc.
180 do_reloc_symbol_index(void*, unsigned int r_type
) const
182 gold_assert(r_type
== elfcpp::R_X86_64_TLSDESC
);
186 // Return the addend to use for a target specific relocation.
188 do_reloc_addend(void* arg
, unsigned int r_type
, uint64_t addend
) const;
190 // Adjust -fstack-split code which calls non-stack-split code.
192 do_calls_non_split(Relobj
* object
, unsigned int shndx
,
193 section_offset_type fnoffset
, section_size_type fnsize
,
194 unsigned char* view
, section_size_type view_size
,
195 std::string
* from
, std::string
* to
) const;
197 // Return the size of the GOT section.
201 gold_assert(this->got_
!= NULL
);
202 return this->got_
->data_size();
205 // Add a new reloc argument, returning the index in the vector.
207 add_tlsdesc_info(Sized_relobj
<64, false>* object
, unsigned int r_sym
)
209 this->tlsdesc_reloc_info_
.push_back(Tlsdesc_info(object
, r_sym
));
210 return this->tlsdesc_reloc_info_
.size() - 1;
214 // The class which scans relocations.
219 : issued_non_pic_error_(false)
223 local(Symbol_table
* symtab
, Layout
* layout
, Target_x86_64
* target
,
224 Sized_relobj
<64, false>* object
,
225 unsigned int data_shndx
,
226 Output_section
* output_section
,
227 const elfcpp::Rela
<64, false>& reloc
, unsigned int r_type
,
228 const elfcpp::Sym
<64, false>& lsym
);
231 global(Symbol_table
* symtab
, Layout
* layout
, Target_x86_64
* target
,
232 Sized_relobj
<64, false>* object
,
233 unsigned int data_shndx
,
234 Output_section
* output_section
,
235 const elfcpp::Rela
<64, false>& reloc
, unsigned int r_type
,
239 local_reloc_may_be_function_pointer(Symbol_table
* symtab
, Layout
* layout
,
240 Target_x86_64
* target
,
241 Sized_relobj
<64, false>* object
,
242 unsigned int data_shndx
,
243 Output_section
* output_section
,
244 const elfcpp::Rela
<64, false>& reloc
,
246 const elfcpp::Sym
<64, false>& lsym
);
249 global_reloc_may_be_function_pointer(Symbol_table
* symtab
, Layout
* layout
,
250 Target_x86_64
* target
,
251 Sized_relobj
<64, false>* object
,
252 unsigned int data_shndx
,
253 Output_section
* output_section
,
254 const elfcpp::Rela
<64, false>& reloc
,
260 unsupported_reloc_local(Sized_relobj
<64, false>*, unsigned int r_type
);
263 unsupported_reloc_global(Sized_relobj
<64, false>*, unsigned int r_type
,
267 check_non_pic(Relobj
*, unsigned int r_type
);
270 possible_function_pointer_reloc(unsigned int r_type
);
272 // Whether we have issued an error about a non-PIC compilation.
273 bool issued_non_pic_error_
;
276 // The class which implements relocation.
281 : skip_call_tls_get_addr_(false), saw_tls_block_reloc_(false)
286 if (this->skip_call_tls_get_addr_
)
288 // FIXME: This needs to specify the location somehow.
289 gold_error(_("missing expected TLS relocation"));
293 // Do a relocation. Return false if the caller should not issue
294 // any warnings about this relocation.
296 relocate(const Relocate_info
<64, false>*, Target_x86_64
*, Output_section
*,
297 size_t relnum
, const elfcpp::Rela
<64, false>&,
298 unsigned int r_type
, const Sized_symbol
<64>*,
299 const Symbol_value
<64>*,
300 unsigned char*, elfcpp::Elf_types
<64>::Elf_Addr
,
304 // Do a TLS relocation.
306 relocate_tls(const Relocate_info
<64, false>*, Target_x86_64
*,
307 size_t relnum
, const elfcpp::Rela
<64, false>&,
308 unsigned int r_type
, const Sized_symbol
<64>*,
309 const Symbol_value
<64>*,
310 unsigned char*, elfcpp::Elf_types
<64>::Elf_Addr
,
313 // Do a TLS General-Dynamic to Initial-Exec transition.
315 tls_gd_to_ie(const Relocate_info
<64, false>*, size_t relnum
,
316 Output_segment
* tls_segment
,
317 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
318 elfcpp::Elf_types
<64>::Elf_Addr value
,
320 elfcpp::Elf_types
<64>::Elf_Addr
,
321 section_size_type view_size
);
323 // Do a TLS General-Dynamic to Local-Exec transition.
325 tls_gd_to_le(const Relocate_info
<64, false>*, size_t relnum
,
326 Output_segment
* tls_segment
,
327 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
328 elfcpp::Elf_types
<64>::Elf_Addr value
,
330 section_size_type view_size
);
332 // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
334 tls_desc_gd_to_ie(const Relocate_info
<64, false>*, size_t relnum
,
335 Output_segment
* tls_segment
,
336 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
337 elfcpp::Elf_types
<64>::Elf_Addr value
,
339 elfcpp::Elf_types
<64>::Elf_Addr
,
340 section_size_type view_size
);
342 // Do a TLSDESC-style General-Dynamic to Local-Exec transition.
344 tls_desc_gd_to_le(const Relocate_info
<64, false>*, size_t relnum
,
345 Output_segment
* tls_segment
,
346 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
347 elfcpp::Elf_types
<64>::Elf_Addr value
,
349 section_size_type view_size
);
351 // Do a TLS Local-Dynamic to Local-Exec transition.
353 tls_ld_to_le(const Relocate_info
<64, false>*, size_t relnum
,
354 Output_segment
* tls_segment
,
355 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
356 elfcpp::Elf_types
<64>::Elf_Addr value
,
358 section_size_type view_size
);
360 // Do a TLS Initial-Exec to Local-Exec transition.
362 tls_ie_to_le(const Relocate_info
<64, false>*, size_t relnum
,
363 Output_segment
* tls_segment
,
364 const elfcpp::Rela
<64, false>&, unsigned int r_type
,
365 elfcpp::Elf_types
<64>::Elf_Addr value
,
367 section_size_type view_size
);
369 // This is set if we should skip the next reloc, which should be a
370 // PLT32 reloc against ___tls_get_addr.
371 bool skip_call_tls_get_addr_
;
373 // This is set if we see a relocation which could load the address
374 // of the TLS block. Whether we see such a relocation determines
375 // how we handle the R_X86_64_DTPOFF32 relocation, which is used
376 // in debugging sections.
377 bool saw_tls_block_reloc_
;
380 // A class which returns the size required for a relocation type,
381 // used while scanning relocs during a relocatable link.
382 class Relocatable_size_for_reloc
386 get_size_for_reloc(unsigned int, Relobj
*);
389 // Adjust TLS relocation type based on the options and whether this
390 // is a local symbol.
391 static tls::Tls_optimization
392 optimize_tls_reloc(bool is_final
, int r_type
);
394 // Get the GOT section, creating it if necessary.
395 Output_data_got
<64, false>*
396 got_section(Symbol_table
*, Layout
*);
398 // Get the GOT PLT section.
400 got_plt_section() const
402 gold_assert(this->got_plt_
!= NULL
);
403 return this->got_plt_
;
406 // Create the PLT section.
408 make_plt_section(Symbol_table
* symtab
, Layout
* layout
);
410 // Create a PLT entry for a global symbol.
412 make_plt_entry(Symbol_table
*, Layout
*, Symbol
*);
414 // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
416 define_tls_base_symbol(Symbol_table
*, Layout
*);
418 // Create the reserved PLT and GOT entries for the TLS descriptor resolver.
420 reserve_tlsdesc_entries(Symbol_table
* symtab
, Layout
* layout
);
422 // Create a GOT entry for the TLS module index.
424 got_mod_index_entry(Symbol_table
* symtab
, Layout
* layout
,
425 Sized_relobj
<64, false>* object
);
427 // Get the PLT section.
428 Output_data_plt_x86_64
*
431 gold_assert(this->plt_
!= NULL
);
435 // Get the dynamic reloc section, creating it if necessary.
437 rela_dyn_section(Layout
*);
439 // Get the section to use for TLSDESC relocations.
441 rela_tlsdesc_section(Layout
*) const;
443 // Add a potential copy relocation.
445 copy_reloc(Symbol_table
* symtab
, Layout
* layout
,
446 Sized_relobj
<64, false>* object
,
447 unsigned int shndx
, Output_section
* output_section
,
448 Symbol
* sym
, const elfcpp::Rela
<64, false>& reloc
)
450 this->copy_relocs_
.copy_reloc(symtab
, layout
,
451 symtab
->get_sized_symbol
<64>(sym
),
452 object
, shndx
, output_section
,
453 reloc
, this->rela_dyn_section(layout
));
456 // Information about this specific target which we pass to the
457 // general Target structure.
458 static const Target::Target_info x86_64_info
;
462 GOT_TYPE_STANDARD
= 0, // GOT entry for a regular symbol
463 GOT_TYPE_TLS_OFFSET
= 1, // GOT entry for TLS offset
464 GOT_TYPE_TLS_PAIR
= 2, // GOT entry for TLS module/offset pair
465 GOT_TYPE_TLS_DESC
= 3 // GOT entry for TLS_DESC pair
468 // This type is used as the argument to the target specific
469 // relocation routines. The only target specific reloc is
470 // R_X86_64_TLSDESC against a local symbol.
473 Tlsdesc_info(Sized_relobj
<64, false>* a_object
, unsigned int a_r_sym
)
474 : object(a_object
), r_sym(a_r_sym
)
477 // The object in which the local symbol is defined.
478 Sized_relobj
<64, false>* object
;
479 // The local symbol index in the object.
484 Output_data_got
<64, false>* got_
;
486 Output_data_plt_x86_64
* plt_
;
487 // The GOT PLT section.
488 Output_data_space
* got_plt_
;
489 // The _GLOBAL_OFFSET_TABLE_ symbol.
490 Symbol
* global_offset_table_
;
491 // The dynamic reloc section.
492 Reloc_section
* rela_dyn_
;
493 // Relocs saved to avoid a COPY reloc.
494 Copy_relocs
<elfcpp::SHT_RELA
, 64, false> copy_relocs_
;
495 // Space for variables copied with a COPY reloc.
496 Output_data_space
* dynbss_
;
497 // Offset of the GOT entry for the TLS module index.
498 unsigned int got_mod_index_offset_
;
499 // We handle R_X86_64_TLSDESC against a local symbol as a target
500 // specific relocation. Here we store the object and local symbol
501 // index for the relocation.
502 std::vector
<Tlsdesc_info
> tlsdesc_reloc_info_
;
503 // True if the _TLS_MODULE_BASE_ symbol has been defined.
504 bool tls_base_symbol_defined_
;
507 const Target::Target_info
Target_x86_64::x86_64_info
=
510 false, // is_big_endian
511 elfcpp::EM_X86_64
, // machine_code
512 false, // has_make_symbol
513 false, // has_resolve
514 true, // has_code_fill
515 true, // is_default_stack_executable
517 "/lib/ld64.so.1", // program interpreter
518 0x400000, // default_text_segment_address
519 0x1000, // abi_pagesize (overridable by -z max-page-size)
520 0x1000, // common_pagesize (overridable by -z common-page-size)
521 elfcpp::SHN_UNDEF
, // small_common_shndx
522 elfcpp::SHN_X86_64_LCOMMON
, // large_common_shndx
523 0, // small_common_section_flags
524 elfcpp::SHF_X86_64_LARGE
, // large_common_section_flags
525 NULL
, // attributes_section
526 NULL
// attributes_vendor
529 // This is called when a new output section is created. This is where
530 // we handle the SHF_X86_64_LARGE.
533 Target_x86_64::do_new_output_section(Output_section
*os
) const
535 if ((os
->flags() & elfcpp::SHF_X86_64_LARGE
) != 0)
536 os
->set_is_large_section();
539 // Get the GOT section, creating it if necessary.
541 Output_data_got
<64, false>*
542 Target_x86_64::got_section(Symbol_table
* symtab
, Layout
* layout
)
544 if (this->got_
== NULL
)
546 gold_assert(symtab
!= NULL
&& layout
!= NULL
);
548 this->got_
= new Output_data_got
<64, false>();
551 os
= layout
->add_output_section_data(".got", elfcpp::SHT_PROGBITS
,
553 | elfcpp::SHF_WRITE
),
554 this->got_
, false, true, true,
557 this->got_plt_
= new Output_data_space(8, "** GOT PLT");
558 os
= layout
->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS
,
560 | elfcpp::SHF_WRITE
),
561 this->got_plt_
, false, false,
564 // The first three entries are reserved.
565 this->got_plt_
->set_current_data_size(3 * 8);
567 // Those bytes can go into the relro segment.
568 layout
->increase_relro(3 * 8);
570 // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT.
571 this->global_offset_table_
=
572 symtab
->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL
,
573 Symbol_table::PREDEFINED
,
575 0, 0, elfcpp::STT_OBJECT
,
577 elfcpp::STV_HIDDEN
, 0,
584 // Get the dynamic reloc section, creating it if necessary.
586 Target_x86_64::Reloc_section
*
587 Target_x86_64::rela_dyn_section(Layout
* layout
)
589 if (this->rela_dyn_
== NULL
)
591 gold_assert(layout
!= NULL
);
592 this->rela_dyn_
= new Reloc_section(parameters
->options().combreloc());
593 layout
->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA
,
594 elfcpp::SHF_ALLOC
, this->rela_dyn_
, true,
595 false, false, false);
597 return this->rela_dyn_
;
600 // A class to handle the PLT data.
602 class Output_data_plt_x86_64
: public Output_section_data
605 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true, 64, false> Reloc_section
;
607 Output_data_plt_x86_64(Layout
*, Output_data_got
<64, false>*,
610 // Add an entry to the PLT.
612 add_entry(Symbol
* gsym
);
614 // Add the reserved TLSDESC_PLT entry to the PLT.
616 reserve_tlsdesc_entry(unsigned int got_offset
)
617 { this->tlsdesc_got_offset_
= got_offset
; }
619 // Return true if a TLSDESC_PLT entry has been reserved.
621 has_tlsdesc_entry() const
622 { return this->tlsdesc_got_offset_
!= -1U; }
624 // Return the GOT offset for the reserved TLSDESC_PLT entry.
626 get_tlsdesc_got_offset() const
627 { return this->tlsdesc_got_offset_
; }
629 // Return the offset of the reserved TLSDESC_PLT entry.
631 get_tlsdesc_plt_offset() const
632 { return (this->count_
+ 1) * plt_entry_size
; }
634 // Return the .rela.plt section data.
637 { return this->rel_
; }
639 // Return where the TLSDESC relocations should go.
641 rela_tlsdesc(Layout
*);
645 do_adjust_output_section(Output_section
* os
);
647 // Write to a map file.
649 do_print_to_mapfile(Mapfile
* mapfile
) const
650 { mapfile
->print_output_data(this, _("** PLT")); }
653 // The size of an entry in the PLT.
654 static const int plt_entry_size
= 16;
656 // The first entry in the PLT.
657 // From the AMD64 ABI: "Unlike Intel386 ABI, this ABI uses the same
658 // procedure linkage table for both programs and shared objects."
659 static unsigned char first_plt_entry
[plt_entry_size
];
661 // Other entries in the PLT for an executable.
662 static unsigned char plt_entry
[plt_entry_size
];
664 // The reserved TLSDESC entry in the PLT for an executable.
665 static unsigned char tlsdesc_plt_entry
[plt_entry_size
];
667 // Set the final size.
669 set_final_data_size();
671 // Write out the PLT data.
673 do_write(Output_file
*);
675 // The reloc section.
677 // The TLSDESC relocs, if necessary. These must follow the regular
679 Reloc_section
* tlsdesc_rel_
;
681 Output_data_got
<64, false>* got_
;
682 // The .got.plt section.
683 Output_data_space
* got_plt_
;
684 // The number of PLT entries.
686 // Offset of the reserved TLSDESC_GOT entry when needed.
687 unsigned int tlsdesc_got_offset_
;
690 // Create the PLT section. The ordinary .got section is an argument,
691 // since we need to refer to the start. We also create our own .got
692 // section just for PLT entries.
694 Output_data_plt_x86_64::Output_data_plt_x86_64(Layout
* layout
,
695 Output_data_got
<64, false>* got
,
696 Output_data_space
* got_plt
)
697 : Output_section_data(8), tlsdesc_rel_(NULL
), got_(got
), got_plt_(got_plt
),
698 count_(0), tlsdesc_got_offset_(-1U)
700 this->rel_
= new Reloc_section(false);
701 layout
->add_output_section_data(".rela.plt", elfcpp::SHT_RELA
,
702 elfcpp::SHF_ALLOC
, this->rel_
, true,
703 false, false, false);
707 Output_data_plt_x86_64::do_adjust_output_section(Output_section
* os
)
709 os
->set_entsize(plt_entry_size
);
712 // Add an entry to the PLT.
715 Output_data_plt_x86_64::add_entry(Symbol
* gsym
)
717 gold_assert(!gsym
->has_plt_offset());
719 // Note that when setting the PLT offset we skip the initial
720 // reserved PLT entry.
721 gsym
->set_plt_offset((this->count_
+ 1) * plt_entry_size
);
725 section_offset_type got_offset
= this->got_plt_
->current_data_size();
727 // Every PLT entry needs a GOT entry which points back to the PLT
728 // entry (this will be changed by the dynamic linker, normally
729 // lazily when the function is called).
730 this->got_plt_
->set_current_data_size(got_offset
+ 8);
732 // Every PLT entry needs a reloc.
733 gsym
->set_needs_dynsym_entry();
734 this->rel_
->add_global(gsym
, elfcpp::R_X86_64_JUMP_SLOT
, this->got_plt_
,
737 // Note that we don't need to save the symbol. The contents of the
738 // PLT are independent of which symbols are used. The symbols only
739 // appear in the relocations.
742 // Return where the TLSDESC relocations should go, creating it if
743 // necessary. These follow the JUMP_SLOT relocations.
745 Output_data_plt_x86_64::Reloc_section
*
746 Output_data_plt_x86_64::rela_tlsdesc(Layout
* layout
)
748 if (this->tlsdesc_rel_
== NULL
)
750 this->tlsdesc_rel_
= new Reloc_section(false);
751 layout
->add_output_section_data(".rela.plt", elfcpp::SHT_RELA
,
752 elfcpp::SHF_ALLOC
, this->tlsdesc_rel_
,
753 true, false, false, false);
754 gold_assert(this->tlsdesc_rel_
->output_section() ==
755 this->rel_
->output_section());
757 return this->tlsdesc_rel_
;
760 // Set the final size.
762 Output_data_plt_x86_64::set_final_data_size()
764 unsigned int count
= this->count_
;
765 if (this->has_tlsdesc_entry())
767 this->set_data_size((count
+ 1) * plt_entry_size
);
770 // The first entry in the PLT for an executable.
772 unsigned char Output_data_plt_x86_64::first_plt_entry
[plt_entry_size
] =
774 // From AMD64 ABI Draft 0.98, page 76
775 0xff, 0x35, // pushq contents of memory address
776 0, 0, 0, 0, // replaced with address of .got + 8
777 0xff, 0x25, // jmp indirect
778 0, 0, 0, 0, // replaced with address of .got + 16
779 0x90, 0x90, 0x90, 0x90 // noop (x4)
782 // Subsequent entries in the PLT for an executable.
784 unsigned char Output_data_plt_x86_64::plt_entry
[plt_entry_size
] =
786 // From AMD64 ABI Draft 0.98, page 76
787 0xff, 0x25, // jmpq indirect
788 0, 0, 0, 0, // replaced with address of symbol in .got
789 0x68, // pushq immediate
790 0, 0, 0, 0, // replaced with offset into relocation table
791 0xe9, // jmpq relative
792 0, 0, 0, 0 // replaced with offset to start of .plt
795 // The reserved TLSDESC entry in the PLT for an executable.
797 unsigned char Output_data_plt_x86_64::tlsdesc_plt_entry
[plt_entry_size
] =
799 // From Alexandre Oliva, "Thread-Local Storage Descriptors for IA32
800 // and AMD64/EM64T", Version 0.9.4 (2005-10-10).
801 0xff, 0x35, // pushq x(%rip)
802 0, 0, 0, 0, // replaced with address of linkmap GOT entry (at PLTGOT + 8)
803 0xff, 0x25, // jmpq *y(%rip)
804 0, 0, 0, 0, // replaced with offset of reserved TLSDESC_GOT entry
809 // Write out the PLT. This uses the hand-coded instructions above,
810 // and adjusts them as needed. This is specified by the AMD64 ABI.
813 Output_data_plt_x86_64::do_write(Output_file
* of
)
815 const off_t offset
= this->offset();
816 const section_size_type oview_size
=
817 convert_to_section_size_type(this->data_size());
818 unsigned char* const oview
= of
->get_output_view(offset
, oview_size
);
820 const off_t got_file_offset
= this->got_plt_
->offset();
821 const section_size_type got_size
=
822 convert_to_section_size_type(this->got_plt_
->data_size());
823 unsigned char* const got_view
= of
->get_output_view(got_file_offset
,
826 unsigned char* pov
= oview
;
828 // The base address of the .plt section.
829 elfcpp::Elf_types
<64>::Elf_Addr plt_address
= this->address();
830 // The base address of the .got section.
831 elfcpp::Elf_types
<64>::Elf_Addr got_base
= this->got_
->address();
832 // The base address of the PLT portion of the .got section,
833 // which is where the GOT pointer will point, and where the
834 // three reserved GOT entries are located.
835 elfcpp::Elf_types
<64>::Elf_Addr got_address
= this->got_plt_
->address();
837 memcpy(pov
, first_plt_entry
, plt_entry_size
);
838 // We do a jmp relative to the PC at the end of this instruction.
839 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2,
841 - (plt_address
+ 6)));
842 elfcpp::Swap
<32, false>::writeval(pov
+ 8,
844 - (plt_address
+ 12)));
845 pov
+= plt_entry_size
;
847 unsigned char* got_pov
= got_view
;
849 memset(got_pov
, 0, 24);
852 unsigned int plt_offset
= plt_entry_size
;
853 unsigned int got_offset
= 24;
854 const unsigned int count
= this->count_
;
855 for (unsigned int plt_index
= 0;
858 pov
+= plt_entry_size
,
860 plt_offset
+= plt_entry_size
,
863 // Set and adjust the PLT entry itself.
864 memcpy(pov
, plt_entry
, plt_entry_size
);
865 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2,
866 (got_address
+ got_offset
867 - (plt_address
+ plt_offset
870 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 7, plt_index
);
871 elfcpp::Swap
<32, false>::writeval(pov
+ 12,
872 - (plt_offset
+ plt_entry_size
));
874 // Set the entry in the GOT.
875 elfcpp::Swap
<64, false>::writeval(got_pov
, plt_address
+ plt_offset
+ 6);
878 if (this->has_tlsdesc_entry())
880 // Set and adjust the reserved TLSDESC PLT entry.
881 unsigned int tlsdesc_got_offset
= this->get_tlsdesc_got_offset();
882 memcpy(pov
, tlsdesc_plt_entry
, plt_entry_size
);
883 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2,
885 - (plt_address
+ plt_offset
887 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 8,
890 - (plt_address
+ plt_offset
892 pov
+= plt_entry_size
;
895 gold_assert(static_cast<section_size_type
>(pov
- oview
) == oview_size
);
896 gold_assert(static_cast<section_size_type
>(got_pov
- got_view
) == got_size
);
898 of
->write_output_view(offset
, oview_size
, oview
);
899 of
->write_output_view(got_file_offset
, got_size
, got_view
);
902 // Create the PLT section.
905 Target_x86_64::make_plt_section(Symbol_table
* symtab
, Layout
* layout
)
907 if (this->plt_
== NULL
)
909 // Create the GOT sections first.
910 this->got_section(symtab
, layout
);
912 this->plt_
= new Output_data_plt_x86_64(layout
, this->got_
,
914 layout
->add_output_section_data(".plt", elfcpp::SHT_PROGBITS
,
916 | elfcpp::SHF_EXECINSTR
),
917 this->plt_
, false, false, false, false);
921 // Return the section for TLSDESC relocations.
923 Target_x86_64::Reloc_section
*
924 Target_x86_64::rela_tlsdesc_section(Layout
* layout
) const
926 return this->plt_section()->rela_tlsdesc(layout
);
929 // Create a PLT entry for a global symbol.
932 Target_x86_64::make_plt_entry(Symbol_table
* symtab
, Layout
* layout
,
935 if (gsym
->has_plt_offset())
938 if (this->plt_
== NULL
)
939 this->make_plt_section(symtab
, layout
);
941 this->plt_
->add_entry(gsym
);
944 // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
947 Target_x86_64::define_tls_base_symbol(Symbol_table
* symtab
, Layout
* layout
)
949 if (this->tls_base_symbol_defined_
)
952 Output_segment
* tls_segment
= layout
->tls_segment();
953 if (tls_segment
!= NULL
)
955 bool is_exec
= parameters
->options().output_is_executable();
956 symtab
->define_in_output_segment("_TLS_MODULE_BASE_", NULL
,
957 Symbol_table::PREDEFINED
,
961 elfcpp::STV_HIDDEN
, 0,
963 ? Symbol::SEGMENT_END
964 : Symbol::SEGMENT_START
),
967 this->tls_base_symbol_defined_
= true;
970 // Create the reserved PLT and GOT entries for the TLS descriptor resolver.
973 Target_x86_64::reserve_tlsdesc_entries(Symbol_table
* symtab
,
976 if (this->plt_
== NULL
)
977 this->make_plt_section(symtab
, layout
);
979 if (!this->plt_
->has_tlsdesc_entry())
981 // Allocate the TLSDESC_GOT entry.
982 Output_data_got
<64, false>* got
= this->got_section(symtab
, layout
);
983 unsigned int got_offset
= got
->add_constant(0);
985 // Allocate the TLSDESC_PLT entry.
986 this->plt_
->reserve_tlsdesc_entry(got_offset
);
990 // Create a GOT entry for the TLS module index.
993 Target_x86_64::got_mod_index_entry(Symbol_table
* symtab
, Layout
* layout
,
994 Sized_relobj
<64, false>* object
)
996 if (this->got_mod_index_offset_
== -1U)
998 gold_assert(symtab
!= NULL
&& layout
!= NULL
&& object
!= NULL
);
999 Reloc_section
* rela_dyn
= this->rela_dyn_section(layout
);
1000 Output_data_got
<64, false>* got
= this->got_section(symtab
, layout
);
1001 unsigned int got_offset
= got
->add_constant(0);
1002 rela_dyn
->add_local(object
, 0, elfcpp::R_X86_64_DTPMOD64
, got
,
1004 got
->add_constant(0);
1005 this->got_mod_index_offset_
= got_offset
;
1007 return this->got_mod_index_offset_
;
1010 // Optimize the TLS relocation type based on what we know about the
1011 // symbol. IS_FINAL is true if the final address of this symbol is
1012 // known at link time.
1014 tls::Tls_optimization
1015 Target_x86_64::optimize_tls_reloc(bool is_final
, int r_type
)
1017 // If we are generating a shared library, then we can't do anything
1019 if (parameters
->options().shared())
1020 return tls::TLSOPT_NONE
;
1024 case elfcpp::R_X86_64_TLSGD
:
1025 case elfcpp::R_X86_64_GOTPC32_TLSDESC
:
1026 case elfcpp::R_X86_64_TLSDESC_CALL
:
1027 // These are General-Dynamic which permits fully general TLS
1028 // access. Since we know that we are generating an executable,
1029 // we can convert this to Initial-Exec. If we also know that
1030 // this is a local symbol, we can further switch to Local-Exec.
1032 return tls::TLSOPT_TO_LE
;
1033 return tls::TLSOPT_TO_IE
;
1035 case elfcpp::R_X86_64_TLSLD
:
1036 // This is Local-Dynamic, which refers to a local symbol in the
1037 // dynamic TLS block. Since we know that we generating an
1038 // executable, we can switch to Local-Exec.
1039 return tls::TLSOPT_TO_LE
;
1041 case elfcpp::R_X86_64_DTPOFF32
:
1042 case elfcpp::R_X86_64_DTPOFF64
:
1043 // Another Local-Dynamic reloc.
1044 return tls::TLSOPT_TO_LE
;
1046 case elfcpp::R_X86_64_GOTTPOFF
:
1047 // These are Initial-Exec relocs which get the thread offset
1048 // from the GOT. If we know that we are linking against the
1049 // local symbol, we can switch to Local-Exec, which links the
1050 // thread offset into the instruction.
1052 return tls::TLSOPT_TO_LE
;
1053 return tls::TLSOPT_NONE
;
1055 case elfcpp::R_X86_64_TPOFF32
:
1056 // When we already have Local-Exec, there is nothing further we
1058 return tls::TLSOPT_NONE
;
1065 // Report an unsupported relocation against a local symbol.
1068 Target_x86_64::Scan::unsupported_reloc_local(Sized_relobj
<64, false>* object
,
1069 unsigned int r_type
)
1071 gold_error(_("%s: unsupported reloc %u against local symbol"),
1072 object
->name().c_str(), r_type
);
1075 // We are about to emit a dynamic relocation of type R_TYPE. If the
1076 // dynamic linker does not support it, issue an error. The GNU linker
1077 // only issues a non-PIC error for an allocated read-only section.
1078 // Here we know the section is allocated, but we don't know that it is
1079 // read-only. But we check for all the relocation types which the
1080 // glibc dynamic linker supports, so it seems appropriate to issue an
1081 // error even if the section is not read-only.
1084 Target_x86_64::Scan::check_non_pic(Relobj
* object
, unsigned int r_type
)
1088 // These are the relocation types supported by glibc for x86_64.
1089 case elfcpp::R_X86_64_RELATIVE
:
1090 case elfcpp::R_X86_64_GLOB_DAT
:
1091 case elfcpp::R_X86_64_JUMP_SLOT
:
1092 case elfcpp::R_X86_64_DTPMOD64
:
1093 case elfcpp::R_X86_64_DTPOFF64
:
1094 case elfcpp::R_X86_64_TPOFF64
:
1095 case elfcpp::R_X86_64_64
:
1096 case elfcpp::R_X86_64_32
:
1097 case elfcpp::R_X86_64_PC32
:
1098 case elfcpp::R_X86_64_COPY
:
1102 // This prevents us from issuing more than one error per reloc
1103 // section. But we can still wind up issuing more than one
1104 // error per object file.
1105 if (this->issued_non_pic_error_
)
1107 gold_assert(parameters
->options().output_is_position_independent());
1108 object
->error(_("requires unsupported dynamic reloc; "
1109 "recompile with -fPIC"));
1110 this->issued_non_pic_error_
= true;
1113 case elfcpp::R_X86_64_NONE
:
1118 // Scan a relocation for a local symbol.
1121 Target_x86_64::Scan::local(Symbol_table
* symtab
,
1123 Target_x86_64
* target
,
1124 Sized_relobj
<64, false>* object
,
1125 unsigned int data_shndx
,
1126 Output_section
* output_section
,
1127 const elfcpp::Rela
<64, false>& reloc
,
1128 unsigned int r_type
,
1129 const elfcpp::Sym
<64, false>& lsym
)
1133 case elfcpp::R_X86_64_NONE
:
1134 case elfcpp::R_386_GNU_VTINHERIT
:
1135 case elfcpp::R_386_GNU_VTENTRY
:
1138 case elfcpp::R_X86_64_64
:
1139 // If building a shared library (or a position-independent
1140 // executable), we need to create a dynamic relocation for this
1141 // location. The relocation applied at link time will apply the
1142 // link-time value, so we flag the location with an
1143 // R_X86_64_RELATIVE relocation so the dynamic loader can
1144 // relocate it easily.
1145 if (parameters
->options().output_is_position_independent())
1147 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1148 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1149 rela_dyn
->add_local_relative(object
, r_sym
,
1150 elfcpp::R_X86_64_RELATIVE
,
1151 output_section
, data_shndx
,
1152 reloc
.get_r_offset(),
1153 reloc
.get_r_addend());
1157 case elfcpp::R_X86_64_32
:
1158 case elfcpp::R_X86_64_32S
:
1159 case elfcpp::R_X86_64_16
:
1160 case elfcpp::R_X86_64_8
:
1161 // If building a shared library (or a position-independent
1162 // executable), we need to create a dynamic relocation for this
1163 // location. We can't use an R_X86_64_RELATIVE relocation
1164 // because that is always a 64-bit relocation.
1165 if (parameters
->options().output_is_position_independent())
1167 this->check_non_pic(object
, r_type
);
1169 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1170 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1171 if (lsym
.get_st_type() != elfcpp::STT_SECTION
)
1172 rela_dyn
->add_local(object
, r_sym
, r_type
, output_section
,
1173 data_shndx
, reloc
.get_r_offset(),
1174 reloc
.get_r_addend());
1177 gold_assert(lsym
.get_st_value() == 0);
1178 unsigned int shndx
= lsym
.get_st_shndx();
1180 shndx
= object
->adjust_sym_shndx(r_sym
, shndx
,
1183 object
->error(_("section symbol %u has bad shndx %u"),
1186 rela_dyn
->add_local_section(object
, shndx
,
1187 r_type
, output_section
,
1188 data_shndx
, reloc
.get_r_offset(),
1189 reloc
.get_r_addend());
1194 case elfcpp::R_X86_64_PC64
:
1195 case elfcpp::R_X86_64_PC32
:
1196 case elfcpp::R_X86_64_PC16
:
1197 case elfcpp::R_X86_64_PC8
:
1200 case elfcpp::R_X86_64_PLT32
:
1201 // Since we know this is a local symbol, we can handle this as a
1205 case elfcpp::R_X86_64_GOTPC32
:
1206 case elfcpp::R_X86_64_GOTOFF64
:
1207 case elfcpp::R_X86_64_GOTPC64
:
1208 case elfcpp::R_X86_64_PLTOFF64
:
1209 // We need a GOT section.
1210 target
->got_section(symtab
, layout
);
1211 // For PLTOFF64, we'd normally want a PLT section, but since we
1212 // know this is a local symbol, no PLT is needed.
1215 case elfcpp::R_X86_64_GOT64
:
1216 case elfcpp::R_X86_64_GOT32
:
1217 case elfcpp::R_X86_64_GOTPCREL64
:
1218 case elfcpp::R_X86_64_GOTPCREL
:
1219 case elfcpp::R_X86_64_GOTPLT64
:
1221 // The symbol requires a GOT entry.
1222 Output_data_got
<64, false>* got
= target
->got_section(symtab
, layout
);
1223 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1224 if (got
->add_local(object
, r_sym
, GOT_TYPE_STANDARD
))
1226 // If we are generating a shared object, we need to add a
1227 // dynamic relocation for this symbol's GOT entry.
1228 if (parameters
->options().output_is_position_independent())
1230 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1231 // R_X86_64_RELATIVE assumes a 64-bit relocation.
1232 if (r_type
!= elfcpp::R_X86_64_GOT32
)
1233 rela_dyn
->add_local_relative(
1234 object
, r_sym
, elfcpp::R_X86_64_RELATIVE
, got
,
1235 object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
), 0);
1238 this->check_non_pic(object
, r_type
);
1240 gold_assert(lsym
.get_st_type() != elfcpp::STT_SECTION
);
1241 rela_dyn
->add_local(
1242 object
, r_sym
, r_type
, got
,
1243 object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
), 0);
1247 // For GOTPLT64, we'd normally want a PLT section, but since
1248 // we know this is a local symbol, no PLT is needed.
1252 case elfcpp::R_X86_64_COPY
:
1253 case elfcpp::R_X86_64_GLOB_DAT
:
1254 case elfcpp::R_X86_64_JUMP_SLOT
:
1255 case elfcpp::R_X86_64_RELATIVE
:
1256 // These are outstanding tls relocs, which are unexpected when linking
1257 case elfcpp::R_X86_64_TPOFF64
:
1258 case elfcpp::R_X86_64_DTPMOD64
:
1259 case elfcpp::R_X86_64_TLSDESC
:
1260 gold_error(_("%s: unexpected reloc %u in object file"),
1261 object
->name().c_str(), r_type
);
1264 // These are initial tls relocs, which are expected when linking
1265 case elfcpp::R_X86_64_TLSGD
: // Global-dynamic
1266 case elfcpp::R_X86_64_GOTPC32_TLSDESC
: // Global-dynamic (from ~oliva url)
1267 case elfcpp::R_X86_64_TLSDESC_CALL
:
1268 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
1269 case elfcpp::R_X86_64_DTPOFF32
:
1270 case elfcpp::R_X86_64_DTPOFF64
:
1271 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
1272 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
1274 bool output_is_shared
= parameters
->options().shared();
1275 const tls::Tls_optimization optimized_type
1276 = Target_x86_64::optimize_tls_reloc(!output_is_shared
, r_type
);
1279 case elfcpp::R_X86_64_TLSGD
: // General-dynamic
1280 if (optimized_type
== tls::TLSOPT_NONE
)
1282 // Create a pair of GOT entries for the module index and
1283 // dtv-relative offset.
1284 Output_data_got
<64, false>* got
1285 = target
->got_section(symtab
, layout
);
1286 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1287 unsigned int shndx
= lsym
.get_st_shndx();
1289 shndx
= object
->adjust_sym_shndx(r_sym
, shndx
, &is_ordinary
);
1291 object
->error(_("local symbol %u has bad shndx %u"),
1294 got
->add_local_pair_with_rela(object
, r_sym
,
1297 target
->rela_dyn_section(layout
),
1298 elfcpp::R_X86_64_DTPMOD64
, 0);
1300 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1301 unsupported_reloc_local(object
, r_type
);
1304 case elfcpp::R_X86_64_GOTPC32_TLSDESC
:
1305 target
->define_tls_base_symbol(symtab
, layout
);
1306 if (optimized_type
== tls::TLSOPT_NONE
)
1308 // Create reserved PLT and GOT entries for the resolver.
1309 target
->reserve_tlsdesc_entries(symtab
, layout
);
1311 // Generate a double GOT entry with an R_X86_64_TLSDESC reloc.
1312 Output_data_got
<64, false>* got
1313 = target
->got_section(symtab
, layout
);
1314 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1315 if (!object
->local_has_got_offset(r_sym
, GOT_TYPE_TLS_DESC
))
1317 unsigned int got_offset
= got
->add_constant(0);
1318 got
->add_constant(0);
1319 object
->set_local_got_offset(r_sym
, GOT_TYPE_TLS_DESC
,
1321 Reloc_section
* rt
= target
->rela_tlsdesc_section(layout
);
1322 // We store the arguments we need in a vector, and
1323 // use the index into the vector as the parameter
1324 // to pass to the target specific routines.
1325 uintptr_t intarg
= target
->add_tlsdesc_info(object
, r_sym
);
1326 void* arg
= reinterpret_cast<void*>(intarg
);
1327 rt
->add_target_specific(elfcpp::R_X86_64_TLSDESC
, arg
,
1328 got
, got_offset
, 0);
1331 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1332 unsupported_reloc_local(object
, r_type
);
1335 case elfcpp::R_X86_64_TLSDESC_CALL
:
1338 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
1339 if (optimized_type
== tls::TLSOPT_NONE
)
1341 // Create a GOT entry for the module index.
1342 target
->got_mod_index_entry(symtab
, layout
, object
);
1344 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1345 unsupported_reloc_local(object
, r_type
);
1348 case elfcpp::R_X86_64_DTPOFF32
:
1349 case elfcpp::R_X86_64_DTPOFF64
:
1352 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
1353 layout
->set_has_static_tls();
1354 if (optimized_type
== tls::TLSOPT_NONE
)
1356 // Create a GOT entry for the tp-relative offset.
1357 Output_data_got
<64, false>* got
1358 = target
->got_section(symtab
, layout
);
1359 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(reloc
.get_r_info());
1360 got
->add_local_with_rela(object
, r_sym
, GOT_TYPE_TLS_OFFSET
,
1361 target
->rela_dyn_section(layout
),
1362 elfcpp::R_X86_64_TPOFF64
);
1364 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1365 unsupported_reloc_local(object
, r_type
);
1368 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
1369 layout
->set_has_static_tls();
1370 if (output_is_shared
)
1371 unsupported_reloc_local(object
, r_type
);
1380 case elfcpp::R_X86_64_SIZE32
:
1381 case elfcpp::R_X86_64_SIZE64
:
1383 gold_error(_("%s: unsupported reloc %u against local symbol"),
1384 object
->name().c_str(), r_type
);
1390 // Report an unsupported relocation against a global symbol.
1393 Target_x86_64::Scan::unsupported_reloc_global(Sized_relobj
<64, false>* object
,
1394 unsigned int r_type
,
1397 gold_error(_("%s: unsupported reloc %u against global symbol %s"),
1398 object
->name().c_str(), r_type
, gsym
->demangled_name().c_str());
1401 // Returns true if this relocation type could be that of a function pointer.
1403 Target_x86_64::Scan::possible_function_pointer_reloc(unsigned int r_type
)
1407 case elfcpp::R_X86_64_64
:
1408 case elfcpp::R_X86_64_32
:
1409 case elfcpp::R_X86_64_32S
:
1410 case elfcpp::R_X86_64_16
:
1411 case elfcpp::R_X86_64_8
:
1412 case elfcpp::R_X86_64_GOT64
:
1413 case elfcpp::R_X86_64_GOT32
:
1414 case elfcpp::R_X86_64_GOTPCREL64
:
1415 case elfcpp::R_X86_64_GOTPCREL
:
1416 case elfcpp::R_X86_64_GOTPLT64
:
1424 // For safe ICF, scan a relocation for a local symbol to check if it
1425 // corresponds to a function pointer being taken. In that case mark
1426 // the function whose pointer was taken as not foldable.
1429 Target_x86_64::Scan::local_reloc_may_be_function_pointer(
1433 Sized_relobj
<64, false>* ,
1436 const elfcpp::Rela
<64, false>& ,
1437 unsigned int r_type
,
1438 const elfcpp::Sym
<64, false>&)
1440 // When building a shared library, do not fold any local symbols as it is
1441 // not possible to distinguish pointer taken versus a call by looking at
1442 // the relocation types.
1443 return (parameters
->options().shared()
1444 || possible_function_pointer_reloc(r_type
));
1447 // For safe ICF, scan a relocation for a global symbol to check if it
1448 // corresponds to a function pointer being taken. In that case mark
1449 // the function whose pointer was taken as not foldable.
1452 Target_x86_64::Scan::global_reloc_may_be_function_pointer(
1456 Sized_relobj
<64, false>* ,
1459 const elfcpp::Rela
<64, false>& ,
1460 unsigned int r_type
,
1463 // When building a shared library, do not fold symbols whose visibility
1464 // is hidden, internal or protected.
1465 return ((parameters
->options().shared()
1466 && (gsym
->visibility() == elfcpp::STV_INTERNAL
1467 || gsym
->visibility() == elfcpp::STV_PROTECTED
1468 || gsym
->visibility() == elfcpp::STV_HIDDEN
))
1469 || possible_function_pointer_reloc(r_type
));
1472 // Scan a relocation for a global symbol.
1475 Target_x86_64::Scan::global(Symbol_table
* symtab
,
1477 Target_x86_64
* target
,
1478 Sized_relobj
<64, false>* object
,
1479 unsigned int data_shndx
,
1480 Output_section
* output_section
,
1481 const elfcpp::Rela
<64, false>& reloc
,
1482 unsigned int r_type
,
1487 case elfcpp::R_X86_64_NONE
:
1488 case elfcpp::R_386_GNU_VTINHERIT
:
1489 case elfcpp::R_386_GNU_VTENTRY
:
1492 case elfcpp::R_X86_64_64
:
1493 case elfcpp::R_X86_64_32
:
1494 case elfcpp::R_X86_64_32S
:
1495 case elfcpp::R_X86_64_16
:
1496 case elfcpp::R_X86_64_8
:
1498 // Make a PLT entry if necessary.
1499 if (gsym
->needs_plt_entry())
1501 target
->make_plt_entry(symtab
, layout
, gsym
);
1502 // Since this is not a PC-relative relocation, we may be
1503 // taking the address of a function. In that case we need to
1504 // set the entry in the dynamic symbol table to the address of
1506 if (gsym
->is_from_dynobj() && !parameters
->options().shared())
1507 gsym
->set_needs_dynsym_value();
1509 // Make a dynamic relocation if necessary.
1510 if (gsym
->needs_dynamic_reloc(Symbol::ABSOLUTE_REF
))
1512 if (gsym
->may_need_copy_reloc())
1514 target
->copy_reloc(symtab
, layout
, object
,
1515 data_shndx
, output_section
, gsym
, reloc
);
1517 else if (r_type
== elfcpp::R_X86_64_64
1518 && gsym
->can_use_relative_reloc(false))
1520 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1521 rela_dyn
->add_global_relative(gsym
, elfcpp::R_X86_64_RELATIVE
,
1522 output_section
, object
,
1523 data_shndx
, reloc
.get_r_offset(),
1524 reloc
.get_r_addend());
1528 this->check_non_pic(object
, r_type
);
1529 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1530 rela_dyn
->add_global(gsym
, r_type
, output_section
, object
,
1531 data_shndx
, reloc
.get_r_offset(),
1532 reloc
.get_r_addend());
1538 case elfcpp::R_X86_64_PC64
:
1539 case elfcpp::R_X86_64_PC32
:
1540 case elfcpp::R_X86_64_PC16
:
1541 case elfcpp::R_X86_64_PC8
:
1543 // Make a PLT entry if necessary.
1544 if (gsym
->needs_plt_entry())
1545 target
->make_plt_entry(symtab
, layout
, gsym
);
1546 // Make a dynamic relocation if necessary.
1547 int flags
= Symbol::NON_PIC_REF
;
1548 if (gsym
->is_func())
1549 flags
|= Symbol::FUNCTION_CALL
;
1550 if (gsym
->needs_dynamic_reloc(flags
))
1552 if (gsym
->may_need_copy_reloc())
1554 target
->copy_reloc(symtab
, layout
, object
,
1555 data_shndx
, output_section
, gsym
, reloc
);
1559 this->check_non_pic(object
, r_type
);
1560 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1561 rela_dyn
->add_global(gsym
, r_type
, output_section
, object
,
1562 data_shndx
, reloc
.get_r_offset(),
1563 reloc
.get_r_addend());
1569 case elfcpp::R_X86_64_GOT64
:
1570 case elfcpp::R_X86_64_GOT32
:
1571 case elfcpp::R_X86_64_GOTPCREL64
:
1572 case elfcpp::R_X86_64_GOTPCREL
:
1573 case elfcpp::R_X86_64_GOTPLT64
:
1575 // The symbol requires a GOT entry.
1576 Output_data_got
<64, false>* got
= target
->got_section(symtab
, layout
);
1577 if (gsym
->final_value_is_known())
1578 got
->add_global(gsym
, GOT_TYPE_STANDARD
);
1581 // If this symbol is not fully resolved, we need to add a
1582 // dynamic relocation for it.
1583 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
1584 if (gsym
->is_from_dynobj()
1585 || gsym
->is_undefined()
1586 || gsym
->is_preemptible())
1587 got
->add_global_with_rela(gsym
, GOT_TYPE_STANDARD
, rela_dyn
,
1588 elfcpp::R_X86_64_GLOB_DAT
);
1591 if (got
->add_global(gsym
, GOT_TYPE_STANDARD
))
1592 rela_dyn
->add_global_relative(
1593 gsym
, elfcpp::R_X86_64_RELATIVE
, got
,
1594 gsym
->got_offset(GOT_TYPE_STANDARD
), 0);
1597 // For GOTPLT64, we also need a PLT entry (but only if the
1598 // symbol is not fully resolved).
1599 if (r_type
== elfcpp::R_X86_64_GOTPLT64
1600 && !gsym
->final_value_is_known())
1601 target
->make_plt_entry(symtab
, layout
, gsym
);
1605 case elfcpp::R_X86_64_PLT32
:
1606 // If the symbol is fully resolved, this is just a PC32 reloc.
1607 // Otherwise we need a PLT entry.
1608 if (gsym
->final_value_is_known())
1610 // If building a shared library, we can also skip the PLT entry
1611 // if the symbol is defined in the output file and is protected
1613 if (gsym
->is_defined()
1614 && !gsym
->is_from_dynobj()
1615 && !gsym
->is_preemptible())
1617 target
->make_plt_entry(symtab
, layout
, gsym
);
1620 case elfcpp::R_X86_64_GOTPC32
:
1621 case elfcpp::R_X86_64_GOTOFF64
:
1622 case elfcpp::R_X86_64_GOTPC64
:
1623 case elfcpp::R_X86_64_PLTOFF64
:
1624 // We need a GOT section.
1625 target
->got_section(symtab
, layout
);
1626 // For PLTOFF64, we also need a PLT entry (but only if the
1627 // symbol is not fully resolved).
1628 if (r_type
== elfcpp::R_X86_64_PLTOFF64
1629 && !gsym
->final_value_is_known())
1630 target
->make_plt_entry(symtab
, layout
, gsym
);
1633 case elfcpp::R_X86_64_COPY
:
1634 case elfcpp::R_X86_64_GLOB_DAT
:
1635 case elfcpp::R_X86_64_JUMP_SLOT
:
1636 case elfcpp::R_X86_64_RELATIVE
:
1637 // These are outstanding tls relocs, which are unexpected when linking
1638 case elfcpp::R_X86_64_TPOFF64
:
1639 case elfcpp::R_X86_64_DTPMOD64
:
1640 case elfcpp::R_X86_64_TLSDESC
:
1641 gold_error(_("%s: unexpected reloc %u in object file"),
1642 object
->name().c_str(), r_type
);
1645 // These are initial tls relocs, which are expected for global()
1646 case elfcpp::R_X86_64_TLSGD
: // Global-dynamic
1647 case elfcpp::R_X86_64_GOTPC32_TLSDESC
: // Global-dynamic (from ~oliva url)
1648 case elfcpp::R_X86_64_TLSDESC_CALL
:
1649 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
1650 case elfcpp::R_X86_64_DTPOFF32
:
1651 case elfcpp::R_X86_64_DTPOFF64
:
1652 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
1653 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
1655 const bool is_final
= gsym
->final_value_is_known();
1656 const tls::Tls_optimization optimized_type
1657 = Target_x86_64::optimize_tls_reloc(is_final
, r_type
);
1660 case elfcpp::R_X86_64_TLSGD
: // General-dynamic
1661 if (optimized_type
== tls::TLSOPT_NONE
)
1663 // Create a pair of GOT entries for the module index and
1664 // dtv-relative offset.
1665 Output_data_got
<64, false>* got
1666 = target
->got_section(symtab
, layout
);
1667 got
->add_global_pair_with_rela(gsym
, GOT_TYPE_TLS_PAIR
,
1668 target
->rela_dyn_section(layout
),
1669 elfcpp::R_X86_64_DTPMOD64
,
1670 elfcpp::R_X86_64_DTPOFF64
);
1672 else if (optimized_type
== tls::TLSOPT_TO_IE
)
1674 // Create a GOT entry for the tp-relative offset.
1675 Output_data_got
<64, false>* got
1676 = target
->got_section(symtab
, layout
);
1677 got
->add_global_with_rela(gsym
, GOT_TYPE_TLS_OFFSET
,
1678 target
->rela_dyn_section(layout
),
1679 elfcpp::R_X86_64_TPOFF64
);
1681 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1682 unsupported_reloc_global(object
, r_type
, gsym
);
1685 case elfcpp::R_X86_64_GOTPC32_TLSDESC
:
1686 target
->define_tls_base_symbol(symtab
, layout
);
1687 if (optimized_type
== tls::TLSOPT_NONE
)
1689 // Create reserved PLT and GOT entries for the resolver.
1690 target
->reserve_tlsdesc_entries(symtab
, layout
);
1692 // Create a double GOT entry with an R_X86_64_TLSDESC reloc.
1693 Output_data_got
<64, false>* got
1694 = target
->got_section(symtab
, layout
);
1695 Reloc_section
*rt
= target
->rela_tlsdesc_section(layout
);
1696 got
->add_global_pair_with_rela(gsym
, GOT_TYPE_TLS_DESC
, rt
,
1697 elfcpp::R_X86_64_TLSDESC
, 0);
1699 else if (optimized_type
== tls::TLSOPT_TO_IE
)
1701 // Create a GOT entry for the tp-relative offset.
1702 Output_data_got
<64, false>* got
1703 = target
->got_section(symtab
, layout
);
1704 got
->add_global_with_rela(gsym
, GOT_TYPE_TLS_OFFSET
,
1705 target
->rela_dyn_section(layout
),
1706 elfcpp::R_X86_64_TPOFF64
);
1708 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1709 unsupported_reloc_global(object
, r_type
, gsym
);
1712 case elfcpp::R_X86_64_TLSDESC_CALL
:
1715 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
1716 if (optimized_type
== tls::TLSOPT_NONE
)
1718 // Create a GOT entry for the module index.
1719 target
->got_mod_index_entry(symtab
, layout
, object
);
1721 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1722 unsupported_reloc_global(object
, r_type
, gsym
);
1725 case elfcpp::R_X86_64_DTPOFF32
:
1726 case elfcpp::R_X86_64_DTPOFF64
:
1729 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
1730 layout
->set_has_static_tls();
1731 if (optimized_type
== tls::TLSOPT_NONE
)
1733 // Create a GOT entry for the tp-relative offset.
1734 Output_data_got
<64, false>* got
1735 = target
->got_section(symtab
, layout
);
1736 got
->add_global_with_rela(gsym
, GOT_TYPE_TLS_OFFSET
,
1737 target
->rela_dyn_section(layout
),
1738 elfcpp::R_X86_64_TPOFF64
);
1740 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1741 unsupported_reloc_global(object
, r_type
, gsym
);
1744 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
1745 layout
->set_has_static_tls();
1746 if (parameters
->options().shared())
1747 unsupported_reloc_local(object
, r_type
);
1756 case elfcpp::R_X86_64_SIZE32
:
1757 case elfcpp::R_X86_64_SIZE64
:
1759 gold_error(_("%s: unsupported reloc %u against global symbol %s"),
1760 object
->name().c_str(), r_type
,
1761 gsym
->demangled_name().c_str());
1767 Target_x86_64::gc_process_relocs(Symbol_table
* symtab
,
1769 Sized_relobj
<64, false>* object
,
1770 unsigned int data_shndx
,
1771 unsigned int sh_type
,
1772 const unsigned char* prelocs
,
1774 Output_section
* output_section
,
1775 bool needs_special_offset_handling
,
1776 size_t local_symbol_count
,
1777 const unsigned char* plocal_symbols
)
1780 if (sh_type
== elfcpp::SHT_REL
)
1785 gold::gc_process_relocs
<64, false, Target_x86_64
, elfcpp::SHT_RELA
,
1786 Target_x86_64::Scan
>(
1795 needs_special_offset_handling
,
1800 // Scan relocations for a section.
1803 Target_x86_64::scan_relocs(Symbol_table
* symtab
,
1805 Sized_relobj
<64, false>* object
,
1806 unsigned int data_shndx
,
1807 unsigned int sh_type
,
1808 const unsigned char* prelocs
,
1810 Output_section
* output_section
,
1811 bool needs_special_offset_handling
,
1812 size_t local_symbol_count
,
1813 const unsigned char* plocal_symbols
)
1815 if (sh_type
== elfcpp::SHT_REL
)
1817 gold_error(_("%s: unsupported REL reloc section"),
1818 object
->name().c_str());
1822 gold::scan_relocs
<64, false, Target_x86_64
, elfcpp::SHT_RELA
,
1823 Target_x86_64::Scan
>(
1832 needs_special_offset_handling
,
1837 // Finalize the sections.
1840 Target_x86_64::do_finalize_sections(
1842 const Input_objects
*,
1843 Symbol_table
* symtab
)
1845 const Reloc_section
* rel_plt
= (this->plt_
== NULL
1847 : this->plt_
->rela_plt());
1848 layout
->add_target_dynamic_tags(false, this->got_plt_
, rel_plt
,
1849 this->rela_dyn_
, true, false);
1851 // Fill in some more dynamic tags.
1852 Output_data_dynamic
* const odyn
= layout
->dynamic_data();
1855 if (this->plt_
!= NULL
1856 && this->plt_
->output_section() != NULL
1857 && this->plt_
->has_tlsdesc_entry())
1859 unsigned int plt_offset
= this->plt_
->get_tlsdesc_plt_offset();
1860 unsigned int got_offset
= this->plt_
->get_tlsdesc_got_offset();
1861 this->got_
->finalize_data_size();
1862 odyn
->add_section_plus_offset(elfcpp::DT_TLSDESC_PLT
,
1863 this->plt_
, plt_offset
);
1864 odyn
->add_section_plus_offset(elfcpp::DT_TLSDESC_GOT
,
1865 this->got_
, got_offset
);
1869 // Emit any relocs we saved in an attempt to avoid generating COPY
1871 if (this->copy_relocs_
.any_saved_relocs())
1872 this->copy_relocs_
.emit(this->rela_dyn_section(layout
));
1874 // Set the size of the _GLOBAL_OFFSET_TABLE_ symbol to the size of
1875 // the .got.plt section.
1876 Symbol
* sym
= this->global_offset_table_
;
1879 uint64_t data_size
= this->got_plt_
->current_data_size();
1880 symtab
->get_sized_symbol
<64>(sym
)->set_symsize(data_size
);
1884 // Perform a relocation.
1887 Target_x86_64::Relocate::relocate(const Relocate_info
<64, false>* relinfo
,
1888 Target_x86_64
* target
,
1891 const elfcpp::Rela
<64, false>& rela
,
1892 unsigned int r_type
,
1893 const Sized_symbol
<64>* gsym
,
1894 const Symbol_value
<64>* psymval
,
1895 unsigned char* view
,
1896 elfcpp::Elf_types
<64>::Elf_Addr address
,
1897 section_size_type view_size
)
1899 if (this->skip_call_tls_get_addr_
)
1901 if ((r_type
!= elfcpp::R_X86_64_PLT32
1902 && r_type
!= elfcpp::R_X86_64_PC32
)
1904 || strcmp(gsym
->name(), "__tls_get_addr") != 0)
1906 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
1907 _("missing expected TLS relocation"));
1911 this->skip_call_tls_get_addr_
= false;
1916 // Pick the value to use for symbols defined in shared objects.
1917 Symbol_value
<64> symval
;
1919 && gsym
->use_plt_offset(r_type
== elfcpp::R_X86_64_PC64
1920 || r_type
== elfcpp::R_X86_64_PC32
1921 || r_type
== elfcpp::R_X86_64_PC16
1922 || r_type
== elfcpp::R_X86_64_PC8
))
1924 symval
.set_output_value(target
->plt_section()->address()
1925 + gsym
->plt_offset());
1929 const Sized_relobj
<64, false>* object
= relinfo
->object
;
1930 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
1932 // Get the GOT offset if needed.
1933 // The GOT pointer points to the end of the GOT section.
1934 // We need to subtract the size of the GOT section to get
1935 // the actual offset to use in the relocation.
1936 bool have_got_offset
= false;
1937 unsigned int got_offset
= 0;
1940 case elfcpp::R_X86_64_GOT32
:
1941 case elfcpp::R_X86_64_GOT64
:
1942 case elfcpp::R_X86_64_GOTPLT64
:
1943 case elfcpp::R_X86_64_GOTPCREL
:
1944 case elfcpp::R_X86_64_GOTPCREL64
:
1947 gold_assert(gsym
->has_got_offset(GOT_TYPE_STANDARD
));
1948 got_offset
= gsym
->got_offset(GOT_TYPE_STANDARD
) - target
->got_size();
1952 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(rela
.get_r_info());
1953 gold_assert(object
->local_has_got_offset(r_sym
, GOT_TYPE_STANDARD
));
1954 got_offset
= (object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
)
1955 - target
->got_size());
1957 have_got_offset
= true;
1966 case elfcpp::R_X86_64_NONE
:
1967 case elfcpp::R_386_GNU_VTINHERIT
:
1968 case elfcpp::R_386_GNU_VTENTRY
:
1971 case elfcpp::R_X86_64_64
:
1972 Relocate_functions
<64, false>::rela64(view
, object
, psymval
, addend
);
1975 case elfcpp::R_X86_64_PC64
:
1976 Relocate_functions
<64, false>::pcrela64(view
, object
, psymval
, addend
,
1980 case elfcpp::R_X86_64_32
:
1981 // FIXME: we need to verify that value + addend fits into 32 bits:
1982 // uint64_t x = value + addend;
1983 // x == static_cast<uint64_t>(static_cast<uint32_t>(x))
1984 // Likewise for other <=32-bit relocations (but see R_X86_64_32S).
1985 Relocate_functions
<64, false>::rela32(view
, object
, psymval
, addend
);
1988 case elfcpp::R_X86_64_32S
:
1989 // FIXME: we need to verify that value + addend fits into 32 bits:
1990 // int64_t x = value + addend; // note this quantity is signed!
1991 // x == static_cast<int64_t>(static_cast<int32_t>(x))
1992 Relocate_functions
<64, false>::rela32(view
, object
, psymval
, addend
);
1995 case elfcpp::R_X86_64_PC32
:
1996 Relocate_functions
<64, false>::pcrela32(view
, object
, psymval
, addend
,
2000 case elfcpp::R_X86_64_16
:
2001 Relocate_functions
<64, false>::rela16(view
, object
, psymval
, addend
);
2004 case elfcpp::R_X86_64_PC16
:
2005 Relocate_functions
<64, false>::pcrela16(view
, object
, psymval
, addend
,
2009 case elfcpp::R_X86_64_8
:
2010 Relocate_functions
<64, false>::rela8(view
, object
, psymval
, addend
);
2013 case elfcpp::R_X86_64_PC8
:
2014 Relocate_functions
<64, false>::pcrela8(view
, object
, psymval
, addend
,
2018 case elfcpp::R_X86_64_PLT32
:
2019 gold_assert(gsym
== NULL
2020 || gsym
->has_plt_offset()
2021 || gsym
->final_value_is_known()
2022 || (gsym
->is_defined()
2023 && !gsym
->is_from_dynobj()
2024 && !gsym
->is_preemptible()));
2025 // Note: while this code looks the same as for R_X86_64_PC32, it
2026 // behaves differently because psymval was set to point to
2027 // the PLT entry, rather than the symbol, in Scan::global().
2028 Relocate_functions
<64, false>::pcrela32(view
, object
, psymval
, addend
,
2032 case elfcpp::R_X86_64_PLTOFF64
:
2035 gold_assert(gsym
->has_plt_offset()
2036 || gsym
->final_value_is_known());
2037 elfcpp::Elf_types
<64>::Elf_Addr got_address
;
2038 got_address
= target
->got_section(NULL
, NULL
)->address();
2039 Relocate_functions
<64, false>::rela64(view
, object
, psymval
,
2040 addend
- got_address
);
2043 case elfcpp::R_X86_64_GOT32
:
2044 gold_assert(have_got_offset
);
2045 Relocate_functions
<64, false>::rela32(view
, got_offset
, addend
);
2048 case elfcpp::R_X86_64_GOTPC32
:
2051 elfcpp::Elf_types
<64>::Elf_Addr value
;
2052 value
= target
->got_plt_section()->address();
2053 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
, address
);
2057 case elfcpp::R_X86_64_GOT64
:
2058 // The ABI doc says "Like GOT64, but indicates a PLT entry is needed."
2059 // Since we always add a PLT entry, this is equivalent.
2060 case elfcpp::R_X86_64_GOTPLT64
:
2061 gold_assert(have_got_offset
);
2062 Relocate_functions
<64, false>::rela64(view
, got_offset
, addend
);
2065 case elfcpp::R_X86_64_GOTPC64
:
2068 elfcpp::Elf_types
<64>::Elf_Addr value
;
2069 value
= target
->got_plt_section()->address();
2070 Relocate_functions
<64, false>::pcrela64(view
, value
, addend
, address
);
2074 case elfcpp::R_X86_64_GOTOFF64
:
2076 elfcpp::Elf_types
<64>::Elf_Addr value
;
2077 value
= (psymval
->value(object
, 0)
2078 - target
->got_plt_section()->address());
2079 Relocate_functions
<64, false>::rela64(view
, value
, addend
);
2083 case elfcpp::R_X86_64_GOTPCREL
:
2085 gold_assert(have_got_offset
);
2086 elfcpp::Elf_types
<64>::Elf_Addr value
;
2087 value
= target
->got_plt_section()->address() + got_offset
;
2088 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
, address
);
2092 case elfcpp::R_X86_64_GOTPCREL64
:
2094 gold_assert(have_got_offset
);
2095 elfcpp::Elf_types
<64>::Elf_Addr value
;
2096 value
= target
->got_plt_section()->address() + got_offset
;
2097 Relocate_functions
<64, false>::pcrela64(view
, value
, addend
, address
);
2101 case elfcpp::R_X86_64_COPY
:
2102 case elfcpp::R_X86_64_GLOB_DAT
:
2103 case elfcpp::R_X86_64_JUMP_SLOT
:
2104 case elfcpp::R_X86_64_RELATIVE
:
2105 // These are outstanding tls relocs, which are unexpected when linking
2106 case elfcpp::R_X86_64_TPOFF64
:
2107 case elfcpp::R_X86_64_DTPMOD64
:
2108 case elfcpp::R_X86_64_TLSDESC
:
2109 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2110 _("unexpected reloc %u in object file"),
2114 // These are initial tls relocs, which are expected when linking
2115 case elfcpp::R_X86_64_TLSGD
: // Global-dynamic
2116 case elfcpp::R_X86_64_GOTPC32_TLSDESC
: // Global-dynamic (from ~oliva url)
2117 case elfcpp::R_X86_64_TLSDESC_CALL
:
2118 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
2119 case elfcpp::R_X86_64_DTPOFF32
:
2120 case elfcpp::R_X86_64_DTPOFF64
:
2121 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
2122 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
2123 this->relocate_tls(relinfo
, target
, relnum
, rela
, r_type
, gsym
, psymval
,
2124 view
, address
, view_size
);
2127 case elfcpp::R_X86_64_SIZE32
:
2128 case elfcpp::R_X86_64_SIZE64
:
2130 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2131 _("unsupported reloc %u"),
2139 // Perform a TLS relocation.
2142 Target_x86_64::Relocate::relocate_tls(const Relocate_info
<64, false>* relinfo
,
2143 Target_x86_64
* target
,
2145 const elfcpp::Rela
<64, false>& rela
,
2146 unsigned int r_type
,
2147 const Sized_symbol
<64>* gsym
,
2148 const Symbol_value
<64>* psymval
,
2149 unsigned char* view
,
2150 elfcpp::Elf_types
<64>::Elf_Addr address
,
2151 section_size_type view_size
)
2153 Output_segment
* tls_segment
= relinfo
->layout
->tls_segment();
2155 const Sized_relobj
<64, false>* object
= relinfo
->object
;
2156 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
2158 elfcpp::Elf_types
<64>::Elf_Addr value
= psymval
->value(relinfo
->object
, 0);
2160 const bool is_final
= (gsym
== NULL
2161 ? !parameters
->options().shared()
2162 : gsym
->final_value_is_known());
2163 const tls::Tls_optimization optimized_type
2164 = Target_x86_64::optimize_tls_reloc(is_final
, r_type
);
2167 case elfcpp::R_X86_64_TLSGD
: // Global-dynamic
2168 this->saw_tls_block_reloc_
= true;
2169 if (optimized_type
== tls::TLSOPT_TO_LE
)
2171 gold_assert(tls_segment
!= NULL
);
2172 this->tls_gd_to_le(relinfo
, relnum
, tls_segment
,
2173 rela
, r_type
, value
, view
,
2179 unsigned int got_type
= (optimized_type
== tls::TLSOPT_TO_IE
2180 ? GOT_TYPE_TLS_OFFSET
2181 : GOT_TYPE_TLS_PAIR
);
2182 unsigned int got_offset
;
2185 gold_assert(gsym
->has_got_offset(got_type
));
2186 got_offset
= gsym
->got_offset(got_type
) - target
->got_size();
2190 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(rela
.get_r_info());
2191 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
2192 got_offset
= (object
->local_got_offset(r_sym
, got_type
)
2193 - target
->got_size());
2195 if (optimized_type
== tls::TLSOPT_TO_IE
)
2197 gold_assert(tls_segment
!= NULL
);
2198 value
= target
->got_plt_section()->address() + got_offset
;
2199 this->tls_gd_to_ie(relinfo
, relnum
, tls_segment
, rela
, r_type
,
2200 value
, view
, address
, view_size
);
2203 else if (optimized_type
== tls::TLSOPT_NONE
)
2205 // Relocate the field with the offset of the pair of GOT
2207 value
= target
->got_plt_section()->address() + got_offset
;
2208 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
,
2213 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2214 _("unsupported reloc %u"), r_type
);
2217 case elfcpp::R_X86_64_GOTPC32_TLSDESC
: // Global-dynamic (from ~oliva url)
2218 case elfcpp::R_X86_64_TLSDESC_CALL
:
2219 this->saw_tls_block_reloc_
= true;
2220 if (optimized_type
== tls::TLSOPT_TO_LE
)
2222 gold_assert(tls_segment
!= NULL
);
2223 this->tls_desc_gd_to_le(relinfo
, relnum
, tls_segment
,
2224 rela
, r_type
, value
, view
,
2230 unsigned int got_type
= (optimized_type
== tls::TLSOPT_TO_IE
2231 ? GOT_TYPE_TLS_OFFSET
2232 : GOT_TYPE_TLS_DESC
);
2233 unsigned int got_offset
;
2236 gold_assert(gsym
->has_got_offset(got_type
));
2237 got_offset
= gsym
->got_offset(got_type
) - target
->got_size();
2241 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(rela
.get_r_info());
2242 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
2243 got_offset
= (object
->local_got_offset(r_sym
, got_type
)
2244 - target
->got_size());
2246 if (optimized_type
== tls::TLSOPT_TO_IE
)
2248 gold_assert(tls_segment
!= NULL
);
2249 value
= target
->got_plt_section()->address() + got_offset
;
2250 this->tls_desc_gd_to_ie(relinfo
, relnum
, tls_segment
,
2251 rela
, r_type
, value
, view
, address
,
2255 else if (optimized_type
== tls::TLSOPT_NONE
)
2257 if (r_type
== elfcpp::R_X86_64_GOTPC32_TLSDESC
)
2259 // Relocate the field with the offset of the pair of GOT
2261 value
= target
->got_plt_section()->address() + got_offset
;
2262 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
,
2268 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2269 _("unsupported reloc %u"), r_type
);
2272 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
2273 this->saw_tls_block_reloc_
= true;
2274 if (optimized_type
== tls::TLSOPT_TO_LE
)
2276 gold_assert(tls_segment
!= NULL
);
2277 this->tls_ld_to_le(relinfo
, relnum
, tls_segment
, rela
, r_type
,
2278 value
, view
, view_size
);
2281 else if (optimized_type
== tls::TLSOPT_NONE
)
2283 // Relocate the field with the offset of the GOT entry for
2284 // the module index.
2285 unsigned int got_offset
;
2286 got_offset
= (target
->got_mod_index_entry(NULL
, NULL
, NULL
)
2287 - target
->got_size());
2288 value
= target
->got_plt_section()->address() + got_offset
;
2289 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
,
2293 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2294 _("unsupported reloc %u"), r_type
);
2297 case elfcpp::R_X86_64_DTPOFF32
:
2298 if (optimized_type
== tls::TLSOPT_TO_LE
)
2300 // This relocation type is used in debugging information.
2301 // In that case we need to not optimize the value. If we
2302 // haven't seen a TLSLD reloc, then we assume we should not
2303 // optimize this reloc.
2304 if (this->saw_tls_block_reloc_
)
2306 gold_assert(tls_segment
!= NULL
);
2307 value
-= tls_segment
->memsz();
2310 Relocate_functions
<64, false>::rela32(view
, value
, addend
);
2313 case elfcpp::R_X86_64_DTPOFF64
:
2314 if (optimized_type
== tls::TLSOPT_TO_LE
)
2316 // See R_X86_64_DTPOFF32, just above, for why we test this.
2317 if (this->saw_tls_block_reloc_
)
2319 gold_assert(tls_segment
!= NULL
);
2320 value
-= tls_segment
->memsz();
2323 Relocate_functions
<64, false>::rela64(view
, value
, addend
);
2326 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
2327 if (optimized_type
== tls::TLSOPT_TO_LE
)
2329 gold_assert(tls_segment
!= NULL
);
2330 Target_x86_64::Relocate::tls_ie_to_le(relinfo
, relnum
, tls_segment
,
2331 rela
, r_type
, value
, view
,
2335 else if (optimized_type
== tls::TLSOPT_NONE
)
2337 // Relocate the field with the offset of the GOT entry for
2338 // the tp-relative offset of the symbol.
2339 unsigned int got_offset
;
2342 gold_assert(gsym
->has_got_offset(GOT_TYPE_TLS_OFFSET
));
2343 got_offset
= (gsym
->got_offset(GOT_TYPE_TLS_OFFSET
)
2344 - target
->got_size());
2348 unsigned int r_sym
= elfcpp::elf_r_sym
<64>(rela
.get_r_info());
2349 gold_assert(object
->local_has_got_offset(r_sym
,
2350 GOT_TYPE_TLS_OFFSET
));
2351 got_offset
= (object
->local_got_offset(r_sym
, GOT_TYPE_TLS_OFFSET
)
2352 - target
->got_size());
2354 value
= target
->got_plt_section()->address() + got_offset
;
2355 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
, address
);
2358 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
2359 _("unsupported reloc type %u"),
2363 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
2364 value
-= tls_segment
->memsz();
2365 Relocate_functions
<64, false>::rela32(view
, value
, addend
);
2370 // Do a relocation in which we convert a TLS General-Dynamic to an
2374 Target_x86_64::Relocate::tls_gd_to_ie(const Relocate_info
<64, false>* relinfo
,
2377 const elfcpp::Rela
<64, false>& rela
,
2379 elfcpp::Elf_types
<64>::Elf_Addr value
,
2380 unsigned char* view
,
2381 elfcpp::Elf_types
<64>::Elf_Addr address
,
2382 section_size_type view_size
)
2384 // .byte 0x66; leaq foo@tlsgd(%rip),%rdi;
2385 // .word 0x6666; rex64; call __tls_get_addr
2386 // ==> movq %fs:0,%rax; addq x@gottpoff(%rip),%rax
2388 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -4);
2389 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 12);
2391 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2392 (memcmp(view
- 4, "\x66\x48\x8d\x3d", 4) == 0));
2393 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2394 (memcmp(view
+ 4, "\x66\x66\x48\xe8", 4) == 0));
2396 memcpy(view
- 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x03\x05\0\0\0\0", 16);
2398 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
2399 Relocate_functions
<64, false>::pcrela32(view
+ 8, value
, addend
- 8, address
);
2401 // The next reloc should be a PLT32 reloc against __tls_get_addr.
2403 this->skip_call_tls_get_addr_
= true;
2406 // Do a relocation in which we convert a TLS General-Dynamic to a
2410 Target_x86_64::Relocate::tls_gd_to_le(const Relocate_info
<64, false>* relinfo
,
2412 Output_segment
* tls_segment
,
2413 const elfcpp::Rela
<64, false>& rela
,
2415 elfcpp::Elf_types
<64>::Elf_Addr value
,
2416 unsigned char* view
,
2417 section_size_type view_size
)
2419 // .byte 0x66; leaq foo@tlsgd(%rip),%rdi;
2420 // .word 0x6666; rex64; call __tls_get_addr
2421 // ==> movq %fs:0,%rax; leaq x@tpoff(%rax),%rax
2423 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -4);
2424 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 12);
2426 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2427 (memcmp(view
- 4, "\x66\x48\x8d\x3d", 4) == 0));
2428 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2429 (memcmp(view
+ 4, "\x66\x66\x48\xe8", 4) == 0));
2431 memcpy(view
- 4, "\x64\x48\x8b\x04\x25\0\0\0\0\x48\x8d\x80\0\0\0\0", 16);
2433 value
-= tls_segment
->memsz();
2434 Relocate_functions
<64, false>::rela32(view
+ 8, value
, 0);
2436 // The next reloc should be a PLT32 reloc against __tls_get_addr.
2438 this->skip_call_tls_get_addr_
= true;
2441 // Do a TLSDESC-style General-Dynamic to Initial-Exec transition.
2444 Target_x86_64::Relocate::tls_desc_gd_to_ie(
2445 const Relocate_info
<64, false>* relinfo
,
2448 const elfcpp::Rela
<64, false>& rela
,
2449 unsigned int r_type
,
2450 elfcpp::Elf_types
<64>::Elf_Addr value
,
2451 unsigned char* view
,
2452 elfcpp::Elf_types
<64>::Elf_Addr address
,
2453 section_size_type view_size
)
2455 if (r_type
== elfcpp::R_X86_64_GOTPC32_TLSDESC
)
2457 // leaq foo@tlsdesc(%rip), %rax
2458 // ==> movq foo@gottpoff(%rip), %rax
2459 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -3);
2460 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 4);
2461 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2462 view
[-3] == 0x48 && view
[-2] == 0x8d && view
[-1] == 0x05);
2464 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
2465 Relocate_functions
<64, false>::pcrela32(view
, value
, addend
, address
);
2469 // call *foo@tlscall(%rax)
2471 gold_assert(r_type
== elfcpp::R_X86_64_TLSDESC_CALL
);
2472 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 2);
2473 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2474 view
[0] == 0xff && view
[1] == 0x10);
2480 // Do a TLSDESC-style General-Dynamic to Local-Exec transition.
2483 Target_x86_64::Relocate::tls_desc_gd_to_le(
2484 const Relocate_info
<64, false>* relinfo
,
2486 Output_segment
* tls_segment
,
2487 const elfcpp::Rela
<64, false>& rela
,
2488 unsigned int r_type
,
2489 elfcpp::Elf_types
<64>::Elf_Addr value
,
2490 unsigned char* view
,
2491 section_size_type view_size
)
2493 if (r_type
== elfcpp::R_X86_64_GOTPC32_TLSDESC
)
2495 // leaq foo@tlsdesc(%rip), %rax
2496 // ==> movq foo@tpoff, %rax
2497 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -3);
2498 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 4);
2499 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2500 view
[-3] == 0x48 && view
[-2] == 0x8d && view
[-1] == 0x05);
2503 value
-= tls_segment
->memsz();
2504 Relocate_functions
<64, false>::rela32(view
, value
, 0);
2508 // call *foo@tlscall(%rax)
2510 gold_assert(r_type
== elfcpp::R_X86_64_TLSDESC_CALL
);
2511 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 2);
2512 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2513 view
[0] == 0xff && view
[1] == 0x10);
2520 Target_x86_64::Relocate::tls_ld_to_le(const Relocate_info
<64, false>* relinfo
,
2523 const elfcpp::Rela
<64, false>& rela
,
2525 elfcpp::Elf_types
<64>::Elf_Addr
,
2526 unsigned char* view
,
2527 section_size_type view_size
)
2529 // leaq foo@tlsld(%rip),%rdi; call __tls_get_addr@plt;
2530 // ... leq foo@dtpoff(%rax),%reg
2531 // ==> .word 0x6666; .byte 0x66; movq %fs:0,%rax ... leaq x@tpoff(%rax),%rdx
2533 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -3);
2534 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 9);
2536 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(),
2537 view
[-3] == 0x48 && view
[-2] == 0x8d && view
[-1] == 0x3d);
2539 tls::check_tls(relinfo
, relnum
, rela
.get_r_offset(), view
[4] == 0xe8);
2541 memcpy(view
- 3, "\x66\x66\x66\x64\x48\x8b\x04\x25\0\0\0\0", 12);
2543 // The next reloc should be a PLT32 reloc against __tls_get_addr.
2545 this->skip_call_tls_get_addr_
= true;
2548 // Do a relocation in which we convert a TLS Initial-Exec to a
2552 Target_x86_64::Relocate::tls_ie_to_le(const Relocate_info
<64, false>* relinfo
,
2554 Output_segment
* tls_segment
,
2555 const elfcpp::Rela
<64, false>& rela
,
2557 elfcpp::Elf_types
<64>::Elf_Addr value
,
2558 unsigned char* view
,
2559 section_size_type view_size
)
2561 // We need to examine the opcodes to figure out which instruction we
2564 // movq foo@gottpoff(%rip),%reg ==> movq $YY,%reg
2565 // addq foo@gottpoff(%rip),%reg ==> addq $YY,%reg
2567 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, -3);
2568 tls::check_range(relinfo
, relnum
, rela
.get_r_offset(), view_size
, 4);
2570 unsigned char op1
= view
[-3];
2571 unsigned char op2
= view
[-2];
2572 unsigned char op3
= view
[-1];
2573 unsigned char reg
= op3
>> 3;
2581 view
[-1] = 0xc0 | reg
;
2585 // Special handling for %rsp.
2589 view
[-1] = 0xc0 | reg
;
2597 view
[-1] = 0x80 | reg
| (reg
<< 3);
2600 value
-= tls_segment
->memsz();
2601 Relocate_functions
<64, false>::rela32(view
, value
, 0);
2604 // Relocate section data.
2607 Target_x86_64::relocate_section(
2608 const Relocate_info
<64, false>* relinfo
,
2609 unsigned int sh_type
,
2610 const unsigned char* prelocs
,
2612 Output_section
* output_section
,
2613 bool needs_special_offset_handling
,
2614 unsigned char* view
,
2615 elfcpp::Elf_types
<64>::Elf_Addr address
,
2616 section_size_type view_size
,
2617 const Reloc_symbol_changes
* reloc_symbol_changes
)
2619 gold_assert(sh_type
== elfcpp::SHT_RELA
);
2621 gold::relocate_section
<64, false, Target_x86_64
, elfcpp::SHT_RELA
,
2622 Target_x86_64::Relocate
>(
2628 needs_special_offset_handling
,
2632 reloc_symbol_changes
);
2635 // Return the size of a relocation while scanning during a relocatable
2639 Target_x86_64::Relocatable_size_for_reloc::get_size_for_reloc(
2640 unsigned int r_type
,
2645 case elfcpp::R_X86_64_NONE
:
2646 case elfcpp::R_386_GNU_VTINHERIT
:
2647 case elfcpp::R_386_GNU_VTENTRY
:
2648 case elfcpp::R_X86_64_TLSGD
: // Global-dynamic
2649 case elfcpp::R_X86_64_GOTPC32_TLSDESC
: // Global-dynamic (from ~oliva url)
2650 case elfcpp::R_X86_64_TLSDESC_CALL
:
2651 case elfcpp::R_X86_64_TLSLD
: // Local-dynamic
2652 case elfcpp::R_X86_64_DTPOFF32
:
2653 case elfcpp::R_X86_64_DTPOFF64
:
2654 case elfcpp::R_X86_64_GOTTPOFF
: // Initial-exec
2655 case elfcpp::R_X86_64_TPOFF32
: // Local-exec
2658 case elfcpp::R_X86_64_64
:
2659 case elfcpp::R_X86_64_PC64
:
2660 case elfcpp::R_X86_64_GOTOFF64
:
2661 case elfcpp::R_X86_64_GOTPC64
:
2662 case elfcpp::R_X86_64_PLTOFF64
:
2663 case elfcpp::R_X86_64_GOT64
:
2664 case elfcpp::R_X86_64_GOTPCREL64
:
2665 case elfcpp::R_X86_64_GOTPCREL
:
2666 case elfcpp::R_X86_64_GOTPLT64
:
2669 case elfcpp::R_X86_64_32
:
2670 case elfcpp::R_X86_64_32S
:
2671 case elfcpp::R_X86_64_PC32
:
2672 case elfcpp::R_X86_64_PLT32
:
2673 case elfcpp::R_X86_64_GOTPC32
:
2674 case elfcpp::R_X86_64_GOT32
:
2677 case elfcpp::R_X86_64_16
:
2678 case elfcpp::R_X86_64_PC16
:
2681 case elfcpp::R_X86_64_8
:
2682 case elfcpp::R_X86_64_PC8
:
2685 case elfcpp::R_X86_64_COPY
:
2686 case elfcpp::R_X86_64_GLOB_DAT
:
2687 case elfcpp::R_X86_64_JUMP_SLOT
:
2688 case elfcpp::R_X86_64_RELATIVE
:
2689 // These are outstanding tls relocs, which are unexpected when linking
2690 case elfcpp::R_X86_64_TPOFF64
:
2691 case elfcpp::R_X86_64_DTPMOD64
:
2692 case elfcpp::R_X86_64_TLSDESC
:
2693 object
->error(_("unexpected reloc %u in object file"), r_type
);
2696 case elfcpp::R_X86_64_SIZE32
:
2697 case elfcpp::R_X86_64_SIZE64
:
2699 object
->error(_("unsupported reloc %u against local symbol"), r_type
);
2704 // Scan the relocs during a relocatable link.
2707 Target_x86_64::scan_relocatable_relocs(Symbol_table
* symtab
,
2709 Sized_relobj
<64, false>* object
,
2710 unsigned int data_shndx
,
2711 unsigned int sh_type
,
2712 const unsigned char* prelocs
,
2714 Output_section
* output_section
,
2715 bool needs_special_offset_handling
,
2716 size_t local_symbol_count
,
2717 const unsigned char* plocal_symbols
,
2718 Relocatable_relocs
* rr
)
2720 gold_assert(sh_type
== elfcpp::SHT_RELA
);
2722 typedef gold::Default_scan_relocatable_relocs
<elfcpp::SHT_RELA
,
2723 Relocatable_size_for_reloc
> Scan_relocatable_relocs
;
2725 gold::scan_relocatable_relocs
<64, false, elfcpp::SHT_RELA
,
2726 Scan_relocatable_relocs
>(
2734 needs_special_offset_handling
,
2740 // Relocate a section during a relocatable link.
2743 Target_x86_64::relocate_for_relocatable(
2744 const Relocate_info
<64, false>* relinfo
,
2745 unsigned int sh_type
,
2746 const unsigned char* prelocs
,
2748 Output_section
* output_section
,
2749 off_t offset_in_output_section
,
2750 const Relocatable_relocs
* rr
,
2751 unsigned char* view
,
2752 elfcpp::Elf_types
<64>::Elf_Addr view_address
,
2753 section_size_type view_size
,
2754 unsigned char* reloc_view
,
2755 section_size_type reloc_view_size
)
2757 gold_assert(sh_type
== elfcpp::SHT_RELA
);
2759 gold::relocate_for_relocatable
<64, false, elfcpp::SHT_RELA
>(
2764 offset_in_output_section
,
2773 // Return the value to use for a dynamic which requires special
2774 // treatment. This is how we support equality comparisons of function
2775 // pointers across shared library boundaries, as described in the
2776 // processor specific ABI supplement.
2779 Target_x86_64::do_dynsym_value(const Symbol
* gsym
) const
2781 gold_assert(gsym
->is_from_dynobj() && gsym
->has_plt_offset());
2782 return this->plt_section()->address() + gsym
->plt_offset();
2785 // Return a string used to fill a code section with nops to take up
2786 // the specified length.
2789 Target_x86_64::do_code_fill(section_size_type length
) const
2793 // Build a jmpq instruction to skip over the bytes.
2794 unsigned char jmp
[5];
2796 elfcpp::Swap_unaligned
<32, false>::writeval(jmp
+ 1, length
- 5);
2797 return (std::string(reinterpret_cast<char*>(&jmp
[0]), 5)
2798 + std::string(length
- 5, '\0'));
2801 // Nop sequences of various lengths.
2802 const char nop1
[1] = { 0x90 }; // nop
2803 const char nop2
[2] = { 0x66, 0x90 }; // xchg %ax %ax
2804 const char nop3
[3] = { 0x0f, 0x1f, 0x00 }; // nop (%rax)
2805 const char nop4
[4] = { 0x0f, 0x1f, 0x40, 0x00}; // nop 0(%rax)
2806 const char nop5
[5] = { 0x0f, 0x1f, 0x44, 0x00, // nop 0(%rax,%rax,1)
2808 const char nop6
[6] = { 0x66, 0x0f, 0x1f, 0x44, // nopw 0(%rax,%rax,1)
2810 const char nop7
[7] = { 0x0f, 0x1f, 0x80, 0x00, // nopl 0L(%rax)
2812 const char nop8
[8] = { 0x0f, 0x1f, 0x84, 0x00, // nopl 0L(%rax,%rax,1)
2813 0x00, 0x00, 0x00, 0x00 };
2814 const char nop9
[9] = { 0x66, 0x0f, 0x1f, 0x84, // nopw 0L(%rax,%rax,1)
2815 0x00, 0x00, 0x00, 0x00,
2817 const char nop10
[10] = { 0x66, 0x2e, 0x0f, 0x1f, // nopw %cs:0L(%rax,%rax,1)
2818 0x84, 0x00, 0x00, 0x00,
2820 const char nop11
[11] = { 0x66, 0x66, 0x2e, 0x0f, // data16
2821 0x1f, 0x84, 0x00, 0x00, // nopw %cs:0L(%rax,%rax,1)
2823 const char nop12
[12] = { 0x66, 0x66, 0x66, 0x2e, // data16; data16
2824 0x0f, 0x1f, 0x84, 0x00, // nopw %cs:0L(%rax,%rax,1)
2825 0x00, 0x00, 0x00, 0x00 };
2826 const char nop13
[13] = { 0x66, 0x66, 0x66, 0x66, // data16; data16; data16
2827 0x2e, 0x0f, 0x1f, 0x84, // nopw %cs:0L(%rax,%rax,1)
2828 0x00, 0x00, 0x00, 0x00,
2830 const char nop14
[14] = { 0x66, 0x66, 0x66, 0x66, // data16; data16; data16
2831 0x66, 0x2e, 0x0f, 0x1f, // data16
2832 0x84, 0x00, 0x00, 0x00, // nopw %cs:0L(%rax,%rax,1)
2834 const char nop15
[15] = { 0x66, 0x66, 0x66, 0x66, // data16; data16; data16
2835 0x66, 0x66, 0x2e, 0x0f, // data16; data16
2836 0x1f, 0x84, 0x00, 0x00, // nopw %cs:0L(%rax,%rax,1)
2839 const char* nops
[16] = {
2841 nop1
, nop2
, nop3
, nop4
, nop5
, nop6
, nop7
,
2842 nop8
, nop9
, nop10
, nop11
, nop12
, nop13
, nop14
, nop15
2845 return std::string(nops
[length
], length
);
2848 // Return the addend to use for a target specific relocation. The
2849 // only target specific relocation is R_X86_64_TLSDESC for a local
2850 // symbol. We want to set the addend is the offset of the local
2851 // symbol in the TLS segment.
2854 Target_x86_64::do_reloc_addend(void* arg
, unsigned int r_type
,
2857 gold_assert(r_type
== elfcpp::R_X86_64_TLSDESC
);
2858 uintptr_t intarg
= reinterpret_cast<uintptr_t>(arg
);
2859 gold_assert(intarg
< this->tlsdesc_reloc_info_
.size());
2860 const Tlsdesc_info
& ti(this->tlsdesc_reloc_info_
[intarg
]);
2861 const Symbol_value
<64>* psymval
= ti
.object
->local_symbol(ti
.r_sym
);
2862 gold_assert(psymval
->is_tls_symbol());
2863 // The value of a TLS symbol is the offset in the TLS segment.
2864 return psymval
->value(ti
.object
, 0);
2867 // FNOFFSET in section SHNDX in OBJECT is the start of a function
2868 // compiled with -fstack-split. The function calls non-stack-split
2869 // code. We have to change the function so that it always ensures
2870 // that it has enough stack space to run some random function.
2873 Target_x86_64::do_calls_non_split(Relobj
* object
, unsigned int shndx
,
2874 section_offset_type fnoffset
,
2875 section_size_type fnsize
,
2876 unsigned char* view
,
2877 section_size_type view_size
,
2879 std::string
* to
) const
2881 // The function starts with a comparison of the stack pointer and a
2882 // field in the TCB. This is followed by a jump.
2885 if (this->match_view(view
, view_size
, fnoffset
, "\x64\x48\x3b\x24\x25", 5)
2888 // We will call __morestack if the carry flag is set after this
2889 // comparison. We turn the comparison into an stc instruction
2891 view
[fnoffset
] = '\xf9';
2892 this->set_view_to_nop(view
, view_size
, fnoffset
+ 1, 8);
2894 // lea NN(%rsp),%r10
2895 // lea NN(%rsp),%r11
2896 else if ((this->match_view(view
, view_size
, fnoffset
,
2897 "\x4c\x8d\x94\x24", 4)
2898 || this->match_view(view
, view_size
, fnoffset
,
2899 "\x4c\x8d\x9c\x24", 4))
2902 // This is loading an offset from the stack pointer for a
2903 // comparison. The offset is negative, so we decrease the
2904 // offset by the amount of space we need for the stack. This
2905 // means we will avoid calling __morestack if there happens to
2906 // be plenty of space on the stack already.
2907 unsigned char* pval
= view
+ fnoffset
+ 4;
2908 uint32_t val
= elfcpp::Swap_unaligned
<32, false>::readval(pval
);
2909 val
-= parameters
->options().split_stack_adjust_size();
2910 elfcpp::Swap_unaligned
<32, false>::writeval(pval
, val
);
2914 if (!object
->has_no_split_stack())
2915 object
->error(_("failed to match split-stack sequence at "
2916 "section %u offset %0zx"),
2917 shndx
, static_cast<size_t>(fnoffset
));
2921 // We have to change the function so that it calls
2922 // __morestack_non_split instead of __morestack. The former will
2923 // allocate additional stack space.
2924 *from
= "__morestack";
2925 *to
= "__morestack_non_split";
2928 // The selector for x86_64 object files.
2930 class Target_selector_x86_64
: public Target_selector_freebsd
2933 Target_selector_x86_64()
2934 : Target_selector_freebsd(elfcpp::EM_X86_64
, 64, false, "elf64-x86-64",
2935 "elf64-x86-64-freebsd")
2939 do_instantiate_target()
2940 { return new Target_x86_64(); }
2944 Target_selector_x86_64 target_selector_x86_64
;
2946 } // End anonymous namespace.