1 // sparc.cc -- sparc target support for gold.
3 // Copyright (C) 2008-2014 Free Software Foundation, Inc.
4 // Written by David S. Miller <davem@davemloft.net>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
30 #include "parameters.h"
37 #include "copy-relocs.h"
39 #include "target-reloc.h"
40 #include "target-select.h"
50 template<int size
, bool big_endian
>
51 class Output_data_plt_sparc
;
53 template<int size
, bool big_endian
>
54 class Target_sparc
: public Sized_target
<size
, big_endian
>
57 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true, size
, big_endian
> Reloc_section
;
60 : Sized_target
<size
, big_endian
>(&sparc_info
),
61 got_(NULL
), plt_(NULL
), rela_dyn_(NULL
), rela_ifunc_(NULL
),
62 copy_relocs_(elfcpp::R_SPARC_COPY
),
63 got_mod_index_offset_(-1U), tls_get_addr_sym_(NULL
),
64 elf_machine_(sparc_info
.machine_code
), elf_flags_(0),
69 // Process the relocations to determine unreferenced sections for
70 // garbage collection.
72 gc_process_relocs(Symbol_table
* symtab
,
74 Sized_relobj_file
<size
, big_endian
>* object
,
75 unsigned int data_shndx
,
77 const unsigned char* prelocs
,
79 Output_section
* output_section
,
80 bool needs_special_offset_handling
,
81 size_t local_symbol_count
,
82 const unsigned char* plocal_symbols
);
84 // Scan the relocations to look for symbol adjustments.
86 scan_relocs(Symbol_table
* symtab
,
88 Sized_relobj_file
<size
, big_endian
>* object
,
89 unsigned int data_shndx
,
91 const unsigned char* prelocs
,
93 Output_section
* output_section
,
94 bool needs_special_offset_handling
,
95 size_t local_symbol_count
,
96 const unsigned char* plocal_symbols
);
97 // Finalize the sections.
99 do_finalize_sections(Layout
*, const Input_objects
*, Symbol_table
*);
101 // Return the value to use for a dynamic which requires special
104 do_dynsym_value(const Symbol
*) const;
106 // Relocate a section.
108 relocate_section(const Relocate_info
<size
, big_endian
>*,
109 unsigned int sh_type
,
110 const unsigned char* prelocs
,
112 Output_section
* output_section
,
113 bool needs_special_offset_handling
,
115 typename
elfcpp::Elf_types
<size
>::Elf_Addr view_address
,
116 section_size_type view_size
,
117 const Reloc_symbol_changes
*);
119 // Scan the relocs during a relocatable link.
121 scan_relocatable_relocs(Symbol_table
* symtab
,
123 Sized_relobj_file
<size
, big_endian
>* object
,
124 unsigned int data_shndx
,
125 unsigned int sh_type
,
126 const unsigned char* prelocs
,
128 Output_section
* output_section
,
129 bool needs_special_offset_handling
,
130 size_t local_symbol_count
,
131 const unsigned char* plocal_symbols
,
132 Relocatable_relocs
*);
134 // Emit relocations for a section.
136 relocate_relocs(const Relocate_info
<size
, big_endian
>*,
137 unsigned int sh_type
,
138 const unsigned char* prelocs
,
140 Output_section
* output_section
,
141 typename
elfcpp::Elf_types
<size
>::Elf_Off
142 offset_in_output_section
,
143 const Relocatable_relocs
*,
145 typename
elfcpp::Elf_types
<size
>::Elf_Addr view_address
,
146 section_size_type view_size
,
147 unsigned char* reloc_view
,
148 section_size_type reloc_view_size
);
150 // Return whether SYM is defined by the ABI.
152 do_is_defined_by_abi(const Symbol
* sym
) const
154 // XXX Really need to support this better...
155 if (sym
->type() == elfcpp::STT_SPARC_REGISTER
)
158 return strcmp(sym
->name(), "___tls_get_addr") == 0;
161 // Return the PLT address to use for a global symbol.
163 do_plt_address_for_global(const Symbol
* gsym
) const
164 { return this->plt_section()->address_for_global(gsym
); }
167 do_plt_address_for_local(const Relobj
* relobj
, unsigned int symndx
) const
168 { return this->plt_section()->address_for_local(relobj
, symndx
); }
170 // Return whether there is a GOT section.
172 has_got_section() const
173 { return this->got_
!= NULL
; }
175 // Return the size of the GOT section.
179 gold_assert(this->got_
!= NULL
);
180 return this->got_
->data_size();
183 // Return the number of entries in the GOT.
185 got_entry_count() const
187 if (this->got_
== NULL
)
189 return this->got_size() / (size
/ 8);
192 // Return the address of the GOT.
196 if (this->got_
== NULL
)
198 return this->got_
->address();
201 // Return the number of entries in the PLT.
203 plt_entry_count() const;
205 // Return the offset of the first non-reserved PLT entry.
207 first_plt_entry_offset() const;
209 // Return the size of each PLT entry.
211 plt_entry_size() const;
214 // Make an ELF object.
216 do_make_elf_object(const std::string
&, Input_file
*, off_t
,
217 const elfcpp::Ehdr
<size
, big_endian
>& ehdr
);
220 do_adjust_elf_header(unsigned char* view
, int len
);
224 // The class which scans relocations.
229 : issued_non_pic_error_(false)
233 get_reference_flags(unsigned int r_type
);
236 local(Symbol_table
* symtab
, Layout
* layout
, Target_sparc
* target
,
237 Sized_relobj_file
<size
, big_endian
>* object
,
238 unsigned int data_shndx
,
239 Output_section
* output_section
,
240 const elfcpp::Rela
<size
, big_endian
>& reloc
, unsigned int r_type
,
241 const elfcpp::Sym
<size
, big_endian
>& lsym
,
245 global(Symbol_table
* symtab
, Layout
* layout
, Target_sparc
* target
,
246 Sized_relobj_file
<size
, big_endian
>* object
,
247 unsigned int data_shndx
,
248 Output_section
* output_section
,
249 const elfcpp::Rela
<size
, big_endian
>& reloc
, unsigned int r_type
,
253 local_reloc_may_be_function_pointer(Symbol_table
* , Layout
* ,
255 Sized_relobj_file
<size
, big_endian
>* ,
258 const elfcpp::Rela
<size
, big_endian
>& ,
260 const elfcpp::Sym
<size
, big_endian
>&)
264 global_reloc_may_be_function_pointer(Symbol_table
* , Layout
* ,
266 Sized_relobj_file
<size
, big_endian
>* ,
269 const elfcpp::Rela
<size
,
271 unsigned int , Symbol
*)
277 unsupported_reloc_local(Sized_relobj_file
<size
, big_endian
>*,
278 unsigned int r_type
);
281 unsupported_reloc_global(Sized_relobj_file
<size
, big_endian
>*,
282 unsigned int r_type
, Symbol
*);
285 generate_tls_call(Symbol_table
* symtab
, Layout
* layout
,
286 Target_sparc
* target
);
289 check_non_pic(Relobj
*, unsigned int r_type
);
292 reloc_needs_plt_for_ifunc(Sized_relobj_file
<size
, big_endian
>*,
293 unsigned int r_type
);
295 // Whether we have issued an error about a non-PIC compilation.
296 bool issued_non_pic_error_
;
299 // The class which implements relocation.
304 : ignore_gd_add_(false), reloc_adjust_addr_(NULL
)
309 if (this->ignore_gd_add_
)
311 // FIXME: This needs to specify the location somehow.
312 gold_error(_("missing expected TLS relocation"));
316 // Do a relocation. Return false if the caller should not issue
317 // any warnings about this relocation.
319 relocate(const Relocate_info
<size
, big_endian
>*, Target_sparc
*,
320 Output_section
*, size_t relnum
,
321 const elfcpp::Rela
<size
, big_endian
>&,
322 unsigned int r_type
, const Sized_symbol
<size
>*,
323 const Symbol_value
<size
>*,
325 typename
elfcpp::Elf_types
<size
>::Elf_Addr
,
329 // Do a TLS relocation.
331 relocate_tls(const Relocate_info
<size
, big_endian
>*, Target_sparc
* target
,
332 size_t relnum
, const elfcpp::Rela
<size
, big_endian
>&,
333 unsigned int r_type
, const Sized_symbol
<size
>*,
334 const Symbol_value
<size
>*,
336 typename
elfcpp::Elf_types
<size
>::Elf_Addr
,
340 relax_call(Target_sparc
<size
, big_endian
>* target
,
342 const elfcpp::Rela
<size
, big_endian
>& rela
,
343 section_size_type view_size
);
345 // Ignore the next relocation which should be R_SPARC_TLS_GD_ADD
348 // If we hit a reloc at this view address, adjust it back by 4 bytes.
349 unsigned char *reloc_adjust_addr_
;
352 // A class which returns the size required for a relocation type,
353 // used while scanning relocs during a relocatable link.
354 class Relocatable_size_for_reloc
358 get_size_for_reloc(unsigned int, Relobj
*);
361 // Get the GOT section, creating it if necessary.
362 Output_data_got
<size
, big_endian
>*
363 got_section(Symbol_table
*, Layout
*);
365 // Create the PLT section.
367 make_plt_section(Symbol_table
* symtab
, Layout
* layout
);
369 // Create a PLT entry for a global symbol.
371 make_plt_entry(Symbol_table
*, Layout
*, Symbol
*);
373 // Create a PLT entry for a local STT_GNU_IFUNC symbol.
375 make_local_ifunc_plt_entry(Symbol_table
*, Layout
*,
376 Sized_relobj_file
<size
, big_endian
>* relobj
,
377 unsigned int local_sym_index
);
379 // Create a GOT entry for the TLS module index.
381 got_mod_index_entry(Symbol_table
* symtab
, Layout
* layout
,
382 Sized_relobj_file
<size
, big_endian
>* object
);
384 // Return the gsym for "__tls_get_addr". Cache if not already
387 tls_get_addr_sym(Symbol_table
* symtab
)
389 if (!this->tls_get_addr_sym_
)
390 this->tls_get_addr_sym_
= symtab
->lookup("__tls_get_addr", NULL
);
391 gold_assert(this->tls_get_addr_sym_
);
392 return this->tls_get_addr_sym_
;
395 // Get the PLT section.
396 Output_data_plt_sparc
<size
, big_endian
>*
399 gold_assert(this->plt_
!= NULL
);
403 // Get the dynamic reloc section, creating it if necessary.
405 rela_dyn_section(Layout
*);
407 // Get the section to use for IFUNC relocations.
409 rela_ifunc_section(Layout
*);
411 // Copy a relocation against a global symbol.
413 copy_reloc(Symbol_table
* symtab
, Layout
* layout
,
414 Sized_relobj_file
<size
, big_endian
>* object
,
415 unsigned int shndx
, Output_section
* output_section
,
416 Symbol
* sym
, const elfcpp::Rela
<size
, big_endian
>& reloc
)
418 this->copy_relocs_
.copy_reloc(symtab
, layout
,
419 symtab
->get_sized_symbol
<size
>(sym
),
420 object
, shndx
, output_section
,
421 reloc
, this->rela_dyn_section(layout
));
424 // Information about this specific target which we pass to the
425 // general Target structure.
426 static Target::Target_info sparc_info
;
428 // The types of GOT entries needed for this platform.
429 // These values are exposed to the ABI in an incremental link.
430 // Do not renumber existing values without changing the version
431 // number of the .gnu_incremental_inputs section.
434 GOT_TYPE_STANDARD
= 0, // GOT entry for a regular symbol
435 GOT_TYPE_TLS_OFFSET
= 1, // GOT entry for TLS offset
436 GOT_TYPE_TLS_PAIR
= 2, // GOT entry for TLS module/offset pair
440 Output_data_got
<size
, big_endian
>* got_
;
442 Output_data_plt_sparc
<size
, big_endian
>* plt_
;
443 // The dynamic reloc section.
444 Reloc_section
* rela_dyn_
;
445 // The section to use for IFUNC relocs.
446 Reloc_section
* rela_ifunc_
;
447 // Relocs saved to avoid a COPY reloc.
448 Copy_relocs
<elfcpp::SHT_RELA
, size
, big_endian
> copy_relocs_
;
449 // Offset of the GOT entry for the TLS module index;
450 unsigned int got_mod_index_offset_
;
451 // Cached pointer to __tls_get_addr symbol
452 Symbol
* tls_get_addr_sym_
;
453 // Accumulated elf machine type
454 elfcpp::Elf_Half elf_machine_
;
455 // Accumulated elf header flags
456 elfcpp::Elf_Word elf_flags_
;
457 // Whether elf_flags_ has been set for the first time yet
462 Target::Target_info Target_sparc
<32, true>::sparc_info
=
465 true, // is_big_endian
466 elfcpp::EM_SPARC
, // machine_code
467 false, // has_make_symbol
468 false, // has_resolve
469 false, // has_code_fill
470 true, // is_default_stack_executable
471 false, // can_icf_inline_merge_sections
473 "/usr/lib/ld.so.1", // dynamic_linker
474 0x00010000, // default_text_segment_address
475 64 * 1024, // abi_pagesize (overridable by -z max-page-size)
476 8 * 1024, // common_pagesize (overridable by -z common-page-size)
477 false, // isolate_execinstr
479 elfcpp::SHN_UNDEF
, // small_common_shndx
480 elfcpp::SHN_UNDEF
, // large_common_shndx
481 0, // small_common_section_flags
482 0, // large_common_section_flags
483 NULL
, // attributes_section
484 NULL
, // attributes_vendor
485 "_start" // entry_symbol_name
489 Target::Target_info Target_sparc
<64, true>::sparc_info
=
492 true, // is_big_endian
493 elfcpp::EM_SPARCV9
, // machine_code
494 false, // has_make_symbol
495 false, // has_resolve
496 false, // has_code_fill
497 true, // is_default_stack_executable
498 false, // can_icf_inline_merge_sections
500 "/usr/lib/sparcv9/ld.so.1", // dynamic_linker
501 0x100000, // default_text_segment_address
502 64 * 1024, // abi_pagesize (overridable by -z max-page-size)
503 8 * 1024, // common_pagesize (overridable by -z common-page-size)
504 false, // isolate_execinstr
506 elfcpp::SHN_UNDEF
, // small_common_shndx
507 elfcpp::SHN_UNDEF
, // large_common_shndx
508 0, // small_common_section_flags
509 0, // large_common_section_flags
510 NULL
, // attributes_section
511 NULL
, // attributes_vendor
512 "_start" // entry_symbol_name
515 // We have to take care here, even when operating in little-endian
516 // mode, sparc instructions are still big endian.
517 template<int size
, bool big_endian
>
518 class Sparc_relocate_functions
521 // Do a simple relocation with the addend in the relocation.
522 template<int valsize
>
524 rela(unsigned char* view
,
525 unsigned int right_shift
,
526 typename
elfcpp::Elf_types
<valsize
>::Elf_Addr dst_mask
,
527 typename
elfcpp::Swap
<size
, big_endian
>::Valtype value
,
528 typename
elfcpp::Swap
<size
, big_endian
>::Valtype addend
)
530 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
531 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
532 Valtype val
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
533 Valtype reloc
= ((value
+ addend
) >> right_shift
);
538 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, val
| reloc
);
541 // Do a simple relocation using a symbol value with the addend in
543 template<int valsize
>
545 rela(unsigned char* view
,
546 unsigned int right_shift
,
547 typename
elfcpp::Elf_types
<valsize
>::Elf_Addr dst_mask
,
548 const Sized_relobj_file
<size
, big_endian
>* object
,
549 const Symbol_value
<size
>* psymval
,
550 typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype addend
)
552 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
553 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
554 Valtype val
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
555 Valtype reloc
= (psymval
->value(object
, addend
) >> right_shift
);
560 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, val
| reloc
);
563 // Do a simple relocation using a symbol value with the addend in
564 // the relocation, unaligned.
565 template<int valsize
>
567 rela_ua(unsigned char* view
,
568 unsigned int right_shift
, elfcpp::Elf_Xword dst_mask
,
569 const Sized_relobj_file
<size
, big_endian
>* object
,
570 const Symbol_value
<size
>* psymval
,
571 typename
elfcpp::Swap
<size
, big_endian
>::Valtype addend
)
573 typedef typename
elfcpp::Swap_unaligned
<valsize
,
574 big_endian
>::Valtype Valtype
;
575 unsigned char* wv
= view
;
576 Valtype val
= elfcpp::Swap_unaligned
<valsize
, big_endian
>::readval(wv
);
577 Valtype reloc
= (psymval
->value(object
, addend
) >> right_shift
);
582 elfcpp::Swap_unaligned
<valsize
, big_endian
>::writeval(wv
, val
| reloc
);
585 // Do a simple PC relative relocation with a Symbol_value with the
586 // addend in the relocation.
587 template<int valsize
>
589 pcrela(unsigned char* view
,
590 unsigned int right_shift
,
591 typename
elfcpp::Elf_types
<valsize
>::Elf_Addr dst_mask
,
592 const Sized_relobj_file
<size
, big_endian
>* object
,
593 const Symbol_value
<size
>* psymval
,
594 typename
elfcpp::Swap
<size
, big_endian
>::Valtype addend
,
595 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
597 typedef typename
elfcpp::Swap
<valsize
, big_endian
>::Valtype Valtype
;
598 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
599 Valtype val
= elfcpp::Swap
<valsize
, big_endian
>::readval(wv
);
600 Valtype reloc
= ((psymval
->value(object
, addend
) - address
)
606 elfcpp::Swap
<valsize
, big_endian
>::writeval(wv
, val
| reloc
);
609 template<int valsize
>
611 pcrela_unaligned(unsigned char* view
,
612 const Sized_relobj_file
<size
, big_endian
>* object
,
613 const Symbol_value
<size
>* psymval
,
614 typename
elfcpp::Swap
<size
, big_endian
>::Valtype addend
,
615 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
617 typedef typename
elfcpp::Swap_unaligned
<valsize
,
618 big_endian
>::Valtype Valtype
;
619 unsigned char* wv
= view
;
620 Valtype reloc
= (psymval
->value(object
, addend
) - address
);
622 elfcpp::Swap_unaligned
<valsize
, big_endian
>::writeval(wv
, reloc
);
625 typedef Sparc_relocate_functions
<size
, big_endian
> This
;
626 typedef Sparc_relocate_functions
<size
, true> This_insn
;
629 // R_SPARC_WDISP30: (Symbol + Addend - Address) >> 2
631 wdisp30(unsigned char* view
,
632 const Sized_relobj_file
<size
, big_endian
>* object
,
633 const Symbol_value
<size
>* psymval
,
634 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
635 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
637 This_insn::template pcrela
<32>(view
, 2, 0x3fffffff, object
,
638 psymval
, addend
, address
);
641 // R_SPARC_WDISP22: (Symbol + Addend - Address) >> 2
643 wdisp22(unsigned char* view
,
644 const Sized_relobj_file
<size
, big_endian
>* object
,
645 const Symbol_value
<size
>* psymval
,
646 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
647 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
649 This_insn::template pcrela
<32>(view
, 2, 0x003fffff, object
,
650 psymval
, addend
, address
);
653 // R_SPARC_WDISP19: (Symbol + Addend - Address) >> 2
655 wdisp19(unsigned char* view
,
656 const Sized_relobj_file
<size
, big_endian
>* object
,
657 const Symbol_value
<size
>* psymval
,
658 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
659 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
661 This_insn::template pcrela
<32>(view
, 2, 0x0007ffff, object
,
662 psymval
, addend
, address
);
665 // R_SPARC_WDISP16: (Symbol + Addend - Address) >> 2
667 wdisp16(unsigned char* view
,
668 const Sized_relobj_file
<size
, big_endian
>* object
,
669 const Symbol_value
<size
>* psymval
,
670 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
671 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
673 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
674 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
675 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
676 Valtype reloc
= ((psymval
->value(object
, addend
) - address
)
679 // The relocation value is split between the low 14 bits,
681 val
&= ~((0x3 << 20) | 0x3fff);
682 reloc
= (((reloc
& 0xc000) << (20 - 14))
683 | (reloc
& 0x3ffff));
685 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
688 // R_SPARC_WDISP10: (Symbol + Addend - Address) >> 2
690 wdisp10(unsigned char* view
,
691 const Sized_relobj_file
<size
, big_endian
>* object
,
692 const Symbol_value
<size
>* psymval
,
693 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
694 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
696 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
697 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
698 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
699 Valtype reloc
= ((psymval
->value(object
, addend
) - address
)
702 // The relocation value is split between the low bits 5-12,
703 // and high bits 19-20.
704 val
&= ~((0x3 << 19) | (0xff << 5));
705 reloc
= (((reloc
& 0x300) << (19 - 8))
706 | ((reloc
& 0xff) << (5 - 0)));
708 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
711 // R_SPARC_PC22: (Symbol + Addend - Address) >> 10
713 pc22(unsigned char* view
,
714 const Sized_relobj_file
<size
, big_endian
>* object
,
715 const Symbol_value
<size
>* psymval
,
716 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
717 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
719 This_insn::template pcrela
<32>(view
, 10, 0x003fffff, object
,
720 psymval
, addend
, address
);
723 // R_SPARC_PC10: (Symbol + Addend - Address) & 0x3ff
725 pc10(unsigned char* view
,
726 const Sized_relobj_file
<size
, big_endian
>* object
,
727 const Symbol_value
<size
>* psymval
,
728 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
729 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
731 This_insn::template pcrela
<32>(view
, 0, 0x000003ff, object
,
732 psymval
, addend
, address
);
735 // R_SPARC_HI22: (Symbol + Addend) >> 10
737 hi22(unsigned char* view
,
738 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
739 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
741 This_insn::template rela
<32>(view
, 10, 0x003fffff, value
, addend
);
744 // R_SPARC_HI22: (Symbol + Addend) >> 10
746 hi22(unsigned char* view
,
747 const Sized_relobj_file
<size
, big_endian
>* object
,
748 const Symbol_value
<size
>* psymval
,
749 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
751 This_insn::template rela
<32>(view
, 10, 0x003fffff, object
, psymval
, addend
);
754 // R_SPARC_PCPLT22: (Symbol + Addend - Address) >> 10
756 pcplt22(unsigned char* view
,
757 const Sized_relobj_file
<size
, big_endian
>* object
,
758 const Symbol_value
<size
>* psymval
,
759 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
760 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
762 This_insn::template pcrela
<32>(view
, 10, 0x003fffff, object
,
763 psymval
, addend
, address
);
766 // R_SPARC_LO10: (Symbol + Addend) & 0x3ff
768 lo10(unsigned char* view
,
769 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
770 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
772 This_insn::template rela
<32>(view
, 0, 0x000003ff, value
, addend
);
775 // R_SPARC_LO10: (Symbol + Addend) & 0x3ff
777 lo10(unsigned char* view
,
778 const Sized_relobj_file
<size
, big_endian
>* object
,
779 const Symbol_value
<size
>* psymval
,
780 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
782 This_insn::template rela
<32>(view
, 0, 0x000003ff, object
, psymval
, addend
);
785 // R_SPARC_LO10: (Symbol + Addend) & 0x3ff
787 lo10(unsigned char* view
,
788 const Sized_relobj_file
<size
, big_endian
>* object
,
789 const Symbol_value
<size
>* psymval
,
790 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
791 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
793 This_insn::template pcrela
<32>(view
, 0, 0x000003ff, object
,
794 psymval
, addend
, address
);
797 // R_SPARC_OLO10: ((Symbol + Addend) & 0x3ff) + Addend2
799 olo10(unsigned char* view
,
800 const Sized_relobj_file
<size
, big_endian
>* object
,
801 const Symbol_value
<size
>* psymval
,
802 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
803 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend2
)
805 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
806 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
807 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
808 Valtype reloc
= psymval
->value(object
, addend
);
815 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
818 // R_SPARC_22: (Symbol + Addend)
820 rela32_22(unsigned char* view
,
821 const Sized_relobj_file
<size
, big_endian
>* object
,
822 const Symbol_value
<size
>* psymval
,
823 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
825 This_insn::template rela
<32>(view
, 0, 0x003fffff, object
, psymval
, addend
);
828 // R_SPARC_13: (Symbol + Addend)
830 rela32_13(unsigned char* view
,
831 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
832 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
834 This_insn::template rela
<32>(view
, 0, 0x00001fff, value
, addend
);
837 // R_SPARC_13: (Symbol + Addend)
839 rela32_13(unsigned char* view
,
840 const Sized_relobj_file
<size
, big_endian
>* object
,
841 const Symbol_value
<size
>* psymval
,
842 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
844 This_insn::template rela
<32>(view
, 0, 0x00001fff, object
, psymval
, addend
);
847 // R_SPARC_UA16: (Symbol + Addend)
849 ua16(unsigned char* view
,
850 const Sized_relobj_file
<size
, big_endian
>* object
,
851 const Symbol_value
<size
>* psymval
,
852 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
854 This::template rela_ua
<16>(view
, 0, 0xffff, object
, psymval
, addend
);
857 // R_SPARC_UA32: (Symbol + Addend)
859 ua32(unsigned char* view
,
860 const Sized_relobj_file
<size
, big_endian
>* object
,
861 const Symbol_value
<size
>* psymval
,
862 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
864 This::template rela_ua
<32>(view
, 0, 0xffffffff, object
, psymval
, addend
);
867 // R_SPARC_UA64: (Symbol + Addend)
869 ua64(unsigned char* view
,
870 const Sized_relobj_file
<size
, big_endian
>* object
,
871 const Symbol_value
<size
>* psymval
,
872 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
874 This::template rela_ua
<64>(view
, 0, ~(elfcpp::Elf_Xword
) 0,
875 object
, psymval
, addend
);
878 // R_SPARC_DISP8: (Symbol + Addend - Address)
880 disp8(unsigned char* view
,
881 const Sized_relobj_file
<size
, big_endian
>* object
,
882 const Symbol_value
<size
>* psymval
,
883 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
884 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
886 This::template pcrela_unaligned
<8>(view
, object
, psymval
,
890 // R_SPARC_DISP16: (Symbol + Addend - Address)
892 disp16(unsigned char* view
,
893 const Sized_relobj_file
<size
, big_endian
>* object
,
894 const Symbol_value
<size
>* psymval
,
895 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
896 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
898 This::template pcrela_unaligned
<16>(view
, object
, psymval
,
902 // R_SPARC_DISP32: (Symbol + Addend - Address)
904 disp32(unsigned char* view
,
905 const Sized_relobj_file
<size
, big_endian
>* object
,
906 const Symbol_value
<size
>* psymval
,
907 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
908 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
910 This::template pcrela_unaligned
<32>(view
, object
, psymval
,
914 // R_SPARC_DISP64: (Symbol + Addend - Address)
916 disp64(unsigned char* view
,
917 const Sized_relobj_file
<size
, big_endian
>* object
,
918 const Symbol_value
<size
>* psymval
,
919 elfcpp::Elf_Xword addend
,
920 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
922 This::template pcrela_unaligned
<64>(view
, object
, psymval
,
926 // R_SPARC_H34: (Symbol + Addend) >> 12
928 h34(unsigned char* view
,
929 const Sized_relobj_file
<size
, big_endian
>* object
,
930 const Symbol_value
<size
>* psymval
,
931 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
933 This_insn::template rela
<32>(view
, 12, 0x003fffff, object
, psymval
, addend
);
936 // R_SPARC_H44: (Symbol + Addend) >> 22
938 h44(unsigned char* view
,
939 const Sized_relobj_file
<size
, big_endian
>* object
,
940 const Symbol_value
<size
>* psymval
,
941 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
943 This_insn::template rela
<32>(view
, 22, 0x003fffff, object
, psymval
, addend
);
946 // R_SPARC_M44: ((Symbol + Addend) >> 12) & 0x3ff
948 m44(unsigned char* view
,
949 const Sized_relobj_file
<size
, big_endian
>* object
,
950 const Symbol_value
<size
>* psymval
,
951 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
953 This_insn::template rela
<32>(view
, 12, 0x000003ff, object
, psymval
, addend
);
956 // R_SPARC_L44: (Symbol + Addend) & 0xfff
958 l44(unsigned char* view
,
959 const Sized_relobj_file
<size
, big_endian
>* object
,
960 const Symbol_value
<size
>* psymval
,
961 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
963 This_insn::template rela
<32>(view
, 0, 0x00000fff, object
, psymval
, addend
);
966 // R_SPARC_HH22: (Symbol + Addend) >> 42
968 hh22(unsigned char* view
,
969 const Sized_relobj_file
<size
, big_endian
>* object
,
970 const Symbol_value
<size
>* psymval
,
971 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
973 This_insn::template rela
<32>(view
, 42, 0x003fffff, object
, psymval
, addend
);
976 // R_SPARC_PC_HH22: (Symbol + Addend - Address) >> 42
978 pc_hh22(unsigned char* view
,
979 const Sized_relobj_file
<size
, big_endian
>* object
,
980 const Symbol_value
<size
>* psymval
,
981 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
982 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
984 This_insn::template pcrela
<32>(view
, 42, 0x003fffff, object
,
985 psymval
, addend
, address
);
988 // R_SPARC_HM10: ((Symbol + Addend) >> 32) & 0x3ff
990 hm10(unsigned char* view
,
991 const Sized_relobj_file
<size
, big_endian
>* object
,
992 const Symbol_value
<size
>* psymval
,
993 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
995 This_insn::template rela
<32>(view
, 32, 0x000003ff, object
, psymval
, addend
);
998 // R_SPARC_PC_HM10: ((Symbol + Addend - Address) >> 32) & 0x3ff
1000 pc_hm10(unsigned char* view
,
1001 const Sized_relobj_file
<size
, big_endian
>* object
,
1002 const Symbol_value
<size
>* psymval
,
1003 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
,
1004 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
)
1006 This_insn::template pcrela
<32>(view
, 32, 0x000003ff, object
,
1007 psymval
, addend
, address
);
1010 // R_SPARC_11: (Symbol + Addend)
1012 rela32_11(unsigned char* view
,
1013 const Sized_relobj_file
<size
, big_endian
>* object
,
1014 const Symbol_value
<size
>* psymval
,
1015 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1017 This_insn::template rela
<32>(view
, 0, 0x000007ff, object
, psymval
, addend
);
1020 // R_SPARC_10: (Symbol + Addend)
1022 rela32_10(unsigned char* view
,
1023 const Sized_relobj_file
<size
, big_endian
>* object
,
1024 const Symbol_value
<size
>* psymval
,
1025 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1027 This_insn::template rela
<32>(view
, 0, 0x000003ff, object
, psymval
, addend
);
1030 // R_SPARC_7: (Symbol + Addend)
1032 rela32_7(unsigned char* view
,
1033 const Sized_relobj_file
<size
, big_endian
>* object
,
1034 const Symbol_value
<size
>* psymval
,
1035 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1037 This_insn::template rela
<32>(view
, 0, 0x0000007f, object
, psymval
, addend
);
1040 // R_SPARC_6: (Symbol + Addend)
1042 rela32_6(unsigned char* view
,
1043 const Sized_relobj_file
<size
, big_endian
>* object
,
1044 const Symbol_value
<size
>* psymval
,
1045 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1047 This_insn::template rela
<32>(view
, 0, 0x0000003f, object
, psymval
, addend
);
1050 // R_SPARC_5: (Symbol + Addend)
1052 rela32_5(unsigned char* view
,
1053 const Sized_relobj_file
<size
, big_endian
>* object
,
1054 const Symbol_value
<size
>* psymval
,
1055 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1057 This_insn::template rela
<32>(view
, 0, 0x0000001f, object
, psymval
, addend
);
1060 // R_SPARC_TLS_LDO_HIX22: @dtpoff(Symbol + Addend) >> 10
1062 ldo_hix22(unsigned char* view
,
1063 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1064 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1066 This_insn::hi22(view
, value
, addend
);
1069 // R_SPARC_TLS_LDO_LOX10: @dtpoff(Symbol + Addend) & 0x3ff
1071 ldo_lox10(unsigned char* view
,
1072 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1073 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1075 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1076 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1077 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1078 Valtype reloc
= (value
+ addend
);
1083 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1086 // R_SPARC_TLS_LE_HIX22: (@tpoff(Symbol + Addend) ^ 0xffffffffffffffff) >> 10
1088 hix22(unsigned char* view
,
1089 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1090 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1092 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1093 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1094 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1095 Valtype reloc
= (value
+ addend
);
1099 reloc
^= ~(Valtype
)0;
1104 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1107 // R_SPARC_GOTDATA_OP_HIX22: @gdopoff(Symbol + Addend) >> 10
1109 gdop_hix22(unsigned char* view
,
1110 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1111 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1113 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1114 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1115 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1116 int32_t reloc
= static_cast<int32_t>(value
+ addend
);
1121 reloc
^= ~static_cast<int32_t>(0);
1126 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1129 // R_SPARC_HIX22: ((Symbol + Addend) ^ 0xffffffffffffffff) >> 10
1131 hix22(unsigned char* view
,
1132 const Sized_relobj_file
<size
, big_endian
>* object
,
1133 const Symbol_value
<size
>* psymval
,
1134 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1136 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1137 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1138 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1139 Valtype reloc
= psymval
->value(object
, addend
);
1143 reloc
^= ~(Valtype
)0;
1148 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1152 // R_SPARC_TLS_LE_LOX10: (@tpoff(Symbol + Addend) & 0x3ff) | 0x1c00
1154 lox10(unsigned char* view
,
1155 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1156 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1158 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1159 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1160 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1161 Valtype reloc
= (value
+ addend
);
1167 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1170 // R_SPARC_GOTDATA_OP_LOX10: (@gdopoff(Symbol + Addend) & 0x3ff) | 0x1c00
1172 gdop_lox10(unsigned char* view
,
1173 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1174 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1176 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1177 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1178 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1179 int32_t reloc
= static_cast<int32_t>(value
+ addend
);
1182 reloc
= (reloc
& 0x3ff) | 0x1c00;
1184 reloc
= (reloc
& 0x3ff);
1187 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1190 // R_SPARC_LOX10: ((Symbol + Addend) & 0x3ff) | 0x1c00
1192 lox10(unsigned char* view
,
1193 const Sized_relobj_file
<size
, big_endian
>* object
,
1194 const Symbol_value
<size
>* psymval
,
1195 typename
elfcpp::Elf_types
<size
>::Elf_Addr addend
)
1197 typedef typename
elfcpp::Swap
<32, true>::Valtype Valtype
;
1198 Valtype
* wv
= reinterpret_cast<Valtype
*>(view
);
1199 Valtype val
= elfcpp::Swap
<32, true>::readval(wv
);
1200 Valtype reloc
= psymval
->value(object
, addend
);
1206 elfcpp::Swap
<32, true>::writeval(wv
, val
| reloc
);
1210 // Get the GOT section, creating it if necessary.
1212 template<int size
, bool big_endian
>
1213 Output_data_got
<size
, big_endian
>*
1214 Target_sparc
<size
, big_endian
>::got_section(Symbol_table
* symtab
,
1217 if (this->got_
== NULL
)
1219 gold_assert(symtab
!= NULL
&& layout
!= NULL
);
1221 this->got_
= new Output_data_got
<size
, big_endian
>();
1223 layout
->add_output_section_data(".got", elfcpp::SHT_PROGBITS
,
1225 | elfcpp::SHF_WRITE
),
1226 this->got_
, ORDER_RELRO
, true);
1228 // Define _GLOBAL_OFFSET_TABLE_ at the start of the .got section.
1229 symtab
->define_in_output_data("_GLOBAL_OFFSET_TABLE_", NULL
,
1230 Symbol_table::PREDEFINED
,
1232 0, 0, elfcpp::STT_OBJECT
,
1234 elfcpp::STV_HIDDEN
, 0,
1241 // Get the dynamic reloc section, creating it if necessary.
1243 template<int size
, bool big_endian
>
1244 typename Target_sparc
<size
, big_endian
>::Reloc_section
*
1245 Target_sparc
<size
, big_endian
>::rela_dyn_section(Layout
* layout
)
1247 if (this->rela_dyn_
== NULL
)
1249 gold_assert(layout
!= NULL
);
1250 this->rela_dyn_
= new Reloc_section(parameters
->options().combreloc());
1251 layout
->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA
,
1252 elfcpp::SHF_ALLOC
, this->rela_dyn_
,
1253 ORDER_DYNAMIC_RELOCS
, false);
1255 return this->rela_dyn_
;
1258 // Get the section to use for IFUNC relocs, creating it if
1259 // necessary. These go in .rela.dyn, but only after all other dynamic
1260 // relocations. They need to follow the other dynamic relocations so
1261 // that they can refer to global variables initialized by those
1264 template<int size
, bool big_endian
>
1265 typename Target_sparc
<size
, big_endian
>::Reloc_section
*
1266 Target_sparc
<size
, big_endian
>::rela_ifunc_section(Layout
* layout
)
1268 if (this->rela_ifunc_
== NULL
)
1270 // Make sure we have already created the dynamic reloc section.
1271 this->rela_dyn_section(layout
);
1272 this->rela_ifunc_
= new Reloc_section(false);
1273 layout
->add_output_section_data(".rela.dyn", elfcpp::SHT_RELA
,
1274 elfcpp::SHF_ALLOC
, this->rela_ifunc_
,
1275 ORDER_DYNAMIC_RELOCS
, false);
1276 gold_assert(this->rela_dyn_
->output_section()
1277 == this->rela_ifunc_
->output_section());
1279 return this->rela_ifunc_
;
1282 // A class to handle the PLT data.
1284 template<int size
, bool big_endian
>
1285 class Output_data_plt_sparc
: public Output_section_data
1288 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true,
1289 size
, big_endian
> Reloc_section
;
1291 Output_data_plt_sparc(Layout
*);
1293 // Add an entry to the PLT.
1294 void add_entry(Symbol_table
* symtab
, Layout
* layout
, Symbol
* gsym
);
1296 // Add an entry to the PLT for a local STT_GNU_IFUNC symbol.
1298 add_local_ifunc_entry(Symbol_table
*, Layout
*,
1299 Sized_relobj_file
<size
, big_endian
>* relobj
,
1300 unsigned int local_sym_index
);
1302 // Return the .rela.plt section data.
1303 const Reloc_section
* rel_plt() const
1308 // Return where the IFUNC relocations should go.
1310 rela_ifunc(Symbol_table
*, Layout
*);
1313 emit_pending_ifunc_relocs();
1315 // Return whether we created a section for IFUNC relocations.
1317 has_ifunc_section() const
1318 { return this->ifunc_rel_
!= NULL
; }
1320 // Return the number of PLT entries.
1323 { return this->count_
+ this->ifunc_count_
; }
1325 // Return the offset of the first non-reserved PLT entry.
1327 first_plt_entry_offset()
1328 { return 4 * base_plt_entry_size
; }
1330 // Return the size of a PLT entry.
1332 get_plt_entry_size()
1333 { return base_plt_entry_size
; }
1335 // Return the PLT address to use for a global symbol.
1337 address_for_global(const Symbol
*);
1339 // Return the PLT address to use for a local symbol.
1341 address_for_local(const Relobj
*, unsigned int symndx
);
1344 void do_adjust_output_section(Output_section
* os
);
1346 // Write to a map file.
1348 do_print_to_mapfile(Mapfile
* mapfile
) const
1349 { mapfile
->print_output_data(this, _("** PLT")); }
1352 // The size of an entry in the PLT.
1353 static const int base_plt_entry_size
= (size
== 32 ? 12 : 32);
1355 static const unsigned int plt_entries_per_block
= 160;
1356 static const unsigned int plt_insn_chunk_size
= 24;
1357 static const unsigned int plt_pointer_chunk_size
= 8;
1358 static const unsigned int plt_block_size
=
1359 (plt_entries_per_block
1360 * (plt_insn_chunk_size
+ plt_pointer_chunk_size
));
1363 plt_index_to_offset(unsigned int index
)
1365 section_offset_type offset
;
1367 if (size
== 32 || index
< 32768)
1368 offset
= index
* base_plt_entry_size
;
1371 unsigned int ext_index
= index
- 32768;
1373 offset
= (32768 * base_plt_entry_size
)
1374 + ((ext_index
/ plt_entries_per_block
)
1376 + ((ext_index
% plt_entries_per_block
)
1377 * plt_insn_chunk_size
);
1382 // Set the final size.
1384 set_final_data_size()
1386 unsigned int full_count
= this->entry_count() + 4;
1387 unsigned int extra
= (size
== 32 ? 4 : 0);
1388 section_offset_type sz
= plt_index_to_offset(full_count
) + extra
;
1390 return this->set_data_size(sz
);
1393 // Write out the PLT data.
1395 do_write(Output_file
*);
1401 unsigned int plt_index
;
1407 Sized_relobj_file
<size
, big_endian
>* object
;
1408 unsigned int local_sym_index
;
1409 unsigned int plt_index
;
1412 // The reloc section.
1413 Reloc_section
* rel_
;
1414 // The IFUNC relocations, if necessary. These must follow the
1415 // regular relocations.
1416 Reloc_section
* ifunc_rel_
;
1417 // The number of PLT entries.
1418 unsigned int count_
;
1419 // The number of PLT entries for IFUNC symbols.
1420 unsigned int ifunc_count_
;
1421 // Global STT_GNU_IFUNC symbols.
1422 std::vector
<Global_ifunc
> global_ifuncs_
;
1423 // Local STT_GNU_IFUNC symbols.
1424 std::vector
<Local_ifunc
> local_ifuncs_
;
1427 // Define the constants as required by C++ standard.
1429 template<int size
, bool big_endian
>
1430 const int Output_data_plt_sparc
<size
, big_endian
>::base_plt_entry_size
;
1432 template<int size
, bool big_endian
>
1434 Output_data_plt_sparc
<size
, big_endian
>::plt_entries_per_block
;
1436 template<int size
, bool big_endian
>
1437 const unsigned int Output_data_plt_sparc
<size
, big_endian
>::plt_insn_chunk_size
;
1439 template<int size
, bool big_endian
>
1441 Output_data_plt_sparc
<size
, big_endian
>::plt_pointer_chunk_size
;
1443 template<int size
, bool big_endian
>
1444 const unsigned int Output_data_plt_sparc
<size
, big_endian
>::plt_block_size
;
1446 // Create the PLT section. The ordinary .got section is an argument,
1447 // since we need to refer to the start.
1449 template<int size
, bool big_endian
>
1450 Output_data_plt_sparc
<size
, big_endian
>::Output_data_plt_sparc(Layout
* layout
)
1451 : Output_section_data(size
== 32 ? 4 : 8), ifunc_rel_(NULL
),
1452 count_(0), ifunc_count_(0), global_ifuncs_(), local_ifuncs_()
1454 this->rel_
= new Reloc_section(false);
1455 layout
->add_output_section_data(".rela.plt", elfcpp::SHT_RELA
,
1456 elfcpp::SHF_ALLOC
, this->rel_
,
1457 ORDER_DYNAMIC_PLT_RELOCS
, false);
1460 template<int size
, bool big_endian
>
1462 Output_data_plt_sparc
<size
, big_endian
>::do_adjust_output_section(Output_section
* os
)
1467 // Add an entry to the PLT.
1469 template<int size
, bool big_endian
>
1471 Output_data_plt_sparc
<size
, big_endian
>::add_entry(Symbol_table
* symtab
,
1475 gold_assert(!gsym
->has_plt_offset());
1477 section_offset_type plt_offset
;
1480 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
1481 && gsym
->can_use_relative_reloc(false))
1483 index
= this->ifunc_count_
;
1484 plt_offset
= plt_index_to_offset(index
);
1485 gsym
->set_plt_offset(plt_offset
);
1486 ++this->ifunc_count_
;
1487 Reloc_section
* rel
= this->rela_ifunc(symtab
, layout
);
1489 struct Global_ifunc gi
;
1492 gi
.plt_index
= index
;
1493 this->global_ifuncs_
.push_back(gi
);
1497 plt_offset
= plt_index_to_offset(this->count_
+ 4);
1498 gsym
->set_plt_offset(plt_offset
);
1500 gsym
->set_needs_dynsym_entry();
1501 this->rel_
->add_global(gsym
, elfcpp::R_SPARC_JMP_SLOT
, this,
1505 // Note that we don't need to save the symbol. The contents of the
1506 // PLT are independent of which symbols are used. The symbols only
1507 // appear in the relocations.
1510 template<int size
, bool big_endian
>
1512 Output_data_plt_sparc
<size
, big_endian
>::add_local_ifunc_entry(
1513 Symbol_table
* symtab
,
1515 Sized_relobj_file
<size
, big_endian
>* relobj
,
1516 unsigned int local_sym_index
)
1518 unsigned int index
= this->ifunc_count_
;
1519 section_offset_type plt_offset
;
1521 plt_offset
= plt_index_to_offset(index
);
1522 ++this->ifunc_count_
;
1524 Reloc_section
* rel
= this->rela_ifunc(symtab
, layout
);
1526 struct Local_ifunc li
;
1529 li
.local_sym_index
= local_sym_index
;
1530 li
.plt_index
= index
;
1531 this->local_ifuncs_
.push_back(li
);
1536 // Emit any pending IFUNC plt relocations.
1538 template<int size
, bool big_endian
>
1540 Output_data_plt_sparc
<size
, big_endian
>::emit_pending_ifunc_relocs()
1542 // Emit any pending IFUNC relocs.
1543 for (typename
std::vector
<Global_ifunc
>::const_iterator p
=
1544 this->global_ifuncs_
.begin();
1545 p
!= this->global_ifuncs_
.end();
1548 section_offset_type plt_offset
;
1551 index
= this->count_
+ p
->plt_index
+ 4;
1552 plt_offset
= this->plt_index_to_offset(index
);
1553 p
->rel
->add_symbolless_global_addend(p
->gsym
, elfcpp::R_SPARC_JMP_IREL
,
1554 this, plt_offset
, 0);
1557 for (typename
std::vector
<Local_ifunc
>::const_iterator p
=
1558 this->local_ifuncs_
.begin();
1559 p
!= this->local_ifuncs_
.end();
1562 section_offset_type plt_offset
;
1565 index
= this->count_
+ p
->plt_index
+ 4;
1566 plt_offset
= this->plt_index_to_offset(index
);
1567 p
->rel
->add_symbolless_local_addend(p
->object
, p
->local_sym_index
,
1568 elfcpp::R_SPARC_JMP_IREL
,
1569 this, plt_offset
, 0);
1573 // Return where the IFUNC relocations should go in the PLT. These
1574 // follow the non-IFUNC relocations.
1576 template<int size
, bool big_endian
>
1577 typename Output_data_plt_sparc
<size
, big_endian
>::Reloc_section
*
1578 Output_data_plt_sparc
<size
, big_endian
>::rela_ifunc(
1579 Symbol_table
* symtab
,
1582 if (this->ifunc_rel_
== NULL
)
1584 this->ifunc_rel_
= new Reloc_section(false);
1585 layout
->add_output_section_data(".rela.plt", elfcpp::SHT_RELA
,
1586 elfcpp::SHF_ALLOC
, this->ifunc_rel_
,
1587 ORDER_DYNAMIC_PLT_RELOCS
, false);
1588 gold_assert(this->ifunc_rel_
->output_section()
1589 == this->rel_
->output_section());
1591 if (parameters
->doing_static_link())
1593 // A statically linked executable will only have a .rel.plt
1594 // section to hold R_SPARC_IRELATIVE and R_SPARC_JMP_IREL
1595 // relocs for STT_GNU_IFUNC symbols. The library will use
1596 // these symbols to locate the IRELATIVE and JMP_IREL relocs
1597 // at program startup time.
1598 symtab
->define_in_output_data("__rela_iplt_start", NULL
,
1599 Symbol_table::PREDEFINED
,
1600 this->ifunc_rel_
, 0, 0,
1601 elfcpp::STT_NOTYPE
, elfcpp::STB_GLOBAL
,
1602 elfcpp::STV_HIDDEN
, 0, false, true);
1603 symtab
->define_in_output_data("__rela_iplt_end", NULL
,
1604 Symbol_table::PREDEFINED
,
1605 this->ifunc_rel_
, 0, 0,
1606 elfcpp::STT_NOTYPE
, elfcpp::STB_GLOBAL
,
1607 elfcpp::STV_HIDDEN
, 0, true, true);
1610 return this->ifunc_rel_
;
1613 // Return the PLT address to use for a global symbol.
1615 template<int size
, bool big_endian
>
1617 Output_data_plt_sparc
<size
, big_endian
>::address_for_global(const Symbol
* gsym
)
1619 uint64_t offset
= 0;
1620 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
1621 && gsym
->can_use_relative_reloc(false))
1622 offset
= plt_index_to_offset(this->count_
+ 4);
1623 return this->address() + offset
+ gsym
->plt_offset();
1626 // Return the PLT address to use for a local symbol. These are always
1627 // IRELATIVE relocs.
1629 template<int size
, bool big_endian
>
1631 Output_data_plt_sparc
<size
, big_endian
>::address_for_local(
1632 const Relobj
* object
,
1635 return (this->address()
1636 + plt_index_to_offset(this->count_
+ 4)
1637 + object
->local_plt_offset(r_sym
));
1640 static const unsigned int sparc_nop
= 0x01000000;
1641 static const unsigned int sparc_sethi_g1
= 0x03000000;
1642 static const unsigned int sparc_branch_always
= 0x30800000;
1643 static const unsigned int sparc_branch_always_pt
= 0x30680000;
1644 static const unsigned int sparc_mov
= 0x80100000;
1645 static const unsigned int sparc_mov_g0_o0
= 0x90100000;
1646 static const unsigned int sparc_mov_o7_g5
= 0x8a10000f;
1647 static const unsigned int sparc_call_plus_8
= 0x40000002;
1648 static const unsigned int sparc_ldx_o7_imm_g1
= 0xc25be000;
1649 static const unsigned int sparc_jmpl_o7_g1_g1
= 0x83c3c001;
1650 static const unsigned int sparc_mov_g5_o7
= 0x9e100005;
1652 // Write out the PLT.
1654 template<int size
, bool big_endian
>
1656 Output_data_plt_sparc
<size
, big_endian
>::do_write(Output_file
* of
)
1658 const off_t offset
= this->offset();
1659 const section_size_type oview_size
=
1660 convert_to_section_size_type(this->data_size());
1661 unsigned char* const oview
= of
->get_output_view(offset
, oview_size
);
1662 unsigned char* pov
= oview
;
1664 memset(pov
, 0, base_plt_entry_size
* 4);
1665 pov
+= this->first_plt_entry_offset();
1667 unsigned int plt_offset
= base_plt_entry_size
* 4;
1668 const unsigned int count
= this->entry_count();
1674 limit
= (count
> 32768 ? 32768 : count
);
1676 for (unsigned int i
= 0; i
< limit
; ++i
)
1678 elfcpp::Swap
<32, true>::writeval(pov
+ 0x00,
1679 sparc_sethi_g1
+ plt_offset
);
1680 elfcpp::Swap
<32, true>::writeval(pov
+ 0x04,
1681 sparc_branch_always_pt
+
1682 (((base_plt_entry_size
-
1683 (plt_offset
+ 4)) >> 2) &
1685 elfcpp::Swap
<32, true>::writeval(pov
+ 0x08, sparc_nop
);
1686 elfcpp::Swap
<32, true>::writeval(pov
+ 0x0c, sparc_nop
);
1687 elfcpp::Swap
<32, true>::writeval(pov
+ 0x10, sparc_nop
);
1688 elfcpp::Swap
<32, true>::writeval(pov
+ 0x14, sparc_nop
);
1689 elfcpp::Swap
<32, true>::writeval(pov
+ 0x18, sparc_nop
);
1690 elfcpp::Swap
<32, true>::writeval(pov
+ 0x1c, sparc_nop
);
1692 pov
+= base_plt_entry_size
;
1693 plt_offset
+= base_plt_entry_size
;
1698 unsigned int ext_cnt
= count
- 32768;
1699 unsigned int blks
= ext_cnt
/ plt_entries_per_block
;
1701 for (unsigned int i
= 0; i
< blks
; ++i
)
1703 unsigned int data_off
= (plt_entries_per_block
1704 * plt_insn_chunk_size
) - 4;
1706 for (unsigned int j
= 0; j
< plt_entries_per_block
; ++j
)
1708 elfcpp::Swap
<32, true>::writeval(pov
+ 0x00,
1710 elfcpp::Swap
<32, true>::writeval(pov
+ 0x04,
1712 elfcpp::Swap
<32, true>::writeval(pov
+ 0x08,
1714 elfcpp::Swap
<32, true>::writeval(pov
+ 0x0c,
1715 sparc_ldx_o7_imm_g1
+
1716 (data_off
& 0x1fff));
1717 elfcpp::Swap
<32, true>::writeval(pov
+ 0x10,
1718 sparc_jmpl_o7_g1_g1
);
1719 elfcpp::Swap
<32, true>::writeval(pov
+ 0x14,
1722 elfcpp::Swap
<64, big_endian
>::writeval(
1723 pov
+ 0x4 + data_off
,
1724 (elfcpp::Elf_Xword
) (oview
- (pov
+ 0x04)));
1726 pov
+= plt_insn_chunk_size
;
1731 unsigned int sub_blk_cnt
= ext_cnt
% plt_entries_per_block
;
1732 for (unsigned int i
= 0; i
< sub_blk_cnt
; ++i
)
1734 unsigned int data_off
= (sub_blk_cnt
1735 * plt_insn_chunk_size
) - 4;
1737 for (unsigned int j
= 0; j
< plt_entries_per_block
; ++j
)
1739 elfcpp::Swap
<32, true>::writeval(pov
+ 0x00,
1741 elfcpp::Swap
<32, true>::writeval(pov
+ 0x04,
1743 elfcpp::Swap
<32, true>::writeval(pov
+ 0x08,
1745 elfcpp::Swap
<32, true>::writeval(pov
+ 0x0c,
1746 sparc_ldx_o7_imm_g1
+
1747 (data_off
& 0x1fff));
1748 elfcpp::Swap
<32, true>::writeval(pov
+ 0x10,
1749 sparc_jmpl_o7_g1_g1
);
1750 elfcpp::Swap
<32, true>::writeval(pov
+ 0x14,
1753 elfcpp::Swap
<64, big_endian
>::writeval(
1754 pov
+ 0x4 + data_off
,
1755 (elfcpp::Elf_Xword
) (oview
- (pov
+ 0x04)));
1757 pov
+= plt_insn_chunk_size
;
1765 for (unsigned int i
= 0; i
< count
; ++i
)
1767 elfcpp::Swap
<32, true>::writeval(pov
+ 0x00,
1768 sparc_sethi_g1
+ plt_offset
);
1769 elfcpp::Swap
<32, true>::writeval(pov
+ 0x04,
1770 sparc_branch_always
+
1771 (((- (plt_offset
+ 4)) >> 2) &
1773 elfcpp::Swap
<32, true>::writeval(pov
+ 0x08, sparc_nop
);
1775 pov
+= base_plt_entry_size
;
1776 plt_offset
+= base_plt_entry_size
;
1779 elfcpp::Swap
<32, true>::writeval(pov
, sparc_nop
);
1783 gold_assert(static_cast<section_size_type
>(pov
- oview
) == oview_size
);
1785 of
->write_output_view(offset
, oview_size
, oview
);
1788 // Create the PLT section.
1790 template<int size
, bool big_endian
>
1792 Target_sparc
<size
, big_endian
>::make_plt_section(Symbol_table
* symtab
,
1795 // Create the GOT sections first.
1796 this->got_section(symtab
, layout
);
1798 // Ensure that .rela.dyn always appears before .rela.plt This is
1799 // necessary due to how, on Sparc and some other targets, .rela.dyn
1800 // needs to include .rela.plt in it's range.
1801 this->rela_dyn_section(layout
);
1803 this->plt_
= new Output_data_plt_sparc
<size
, big_endian
>(layout
);
1804 layout
->add_output_section_data(".plt", elfcpp::SHT_PROGBITS
,
1806 | elfcpp::SHF_EXECINSTR
1807 | elfcpp::SHF_WRITE
),
1808 this->plt_
, ORDER_NON_RELRO_FIRST
, false);
1810 // Define _PROCEDURE_LINKAGE_TABLE_ at the start of the .plt section.
1811 symtab
->define_in_output_data("_PROCEDURE_LINKAGE_TABLE_", NULL
,
1812 Symbol_table::PREDEFINED
,
1814 0, 0, elfcpp::STT_OBJECT
,
1816 elfcpp::STV_HIDDEN
, 0,
1820 // Create a PLT entry for a global symbol.
1822 template<int size
, bool big_endian
>
1824 Target_sparc
<size
, big_endian
>::make_plt_entry(Symbol_table
* symtab
,
1828 if (gsym
->has_plt_offset())
1831 if (this->plt_
== NULL
)
1832 this->make_plt_section(symtab
, layout
);
1834 this->plt_
->add_entry(symtab
, layout
, gsym
);
1837 // Make a PLT entry for a local STT_GNU_IFUNC symbol.
1839 template<int size
, bool big_endian
>
1841 Target_sparc
<size
, big_endian
>::make_local_ifunc_plt_entry(
1842 Symbol_table
* symtab
,
1844 Sized_relobj_file
<size
, big_endian
>* relobj
,
1845 unsigned int local_sym_index
)
1847 if (relobj
->local_has_plt_offset(local_sym_index
))
1849 if (this->plt_
== NULL
)
1850 this->make_plt_section(symtab
, layout
);
1851 unsigned int plt_offset
= this->plt_
->add_local_ifunc_entry(symtab
, layout
,
1854 relobj
->set_local_plt_offset(local_sym_index
, plt_offset
);
1857 // Return the number of entries in the PLT.
1859 template<int size
, bool big_endian
>
1861 Target_sparc
<size
, big_endian
>::plt_entry_count() const
1863 if (this->plt_
== NULL
)
1865 return this->plt_
->entry_count();
1868 // Return the offset of the first non-reserved PLT entry.
1870 template<int size
, bool big_endian
>
1872 Target_sparc
<size
, big_endian
>::first_plt_entry_offset() const
1874 return Output_data_plt_sparc
<size
, big_endian
>::first_plt_entry_offset();
1877 // Return the size of each PLT entry.
1879 template<int size
, bool big_endian
>
1881 Target_sparc
<size
, big_endian
>::plt_entry_size() const
1883 return Output_data_plt_sparc
<size
, big_endian
>::get_plt_entry_size();
1886 // Create a GOT entry for the TLS module index.
1888 template<int size
, bool big_endian
>
1890 Target_sparc
<size
, big_endian
>::got_mod_index_entry(
1891 Symbol_table
* symtab
,
1893 Sized_relobj_file
<size
, big_endian
>* object
)
1895 if (this->got_mod_index_offset_
== -1U)
1897 gold_assert(symtab
!= NULL
&& layout
!= NULL
&& object
!= NULL
);
1898 Reloc_section
* rela_dyn
= this->rela_dyn_section(layout
);
1899 Output_data_got
<size
, big_endian
>* got
;
1900 unsigned int got_offset
;
1902 got
= this->got_section(symtab
, layout
);
1903 got_offset
= got
->add_constant(0);
1904 rela_dyn
->add_local(object
, 0,
1906 elfcpp::R_SPARC_TLS_DTPMOD64
:
1907 elfcpp::R_SPARC_TLS_DTPMOD32
), got
,
1909 got
->add_constant(0);
1910 this->got_mod_index_offset_
= got_offset
;
1912 return this->got_mod_index_offset_
;
1915 // Optimize the TLS relocation type based on what we know about the
1916 // symbol. IS_FINAL is true if the final address of this symbol is
1917 // known at link time.
1919 static tls::Tls_optimization
1920 optimize_tls_reloc(bool is_final
, int r_type
)
1922 // If we are generating a shared library, then we can't do anything
1924 if (parameters
->options().shared())
1925 return tls::TLSOPT_NONE
;
1929 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
1930 case elfcpp::R_SPARC_TLS_GD_LO10
:
1931 case elfcpp::R_SPARC_TLS_GD_ADD
:
1932 case elfcpp::R_SPARC_TLS_GD_CALL
:
1933 // These are General-Dynamic which permits fully general TLS
1934 // access. Since we know that we are generating an executable,
1935 // we can convert this to Initial-Exec. If we also know that
1936 // this is a local symbol, we can further switch to Local-Exec.
1938 return tls::TLSOPT_TO_LE
;
1939 return tls::TLSOPT_TO_IE
;
1941 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
1942 case elfcpp::R_SPARC_TLS_LDM_LO10
:
1943 case elfcpp::R_SPARC_TLS_LDM_ADD
:
1944 case elfcpp::R_SPARC_TLS_LDM_CALL
:
1945 // This is Local-Dynamic, which refers to a local symbol in the
1946 // dynamic TLS block. Since we know that we generating an
1947 // executable, we can switch to Local-Exec.
1948 return tls::TLSOPT_TO_LE
;
1950 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
1951 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
1952 case elfcpp::R_SPARC_TLS_LDO_ADD
:
1953 // Another type of Local-Dynamic relocation.
1954 return tls::TLSOPT_TO_LE
;
1956 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
1957 case elfcpp::R_SPARC_TLS_IE_LO10
:
1958 case elfcpp::R_SPARC_TLS_IE_LD
:
1959 case elfcpp::R_SPARC_TLS_IE_LDX
:
1960 case elfcpp::R_SPARC_TLS_IE_ADD
:
1961 // These are Initial-Exec relocs which get the thread offset
1962 // from the GOT. If we know that we are linking against the
1963 // local symbol, we can switch to Local-Exec, which links the
1964 // thread offset into the instruction.
1966 return tls::TLSOPT_TO_LE
;
1967 return tls::TLSOPT_NONE
;
1969 case elfcpp::R_SPARC_TLS_LE_HIX22
: // Local-exec
1970 case elfcpp::R_SPARC_TLS_LE_LOX10
:
1971 // When we already have Local-Exec, there is nothing further we
1973 return tls::TLSOPT_NONE
;
1980 // Get the Reference_flags for a particular relocation.
1982 template<int size
, bool big_endian
>
1984 Target_sparc
<size
, big_endian
>::Scan::get_reference_flags(unsigned int r_type
)
1989 case elfcpp::R_SPARC_NONE
:
1990 case elfcpp::R_SPARC_REGISTER
:
1991 case elfcpp::R_SPARC_GNU_VTINHERIT
:
1992 case elfcpp::R_SPARC_GNU_VTENTRY
:
1993 // No symbol reference.
1996 case elfcpp::R_SPARC_UA64
:
1997 case elfcpp::R_SPARC_64
:
1998 case elfcpp::R_SPARC_HIX22
:
1999 case elfcpp::R_SPARC_LOX10
:
2000 case elfcpp::R_SPARC_H34
:
2001 case elfcpp::R_SPARC_H44
:
2002 case elfcpp::R_SPARC_M44
:
2003 case elfcpp::R_SPARC_L44
:
2004 case elfcpp::R_SPARC_HH22
:
2005 case elfcpp::R_SPARC_HM10
:
2006 case elfcpp::R_SPARC_LM22
:
2007 case elfcpp::R_SPARC_HI22
:
2008 case elfcpp::R_SPARC_LO10
:
2009 case elfcpp::R_SPARC_OLO10
:
2010 case elfcpp::R_SPARC_UA32
:
2011 case elfcpp::R_SPARC_32
:
2012 case elfcpp::R_SPARC_UA16
:
2013 case elfcpp::R_SPARC_16
:
2014 case elfcpp::R_SPARC_11
:
2015 case elfcpp::R_SPARC_10
:
2016 case elfcpp::R_SPARC_8
:
2017 case elfcpp::R_SPARC_7
:
2018 case elfcpp::R_SPARC_6
:
2019 case elfcpp::R_SPARC_5
:
2020 return Symbol::ABSOLUTE_REF
;
2022 case elfcpp::R_SPARC_DISP8
:
2023 case elfcpp::R_SPARC_DISP16
:
2024 case elfcpp::R_SPARC_DISP32
:
2025 case elfcpp::R_SPARC_DISP64
:
2026 case elfcpp::R_SPARC_PC_HH22
:
2027 case elfcpp::R_SPARC_PC_HM10
:
2028 case elfcpp::R_SPARC_PC_LM22
:
2029 case elfcpp::R_SPARC_PC10
:
2030 case elfcpp::R_SPARC_PC22
:
2031 case elfcpp::R_SPARC_WDISP30
:
2032 case elfcpp::R_SPARC_WDISP22
:
2033 case elfcpp::R_SPARC_WDISP19
:
2034 case elfcpp::R_SPARC_WDISP16
:
2035 case elfcpp::R_SPARC_WDISP10
:
2036 return Symbol::RELATIVE_REF
;
2038 case elfcpp::R_SPARC_PLT64
:
2039 case elfcpp::R_SPARC_PLT32
:
2040 case elfcpp::R_SPARC_HIPLT22
:
2041 case elfcpp::R_SPARC_LOPLT10
:
2042 case elfcpp::R_SPARC_PCPLT10
:
2043 return Symbol::FUNCTION_CALL
| Symbol::ABSOLUTE_REF
;
2045 case elfcpp::R_SPARC_PCPLT32
:
2046 case elfcpp::R_SPARC_PCPLT22
:
2047 case elfcpp::R_SPARC_WPLT30
:
2048 return Symbol::FUNCTION_CALL
| Symbol::RELATIVE_REF
;
2050 case elfcpp::R_SPARC_GOTDATA_OP
:
2051 case elfcpp::R_SPARC_GOTDATA_OP_HIX22
:
2052 case elfcpp::R_SPARC_GOTDATA_OP_LOX10
:
2053 case elfcpp::R_SPARC_GOT10
:
2054 case elfcpp::R_SPARC_GOT13
:
2055 case elfcpp::R_SPARC_GOT22
:
2057 return Symbol::ABSOLUTE_REF
;
2059 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
2060 case elfcpp::R_SPARC_TLS_GD_LO10
:
2061 case elfcpp::R_SPARC_TLS_GD_ADD
:
2062 case elfcpp::R_SPARC_TLS_GD_CALL
:
2063 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
2064 case elfcpp::R_SPARC_TLS_LDM_LO10
:
2065 case elfcpp::R_SPARC_TLS_LDM_ADD
:
2066 case elfcpp::R_SPARC_TLS_LDM_CALL
:
2067 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
2068 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
2069 case elfcpp::R_SPARC_TLS_LDO_ADD
:
2070 case elfcpp::R_SPARC_TLS_LE_HIX22
:
2071 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2072 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
2073 case elfcpp::R_SPARC_TLS_IE_LO10
:
2074 case elfcpp::R_SPARC_TLS_IE_LD
:
2075 case elfcpp::R_SPARC_TLS_IE_LDX
:
2076 case elfcpp::R_SPARC_TLS_IE_ADD
:
2077 return Symbol::TLS_REF
;
2079 case elfcpp::R_SPARC_COPY
:
2080 case elfcpp::R_SPARC_GLOB_DAT
:
2081 case elfcpp::R_SPARC_JMP_SLOT
:
2082 case elfcpp::R_SPARC_JMP_IREL
:
2083 case elfcpp::R_SPARC_RELATIVE
:
2084 case elfcpp::R_SPARC_IRELATIVE
:
2085 case elfcpp::R_SPARC_TLS_DTPMOD64
:
2086 case elfcpp::R_SPARC_TLS_DTPMOD32
:
2087 case elfcpp::R_SPARC_TLS_DTPOFF64
:
2088 case elfcpp::R_SPARC_TLS_DTPOFF32
:
2089 case elfcpp::R_SPARC_TLS_TPOFF64
:
2090 case elfcpp::R_SPARC_TLS_TPOFF32
:
2092 // Not expected. We will give an error later.
2097 // Generate a PLT entry slot for a call to __tls_get_addr
2098 template<int size
, bool big_endian
>
2100 Target_sparc
<size
, big_endian
>::Scan::generate_tls_call(Symbol_table
* symtab
,
2102 Target_sparc
<size
, big_endian
>* target
)
2104 Symbol
* gsym
= target
->tls_get_addr_sym(symtab
);
2106 target
->make_plt_entry(symtab
, layout
, gsym
);
2109 // Report an unsupported relocation against a local symbol.
2111 template<int size
, bool big_endian
>
2113 Target_sparc
<size
, big_endian
>::Scan::unsupported_reloc_local(
2114 Sized_relobj_file
<size
, big_endian
>* object
,
2115 unsigned int r_type
)
2117 gold_error(_("%s: unsupported reloc %u against local symbol"),
2118 object
->name().c_str(), r_type
);
2121 // We are about to emit a dynamic relocation of type R_TYPE. If the
2122 // dynamic linker does not support it, issue an error.
2124 template<int size
, bool big_endian
>
2126 Target_sparc
<size
, big_endian
>::Scan::check_non_pic(Relobj
* object
, unsigned int r_type
)
2128 gold_assert(r_type
!= elfcpp::R_SPARC_NONE
);
2134 // These are the relocation types supported by glibc for sparc 64-bit.
2135 case elfcpp::R_SPARC_RELATIVE
:
2136 case elfcpp::R_SPARC_IRELATIVE
:
2137 case elfcpp::R_SPARC_COPY
:
2138 case elfcpp::R_SPARC_64
:
2139 case elfcpp::R_SPARC_GLOB_DAT
:
2140 case elfcpp::R_SPARC_JMP_SLOT
:
2141 case elfcpp::R_SPARC_JMP_IREL
:
2142 case elfcpp::R_SPARC_TLS_DTPMOD64
:
2143 case elfcpp::R_SPARC_TLS_DTPOFF64
:
2144 case elfcpp::R_SPARC_TLS_TPOFF64
:
2145 case elfcpp::R_SPARC_TLS_LE_HIX22
:
2146 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2147 case elfcpp::R_SPARC_8
:
2148 case elfcpp::R_SPARC_16
:
2149 case elfcpp::R_SPARC_DISP8
:
2150 case elfcpp::R_SPARC_DISP16
:
2151 case elfcpp::R_SPARC_DISP32
:
2152 case elfcpp::R_SPARC_WDISP30
:
2153 case elfcpp::R_SPARC_LO10
:
2154 case elfcpp::R_SPARC_HI22
:
2155 case elfcpp::R_SPARC_OLO10
:
2156 case elfcpp::R_SPARC_H34
:
2157 case elfcpp::R_SPARC_H44
:
2158 case elfcpp::R_SPARC_M44
:
2159 case elfcpp::R_SPARC_L44
:
2160 case elfcpp::R_SPARC_HH22
:
2161 case elfcpp::R_SPARC_HM10
:
2162 case elfcpp::R_SPARC_LM22
:
2163 case elfcpp::R_SPARC_UA16
:
2164 case elfcpp::R_SPARC_UA32
:
2165 case elfcpp::R_SPARC_UA64
:
2176 // These are the relocation types supported by glibc for sparc 32-bit.
2177 case elfcpp::R_SPARC_RELATIVE
:
2178 case elfcpp::R_SPARC_IRELATIVE
:
2179 case elfcpp::R_SPARC_COPY
:
2180 case elfcpp::R_SPARC_GLOB_DAT
:
2181 case elfcpp::R_SPARC_32
:
2182 case elfcpp::R_SPARC_JMP_SLOT
:
2183 case elfcpp::R_SPARC_JMP_IREL
:
2184 case elfcpp::R_SPARC_TLS_DTPMOD32
:
2185 case elfcpp::R_SPARC_TLS_DTPOFF32
:
2186 case elfcpp::R_SPARC_TLS_TPOFF32
:
2187 case elfcpp::R_SPARC_TLS_LE_HIX22
:
2188 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2189 case elfcpp::R_SPARC_8
:
2190 case elfcpp::R_SPARC_16
:
2191 case elfcpp::R_SPARC_DISP8
:
2192 case elfcpp::R_SPARC_DISP16
:
2193 case elfcpp::R_SPARC_DISP32
:
2194 case elfcpp::R_SPARC_LO10
:
2195 case elfcpp::R_SPARC_WDISP30
:
2196 case elfcpp::R_SPARC_HI22
:
2197 case elfcpp::R_SPARC_UA16
:
2198 case elfcpp::R_SPARC_UA32
:
2206 // This prevents us from issuing more than one error per reloc
2207 // section. But we can still wind up issuing more than one
2208 // error per object file.
2209 if (this->issued_non_pic_error_
)
2211 gold_assert(parameters
->options().output_is_position_independent());
2212 object
->error(_("requires unsupported dynamic reloc; "
2213 "recompile with -fPIC"));
2214 this->issued_non_pic_error_
= true;
2218 // Return whether we need to make a PLT entry for a relocation of the
2219 // given type against a STT_GNU_IFUNC symbol.
2221 template<int size
, bool big_endian
>
2223 Target_sparc
<size
, big_endian
>::Scan::reloc_needs_plt_for_ifunc(
2224 Sized_relobj_file
<size
, big_endian
>* object
,
2225 unsigned int r_type
)
2227 int flags
= Scan::get_reference_flags(r_type
);
2228 if (flags
& Symbol::TLS_REF
)
2229 gold_error(_("%s: unsupported TLS reloc %u for IFUNC symbol"),
2230 object
->name().c_str(), r_type
);
2234 // Scan a relocation for a local symbol.
2236 template<int size
, bool big_endian
>
2238 Target_sparc
<size
, big_endian
>::Scan::local(
2239 Symbol_table
* symtab
,
2241 Target_sparc
<size
, big_endian
>* target
,
2242 Sized_relobj_file
<size
, big_endian
>* object
,
2243 unsigned int data_shndx
,
2244 Output_section
* output_section
,
2245 const elfcpp::Rela
<size
, big_endian
>& reloc
,
2246 unsigned int r_type
,
2247 const elfcpp::Sym
<size
, big_endian
>& lsym
,
2253 bool is_ifunc
= lsym
.get_st_type() == elfcpp::STT_GNU_IFUNC
;
2254 unsigned int orig_r_type
= r_type
;
2258 && this->reloc_needs_plt_for_ifunc(object
, r_type
))
2260 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2261 target
->make_local_ifunc_plt_entry(symtab
, layout
, object
, r_sym
);
2266 case elfcpp::R_SPARC_NONE
:
2267 case elfcpp::R_SPARC_REGISTER
:
2268 case elfcpp::R_SPARC_GNU_VTINHERIT
:
2269 case elfcpp::R_SPARC_GNU_VTENTRY
:
2272 case elfcpp::R_SPARC_64
:
2273 case elfcpp::R_SPARC_32
:
2274 // If building a shared library (or a position-independent
2275 // executable), we need to create a dynamic relocation for
2276 // this location. The relocation applied at link time will
2277 // apply the link-time value, so we flag the location with
2278 // an R_SPARC_RELATIVE relocation so the dynamic loader can
2279 // relocate it easily.
2280 if (parameters
->options().output_is_position_independent())
2282 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2283 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2284 rela_dyn
->add_local_relative(object
, r_sym
, elfcpp::R_SPARC_RELATIVE
,
2285 output_section
, data_shndx
,
2286 reloc
.get_r_offset(),
2287 reloc
.get_r_addend(), is_ifunc
);
2291 case elfcpp::R_SPARC_HIX22
:
2292 case elfcpp::R_SPARC_LOX10
:
2293 case elfcpp::R_SPARC_H34
:
2294 case elfcpp::R_SPARC_H44
:
2295 case elfcpp::R_SPARC_M44
:
2296 case elfcpp::R_SPARC_L44
:
2297 case elfcpp::R_SPARC_HH22
:
2298 case elfcpp::R_SPARC_HM10
:
2299 case elfcpp::R_SPARC_LM22
:
2300 case elfcpp::R_SPARC_UA64
:
2301 case elfcpp::R_SPARC_UA32
:
2302 case elfcpp::R_SPARC_UA16
:
2303 case elfcpp::R_SPARC_HI22
:
2304 case elfcpp::R_SPARC_LO10
:
2305 case elfcpp::R_SPARC_OLO10
:
2306 case elfcpp::R_SPARC_16
:
2307 case elfcpp::R_SPARC_11
:
2308 case elfcpp::R_SPARC_10
:
2309 case elfcpp::R_SPARC_8
:
2310 case elfcpp::R_SPARC_7
:
2311 case elfcpp::R_SPARC_6
:
2312 case elfcpp::R_SPARC_5
:
2313 // If building a shared library (or a position-independent
2314 // executable), we need to create a dynamic relocation for
2316 if (parameters
->options().output_is_position_independent())
2318 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2319 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2321 check_non_pic(object
, r_type
);
2322 if (lsym
.get_st_type() != elfcpp::STT_SECTION
)
2324 rela_dyn
->add_local(object
, r_sym
, orig_r_type
, output_section
,
2325 data_shndx
, reloc
.get_r_offset(),
2326 reloc
.get_r_addend());
2330 gold_assert(lsym
.get_st_value() == 0);
2331 rela_dyn
->add_symbolless_local_addend(object
, r_sym
, orig_r_type
,
2332 output_section
, data_shndx
,
2333 reloc
.get_r_offset(),
2334 reloc
.get_r_addend());
2339 case elfcpp::R_SPARC_WDISP30
:
2340 case elfcpp::R_SPARC_WPLT30
:
2341 case elfcpp::R_SPARC_WDISP22
:
2342 case elfcpp::R_SPARC_WDISP19
:
2343 case elfcpp::R_SPARC_WDISP16
:
2344 case elfcpp::R_SPARC_WDISP10
:
2345 case elfcpp::R_SPARC_DISP8
:
2346 case elfcpp::R_SPARC_DISP16
:
2347 case elfcpp::R_SPARC_DISP32
:
2348 case elfcpp::R_SPARC_DISP64
:
2349 case elfcpp::R_SPARC_PC10
:
2350 case elfcpp::R_SPARC_PC22
:
2353 case elfcpp::R_SPARC_GOTDATA_OP
:
2354 case elfcpp::R_SPARC_GOTDATA_OP_HIX22
:
2355 case elfcpp::R_SPARC_GOTDATA_OP_LOX10
:
2356 // We will optimize this into a GOT relative relocation
2357 // and code transform the GOT load into an addition.
2360 case elfcpp::R_SPARC_GOT10
:
2361 case elfcpp::R_SPARC_GOT13
:
2362 case elfcpp::R_SPARC_GOT22
:
2364 // The symbol requires a GOT entry.
2365 Output_data_got
<size
, big_endian
>* got
;
2368 got
= target
->got_section(symtab
, layout
);
2369 r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2371 // If we are generating a shared object, we need to add a
2372 // dynamic relocation for this symbol's GOT entry.
2373 if (parameters
->options().output_is_position_independent())
2375 if (!object
->local_has_got_offset(r_sym
, GOT_TYPE_STANDARD
))
2377 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2378 unsigned int off
= got
->add_constant(0);
2379 object
->set_local_got_offset(r_sym
, GOT_TYPE_STANDARD
, off
);
2380 rela_dyn
->add_local_relative(object
, r_sym
,
2381 elfcpp::R_SPARC_RELATIVE
,
2382 got
, off
, 0, is_ifunc
);
2386 got
->add_local(object
, r_sym
, GOT_TYPE_STANDARD
);
2390 // These are initial TLS relocs, which are expected when
2392 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
2393 case elfcpp::R_SPARC_TLS_GD_LO10
:
2394 case elfcpp::R_SPARC_TLS_GD_ADD
:
2395 case elfcpp::R_SPARC_TLS_GD_CALL
:
2396 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
2397 case elfcpp::R_SPARC_TLS_LDM_LO10
:
2398 case elfcpp::R_SPARC_TLS_LDM_ADD
:
2399 case elfcpp::R_SPARC_TLS_LDM_CALL
:
2400 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
2401 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
2402 case elfcpp::R_SPARC_TLS_LDO_ADD
:
2403 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
2404 case elfcpp::R_SPARC_TLS_IE_LO10
:
2405 case elfcpp::R_SPARC_TLS_IE_LD
:
2406 case elfcpp::R_SPARC_TLS_IE_LDX
:
2407 case elfcpp::R_SPARC_TLS_IE_ADD
:
2408 case elfcpp::R_SPARC_TLS_LE_HIX22
: // Local-exec
2409 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2411 bool output_is_shared
= parameters
->options().shared();
2412 const tls::Tls_optimization optimized_type
2413 = optimize_tls_reloc(!output_is_shared
, r_type
);
2416 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
2417 case elfcpp::R_SPARC_TLS_GD_LO10
:
2418 case elfcpp::R_SPARC_TLS_GD_ADD
:
2419 case elfcpp::R_SPARC_TLS_GD_CALL
:
2420 if (optimized_type
== tls::TLSOPT_NONE
)
2422 // Create a pair of GOT entries for the module index and
2423 // dtv-relative offset.
2424 Output_data_got
<size
, big_endian
>* got
2425 = target
->got_section(symtab
, layout
);
2426 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2427 unsigned int shndx
= lsym
.get_st_shndx();
2429 shndx
= object
->adjust_sym_shndx(r_sym
, shndx
, &is_ordinary
);
2431 object
->error(_("local symbol %u has bad shndx %u"),
2434 got
->add_local_pair_with_rel(object
, r_sym
,
2435 lsym
.get_st_shndx(),
2437 target
->rela_dyn_section(layout
),
2439 ? elfcpp::R_SPARC_TLS_DTPMOD64
2440 : elfcpp::R_SPARC_TLS_DTPMOD32
));
2441 if (r_type
== elfcpp::R_SPARC_TLS_GD_CALL
)
2442 generate_tls_call(symtab
, layout
, target
);
2444 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2445 unsupported_reloc_local(object
, r_type
);
2448 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
2449 case elfcpp::R_SPARC_TLS_LDM_LO10
:
2450 case elfcpp::R_SPARC_TLS_LDM_ADD
:
2451 case elfcpp::R_SPARC_TLS_LDM_CALL
:
2452 if (optimized_type
== tls::TLSOPT_NONE
)
2454 // Create a GOT entry for the module index.
2455 target
->got_mod_index_entry(symtab
, layout
, object
);
2457 if (r_type
== elfcpp::R_SPARC_TLS_LDM_CALL
)
2458 generate_tls_call(symtab
, layout
, target
);
2460 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2461 unsupported_reloc_local(object
, r_type
);
2464 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
2465 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
2466 case elfcpp::R_SPARC_TLS_LDO_ADD
:
2469 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
2470 case elfcpp::R_SPARC_TLS_IE_LO10
:
2471 case elfcpp::R_SPARC_TLS_IE_LD
:
2472 case elfcpp::R_SPARC_TLS_IE_LDX
:
2473 case elfcpp::R_SPARC_TLS_IE_ADD
:
2474 layout
->set_has_static_tls();
2475 if (optimized_type
== tls::TLSOPT_NONE
)
2477 // Create a GOT entry for the tp-relative offset.
2478 Output_data_got
<size
, big_endian
>* got
2479 = target
->got_section(symtab
, layout
);
2480 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2482 if (!object
->local_has_got_offset(r_sym
, GOT_TYPE_TLS_OFFSET
))
2484 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2485 unsigned int off
= got
->add_constant(0);
2487 object
->set_local_got_offset(r_sym
, GOT_TYPE_TLS_OFFSET
, off
);
2489 rela_dyn
->add_symbolless_local_addend(object
, r_sym
,
2491 elfcpp::R_SPARC_TLS_TPOFF64
:
2492 elfcpp::R_SPARC_TLS_TPOFF32
),
2496 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2497 unsupported_reloc_local(object
, r_type
);
2500 case elfcpp::R_SPARC_TLS_LE_HIX22
: // Local-exec
2501 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2502 layout
->set_has_static_tls();
2503 if (output_is_shared
)
2505 // We need to create a dynamic relocation.
2506 gold_assert(lsym
.get_st_type() != elfcpp::STT_SECTION
);
2507 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(reloc
.get_r_info());
2508 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2509 rela_dyn
->add_symbolless_local_addend(object
, r_sym
, r_type
,
2510 output_section
, data_shndx
,
2511 reloc
.get_r_offset(), 0);
2518 // These are relocations which should only be seen by the
2519 // dynamic linker, and should never be seen here.
2520 case elfcpp::R_SPARC_COPY
:
2521 case elfcpp::R_SPARC_GLOB_DAT
:
2522 case elfcpp::R_SPARC_JMP_SLOT
:
2523 case elfcpp::R_SPARC_JMP_IREL
:
2524 case elfcpp::R_SPARC_RELATIVE
:
2525 case elfcpp::R_SPARC_IRELATIVE
:
2526 case elfcpp::R_SPARC_TLS_DTPMOD64
:
2527 case elfcpp::R_SPARC_TLS_DTPMOD32
:
2528 case elfcpp::R_SPARC_TLS_DTPOFF64
:
2529 case elfcpp::R_SPARC_TLS_DTPOFF32
:
2530 case elfcpp::R_SPARC_TLS_TPOFF64
:
2531 case elfcpp::R_SPARC_TLS_TPOFF32
:
2532 gold_error(_("%s: unexpected reloc %u in object file"),
2533 object
->name().c_str(), r_type
);
2537 unsupported_reloc_local(object
, r_type
);
2542 // Report an unsupported relocation against a global symbol.
2544 template<int size
, bool big_endian
>
2546 Target_sparc
<size
, big_endian
>::Scan::unsupported_reloc_global(
2547 Sized_relobj_file
<size
, big_endian
>* object
,
2548 unsigned int r_type
,
2551 gold_error(_("%s: unsupported reloc %u against global symbol %s"),
2552 object
->name().c_str(), r_type
, gsym
->demangled_name().c_str());
2555 // Scan a relocation for a global symbol.
2557 template<int size
, bool big_endian
>
2559 Target_sparc
<size
, big_endian
>::Scan::global(
2560 Symbol_table
* symtab
,
2562 Target_sparc
<size
, big_endian
>* target
,
2563 Sized_relobj_file
<size
, big_endian
>* object
,
2564 unsigned int data_shndx
,
2565 Output_section
* output_section
,
2566 const elfcpp::Rela
<size
, big_endian
>& reloc
,
2567 unsigned int r_type
,
2570 unsigned int orig_r_type
= r_type
;
2571 bool is_ifunc
= gsym
->type() == elfcpp::STT_GNU_IFUNC
;
2573 // A reference to _GLOBAL_OFFSET_TABLE_ implies that we need a got
2574 // section. We check here to avoid creating a dynamic reloc against
2575 // _GLOBAL_OFFSET_TABLE_.
2576 if (!target
->has_got_section()
2577 && strcmp(gsym
->name(), "_GLOBAL_OFFSET_TABLE_") == 0)
2578 target
->got_section(symtab
, layout
);
2582 // A STT_GNU_IFUNC symbol may require a PLT entry.
2584 && this->reloc_needs_plt_for_ifunc(object
, r_type
))
2585 target
->make_plt_entry(symtab
, layout
, gsym
);
2589 case elfcpp::R_SPARC_NONE
:
2590 case elfcpp::R_SPARC_REGISTER
:
2591 case elfcpp::R_SPARC_GNU_VTINHERIT
:
2592 case elfcpp::R_SPARC_GNU_VTENTRY
:
2595 case elfcpp::R_SPARC_PLT64
:
2596 case elfcpp::R_SPARC_PLT32
:
2597 case elfcpp::R_SPARC_HIPLT22
:
2598 case elfcpp::R_SPARC_LOPLT10
:
2599 case elfcpp::R_SPARC_PCPLT32
:
2600 case elfcpp::R_SPARC_PCPLT22
:
2601 case elfcpp::R_SPARC_PCPLT10
:
2602 case elfcpp::R_SPARC_WPLT30
:
2603 // If the symbol is fully resolved, this is just a PC32 reloc.
2604 // Otherwise we need a PLT entry.
2605 if (gsym
->final_value_is_known())
2607 // If building a shared library, we can also skip the PLT entry
2608 // if the symbol is defined in the output file and is protected
2610 if (gsym
->is_defined()
2611 && !gsym
->is_from_dynobj()
2612 && !gsym
->is_preemptible())
2614 target
->make_plt_entry(symtab
, layout
, gsym
);
2617 case elfcpp::R_SPARC_DISP8
:
2618 case elfcpp::R_SPARC_DISP16
:
2619 case elfcpp::R_SPARC_DISP32
:
2620 case elfcpp::R_SPARC_DISP64
:
2621 case elfcpp::R_SPARC_PC_HH22
:
2622 case elfcpp::R_SPARC_PC_HM10
:
2623 case elfcpp::R_SPARC_PC_LM22
:
2624 case elfcpp::R_SPARC_PC10
:
2625 case elfcpp::R_SPARC_PC22
:
2626 case elfcpp::R_SPARC_WDISP30
:
2627 case elfcpp::R_SPARC_WDISP22
:
2628 case elfcpp::R_SPARC_WDISP19
:
2629 case elfcpp::R_SPARC_WDISP16
:
2630 case elfcpp::R_SPARC_WDISP10
:
2632 if (gsym
->needs_plt_entry())
2633 target
->make_plt_entry(symtab
, layout
, gsym
);
2634 // Make a dynamic relocation if necessary.
2635 if (gsym
->needs_dynamic_reloc(Scan::get_reference_flags(r_type
)))
2637 if (parameters
->options().output_is_executable()
2638 && gsym
->may_need_copy_reloc())
2640 target
->copy_reloc(symtab
, layout
, object
,
2641 data_shndx
, output_section
, gsym
,
2646 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2647 check_non_pic(object
, r_type
);
2648 rela_dyn
->add_global(gsym
, orig_r_type
, output_section
, object
,
2649 data_shndx
, reloc
.get_r_offset(),
2650 reloc
.get_r_addend());
2656 case elfcpp::R_SPARC_UA64
:
2657 case elfcpp::R_SPARC_64
:
2658 case elfcpp::R_SPARC_HIX22
:
2659 case elfcpp::R_SPARC_LOX10
:
2660 case elfcpp::R_SPARC_H34
:
2661 case elfcpp::R_SPARC_H44
:
2662 case elfcpp::R_SPARC_M44
:
2663 case elfcpp::R_SPARC_L44
:
2664 case elfcpp::R_SPARC_HH22
:
2665 case elfcpp::R_SPARC_HM10
:
2666 case elfcpp::R_SPARC_LM22
:
2667 case elfcpp::R_SPARC_HI22
:
2668 case elfcpp::R_SPARC_LO10
:
2669 case elfcpp::R_SPARC_OLO10
:
2670 case elfcpp::R_SPARC_UA32
:
2671 case elfcpp::R_SPARC_32
:
2672 case elfcpp::R_SPARC_UA16
:
2673 case elfcpp::R_SPARC_16
:
2674 case elfcpp::R_SPARC_11
:
2675 case elfcpp::R_SPARC_10
:
2676 case elfcpp::R_SPARC_8
:
2677 case elfcpp::R_SPARC_7
:
2678 case elfcpp::R_SPARC_6
:
2679 case elfcpp::R_SPARC_5
:
2681 // Make a PLT entry if necessary.
2682 if (gsym
->needs_plt_entry())
2684 target
->make_plt_entry(symtab
, layout
, gsym
);
2685 // Since this is not a PC-relative relocation, we may be
2686 // taking the address of a function. In that case we need to
2687 // set the entry in the dynamic symbol table to the address of
2689 if (gsym
->is_from_dynobj() && !parameters
->options().shared())
2690 gsym
->set_needs_dynsym_value();
2692 // Make a dynamic relocation if necessary.
2693 if (gsym
->needs_dynamic_reloc(Scan::get_reference_flags(r_type
)))
2695 unsigned int r_off
= reloc
.get_r_offset();
2697 // The assembler can sometimes emit unaligned relocations
2698 // for dwarf2 cfi directives.
2701 case elfcpp::R_SPARC_16
:
2703 orig_r_type
= r_type
= elfcpp::R_SPARC_UA16
;
2705 case elfcpp::R_SPARC_32
:
2707 orig_r_type
= r_type
= elfcpp::R_SPARC_UA32
;
2709 case elfcpp::R_SPARC_64
:
2711 orig_r_type
= r_type
= elfcpp::R_SPARC_UA64
;
2713 case elfcpp::R_SPARC_UA16
:
2715 orig_r_type
= r_type
= elfcpp::R_SPARC_16
;
2717 case elfcpp::R_SPARC_UA32
:
2719 orig_r_type
= r_type
= elfcpp::R_SPARC_32
;
2721 case elfcpp::R_SPARC_UA64
:
2723 orig_r_type
= r_type
= elfcpp::R_SPARC_64
;
2727 if (!parameters
->options().output_is_position_independent()
2728 && gsym
->may_need_copy_reloc())
2730 target
->copy_reloc(symtab
, layout
, object
,
2731 data_shndx
, output_section
, gsym
, reloc
);
2733 else if (((size
== 64 && r_type
== elfcpp::R_SPARC_64
)
2734 || (size
== 32 && r_type
== elfcpp::R_SPARC_32
))
2735 && gsym
->type() == elfcpp::STT_GNU_IFUNC
2736 && gsym
->can_use_relative_reloc(false)
2737 && !gsym
->is_from_dynobj()
2738 && !gsym
->is_undefined()
2739 && !gsym
->is_preemptible())
2741 // Use an IRELATIVE reloc for a locally defined
2742 // STT_GNU_IFUNC symbol. This makes a function
2743 // address in a PIE executable match the address in a
2744 // shared library that it links against.
2745 Reloc_section
* rela_dyn
=
2746 target
->rela_ifunc_section(layout
);
2747 unsigned int r_type
= elfcpp::R_SPARC_IRELATIVE
;
2748 rela_dyn
->add_symbolless_global_addend(gsym
, r_type
,
2749 output_section
, object
,
2751 reloc
.get_r_offset(),
2752 reloc
.get_r_addend());
2754 else if ((r_type
== elfcpp::R_SPARC_32
2755 || r_type
== elfcpp::R_SPARC_64
)
2756 && gsym
->can_use_relative_reloc(false))
2758 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2759 rela_dyn
->add_global_relative(gsym
, elfcpp::R_SPARC_RELATIVE
,
2760 output_section
, object
,
2761 data_shndx
, reloc
.get_r_offset(),
2762 reloc
.get_r_addend(), is_ifunc
);
2766 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2768 check_non_pic(object
, r_type
);
2769 if (gsym
->is_from_dynobj()
2770 || gsym
->is_undefined()
2771 || gsym
->is_preemptible())
2772 rela_dyn
->add_global(gsym
, orig_r_type
, output_section
,
2774 reloc
.get_r_offset(),
2775 reloc
.get_r_addend());
2777 rela_dyn
->add_symbolless_global_addend(gsym
, orig_r_type
,
2780 reloc
.get_r_offset(),
2781 reloc
.get_r_addend());
2787 case elfcpp::R_SPARC_GOTDATA_OP
:
2788 case elfcpp::R_SPARC_GOTDATA_OP_HIX22
:
2789 case elfcpp::R_SPARC_GOTDATA_OP_LOX10
:
2790 if (gsym
->is_defined()
2791 && !gsym
->is_from_dynobj()
2792 && !gsym
->is_preemptible()
2795 // We will optimize this into a GOT relative relocation
2796 // and code transform the GOT load into an addition.
2799 case elfcpp::R_SPARC_GOT10
:
2800 case elfcpp::R_SPARC_GOT13
:
2801 case elfcpp::R_SPARC_GOT22
:
2803 // The symbol requires a GOT entry.
2804 Output_data_got
<size
, big_endian
>* got
;
2806 got
= target
->got_section(symtab
, layout
);
2807 if (gsym
->final_value_is_known())
2809 // For a STT_GNU_IFUNC symbol we want the PLT address.
2810 if (gsym
->type() == elfcpp::STT_GNU_IFUNC
)
2811 got
->add_global_plt(gsym
, GOT_TYPE_STANDARD
);
2813 got
->add_global(gsym
, GOT_TYPE_STANDARD
);
2817 // If this symbol is not fully resolved, we need to add a
2818 // GOT entry with a dynamic relocation.
2819 bool is_ifunc
= gsym
->type() == elfcpp::STT_GNU_IFUNC
;
2821 // Use a GLOB_DAT rather than a RELATIVE reloc if:
2823 // 1) The symbol may be defined in some other module.
2825 // 2) We are building a shared library and this is a
2826 // protected symbol; using GLOB_DAT means that the dynamic
2827 // linker can use the address of the PLT in the main
2828 // executable when appropriate so that function address
2829 // comparisons work.
2831 // 3) This is a STT_GNU_IFUNC symbol in position dependent
2832 // code, again so that function address comparisons work.
2833 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2834 if (gsym
->is_from_dynobj()
2835 || gsym
->is_undefined()
2836 || gsym
->is_preemptible()
2837 || (gsym
->visibility() == elfcpp::STV_PROTECTED
2838 && parameters
->options().shared())
2839 || (gsym
->type() == elfcpp::STT_GNU_IFUNC
2840 && parameters
->options().output_is_position_independent()
2841 && !gsym
->is_forced_local()))
2843 unsigned int r_type
= elfcpp::R_SPARC_GLOB_DAT
;
2845 // If this symbol is forced local, this relocation will
2846 // not work properly. That's because ld.so on sparc
2847 // (and 32-bit powerpc) expects st_value in the r_addend
2848 // of relocations for STB_LOCAL symbols. Curiously the
2849 // BFD linker does not promote global hidden symbols to be
2850 // STB_LOCAL in the dynamic symbol table like Gold does.
2851 gold_assert(!gsym
->is_forced_local());
2852 got
->add_global_with_rel(gsym
, GOT_TYPE_STANDARD
, rela_dyn
,
2855 else if (!gsym
->has_got_offset(GOT_TYPE_STANDARD
))
2857 unsigned int off
= got
->add_constant(0);
2859 gsym
->set_got_offset(GOT_TYPE_STANDARD
, off
);
2862 // Tell the dynamic linker to use the PLT address
2863 // when resolving relocations.
2864 if (gsym
->is_from_dynobj()
2865 && !parameters
->options().shared())
2866 gsym
->set_needs_dynsym_value();
2868 rela_dyn
->add_global_relative(gsym
, elfcpp::R_SPARC_RELATIVE
,
2869 got
, off
, 0, is_ifunc
);
2875 // These are initial tls relocs, which are expected when
2877 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
2878 case elfcpp::R_SPARC_TLS_GD_LO10
:
2879 case elfcpp::R_SPARC_TLS_GD_ADD
:
2880 case elfcpp::R_SPARC_TLS_GD_CALL
:
2881 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
2882 case elfcpp::R_SPARC_TLS_LDM_LO10
:
2883 case elfcpp::R_SPARC_TLS_LDM_ADD
:
2884 case elfcpp::R_SPARC_TLS_LDM_CALL
:
2885 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
2886 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
2887 case elfcpp::R_SPARC_TLS_LDO_ADD
:
2888 case elfcpp::R_SPARC_TLS_LE_HIX22
:
2889 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2890 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
2891 case elfcpp::R_SPARC_TLS_IE_LO10
:
2892 case elfcpp::R_SPARC_TLS_IE_LD
:
2893 case elfcpp::R_SPARC_TLS_IE_LDX
:
2894 case elfcpp::R_SPARC_TLS_IE_ADD
:
2896 const bool is_final
= gsym
->final_value_is_known();
2897 const tls::Tls_optimization optimized_type
2898 = optimize_tls_reloc(is_final
, r_type
);
2901 case elfcpp::R_SPARC_TLS_GD_HI22
: // Global-dynamic
2902 case elfcpp::R_SPARC_TLS_GD_LO10
:
2903 case elfcpp::R_SPARC_TLS_GD_ADD
:
2904 case elfcpp::R_SPARC_TLS_GD_CALL
:
2905 if (optimized_type
== tls::TLSOPT_NONE
)
2907 // Create a pair of GOT entries for the module index and
2908 // dtv-relative offset.
2909 Output_data_got
<size
, big_endian
>* got
2910 = target
->got_section(symtab
, layout
);
2911 got
->add_global_pair_with_rel(gsym
, GOT_TYPE_TLS_PAIR
,
2912 target
->rela_dyn_section(layout
),
2914 ? elfcpp::R_SPARC_TLS_DTPMOD64
2915 : elfcpp::R_SPARC_TLS_DTPMOD32
),
2917 ? elfcpp::R_SPARC_TLS_DTPOFF64
2918 : elfcpp::R_SPARC_TLS_DTPOFF32
));
2920 // Emit R_SPARC_WPLT30 against "__tls_get_addr"
2921 if (r_type
== elfcpp::R_SPARC_TLS_GD_CALL
)
2922 generate_tls_call(symtab
, layout
, target
);
2924 else if (optimized_type
== tls::TLSOPT_TO_IE
)
2926 // Create a GOT entry for the tp-relative offset.
2927 Output_data_got
<size
, big_endian
>* got
2928 = target
->got_section(symtab
, layout
);
2929 got
->add_global_with_rel(gsym
, GOT_TYPE_TLS_OFFSET
,
2930 target
->rela_dyn_section(layout
),
2932 elfcpp::R_SPARC_TLS_TPOFF64
:
2933 elfcpp::R_SPARC_TLS_TPOFF32
));
2935 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2936 unsupported_reloc_global(object
, r_type
, gsym
);
2939 case elfcpp::R_SPARC_TLS_LDM_HI22
: // Local-dynamic
2940 case elfcpp::R_SPARC_TLS_LDM_LO10
:
2941 case elfcpp::R_SPARC_TLS_LDM_ADD
:
2942 case elfcpp::R_SPARC_TLS_LDM_CALL
:
2943 if (optimized_type
== tls::TLSOPT_NONE
)
2945 // Create a GOT entry for the module index.
2946 target
->got_mod_index_entry(symtab
, layout
, object
);
2948 if (r_type
== elfcpp::R_SPARC_TLS_LDM_CALL
)
2949 generate_tls_call(symtab
, layout
, target
);
2951 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2952 unsupported_reloc_global(object
, r_type
, gsym
);
2955 case elfcpp::R_SPARC_TLS_LDO_HIX22
: // Alternate local-dynamic
2956 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
2957 case elfcpp::R_SPARC_TLS_LDO_ADD
:
2960 case elfcpp::R_SPARC_TLS_LE_HIX22
:
2961 case elfcpp::R_SPARC_TLS_LE_LOX10
:
2962 layout
->set_has_static_tls();
2963 if (parameters
->options().shared())
2965 Reloc_section
* rela_dyn
= target
->rela_dyn_section(layout
);
2966 rela_dyn
->add_symbolless_global_addend(gsym
, orig_r_type
,
2967 output_section
, object
,
2968 data_shndx
, reloc
.get_r_offset(),
2973 case elfcpp::R_SPARC_TLS_IE_HI22
: // Initial-exec
2974 case elfcpp::R_SPARC_TLS_IE_LO10
:
2975 case elfcpp::R_SPARC_TLS_IE_LD
:
2976 case elfcpp::R_SPARC_TLS_IE_LDX
:
2977 case elfcpp::R_SPARC_TLS_IE_ADD
:
2978 layout
->set_has_static_tls();
2979 if (optimized_type
== tls::TLSOPT_NONE
)
2981 // Create a GOT entry for the tp-relative offset.
2982 Output_data_got
<size
, big_endian
>* got
2983 = target
->got_section(symtab
, layout
);
2984 got
->add_global_with_rel(gsym
, GOT_TYPE_TLS_OFFSET
,
2985 target
->rela_dyn_section(layout
),
2987 ? elfcpp::R_SPARC_TLS_TPOFF64
2988 : elfcpp::R_SPARC_TLS_TPOFF32
));
2990 else if (optimized_type
!= tls::TLSOPT_TO_LE
)
2991 unsupported_reloc_global(object
, r_type
, gsym
);
2997 // These are relocations which should only be seen by the
2998 // dynamic linker, and should never be seen here.
2999 case elfcpp::R_SPARC_COPY
:
3000 case elfcpp::R_SPARC_GLOB_DAT
:
3001 case elfcpp::R_SPARC_JMP_SLOT
:
3002 case elfcpp::R_SPARC_JMP_IREL
:
3003 case elfcpp::R_SPARC_RELATIVE
:
3004 case elfcpp::R_SPARC_IRELATIVE
:
3005 case elfcpp::R_SPARC_TLS_DTPMOD64
:
3006 case elfcpp::R_SPARC_TLS_DTPMOD32
:
3007 case elfcpp::R_SPARC_TLS_DTPOFF64
:
3008 case elfcpp::R_SPARC_TLS_DTPOFF32
:
3009 case elfcpp::R_SPARC_TLS_TPOFF64
:
3010 case elfcpp::R_SPARC_TLS_TPOFF32
:
3011 gold_error(_("%s: unexpected reloc %u in object file"),
3012 object
->name().c_str(), r_type
);
3016 unsupported_reloc_global(object
, r_type
, gsym
);
3021 // Process relocations for gc.
3023 template<int size
, bool big_endian
>
3025 Target_sparc
<size
, big_endian
>::gc_process_relocs(
3026 Symbol_table
* symtab
,
3028 Sized_relobj_file
<size
, big_endian
>* object
,
3029 unsigned int data_shndx
,
3031 const unsigned char* prelocs
,
3033 Output_section
* output_section
,
3034 bool needs_special_offset_handling
,
3035 size_t local_symbol_count
,
3036 const unsigned char* plocal_symbols
)
3038 typedef Target_sparc
<size
, big_endian
> Sparc
;
3039 typedef typename Target_sparc
<size
, big_endian
>::Scan Scan
;
3041 gold::gc_process_relocs
<size
, big_endian
, Sparc
, elfcpp::SHT_RELA
, Scan
,
3042 typename
Target_sparc::Relocatable_size_for_reloc
>(
3051 needs_special_offset_handling
,
3056 // Scan relocations for a section.
3058 template<int size
, bool big_endian
>
3060 Target_sparc
<size
, big_endian
>::scan_relocs(
3061 Symbol_table
* symtab
,
3063 Sized_relobj_file
<size
, big_endian
>* object
,
3064 unsigned int data_shndx
,
3065 unsigned int sh_type
,
3066 const unsigned char* prelocs
,
3068 Output_section
* output_section
,
3069 bool needs_special_offset_handling
,
3070 size_t local_symbol_count
,
3071 const unsigned char* plocal_symbols
)
3073 typedef Target_sparc
<size
, big_endian
> Sparc
;
3074 typedef typename Target_sparc
<size
, big_endian
>::Scan Scan
;
3076 if (sh_type
== elfcpp::SHT_REL
)
3078 gold_error(_("%s: unsupported REL reloc section"),
3079 object
->name().c_str());
3083 gold::scan_relocs
<size
, big_endian
, Sparc
, elfcpp::SHT_RELA
, Scan
>(
3092 needs_special_offset_handling
,
3097 // Finalize the sections.
3099 template<int size
, bool big_endian
>
3101 Target_sparc
<size
, big_endian
>::do_finalize_sections(
3103 const Input_objects
*,
3104 Symbol_table
* symtab
)
3107 this->plt_
->emit_pending_ifunc_relocs();
3109 // Fill in some more dynamic tags.
3110 const Reloc_section
* rel_plt
= (this->plt_
== NULL
3112 : this->plt_
->rel_plt());
3113 layout
->add_target_dynamic_tags(false, this->plt_
, rel_plt
,
3114 this->rela_dyn_
, true, true);
3116 // Emit any relocs we saved in an attempt to avoid generating COPY
3118 if (this->copy_relocs_
.any_saved_relocs())
3119 this->copy_relocs_
.emit(this->rela_dyn_section(layout
));
3121 if (parameters
->doing_static_link()
3122 && (this->plt_
== NULL
|| !this->plt_
->has_ifunc_section()))
3124 // If linking statically, make sure that the __rela_iplt symbols
3125 // were defined if necessary, even if we didn't create a PLT.
3126 static const Define_symbol_in_segment syms
[] =
3129 "__rela_iplt_start", // name
3130 elfcpp::PT_LOAD
, // segment_type
3131 elfcpp::PF_W
, // segment_flags_set
3132 elfcpp::PF(0), // segment_flags_clear
3135 elfcpp::STT_NOTYPE
, // type
3136 elfcpp::STB_GLOBAL
, // binding
3137 elfcpp::STV_HIDDEN
, // visibility
3139 Symbol::SEGMENT_START
, // offset_from_base
3143 "__rela_iplt_end", // name
3144 elfcpp::PT_LOAD
, // segment_type
3145 elfcpp::PF_W
, // segment_flags_set
3146 elfcpp::PF(0), // segment_flags_clear
3149 elfcpp::STT_NOTYPE
, // type
3150 elfcpp::STB_GLOBAL
, // binding
3151 elfcpp::STV_HIDDEN
, // visibility
3153 Symbol::SEGMENT_START
, // offset_from_base
3158 symtab
->define_symbols(layout
, 2, syms
,
3159 layout
->script_options()->saw_sections_clause());
3163 // Perform a relocation.
3165 template<int size
, bool big_endian
>
3167 Target_sparc
<size
, big_endian
>::Relocate::relocate(
3168 const Relocate_info
<size
, big_endian
>* relinfo
,
3169 Target_sparc
* target
,
3172 const elfcpp::Rela
<size
, big_endian
>& rela
,
3173 unsigned int r_type
,
3174 const Sized_symbol
<size
>* gsym
,
3175 const Symbol_value
<size
>* psymval
,
3176 unsigned char* view
,
3177 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
,
3178 section_size_type view_size
)
3180 bool orig_is_ifunc
= psymval
->is_ifunc_symbol();
3183 if (this->ignore_gd_add_
)
3185 if (r_type
!= elfcpp::R_SPARC_TLS_GD_ADD
)
3186 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3187 _("missing expected TLS relocation"));
3190 this->ignore_gd_add_
= false;
3198 if (this->reloc_adjust_addr_
== view
)
3201 typedef Sparc_relocate_functions
<size
, big_endian
> Reloc
;
3202 const Sized_relobj_file
<size
, big_endian
>* object
= relinfo
->object
;
3204 // Pick the value to use for symbols defined in shared objects.
3205 Symbol_value
<size
> symval
;
3207 && gsym
->use_plt_offset(Scan::get_reference_flags(r_type
)))
3209 elfcpp::Elf_Xword value
;
3211 value
= target
->plt_address_for_global(gsym
);
3213 symval
.set_output_value(value
);
3217 else if (gsym
== NULL
&& orig_is_ifunc
)
3219 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(rela
.get_r_info());
3220 if (object
->local_has_plt_offset(r_sym
))
3222 symval
.set_output_value(target
->plt_address_for_local(object
, r_sym
));
3227 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
3229 // Get the GOT offset if needed. Unlike i386 and x86_64, our GOT
3230 // pointer points to the beginning, not the end, of the table.
3231 // So we just use the plain offset.
3232 unsigned int got_offset
= 0;
3233 bool gdop_valid
= false;
3236 case elfcpp::R_SPARC_GOTDATA_OP
:
3237 case elfcpp::R_SPARC_GOTDATA_OP_HIX22
:
3238 case elfcpp::R_SPARC_GOTDATA_OP_LOX10
:
3239 // If this is local, we did not create a GOT entry because we
3240 // intend to transform this into a GOT relative relocation.
3242 || (gsym
->is_defined()
3243 && !gsym
->is_from_dynobj()
3244 && !gsym
->is_preemptible()
3247 got_offset
= psymval
->value(object
, 0) - target
->got_address();
3251 case elfcpp::R_SPARC_GOT10
:
3252 case elfcpp::R_SPARC_GOT13
:
3253 case elfcpp::R_SPARC_GOT22
:
3256 gold_assert(gsym
->has_got_offset(GOT_TYPE_STANDARD
));
3257 got_offset
= gsym
->got_offset(GOT_TYPE_STANDARD
);
3261 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(rela
.get_r_info());
3262 gold_assert(object
->local_has_got_offset(r_sym
, GOT_TYPE_STANDARD
));
3263 got_offset
= object
->local_got_offset(r_sym
, GOT_TYPE_STANDARD
);
3273 case elfcpp::R_SPARC_NONE
:
3274 case elfcpp::R_SPARC_REGISTER
:
3275 case elfcpp::R_SPARC_GNU_VTINHERIT
:
3276 case elfcpp::R_SPARC_GNU_VTENTRY
:
3279 case elfcpp::R_SPARC_8
:
3280 Relocate_functions
<size
, big_endian
>::rela8(view
, object
,
3284 case elfcpp::R_SPARC_16
:
3285 if (rela
.get_r_offset() & 0x1)
3287 // The assembler can sometimes emit unaligned relocations
3288 // for dwarf2 cfi directives.
3289 Reloc::ua16(view
, object
, psymval
, addend
);
3292 Relocate_functions
<size
, big_endian
>::rela16(view
, object
,
3296 case elfcpp::R_SPARC_32
:
3297 if (!parameters
->options().output_is_position_independent())
3299 if (rela
.get_r_offset() & 0x3)
3301 // The assembler can sometimes emit unaligned relocations
3302 // for dwarf2 cfi directives.
3303 Reloc::ua32(view
, object
, psymval
, addend
);
3306 Relocate_functions
<size
, big_endian
>::rela32(view
, object
,
3311 case elfcpp::R_SPARC_DISP8
:
3312 Reloc::disp8(view
, object
, psymval
, addend
, address
);
3315 case elfcpp::R_SPARC_DISP16
:
3316 Reloc::disp16(view
, object
, psymval
, addend
, address
);
3319 case elfcpp::R_SPARC_DISP32
:
3320 Reloc::disp32(view
, object
, psymval
, addend
, address
);
3323 case elfcpp::R_SPARC_DISP64
:
3324 Reloc::disp64(view
, object
, psymval
, addend
, address
);
3327 case elfcpp::R_SPARC_WDISP30
:
3328 case elfcpp::R_SPARC_WPLT30
:
3329 Reloc::wdisp30(view
, object
, psymval
, addend
, address
);
3330 if (target
->may_relax())
3331 relax_call(target
, view
, rela
, view_size
);
3334 case elfcpp::R_SPARC_WDISP22
:
3335 Reloc::wdisp22(view
, object
, psymval
, addend
, address
);
3338 case elfcpp::R_SPARC_WDISP19
:
3339 Reloc::wdisp19(view
, object
, psymval
, addend
, address
);
3342 case elfcpp::R_SPARC_WDISP16
:
3343 Reloc::wdisp16(view
, object
, psymval
, addend
, address
);
3346 case elfcpp::R_SPARC_WDISP10
:
3347 Reloc::wdisp10(view
, object
, psymval
, addend
, address
);
3350 case elfcpp::R_SPARC_HI22
:
3351 Reloc::hi22(view
, object
, psymval
, addend
);
3354 case elfcpp::R_SPARC_22
:
3355 Reloc::rela32_22(view
, object
, psymval
, addend
);
3358 case elfcpp::R_SPARC_13
:
3359 Reloc::rela32_13(view
, object
, psymval
, addend
);
3362 case elfcpp::R_SPARC_LO10
:
3363 Reloc::lo10(view
, object
, psymval
, addend
);
3366 case elfcpp::R_SPARC_GOT10
:
3367 Reloc::lo10(view
, got_offset
, addend
);
3370 case elfcpp::R_SPARC_GOTDATA_OP
:
3373 typedef typename
elfcpp::Swap
<32, true>::Valtype Insntype
;
3374 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3377 // {ld,ldx} [%rs1 + %rs2], %rd --> add %rs1, %rs2, %rd
3378 val
= elfcpp::Swap
<32, true>::readval(wv
);
3379 val
= 0x80000000 | (val
& 0x3e07c01f);
3380 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3384 case elfcpp::R_SPARC_GOTDATA_OP_LOX10
:
3387 Reloc::gdop_lox10(view
, got_offset
, addend
);
3391 case elfcpp::R_SPARC_GOT13
:
3392 Reloc::rela32_13(view
, got_offset
, addend
);
3395 case elfcpp::R_SPARC_GOTDATA_OP_HIX22
:
3398 Reloc::gdop_hix22(view
, got_offset
, addend
);
3402 case elfcpp::R_SPARC_GOT22
:
3403 Reloc::hi22(view
, got_offset
, addend
);
3406 case elfcpp::R_SPARC_PC10
:
3407 Reloc::pc10(view
, object
, psymval
, addend
, address
);
3410 case elfcpp::R_SPARC_PC22
:
3411 Reloc::pc22(view
, object
, psymval
, addend
, address
);
3414 case elfcpp::R_SPARC_TLS_DTPOFF32
:
3415 case elfcpp::R_SPARC_UA32
:
3416 Reloc::ua32(view
, object
, psymval
, addend
);
3419 case elfcpp::R_SPARC_PLT64
:
3420 Relocate_functions
<size
, big_endian
>::rela64(view
, object
,
3424 case elfcpp::R_SPARC_PLT32
:
3425 Relocate_functions
<size
, big_endian
>::rela32(view
, object
,
3429 case elfcpp::R_SPARC_HIPLT22
:
3430 Reloc::hi22(view
, object
, psymval
, addend
);
3433 case elfcpp::R_SPARC_LOPLT10
:
3434 Reloc::lo10(view
, object
, psymval
, addend
);
3437 case elfcpp::R_SPARC_PCPLT32
:
3438 Reloc::disp32(view
, object
, psymval
, addend
, address
);
3441 case elfcpp::R_SPARC_PCPLT22
:
3442 Reloc::pcplt22(view
, object
, psymval
, addend
, address
);
3445 case elfcpp::R_SPARC_PCPLT10
:
3446 Reloc::lo10(view
, object
, psymval
, addend
, address
);
3449 case elfcpp::R_SPARC_64
:
3450 if (!parameters
->options().output_is_position_independent())
3452 if (rela
.get_r_offset() & 0x7)
3454 // The assembler can sometimes emit unaligned relocations
3455 // for dwarf2 cfi directives.
3456 Reloc::ua64(view
, object
, psymval
, addend
);
3459 Relocate_functions
<size
, big_endian
>::rela64(view
, object
,
3464 case elfcpp::R_SPARC_OLO10
:
3466 unsigned int addend2
= rela
.get_r_info() & 0xffffffff;
3467 addend2
= ((addend2
>> 8) ^ 0x800000) - 0x800000;
3468 Reloc::olo10(view
, object
, psymval
, addend
, addend2
);
3472 case elfcpp::R_SPARC_HH22
:
3473 Reloc::hh22(view
, object
, psymval
, addend
);
3476 case elfcpp::R_SPARC_PC_HH22
:
3477 Reloc::pc_hh22(view
, object
, psymval
, addend
, address
);
3480 case elfcpp::R_SPARC_HM10
:
3481 Reloc::hm10(view
, object
, psymval
, addend
);
3484 case elfcpp::R_SPARC_PC_HM10
:
3485 Reloc::pc_hm10(view
, object
, psymval
, addend
, address
);
3488 case elfcpp::R_SPARC_LM22
:
3489 Reloc::hi22(view
, object
, psymval
, addend
);
3492 case elfcpp::R_SPARC_PC_LM22
:
3493 Reloc::pcplt22(view
, object
, psymval
, addend
, address
);
3496 case elfcpp::R_SPARC_11
:
3497 Reloc::rela32_11(view
, object
, psymval
, addend
);
3500 case elfcpp::R_SPARC_10
:
3501 Reloc::rela32_10(view
, object
, psymval
, addend
);
3504 case elfcpp::R_SPARC_7
:
3505 Reloc::rela32_7(view
, object
, psymval
, addend
);
3508 case elfcpp::R_SPARC_6
:
3509 Reloc::rela32_6(view
, object
, psymval
, addend
);
3512 case elfcpp::R_SPARC_5
:
3513 Reloc::rela32_5(view
, object
, psymval
, addend
);
3516 case elfcpp::R_SPARC_HIX22
:
3517 Reloc::hix22(view
, object
, psymval
, addend
);
3520 case elfcpp::R_SPARC_LOX10
:
3521 Reloc::lox10(view
, object
, psymval
, addend
);
3524 case elfcpp::R_SPARC_H34
:
3525 Reloc::h34(view
, object
, psymval
, addend
);
3528 case elfcpp::R_SPARC_H44
:
3529 Reloc::h44(view
, object
, psymval
, addend
);
3532 case elfcpp::R_SPARC_M44
:
3533 Reloc::m44(view
, object
, psymval
, addend
);
3536 case elfcpp::R_SPARC_L44
:
3537 Reloc::l44(view
, object
, psymval
, addend
);
3540 case elfcpp::R_SPARC_TLS_DTPOFF64
:
3541 case elfcpp::R_SPARC_UA64
:
3542 Reloc::ua64(view
, object
, psymval
, addend
);
3545 case elfcpp::R_SPARC_UA16
:
3546 Reloc::ua16(view
, object
, psymval
, addend
);
3549 case elfcpp::R_SPARC_TLS_GD_HI22
:
3550 case elfcpp::R_SPARC_TLS_GD_LO10
:
3551 case elfcpp::R_SPARC_TLS_GD_ADD
:
3552 case elfcpp::R_SPARC_TLS_GD_CALL
:
3553 case elfcpp::R_SPARC_TLS_LDM_HI22
:
3554 case elfcpp::R_SPARC_TLS_LDM_LO10
:
3555 case elfcpp::R_SPARC_TLS_LDM_ADD
:
3556 case elfcpp::R_SPARC_TLS_LDM_CALL
:
3557 case elfcpp::R_SPARC_TLS_LDO_HIX22
:
3558 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
3559 case elfcpp::R_SPARC_TLS_LDO_ADD
:
3560 case elfcpp::R_SPARC_TLS_IE_HI22
:
3561 case elfcpp::R_SPARC_TLS_IE_LO10
:
3562 case elfcpp::R_SPARC_TLS_IE_LD
:
3563 case elfcpp::R_SPARC_TLS_IE_LDX
:
3564 case elfcpp::R_SPARC_TLS_IE_ADD
:
3565 case elfcpp::R_SPARC_TLS_LE_HIX22
:
3566 case elfcpp::R_SPARC_TLS_LE_LOX10
:
3567 this->relocate_tls(relinfo
, target
, relnum
, rela
,
3568 r_type
, gsym
, psymval
, view
,
3569 address
, view_size
);
3572 case elfcpp::R_SPARC_COPY
:
3573 case elfcpp::R_SPARC_GLOB_DAT
:
3574 case elfcpp::R_SPARC_JMP_SLOT
:
3575 case elfcpp::R_SPARC_JMP_IREL
:
3576 case elfcpp::R_SPARC_RELATIVE
:
3577 case elfcpp::R_SPARC_IRELATIVE
:
3578 // These are outstanding tls relocs, which are unexpected when
3580 case elfcpp::R_SPARC_TLS_DTPMOD64
:
3581 case elfcpp::R_SPARC_TLS_DTPMOD32
:
3582 case elfcpp::R_SPARC_TLS_TPOFF64
:
3583 case elfcpp::R_SPARC_TLS_TPOFF32
:
3584 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3585 _("unexpected reloc %u in object file"),
3590 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3591 _("unsupported reloc %u"),
3599 // Perform a TLS relocation.
3601 template<int size
, bool big_endian
>
3603 Target_sparc
<size
, big_endian
>::Relocate::relocate_tls(
3604 const Relocate_info
<size
, big_endian
>* relinfo
,
3605 Target_sparc
<size
, big_endian
>* target
,
3607 const elfcpp::Rela
<size
, big_endian
>& rela
,
3608 unsigned int r_type
,
3609 const Sized_symbol
<size
>* gsym
,
3610 const Symbol_value
<size
>* psymval
,
3611 unsigned char* view
,
3612 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
,
3615 Output_segment
* tls_segment
= relinfo
->layout
->tls_segment();
3616 typedef Sparc_relocate_functions
<size
, big_endian
> Reloc
;
3617 const Sized_relobj_file
<size
, big_endian
>* object
= relinfo
->object
;
3618 typedef typename
elfcpp::Swap
<32, true>::Valtype Insntype
;
3620 const elfcpp::Elf_Xword addend
= rela
.get_r_addend();
3621 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
= psymval
->value(object
, 0);
3623 const bool is_final
=
3625 ? !parameters
->options().output_is_position_independent()
3626 : gsym
->final_value_is_known());
3627 const tls::Tls_optimization optimized_type
3628 = optimize_tls_reloc(is_final
, r_type
);
3632 case elfcpp::R_SPARC_TLS_GD_HI22
:
3633 case elfcpp::R_SPARC_TLS_GD_LO10
:
3634 case elfcpp::R_SPARC_TLS_GD_ADD
:
3635 case elfcpp::R_SPARC_TLS_GD_CALL
:
3636 if (optimized_type
== tls::TLSOPT_TO_LE
)
3638 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3641 value
-= tls_segment
->memsz();
3645 case elfcpp::R_SPARC_TLS_GD_HI22
:
3646 // TLS_GD_HI22 --> TLS_LE_HIX22
3647 Reloc::hix22(view
, value
, addend
);
3650 case elfcpp::R_SPARC_TLS_GD_LO10
:
3651 // TLS_GD_LO10 --> TLS_LE_LOX10
3652 Reloc::lox10(view
, value
, addend
);
3655 case elfcpp::R_SPARC_TLS_GD_ADD
:
3656 // add %reg1, %reg2, %reg3 --> mov %g7, %reg2, %reg3
3657 val
= elfcpp::Swap
<32, true>::readval(wv
);
3658 val
= (val
& ~0x7c000) | 0x1c000;
3659 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3661 case elfcpp::R_SPARC_TLS_GD_CALL
:
3662 // call __tls_get_addr --> nop
3663 elfcpp::Swap
<32, true>::writeval(wv
, sparc_nop
);
3670 unsigned int got_type
= (optimized_type
== tls::TLSOPT_TO_IE
3671 ? GOT_TYPE_TLS_OFFSET
3672 : GOT_TYPE_TLS_PAIR
);
3675 gold_assert(gsym
->has_got_offset(got_type
));
3676 value
= gsym
->got_offset(got_type
);
3680 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(rela
.get_r_info());
3681 gold_assert(object
->local_has_got_offset(r_sym
, got_type
));
3682 value
= object
->local_got_offset(r_sym
, got_type
);
3684 if (optimized_type
== tls::TLSOPT_TO_IE
)
3686 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3691 case elfcpp::R_SPARC_TLS_GD_HI22
:
3692 // TLS_GD_HI22 --> TLS_IE_HI22
3693 Reloc::hi22(view
, value
, addend
);
3696 case elfcpp::R_SPARC_TLS_GD_LO10
:
3697 // TLS_GD_LO10 --> TLS_IE_LO10
3698 Reloc::lo10(view
, value
, addend
);
3701 case elfcpp::R_SPARC_TLS_GD_ADD
:
3702 // add %reg1, %reg2, %reg3 --> ld [%reg1 + %reg2], %reg3
3703 val
= elfcpp::Swap
<32, true>::readval(wv
);
3710 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3713 case elfcpp::R_SPARC_TLS_GD_CALL
:
3714 // The compiler can put the TLS_GD_ADD instruction
3715 // into the delay slot of the call. If so, we need
3716 // to transpose the two instructions so that the
3717 // new sequence works properly.
3719 // The test we use is if the instruction in the
3720 // delay slot is an add with destination register
3722 val
= elfcpp::Swap
<32, true>::readval(wv
+ 1);
3723 if ((val
& 0x81f80000) == 0x80000000
3724 && ((val
>> 25) & 0x1f) == 0x8)
3731 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3734 this->ignore_gd_add_
= true;
3738 // Even if the delay slot isn't the TLS_GD_ADD
3739 // instruction, we still have to handle the case
3740 // where it sets up %o0 in some other way.
3741 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3743 this->reloc_adjust_addr_
= view
+ 4;
3745 // call __tls_get_addr --> add %g7, %o0, %o0
3746 elfcpp::Swap
<32, true>::writeval(wv
, 0x9001c008);
3751 else if (optimized_type
== tls::TLSOPT_NONE
)
3755 case elfcpp::R_SPARC_TLS_GD_HI22
:
3756 Reloc::hi22(view
, value
, addend
);
3758 case elfcpp::R_SPARC_TLS_GD_LO10
:
3759 Reloc::lo10(view
, value
, addend
);
3761 case elfcpp::R_SPARC_TLS_GD_ADD
:
3763 case elfcpp::R_SPARC_TLS_GD_CALL
:
3765 Symbol_value
<size
> symval
;
3766 elfcpp::Elf_Xword value
;
3769 tsym
= target
->tls_get_addr_sym_
;
3771 value
= (target
->plt_section()->address() +
3772 tsym
->plt_offset());
3773 symval
.set_output_value(value
);
3774 Reloc::wdisp30(view
, object
, &symval
, addend
, address
);
3781 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3782 _("unsupported reloc %u"),
3786 case elfcpp::R_SPARC_TLS_LDM_HI22
:
3787 case elfcpp::R_SPARC_TLS_LDM_LO10
:
3788 case elfcpp::R_SPARC_TLS_LDM_ADD
:
3789 case elfcpp::R_SPARC_TLS_LDM_CALL
:
3790 if (optimized_type
== tls::TLSOPT_TO_LE
)
3792 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3796 case elfcpp::R_SPARC_TLS_LDM_HI22
:
3797 case elfcpp::R_SPARC_TLS_LDM_LO10
:
3798 case elfcpp::R_SPARC_TLS_LDM_ADD
:
3799 elfcpp::Swap
<32, true>::writeval(wv
, sparc_nop
);
3802 case elfcpp::R_SPARC_TLS_LDM_CALL
:
3803 elfcpp::Swap
<32, true>::writeval(wv
, sparc_mov_g0_o0
);
3808 else if (optimized_type
== tls::TLSOPT_NONE
)
3810 // Relocate the field with the offset of the GOT entry for
3811 // the module index.
3812 unsigned int got_offset
;
3814 got_offset
= target
->got_mod_index_entry(NULL
, NULL
, NULL
);
3817 case elfcpp::R_SPARC_TLS_LDM_HI22
:
3818 Reloc::hi22(view
, got_offset
, addend
);
3820 case elfcpp::R_SPARC_TLS_LDM_LO10
:
3821 Reloc::lo10(view
, got_offset
, addend
);
3823 case elfcpp::R_SPARC_TLS_LDM_ADD
:
3825 case elfcpp::R_SPARC_TLS_LDM_CALL
:
3827 Symbol_value
<size
> symval
;
3828 elfcpp::Elf_Xword value
;
3831 tsym
= target
->tls_get_addr_sym_
;
3833 value
= (target
->plt_section()->address() +
3834 tsym
->plt_offset());
3835 symval
.set_output_value(value
);
3836 Reloc::wdisp30(view
, object
, &symval
, addend
, address
);
3842 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3843 _("unsupported reloc %u"),
3847 // These relocs can appear in debugging sections, in which case
3848 // we won't see the TLS_LDM relocs. The local_dynamic_type
3849 // field tells us this.
3850 case elfcpp::R_SPARC_TLS_LDO_HIX22
:
3851 if (optimized_type
== tls::TLSOPT_TO_LE
)
3853 value
-= tls_segment
->memsz();
3854 Reloc::hix22(view
, value
, addend
);
3857 Reloc::ldo_hix22(view
, value
, addend
);
3859 case elfcpp::R_SPARC_TLS_LDO_LOX10
:
3860 if (optimized_type
== tls::TLSOPT_TO_LE
)
3862 value
-= tls_segment
->memsz();
3863 Reloc::lox10(view
, value
, addend
);
3866 Reloc::ldo_lox10(view
, value
, addend
);
3868 case elfcpp::R_SPARC_TLS_LDO_ADD
:
3869 if (optimized_type
== tls::TLSOPT_TO_LE
)
3871 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3874 // add %reg1, %reg2, %reg3 --> add %g7, %reg2, %reg3
3875 val
= elfcpp::Swap
<32, true>::readval(wv
);
3876 val
= (val
& ~0x7c000) | 0x1c000;
3877 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3881 // When optimizing IE --> LE, the only relocation that is handled
3882 // differently is R_SPARC_TLS_IE_LD, it is rewritten from
3883 // 'ld{,x} [rs1 + rs2], rd' into 'mov rs2, rd' or simply a NOP is
3884 // rs2 and rd are the same.
3885 case elfcpp::R_SPARC_TLS_IE_LD
:
3886 case elfcpp::R_SPARC_TLS_IE_LDX
:
3887 if (optimized_type
== tls::TLSOPT_TO_LE
)
3889 Insntype
* wv
= reinterpret_cast<Insntype
*>(view
);
3890 Insntype val
= elfcpp::Swap
<32, true>::readval(wv
);
3891 Insntype rs2
= val
& 0x1f;
3892 Insntype rd
= (val
>> 25) & 0x1f;
3897 val
= sparc_mov
| (val
& 0x3e00001f);
3899 elfcpp::Swap
<32, true>::writeval(wv
, val
);
3903 case elfcpp::R_SPARC_TLS_IE_HI22
:
3904 case elfcpp::R_SPARC_TLS_IE_LO10
:
3905 if (optimized_type
== tls::TLSOPT_TO_LE
)
3907 value
-= tls_segment
->memsz();
3910 case elfcpp::R_SPARC_TLS_IE_HI22
:
3911 // IE_HI22 --> LE_HIX22
3912 Reloc::hix22(view
, value
, addend
);
3914 case elfcpp::R_SPARC_TLS_IE_LO10
:
3915 // IE_LO10 --> LE_LOX10
3916 Reloc::lox10(view
, value
, addend
);
3921 else if (optimized_type
== tls::TLSOPT_NONE
)
3923 // Relocate the field with the offset of the GOT entry for
3924 // the tp-relative offset of the symbol.
3927 gold_assert(gsym
->has_got_offset(GOT_TYPE_TLS_OFFSET
));
3928 value
= gsym
->got_offset(GOT_TYPE_TLS_OFFSET
);
3932 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(rela
.get_r_info());
3933 gold_assert(object
->local_has_got_offset(r_sym
,
3934 GOT_TYPE_TLS_OFFSET
));
3935 value
= object
->local_got_offset(r_sym
,
3936 GOT_TYPE_TLS_OFFSET
);
3940 case elfcpp::R_SPARC_TLS_IE_HI22
:
3941 Reloc::hi22(view
, value
, addend
);
3943 case elfcpp::R_SPARC_TLS_IE_LO10
:
3944 Reloc::lo10(view
, value
, addend
);
3949 gold_error_at_location(relinfo
, relnum
, rela
.get_r_offset(),
3950 _("unsupported reloc %u"),
3954 case elfcpp::R_SPARC_TLS_IE_ADD
:
3955 // This seems to be mainly so that we can find the addition
3956 // instruction if there is one. There doesn't seem to be any
3957 // actual relocation to apply.
3960 case elfcpp::R_SPARC_TLS_LE_HIX22
:
3961 // If we're creating a shared library, a dynamic relocation will
3962 // have been created for this location, so do not apply it now.
3963 if (!parameters
->options().shared())
3965 value
-= tls_segment
->memsz();
3966 Reloc::hix22(view
, value
, addend
);
3970 case elfcpp::R_SPARC_TLS_LE_LOX10
:
3971 // If we're creating a shared library, a dynamic relocation will
3972 // have been created for this location, so do not apply it now.
3973 if (!parameters
->options().shared())
3975 value
-= tls_segment
->memsz();
3976 Reloc::lox10(view
, value
, addend
);
3982 // Relax a call instruction.
3984 template<int size
, bool big_endian
>
3986 Target_sparc
<size
, big_endian
>::Relocate::relax_call(
3987 Target_sparc
<size
, big_endian
>* target
,
3988 unsigned char* view
,
3989 const elfcpp::Rela
<size
, big_endian
>& rela
,
3990 section_size_type view_size
)
3992 typedef typename
elfcpp::Swap
<32, true>::Valtype Insntype
;
3993 Insntype
*wv
= reinterpret_cast<Insntype
*>(view
);
3994 Insntype call_insn
, delay_insn
, set_insn
;
3995 uint32_t op3
, reg
, off
;
3997 // This code tries to relax call instructions that meet
3998 // certain criteria.
4000 // The first criteria is that the call must be such that the return
4001 // address which the call writes into %o7 is unused. Two sequences
4002 // meet this criteria, and are used to implement tail calls.
4004 // Leaf function tail call:
4006 // or %o7, %g0, %ANY_REG
4008 // or %ANY_REG, %g0, %o7
4010 // Non-leaf function tail call:
4015 // The second criteria is that the call destination is close. If
4016 // the displacement can fit in a signed 22-bit immediate field of a
4017 // pre-V9 branch, we can do it. If we are generating a 64-bit
4018 // object or a 32-bit object with ELF machine type EF_SPARC32PLUS,
4019 // and the displacement fits in a signed 19-bit immediate field,
4020 // then we can use a V9 branch.
4022 // Make sure the delay instruction can be safely accessed.
4023 if (rela
.get_r_offset() + 8 > view_size
)
4026 call_insn
= elfcpp::Swap
<32, true>::readval(wv
);
4027 delay_insn
= elfcpp::Swap
<32, true>::readval(wv
+ 1);
4029 // Make sure it is really a call instruction.
4030 if (((call_insn
>> 30) & 0x3) != 1)
4033 if (((delay_insn
>> 30) & 0x3) != 2)
4036 // Accept only a restore or an integer arithmetic operation whose
4037 // sole side effect is to write the %o7 register (and perhaps set
4038 // the condition codes, which are considered clobbered across
4041 // For example, we don't want to match a tagged addition or
4042 // subtraction. We also don't want to match something like a
4045 // Specifically we accept add{,cc}, and{,cc}, or{,cc},
4046 // xor{,cc}, sub{,cc}, andn{,cc}, orn{,cc}, and xnor{,cc}.
4048 op3
= (delay_insn
>> 19) & 0x3f;
4049 reg
= (delay_insn
>> 25) & 0x1f;
4051 && ((op3
& 0x28) != 0 || reg
!= 15))
4054 // For non-restore instructions, make sure %o7 isn't
4059 reg
= (delay_insn
>> 14) & 0x15;
4063 // And if non-immediate, check RS2
4064 if (((delay_insn
>> 13) & 1) == 0)
4066 reg
= (delay_insn
& 0x1f);
4072 // Now check the branch distance. We are called after the
4073 // call has been relocated, so we just have to peek at the
4074 // offset contained in the instruction.
4075 off
= call_insn
& 0x3fffffff;
4076 if ((off
& 0x3fe00000) != 0
4077 && (off
& 0x3fe00000) != 0x3fe00000)
4080 if ((size
== 64 || target
->elf_machine_
== elfcpp::EM_SPARC32PLUS
)
4081 && ((off
& 0x3c0000) == 0
4082 || (off
& 0x3c0000) == 0x3c0000))
4085 call_insn
= 0x10680000 | (off
& 0x07ffff);
4090 call_insn
= 0x10800000 | (off
& 0x3fffff);
4092 elfcpp::Swap
<32, true>::writeval(wv
, call_insn
);
4094 // See if we can NOP out the delay slot instruction. We peek
4095 // at the instruction before the call to make sure we're dealing
4096 // with exactly the:
4098 // or %o7, %g0, %ANY_REG
4100 // or %ANY_REG, %g0, %o7
4102 // case. Otherwise this might be a tricky piece of hand written
4103 // assembler calculating %o7 in some non-trivial way, and therefore
4104 // we can't be sure that NOP'ing out the delay slot is safe.
4106 && rela
.get_r_offset() >= 4)
4108 if ((delay_insn
& ~(0x1f << 14)) != 0x9e100000)
4111 set_insn
= elfcpp::Swap
<32, true>::readval(wv
- 1);
4112 if ((set_insn
& ~(0x1f << 25)) != 0x8013c000)
4115 reg
= (set_insn
>> 25) & 0x1f;
4116 if (reg
== 0 || reg
== 15)
4118 if (reg
!= ((delay_insn
>> 14) & 0x1f))
4121 // All tests pass, nop it out.
4122 elfcpp::Swap
<32, true>::writeval(wv
+ 1, sparc_nop
);
4126 // Relocate section data.
4128 template<int size
, bool big_endian
>
4130 Target_sparc
<size
, big_endian
>::relocate_section(
4131 const Relocate_info
<size
, big_endian
>* relinfo
,
4132 unsigned int sh_type
,
4133 const unsigned char* prelocs
,
4135 Output_section
* output_section
,
4136 bool needs_special_offset_handling
,
4137 unsigned char* view
,
4138 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
,
4139 section_size_type view_size
,
4140 const Reloc_symbol_changes
* reloc_symbol_changes
)
4142 typedef Target_sparc
<size
, big_endian
> Sparc
;
4143 typedef typename Target_sparc
<size
, big_endian
>::Relocate Sparc_relocate
;
4145 gold_assert(sh_type
== elfcpp::SHT_RELA
);
4147 gold::relocate_section
<size
, big_endian
, Sparc
, elfcpp::SHT_RELA
,
4148 Sparc_relocate
, gold::Default_comdat_behavior
>(
4154 needs_special_offset_handling
,
4158 reloc_symbol_changes
);
4161 // Return the size of a relocation while scanning during a relocatable
4164 template<int size
, bool big_endian
>
4166 Target_sparc
<size
, big_endian
>::Relocatable_size_for_reloc::get_size_for_reloc(
4170 // We are always SHT_RELA, so we should never get here.
4175 // Scan the relocs during a relocatable link.
4177 template<int size
, bool big_endian
>
4179 Target_sparc
<size
, big_endian
>::scan_relocatable_relocs(
4180 Symbol_table
* symtab
,
4182 Sized_relobj_file
<size
, big_endian
>* object
,
4183 unsigned int data_shndx
,
4184 unsigned int sh_type
,
4185 const unsigned char* prelocs
,
4187 Output_section
* output_section
,
4188 bool needs_special_offset_handling
,
4189 size_t local_symbol_count
,
4190 const unsigned char* plocal_symbols
,
4191 Relocatable_relocs
* rr
)
4193 gold_assert(sh_type
== elfcpp::SHT_RELA
);
4195 typedef gold::Default_scan_relocatable_relocs
<elfcpp::SHT_RELA
,
4196 Relocatable_size_for_reloc
> Scan_relocatable_relocs
;
4198 gold::scan_relocatable_relocs
<size
, big_endian
, elfcpp::SHT_RELA
,
4199 Scan_relocatable_relocs
>(
4207 needs_special_offset_handling
,
4213 // Emit relocations for a section.
4215 template<int size
, bool big_endian
>
4217 Target_sparc
<size
, big_endian
>::relocate_relocs(
4218 const Relocate_info
<size
, big_endian
>* relinfo
,
4219 unsigned int sh_type
,
4220 const unsigned char* prelocs
,
4222 Output_section
* output_section
,
4223 typename
elfcpp::Elf_types
<size
>::Elf_Off offset_in_output_section
,
4224 const Relocatable_relocs
* rr
,
4225 unsigned char* view
,
4226 typename
elfcpp::Elf_types
<size
>::Elf_Addr view_address
,
4227 section_size_type view_size
,
4228 unsigned char* reloc_view
,
4229 section_size_type reloc_view_size
)
4231 gold_assert(sh_type
== elfcpp::SHT_RELA
);
4233 gold::relocate_relocs
<size
, big_endian
, elfcpp::SHT_RELA
>(
4238 offset_in_output_section
,
4247 // Return the value to use for a dynamic which requires special
4248 // treatment. This is how we support equality comparisons of function
4249 // pointers across shared library boundaries, as described in the
4250 // processor specific ABI supplement.
4252 template<int size
, bool big_endian
>
4254 Target_sparc
<size
, big_endian
>::do_dynsym_value(const Symbol
* gsym
) const
4256 gold_assert(gsym
->is_from_dynobj() && gsym
->has_plt_offset());
4257 return this->plt_section()->address() + gsym
->plt_offset();
4260 // do_make_elf_object to override the same function in the base class.
4261 // We need to use a target-specific sub-class of
4262 // Sized_relobj_file<size, big_endian> to process SPARC specific bits
4263 // of the ELF headers. Hence we need to have our own ELF object creation.
4265 template<int size
, bool big_endian
>
4267 Target_sparc
<size
, big_endian
>::do_make_elf_object(
4268 const std::string
& name
,
4269 Input_file
* input_file
,
4270 off_t offset
, const elfcpp::Ehdr
<size
, big_endian
>& ehdr
)
4272 elfcpp::Elf_Half machine
= ehdr
.get_e_machine();
4273 elfcpp::Elf_Word flags
= ehdr
.get_e_flags();
4274 elfcpp::Elf_Word omm
, mm
;
4278 case elfcpp::EM_SPARC32PLUS
:
4279 this->elf_machine_
= elfcpp::EM_SPARC32PLUS
;
4282 case elfcpp::EM_SPARC
:
4283 case elfcpp::EM_SPARCV9
:
4290 if (!this->elf_flags_set_
)
4292 this->elf_flags_
= flags
;
4293 this->elf_flags_set_
= true;
4297 // Accumulate cpu feature bits.
4298 this->elf_flags_
|= (flags
& (elfcpp::EF_SPARC_32PLUS
4299 | elfcpp::EF_SPARC_SUN_US1
4300 | elfcpp::EF_SPARC_HAL_R1
4301 | elfcpp::EF_SPARC_SUN_US3
));
4303 // Bump the memory model setting to the most restrictive
4304 // one we encounter.
4305 omm
= (this->elf_flags_
& elfcpp::EF_SPARCV9_MM
);
4306 mm
= (flags
& elfcpp::EF_SPARCV9_MM
);
4309 if (mm
== elfcpp::EF_SPARCV9_TSO
)
4311 this->elf_flags_
&= ~elfcpp::EF_SPARCV9_MM
;
4312 this->elf_flags_
|= elfcpp::EF_SPARCV9_TSO
;
4314 else if (mm
== elfcpp::EF_SPARCV9_PSO
4315 && omm
== elfcpp::EF_SPARCV9_RMO
)
4317 this->elf_flags_
&= ~elfcpp::EF_SPARCV9_MM
;
4318 this->elf_flags_
|= elfcpp::EF_SPARCV9_PSO
;
4323 // Validate that the little-endian flag matches how we've
4324 // been instantiated.
4325 if (!(flags
& elfcpp::EF_SPARC_LEDATA
) != big_endian
)
4328 gold_error(_("%s: little endian elf flag set on BE object"),
4331 gold_error(_("%s: little endian elf flag clear on LE object"),
4335 return Target::do_make_elf_object(name
, input_file
, offset
, ehdr
);
4338 // Adjust ELF file header.
4340 template<int size
, bool big_endian
>
4342 Target_sparc
<size
, big_endian
>::do_adjust_elf_header(
4343 unsigned char* view
,
4346 elfcpp::Ehdr_write
<size
, big_endian
> oehdr(view
);
4348 oehdr
.put_e_machine(this->elf_machine_
);
4349 oehdr
.put_e_flags(this->elf_flags_
);
4351 Sized_target
<size
, big_endian
>::do_adjust_elf_header(view
, len
);
4354 // The selector for sparc object files.
4356 template<int size
, bool big_endian
>
4357 class Target_selector_sparc
: public Target_selector
4360 Target_selector_sparc()
4361 : Target_selector(elfcpp::EM_NONE
, size
, big_endian
,
4362 (size
== 64 ? "elf64-sparc" : "elf32-sparc"),
4363 (size
== 64 ? "elf64_sparc" : "elf32_sparc"))
4367 do_recognize(Input_file
*, off_t
, int machine
, int, int)
4372 if (machine
!= elfcpp::EM_SPARCV9
)
4377 if (machine
!= elfcpp::EM_SPARC
4378 && machine
!= elfcpp::EM_SPARC32PLUS
)
4386 return this->instantiate_target();
4390 do_instantiate_target()
4391 { return new Target_sparc
<size
, big_endian
>(); }
4394 Target_selector_sparc
<32, true> target_selector_sparc32
;
4395 Target_selector_sparc
<64, true> target_selector_sparc64
;
4397 } // End anonymous namespace.