1 // i386.cc -- i386 target support for gold.
3 // Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 // Free Software Foundation, Inc.
5 // Written by Ian Lance Taylor <iant@google.com>.
7 // This file is part of gold.
9 // This program is free software; you can redistribute it and/or modify
10 // it under the terms of the GNU General Public License as published by
11 // the Free Software Foundation; either version 3 of the License, or
12 // (at your option) any later version.
14 // This program is distributed in the hope that it will be useful,
15 // but WITHOUT ANY WARRANTY; without even the implied warranty of
16 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 // GNU General Public License for more details.
19 // You should have received a copy of the GNU General Public License
20 // along with this program; if not, write to the Free Software
21 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 // MA 02110-1301, USA.
30 #include "parameters.h"
37 #include "copy-relocs.h"
39 #include "target-reloc.h"
40 #include "target-select.h"
50 // A class to handle the PLT data.
52 class Output_data_plt_i386
: public Output_section_data
55 typedef Output_data_reloc
<elfcpp::SHT_REL
, true, 32, false> Reloc_section
;
57 Output_data_plt_i386(Layout
*, Output_data_space
*, Output_data_space
*);
59 // Add an entry to the PLT.
61 add_entry(Symbol_table
*, Layout
*, Symbol
* gsym
);
63 // Add an entry to the PLT for a local STT_GNU_IFUNC symbol.
65 add_local_ifunc_entry(Symbol_table
*, Layout
*,
66 Sized_relobj_file
<32, false>* relobj
,
67 unsigned int local_sym_index
);
69 // Return the .rel.plt section data.
72 { return this->rel_
; }
74 // Return where the TLS_DESC relocations should go.
76 rel_tls_desc(Layout
*);
78 // Return where the IRELATIVE relocations should go.
80 rel_irelative(Symbol_table
*, Layout
*);
82 // Return whether we created a section for IRELATIVE relocations.
84 has_irelative_section() const
85 { return this->irelative_rel_
!= NULL
; }
87 // Return the number of PLT entries.
90 { return this->count_
+ this->irelative_count_
; }
92 // Return the offset of the first non-reserved PLT entry.
94 first_plt_entry_offset()
95 { return plt_entry_size
; }
97 // Return the size of a PLT entry.
100 { return plt_entry_size
; }
102 // Return the PLT address to use for a global symbol.
104 address_for_global(const Symbol
*);
106 // Return the PLT address to use for a local symbol.
108 address_for_local(const Relobj
*, unsigned int symndx
);
112 do_adjust_output_section(Output_section
* os
);
114 // Write to a map file.
116 do_print_to_mapfile(Mapfile
* mapfile
) const
117 { mapfile
->print_output_data(this, _("** PLT")); }
120 // The size of an entry in the PLT.
121 static const int plt_entry_size
= 16;
123 // The first entry in the PLT for an executable.
124 static const unsigned char exec_first_plt_entry
[plt_entry_size
];
126 // The first entry in the PLT for a shared object.
127 static const unsigned char dyn_first_plt_entry
[plt_entry_size
];
129 // Other entries in the PLT for an executable.
130 static const unsigned char exec_plt_entry
[plt_entry_size
];
132 // Other entries in the PLT for a shared object.
133 static const unsigned char dyn_plt_entry
[plt_entry_size
];
135 // The .eh_frame unwind information for the PLT.
136 static const int plt_eh_frame_cie_size
= 16;
137 static const int plt_eh_frame_fde_size
= 32;
138 static const unsigned char plt_eh_frame_cie
[plt_eh_frame_cie_size
];
139 static const unsigned char plt_eh_frame_fde
[plt_eh_frame_fde_size
];
141 // Set the final size.
143 set_final_data_size()
145 this->set_data_size((this->count_
+ this->irelative_count_
+ 1)
149 // Write out the PLT data.
151 do_write(Output_file
*);
153 // We keep a list of global STT_GNU_IFUNC symbols, each with its
154 // offset in the GOT.
158 unsigned int got_offset
;
161 // We keep a list of local STT_GNU_IFUNC symbols, each with its
162 // offset in the GOT.
165 Sized_relobj_file
<32, false>* object
;
166 unsigned int local_sym_index
;
167 unsigned int got_offset
;
170 // A pointer to the Layout class, so that we can find the .dynamic
171 // section when we write out the GOT PLT section.
173 // The reloc section.
175 // The TLS_DESC relocations, if necessary. These must follow the
176 // regular PLT relocs.
177 Reloc_section
* tls_desc_rel_
;
178 // The IRELATIVE relocations, if necessary. These must follow the
179 // regular relocatoins and the TLS_DESC relocations.
180 Reloc_section
* irelative_rel_
;
181 // The .got.plt section.
182 Output_data_space
* got_plt_
;
183 // The part of the .got.plt section used for IRELATIVE relocs.
184 Output_data_space
* got_irelative_
;
185 // The number of PLT entries.
187 // Number of PLT entries with R_386_IRELATIVE relocs. These follow
188 // the regular PLT entries.
189 unsigned int irelative_count_
;
190 // Global STT_GNU_IFUNC symbols.
191 std::vector
<Global_ifunc
> global_ifuncs_
;
192 // Local STT_GNU_IFUNC symbols.
193 std::vector
<Local_ifunc
> local_ifuncs_
;
196 // The i386 target class.
197 // TLS info comes from
198 // http://people.redhat.com/drepper/tls.pdf
199 // http://www.lsd.ic.unicamp.br/~oliva/writeups/TLS/RFC-TLSDESC-x86.txt
201 class Target_i386
: public Sized_target
<32, false>
204 typedef Output_data_reloc
<elfcpp::SHT_REL
, true, 32, false> Reloc_section
;
207 : Sized_target
<32, false>(&i386_info
),
208 got_(NULL
), plt_(NULL
), got_plt_(NULL
), got_irelative_(NULL
),
209 got_tlsdesc_(NULL
), global_offset_table_(NULL
), rel_dyn_(NULL
),
210 rel_irelative_(NULL
), copy_relocs_(elfcpp::R_386_COPY
), dynbss_(NULL
),
211 got_mod_index_offset_(-1U), tls_base_symbol_defined_(false)
214 // Process the relocations to determine unreferenced sections for
215 // garbage collection.
217 gc_process_relocs(Symbol_table
* symtab
,
219 Sized_relobj_file
<32, false>* object
,
220 unsigned int data_shndx
,
221 unsigned int sh_type
,
222 const unsigned char* prelocs
,
224 Output_section
* output_section
,
225 bool needs_special_offset_handling
,
226 size_t local_symbol_count
,
227 const unsigned char* plocal_symbols
);
229 // Scan the relocations to look for symbol adjustments.
231 scan_relocs(Symbol_table
* symtab
,
233 Sized_relobj_file
<32, false>* object
,
234 unsigned int data_shndx
,
235 unsigned int sh_type
,
236 const unsigned char* prelocs
,
238 Output_section
* output_section
,
239 bool needs_special_offset_handling
,
240 size_t local_symbol_count
,
241 const unsigned char* plocal_symbols
);
243 // Finalize the sections.
245 do_finalize_sections(Layout
*, const Input_objects
*, Symbol_table
*);
247 // Return the value to use for a dynamic which requires special
250 do_dynsym_value(const Symbol
*) const;
252 // Relocate a section.
254 relocate_section(const Relocate_info
<32, false>*,
255 unsigned int sh_type
,
256 const unsigned char* prelocs
,
258 Output_section
* output_section
,
259 bool needs_special_offset_handling
,
261 elfcpp::Elf_types
<32>::Elf_Addr view_address
,
262 section_size_type view_size
,
263 const Reloc_symbol_changes
*);
265 // Scan the relocs during a relocatable link.
267 scan_relocatable_relocs(Symbol_table
* symtab
,
269 Sized_relobj_file
<32, false>* object
,
270 unsigned int data_shndx
,
271 unsigned int sh_type
,
272 const unsigned char* prelocs
,
274 Output_section
* output_section
,
275 bool needs_special_offset_handling
,
276 size_t local_symbol_count
,
277 const unsigned char* plocal_symbols
,
278 Relocatable_relocs
*);
280 // Relocate a section during a relocatable link.
282 relocate_for_relocatable(const Relocate_info
<32, false>*,
283 unsigned int sh_type
,
284 const unsigned char* prelocs
,
286 Output_section
* output_section
,
287 off_t offset_in_output_section
,
288 const Relocatable_relocs
*,
290 elfcpp::Elf_types
<32>::Elf_Addr view_address
,
291 section_size_type view_size
,
292 unsigned char* reloc_view
,
293 section_size_type reloc_view_size
);
295 // Return a string used to fill a code section with nops.
297 do_code_fill(section_size_type length
) const;
299 // Return whether SYM is defined by the ABI.
301 do_is_defined_by_abi(const Symbol
* sym
) const
302 { return strcmp(sym
->name(), "___tls_get_addr") == 0; }
304 // Return whether a symbol name implies a local label. The UnixWare
305 // 2.1 cc generates temporary symbols that start with .X, so we
306 // recognize them here. FIXME: do other SVR4 compilers also use .X?.
307 // If so, we should move the .X recognition into
308 // Target::do_is_local_label_name.
310 do_is_local_label_name(const char* name
) const
312 if (name
[0] == '.' && name
[1] == 'X')
314 return Target::do_is_local_label_name(name
);
317 // Return the PLT address to use for a global symbol.
319 do_plt_address_for_global(const Symbol
* gsym
) const
320 { return this->plt_section()->address_for_global(gsym
); }
323 do_plt_address_for_local(const Relobj
* relobj
, unsigned int symndx
) const
324 { return this->plt_section()->address_for_local(relobj
, symndx
); }
326 // We can tell whether we take the address of a function.
328 do_can_check_for_function_pointers() const
331 // Return the base for a DW_EH_PE_datarel encoding.
333 do_ehframe_datarel_base() const;
335 // Return whether SYM is call to a non-split function.
337 do_is_call_to_non_split(const Symbol
* sym
, unsigned int) const;
339 // Adjust -fsplit-stack code which calls non-split-stack code.
341 do_calls_non_split(Relobj
* object
, unsigned int shndx
,
342 section_offset_type fnoffset
, section_size_type fnsize
,
343 unsigned char* view
, section_size_type view_size
,
344 std::string
* from
, std::string
* to
) const;
346 // Return the size of the GOT section.
350 gold_assert(this->got_
!= NULL
);
351 return this->got_
->data_size();
354 // Return the number of entries in the GOT.
356 got_entry_count() const
358 if (this->got_
== NULL
)
360 return this->got_size() / 4;
363 // Return the number of entries in the PLT.
365 plt_entry_count() const;
367 // Return the offset of the first non-reserved PLT entry.
369 first_plt_entry_offset() const;
371 // Return the size of each PLT entry.
373 plt_entry_size() const;
376 // The class which scans relocations.
381 get_reference_flags(unsigned int r_type
);
384 local(Symbol_table
* symtab
, Layout
* layout
, Target_i386
* target
,
385 Sized_relobj_file
<32, false>* object
,
386 unsigned int data_shndx
,
387 Output_section
* output_section
,
388 const elfcpp::Rel
<32, false>& reloc
, unsigned int r_type
,
389 const elfcpp::Sym
<32, false>& lsym
);
392 global(Symbol_table
* symtab
, Layout
* layout
, Target_i386
* target
,
393 Sized_relobj_file
<32, false>* object
,
394 unsigned int data_shndx
,
395 Output_section
* output_section
,
396 const elfcpp::Rel
<32, false>& reloc
, unsigned int r_type
,
400 local_reloc_may_be_function_pointer(Symbol_table
* symtab
, Layout
* layout
,
402 Sized_relobj_file
<32, false>* object
,
403 unsigned int data_shndx
,
404 Output_section
* output_section
,
405 const elfcpp::Rel
<32, false>& reloc
,
407 const elfcpp::Sym
<32, false>& lsym
);
410 global_reloc_may_be_function_pointer(Symbol_table
* symtab
, Layout
* layout
,
412 Sized_relobj_file
<32, false>* object
,
413 unsigned int data_shndx
,
414 Output_section
* output_section
,
415 const elfcpp::Rel
<32, false>& reloc
,
420 possible_function_pointer_reloc(unsigned int r_type
);
423 reloc_needs_plt_for_ifunc(Sized_relobj_file
<32, false>*,
424 unsigned int r_type
);
427 unsupported_reloc_local(Sized_relobj_file
<32, false>*, unsigned int r_type
);
430 unsupported_reloc_global(Sized_relobj_file
<32, false>*, unsigned int r_type
,
434 // The class which implements relocation.
439 : skip_call_tls_get_addr_(false),
440 local_dynamic_type_(LOCAL_DYNAMIC_NONE
)
445 if (this->skip_call_tls_get_addr_
)
447 // FIXME: This needs to specify the location somehow.
448 gold_error(_("missing expected TLS relocation"));
452 // Return whether the static relocation needs to be applied.
454 should_apply_static_reloc(const Sized_symbol
<32>* gsym
,
457 Output_section
* output_section
);
459 // Do a relocation. Return false if the caller should not issue
460 // any warnings about this relocation.
462 relocate(const Relocate_info
<32, false>*, Target_i386
*, Output_section
*,
463 size_t relnum
, const elfcpp::Rel
<32, false>&,
464 unsigned int r_type
, const Sized_symbol
<32>*,
465 const Symbol_value
<32>*,
466 unsigned char*, elfcpp::Elf_types
<32>::Elf_Addr
,
470 // Do a TLS relocation.
472 relocate_tls(const Relocate_info
<32, false>*, Target_i386
* target
,
473 size_t relnum
, const elfcpp::Rel
<32, false>&,
474 unsigned int r_type
, const Sized_symbol
<32>*,
475 const Symbol_value
<32>*,
476 unsigned char*, elfcpp::Elf_types
<32>::Elf_Addr
,
479 // Do a TLS General-Dynamic to Initial-Exec transition.
481 tls_gd_to_ie(const Relocate_info
<32, false>*, size_t relnum
,
482 Output_segment
* tls_segment
,
483 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
484 elfcpp::Elf_types
<32>::Elf_Addr value
,
486 section_size_type view_size
);
488 // Do a TLS General-Dynamic to Local-Exec transition.
490 tls_gd_to_le(const Relocate_info
<32, false>*, size_t relnum
,
491 Output_segment
* tls_segment
,
492 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
493 elfcpp::Elf_types
<32>::Elf_Addr value
,
495 section_size_type view_size
);
497 // Do a TLS_GOTDESC or TLS_DESC_CALL General-Dynamic to Initial-Exec
500 tls_desc_gd_to_ie(const Relocate_info
<32, false>*, size_t relnum
,
501 Output_segment
* tls_segment
,
502 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
503 elfcpp::Elf_types
<32>::Elf_Addr value
,
505 section_size_type view_size
);
507 // Do a TLS_GOTDESC or TLS_DESC_CALL General-Dynamic to Local-Exec
510 tls_desc_gd_to_le(const Relocate_info
<32, false>*, size_t relnum
,
511 Output_segment
* tls_segment
,
512 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
513 elfcpp::Elf_types
<32>::Elf_Addr value
,
515 section_size_type view_size
);
517 // Do a TLS Local-Dynamic to Local-Exec transition.
519 tls_ld_to_le(const Relocate_info
<32, false>*, size_t relnum
,
520 Output_segment
* tls_segment
,
521 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
522 elfcpp::Elf_types
<32>::Elf_Addr value
,
524 section_size_type view_size
);
526 // Do a TLS Initial-Exec to Local-Exec transition.
528 tls_ie_to_le(const Relocate_info
<32, false>*, size_t relnum
,
529 Output_segment
* tls_segment
,
530 const elfcpp::Rel
<32, false>&, unsigned int r_type
,
531 elfcpp::Elf_types
<32>::Elf_Addr value
,
533 section_size_type view_size
);
535 // We need to keep track of which type of local dynamic relocation
536 // we have seen, so that we can optimize R_386_TLS_LDO_32 correctly.
537 enum Local_dynamic_type
544 // This is set if we should skip the next reloc, which should be a
545 // PLT32 reloc against ___tls_get_addr.
546 bool skip_call_tls_get_addr_
;
547 // The type of local dynamic relocation we have seen in the section
548 // being relocated, if any.
549 Local_dynamic_type local_dynamic_type_
;
552 // A class which returns the size required for a relocation type,
553 // used while scanning relocs during a relocatable link.
554 class Relocatable_size_for_reloc
558 get_size_for_reloc(unsigned int, Relobj
*);
561 // Adjust TLS relocation type based on the options and whether this
562 // is a local symbol.
563 static tls::Tls_optimization
564 optimize_tls_reloc(bool is_final
, int r_type
);
566 // Get the GOT section, creating it if necessary.
567 Output_data_got
<32, false>*
568 got_section(Symbol_table
*, Layout
*);
570 // Get the GOT PLT section.
572 got_plt_section() const
574 gold_assert(this->got_plt_
!= NULL
);
575 return this->got_plt_
;
578 // Get the GOT section for TLSDESC entries.
579 Output_data_got
<32, false>*
580 got_tlsdesc_section() const
582 gold_assert(this->got_tlsdesc_
!= NULL
);
583 return this->got_tlsdesc_
;
586 // Create the PLT section.
588 make_plt_section(Symbol_table
* symtab
, Layout
* layout
);
590 // Create a PLT entry for a global symbol.
592 make_plt_entry(Symbol_table
*, Layout
*, Symbol
*);
594 // Create a PLT entry for a local STT_GNU_IFUNC symbol.
596 make_local_ifunc_plt_entry(Symbol_table
*, Layout
*,
597 Sized_relobj_file
<32, false>* relobj
,
598 unsigned int local_sym_index
);
600 // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
602 define_tls_base_symbol(Symbol_table
*, Layout
*);
604 // Create a GOT entry for the TLS module index.
606 got_mod_index_entry(Symbol_table
* symtab
, Layout
* layout
,
607 Sized_relobj_file
<32, false>* object
);
609 // Get the PLT section.
610 Output_data_plt_i386
*
613 gold_assert(this->plt_
!= NULL
);
617 // Get the dynamic reloc section, creating it if necessary.
619 rel_dyn_section(Layout
*);
621 // Get the section to use for TLS_DESC relocations.
623 rel_tls_desc_section(Layout
*) const;
625 // Get the section to use for IRELATIVE relocations.
627 rel_irelative_section(Layout
*);
629 // Add a potential copy relocation.
631 copy_reloc(Symbol_table
* symtab
, Layout
* layout
,
632 Sized_relobj_file
<32, false>* object
,
633 unsigned int shndx
, Output_section
* output_section
,
634 Symbol
* sym
, const elfcpp::Rel
<32, false>& reloc
)
636 this->copy_relocs_
.copy_reloc(symtab
, layout
,
637 symtab
->get_sized_symbol
<32>(sym
),
638 object
, shndx
, output_section
, reloc
,
639 this->rel_dyn_section(layout
));
642 // Information about this specific target which we pass to the
643 // general Target structure.
644 static const Target::Target_info i386_info
;
646 // The types of GOT entries needed for this platform.
647 // These values are exposed to the ABI in an incremental link.
648 // Do not renumber existing values without changing the version
649 // number of the .gnu_incremental_inputs section.
652 GOT_TYPE_STANDARD
= 0, // GOT entry for a regular symbol
653 GOT_TYPE_TLS_NOFFSET
= 1, // GOT entry for negative TLS offset
654 GOT_TYPE_TLS_OFFSET
= 2, // GOT entry for positive TLS offset
655 GOT_TYPE_TLS_PAIR
= 3, // GOT entry for TLS module/offset pair
656 GOT_TYPE_TLS_DESC
= 4 // GOT entry for TLS_DESC pair
660 Output_data_got
<32, false>* got_
;
662 Output_data_plt_i386
* plt_
;
663 // The GOT PLT section.
664 Output_data_space
* got_plt_
;
665 // The GOT section for IRELATIVE relocations.
666 Output_data_space
* got_irelative_
;
667 // The GOT section for TLSDESC relocations.
668 Output_data_got
<32, false>* got_tlsdesc_
;
669 // The _GLOBAL_OFFSET_TABLE_ symbol.
670 Symbol
* global_offset_table_
;
671 // The dynamic reloc section.
672 Reloc_section
* rel_dyn_
;
673 // The section to use for IRELATIVE relocs.
674 Reloc_section
* rel_irelative_
;
675 // Relocs saved to avoid a COPY reloc.
676 Copy_relocs
<elfcpp::SHT_REL
, 32, false> copy_relocs_
;
677 // Space for variables copied with a COPY reloc.
678 Output_data_space
* dynbss_
;
679 // Offset of the GOT entry for the TLS module index.
680 unsigned int got_mod_index_offset_
;
681 // True if the _TLS_MODULE_BASE_ symbol has been defined.
682 bool tls_base_symbol_defined_
;
685 const Target::Target_info
Target_i386::i386_info
=
688 false, // is_big_endian
689 elfcpp::EM_386
, // machine_code
690 false, // has_make_symbol
691 false, // has_resolve
692 true, // has_code_fill
693 true, // is_default_stack_executable
694 true, // can_icf_inline_merge_sections
696 "/usr/lib/libc.so.1", // dynamic_linker
697 0x08048000, // default_text_segment_address
698 0x1000, // abi_pagesize (overridable by -z max-page-size)
699 0x1000, // common_pagesize (overridable by -z common-page-size)
700 elfcpp::SHN_UNDEF
, // small_common_shndx
701 elfcpp::SHN_UNDEF
, // large_common_shndx
702 0, // small_common_section_flags
703 0, // large_common_section_flags
704 NULL
, // attributes_section
705 NULL
// attributes_vendor
708 // Get the GOT section, creating it if necessary.
710 Output_data_got
<32, false>*
711 Target_i386::got_section(Symbol_table
* symtab
, Layout
* layout
)
713 if (this->got_
== NULL
)
715 gold_assert(symtab
!= NULL
&& layout
!= NULL
);
717 this->got_
= new Output_data_got
<32, false>();
719 // When using -z now, we can treat .got.plt as a relro section.
720 // Without -z now, it is modified after program startup by lazy
722 bool is_got_plt_relro
= parameters
->options().now();
723 Output_section_order got_order
= (is_got_plt_relro
726 Output_section_order got_plt_order
= (is_got_plt_relro
728 : ORDER_NON_RELRO_FIRST
);
730 layout
->add_output_section_data(".got", elfcpp::SHT_PROGBITS
,
732 | elfcpp::SHF_WRITE
),
733 this->got_
, got_order
, true);
735 this->got_plt_
= new Output_data_space(4, "** GOT PLT");
736 layout
->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS
,
738 | elfcpp::SHF_WRITE
),
739 this->got_plt_
, got_plt_order
,
742 // The first three entries are reserved.
743 this->got_plt_
->set_current_data_size(3 * 4);
745 if (!is_got_plt_relro
)
747 // Those bytes can go into the relro segment.
748 layout
->increase_relro(3 * 4);
751 // Define _GLOBAL_OFFSET_TABLE_ at the start of the PLT.
752 this->global_offset_table_
=
753 symtab
->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL
,
754 Symbol_table::PREDEFINED
,
756 0, 0, elfcpp::STT_OBJECT
,
758 elfcpp::STV_HIDDEN
, 0,
761 // If there are any IRELATIVE relocations, they get GOT entries
762 // in .got.plt after the jump slot relocations.
763 this->got_irelative_
= new Output_data_space(4, "** GOT IRELATIVE PLT");
764 layout
->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS
,
766 | elfcpp::SHF_WRITE
),
767 this->got_irelative_
,
768 got_plt_order
, is_got_plt_relro
);
770 // If there are any TLSDESC relocations, they get GOT entries in
771 // .got.plt after the jump slot entries.
772 this->got_tlsdesc_
= new Output_data_got
<32, false>();
773 layout
->add_output_section_data(".got.plt", elfcpp::SHT_PROGBITS
,
775 | elfcpp::SHF_WRITE
),
777 got_plt_order
, is_got_plt_relro
);
783 // Get the dynamic reloc section, creating it if necessary.
785 Target_i386::Reloc_section
*
786 Target_i386::rel_dyn_section(Layout
* layout
)
788 if (this->rel_dyn_
== NULL
)
790 gold_assert(layout
!= NULL
);
791 this->rel_dyn_
= new Reloc_section(parameters
->options().combreloc());
792 layout
->add_output_section_data(".rel.dyn", elfcpp::SHT_REL
,
793 elfcpp::SHF_ALLOC
, this->rel_dyn_
,
794 ORDER_DYNAMIC_RELOCS
, false);
796 return this->rel_dyn_
;
799 // Get the section to use for IRELATIVE relocs, creating it if
800 // necessary. These go in .rel.dyn, but only after all other dynamic
801 // relocations. They need to follow the other dynamic relocations so
802 // that they can refer to global variables initialized by those
805 Target_i386::Reloc_section
*
806 Target_i386::rel_irelative_section(Layout
* layout
)
808 if (this->rel_irelative_
== NULL
)
810 // Make sure we have already create the dynamic reloc section.
811 this->rel_dyn_section(layout
);
812 this->rel_irelative_
= new Reloc_section(false);
813 layout
->add_output_section_data(".rel.dyn", elfcpp::SHT_REL
,
814 elfcpp::SHF_ALLOC
, this->rel_irelative_
,
815 ORDER_DYNAMIC_RELOCS
, false);
816 gold_assert(this->rel_dyn_
->output_section()
817 == this->rel_irelative_
->output_section());
819 return this->rel_irelative_
;
822 // Create the PLT section. The ordinary .got section is an argument,
823 // since we need to refer to the start. We also create our own .got
824 // section just for PLT entries.
826 Output_data_plt_i386::Output_data_plt_i386(Layout
* layout
,
827 Output_data_space
* got_plt
,
828 Output_data_space
* got_irelative
)
829 : Output_section_data(16), layout_(layout
), tls_desc_rel_(NULL
),
830 irelative_rel_(NULL
), got_plt_(got_plt
), got_irelative_(got_irelative
),
831 count_(0), irelative_count_(0), global_ifuncs_(), local_ifuncs_()
833 this->rel_
= new Reloc_section(false);
834 layout
->add_output_section_data(".rel.plt", elfcpp::SHT_REL
,
835 elfcpp::SHF_ALLOC
, this->rel_
,
836 ORDER_DYNAMIC_PLT_RELOCS
, false);
838 // Add unwind information if requested.
839 if (parameters
->options().ld_generated_unwind_info())
840 layout
->add_eh_frame_for_plt(this, plt_eh_frame_cie
, plt_eh_frame_cie_size
,
841 plt_eh_frame_fde
, plt_eh_frame_fde_size
);
845 Output_data_plt_i386::do_adjust_output_section(Output_section
* os
)
847 // UnixWare sets the entsize of .plt to 4, and so does the old GNU
848 // linker, and so do we.
852 // Add an entry to the PLT.
855 Output_data_plt_i386::add_entry(Symbol_table
* symtab
, Layout
* layout
,
858 gold_assert(!gsym
->has_plt_offset());
860 // Every PLT entry needs a reloc.
861 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
862 && gsym
->can_use_relative_reloc(false))
864 gsym
->set_plt_offset(this->irelative_count_
* plt_entry_size
);
865 ++this->irelative_count_
;
866 section_offset_type got_offset
=
867 this->got_irelative_
->current_data_size();
868 this->got_irelative_
->set_current_data_size(got_offset
+ 4);
869 Reloc_section
* rel
= this->rel_irelative(symtab
, layout
);
870 rel
->add_symbolless_global_addend(gsym
, elfcpp::R_386_IRELATIVE
,
871 this->got_irelative_
, got_offset
);
872 struct Global_ifunc gi
;
874 gi
.got_offset
= got_offset
;
875 this->global_ifuncs_
.push_back(gi
);
879 // When setting the PLT offset we skip the initial reserved PLT
881 gsym
->set_plt_offset((this->count_
+ 1) * plt_entry_size
);
885 section_offset_type got_offset
= this->got_plt_
->current_data_size();
887 // Every PLT entry needs a GOT entry which points back to the
888 // PLT entry (this will be changed by the dynamic linker,
889 // normally lazily when the function is called).
890 this->got_plt_
->set_current_data_size(got_offset
+ 4);
892 gsym
->set_needs_dynsym_entry();
893 this->rel_
->add_global(gsym
, elfcpp::R_386_JUMP_SLOT
, this->got_plt_
,
897 // Note that we don't need to save the symbol. The contents of the
898 // PLT are independent of which symbols are used. The symbols only
899 // appear in the relocations.
902 // Add an entry to the PLT for a local STT_GNU_IFUNC symbol. Return
906 Output_data_plt_i386::add_local_ifunc_entry(
907 Symbol_table
* symtab
,
909 Sized_relobj_file
<32, false>* relobj
,
910 unsigned int local_sym_index
)
912 unsigned int plt_offset
= this->irelative_count_
* plt_entry_size
;
913 ++this->irelative_count_
;
915 section_offset_type got_offset
= this->got_irelative_
->current_data_size();
917 // Every PLT entry needs a GOT entry which points back to the PLT
919 this->got_irelative_
->set_current_data_size(got_offset
+ 4);
921 // Every PLT entry needs a reloc.
922 Reloc_section
* rel
= this->rel_irelative(symtab
, layout
);
923 rel
->add_symbolless_local_addend(relobj
, local_sym_index
,
924 elfcpp::R_386_IRELATIVE
,
925 this->got_irelative_
, got_offset
);
927 struct Local_ifunc li
;
929 li
.local_sym_index
= local_sym_index
;
930 li
.got_offset
= got_offset
;
931 this->local_ifuncs_
.push_back(li
);
936 // Return where the TLS_DESC relocations should go, creating it if
937 // necessary. These follow the JUMP_SLOT relocations.
939 Output_data_plt_i386::Reloc_section
*
940 Output_data_plt_i386::rel_tls_desc(Layout
* layout
)
942 if (this->tls_desc_rel_
== NULL
)
944 this->tls_desc_rel_
= new Reloc_section(false);
945 layout
->add_output_section_data(".rel.plt", elfcpp::SHT_REL
,
946 elfcpp::SHF_ALLOC
, this->tls_desc_rel_
,
947 ORDER_DYNAMIC_PLT_RELOCS
, false);
948 gold_assert(this->tls_desc_rel_
->output_section()
949 == this->rel_
->output_section());
951 return this->tls_desc_rel_
;
954 // Return where the IRELATIVE relocations should go in the PLT. These
955 // follow the JUMP_SLOT and TLS_DESC relocations.
957 Output_data_plt_i386::Reloc_section
*
958 Output_data_plt_i386::rel_irelative(Symbol_table
* symtab
, Layout
* layout
)
960 if (this->irelative_rel_
== NULL
)
962 // Make sure we have a place for the TLS_DESC relocations, in
963 // case we see any later on.
964 this->rel_tls_desc(layout
);
965 this->irelative_rel_
= new Reloc_section(false);
966 layout
->add_output_section_data(".rel.plt", elfcpp::SHT_REL
,
967 elfcpp::SHF_ALLOC
, this->irelative_rel_
,
968 ORDER_DYNAMIC_PLT_RELOCS
, false);
969 gold_assert(this->irelative_rel_
->output_section()
970 == this->rel_
->output_section());
972 if (parameters
->doing_static_link())
974 // A statically linked executable will only have a .rel.plt
975 // section to hold R_386_IRELATIVE relocs for STT_GNU_IFUNC
976 // symbols. The library will use these symbols to locate
977 // the IRELATIVE relocs at program startup time.
978 symtab
->define_in_output_data("__rel_iplt_start", NULL
,
979 Symbol_table::PREDEFINED
,
980 this->irelative_rel_
, 0, 0,
981 elfcpp::STT_NOTYPE
, elfcpp::STB_GLOBAL
,
982 elfcpp::STV_HIDDEN
, 0, false, true);
983 symtab
->define_in_output_data("__rel_iplt_end", NULL
,
984 Symbol_table::PREDEFINED
,
985 this->irelative_rel_
, 0, 0,
986 elfcpp::STT_NOTYPE
, elfcpp::STB_GLOBAL
,
987 elfcpp::STV_HIDDEN
, 0, true, true);
990 return this->irelative_rel_
;
993 // Return the PLT address to use for a global symbol.
996 Output_data_plt_i386::address_for_global(const Symbol
* gsym
)
999 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
1000 && gsym
->can_use_relative_reloc(false))
1001 offset
= (this->count_
+ 1) * plt_entry_size
;
1002 return this->address() + offset
;
1005 // Return the PLT address to use for a local symbol. These are always
1006 // IRELATIVE relocs.
1009 Output_data_plt_i386::address_for_local(const Relobj
*, unsigned int)
1011 return this->address() + (this->count_
+ 1) * plt_entry_size
;
1014 // The first entry in the PLT for an executable.
1016 const unsigned char Output_data_plt_i386::exec_first_plt_entry
[plt_entry_size
] =
1018 0xff, 0x35, // pushl contents of memory address
1019 0, 0, 0, 0, // replaced with address of .got + 4
1020 0xff, 0x25, // jmp indirect
1021 0, 0, 0, 0, // replaced with address of .got + 8
1022 0, 0, 0, 0 // unused
1025 // The first entry in the PLT for a shared object.
1027 const unsigned char Output_data_plt_i386::dyn_first_plt_entry
[plt_entry_size
] =
1029 0xff, 0xb3, 4, 0, 0, 0, // pushl 4(%ebx)
1030 0xff, 0xa3, 8, 0, 0, 0, // jmp *8(%ebx)
1031 0, 0, 0, 0 // unused
1034 // Subsequent entries in the PLT for an executable.
1036 const unsigned char Output_data_plt_i386::exec_plt_entry
[plt_entry_size
] =
1038 0xff, 0x25, // jmp indirect
1039 0, 0, 0, 0, // replaced with address of symbol in .got
1040 0x68, // pushl immediate
1041 0, 0, 0, 0, // replaced with offset into relocation table
1042 0xe9, // jmp relative
1043 0, 0, 0, 0 // replaced with offset to start of .plt
1046 // Subsequent entries in the PLT for a shared object.
1048 const unsigned char Output_data_plt_i386::dyn_plt_entry
[plt_entry_size
] =
1050 0xff, 0xa3, // jmp *offset(%ebx)
1051 0, 0, 0, 0, // replaced with offset of symbol in .got
1052 0x68, // pushl immediate
1053 0, 0, 0, 0, // replaced with offset into relocation table
1054 0xe9, // jmp relative
1055 0, 0, 0, 0 // replaced with offset to start of .plt
1058 // The .eh_frame unwind information for the PLT.
1061 Output_data_plt_i386::plt_eh_frame_cie
[plt_eh_frame_cie_size
] =
1064 'z', // Augmentation: augmentation size included.
1065 'R', // Augmentation: FDE encoding included.
1066 '\0', // End of augmentation string.
1067 1, // Code alignment factor.
1068 0x7c, // Data alignment factor.
1069 8, // Return address column.
1070 1, // Augmentation size.
1071 (elfcpp::DW_EH_PE_pcrel
// FDE encoding.
1072 | elfcpp::DW_EH_PE_sdata4
),
1073 elfcpp::DW_CFA_def_cfa
, 4, 4, // DW_CFA_def_cfa: r4 (esp) ofs 4.
1074 elfcpp::DW_CFA_offset
+ 8, 1, // DW_CFA_offset: r8 (eip) at cfa-4.
1075 elfcpp::DW_CFA_nop
, // Align to 16 bytes.
1080 Output_data_plt_i386::plt_eh_frame_fde
[plt_eh_frame_fde_size
] =
1082 0, 0, 0, 0, // Replaced with offset to .plt.
1083 0, 0, 0, 0, // Replaced with size of .plt.
1084 0, // Augmentation size.
1085 elfcpp::DW_CFA_def_cfa_offset
, 8, // DW_CFA_def_cfa_offset: 8.
1086 elfcpp::DW_CFA_advance_loc
+ 6, // Advance 6 to __PLT__ + 6.
1087 elfcpp::DW_CFA_def_cfa_offset
, 12, // DW_CFA_def_cfa_offset: 12.
1088 elfcpp::DW_CFA_advance_loc
+ 10, // Advance 10 to __PLT__ + 16.
1089 elfcpp::DW_CFA_def_cfa_expression
, // DW_CFA_def_cfa_expression.
1090 11, // Block length.
1091 elfcpp::DW_OP_breg4
, 4, // Push %esp + 4.
1092 elfcpp::DW_OP_breg8
, 0, // Push %eip.
1093 elfcpp::DW_OP_lit15
, // Push 0xf.
1094 elfcpp::DW_OP_and
, // & (%eip & 0xf).
1095 elfcpp::DW_OP_lit11
, // Push 0xb.
1096 elfcpp::DW_OP_ge
, // >= ((%eip & 0xf) >= 0xb)
1097 elfcpp::DW_OP_lit2
, // Push 2.
1098 elfcpp::DW_OP_shl
, // << (((%eip & 0xf) >= 0xb) << 2)
1099 elfcpp::DW_OP_plus
, // + ((((%eip&0xf)>=0xb)<<2)+%esp+4
1100 elfcpp::DW_CFA_nop
, // Align to 32 bytes.
1106 // Write out the PLT. This uses the hand-coded instructions above,
1107 // and adjusts them as needed. This is all specified by the i386 ELF
1108 // Processor Supplement.
1111 Output_data_plt_i386::do_write(Output_file
* of
)
1113 const off_t offset
= this->offset();
1114 const section_size_type oview_size
=
1115 convert_to_section_size_type(this->data_size());
1116 unsigned char* const oview
= of
->get_output_view(offset
, oview_size
);
1118 const off_t got_file_offset
= this->got_plt_
->offset();
1119 gold_assert(parameters
->incremental_update()
1120 || (got_file_offset
+ this->got_plt_
->data_size()
1121 == this->got_irelative_
->offset()));
1122 const section_size_type got_size
=
1123 convert_to_section_size_type(this->got_plt_
->data_size()
1124 + this->got_irelative_
->data_size());
1125 unsigned char* const got_view
= of
->get_output_view(got_file_offset
,
1128 unsigned char* pov
= oview
;
1130 elfcpp::Elf_types
<32>::Elf_Addr plt_address
= this->address();
1131 elfcpp::Elf_types
<32>::Elf_Addr got_address
= this->got_plt_
->address();
1133 if (parameters
->options().output_is_position_independent())
1134 memcpy(pov
, dyn_first_plt_entry
, plt_entry_size
);
1137 memcpy(pov
, exec_first_plt_entry
, plt_entry_size
);
1138 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2, got_address
+ 4);
1139 elfcpp::Swap
<32, false>::writeval(pov
+ 8, got_address
+ 8);
1141 pov
+= plt_entry_size
;
1143 unsigned char* got_pov
= got_view
;
1145 // The first entry in the GOT is the address of the .dynamic section
1146 // aka the PT_DYNAMIC segment. The next two entries are reserved.
1147 // We saved space for them when we created the section in
1148 // Target_i386::got_section.
1149 Output_section
* dynamic
= this->layout_
->dynamic_section();
1150 uint32_t dynamic_addr
= dynamic
== NULL
? 0 : dynamic
->address();
1151 elfcpp::Swap
<32, false>::writeval(got_pov
, dynamic_addr
);
1153 memset(got_pov
, 0, 8);
1156 const int rel_size
= elfcpp::Elf_sizes
<32>::rel_size
;
1158 unsigned int plt_offset
= plt_entry_size
;
1159 unsigned int plt_rel_offset
= 0;
1160 unsigned int got_offset
= 12;
1161 const unsigned int count
= this->count_
+ this->irelative_count_
;
1162 for (unsigned int i
= 0;
1165 pov
+= plt_entry_size
,
1167 plt_offset
+= plt_entry_size
,
1168 plt_rel_offset
+= rel_size
,
1171 // Set and adjust the PLT entry itself.
1173 if (parameters
->options().output_is_position_independent())
1175 memcpy(pov
, dyn_plt_entry
, plt_entry_size
);
1176 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2, got_offset
);
1180 memcpy(pov
, exec_plt_entry
, plt_entry_size
);
1181 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 2,
1186 elfcpp::Swap_unaligned
<32, false>::writeval(pov
+ 7, plt_rel_offset
);
1187 elfcpp::Swap
<32, false>::writeval(pov
+ 12,
1188 - (plt_offset
+ plt_entry_size
));
1190 // Set the entry in the GOT.
1191 elfcpp::Swap
<32, false>::writeval(got_pov
, plt_address
+ plt_offset
+ 6);
1194 // If any STT_GNU_IFUNC symbols have PLT entries, we need to change
1195 // the GOT to point to the actual symbol value, rather than point to
1196 // the PLT entry. That will let the dynamic linker call the right
1197 // function when resolving IRELATIVE relocations.
1198 unsigned char* got_irelative_view
= got_view
+ this->got_plt_
->data_size();
1199 for (std::vector
<Global_ifunc
>::const_iterator p
=
1200 this->global_ifuncs_
.begin();
1201 p
!= this->global_ifuncs_
.end();
1204 const Sized_symbol
<32>* ssym
=
1205 static_cast<const Sized_symbol
<32>*>(p
->sym
);
1206 elfcpp::Swap
<32, false>::writeval(got_irelative_view
+ p
->got_offset
,
1210 for (std::vector
<Local_ifunc
>::const_iterator p
=
1211 this->local_ifuncs_
.begin();
1212 p
!= this->local_ifuncs_
.end();
1215 const Symbol_value
<32>* psymval
=
1216 p
->object
->local_symbol(p
->local_sym_index
);
1217 elfcpp::Swap
<32, false>::writeval(got_irelative_view
+ p
->got_offset
,
1218 psymval
->value(p
->object
, 0));
1221 gold_assert(static_cast<section_size_type
>(pov
- oview
) == oview_size
);
1222 gold_assert(static_cast<section_size_type
>(got_pov
- got_view
) == got_size
);
1224 of
->write_output_view(offset
, oview_size
, oview
);
1225 of
->write_output_view(got_file_offset
, got_size
, got_view
);
1228 // Create the PLT section.
1231 Target_i386::make_plt_section(Symbol_table
* symtab
, Layout
* layout
)
1233 if (this->plt_
== NULL
)
1235 // Create the GOT sections first.
1236 this->got_section(symtab
, layout
);
1238 this->plt_
= new Output_data_plt_i386(layout
, this->got_plt_
,
1239 this->got_irelative_
);
1240 layout
->add_output_section_data(".plt", elfcpp::SHT_PROGBITS
,
1242 | elfcpp::SHF_EXECINSTR
),
1243 this->plt_
, ORDER_PLT
, false);
1245 // Make the sh_info field of .rel.plt point to .plt.
1246 Output_section
* rel_plt_os
= this->plt_
->rel_plt()->output_section();
1247 rel_plt_os
->set_info_section(this->plt_
->output_section());
1251 // Create a PLT entry for a global symbol.
1254 Target_i386::make_plt_entry(Symbol_table
* symtab
, Layout
* layout
, Symbol
* gsym
)
1256 if (gsym
->has_plt_offset())
1258 if (this->plt_
== NULL
)
1259 this->make_plt_section(symtab
, layout
);
1260 this->plt_
->add_entry(symtab
, layout
, gsym
);
1263 // Make a PLT entry for a local STT_GNU_IFUNC symbol.
1266 Target_i386::make_local_ifunc_plt_entry(Symbol_table
* symtab
, Layout
* layout
,
1267 Sized_relobj_file
<32, false>* relobj
,
1268 unsigned int local_sym_index
)
1270 if (relobj
->local_has_plt_offset(local_sym_index
))
1272 if (this->plt_
== NULL
)
1273 this->make_plt_section(symtab
, layout
);
1274 unsigned int plt_offset
= this->plt_
->add_local_ifunc_entry(symtab
, layout
,
1277 relobj
->set_local_plt_offset(local_sym_index
, plt_offset
);
1280 // Return the number of entries in the PLT.
1283 Target_i386::plt_entry_count() const
1285 if (this->plt_
== NULL
)
1287 return this->plt_
->entry_count();
1290 // Return the offset of the first non-reserved PLT entry.
1293 Target_i386::first_plt_entry_offset() const
1295 return Output_data_plt_i386::first_plt_entry_offset();
1298 // Return the size of each PLT entry.
1301 Target_i386::plt_entry_size() const
1303 return Output_data_plt_i386::get_plt_entry_size();
1306 // Get the section to use for TLS_DESC relocations.
1308 Target_i386::Reloc_section
*
1309 Target_i386::rel_tls_desc_section(Layout
* layout
) const
1311 return this->plt_section()->rel_tls_desc(layout
);
1314 // Define the _TLS_MODULE_BASE_ symbol in the TLS segment.
1317 Target_i386::define_tls_base_symbol(Symbol_table
* symtab
, Layout
* layout
)
1319 if (this->tls_base_symbol_defined_
)
1322 Output_segment
* tls_segment
= layout
->tls_segment();
1323 if (tls_segment
!= NULL
)
1325 bool is_exec
= parameters
->options().output_is_executable();
1326 symtab
->define_in_output_segment("_TLS_MODULE_BASE_", NULL
,
1327 Symbol_table::PREDEFINED
,
1331 elfcpp::STV_HIDDEN
, 0,
1333 ? Symbol::SEGMENT_END
1334 : Symbol::SEGMENT_START
),
1337 this->tls_base_symbol_defined_
= true;
1340 // Create a GOT entry for the TLS module index.
1343 Target_i386::got_mod_index_entry(Symbol_table
* symtab
, Layout
* layout
,
1344 Sized_relobj_file
<32, false>* object
)
1346 if (this->got_mod_index_offset_
== -1U)
1348 gold_assert(symtab
!= NULL
&& layout
!= NULL
&& object
!= NULL
);
1349 Reloc_section
* rel_dyn
= this->rel_dyn_section(layout
);
1350 Output_data_got
<32, false>* got
= this->got_section(symtab
, layout
);
1351 unsigned int got_offset
= got
->add_constant(0);
1352 rel_dyn
->add_local(object
, 0, elfcpp::R_386_TLS_DTPMOD32
, got
,
1354 got
->add_constant(0);
1355 this->got_mod_index_offset_
= got_offset
;
1357 return this->got_mod_index_offset_
;
1360 // Optimize the TLS relocation type based on what we know about the
1361 // symbol. IS_FINAL is true if the final address of this symbol is
1362 // known at link time.
1364 tls::Tls_optimization
1365 Target_i386::optimize_tls_reloc(bool is_final
, int r_type
)
1367 // If we are generating a shared library, then we can't do anything
1369 if (parameters
->options().shared())
1370 return tls::TLSOPT_NONE
;
1374 case elfcpp::R_386_TLS_GD
:
1375 case elfcpp::R_386_TLS_GOTDESC
:
1376 case elfcpp::R_386_TLS_DESC_CALL
:
1377 // These are General-Dynamic which permits fully general TLS
1378 // access. Since we know that we are generating an executable,
1379 // we can convert this to Initial-Exec. If we also know that
1380 // this is a local symbol, we can further switch to Local-Exec.
1382 return tls::TLSOPT_TO_LE
;
1383 return tls::TLSOPT_TO_IE
;
1385 case elfcpp::R_386_TLS_LDM
:
1386 // This is Local-Dynamic, which refers to a local symbol in the
1387 // dynamic TLS block. Since we know that we generating an
1388 // executable, we can switch to Local-Exec.
1389 return tls::TLSOPT_TO_LE
;
1391 case elfcpp::R_386_TLS_LDO_32
:
1392 // Another type of Local-Dynamic relocation.
1393 return tls::TLSOPT_TO_LE
;
1395 case elfcpp::R_386_TLS_IE
:
1396 case elfcpp::R_386_TLS_GOTIE
:
1397 case elfcpp::R_386_TLS_IE_32
:
1398 // These are Initial-Exec relocs which get the thread offset
1399 // from the GOT. If we know that we are linking against the
1400 // local symbol, we can switch to Local-Exec, which links the
1401 // thread offset into the instruction.
1403 return tls::TLSOPT_TO_LE
;
1404 return tls::TLSOPT_NONE
;
1406 case elfcpp::R_386_TLS_LE
:
1407 case elfcpp::R_386_TLS_LE_32
:
1408 // When we already have Local-Exec, there is nothing further we
1410 return tls::TLSOPT_NONE
;
1417 // Get the Reference_flags for a particular relocation.
1420 Target_i386::Scan::get_reference_flags(unsigned int r_type
)
1424 case elfcpp::R_386_NONE
:
1425 case elfcpp::R_386_GNU_VTINHERIT
:
1426 case elfcpp::R_386_GNU_VTENTRY
:
1427 case elfcpp::R_386_GOTPC
:
1428 // No symbol reference.
1431 case elfcpp::R_386_32
:
1432 case elfcpp::R_386_16
:
1433 case elfcpp::R_386_8
:
1434 return Symbol::ABSOLUTE_REF
;
1436 case elfcpp::R_386_PC32
:
1437 case elfcpp::R_386_PC16
:
1438 case elfcpp::R_386_PC8
:
1439 case elfcpp::R_386_GOTOFF
:
1440 return Symbol::RELATIVE_REF
;
1442 case elfcpp::R_386_PLT32
:
1443 return Symbol::FUNCTION_CALL
| Symbol::RELATIVE_REF
;
1445 case elfcpp::R_386_GOT32
:
1447 return Symbol::ABSOLUTE_REF
;
1449 case elfcpp::R_386_TLS_GD
: // Global-dynamic
1450 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
1451 case elfcpp::R_386_TLS_DESC_CALL
:
1452 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
1453 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
1454 case elfcpp::R_386_TLS_IE
: // Initial-exec
1455 case elfcpp::R_386_TLS_IE_32
:
1456 case elfcpp::R_386_TLS_GOTIE
:
1457 case elfcpp::R_386_TLS_LE
: // Local-exec
1458 case elfcpp::R_386_TLS_LE_32
:
1459 return Symbol::TLS_REF
;
1461 case elfcpp::R_386_COPY
:
1462 case elfcpp::R_386_GLOB_DAT
:
1463 case elfcpp::R_386_JUMP_SLOT
:
1464 case elfcpp::R_386_RELATIVE
:
1465 case elfcpp::R_386_IRELATIVE
:
1466 case elfcpp::R_386_TLS_TPOFF
:
1467 case elfcpp::R_386_TLS_DTPMOD32
:
1468 case elfcpp::R_386_TLS_DTPOFF32
:
1469 case elfcpp::R_386_TLS_TPOFF32
:
1470 case elfcpp::R_386_TLS_DESC
:
1471 case elfcpp::R_386_32PLT
:
1472 case elfcpp::R_386_TLS_GD_32
:
1473 case elfcpp::R_386_TLS_GD_PUSH
:
1474 case elfcpp::R_386_TLS_GD_CALL
:
1475 case elfcpp::R_386_TLS_GD_POP
:
1476 case elfcpp::R_386_TLS_LDM_32
:
1477 case elfcpp::R_386_TLS_LDM_PUSH
:
1478 case elfcpp::R_386_TLS_LDM_CALL
:
1479 case elfcpp::R_386_TLS_LDM_POP
:
1480 case elfcpp::R_386_USED_BY_INTEL_200
:
1482 // Not expected. We will give an error later.
1487 // Report an unsupported relocation against a local symbol.
1490 Target_i386::Scan::unsupported_reloc_local(Sized_relobj_file
<32, false>* object
,
1491 unsigned int r_type
)
1493 gold_error(_("%s: unsupported reloc %u against local symbol"),
1494 object
->name().c_str(), r_type
);
1497 // Return whether we need to make a PLT entry for a relocation of a
1498 // given type against a STT_GNU_IFUNC symbol.
1501 Target_i386::Scan::reloc_needs_plt_for_ifunc(
1502 Sized_relobj_file
<32, false>* object
,
1503 unsigned int r_type
)
1505 int flags
= Scan::get_reference_flags(r_type
);
1506 if (flags
& Symbol::TLS_REF
)
1507 gold_error(_("%s: unsupported TLS reloc %u for IFUNC symbol"),
1508 object
->name().c_str(), r_type
);
1512 // Scan a relocation for a local symbol.
1515 Target_i386::Scan::local(Symbol_table
* symtab
,
1517 Target_i386
* target
,
1518 Sized_relobj_file
<32, false>* object
,
1519 unsigned int data_shndx
,
1520 Output_section
* output_section
,
1521 const elfcpp::Rel
<32, false>& reloc
,
1522 unsigned int r_type
,
1523 const elfcpp::Sym
<32, false>& lsym
)
1525 // A local STT_GNU_IFUNC symbol may require a PLT entry.
1526 if (lsym
.get_st_type() == elfcpp::STT_GNU_IFUNC
1527 && this->reloc_needs_plt_for_ifunc(object
, r_type
))
1529 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1530 target
->make_local_ifunc_plt_entry(symtab
, layout
, object
, r_sym
);
1535 case elfcpp::R_386_NONE
:
1536 case elfcpp::R_386_GNU_VTINHERIT
:
1537 case elfcpp::R_386_GNU_VTENTRY
:
1540 case elfcpp::R_386_32
:
1541 // If building a shared library (or a position-independent
1542 // executable), we need to create a dynamic relocation for
1543 // this location. The relocation applied at link time will
1544 // apply the link-time value, so we flag the location with
1545 // an R_386_RELATIVE relocation so the dynamic loader can
1546 // relocate it easily.
1547 if (parameters
->options().output_is_position_independent())
1549 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1550 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1551 rel_dyn
->add_local_relative(object
, r_sym
, elfcpp::R_386_RELATIVE
,
1552 output_section
, data_shndx
,
1553 reloc
.get_r_offset());
1557 case elfcpp::R_386_16
:
1558 case elfcpp::R_386_8
:
1559 // If building a shared library (or a position-independent
1560 // executable), we need to create a dynamic relocation for
1561 // this location. Because the addend needs to remain in the
1562 // data section, we need to be careful not to apply this
1563 // relocation statically.
1564 if (parameters
->options().output_is_position_independent())
1566 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1567 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1568 if (lsym
.get_st_type() != elfcpp::STT_SECTION
)
1569 rel_dyn
->add_local(object
, r_sym
, r_type
, output_section
,
1570 data_shndx
, reloc
.get_r_offset());
1573 gold_assert(lsym
.get_st_value() == 0);
1574 unsigned int shndx
= lsym
.get_st_shndx();
1576 shndx
= object
->adjust_sym_shndx(r_sym
, shndx
,
1579 object
->error(_("section symbol %u has bad shndx %u"),
1582 rel_dyn
->add_local_section(object
, shndx
,
1583 r_type
, output_section
,
1584 data_shndx
, reloc
.get_r_offset());
1589 case elfcpp::R_386_PC32
:
1590 case elfcpp::R_386_PC16
:
1591 case elfcpp::R_386_PC8
:
1594 case elfcpp::R_386_PLT32
:
1595 // Since we know this is a local symbol, we can handle this as a
1599 case elfcpp::R_386_GOTOFF
:
1600 case elfcpp::R_386_GOTPC
:
1601 // We need a GOT section.
1602 target
->got_section(symtab
, layout
);
1605 case elfcpp::R_386_GOT32
:
1607 // The symbol requires a GOT entry.
1608 Output_data_got
<32, false>* got
= target
->got_section(symtab
, layout
);
1609 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1611 // For a STT_GNU_IFUNC symbol we want the PLT offset. That
1612 // lets function pointers compare correctly with shared
1613 // libraries. Otherwise we would need an IRELATIVE reloc.
1615 if (lsym
.get_st_type() == elfcpp::STT_GNU_IFUNC
)
1616 is_new
= got
->add_local_plt(object
, r_sym
, GOT_TYPE_STANDARD
);
1618 is_new
= got
->add_local(object
, r_sym
, GOT_TYPE_STANDARD
);
1621 // If we are generating a shared object, we need to add a
1622 // dynamic RELATIVE relocation for this symbol's GOT entry.
1623 if (parameters
->options().output_is_position_independent())
1625 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1626 unsigned int got_offset
=
1627 object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
);
1628 rel_dyn
->add_local_relative(object
, r_sym
,
1629 elfcpp::R_386_RELATIVE
,
1636 // These are relocations which should only be seen by the
1637 // dynamic linker, and should never be seen here.
1638 case elfcpp::R_386_COPY
:
1639 case elfcpp::R_386_GLOB_DAT
:
1640 case elfcpp::R_386_JUMP_SLOT
:
1641 case elfcpp::R_386_RELATIVE
:
1642 case elfcpp::R_386_IRELATIVE
:
1643 case elfcpp::R_386_TLS_TPOFF
:
1644 case elfcpp::R_386_TLS_DTPMOD32
:
1645 case elfcpp::R_386_TLS_DTPOFF32
:
1646 case elfcpp::R_386_TLS_TPOFF32
:
1647 case elfcpp::R_386_TLS_DESC
:
1648 gold_error(_("%s: unexpected reloc %u in object file"),
1649 object
->name().c_str(), r_type
);
1652 // These are initial TLS relocs, which are expected when
1654 case elfcpp::R_386_TLS_GD
: // Global-dynamic
1655 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
1656 case elfcpp::R_386_TLS_DESC_CALL
:
1657 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
1658 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
1659 case elfcpp::R_386_TLS_IE
: // Initial-exec
1660 case elfcpp::R_386_TLS_IE_32
:
1661 case elfcpp::R_386_TLS_GOTIE
:
1662 case elfcpp::R_386_TLS_LE
: // Local-exec
1663 case elfcpp::R_386_TLS_LE_32
:
1665 bool output_is_shared
= parameters
->options().shared();
1666 const tls::Tls_optimization optimized_type
1667 = Target_i386::optimize_tls_reloc(!output_is_shared
, r_type
);
1670 case elfcpp::R_386_TLS_GD
: // Global-dynamic
1671 if (optimized_type
== tls::TLSOPT_NONE
)
1673 // Create a pair of GOT entries for the module index and
1674 // dtv-relative offset.
1675 Output_data_got
<32, false>* got
1676 = target
->got_section(symtab
, layout
);
1677 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1678 unsigned int shndx
= lsym
.get_st_shndx();
1680 shndx
= object
->adjust_sym_shndx(r_sym
, shndx
, &is_ordinary
);
1682 object
->error(_("local symbol %u has bad shndx %u"),
1685 got
->add_local_pair_with_rel(object
, r_sym
, shndx
,
1687 target
->rel_dyn_section(layout
),
1688 elfcpp::R_386_TLS_DTPMOD32
, 0);
1690 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1691 unsupported_reloc_local(object
, r_type
);
1694 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva)
1695 target
->define_tls_base_symbol(symtab
, layout
);
1696 if (optimized_type
== tls::TLSOPT_NONE
)
1698 // Create a double GOT entry with an R_386_TLS_DESC
1699 // reloc. The R_386_TLS_DESC reloc is resolved
1700 // lazily, so the GOT entry needs to be in an area in
1701 // .got.plt, not .got. Call got_section to make sure
1702 // the section has been created.
1703 target
->got_section(symtab
, layout
);
1704 Output_data_got
<32, false>* got
= target
->got_tlsdesc_section();
1705 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1706 if (!object
->local_has_got_offset(r_sym
, GOT_TYPE_TLS_DESC
))
1708 unsigned int got_offset
= got
->add_constant(0);
1709 // The local symbol value is stored in the second
1711 got
->add_local(object
, r_sym
, GOT_TYPE_TLS_DESC
);
1712 // That set the GOT offset of the local symbol to
1713 // point to the second entry, but we want it to
1714 // point to the first.
1715 object
->set_local_got_offset(r_sym
, GOT_TYPE_TLS_DESC
,
1717 Reloc_section
* rt
= target
->rel_tls_desc_section(layout
);
1718 rt
->add_absolute(elfcpp::R_386_TLS_DESC
, got
, got_offset
);
1721 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1722 unsupported_reloc_local(object
, r_type
);
1725 case elfcpp::R_386_TLS_DESC_CALL
:
1728 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
1729 if (optimized_type
== tls::TLSOPT_NONE
)
1731 // Create a GOT entry for the module index.
1732 target
->got_mod_index_entry(symtab
, layout
, object
);
1734 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1735 unsupported_reloc_local(object
, r_type
);
1738 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
1741 case elfcpp::R_386_TLS_IE
: // Initial-exec
1742 case elfcpp::R_386_TLS_IE_32
:
1743 case elfcpp::R_386_TLS_GOTIE
:
1744 layout
->set_has_static_tls();
1745 if (optimized_type
== tls::TLSOPT_NONE
)
1747 // For the R_386_TLS_IE relocation, we need to create a
1748 // dynamic relocation when building a shared library.
1749 if (r_type
== elfcpp::R_386_TLS_IE
1750 && parameters
->options().shared())
1752 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1754 = elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1755 rel_dyn
->add_local_relative(object
, r_sym
,
1756 elfcpp::R_386_RELATIVE
,
1757 output_section
, data_shndx
,
1758 reloc
.get_r_offset());
1760 // Create a GOT entry for the tp-relative offset.
1761 Output_data_got
<32, false>* got
1762 = target
->got_section(symtab
, layout
);
1763 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1764 unsigned int dyn_r_type
= (r_type
== elfcpp::R_386_TLS_IE_32
1765 ? elfcpp::R_386_TLS_TPOFF32
1766 : elfcpp::R_386_TLS_TPOFF
);
1767 unsigned int got_type
= (r_type
== elfcpp::R_386_TLS_IE_32
1768 ? GOT_TYPE_TLS_OFFSET
1769 : GOT_TYPE_TLS_NOFFSET
);
1770 got
->add_local_with_rel(object
, r_sym
, got_type
,
1771 target
->rel_dyn_section(layout
),
1774 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
1775 unsupported_reloc_local(object
, r_type
);
1778 case elfcpp::R_386_TLS_LE
: // Local-exec
1779 case elfcpp::R_386_TLS_LE_32
:
1780 layout
->set_has_static_tls();
1781 if (output_is_shared
)
1783 // We need to create a dynamic relocation.
1784 gold_assert(lsym
.get_st_type() != elfcpp::STT_SECTION
);
1785 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(reloc
.get_r_info());
1786 unsigned int dyn_r_type
= (r_type
== elfcpp::R_386_TLS_LE_32
1787 ? elfcpp::R_386_TLS_TPOFF32
1788 : elfcpp::R_386_TLS_TPOFF
);
1789 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1790 rel_dyn
->add_local(object
, r_sym
, dyn_r_type
, output_section
,
1791 data_shndx
, reloc
.get_r_offset());
1801 case elfcpp::R_386_32PLT
:
1802 case elfcpp::R_386_TLS_GD_32
:
1803 case elfcpp::R_386_TLS_GD_PUSH
:
1804 case elfcpp::R_386_TLS_GD_CALL
:
1805 case elfcpp::R_386_TLS_GD_POP
:
1806 case elfcpp::R_386_TLS_LDM_32
:
1807 case elfcpp::R_386_TLS_LDM_PUSH
:
1808 case elfcpp::R_386_TLS_LDM_CALL
:
1809 case elfcpp::R_386_TLS_LDM_POP
:
1810 case elfcpp::R_386_USED_BY_INTEL_200
:
1812 unsupported_reloc_local(object
, r_type
);
1817 // Report an unsupported relocation against a global symbol.
1820 Target_i386::Scan::unsupported_reloc_global(
1821 Sized_relobj_file
<32, false>* object
,
1822 unsigned int r_type
,
1825 gold_error(_("%s: unsupported reloc %u against global symbol %s"),
1826 object
->name().c_str(), r_type
, gsym
->demangled_name().c_str());
1830 Target_i386::Scan::possible_function_pointer_reloc(unsigned int r_type
)
1834 case elfcpp::R_386_32
:
1835 case elfcpp::R_386_16
:
1836 case elfcpp::R_386_8
:
1837 case elfcpp::R_386_GOTOFF
:
1838 case elfcpp::R_386_GOT32
:
1849 Target_i386::Scan::local_reloc_may_be_function_pointer(
1853 Sized_relobj_file
<32, false>* ,
1856 const elfcpp::Rel
<32, false>& ,
1857 unsigned int r_type
,
1858 const elfcpp::Sym
<32, false>&)
1860 return possible_function_pointer_reloc(r_type
);
1864 Target_i386::Scan::global_reloc_may_be_function_pointer(
1868 Sized_relobj_file
<32, false>* ,
1871 const elfcpp::Rel
<32, false>& ,
1872 unsigned int r_type
,
1875 return possible_function_pointer_reloc(r_type
);
1878 // Scan a relocation for a global symbol.
1881 Target_i386::Scan::global(Symbol_table
* symtab
,
1883 Target_i386
* target
,
1884 Sized_relobj_file
<32, false>* object
,
1885 unsigned int data_shndx
,
1886 Output_section
* output_section
,
1887 const elfcpp::Rel
<32, false>& reloc
,
1888 unsigned int r_type
,
1891 // A STT_GNU_IFUNC symbol may require a PLT entry.
1892 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
1893 && this->reloc_needs_plt_for_ifunc(object
, r_type
))
1894 target
->make_plt_entry(symtab
, layout
, gsym
);
1898 case elfcpp::R_386_NONE
:
1899 case elfcpp::R_386_GNU_VTINHERIT
:
1900 case elfcpp::R_386_GNU_VTENTRY
:
1903 case elfcpp::R_386_32
:
1904 case elfcpp::R_386_16
:
1905 case elfcpp::R_386_8
:
1907 // Make a PLT entry if necessary.
1908 if (gsym
->needs_plt_entry())
1910 target
->make_plt_entry(symtab
, layout
, gsym
);
1911 // Since this is not a PC-relative relocation, we may be
1912 // taking the address of a function. In that case we need to
1913 // set the entry in the dynamic symbol table to the address of
1915 if (gsym
->is_from_dynobj() && !parameters
->options().shared())
1916 gsym
->set_needs_dynsym_value();
1918 // Make a dynamic relocation if necessary.
1919 if (gsym
->needs_dynamic_reloc(Scan::get_reference_flags(r_type
)))
1921 if (gsym
->may_need_copy_reloc())
1923 target
->copy_reloc(symtab
, layout
, object
,
1924 data_shndx
, output_section
, gsym
, reloc
);
1926 else if (r_type
== elfcpp::R_386_32
1927 && gsym
->type() == elfcpp::STT_GNU_IFUNC
1928 && gsym
->can_use_relative_reloc(false)
1929 && !gsym
->is_from_dynobj()
1930 && !gsym
->is_undefined()
1931 && !gsym
->is_preemptible())
1933 // Use an IRELATIVE reloc for a locally defined
1934 // STT_GNU_IFUNC symbol. This makes a function
1935 // address in a PIE executable match the address in a
1936 // shared library that it links against.
1937 Reloc_section
* rel_dyn
= target
->rel_irelative_section(layout
);
1938 rel_dyn
->add_symbolless_global_addend(gsym
,
1939 elfcpp::R_386_IRELATIVE
,
1942 reloc
.get_r_offset());
1944 else if (r_type
== elfcpp::R_386_32
1945 && gsym
->can_use_relative_reloc(false))
1947 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1948 rel_dyn
->add_global_relative(gsym
, elfcpp::R_386_RELATIVE
,
1949 output_section
, object
,
1950 data_shndx
, reloc
.get_r_offset());
1954 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1955 rel_dyn
->add_global(gsym
, r_type
, output_section
, object
,
1956 data_shndx
, reloc
.get_r_offset());
1962 case elfcpp::R_386_PC32
:
1963 case elfcpp::R_386_PC16
:
1964 case elfcpp::R_386_PC8
:
1966 // Make a PLT entry if necessary.
1967 if (gsym
->needs_plt_entry())
1969 // These relocations are used for function calls only in
1970 // non-PIC code. For a 32-bit relocation in a shared library,
1971 // we'll need a text relocation anyway, so we can skip the
1972 // PLT entry and let the dynamic linker bind the call directly
1973 // to the target. For smaller relocations, we should use a
1974 // PLT entry to ensure that the call can reach.
1975 if (!parameters
->options().shared()
1976 || r_type
!= elfcpp::R_386_PC32
)
1977 target
->make_plt_entry(symtab
, layout
, gsym
);
1979 // Make a dynamic relocation if necessary.
1980 if (gsym
->needs_dynamic_reloc(Scan::get_reference_flags(r_type
)))
1982 if (gsym
->may_need_copy_reloc())
1984 target
->copy_reloc(symtab
, layout
, object
,
1985 data_shndx
, output_section
, gsym
, reloc
);
1989 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
1990 rel_dyn
->add_global(gsym
, r_type
, output_section
, object
,
1991 data_shndx
, reloc
.get_r_offset());
1997 case elfcpp::R_386_GOT32
:
1999 // The symbol requires a GOT entry.
2000 Output_data_got
<32, false>* got
= target
->got_section(symtab
, layout
);
2001 if (gsym
->final_value_is_known())
2003 // For a STT_GNU_IFUNC symbol we want the PLT address.
2004 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
)
2005 got
->add_global_plt(gsym
, GOT_TYPE_STANDARD
);
2007 got
->add_global(gsym
, GOT_TYPE_STANDARD
);
2011 // If this symbol is not fully resolved, we need to add a
2012 // GOT entry with a dynamic relocation.
2013 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
2015 // Use a GLOB_DAT rather than a RELATIVE reloc if:
2017 // 1) The symbol may be defined in some other module.
2019 // 2) We are building a shared library and this is a
2020 // protected symbol; using GLOB_DAT means that the dynamic
2021 // linker can use the address of the PLT in the main
2022 // executable when appropriate so that function address
2023 // comparisons work.
2025 // 3) This is a STT_GNU_IFUNC symbol in position dependent
2026 // code, again so that function address comparisons work.
2027 if (gsym
->is_from_dynobj()
2028 || gsym
->is_undefined()
2029 || gsym
->is_preemptible()
2030 || (gsym
->visibility() == elfcpp::STV_PROTECTED
2031 && parameters
->options().shared())
2032 || (gsym
->type() == elfcpp::STT_GNU_IFUNC
2033 && parameters
->options().output_is_position_independent()))
2034 got
->add_global_with_rel(gsym
, GOT_TYPE_STANDARD
,
2035 rel_dyn
, elfcpp::R_386_GLOB_DAT
);
2038 // For a STT_GNU_IFUNC symbol we want to write the PLT
2039 // offset into the GOT, so that function pointer
2040 // comparisons work correctly.
2042 if (gsym
->type() != elfcpp::STT_GNU_IFUNC
)
2043 is_new
= got
->add_global(gsym
, GOT_TYPE_STANDARD
);
2046 is_new
= got
->add_global_plt(gsym
, GOT_TYPE_STANDARD
);
2047 // Tell the dynamic linker to use the PLT address
2048 // when resolving relocations.
2049 if (gsym
->is_from_dynobj()
2050 && !parameters
->options().shared())
2051 gsym
->set_needs_dynsym_value();
2055 unsigned int got_off
= gsym
->got_offset(GOT_TYPE_STANDARD
);
2056 rel_dyn
->add_global_relative(gsym
, elfcpp::R_386_RELATIVE
,
2064 case elfcpp::R_386_PLT32
:
2065 // If the symbol is fully resolved, this is just a PC32 reloc.
2066 // Otherwise we need a PLT entry.
2067 if (gsym
->final_value_is_known())
2069 // If building a shared library, we can also skip the PLT entry
2070 // if the symbol is defined in the output file and is protected
2072 if (gsym
->is_defined()
2073 && !gsym
->is_from_dynobj()
2074 && !gsym
->is_preemptible())
2076 target
->make_plt_entry(symtab
, layout
, gsym
);
2079 case elfcpp::R_386_GOTOFF
:
2080 case elfcpp::R_386_GOTPC
:
2081 // We need a GOT section.
2082 target
->got_section(symtab
, layout
);
2085 // These are relocations which should only be seen by the
2086 // dynamic linker, and should never be seen here.
2087 case elfcpp::R_386_COPY
:
2088 case elfcpp::R_386_GLOB_DAT
:
2089 case elfcpp::R_386_JUMP_SLOT
:
2090 case elfcpp::R_386_RELATIVE
:
2091 case elfcpp::R_386_IRELATIVE
:
2092 case elfcpp::R_386_TLS_TPOFF
:
2093 case elfcpp::R_386_TLS_DTPMOD32
:
2094 case elfcpp::R_386_TLS_DTPOFF32
:
2095 case elfcpp::R_386_TLS_TPOFF32
:
2096 case elfcpp::R_386_TLS_DESC
:
2097 gold_error(_("%s: unexpected reloc %u in object file"),
2098 object
->name().c_str(), r_type
);
2101 // These are initial tls relocs, which are expected when
2103 case elfcpp::R_386_TLS_GD
: // Global-dynamic
2104 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
2105 case elfcpp::R_386_TLS_DESC_CALL
:
2106 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
2107 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
2108 case elfcpp::R_386_TLS_IE
: // Initial-exec
2109 case elfcpp::R_386_TLS_IE_32
:
2110 case elfcpp::R_386_TLS_GOTIE
:
2111 case elfcpp::R_386_TLS_LE
: // Local-exec
2112 case elfcpp::R_386_TLS_LE_32
:
2114 const bool is_final
= gsym
->final_value_is_known();
2115 const tls::Tls_optimization optimized_type
2116 = Target_i386::optimize_tls_reloc(is_final
, r_type
);
2119 case elfcpp::R_386_TLS_GD
: // Global-dynamic
2120 if (optimized_type
== tls::TLSOPT_NONE
)
2122 // Create a pair of GOT entries for the module index and
2123 // dtv-relative offset.
2124 Output_data_got
<32, false>* got
2125 = target
->got_section(symtab
, layout
);
2126 got
->add_global_pair_with_rel(gsym
, GOT_TYPE_TLS_PAIR
,
2127 target
->rel_dyn_section(layout
),
2128 elfcpp::R_386_TLS_DTPMOD32
,
2129 elfcpp::R_386_TLS_DTPOFF32
);
2131 else if (optimized_type
== tls::TLSOPT_TO_IE
)
2133 // Create a GOT entry for the tp-relative offset.
2134 Output_data_got
<32, false>* got
2135 = target
->got_section(symtab
, layout
);
2136 got
->add_global_with_rel(gsym
, GOT_TYPE_TLS_NOFFSET
,
2137 target
->rel_dyn_section(layout
),
2138 elfcpp::R_386_TLS_TPOFF
);
2140 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2141 unsupported_reloc_global(object
, r_type
, gsym
);
2144 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (~oliva url)
2145 target
->define_tls_base_symbol(symtab
, layout
);
2146 if (optimized_type
== tls::TLSOPT_NONE
)
2148 // Create a double GOT entry with an R_386_TLS_DESC
2149 // reloc. The R_386_TLS_DESC reloc is resolved
2150 // lazily, so the GOT entry needs to be in an area in
2151 // .got.plt, not .got. Call got_section to make sure
2152 // the section has been created.
2153 target
->got_section(symtab
, layout
);
2154 Output_data_got
<32, false>* got
= target
->got_tlsdesc_section();
2155 Reloc_section
* rt
= target
->rel_tls_desc_section(layout
);
2156 got
->add_global_pair_with_rel(gsym
, GOT_TYPE_TLS_DESC
, rt
,
2157 elfcpp::R_386_TLS_DESC
, 0);
2159 else if (optimized_type
== tls::TLSOPT_TO_IE
)
2161 // Create a GOT entry for the tp-relative offset.
2162 Output_data_got
<32, false>* got
2163 = target
->got_section(symtab
, layout
);
2164 got
->add_global_with_rel(gsym
, GOT_TYPE_TLS_NOFFSET
,
2165 target
->rel_dyn_section(layout
),
2166 elfcpp::R_386_TLS_TPOFF
);
2168 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2169 unsupported_reloc_global(object
, r_type
, gsym
);
2172 case elfcpp::R_386_TLS_DESC_CALL
:
2175 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
2176 if (optimized_type
== tls::TLSOPT_NONE
)
2178 // Create a GOT entry for the module index.
2179 target
->got_mod_index_entry(symtab
, layout
, object
);
2181 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2182 unsupported_reloc_global(object
, r_type
, gsym
);
2185 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
2188 case elfcpp::R_386_TLS_IE
: // Initial-exec
2189 case elfcpp::R_386_TLS_IE_32
:
2190 case elfcpp::R_386_TLS_GOTIE
:
2191 layout
->set_has_static_tls();
2192 if (optimized_type
== tls::TLSOPT_NONE
)
2194 // For the R_386_TLS_IE relocation, we need to create a
2195 // dynamic relocation when building a shared library.
2196 if (r_type
== elfcpp::R_386_TLS_IE
2197 && parameters
->options().shared())
2199 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
2200 rel_dyn
->add_global_relative(gsym
, elfcpp::R_386_RELATIVE
,
2201 output_section
, object
,
2203 reloc
.get_r_offset());
2205 // Create a GOT entry for the tp-relative offset.
2206 Output_data_got
<32, false>* got
2207 = target
->got_section(symtab
, layout
);
2208 unsigned int dyn_r_type
= (r_type
== elfcpp::R_386_TLS_IE_32
2209 ? elfcpp::R_386_TLS_TPOFF32
2210 : elfcpp::R_386_TLS_TPOFF
);
2211 unsigned int got_type
= (r_type
== elfcpp::R_386_TLS_IE_32
2212 ? GOT_TYPE_TLS_OFFSET
2213 : GOT_TYPE_TLS_NOFFSET
);
2214 got
->add_global_with_rel(gsym
, got_type
,
2215 target
->rel_dyn_section(layout
),
2218 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2219 unsupported_reloc_global(object
, r_type
, gsym
);
2222 case elfcpp::R_386_TLS_LE
: // Local-exec
2223 case elfcpp::R_386_TLS_LE_32
:
2224 layout
->set_has_static_tls();
2225 if (parameters
->options().shared())
2227 // We need to create a dynamic relocation.
2228 unsigned int dyn_r_type
= (r_type
== elfcpp::R_386_TLS_LE_32
2229 ? elfcpp::R_386_TLS_TPOFF32
2230 : elfcpp::R_386_TLS_TPOFF
);
2231 Reloc_section
* rel_dyn
= target
->rel_dyn_section(layout
);
2232 rel_dyn
->add_global(gsym
, dyn_r_type
, output_section
, object
,
2233 data_shndx
, reloc
.get_r_offset());
2243 case elfcpp::R_386_32PLT
:
2244 case elfcpp::R_386_TLS_GD_32
:
2245 case elfcpp::R_386_TLS_GD_PUSH
:
2246 case elfcpp::R_386_TLS_GD_CALL
:
2247 case elfcpp::R_386_TLS_GD_POP
:
2248 case elfcpp::R_386_TLS_LDM_32
:
2249 case elfcpp::R_386_TLS_LDM_PUSH
:
2250 case elfcpp::R_386_TLS_LDM_CALL
:
2251 case elfcpp::R_386_TLS_LDM_POP
:
2252 case elfcpp::R_386_USED_BY_INTEL_200
:
2254 unsupported_reloc_global(object
, r_type
, gsym
);
2259 // Process relocations for gc.
2262 Target_i386::gc_process_relocs(Symbol_table
* symtab
,
2264 Sized_relobj_file
<32, false>* object
,
2265 unsigned int data_shndx
,
2267 const unsigned char* prelocs
,
2269 Output_section
* output_section
,
2270 bool needs_special_offset_handling
,
2271 size_t local_symbol_count
,
2272 const unsigned char* plocal_symbols
)
2274 gold::gc_process_relocs
<32, false, Target_i386
, elfcpp::SHT_REL
,
2276 Target_i386::Relocatable_size_for_reloc
>(
2285 needs_special_offset_handling
,
2290 // Scan relocations for a section.
2293 Target_i386::scan_relocs(Symbol_table
* symtab
,
2295 Sized_relobj_file
<32, false>* object
,
2296 unsigned int data_shndx
,
2297 unsigned int sh_type
,
2298 const unsigned char* prelocs
,
2300 Output_section
* output_section
,
2301 bool needs_special_offset_handling
,
2302 size_t local_symbol_count
,
2303 const unsigned char* plocal_symbols
)
2305 if (sh_type
== elfcpp::SHT_RELA
)
2307 gold_error(_("%s: unsupported RELA reloc section"),
2308 object
->name().c_str());
2312 gold::scan_relocs
<32, false, Target_i386
, elfcpp::SHT_REL
,
2322 needs_special_offset_handling
,
2327 // Finalize the sections.
2330 Target_i386::do_finalize_sections(
2332 const Input_objects
*,
2333 Symbol_table
* symtab
)
2335 const Reloc_section
* rel_plt
= (this->plt_
== NULL
2337 : this->plt_
->rel_plt());
2338 layout
->add_target_dynamic_tags(true, this->got_plt_
, rel_plt
,
2339 this->rel_dyn_
, true, false);
2341 // Emit any relocs we saved in an attempt to avoid generating COPY
2343 if (this->copy_relocs_
.any_saved_relocs())
2344 this->copy_relocs_
.emit(this->rel_dyn_section(layout
));
2346 // Set the size of the _GLOBAL_OFFSET_TABLE_ symbol to the size of
2347 // the .got.plt section.
2348 Symbol
* sym
= this->global_offset_table_
;
2351 uint32_t data_size
= this->got_plt_
->current_data_size();
2352 symtab
->get_sized_symbol
<32>(sym
)->set_symsize(data_size
);
2355 if (parameters
->doing_static_link()
2356 && (this->plt_
== NULL
|| !this->plt_
->has_irelative_section()))
2358 // If linking statically, make sure that the __rel_iplt symbols
2359 // were defined if necessary, even if we didn't create a PLT.
2360 static const Define_symbol_in_segment syms
[] =
2363 "__rel_iplt_start", // name
2364 elfcpp::PT_LOAD
, // segment_type
2365 elfcpp::PF_W
, // segment_flags_set
2366 elfcpp::PF(0), // segment_flags_clear
2369 elfcpp::STT_NOTYPE
, // type
2370 elfcpp::STB_GLOBAL
, // binding
2371 elfcpp::STV_HIDDEN
, // visibility
2373 Symbol::SEGMENT_START
, // offset_from_base
2377 "__rel_iplt_end", // name
2378 elfcpp::PT_LOAD
, // segment_type
2379 elfcpp::PF_W
, // segment_flags_set
2380 elfcpp::PF(0), // segment_flags_clear
2383 elfcpp::STT_NOTYPE
, // type
2384 elfcpp::STB_GLOBAL
, // binding
2385 elfcpp::STV_HIDDEN
, // visibility
2387 Symbol::SEGMENT_START
, // offset_from_base
2392 symtab
->define_symbols(layout
, 2, syms
,
2393 layout
->script_options()->saw_sections_clause());
2397 // Return whether a direct absolute static relocation needs to be applied.
2398 // In cases where Scan::local() or Scan::global() has created
2399 // a dynamic relocation other than R_386_RELATIVE, the addend
2400 // of the relocation is carried in the data, and we must not
2401 // apply the static relocation.
2404 Target_i386::Relocate::should_apply_static_reloc(const Sized_symbol
<32>* gsym
,
2405 unsigned int r_type
,
2407 Output_section
* output_section
)
2409 // If the output section is not allocated, then we didn't call
2410 // scan_relocs, we didn't create a dynamic reloc, and we must apply
2412 if ((output_section
->flags() & elfcpp::SHF_ALLOC
) == 0)
2415 int ref_flags
= Scan::get_reference_flags(r_type
);
2417 // For local symbols, we will have created a non-RELATIVE dynamic
2418 // relocation only if (a) the output is position independent,
2419 // (b) the relocation is absolute (not pc- or segment-relative), and
2420 // (c) the relocation is not 32 bits wide.
2422 return !(parameters
->options().output_is_position_independent()
2423 && (ref_flags
& Symbol::ABSOLUTE_REF
)
2426 // For global symbols, we use the same helper routines used in the
2427 // scan pass. If we did not create a dynamic relocation, or if we
2428 // created a RELATIVE dynamic relocation, we should apply the static
2430 bool has_dyn
= gsym
->needs_dynamic_reloc(ref_flags
);
2431 bool is_rel
= (ref_flags
& Symbol::ABSOLUTE_REF
)
2432 && gsym
->can_use_relative_reloc(ref_flags
2433 & Symbol::FUNCTION_CALL
);
2434 return !has_dyn
|| is_rel
;
2437 // Perform a relocation.
2440 Target_i386::Relocate::relocate(const Relocate_info
<32, false>* relinfo
,
2441 Target_i386
* target
,
2442 Output_section
* output_section
,
2444 const elfcpp::Rel
<32, false>& rel
,
2445 unsigned int r_type
,
2446 const Sized_symbol
<32>* gsym
,
2447 const Symbol_value
<32>* psymval
,
2448 unsigned char* view
,
2449 elfcpp::Elf_types
<32>::Elf_Addr address
,
2450 section_size_type view_size
)
2452 if (this->skip_call_tls_get_addr_
)
2454 if ((r_type
!= elfcpp::R_386_PLT32
2455 && r_type
!= elfcpp::R_386_PC32
)
2457 || strcmp(gsym
->name(), "___tls_get_addr") != 0)
2458 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2459 _("missing expected TLS relocation"));
2462 this->skip_call_tls_get_addr_
= false;
2467 const Sized_relobj_file
<32, false>* object
= relinfo
->object
;
2469 // Pick the value to use for symbols defined in shared objects.
2470 Symbol_value
<32> symval
;
2472 && gsym
->type() == elfcpp::STT_GNU_IFUNC
2473 && r_type
== elfcpp::R_386_32
2474 && gsym
->needs_dynamic_reloc(Scan::get_reference_flags(r_type
))
2475 && gsym
->can_use_relative_reloc(false)
2476 && !gsym
->is_from_dynobj()
2477 && !gsym
->is_undefined()
2478 && !gsym
->is_preemptible())
2480 // In this case we are generating a R_386_IRELATIVE reloc. We
2481 // want to use the real value of the symbol, not the PLT offset.
2483 else if (gsym
!= NULL
2484 && gsym
->use_plt_offset(Scan::get_reference_flags(r_type
)))
2486 symval
.set_output_value(target
->plt_address_for_global(gsym
)
2487 + gsym
->plt_offset());
2490 else if (gsym
== NULL
&& psymval
->is_ifunc_symbol())
2492 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(rel
.get_r_info());
2493 if (object
->local_has_plt_offset(r_sym
))
2495 symval
.set_output_value(target
->plt_address_for_local(object
, r_sym
)
2496 + object
->local_plt_offset(r_sym
));
2501 // Get the GOT offset if needed.
2502 // The GOT pointer points to the end of the GOT section.
2503 // We need to subtract the size of the GOT section to get
2504 // the actual offset to use in the relocation.
2505 bool have_got_offset
= false;
2506 unsigned int got_offset
= 0;
2509 case elfcpp::R_386_GOT32
:
2512 gold_assert(gsym
->has_got_offset(GOT_TYPE_STANDARD
));
2513 got_offset
= (gsym
->got_offset(GOT_TYPE_STANDARD
)
2514 - target
->got_size());
2518 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(rel
.get_r_info());
2519 gold_assert(object
->local_has_got_offset(r_sym
, GOT_TYPE_STANDARD
));
2520 got_offset
= (object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
)
2521 - target
->got_size());
2523 have_got_offset
= true;
2532 case elfcpp::R_386_NONE
:
2533 case elfcpp::R_386_GNU_VTINHERIT
:
2534 case elfcpp::R_386_GNU_VTENTRY
:
2537 case elfcpp::R_386_32
:
2538 if (should_apply_static_reloc(gsym
, r_type
, true, output_section
))
2539 Relocate_functions
<32, false>::rel32(view
, object
, psymval
);
2542 case elfcpp::R_386_PC32
:
2543 if (should_apply_static_reloc(gsym
, r_type
, true, output_section
))
2544 Relocate_functions
<32, false>::pcrel32(view
, object
, psymval
, address
);
2547 case elfcpp::R_386_16
:
2548 if (should_apply_static_reloc(gsym
, r_type
, false, output_section
))
2549 Relocate_functions
<32, false>::rel16(view
, object
, psymval
);
2552 case elfcpp::R_386_PC16
:
2553 if (should_apply_static_reloc(gsym
, r_type
, false, output_section
))
2554 Relocate_functions
<32, false>::pcrel16(view
, object
, psymval
, address
);
2557 case elfcpp::R_386_8
:
2558 if (should_apply_static_reloc(gsym
, r_type
, false, output_section
))
2559 Relocate_functions
<32, false>::rel8(view
, object
, psymval
);
2562 case elfcpp::R_386_PC8
:
2563 if (should_apply_static_reloc(gsym
, r_type
, false, output_section
))
2564 Relocate_functions
<32, false>::pcrel8(view
, object
, psymval
, address
);
2567 case elfcpp::R_386_PLT32
:
2568 gold_assert(gsym
== NULL
2569 || gsym
->has_plt_offset()
2570 || gsym
->final_value_is_known()
2571 || (gsym
->is_defined()
2572 && !gsym
->is_from_dynobj()
2573 && !gsym
->is_preemptible()));
2574 Relocate_functions
<32, false>::pcrel32(view
, object
, psymval
, address
);
2577 case elfcpp::R_386_GOT32
:
2578 gold_assert(have_got_offset
);
2579 Relocate_functions
<32, false>::rel32(view
, got_offset
);
2582 case elfcpp::R_386_GOTOFF
:
2584 elfcpp::Elf_types
<32>::Elf_Addr value
;
2585 value
= (psymval
->value(object
, 0)
2586 - target
->got_plt_section()->address());
2587 Relocate_functions
<32, false>::rel32(view
, value
);
2591 case elfcpp::R_386_GOTPC
:
2593 elfcpp::Elf_types
<32>::Elf_Addr value
;
2594 value
= target
->got_plt_section()->address();
2595 Relocate_functions
<32, false>::pcrel32(view
, value
, address
);
2599 case elfcpp::R_386_COPY
:
2600 case elfcpp::R_386_GLOB_DAT
:
2601 case elfcpp::R_386_JUMP_SLOT
:
2602 case elfcpp::R_386_RELATIVE
:
2603 case elfcpp::R_386_IRELATIVE
:
2604 // These are outstanding tls relocs, which are unexpected when
2606 case elfcpp::R_386_TLS_TPOFF
:
2607 case elfcpp::R_386_TLS_DTPMOD32
:
2608 case elfcpp::R_386_TLS_DTPOFF32
:
2609 case elfcpp::R_386_TLS_TPOFF32
:
2610 case elfcpp::R_386_TLS_DESC
:
2611 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2612 _("unexpected reloc %u in object file"),
2616 // These are initial tls relocs, which are expected when
2618 case elfcpp::R_386_TLS_GD
: // Global-dynamic
2619 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
2620 case elfcpp::R_386_TLS_DESC_CALL
:
2621 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
2622 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
2623 case elfcpp::R_386_TLS_IE
: // Initial-exec
2624 case elfcpp::R_386_TLS_IE_32
:
2625 case elfcpp::R_386_TLS_GOTIE
:
2626 case elfcpp::R_386_TLS_LE
: // Local-exec
2627 case elfcpp::R_386_TLS_LE_32
:
2628 this->relocate_tls(relinfo
, target
, relnum
, rel
, r_type
, gsym
, psymval
,
2629 view
, address
, view_size
);
2632 case elfcpp::R_386_32PLT
:
2633 case elfcpp::R_386_TLS_GD_32
:
2634 case elfcpp::R_386_TLS_GD_PUSH
:
2635 case elfcpp::R_386_TLS_GD_CALL
:
2636 case elfcpp::R_386_TLS_GD_POP
:
2637 case elfcpp::R_386_TLS_LDM_32
:
2638 case elfcpp::R_386_TLS_LDM_PUSH
:
2639 case elfcpp::R_386_TLS_LDM_CALL
:
2640 case elfcpp::R_386_TLS_LDM_POP
:
2641 case elfcpp::R_386_USED_BY_INTEL_200
:
2643 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2644 _("unsupported reloc %u"),
2652 // Perform a TLS relocation.
2655 Target_i386::Relocate::relocate_tls(const Relocate_info
<32, false>* relinfo
,
2656 Target_i386
* target
,
2658 const elfcpp::Rel
<32, false>& rel
,
2659 unsigned int r_type
,
2660 const Sized_symbol
<32>* gsym
,
2661 const Symbol_value
<32>* psymval
,
2662 unsigned char* view
,
2663 elfcpp::Elf_types
<32>::Elf_Addr
,
2664 section_size_type view_size
)
2666 Output_segment
* tls_segment
= relinfo
->layout
->tls_segment();
2668 const Sized_relobj_file
<32, false>* object
= relinfo
->object
;
2670 elfcpp::Elf_types
<32>::Elf_Addr value
= psymval
->value(object
, 0);
2672 const bool is_final
= (gsym
== NULL
2673 ? !parameters
->options().shared()
2674 : gsym
->final_value_is_known());
2675 const tls::Tls_optimization optimized_type
2676 = Target_i386::optimize_tls_reloc(is_final
, r_type
);
2679 case elfcpp::R_386_TLS_GD
: // Global-dynamic
2680 if (optimized_type
== tls::TLSOPT_TO_LE
)
2682 if (tls_segment
== NULL
)
2684 gold_assert(parameters
->errors()->error_count() > 0
2685 || issue_undefined_symbol_error(gsym
));
2688 this->tls_gd_to_le(relinfo
, relnum
, tls_segment
,
2689 rel
, r_type
, value
, view
,
2695 unsigned int got_type
= (optimized_type
== tls::TLSOPT_TO_IE
2696 ? GOT_TYPE_TLS_NOFFSET
2697 : GOT_TYPE_TLS_PAIR
);
2698 unsigned int got_offset
;
2701 gold_assert(gsym
->has_got_offset(got_type
));
2702 got_offset
= gsym
->got_offset(got_type
) - target
->got_size();
2706 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(rel
.get_r_info());
2707 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
2708 got_offset
= (object
->local_got_offset(r_sym
, got_type
)
2709 - target
->got_size());
2711 if (optimized_type
== tls::TLSOPT_TO_IE
)
2713 this->tls_gd_to_ie(relinfo
, relnum
, tls_segment
, rel
, r_type
,
2714 got_offset
, view
, view_size
);
2717 else if (optimized_type
== tls::TLSOPT_NONE
)
2719 // Relocate the field with the offset of the pair of GOT
2721 Relocate_functions
<32, false>::rel32(view
, got_offset
);
2725 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2726 _("unsupported reloc %u"),
2730 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
2731 case elfcpp::R_386_TLS_DESC_CALL
:
2732 this->local_dynamic_type_
= LOCAL_DYNAMIC_GNU
;
2733 if (optimized_type
== tls::TLSOPT_TO_LE
)
2735 if (tls_segment
== NULL
)
2737 gold_assert(parameters
->errors()->error_count() > 0
2738 || issue_undefined_symbol_error(gsym
));
2741 this->tls_desc_gd_to_le(relinfo
, relnum
, tls_segment
,
2742 rel
, r_type
, value
, view
,
2748 unsigned int got_type
= (optimized_type
== tls::TLSOPT_TO_IE
2749 ? GOT_TYPE_TLS_NOFFSET
2750 : GOT_TYPE_TLS_DESC
);
2751 unsigned int got_offset
= 0;
2752 if (r_type
== elfcpp::R_386_TLS_GOTDESC
2753 && optimized_type
== tls::TLSOPT_NONE
)
2755 // We created GOT entries in the .got.tlsdesc portion of
2756 // the .got.plt section, but the offset stored in the
2757 // symbol is the offset within .got.tlsdesc.
2758 got_offset
= (target
->got_size()
2759 + target
->got_plt_section()->data_size());
2763 gold_assert(gsym
->has_got_offset(got_type
));
2764 got_offset
+= gsym
->got_offset(got_type
) - target
->got_size();
2768 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(rel
.get_r_info());
2769 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
2770 got_offset
+= (object
->local_got_offset(r_sym
, got_type
)
2771 - target
->got_size());
2773 if (optimized_type
== tls::TLSOPT_TO_IE
)
2775 if (tls_segment
== NULL
)
2777 gold_assert(parameters
->errors()->error_count() > 0
2778 || issue_undefined_symbol_error(gsym
));
2781 this->tls_desc_gd_to_ie(relinfo
, relnum
, tls_segment
, rel
, r_type
,
2782 got_offset
, view
, view_size
);
2785 else if (optimized_type
== tls::TLSOPT_NONE
)
2787 if (r_type
== elfcpp::R_386_TLS_GOTDESC
)
2789 // Relocate the field with the offset of the pair of GOT
2791 Relocate_functions
<32, false>::rel32(view
, got_offset
);
2796 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2797 _("unsupported reloc %u"),
2801 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
2802 if (this->local_dynamic_type_
== LOCAL_DYNAMIC_SUN
)
2804 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2805 _("both SUN and GNU model "
2806 "TLS relocations"));
2809 this->local_dynamic_type_
= LOCAL_DYNAMIC_GNU
;
2810 if (optimized_type
== tls::TLSOPT_TO_LE
)
2812 if (tls_segment
== NULL
)
2814 gold_assert(parameters
->errors()->error_count() > 0
2815 || issue_undefined_symbol_error(gsym
));
2818 this->tls_ld_to_le(relinfo
, relnum
, tls_segment
, rel
, r_type
,
2819 value
, view
, view_size
);
2822 else if (optimized_type
== tls::TLSOPT_NONE
)
2824 // Relocate the field with the offset of the GOT entry for
2825 // the module index.
2826 unsigned int got_offset
;
2827 got_offset
= (target
->got_mod_index_entry(NULL
, NULL
, NULL
)
2828 - target
->got_size());
2829 Relocate_functions
<32, false>::rel32(view
, got_offset
);
2832 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2833 _("unsupported reloc %u"),
2837 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
2838 if (optimized_type
== tls::TLSOPT_TO_LE
)
2840 // This reloc can appear in debugging sections, in which
2841 // case we must not convert to local-exec. We decide what
2842 // to do based on whether the section is marked as
2843 // containing executable code. That is what the GNU linker
2845 elfcpp::Shdr
<32, false> shdr(relinfo
->data_shdr
);
2846 if ((shdr
.get_sh_flags() & elfcpp::SHF_EXECINSTR
) != 0)
2848 if (tls_segment
== NULL
)
2850 gold_assert(parameters
->errors()->error_count() > 0
2851 || issue_undefined_symbol_error(gsym
));
2854 value
-= tls_segment
->memsz();
2857 Relocate_functions
<32, false>::rel32(view
, value
);
2860 case elfcpp::R_386_TLS_IE
: // Initial-exec
2861 case elfcpp::R_386_TLS_GOTIE
:
2862 case elfcpp::R_386_TLS_IE_32
:
2863 if (optimized_type
== tls::TLSOPT_TO_LE
)
2865 if (tls_segment
== NULL
)
2867 gold_assert(parameters
->errors()->error_count() > 0
2868 || issue_undefined_symbol_error(gsym
));
2871 Target_i386::Relocate::tls_ie_to_le(relinfo
, relnum
, tls_segment
,
2872 rel
, r_type
, value
, view
,
2876 else if (optimized_type
== tls::TLSOPT_NONE
)
2878 // Relocate the field with the offset of the GOT entry for
2879 // the tp-relative offset of the symbol.
2880 unsigned int got_type
= (r_type
== elfcpp::R_386_TLS_IE_32
2881 ? GOT_TYPE_TLS_OFFSET
2882 : GOT_TYPE_TLS_NOFFSET
);
2883 unsigned int got_offset
;
2886 gold_assert(gsym
->has_got_offset(got_type
));
2887 got_offset
= gsym
->got_offset(got_type
);
2891 unsigned int r_sym
= elfcpp::elf_r_sym
<32>(rel
.get_r_info());
2892 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
2893 got_offset
= object
->local_got_offset(r_sym
, got_type
);
2895 // For the R_386_TLS_IE relocation, we need to apply the
2896 // absolute address of the GOT entry.
2897 if (r_type
== elfcpp::R_386_TLS_IE
)
2898 got_offset
+= target
->got_plt_section()->address();
2899 // All GOT offsets are relative to the end of the GOT.
2900 got_offset
-= target
->got_size();
2901 Relocate_functions
<32, false>::rel32(view
, got_offset
);
2904 gold_error_at_location(relinfo
, relnum
, rel
.get_r_offset(),
2905 _("unsupported reloc %u"),
2909 case elfcpp::R_386_TLS_LE
: // Local-exec
2910 // If we're creating a shared library, a dynamic relocation will
2911 // have been created for this location, so do not apply it now.
2912 if (!parameters
->options().shared())
2914 if (tls_segment
== NULL
)
2916 gold_assert(parameters
->errors()->error_count() > 0
2917 || issue_undefined_symbol_error(gsym
));
2920 value
-= tls_segment
->memsz();
2921 Relocate_functions
<32, false>::rel32(view
, value
);
2925 case elfcpp::R_386_TLS_LE_32
:
2926 // If we're creating a shared library, a dynamic relocation will
2927 // have been created for this location, so do not apply it now.
2928 if (!parameters
->options().shared())
2930 if (tls_segment
== NULL
)
2932 gold_assert(parameters
->errors()->error_count() > 0
2933 || issue_undefined_symbol_error(gsym
));
2936 value
= tls_segment
->memsz() - value
;
2937 Relocate_functions
<32, false>::rel32(view
, value
);
2943 // Do a relocation in which we convert a TLS General-Dynamic to a
2947 Target_i386::Relocate::tls_gd_to_le(const Relocate_info
<32, false>* relinfo
,
2949 Output_segment
* tls_segment
,
2950 const elfcpp::Rel
<32, false>& rel
,
2952 elfcpp::Elf_types
<32>::Elf_Addr value
,
2953 unsigned char* view
,
2954 section_size_type view_size
)
2956 // leal foo(,%reg,1),%eax; call ___tls_get_addr
2957 // ==> movl %gs:0,%eax; subl $foo@tpoff,%eax
2958 // leal foo(%reg),%eax; call ___tls_get_addr
2959 // ==> movl %gs:0,%eax; subl $foo@tpoff,%eax
2961 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
2962 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 9);
2964 unsigned char op1
= view
[-1];
2965 unsigned char op2
= view
[-2];
2967 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
2968 op2
== 0x8d || op2
== 0x04);
2969 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), view
[4] == 0xe8);
2975 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -3);
2976 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), view
[-3] == 0x8d);
2977 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
2978 ((op1
& 0xc7) == 0x05 && op1
!= (4 << 3)));
2979 memcpy(view
- 3, "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
2983 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
2984 (op1
& 0xf8) == 0x80 && (op1
& 7) != 4);
2985 if (rel
.get_r_offset() + 9 < view_size
2988 // There is a trailing nop. Use the size byte subl.
2989 memcpy(view
- 2, "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
2994 // Use the five byte subl.
2995 memcpy(view
- 2, "\x65\xa1\0\0\0\0\x2d\0\0\0", 11);
2999 value
= tls_segment
->memsz() - value
;
3000 Relocate_functions
<32, false>::rel32(view
+ roff
, value
);
3002 // The next reloc should be a PLT32 reloc against __tls_get_addr.
3004 this->skip_call_tls_get_addr_
= true;
3007 // Do a relocation in which we convert a TLS General-Dynamic to an
3011 Target_i386::Relocate::tls_gd_to_ie(const Relocate_info
<32, false>* relinfo
,
3014 const elfcpp::Rel
<32, false>& rel
,
3016 elfcpp::Elf_types
<32>::Elf_Addr value
,
3017 unsigned char* view
,
3018 section_size_type view_size
)
3020 // leal foo(,%ebx,1),%eax; call ___tls_get_addr
3021 // ==> movl %gs:0,%eax; addl foo@gotntpoff(%ebx),%eax
3023 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3024 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 9);
3026 unsigned char op1
= view
[-1];
3027 unsigned char op2
= view
[-2];
3029 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3030 op2
== 0x8d || op2
== 0x04);
3031 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), view
[4] == 0xe8);
3035 // FIXME: For now, support only the first (SIB) form.
3036 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), op2
== 0x04);
3040 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -3);
3041 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), view
[-3] == 0x8d);
3042 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3043 ((op1
& 0xc7) == 0x05 && op1
!= (4 << 3)));
3044 memcpy(view
- 3, "\x65\xa1\0\0\0\0\x03\x83\0\0\0", 12);
3048 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3049 (op1
& 0xf8) == 0x80 && (op1
& 7) != 4);
3050 if (rel
.get_r_offset() + 9 < view_size
3053 // FIXME: This is not the right instruction sequence.
3054 // There is a trailing nop. Use the size byte subl.
3055 memcpy(view
- 2, "\x65\xa1\0\0\0\0\x81\xe8\0\0\0", 12);
3060 // FIXME: This is not the right instruction sequence.
3061 // Use the five byte subl.
3062 memcpy(view
- 2, "\x65\xa1\0\0\0\0\x2d\0\0\0", 11);
3066 Relocate_functions
<32, false>::rel32(view
+ roff
, value
);
3068 // The next reloc should be a PLT32 reloc against __tls_get_addr.
3070 this->skip_call_tls_get_addr_
= true;
3073 // Do a relocation in which we convert a TLS_GOTDESC or TLS_DESC_CALL
3074 // General-Dynamic to a Local-Exec.
3077 Target_i386::Relocate::tls_desc_gd_to_le(
3078 const Relocate_info
<32, false>* relinfo
,
3080 Output_segment
* tls_segment
,
3081 const elfcpp::Rel
<32, false>& rel
,
3082 unsigned int r_type
,
3083 elfcpp::Elf_types
<32>::Elf_Addr value
,
3084 unsigned char* view
,
3085 section_size_type view_size
)
3087 if (r_type
== elfcpp::R_386_TLS_GOTDESC
)
3089 // leal foo@TLSDESC(%ebx), %eax
3090 // ==> leal foo@NTPOFF, %eax
3091 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3092 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 4);
3093 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3094 view
[-2] == 0x8d && view
[-1] == 0x83);
3096 value
-= tls_segment
->memsz();
3097 Relocate_functions
<32, false>::rel32(view
, value
);
3101 // call *foo@TLSCALL(%eax)
3103 gold_assert(r_type
== elfcpp::R_386_TLS_DESC_CALL
);
3104 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 2);
3105 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3106 view
[0] == 0xff && view
[1] == 0x10);
3112 // Do a relocation in which we convert a TLS_GOTDESC or TLS_DESC_CALL
3113 // General-Dynamic to an Initial-Exec.
3116 Target_i386::Relocate::tls_desc_gd_to_ie(
3117 const Relocate_info
<32, false>* relinfo
,
3120 const elfcpp::Rel
<32, false>& rel
,
3121 unsigned int r_type
,
3122 elfcpp::Elf_types
<32>::Elf_Addr value
,
3123 unsigned char* view
,
3124 section_size_type view_size
)
3126 if (r_type
== elfcpp::R_386_TLS_GOTDESC
)
3128 // leal foo@TLSDESC(%ebx), %eax
3129 // ==> movl foo@GOTNTPOFF(%ebx), %eax
3130 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3131 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 4);
3132 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3133 view
[-2] == 0x8d && view
[-1] == 0x83);
3135 Relocate_functions
<32, false>::rel32(view
, value
);
3139 // call *foo@TLSCALL(%eax)
3141 gold_assert(r_type
== elfcpp::R_386_TLS_DESC_CALL
);
3142 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 2);
3143 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3144 view
[0] == 0xff && view
[1] == 0x10);
3150 // Do a relocation in which we convert a TLS Local-Dynamic to a
3154 Target_i386::Relocate::tls_ld_to_le(const Relocate_info
<32, false>* relinfo
,
3157 const elfcpp::Rel
<32, false>& rel
,
3159 elfcpp::Elf_types
<32>::Elf_Addr
,
3160 unsigned char* view
,
3161 section_size_type view_size
)
3163 // leal foo(%reg), %eax; call ___tls_get_addr
3164 // ==> movl %gs:0,%eax; nop; leal 0(%esi,1),%esi
3166 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3167 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 9);
3169 // FIXME: Does this test really always pass?
3170 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3171 view
[-2] == 0x8d && view
[-1] == 0x83);
3173 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), view
[4] == 0xe8);
3175 memcpy(view
- 2, "\x65\xa1\0\0\0\0\x90\x8d\x74\x26\0", 11);
3177 // The next reloc should be a PLT32 reloc against __tls_get_addr.
3179 this->skip_call_tls_get_addr_
= true;
3182 // Do a relocation in which we convert a TLS Initial-Exec to a
3186 Target_i386::Relocate::tls_ie_to_le(const Relocate_info
<32, false>* relinfo
,
3188 Output_segment
* tls_segment
,
3189 const elfcpp::Rel
<32, false>& rel
,
3190 unsigned int r_type
,
3191 elfcpp::Elf_types
<32>::Elf_Addr value
,
3192 unsigned char* view
,
3193 section_size_type view_size
)
3195 // We have to actually change the instructions, which means that we
3196 // need to examine the opcodes to figure out which instruction we
3198 if (r_type
== elfcpp::R_386_TLS_IE
)
3200 // movl %gs:XX,%eax ==> movl $YY,%eax
3201 // movl %gs:XX,%reg ==> movl $YY,%reg
3202 // addl %gs:XX,%reg ==> addl $YY,%reg
3203 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -1);
3204 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 4);
3206 unsigned char op1
= view
[-1];
3209 // movl XX,%eax ==> movl $YY,%eax
3214 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3216 unsigned char op2
= view
[-2];
3219 // movl XX,%reg ==> movl $YY,%reg
3220 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3221 (op1
& 0xc7) == 0x05);
3223 view
[-1] = 0xc0 | ((op1
>> 3) & 7);
3225 else if (op2
== 0x03)
3227 // addl XX,%reg ==> addl $YY,%reg
3228 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3229 (op1
& 0xc7) == 0x05);
3231 view
[-1] = 0xc0 | ((op1
>> 3) & 7);
3234 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), 0);
3239 // subl %gs:XX(%reg1),%reg2 ==> subl $YY,%reg2
3240 // movl %gs:XX(%reg1),%reg2 ==> movl $YY,%reg2
3241 // addl %gs:XX(%reg1),%reg2 ==> addl $YY,$reg2
3242 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, -2);
3243 tls::check_range(relinfo
, relnum
, rel
.get_r_offset(), view_size
, 4);
3245 unsigned char op1
= view
[-1];
3246 unsigned char op2
= view
[-2];
3247 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(),
3248 (op1
& 0xc0) == 0x80 && (op1
& 7) != 4);
3251 // movl %gs:XX(%reg1),%reg2 ==> movl $YY,%reg2
3253 view
[-1] = 0xc0 | ((op1
>> 3) & 7);
3255 else if (op2
== 0x2b)
3257 // subl %gs:XX(%reg1),%reg2 ==> subl $YY,%reg2
3259 view
[-1] = 0xe8 | ((op1
>> 3) & 7);
3261 else if (op2
== 0x03)
3263 // addl %gs:XX(%reg1),%reg2 ==> addl $YY,$reg2
3265 view
[-1] = 0xc0 | ((op1
>> 3) & 7);
3268 tls::check_tls(relinfo
, relnum
, rel
.get_r_offset(), 0);
3271 value
= tls_segment
->memsz() - value
;
3272 if (r_type
== elfcpp::R_386_TLS_IE
|| r_type
== elfcpp::R_386_TLS_GOTIE
)
3275 Relocate_functions
<32, false>::rel32(view
, value
);
3278 // Relocate section data.
3281 Target_i386::relocate_section(const Relocate_info
<32, false>* relinfo
,
3282 unsigned int sh_type
,
3283 const unsigned char* prelocs
,
3285 Output_section
* output_section
,
3286 bool needs_special_offset_handling
,
3287 unsigned char* view
,
3288 elfcpp::Elf_types
<32>::Elf_Addr address
,
3289 section_size_type view_size
,
3290 const Reloc_symbol_changes
* reloc_symbol_changes
)
3292 gold_assert(sh_type
== elfcpp::SHT_REL
);
3294 gold::relocate_section
<32, false, Target_i386
, elfcpp::SHT_REL
,
3295 Target_i386::Relocate
>(
3301 needs_special_offset_handling
,
3305 reloc_symbol_changes
);
3308 // Return the size of a relocation while scanning during a relocatable
3312 Target_i386::Relocatable_size_for_reloc::get_size_for_reloc(
3313 unsigned int r_type
,
3318 case elfcpp::R_386_NONE
:
3319 case elfcpp::R_386_GNU_VTINHERIT
:
3320 case elfcpp::R_386_GNU_VTENTRY
:
3321 case elfcpp::R_386_TLS_GD
: // Global-dynamic
3322 case elfcpp::R_386_TLS_GOTDESC
: // Global-dynamic (from ~oliva url)
3323 case elfcpp::R_386_TLS_DESC_CALL
:
3324 case elfcpp::R_386_TLS_LDM
: // Local-dynamic
3325 case elfcpp::R_386_TLS_LDO_32
: // Alternate local-dynamic
3326 case elfcpp::R_386_TLS_IE
: // Initial-exec
3327 case elfcpp::R_386_TLS_IE_32
:
3328 case elfcpp::R_386_TLS_GOTIE
:
3329 case elfcpp::R_386_TLS_LE
: // Local-exec
3330 case elfcpp::R_386_TLS_LE_32
:
3333 case elfcpp::R_386_32
:
3334 case elfcpp::R_386_PC32
:
3335 case elfcpp::R_386_GOT32
:
3336 case elfcpp::R_386_PLT32
:
3337 case elfcpp::R_386_GOTOFF
:
3338 case elfcpp::R_386_GOTPC
:
3341 case elfcpp::R_386_16
:
3342 case elfcpp::R_386_PC16
:
3345 case elfcpp::R_386_8
:
3346 case elfcpp::R_386_PC8
:
3349 // These are relocations which should only be seen by the
3350 // dynamic linker, and should never be seen here.
3351 case elfcpp::R_386_COPY
:
3352 case elfcpp::R_386_GLOB_DAT
:
3353 case elfcpp::R_386_JUMP_SLOT
:
3354 case elfcpp::R_386_RELATIVE
:
3355 case elfcpp::R_386_IRELATIVE
:
3356 case elfcpp::R_386_TLS_TPOFF
:
3357 case elfcpp::R_386_TLS_DTPMOD32
:
3358 case elfcpp::R_386_TLS_DTPOFF32
:
3359 case elfcpp::R_386_TLS_TPOFF32
:
3360 case elfcpp::R_386_TLS_DESC
:
3361 object
->error(_("unexpected reloc %u in object file"), r_type
);
3364 case elfcpp::R_386_32PLT
:
3365 case elfcpp::R_386_TLS_GD_32
:
3366 case elfcpp::R_386_TLS_GD_PUSH
:
3367 case elfcpp::R_386_TLS_GD_CALL
:
3368 case elfcpp::R_386_TLS_GD_POP
:
3369 case elfcpp::R_386_TLS_LDM_32
:
3370 case elfcpp::R_386_TLS_LDM_PUSH
:
3371 case elfcpp::R_386_TLS_LDM_CALL
:
3372 case elfcpp::R_386_TLS_LDM_POP
:
3373 case elfcpp::R_386_USED_BY_INTEL_200
:
3375 object
->error(_("unsupported reloc %u in object file"), r_type
);
3380 // Scan the relocs during a relocatable link.
3383 Target_i386::scan_relocatable_relocs(Symbol_table
* symtab
,
3385 Sized_relobj_file
<32, false>* object
,
3386 unsigned int data_shndx
,
3387 unsigned int sh_type
,
3388 const unsigned char* prelocs
,
3390 Output_section
* output_section
,
3391 bool needs_special_offset_handling
,
3392 size_t local_symbol_count
,
3393 const unsigned char* plocal_symbols
,
3394 Relocatable_relocs
* rr
)
3396 gold_assert(sh_type
== elfcpp::SHT_REL
);
3398 typedef gold::Default_scan_relocatable_relocs
<elfcpp::SHT_REL
,
3399 Relocatable_size_for_reloc
> Scan_relocatable_relocs
;
3401 gold::scan_relocatable_relocs
<32, false, elfcpp::SHT_REL
,
3402 Scan_relocatable_relocs
>(
3410 needs_special_offset_handling
,
3416 // Relocate a section during a relocatable link.
3419 Target_i386::relocate_for_relocatable(
3420 const Relocate_info
<32, false>* relinfo
,
3421 unsigned int sh_type
,
3422 const unsigned char* prelocs
,
3424 Output_section
* output_section
,
3425 off_t offset_in_output_section
,
3426 const Relocatable_relocs
* rr
,
3427 unsigned char* view
,
3428 elfcpp::Elf_types
<32>::Elf_Addr view_address
,
3429 section_size_type view_size
,
3430 unsigned char* reloc_view
,
3431 section_size_type reloc_view_size
)
3433 gold_assert(sh_type
== elfcpp::SHT_REL
);
3435 gold::relocate_for_relocatable
<32, false, elfcpp::SHT_REL
>(
3440 offset_in_output_section
,
3449 // Return the value to use for a dynamic which requires special
3450 // treatment. This is how we support equality comparisons of function
3451 // pointers across shared library boundaries, as described in the
3452 // processor specific ABI supplement.
3455 Target_i386::do_dynsym_value(const Symbol
* gsym
) const
3457 gold_assert(gsym
->is_from_dynobj() && gsym
->has_plt_offset());
3458 return this->plt_address_for_global(gsym
) + gsym
->plt_offset();
3461 // Return a string used to fill a code section with nops to take up
3462 // the specified length.
3465 Target_i386::do_code_fill(section_size_type length
) const
3469 // Build a jmp instruction to skip over the bytes.
3470 unsigned char jmp
[5];
3472 elfcpp::Swap_unaligned
<32, false>::writeval(jmp
+ 1, length
- 5);
3473 return (std::string(reinterpret_cast<char*>(&jmp
[0]), 5)
3474 + std::string(length
- 5, static_cast<char>(0x90)));
3477 // Nop sequences of various lengths.
3478 const char nop1
[1] = { '\x90' }; // nop
3479 const char nop2
[2] = { '\x66', '\x90' }; // xchg %ax %ax
3480 const char nop3
[3] = { '\x8d', '\x76', '\x00' }; // leal 0(%esi),%esi
3481 const char nop4
[4] = { '\x8d', '\x74', '\x26', // leal 0(%esi,1),%esi
3483 const char nop5
[5] = { '\x90', '\x8d', '\x74', // nop
3484 '\x26', '\x00' }; // leal 0(%esi,1),%esi
3485 const char nop6
[6] = { '\x8d', '\xb6', '\x00', // leal 0L(%esi),%esi
3486 '\x00', '\x00', '\x00' };
3487 const char nop7
[7] = { '\x8d', '\xb4', '\x26', // leal 0L(%esi,1),%esi
3488 '\x00', '\x00', '\x00',
3490 const char nop8
[8] = { '\x90', '\x8d', '\xb4', // nop
3491 '\x26', '\x00', '\x00', // leal 0L(%esi,1),%esi
3493 const char nop9
[9] = { '\x89', '\xf6', '\x8d', // movl %esi,%esi
3494 '\xbc', '\x27', '\x00', // leal 0L(%edi,1),%edi
3495 '\x00', '\x00', '\x00' };
3496 const char nop10
[10] = { '\x8d', '\x76', '\x00', // leal 0(%esi),%esi
3497 '\x8d', '\xbc', '\x27', // leal 0L(%edi,1),%edi
3498 '\x00', '\x00', '\x00',
3500 const char nop11
[11] = { '\x8d', '\x74', '\x26', // leal 0(%esi,1),%esi
3501 '\x00', '\x8d', '\xbc', // leal 0L(%edi,1),%edi
3502 '\x27', '\x00', '\x00',
3504 const char nop12
[12] = { '\x8d', '\xb6', '\x00', // leal 0L(%esi),%esi
3505 '\x00', '\x00', '\x00', // leal 0L(%edi),%edi
3506 '\x8d', '\xbf', '\x00',
3507 '\x00', '\x00', '\x00' };
3508 const char nop13
[13] = { '\x8d', '\xb6', '\x00', // leal 0L(%esi),%esi
3509 '\x00', '\x00', '\x00', // leal 0L(%edi,1),%edi
3510 '\x8d', '\xbc', '\x27',
3511 '\x00', '\x00', '\x00',
3513 const char nop14
[14] = { '\x8d', '\xb4', '\x26', // leal 0L(%esi,1),%esi
3514 '\x00', '\x00', '\x00', // leal 0L(%edi,1),%edi
3515 '\x00', '\x8d', '\xbc',
3516 '\x27', '\x00', '\x00',
3518 const char nop15
[15] = { '\xeb', '\x0d', '\x90', // jmp .+15
3519 '\x90', '\x90', '\x90', // nop,nop,nop,...
3520 '\x90', '\x90', '\x90',
3521 '\x90', '\x90', '\x90',
3522 '\x90', '\x90', '\x90' };
3524 const char* nops
[16] = {
3526 nop1
, nop2
, nop3
, nop4
, nop5
, nop6
, nop7
,
3527 nop8
, nop9
, nop10
, nop11
, nop12
, nop13
, nop14
, nop15
3530 return std::string(nops
[length
], length
);
3533 // Return the value to use for the base of a DW_EH_PE_datarel offset
3534 // in an FDE. Solaris and SVR4 use DW_EH_PE_datarel because their
3535 // assembler can not write out the difference between two labels in
3536 // different sections, so instead of using a pc-relative value they
3537 // use an offset from the GOT.
3540 Target_i386::do_ehframe_datarel_base() const
3542 gold_assert(this->global_offset_table_
!= NULL
);
3543 Symbol
* sym
= this->global_offset_table_
;
3544 Sized_symbol
<32>* ssym
= static_cast<Sized_symbol
<32>*>(sym
);
3545 return ssym
->value();
3548 // Return whether SYM should be treated as a call to a non-split
3549 // function. We don't want that to be true of a call to a
3550 // get_pc_thunk function.
3553 Target_i386::do_is_call_to_non_split(const Symbol
* sym
, unsigned int) const
3555 return (sym
->type() == elfcpp::STT_FUNC
3556 && !is_prefix_of("__i686.get_pc_thunk.", sym
->name()));
3559 // FNOFFSET in section SHNDX in OBJECT is the start of a function
3560 // compiled with -fsplit-stack. The function calls non-split-stack
3561 // code. We have to change the function so that it always ensures
3562 // that it has enough stack space to run some random function.
3565 Target_i386::do_calls_non_split(Relobj
* object
, unsigned int shndx
,
3566 section_offset_type fnoffset
,
3567 section_size_type fnsize
,
3568 unsigned char* view
,
3569 section_size_type view_size
,
3571 std::string
* to
) const
3573 // The function starts with a comparison of the stack pointer and a
3574 // field in the TCB. This is followed by a jump.
3577 if (this->match_view(view
, view_size
, fnoffset
, "\x65\x3b\x25", 3)
3580 // We will call __morestack if the carry flag is set after this
3581 // comparison. We turn the comparison into an stc instruction
3583 view
[fnoffset
] = '\xf9';
3584 this->set_view_to_nop(view
, view_size
, fnoffset
+ 1, 6);
3586 // lea NN(%esp),%ecx
3587 // lea NN(%esp),%edx
3588 else if ((this->match_view(view
, view_size
, fnoffset
, "\x8d\x8c\x24", 3)
3589 || this->match_view(view
, view_size
, fnoffset
, "\x8d\x94\x24", 3))
3592 // This is loading an offset from the stack pointer for a
3593 // comparison. The offset is negative, so we decrease the
3594 // offset by the amount of space we need for the stack. This
3595 // means we will avoid calling __morestack if there happens to
3596 // be plenty of space on the stack already.
3597 unsigned char* pval
= view
+ fnoffset
+ 3;
3598 uint32_t val
= elfcpp::Swap_unaligned
<32, false>::readval(pval
);
3599 val
-= parameters
->options().split_stack_adjust_size();
3600 elfcpp::Swap_unaligned
<32, false>::writeval(pval
, val
);
3604 if (!object
->has_no_split_stack())
3605 object
->error(_("failed to match split-stack sequence at "
3606 "section %u offset %0zx"),
3607 shndx
, static_cast<size_t>(fnoffset
));
3611 // We have to change the function so that it calls
3612 // __morestack_non_split instead of __morestack. The former will
3613 // allocate additional stack space.
3614 *from
= "__morestack";
3615 *to
= "__morestack_non_split";
3618 // The selector for i386 object files.
3620 class Target_selector_i386
: public Target_selector_freebsd
3623 Target_selector_i386()
3624 : Target_selector_freebsd(elfcpp::EM_386
, 32, false,
3625 "elf32-i386", "elf32-i386-freebsd",
3630 do_instantiate_target()
3631 { return new Target_i386(); }
3634 Target_selector_i386 target_selector_i386
;
3636 } // End anonymous namespace.