1 // reloc.cc -- relocate input files for gold.
3 // Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
27 #include "workqueue.h"
33 #include "target-reloc.h"
36 #include "compressed_output.h"
37 #include "incremental.h"
42 // Read_relocs methods.
44 // These tasks just read the relocation information from the file.
45 // After reading it, the start another task to process the
46 // information. These tasks requires access to the file.
49 Read_relocs::is_runnable()
51 return this->object_
->is_locked() ? this->object_
->token() : NULL
;
57 Read_relocs::locks(Task_locker
* tl
)
59 Task_token
* token
= this->object_
->token();
64 // Read the relocations and then start a Scan_relocs_task.
67 Read_relocs::run(Workqueue
* workqueue
)
69 Read_relocs_data
* rd
= new Read_relocs_data
;
70 this->object_
->read_relocs(rd
);
71 this->object_
->set_relocs_data(rd
);
72 this->object_
->release();
74 // If garbage collection or identical comdat folding is desired, we
75 // process the relocs first before scanning them. Scanning of relocs is
76 // done only after garbage or identical sections is identified.
77 if (parameters
->options().gc_sections()
78 || parameters
->options().icf_enabled())
80 workqueue
->queue_next(new Gc_process_relocs(this->symtab_
,
84 this->next_blocker_
));
88 workqueue
->queue_next(new Scan_relocs(this->symtab_
, this->layout_
,
91 this->next_blocker_
));
95 // Return a debugging name for the task.
98 Read_relocs::get_name() const
100 return "Read_relocs " + this->object_
->name();
103 // Gc_process_relocs methods.
105 Gc_process_relocs::~Gc_process_relocs()
107 if (this->this_blocker_
!= NULL
)
108 delete this->this_blocker_
;
111 // These tasks process the relocations read by Read_relocs and
112 // determine which sections are referenced and which are garbage.
113 // This task is done only when --gc-sections is used. This is blocked
114 // by THIS_BLOCKER_. It unblocks NEXT_BLOCKER_.
117 Gc_process_relocs::is_runnable()
119 if (this->this_blocker_
!= NULL
&& this->this_blocker_
->is_blocked())
120 return this->this_blocker_
;
121 if (this->object_
->is_locked())
122 return this->object_
->token();
127 Gc_process_relocs::locks(Task_locker
* tl
)
129 tl
->add(this, this->object_
->token());
130 tl
->add(this, this->next_blocker_
);
134 Gc_process_relocs::run(Workqueue
*)
136 this->object_
->gc_process_relocs(this->symtab_
, this->layout_
, this->rd_
);
137 this->object_
->release();
140 // Return a debugging name for the task.
143 Gc_process_relocs::get_name() const
145 return "Gc_process_relocs " + this->object_
->name();
148 // Scan_relocs methods.
150 Scan_relocs::~Scan_relocs()
152 if (this->this_blocker_
!= NULL
)
153 delete this->this_blocker_
;
156 // These tasks scan the relocations read by Read_relocs and mark up
157 // the symbol table to indicate which relocations are required. We
158 // use a lock on the symbol table to keep them from interfering with
162 Scan_relocs::is_runnable()
164 if (this->this_blocker_
!= NULL
&& this->this_blocker_
->is_blocked())
165 return this->this_blocker_
;
166 if (this->object_
->is_locked())
167 return this->object_
->token();
171 // Return the locks we hold: one on the file, one on the symbol table
175 Scan_relocs::locks(Task_locker
* tl
)
177 Task_token
* token
= this->object_
->token();
179 tl
->add(this, token
);
180 tl
->add(this, this->next_blocker_
);
186 Scan_relocs::run(Workqueue
*)
188 this->object_
->scan_relocs(this->symtab_
, this->layout_
, this->rd_
);
191 this->object_
->release();
194 // Return a debugging name for the task.
197 Scan_relocs::get_name() const
199 return "Scan_relocs " + this->object_
->name();
202 // Relocate_task methods.
204 // We may have to wait for the output sections to be written.
207 Relocate_task::is_runnable()
209 if (this->object_
->relocs_must_follow_section_writes()
210 && this->output_sections_blocker_
->is_blocked())
211 return this->output_sections_blocker_
;
213 if (this->object_
->is_locked())
214 return this->object_
->token();
219 // We want to lock the file while we run. We want to unblock
220 // INPUT_SECTIONS_BLOCKER and FINAL_BLOCKER when we are done.
221 // INPUT_SECTIONS_BLOCKER may be NULL.
224 Relocate_task::locks(Task_locker
* tl
)
226 if (this->input_sections_blocker_
!= NULL
)
227 tl
->add(this, this->input_sections_blocker_
);
228 tl
->add(this, this->final_blocker_
);
229 Task_token
* token
= this->object_
->token();
231 tl
->add(this, token
);
237 Relocate_task::run(Workqueue
*)
239 this->object_
->relocate(this->symtab_
, this->layout_
, this->of_
);
241 // This is normally the last thing we will do with an object, so
242 // uncache all views.
243 this->object_
->clear_view_cache_marks();
245 this->object_
->release();
248 // Return a debugging name for the task.
251 Relocate_task::get_name() const
253 return "Relocate_task " + this->object_
->name();
256 // Read the relocs and local symbols from the object file and store
257 // the information in RD.
259 template<int size
, bool big_endian
>
261 Sized_relobj_file
<size
, big_endian
>::do_read_relocs(Read_relocs_data
* rd
)
265 unsigned int shnum
= this->shnum();
269 rd
->relocs
.reserve(shnum
/ 2);
271 const Output_sections
& out_sections(this->output_sections());
272 const std::vector
<Address
>& out_offsets(this->section_offsets());
274 const unsigned char* pshdrs
= this->get_view(this->elf_file_
.shoff(),
275 shnum
* This::shdr_size
,
277 // Skip the first, dummy, section.
278 const unsigned char* ps
= pshdrs
+ This::shdr_size
;
279 for (unsigned int i
= 1; i
< shnum
; ++i
, ps
+= This::shdr_size
)
281 typename
This::Shdr
shdr(ps
);
283 unsigned int sh_type
= shdr
.get_sh_type();
284 if (sh_type
!= elfcpp::SHT_REL
&& sh_type
!= elfcpp::SHT_RELA
)
287 unsigned int shndx
= this->adjust_shndx(shdr
.get_sh_info());
290 this->error(_("relocation section %u has bad info %u"),
295 Output_section
* os
= out_sections
[shndx
];
299 // We are scanning relocations in order to fill out the GOT and
300 // PLT sections. Relocations for sections which are not
301 // allocated (typically debugging sections) should not add new
302 // GOT and PLT entries. So we skip them unless this is a
303 // relocatable link or we need to emit relocations. FIXME: What
304 // should we do if a linker script maps a section with SHF_ALLOC
305 // clear to a section with SHF_ALLOC set?
306 typename
This::Shdr
secshdr(pshdrs
+ shndx
* This::shdr_size
);
307 bool is_section_allocated
= ((secshdr
.get_sh_flags() & elfcpp::SHF_ALLOC
)
309 if (!is_section_allocated
310 && !parameters
->options().relocatable()
311 && !parameters
->options().emit_relocs()
312 && !parameters
->incremental())
315 if (this->adjust_shndx(shdr
.get_sh_link()) != this->symtab_shndx_
)
317 this->error(_("relocation section %u uses unexpected "
319 i
, this->adjust_shndx(shdr
.get_sh_link()));
323 off_t sh_size
= shdr
.get_sh_size();
328 unsigned int reloc_size
;
329 if (sh_type
== elfcpp::SHT_REL
)
330 reloc_size
= elfcpp::Elf_sizes
<size
>::rel_size
;
332 reloc_size
= elfcpp::Elf_sizes
<size
>::rela_size
;
333 if (reloc_size
!= shdr
.get_sh_entsize())
335 this->error(_("unexpected entsize for reloc section %u: %lu != %u"),
336 i
, static_cast<unsigned long>(shdr
.get_sh_entsize()),
341 size_t reloc_count
= sh_size
/ reloc_size
;
342 if (static_cast<off_t
>(reloc_count
* reloc_size
) != sh_size
)
344 this->error(_("reloc section %u size %lu uneven"),
345 i
, static_cast<unsigned long>(sh_size
));
349 rd
->relocs
.push_back(Section_relocs());
350 Section_relocs
& sr(rd
->relocs
.back());
352 sr
.data_shndx
= shndx
;
353 sr
.contents
= this->get_lasting_view(shdr
.get_sh_offset(), sh_size
,
355 sr
.sh_type
= sh_type
;
356 sr
.reloc_count
= reloc_count
;
357 sr
.output_section
= os
;
358 sr
.needs_special_offset_handling
= out_offsets
[shndx
] == invalid_address
;
359 sr
.is_data_section_allocated
= is_section_allocated
;
362 // Read the local symbols.
363 gold_assert(this->symtab_shndx_
!= -1U);
364 if (this->symtab_shndx_
== 0 || this->local_symbol_count_
== 0)
365 rd
->local_symbols
= NULL
;
368 typename
This::Shdr
symtabshdr(pshdrs
369 + this->symtab_shndx_
* This::shdr_size
);
370 gold_assert(symtabshdr
.get_sh_type() == elfcpp::SHT_SYMTAB
);
371 const int sym_size
= This::sym_size
;
372 const unsigned int loccount
= this->local_symbol_count_
;
373 gold_assert(loccount
== symtabshdr
.get_sh_info());
374 off_t locsize
= loccount
* sym_size
;
375 rd
->local_symbols
= this->get_lasting_view(symtabshdr
.get_sh_offset(),
376 locsize
, true, true);
380 // Process the relocs to generate mappings from source sections to referenced
381 // sections. This is used during garbage collection to determine garbage
384 template<int size
, bool big_endian
>
386 Sized_relobj_file
<size
, big_endian
>::do_gc_process_relocs(Symbol_table
* symtab
,
388 Read_relocs_data
* rd
)
390 Sized_target
<size
, big_endian
>* target
=
391 parameters
->sized_target
<size
, big_endian
>();
393 const unsigned char* local_symbols
;
394 if (rd
->local_symbols
== NULL
)
395 local_symbols
= NULL
;
397 local_symbols
= rd
->local_symbols
->data();
399 for (Read_relocs_data::Relocs_list::iterator p
= rd
->relocs
.begin();
400 p
!= rd
->relocs
.end();
403 if (!parameters
->options().relocatable())
405 // As noted above, when not generating an object file, we
406 // only scan allocated sections. We may see a non-allocated
407 // section here if we are emitting relocs.
408 if (p
->is_data_section_allocated
)
409 target
->gc_process_relocs(symtab
, layout
, this,
410 p
->data_shndx
, p
->sh_type
,
411 p
->contents
->data(), p
->reloc_count
,
413 p
->needs_special_offset_handling
,
414 this->local_symbol_count_
,
421 // Scan the relocs and adjust the symbol table. This looks for
422 // relocations which require GOT/PLT/COPY relocations.
424 template<int size
, bool big_endian
>
426 Sized_relobj_file
<size
, big_endian
>::do_scan_relocs(Symbol_table
* symtab
,
428 Read_relocs_data
* rd
)
430 Sized_target
<size
, big_endian
>* target
=
431 parameters
->sized_target
<size
, big_endian
>();
433 const unsigned char* local_symbols
;
434 if (rd
->local_symbols
== NULL
)
435 local_symbols
= NULL
;
437 local_symbols
= rd
->local_symbols
->data();
439 // For incremental links, allocate the counters for incremental relocations.
440 if (layout
->incremental_inputs() != NULL
)
441 this->allocate_incremental_reloc_counts();
443 for (Read_relocs_data::Relocs_list::iterator p
= rd
->relocs
.begin();
444 p
!= rd
->relocs
.end();
447 // When garbage collection is on, unreferenced sections are not included
448 // in the link that would have been included normally. This is known only
449 // after Read_relocs hence this check has to be done again.
450 if (parameters
->options().gc_sections()
451 || parameters
->options().icf_enabled())
453 if (p
->output_section
== NULL
)
456 if (!parameters
->options().relocatable())
458 // As noted above, when not generating an object file, we
459 // only scan allocated sections. We may see a non-allocated
460 // section here if we are emitting relocs.
461 if (p
->is_data_section_allocated
)
462 target
->scan_relocs(symtab
, layout
, this, p
->data_shndx
,
463 p
->sh_type
, p
->contents
->data(),
464 p
->reloc_count
, p
->output_section
,
465 p
->needs_special_offset_handling
,
466 this->local_symbol_count_
,
468 if (parameters
->options().emit_relocs())
469 this->emit_relocs_scan(symtab
, layout
, local_symbols
, p
);
470 if (layout
->incremental_inputs() != NULL
)
471 this->incremental_relocs_scan(p
);
475 Relocatable_relocs
* rr
= this->relocatable_relocs(p
->reloc_shndx
);
476 gold_assert(rr
!= NULL
);
477 rr
->set_reloc_count(p
->reloc_count
);
478 target
->scan_relocatable_relocs(symtab
, layout
, this,
479 p
->data_shndx
, p
->sh_type
,
483 p
->needs_special_offset_handling
,
484 this->local_symbol_count_
,
493 // For incremental links, finalize the allocation of relocations.
494 if (layout
->incremental_inputs() != NULL
)
495 this->finalize_incremental_relocs(layout
, true);
497 if (rd
->local_symbols
!= NULL
)
499 delete rd
->local_symbols
;
500 rd
->local_symbols
= NULL
;
504 // This is a strategy class we use when scanning for --emit-relocs.
506 template<int sh_type
>
507 class Emit_relocs_strategy
510 // A local non-section symbol.
511 inline Relocatable_relocs::Reloc_strategy
512 local_non_section_strategy(unsigned int, Relobj
*, unsigned int)
513 { return Relocatable_relocs::RELOC_COPY
; }
515 // A local section symbol.
516 inline Relocatable_relocs::Reloc_strategy
517 local_section_strategy(unsigned int, Relobj
*)
519 if (sh_type
== elfcpp::SHT_RELA
)
520 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_RELA
;
523 // The addend is stored in the section contents. Since this
524 // is not a relocatable link, we are going to apply the
525 // relocation contents to the section as usual. This means
526 // that we have no way to record the original addend. If the
527 // original addend is not zero, there is basically no way for
528 // the user to handle this correctly. Caveat emptor.
529 return Relocatable_relocs::RELOC_ADJUST_FOR_SECTION_0
;
534 inline Relocatable_relocs::Reloc_strategy
535 global_strategy(unsigned int, Relobj
*, unsigned int)
536 { return Relocatable_relocs::RELOC_COPY
; }
539 // Scan the input relocations for --emit-relocs.
541 template<int size
, bool big_endian
>
543 Sized_relobj_file
<size
, big_endian
>::emit_relocs_scan(
544 Symbol_table
* symtab
,
546 const unsigned char* plocal_syms
,
547 const Read_relocs_data::Relocs_list::iterator
& p
)
549 Relocatable_relocs
* rr
= this->relocatable_relocs(p
->reloc_shndx
);
550 gold_assert(rr
!= NULL
);
551 rr
->set_reloc_count(p
->reloc_count
);
553 if (p
->sh_type
== elfcpp::SHT_REL
)
554 this->emit_relocs_scan_reltype
<elfcpp::SHT_REL
>(symtab
, layout
,
558 gold_assert(p
->sh_type
== elfcpp::SHT_RELA
);
559 this->emit_relocs_scan_reltype
<elfcpp::SHT_RELA
>(symtab
, layout
,
564 // Scan the input relocation for --emit-relocs, templatized on the
565 // type of the relocation section.
567 template<int size
, bool big_endian
>
568 template<int sh_type
>
570 Sized_relobj_file
<size
, big_endian
>::emit_relocs_scan_reltype(
571 Symbol_table
* symtab
,
573 const unsigned char* plocal_syms
,
574 const Read_relocs_data::Relocs_list::iterator
& p
,
575 Relocatable_relocs
* rr
)
577 scan_relocatable_relocs
<size
, big_endian
, sh_type
,
578 Emit_relocs_strategy
<sh_type
> >(
586 p
->needs_special_offset_handling
,
587 this->local_symbol_count_
,
592 // Scan the input relocations for --incremental.
594 template<int size
, bool big_endian
>
596 Sized_relobj_file
<size
, big_endian
>::incremental_relocs_scan(
597 const Read_relocs_data::Relocs_list::iterator
& p
)
599 if (p
->sh_type
== elfcpp::SHT_REL
)
600 this->incremental_relocs_scan_reltype
<elfcpp::SHT_REL
>(p
);
603 gold_assert(p
->sh_type
== elfcpp::SHT_RELA
);
604 this->incremental_relocs_scan_reltype
<elfcpp::SHT_RELA
>(p
);
608 // Scan the input relocation for --incremental, templatized on the
609 // type of the relocation section.
611 template<int size
, bool big_endian
>
612 template<int sh_type
>
614 Sized_relobj_file
<size
, big_endian
>::incremental_relocs_scan_reltype(
615 const Read_relocs_data::Relocs_list::iterator
& p
)
617 typedef typename Reloc_types
<sh_type
, size
, big_endian
>::Reloc Reltype
;
618 const int reloc_size
= Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
619 const unsigned char* prelocs
= p
->contents
->data();
620 size_t reloc_count
= p
->reloc_count
;
622 for (size_t i
= 0; i
< reloc_count
; ++i
, prelocs
+= reloc_size
)
624 Reltype
reloc(prelocs
);
626 if (p
->needs_special_offset_handling
627 && !p
->output_section
->is_input_address_mapped(this, p
->data_shndx
,
628 reloc
.get_r_offset()))
631 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
=
633 const unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
635 if (r_sym
>= this->local_symbol_count_
)
636 this->count_incremental_reloc(r_sym
- this->local_symbol_count_
);
640 // Relocate the input sections and write out the local symbols.
642 template<int size
, bool big_endian
>
644 Sized_relobj_file
<size
, big_endian
>::do_relocate(const Symbol_table
* symtab
,
645 const Layout
* layout
,
648 unsigned int shnum
= this->shnum();
650 // Read the section headers.
651 const unsigned char* pshdrs
= this->get_view(this->elf_file_
.shoff(),
652 shnum
* This::shdr_size
,
658 // Make two passes over the sections. The first one copies the
659 // section data to the output file. The second one applies
662 this->write_sections(layout
, pshdrs
, of
, &views
);
664 // To speed up relocations, we set up hash tables for fast lookup of
665 // input offsets to output addresses.
666 this->initialize_input_to_output_maps();
668 // Apply relocations.
670 this->relocate_sections(symtab
, layout
, pshdrs
, of
, &views
);
672 // After we've done the relocations, we release the hash tables,
673 // since we no longer need them.
674 this->free_input_to_output_maps();
676 // Write out the accumulated views.
677 for (unsigned int i
= 1; i
< shnum
; ++i
)
679 if (views
[i
].view
!= NULL
)
681 if (views
[i
].is_ctors_reverse_view
)
682 this->reverse_words(views
[i
].view
, views
[i
].view_size
);
683 if (!views
[i
].is_postprocessing_view
)
685 if (views
[i
].is_input_output_view
)
686 of
->write_input_output_view(views
[i
].offset
,
690 of
->write_output_view(views
[i
].offset
, views
[i
].view_size
,
696 // Write out the local symbols.
697 this->write_local_symbols(of
, layout
->sympool(), layout
->dynpool(),
698 layout
->symtab_xindex(), layout
->dynsym_xindex(),
699 layout
->symtab_section_offset());
702 // Sort a Read_multiple vector by file offset.
703 struct Read_multiple_compare
706 operator()(const File_read::Read_multiple_entry
& rme1
,
707 const File_read::Read_multiple_entry
& rme2
) const
708 { return rme1
.file_offset
< rme2
.file_offset
; }
711 // Write section data to the output file. PSHDRS points to the
712 // section headers. Record the views in *PVIEWS for use when
715 template<int size
, bool big_endian
>
717 Sized_relobj_file
<size
, big_endian
>::write_sections(const Layout
* layout
,
718 const unsigned char* pshdrs
,
722 unsigned int shnum
= this->shnum();
723 const Output_sections
& out_sections(this->output_sections());
724 const std::vector
<Address
>& out_offsets(this->section_offsets());
726 File_read::Read_multiple rm
;
727 bool is_sorted
= true;
729 const unsigned char* p
= pshdrs
+ This::shdr_size
;
730 for (unsigned int i
= 1; i
< shnum
; ++i
, p
+= This::shdr_size
)
732 View_size
* pvs
= &(*pviews
)[i
];
736 const Output_section
* os
= out_sections
[i
];
739 Address output_offset
= out_offsets
[i
];
741 typename
This::Shdr
shdr(p
);
743 if (shdr
.get_sh_type() == elfcpp::SHT_NOBITS
)
746 if ((parameters
->options().relocatable()
747 || parameters
->options().emit_relocs())
748 && (shdr
.get_sh_type() == elfcpp::SHT_REL
749 || shdr
.get_sh_type() == elfcpp::SHT_RELA
)
750 && (shdr
.get_sh_flags() & elfcpp::SHF_ALLOC
) == 0)
752 // This is a reloc section in a relocatable link or when
753 // emitting relocs. We don't need to read the input file.
754 // The size and file offset are stored in the
755 // Relocatable_relocs structure.
756 Relocatable_relocs
* rr
= this->relocatable_relocs(i
);
757 gold_assert(rr
!= NULL
);
758 Output_data
* posd
= rr
->output_data();
759 gold_assert(posd
!= NULL
);
761 pvs
->offset
= posd
->offset();
762 pvs
->view_size
= posd
->data_size();
763 pvs
->view
= of
->get_output_view(pvs
->offset
, pvs
->view_size
);
764 pvs
->address
= posd
->address();
765 pvs
->is_input_output_view
= false;
766 pvs
->is_postprocessing_view
= false;
767 pvs
->is_ctors_reverse_view
= false;
772 // In the normal case, this input section is simply mapped to
773 // the output section at offset OUTPUT_OFFSET.
775 // However, if OUTPUT_OFFSET == INVALID_ADDRESS, then input data is
776 // handled specially--e.g., a .eh_frame section. The relocation
777 // routines need to check for each reloc where it should be
778 // applied. For this case, we need an input/output view for the
779 // entire contents of the section in the output file. We don't
780 // want to copy the contents of the input section to the output
781 // section; the output section contents were already written,
782 // and we waited for them in Relocate_task::is_runnable because
783 // relocs_must_follow_section_writes is set for the object.
785 // Regardless of which of the above cases is true, we have to
786 // check requires_postprocessing of the output section. If that
787 // is false, then we work with views of the output file
788 // directly. If it is true, then we work with a separate
789 // buffer, and the output section is responsible for writing the
790 // final data to the output file.
792 off_t output_section_offset
;
793 Address output_section_size
;
794 if (!os
->requires_postprocessing())
796 output_section_offset
= os
->offset();
797 output_section_size
= convert_types
<Address
, off_t
>(os
->data_size());
801 output_section_offset
= 0;
802 output_section_size
=
803 convert_types
<Address
, off_t
>(os
->postprocessing_buffer_size());
807 section_size_type view_size
;
808 bool must_decompress
= false;
809 if (output_offset
!= invalid_address
)
811 view_start
= output_section_offset
+ output_offset
;
812 view_size
= convert_to_section_size_type(shdr
.get_sh_size());
813 section_size_type uncompressed_size
;
814 if (this->section_is_compressed(i
, &uncompressed_size
))
816 view_size
= uncompressed_size
;
817 must_decompress
= true;
822 view_start
= output_section_offset
;
823 view_size
= convert_to_section_size_type(output_section_size
);
829 gold_assert(output_offset
== invalid_address
830 || output_offset
+ view_size
<= output_section_size
);
833 if (os
->requires_postprocessing())
835 unsigned char* buffer
= os
->postprocessing_buffer();
836 view
= buffer
+ view_start
;
837 if (output_offset
!= invalid_address
&& !must_decompress
)
839 off_t sh_offset
= shdr
.get_sh_offset();
840 if (!rm
.empty() && rm
.back().file_offset
> sh_offset
)
842 rm
.push_back(File_read::Read_multiple_entry(sh_offset
,
848 if (output_offset
== invalid_address
)
849 view
= of
->get_input_output_view(view_start
, view_size
);
852 view
= of
->get_output_view(view_start
, view_size
);
853 if (!must_decompress
)
855 off_t sh_offset
= shdr
.get_sh_offset();
856 if (!rm
.empty() && rm
.back().file_offset
> sh_offset
)
858 rm
.push_back(File_read::Read_multiple_entry(sh_offset
,
866 // Read and decompress the section.
867 section_size_type len
;
868 const unsigned char* p
= this->section_contents(i
, &len
, false);
869 if (!decompress_input_section(p
, len
, view
, view_size
))
870 this->error(_("could not decompress section %s"),
871 this->section_name(i
).c_str());
875 pvs
->address
= os
->address();
876 if (output_offset
!= invalid_address
)
877 pvs
->address
+= output_offset
;
878 pvs
->offset
= view_start
;
879 pvs
->view_size
= view_size
;
880 pvs
->is_input_output_view
= output_offset
== invalid_address
;
881 pvs
->is_postprocessing_view
= os
->requires_postprocessing();
882 pvs
->is_ctors_reverse_view
=
883 (!parameters
->options().relocatable()
884 && view_size
> size
/ 8
885 && (strcmp(os
->name(), ".init_array") == 0
886 || strcmp(os
->name(), ".fini_array") == 0)
887 && layout
->is_ctors_in_init_array(this, i
));
890 // Actually read the data.
894 std::sort(rm
.begin(), rm
.end(), Read_multiple_compare());
895 this->read_multiple(rm
);
899 // Relocate section data. VIEWS points to the section data as views
900 // in the output file.
902 template<int size
, bool big_endian
>
904 Sized_relobj_file
<size
, big_endian
>::do_relocate_sections(
905 const Symbol_table
* symtab
,
906 const Layout
* layout
,
907 const unsigned char* pshdrs
,
911 unsigned int shnum
= this->shnum();
912 Sized_target
<size
, big_endian
>* target
=
913 parameters
->sized_target
<size
, big_endian
>();
915 const Output_sections
& out_sections(this->output_sections());
916 const std::vector
<Address
>& out_offsets(this->section_offsets());
918 Relocate_info
<size
, big_endian
> relinfo
;
919 relinfo
.symtab
= symtab
;
920 relinfo
.layout
= layout
;
921 relinfo
.object
= this;
923 const unsigned char* p
= pshdrs
+ This::shdr_size
;
924 for (unsigned int i
= 1; i
< shnum
; ++i
, p
+= This::shdr_size
)
926 typename
This::Shdr
shdr(p
);
928 unsigned int sh_type
= shdr
.get_sh_type();
929 if (sh_type
!= elfcpp::SHT_REL
&& sh_type
!= elfcpp::SHT_RELA
)
932 off_t sh_size
= shdr
.get_sh_size();
936 unsigned int index
= this->adjust_shndx(shdr
.get_sh_info());
937 if (index
>= this->shnum())
939 this->error(_("relocation section %u has bad info %u"),
944 Output_section
* os
= out_sections
[index
];
947 // This relocation section is against a section which we
951 Address output_offset
= out_offsets
[index
];
953 gold_assert((*pviews
)[index
].view
!= NULL
);
954 if (parameters
->options().relocatable())
955 gold_assert((*pviews
)[i
].view
!= NULL
);
957 if (this->adjust_shndx(shdr
.get_sh_link()) != this->symtab_shndx_
)
959 gold_error(_("relocation section %u uses unexpected "
961 i
, this->adjust_shndx(shdr
.get_sh_link()));
965 const unsigned char* prelocs
= this->get_view(shdr
.get_sh_offset(),
966 sh_size
, true, false);
968 unsigned int reloc_size
;
969 if (sh_type
== elfcpp::SHT_REL
)
970 reloc_size
= elfcpp::Elf_sizes
<size
>::rel_size
;
972 reloc_size
= elfcpp::Elf_sizes
<size
>::rela_size
;
974 if (reloc_size
!= shdr
.get_sh_entsize())
976 gold_error(_("unexpected entsize for reloc section %u: %lu != %u"),
977 i
, static_cast<unsigned long>(shdr
.get_sh_entsize()),
982 size_t reloc_count
= sh_size
/ reloc_size
;
983 if (static_cast<off_t
>(reloc_count
* reloc_size
) != sh_size
)
985 gold_error(_("reloc section %u size %lu uneven"),
986 i
, static_cast<unsigned long>(sh_size
));
990 gold_assert(output_offset
!= invalid_address
991 || this->relocs_must_follow_section_writes());
993 relinfo
.reloc_shndx
= i
;
994 relinfo
.reloc_shdr
= p
;
995 relinfo
.data_shndx
= index
;
996 relinfo
.data_shdr
= pshdrs
+ index
* This::shdr_size
;
997 unsigned char* view
= (*pviews
)[index
].view
;
998 Address address
= (*pviews
)[index
].address
;
999 section_size_type view_size
= (*pviews
)[index
].view_size
;
1001 Reloc_symbol_changes
* reloc_map
= NULL
;
1002 if (this->uses_split_stack() && output_offset
!= invalid_address
)
1004 typename
This::Shdr
data_shdr(pshdrs
+ index
* This::shdr_size
);
1005 if ((data_shdr
.get_sh_flags() & elfcpp::SHF_EXECINSTR
) != 0)
1006 this->split_stack_adjust(symtab
, pshdrs
, sh_type
, index
,
1007 prelocs
, reloc_count
, view
, view_size
,
1011 if (!parameters
->options().relocatable())
1013 target
->relocate_section(&relinfo
, sh_type
, prelocs
, reloc_count
, os
,
1014 output_offset
== invalid_address
,
1015 view
, address
, view_size
, reloc_map
);
1016 if (parameters
->options().emit_relocs())
1017 this->emit_relocs(&relinfo
, i
, sh_type
, prelocs
, reloc_count
,
1018 os
, output_offset
, view
, address
, view_size
,
1019 (*pviews
)[i
].view
, (*pviews
)[i
].view_size
);
1020 if (parameters
->incremental())
1021 this->incremental_relocs_write(&relinfo
, sh_type
, prelocs
,
1022 reloc_count
, os
, output_offset
, of
);
1026 Relocatable_relocs
* rr
= this->relocatable_relocs(i
);
1027 target
->relocate_for_relocatable(&relinfo
, sh_type
, prelocs
,
1028 reloc_count
, os
, output_offset
, rr
,
1029 view
, address
, view_size
,
1031 (*pviews
)[i
].view_size
);
1036 // Emit the relocs for --emit-relocs.
1038 template<int size
, bool big_endian
>
1040 Sized_relobj_file
<size
, big_endian
>::emit_relocs(
1041 const Relocate_info
<size
, big_endian
>* relinfo
,
1043 unsigned int sh_type
,
1044 const unsigned char* prelocs
,
1046 Output_section
* output_section
,
1047 typename
elfcpp::Elf_types
<size
>::Elf_Addr offset_in_output_section
,
1048 unsigned char* view
,
1049 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
,
1050 section_size_type view_size
,
1051 unsigned char* reloc_view
,
1052 section_size_type reloc_view_size
)
1054 if (sh_type
== elfcpp::SHT_REL
)
1055 this->emit_relocs_reltype
<elfcpp::SHT_REL
>(relinfo
, i
, prelocs
,
1056 reloc_count
, output_section
,
1057 offset_in_output_section
,
1058 view
, address
, view_size
,
1059 reloc_view
, reloc_view_size
);
1062 gold_assert(sh_type
== elfcpp::SHT_RELA
);
1063 this->emit_relocs_reltype
<elfcpp::SHT_RELA
>(relinfo
, i
, prelocs
,
1064 reloc_count
, output_section
,
1065 offset_in_output_section
,
1066 view
, address
, view_size
,
1067 reloc_view
, reloc_view_size
);
1071 // Emit the relocs for --emit-relocs, templatized on the type of the
1072 // relocation section.
1074 template<int size
, bool big_endian
>
1075 template<int sh_type
>
1077 Sized_relobj_file
<size
, big_endian
>::emit_relocs_reltype(
1078 const Relocate_info
<size
, big_endian
>* relinfo
,
1080 const unsigned char* prelocs
,
1082 Output_section
* output_section
,
1083 typename
elfcpp::Elf_types
<size
>::Elf_Addr offset_in_output_section
,
1084 unsigned char* view
,
1085 typename
elfcpp::Elf_types
<size
>::Elf_Addr address
,
1086 section_size_type view_size
,
1087 unsigned char* reloc_view
,
1088 section_size_type reloc_view_size
)
1090 const Relocatable_relocs
* rr
= this->relocatable_relocs(i
);
1091 relocate_for_relocatable
<size
, big_endian
, sh_type
>(
1096 offset_in_output_section
,
1105 // Write the incremental relocs.
1107 template<int size
, bool big_endian
>
1109 Sized_relobj_file
<size
, big_endian
>::incremental_relocs_write(
1110 const Relocate_info
<size
, big_endian
>* relinfo
,
1111 unsigned int sh_type
,
1112 const unsigned char* prelocs
,
1114 Output_section
* output_section
,
1115 Address output_offset
,
1118 if (sh_type
== elfcpp::SHT_REL
)
1119 this->incremental_relocs_write_reltype
<elfcpp::SHT_REL
>(
1128 gold_assert(sh_type
== elfcpp::SHT_RELA
);
1129 this->incremental_relocs_write_reltype
<elfcpp::SHT_RELA
>(
1139 // Write the incremental relocs, templatized on the type of the
1140 // relocation section.
1142 template<int size
, bool big_endian
>
1143 template<int sh_type
>
1145 Sized_relobj_file
<size
, big_endian
>::incremental_relocs_write_reltype(
1146 const Relocate_info
<size
, big_endian
>* relinfo
,
1147 const unsigned char* prelocs
,
1149 Output_section
* output_section
,
1150 Address output_offset
,
1153 typedef typename Reloc_types
<sh_type
, size
, big_endian
>::Reloc Reloc
;
1154 const unsigned int reloc_size
=
1155 Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
1156 const unsigned int sizeof_addr
= size
/ 8;
1157 const unsigned int incr_reloc_size
=
1158 Incremental_relocs_reader
<size
, big_endian
>::reloc_size
;
1160 unsigned int out_shndx
= output_section
->out_shndx();
1162 // Get a view for the .gnu_incremental_relocs section.
1164 Incremental_inputs
* inputs
= relinfo
->layout
->incremental_inputs();
1165 gold_assert(inputs
!= NULL
);
1166 const off_t relocs_off
= inputs
->relocs_section()->offset();
1167 const off_t relocs_size
= inputs
->relocs_section()->data_size();
1168 unsigned char* const view
= of
->get_output_view(relocs_off
, relocs_size
);
1170 for (size_t i
= 0; i
< reloc_count
; ++i
, prelocs
+= reloc_size
)
1172 Reloc
reloc(prelocs
);
1174 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
= reloc
.get_r_info();
1175 const unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
1176 const unsigned int r_type
= elfcpp::elf_r_type
<size
>(r_info
);
1178 if (r_sym
< this->local_symbol_count_
)
1181 // Get the new offset--the location in the output section where
1182 // this relocation should be applied.
1184 Address offset
= reloc
.get_r_offset();
1185 if (output_offset
!= invalid_address
)
1186 offset
+= output_offset
;
1189 section_offset_type sot_offset
=
1190 convert_types
<section_offset_type
, Address
>(offset
);
1191 section_offset_type new_sot_offset
=
1192 output_section
->output_offset(relinfo
->object
,
1193 relinfo
->data_shndx
,
1195 gold_assert(new_sot_offset
!= -1);
1196 offset
+= new_sot_offset
;
1200 typename
elfcpp::Elf_types
<size
>::Elf_Swxword addend
;
1201 if (sh_type
== elfcpp::SHT_RELA
)
1203 Reloc_types
<sh_type
, size
, big_endian
>::get_reloc_addend(&reloc
);
1206 // FIXME: Get the addend for SHT_REL.
1210 // Get the index of the output relocation.
1212 unsigned int reloc_index
=
1213 this->next_incremental_reloc_index(r_sym
- this->local_symbol_count_
);
1215 // Write the relocation.
1217 unsigned char* pov
= view
+ reloc_index
* incr_reloc_size
;
1218 elfcpp::Swap
<32, big_endian
>::writeval(pov
, r_type
);
1219 elfcpp::Swap
<32, big_endian
>::writeval(pov
+ 4, out_shndx
);
1220 elfcpp::Swap
<size
, big_endian
>::writeval(pov
+ 8, offset
);
1221 elfcpp::Swap
<size
, big_endian
>::writeval(pov
+ 8 + sizeof_addr
, addend
);
1222 of
->write_output_view(pov
- view
, incr_reloc_size
, view
);
1226 // Create merge hash tables for the local symbols. These are used to
1227 // speed up relocations.
1229 template<int size
, bool big_endian
>
1231 Sized_relobj_file
<size
, big_endian
>::initialize_input_to_output_maps()
1233 const unsigned int loccount
= this->local_symbol_count_
;
1234 for (unsigned int i
= 1; i
< loccount
; ++i
)
1236 Symbol_value
<size
>& lv(this->local_values_
[i
]);
1237 lv
.initialize_input_to_output_map(this);
1241 // Free merge hash tables for the local symbols.
1243 template<int size
, bool big_endian
>
1245 Sized_relobj_file
<size
, big_endian
>::free_input_to_output_maps()
1247 const unsigned int loccount
= this->local_symbol_count_
;
1248 for (unsigned int i
= 1; i
< loccount
; ++i
)
1250 Symbol_value
<size
>& lv(this->local_values_
[i
]);
1251 lv
.free_input_to_output_map();
1255 // If an object was compiled with -fsplit-stack, this is called to
1256 // check whether any relocations refer to functions defined in objects
1257 // which were not compiled with -fsplit-stack. If they were, then we
1258 // need to apply some target-specific adjustments to request
1259 // additional stack space.
1261 template<int size
, bool big_endian
>
1263 Sized_relobj_file
<size
, big_endian
>::split_stack_adjust(
1264 const Symbol_table
* symtab
,
1265 const unsigned char* pshdrs
,
1266 unsigned int sh_type
,
1268 const unsigned char* prelocs
,
1270 unsigned char* view
,
1271 section_size_type view_size
,
1272 Reloc_symbol_changes
** reloc_map
)
1274 if (sh_type
== elfcpp::SHT_REL
)
1275 this->split_stack_adjust_reltype
<elfcpp::SHT_REL
>(symtab
, pshdrs
, shndx
,
1276 prelocs
, reloc_count
,
1281 gold_assert(sh_type
== elfcpp::SHT_RELA
);
1282 this->split_stack_adjust_reltype
<elfcpp::SHT_RELA
>(symtab
, pshdrs
, shndx
,
1283 prelocs
, reloc_count
,
1289 // Adjust for -fsplit-stack, templatized on the type of the relocation
1292 template<int size
, bool big_endian
>
1293 template<int sh_type
>
1295 Sized_relobj_file
<size
, big_endian
>::split_stack_adjust_reltype(
1296 const Symbol_table
* symtab
,
1297 const unsigned char* pshdrs
,
1299 const unsigned char* prelocs
,
1301 unsigned char* view
,
1302 section_size_type view_size
,
1303 Reloc_symbol_changes
** reloc_map
)
1305 typedef typename Reloc_types
<sh_type
, size
, big_endian
>::Reloc Reltype
;
1306 const int reloc_size
= Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
1308 size_t local_count
= this->local_symbol_count();
1310 std::vector
<section_offset_type
> non_split_refs
;
1312 const unsigned char* pr
= prelocs
;
1313 for (size_t i
= 0; i
< reloc_count
; ++i
, pr
+= reloc_size
)
1317 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
= reloc
.get_r_info();
1318 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
1319 if (r_sym
< local_count
)
1322 const Symbol
* gsym
= this->global_symbol(r_sym
);
1323 gold_assert(gsym
!= NULL
);
1324 if (gsym
->is_forwarder())
1325 gsym
= symtab
->resolve_forwards(gsym
);
1327 // See if this relocation refers to a function defined in an
1328 // object compiled without -fsplit-stack. Note that we don't
1329 // care about the type of relocation--this means that in some
1330 // cases we will ask for a large stack unnecessarily, but this
1331 // is not fatal. FIXME: Some targets have symbols which are
1332 // functions but are not type STT_FUNC, e.g., STT_ARM_TFUNC.
1333 if (!gsym
->is_undefined()
1334 && gsym
->source() == Symbol::FROM_OBJECT
1335 && !gsym
->object()->uses_split_stack())
1337 unsigned int r_type
= elfcpp::elf_r_type
<size
>(reloc
.get_r_info());
1338 if (parameters
->target().is_call_to_non_split(gsym
, r_type
))
1340 section_offset_type offset
=
1341 convert_to_section_size_type(reloc
.get_r_offset());
1342 non_split_refs
.push_back(offset
);
1347 if (non_split_refs
.empty())
1350 // At this point, every entry in NON_SPLIT_REFS indicates a
1351 // relocation which refers to a function in an object compiled
1352 // without -fsplit-stack. We now have to convert that list into a
1353 // set of offsets to functions. First, we find all the functions.
1355 Function_offsets function_offsets
;
1356 this->find_functions(pshdrs
, shndx
, &function_offsets
);
1357 if (function_offsets
.empty())
1360 // Now get a list of the function with references to non split-stack
1363 Function_offsets calls_non_split
;
1364 for (std::vector
<section_offset_type
>::const_iterator p
1365 = non_split_refs
.begin();
1366 p
!= non_split_refs
.end();
1369 Function_offsets::const_iterator low
= function_offsets
.lower_bound(*p
);
1370 if (low
== function_offsets
.end())
1372 else if (low
->first
== *p
)
1374 else if (low
== function_offsets
.begin())
1379 calls_non_split
.insert(*low
);
1381 if (calls_non_split
.empty())
1384 // Now we have a set of functions to adjust. The adjustments are
1385 // target specific. Besides changing the output section view
1386 // however, it likes, the target may request a relocation change
1387 // from one global symbol name to another.
1389 for (Function_offsets::const_iterator p
= calls_non_split
.begin();
1390 p
!= calls_non_split
.end();
1395 parameters
->target().calls_non_split(this, shndx
, p
->first
, p
->second
,
1396 view
, view_size
, &from
, &to
);
1399 gold_assert(!to
.empty());
1400 Symbol
* tosym
= NULL
;
1402 // Find relocations in the relevant function which are for
1405 for (size_t i
= 0; i
< reloc_count
; ++i
, pr
+= reloc_size
)
1409 typename
elfcpp::Elf_types
<size
>::Elf_WXword r_info
=
1411 unsigned int r_sym
= elfcpp::elf_r_sym
<size
>(r_info
);
1412 if (r_sym
< local_count
)
1415 section_offset_type offset
=
1416 convert_to_section_size_type(reloc
.get_r_offset());
1417 if (offset
< p
->first
1420 + static_cast<section_offset_type
>(p
->second
))))
1423 const Symbol
* gsym
= this->global_symbol(r_sym
);
1424 if (from
== gsym
->name())
1428 tosym
= symtab
->lookup(to
.c_str());
1431 this->error(_("could not convert call "
1433 from
.c_str(), to
.c_str());
1438 if (*reloc_map
== NULL
)
1439 *reloc_map
= new Reloc_symbol_changes(reloc_count
);
1440 (*reloc_map
)->set(i
, tosym
);
1447 // Find all the function in this object defined in section SHNDX.
1448 // Store their offsets in the section in FUNCTION_OFFSETS.
1450 template<int size
, bool big_endian
>
1452 Sized_relobj_file
<size
, big_endian
>::find_functions(
1453 const unsigned char* pshdrs
,
1455 Sized_relobj_file
<size
, big_endian
>::Function_offsets
* function_offsets
)
1457 // We need to read the symbols to find the functions. If we wanted
1458 // to, we could cache reading the symbols across all sections in the
1460 const unsigned int symtab_shndx
= this->symtab_shndx_
;
1461 typename
This::Shdr
symtabshdr(pshdrs
+ symtab_shndx
* This::shdr_size
);
1462 gold_assert(symtabshdr
.get_sh_type() == elfcpp::SHT_SYMTAB
);
1464 typename
elfcpp::Elf_types
<size
>::Elf_WXword sh_size
=
1465 symtabshdr
.get_sh_size();
1466 const unsigned char* psyms
= this->get_view(symtabshdr
.get_sh_offset(),
1467 sh_size
, true, true);
1469 const int sym_size
= This::sym_size
;
1470 const unsigned int symcount
= sh_size
/ sym_size
;
1471 for (unsigned int i
= 0; i
< symcount
; ++i
, psyms
+= sym_size
)
1473 typename
elfcpp::Sym
<size
, big_endian
> isym(psyms
);
1475 // FIXME: Some targets can have functions which do not have type
1476 // STT_FUNC, e.g., STT_ARM_TFUNC.
1477 if (isym
.get_st_type() != elfcpp::STT_FUNC
1478 || isym
.get_st_size() == 0)
1482 unsigned int sym_shndx
= this->adjust_sym_shndx(i
, isym
.get_st_shndx(),
1484 if (!is_ordinary
|| sym_shndx
!= shndx
)
1487 section_offset_type value
=
1488 convert_to_section_size_type(isym
.get_st_value());
1489 section_size_type fnsize
=
1490 convert_to_section_size_type(isym
.get_st_size());
1492 (*function_offsets
)[value
] = fnsize
;
1496 // Reverse the words in a section. Used for .ctors sections mapped to
1497 // .init_array sections. See ctors_sections_in_init_array in
1500 template<int size
, bool big_endian
>
1502 Sized_relobj_file
<size
, big_endian
>::reverse_words(unsigned char* view
,
1503 section_size_type view_size
)
1505 typedef typename
elfcpp::Swap
<size
, big_endian
>::Valtype Valtype
;
1506 Valtype
* vview
= reinterpret_cast<Valtype
*>(view
);
1507 section_size_type vview_size
= view_size
/ (size
/ 8);
1508 for (section_size_type i
= 0; i
< vview_size
/ 2; ++i
)
1510 Valtype tmp
= vview
[i
];
1511 vview
[i
] = vview
[vview_size
- 1 - i
];
1512 vview
[vview_size
- 1 - i
] = tmp
;
1516 // Class Merged_symbol_value.
1520 Merged_symbol_value
<size
>::initialize_input_to_output_map(
1521 const Relobj
* object
,
1522 unsigned int input_shndx
)
1524 Object_merge_map
* map
= object
->merge_map();
1525 map
->initialize_input_to_output_map
<size
>(input_shndx
,
1526 this->output_start_address_
,
1527 &this->output_addresses_
);
1530 // Get the output value corresponding to an input offset if we
1531 // couldn't find it in the hash table.
1534 typename
elfcpp::Elf_types
<size
>::Elf_Addr
1535 Merged_symbol_value
<size
>::value_from_output_section(
1536 const Relobj
* object
,
1537 unsigned int input_shndx
,
1538 typename
elfcpp::Elf_types
<size
>::Elf_Addr input_offset
) const
1540 section_offset_type output_offset
;
1541 bool found
= object
->merge_map()->get_output_offset(NULL
, input_shndx
,
1545 // If this assertion fails, it means that some relocation was
1546 // against a portion of an input merge section which we didn't map
1547 // to the output file and we didn't explicitly discard. We should
1548 // always map all portions of input merge sections.
1551 if (output_offset
== -1)
1554 return this->output_start_address_
+ output_offset
;
1557 // Track_relocs methods.
1559 // Initialize the class to track the relocs. This gets the object,
1560 // the reloc section index, and the type of the relocs. This returns
1561 // false if something goes wrong.
1563 template<int size
, bool big_endian
>
1565 Track_relocs
<size
, big_endian
>::initialize(
1567 unsigned int reloc_shndx
,
1568 unsigned int reloc_type
)
1570 // If RELOC_SHNDX is -1U, it means there is more than one reloc
1571 // section for the .eh_frame section. We can't handle that case.
1572 if (reloc_shndx
== -1U)
1575 // If RELOC_SHNDX is 0, there is no reloc section.
1576 if (reloc_shndx
== 0)
1579 // Get the contents of the reloc section.
1580 this->prelocs_
= object
->section_contents(reloc_shndx
, &this->len_
, false);
1582 if (reloc_type
== elfcpp::SHT_REL
)
1583 this->reloc_size_
= elfcpp::Elf_sizes
<size
>::rel_size
;
1584 else if (reloc_type
== elfcpp::SHT_RELA
)
1585 this->reloc_size_
= elfcpp::Elf_sizes
<size
>::rela_size
;
1589 if (this->len_
% this->reloc_size_
!= 0)
1591 object
->error(_("reloc section size %zu is not a multiple of "
1593 static_cast<size_t>(this->len_
),
1601 // Return the offset of the next reloc, or -1 if there isn't one.
1603 template<int size
, bool big_endian
>
1605 Track_relocs
<size
, big_endian
>::next_offset() const
1607 if (this->pos_
>= this->len_
)
1610 // Rel and Rela start out the same, so we can always use Rel to find
1611 // the r_offset value.
1612 elfcpp::Rel
<size
, big_endian
> rel(this->prelocs_
+ this->pos_
);
1613 return rel
.get_r_offset();
1616 // Return the index of the symbol referenced by the next reloc, or -1U
1617 // if there aren't any more relocs.
1619 template<int size
, bool big_endian
>
1621 Track_relocs
<size
, big_endian
>::next_symndx() const
1623 if (this->pos_
>= this->len_
)
1626 // Rel and Rela start out the same, so we can use Rel to find the
1628 elfcpp::Rel
<size
, big_endian
> rel(this->prelocs_
+ this->pos_
);
1629 return elfcpp::elf_r_sym
<size
>(rel
.get_r_info());
1632 // Return the addend of the next reloc, or 0 if there isn't one.
1634 template<int size
, bool big_endian
>
1636 Track_relocs
<size
, big_endian
>::next_addend() const
1638 if (this->pos_
>= this->len_
)
1640 if (this->reloc_size_
== elfcpp::Elf_sizes
<size
>::rel_size
)
1642 elfcpp::Rela
<size
, big_endian
> rela(this->prelocs_
+ this->pos_
);
1643 return rela
.get_r_addend();
1646 // Advance to the next reloc whose r_offset is greater than or equal
1647 // to OFFSET. Return the number of relocs we skip.
1649 template<int size
, bool big_endian
>
1651 Track_relocs
<size
, big_endian
>::advance(off_t offset
)
1654 while (this->pos_
< this->len_
)
1656 // Rel and Rela start out the same, so we can always use Rel to
1657 // find the r_offset value.
1658 elfcpp::Rel
<size
, big_endian
> rel(this->prelocs_
+ this->pos_
);
1659 if (static_cast<off_t
>(rel
.get_r_offset()) >= offset
)
1662 this->pos_
+= this->reloc_size_
;
1667 // Instantiate the templates we need.
1669 #ifdef HAVE_TARGET_32_LITTLE
1672 Sized_relobj_file
<32, false>::do_read_relocs(Read_relocs_data
* rd
);
1675 #ifdef HAVE_TARGET_32_BIG
1678 Sized_relobj_file
<32, true>::do_read_relocs(Read_relocs_data
* rd
);
1681 #ifdef HAVE_TARGET_64_LITTLE
1684 Sized_relobj_file
<64, false>::do_read_relocs(Read_relocs_data
* rd
);
1687 #ifdef HAVE_TARGET_64_BIG
1690 Sized_relobj_file
<64, true>::do_read_relocs(Read_relocs_data
* rd
);
1693 #ifdef HAVE_TARGET_32_LITTLE
1696 Sized_relobj_file
<32, false>::do_gc_process_relocs(Symbol_table
* symtab
,
1698 Read_relocs_data
* rd
);
1701 #ifdef HAVE_TARGET_32_BIG
1704 Sized_relobj_file
<32, true>::do_gc_process_relocs(Symbol_table
* symtab
,
1706 Read_relocs_data
* rd
);
1709 #ifdef HAVE_TARGET_64_LITTLE
1712 Sized_relobj_file
<64, false>::do_gc_process_relocs(Symbol_table
* symtab
,
1714 Read_relocs_data
* rd
);
1717 #ifdef HAVE_TARGET_64_BIG
1720 Sized_relobj_file
<64, true>::do_gc_process_relocs(Symbol_table
* symtab
,
1722 Read_relocs_data
* rd
);
1725 #ifdef HAVE_TARGET_32_LITTLE
1728 Sized_relobj_file
<32, false>::do_scan_relocs(Symbol_table
* symtab
,
1730 Read_relocs_data
* rd
);
1733 #ifdef HAVE_TARGET_32_BIG
1736 Sized_relobj_file
<32, true>::do_scan_relocs(Symbol_table
* symtab
,
1738 Read_relocs_data
* rd
);
1741 #ifdef HAVE_TARGET_64_LITTLE
1744 Sized_relobj_file
<64, false>::do_scan_relocs(Symbol_table
* symtab
,
1746 Read_relocs_data
* rd
);
1749 #ifdef HAVE_TARGET_64_BIG
1752 Sized_relobj_file
<64, true>::do_scan_relocs(Symbol_table
* symtab
,
1754 Read_relocs_data
* rd
);
1757 #ifdef HAVE_TARGET_32_LITTLE
1760 Sized_relobj_file
<32, false>::do_relocate(const Symbol_table
* symtab
,
1761 const Layout
* layout
,
1765 #ifdef HAVE_TARGET_32_BIG
1768 Sized_relobj_file
<32, true>::do_relocate(const Symbol_table
* symtab
,
1769 const Layout
* layout
,
1773 #ifdef HAVE_TARGET_64_LITTLE
1776 Sized_relobj_file
<64, false>::do_relocate(const Symbol_table
* symtab
,
1777 const Layout
* layout
,
1781 #ifdef HAVE_TARGET_64_BIG
1784 Sized_relobj_file
<64, true>::do_relocate(const Symbol_table
* symtab
,
1785 const Layout
* layout
,
1789 #ifdef HAVE_TARGET_32_LITTLE
1792 Sized_relobj_file
<32, false>::do_relocate_sections(
1793 const Symbol_table
* symtab
,
1794 const Layout
* layout
,
1795 const unsigned char* pshdrs
,
1800 #ifdef HAVE_TARGET_32_BIG
1803 Sized_relobj_file
<32, true>::do_relocate_sections(
1804 const Symbol_table
* symtab
,
1805 const Layout
* layout
,
1806 const unsigned char* pshdrs
,
1811 #ifdef HAVE_TARGET_64_LITTLE
1814 Sized_relobj_file
<64, false>::do_relocate_sections(
1815 const Symbol_table
* symtab
,
1816 const Layout
* layout
,
1817 const unsigned char* pshdrs
,
1822 #ifdef HAVE_TARGET_64_BIG
1825 Sized_relobj_file
<64, true>::do_relocate_sections(
1826 const Symbol_table
* symtab
,
1827 const Layout
* layout
,
1828 const unsigned char* pshdrs
,
1833 #ifdef HAVE_TARGET_32_LITTLE
1836 Sized_relobj_file
<32, false>::initialize_input_to_output_maps();
1840 Sized_relobj_file
<32, false>::free_input_to_output_maps();
1843 #ifdef HAVE_TARGET_32_BIG
1846 Sized_relobj_file
<32, true>::initialize_input_to_output_maps();
1850 Sized_relobj_file
<32, true>::free_input_to_output_maps();
1853 #ifdef HAVE_TARGET_64_LITTLE
1856 Sized_relobj_file
<64, false>::initialize_input_to_output_maps();
1860 Sized_relobj_file
<64, false>::free_input_to_output_maps();
1863 #ifdef HAVE_TARGET_64_BIG
1866 Sized_relobj_file
<64, true>::initialize_input_to_output_maps();
1870 Sized_relobj_file
<64, true>::free_input_to_output_maps();
1873 #if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
1875 class Merged_symbol_value
<32>;
1878 #if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
1880 class Merged_symbol_value
<64>;
1883 #if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
1885 class Symbol_value
<32>;
1888 #if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
1890 class Symbol_value
<64>;
1893 #ifdef HAVE_TARGET_32_LITTLE
1895 class Track_relocs
<32, false>;
1898 #ifdef HAVE_TARGET_32_BIG
1900 class Track_relocs
<32, true>;
1903 #ifdef HAVE_TARGET_64_LITTLE
1905 class Track_relocs
<64, false>;
1908 #ifdef HAVE_TARGET_64_BIG
1910 class Track_relocs
<64, true>;
1913 } // End namespace gold.