1 // output.h -- manage the output file for gold -*- C++ -*-
3 // Copyright 2006, 2007, 2008 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.
32 #include "reloc-types.h"
37 class General_options
;
42 class Relocatable_relocs
;
44 template<int size
, bool big_endian
>
46 template<int size
, bool big_endian
>
49 // An abtract class for data which has to go into the output file.
54 explicit Output_data()
55 : address_(0), data_size_(0), offset_(-1),
56 is_address_valid_(false), is_data_size_valid_(false),
57 is_offset_valid_(false),
58 dynamic_reloc_count_(0)
64 // Return the address. For allocated sections, this is only valid
65 // after Layout::finalize is finished.
69 gold_assert(this->is_address_valid_
);
70 return this->address_
;
73 // Return the size of the data. For allocated sections, this must
74 // be valid after Layout::finalize calls set_address, but need not
75 // be valid before then.
79 gold_assert(this->is_data_size_valid_
);
80 return this->data_size_
;
83 // Return the file offset. This is only valid after
84 // Layout::finalize is finished. For some non-allocated sections,
85 // it may not be valid until near the end of the link.
89 gold_assert(this->is_offset_valid_
);
93 // Reset the address and file offset. This essentially disables the
94 // sanity testing about duplicate and unknown settings.
96 reset_address_and_file_offset()
98 this->is_address_valid_
= false;
99 this->is_offset_valid_
= false;
100 this->is_data_size_valid_
= false;
101 this->do_reset_address_and_file_offset();
104 // Return the required alignment.
107 { return this->do_addralign(); }
109 // Return whether this has a load address.
111 has_load_address() const
112 { return this->do_has_load_address(); }
114 // Return the load address.
117 { return this->do_load_address(); }
119 // Return whether this is an Output_section.
122 { return this->do_is_section(); }
124 // Return whether this is an Output_section of the specified type.
126 is_section_type(elfcpp::Elf_Word stt
) const
127 { return this->do_is_section_type(stt
); }
129 // Return whether this is an Output_section with the specified flag
132 is_section_flag_set(elfcpp::Elf_Xword shf
) const
133 { return this->do_is_section_flag_set(shf
); }
135 // Return the output section that this goes in, if there is one.
138 { return this->do_output_section(); }
140 // Return the output section index, if there is an output section.
143 { return this->do_out_shndx(); }
145 // Set the output section index, if this is an output section.
147 set_out_shndx(unsigned int shndx
)
148 { this->do_set_out_shndx(shndx
); }
150 // Set the address and file offset of this data, and finalize the
151 // size of the data. This is called during Layout::finalize for
152 // allocated sections.
154 set_address_and_file_offset(uint64_t addr
, off_t off
)
156 this->set_address(addr
);
157 this->set_file_offset(off
);
158 this->finalize_data_size();
163 set_address(uint64_t addr
)
165 gold_assert(!this->is_address_valid_
);
166 this->address_
= addr
;
167 this->is_address_valid_
= true;
170 // Set the file offset.
172 set_file_offset(off_t off
)
174 gold_assert(!this->is_offset_valid_
);
176 this->is_offset_valid_
= true;
179 // Finalize the data size.
183 if (!this->is_data_size_valid_
)
185 // Tell the child class to set the data size.
186 this->set_final_data_size();
187 gold_assert(this->is_data_size_valid_
);
191 // Set the TLS offset. Called only for SHT_TLS sections.
193 set_tls_offset(uint64_t tls_base
)
194 { this->do_set_tls_offset(tls_base
); }
196 // Return the TLS offset, relative to the base of the TLS segment.
197 // Valid only for SHT_TLS sections.
200 { return this->do_tls_offset(); }
202 // Write the data to the output file. This is called after
203 // Layout::finalize is complete.
205 write(Output_file
* file
)
206 { this->do_write(file
); }
208 // This is called by Layout::finalize to note that the sizes of
209 // allocated sections must now be fixed.
212 { Output_data::allocated_sizes_are_fixed
= true; }
214 // Used to check that layout has been done.
217 { return Output_data::allocated_sizes_are_fixed
; }
219 // Count the number of dynamic relocations applied to this section.
222 { ++this->dynamic_reloc_count_
; }
224 // Return the number of dynamic relocations applied to this section.
226 dynamic_reloc_count() const
227 { return this->dynamic_reloc_count_
; }
229 // Whether the address is valid.
231 is_address_valid() const
232 { return this->is_address_valid_
; }
234 // Whether the file offset is valid.
236 is_offset_valid() const
237 { return this->is_offset_valid_
; }
239 // Whether the data size is valid.
241 is_data_size_valid() const
242 { return this->is_data_size_valid_
; }
244 // Print information to the map file.
246 print_to_mapfile(Mapfile
* mapfile
) const
247 { return this->do_print_to_mapfile(mapfile
); }
250 // Functions that child classes may or in some cases must implement.
252 // Write the data to the output file.
254 do_write(Output_file
*) = 0;
256 // Return the required alignment.
258 do_addralign() const = 0;
260 // Return whether this has a load address.
262 do_has_load_address() const
265 // Return the load address.
267 do_load_address() const
268 { gold_unreachable(); }
270 // Return whether this is an Output_section.
272 do_is_section() const
275 // Return whether this is an Output_section of the specified type.
276 // This only needs to be implement by Output_section.
278 do_is_section_type(elfcpp::Elf_Word
) const
281 // Return whether this is an Output_section with the specific flag
282 // set. This only needs to be implemented by Output_section.
284 do_is_section_flag_set(elfcpp::Elf_Xword
) const
287 // Return the output section, if there is one.
288 virtual Output_section
*
292 // Return the output section index, if there is an output section.
295 { gold_unreachable(); }
297 // Set the output section index, if this is an output section.
299 do_set_out_shndx(unsigned int)
300 { gold_unreachable(); }
302 // This is a hook for derived classes to set the data size. This is
303 // called by finalize_data_size, normally called during
304 // Layout::finalize, when the section address is set.
306 set_final_data_size()
307 { gold_unreachable(); }
309 // A hook for resetting the address and file offset.
311 do_reset_address_and_file_offset()
314 // Set the TLS offset. Called only for SHT_TLS sections.
316 do_set_tls_offset(uint64_t)
317 { gold_unreachable(); }
319 // Return the TLS offset, relative to the base of the TLS segment.
320 // Valid only for SHT_TLS sections.
322 do_tls_offset() const
323 { gold_unreachable(); }
325 // Print to the map file. This only needs to be implemented by
326 // classes which may appear in a PT_LOAD segment.
328 do_print_to_mapfile(Mapfile
*) const
329 { gold_unreachable(); }
331 // Functions that child classes may call.
333 // Set the size of the data.
335 set_data_size(off_t data_size
)
337 gold_assert(!this->is_data_size_valid_
);
338 this->data_size_
= data_size
;
339 this->is_data_size_valid_
= true;
342 // Get the current data size--this is for the convenience of
343 // sections which build up their size over time.
345 current_data_size_for_child() const
346 { return this->data_size_
; }
348 // Set the current data size--this is for the convenience of
349 // sections which build up their size over time.
351 set_current_data_size_for_child(off_t data_size
)
353 gold_assert(!this->is_data_size_valid_
);
354 this->data_size_
= data_size
;
357 // Return default alignment for the target size.
361 // Return default alignment for a specified size--32 or 64.
363 default_alignment_for_size(int size
);
366 Output_data(const Output_data
&);
367 Output_data
& operator=(const Output_data
&);
369 // This is used for verification, to make sure that we don't try to
370 // change any sizes of allocated sections after we set the section
372 static bool allocated_sizes_are_fixed
;
374 // Memory address in output file.
376 // Size of data in output file.
378 // File offset of contents in output file.
380 // Whether address_ is valid.
381 bool is_address_valid_
;
382 // Whether data_size_ is valid.
383 bool is_data_size_valid_
;
384 // Whether offset_ is valid.
385 bool is_offset_valid_
;
386 // Count of dynamic relocations applied to this section.
387 unsigned int dynamic_reloc_count_
;
390 // Output the section headers.
392 class Output_section_headers
: public Output_data
395 Output_section_headers(const Layout
*,
396 const Layout::Segment_list
*,
397 const Layout::Section_list
*,
398 const Layout::Section_list
*,
400 const Output_section
*);
403 // Write the data to the file.
405 do_write(Output_file
*);
407 // Return the required alignment.
410 { return Output_data::default_alignment(); }
412 // Write to a map file.
414 do_print_to_mapfile(Mapfile
* mapfile
) const
415 { mapfile
->print_output_data(this, _("** section headers")); }
418 // Write the data to the file with the right size and endianness.
419 template<int size
, bool big_endian
>
421 do_sized_write(Output_file
*);
423 const Layout
* layout_
;
424 const Layout::Segment_list
* segment_list_
;
425 const Layout::Section_list
* section_list_
;
426 const Layout::Section_list
* unattached_section_list_
;
427 const Stringpool
* secnamepool_
;
428 const Output_section
* shstrtab_section_
;
431 // Output the segment headers.
433 class Output_segment_headers
: public Output_data
436 Output_segment_headers(const Layout::Segment_list
& segment_list
);
439 // Write the data to the file.
441 do_write(Output_file
*);
443 // Return the required alignment.
446 { return Output_data::default_alignment(); }
448 // Write to a map file.
450 do_print_to_mapfile(Mapfile
* mapfile
) const
451 { mapfile
->print_output_data(this, _("** segment headers")); }
454 // Write the data to the file with the right size and endianness.
455 template<int size
, bool big_endian
>
457 do_sized_write(Output_file
*);
459 const Layout::Segment_list
& segment_list_
;
462 // Output the ELF file header.
464 class Output_file_header
: public Output_data
467 Output_file_header(const Target
*,
469 const Output_segment_headers
*,
472 // Add information about the section headers. We lay out the ELF
473 // file header before we create the section headers.
474 void set_section_info(const Output_section_headers
*,
475 const Output_section
* shstrtab
);
478 // Write the data to the file.
480 do_write(Output_file
*);
482 // Return the required alignment.
485 { return Output_data::default_alignment(); }
487 // Write to a map file.
489 do_print_to_mapfile(Mapfile
* mapfile
) const
490 { mapfile
->print_output_data(this, _("** file header")); }
493 // Write the data to the file with the right size and endianness.
494 template<int size
, bool big_endian
>
496 do_sized_write(Output_file
*);
498 // Return the value to use for the entry address.
500 typename
elfcpp::Elf_types
<size
>::Elf_Addr
503 const Target
* target_
;
504 const Symbol_table
* symtab_
;
505 const Output_segment_headers
* segment_header_
;
506 const Output_section_headers
* section_header_
;
507 const Output_section
* shstrtab_
;
511 // Output sections are mainly comprised of input sections. However,
512 // there are cases where we have data to write out which is not in an
513 // input section. Output_section_data is used in such cases. This is
514 // an abstract base class.
516 class Output_section_data
: public Output_data
519 Output_section_data(off_t data_size
, uint64_t addralign
)
520 : Output_data(), output_section_(NULL
), addralign_(addralign
)
521 { this->set_data_size(data_size
); }
523 Output_section_data(uint64_t addralign
)
524 : Output_data(), output_section_(NULL
), addralign_(addralign
)
527 // Return the output section.
528 const Output_section
*
529 output_section() const
530 { return this->output_section_
; }
532 // Record the output section.
534 set_output_section(Output_section
* os
);
536 // Add an input section, for SHF_MERGE sections. This returns true
537 // if the section was handled.
539 add_input_section(Relobj
* object
, unsigned int shndx
)
540 { return this->do_add_input_section(object
, shndx
); }
542 // Given an input OBJECT, an input section index SHNDX within that
543 // object, and an OFFSET relative to the start of that input
544 // section, return whether or not the corresponding offset within
545 // the output section is known. If this function returns true, it
546 // sets *POUTPUT to the output offset. The value -1 indicates that
547 // this input offset is being discarded.
549 output_offset(const Relobj
* object
, unsigned int shndx
,
550 section_offset_type offset
,
551 section_offset_type
*poutput
) const
552 { return this->do_output_offset(object
, shndx
, offset
, poutput
); }
554 // Return whether this is the merge section for the input section
555 // SHNDX in OBJECT. This should return true when output_offset
556 // would return true for some values of OFFSET.
558 is_merge_section_for(const Relobj
* object
, unsigned int shndx
) const
559 { return this->do_is_merge_section_for(object
, shndx
); }
561 // Write the contents to a buffer. This is used for sections which
562 // require postprocessing, such as compression.
564 write_to_buffer(unsigned char* buffer
)
565 { this->do_write_to_buffer(buffer
); }
567 // Print merge stats to stderr. This should only be called for
568 // SHF_MERGE sections.
570 print_merge_stats(const char* section_name
)
571 { this->do_print_merge_stats(section_name
); }
574 // The child class must implement do_write.
576 // The child class may implement specific adjustments to the output
579 do_adjust_output_section(Output_section
*)
582 // May be implemented by child class. Return true if the section
585 do_add_input_section(Relobj
*, unsigned int)
586 { gold_unreachable(); }
588 // The child class may implement output_offset.
590 do_output_offset(const Relobj
*, unsigned int, section_offset_type
,
591 section_offset_type
*) const
594 // The child class may implement is_merge_section_for.
596 do_is_merge_section_for(const Relobj
*, unsigned int) const
599 // The child class may implement write_to_buffer. Most child
600 // classes can not appear in a compressed section, and they do not
603 do_write_to_buffer(unsigned char*)
604 { gold_unreachable(); }
606 // Print merge statistics.
608 do_print_merge_stats(const char*)
609 { gold_unreachable(); }
611 // Return the required alignment.
614 { return this->addralign_
; }
616 // Return the output section.
619 { return this->output_section_
; }
621 // Return the section index of the output section.
623 do_out_shndx() const;
625 // Set the alignment.
627 set_addralign(uint64_t addralign
);
630 // The output section for this section.
631 Output_section
* output_section_
;
632 // The required alignment.
636 // Some Output_section_data classes build up their data step by step,
637 // rather than all at once. This class provides an interface for
640 class Output_section_data_build
: public Output_section_data
643 Output_section_data_build(uint64_t addralign
)
644 : Output_section_data(addralign
)
647 // Get the current data size.
649 current_data_size() const
650 { return this->current_data_size_for_child(); }
652 // Set the current data size.
654 set_current_data_size(off_t data_size
)
655 { this->set_current_data_size_for_child(data_size
); }
658 // Set the final data size.
660 set_final_data_size()
661 { this->set_data_size(this->current_data_size_for_child()); }
664 // A simple case of Output_data in which we have constant data to
667 class Output_data_const
: public Output_section_data
670 Output_data_const(const std::string
& data
, uint64_t addralign
)
671 : Output_section_data(data
.size(), addralign
), data_(data
)
674 Output_data_const(const char* p
, off_t len
, uint64_t addralign
)
675 : Output_section_data(len
, addralign
), data_(p
, len
)
678 Output_data_const(const unsigned char* p
, off_t len
, uint64_t addralign
)
679 : Output_section_data(len
, addralign
),
680 data_(reinterpret_cast<const char*>(p
), len
)
684 // Write the data to the output file.
686 do_write(Output_file
*);
688 // Write the data to a buffer.
690 do_write_to_buffer(unsigned char* buffer
)
691 { memcpy(buffer
, this->data_
.data(), this->data_
.size()); }
693 // Write to a map file.
695 do_print_to_mapfile(Mapfile
* mapfile
) const
696 { mapfile
->print_output_data(this, _("** fill")); }
702 // Another version of Output_data with constant data, in which the
703 // buffer is allocated by the caller.
705 class Output_data_const_buffer
: public Output_section_data
708 Output_data_const_buffer(const unsigned char* p
, off_t len
,
709 uint64_t addralign
, const char* map_name
)
710 : Output_section_data(len
, addralign
),
711 p_(p
), map_name_(map_name
)
715 // Write the data the output file.
717 do_write(Output_file
*);
719 // Write the data to a buffer.
721 do_write_to_buffer(unsigned char* buffer
)
722 { memcpy(buffer
, this->p_
, this->data_size()); }
724 // Write to a map file.
726 do_print_to_mapfile(Mapfile
* mapfile
) const
727 { mapfile
->print_output_data(this, _(this->map_name_
)); }
730 // The data to output.
731 const unsigned char* p_
;
732 // Name to use in a map file. Maps are a rarely used feature, but
733 // the space usage is minor as aren't very many of these objects.
734 const char* map_name_
;
737 // A place holder for a fixed amount of data written out via some
740 class Output_data_fixed_space
: public Output_section_data
743 Output_data_fixed_space(off_t data_size
, uint64_t addralign
,
744 const char* map_name
)
745 : Output_section_data(data_size
, addralign
),
750 // Write out the data--the actual data must be written out
753 do_write(Output_file
*)
756 // Write to a map file.
758 do_print_to_mapfile(Mapfile
* mapfile
) const
759 { mapfile
->print_output_data(this, _(this->map_name_
)); }
762 // Name to use in a map file. Maps are a rarely used feature, but
763 // the space usage is minor as aren't very many of these objects.
764 const char* map_name_
;
767 // A place holder for variable sized data written out via some other
770 class Output_data_space
: public Output_section_data_build
773 explicit Output_data_space(uint64_t addralign
, const char* map_name
)
774 : Output_section_data_build(addralign
),
778 // Set the alignment.
780 set_space_alignment(uint64_t align
)
781 { this->set_addralign(align
); }
784 // Write out the data--the actual data must be written out
787 do_write(Output_file
*)
790 // Write to a map file.
792 do_print_to_mapfile(Mapfile
* mapfile
) const
793 { mapfile
->print_output_data(this, _(this->map_name_
)); }
796 // Name to use in a map file. Maps are a rarely used feature, but
797 // the space usage is minor as aren't very many of these objects.
798 const char* map_name_
;
801 // Fill fixed space with zeroes. This is just like
802 // Output_data_fixed_space, except that the map name is known.
804 class Output_data_zero_fill
: public Output_section_data
807 Output_data_zero_fill(off_t data_size
, uint64_t addralign
)
808 : Output_section_data(data_size
, addralign
)
812 // There is no data to write out.
814 do_write(Output_file
*)
817 // Write to a map file.
819 do_print_to_mapfile(Mapfile
* mapfile
) const
820 { mapfile
->print_output_data(this, "** zero fill"); }
823 // A string table which goes into an output section.
825 class Output_data_strtab
: public Output_section_data
828 Output_data_strtab(Stringpool
* strtab
)
829 : Output_section_data(1), strtab_(strtab
)
833 // This is called to set the address and file offset. Here we make
834 // sure that the Stringpool is finalized.
836 set_final_data_size();
838 // Write out the data.
840 do_write(Output_file
*);
842 // Write the data to a buffer.
844 do_write_to_buffer(unsigned char* buffer
)
845 { this->strtab_
->write_to_buffer(buffer
, this->data_size()); }
847 // Write to a map file.
849 do_print_to_mapfile(Mapfile
* mapfile
) const
850 { mapfile
->print_output_data(this, _("** string table")); }
856 // This POD class is used to represent a single reloc in the output
857 // file. This could be a private class within Output_data_reloc, but
858 // the templatization is complex enough that I broke it out into a
859 // separate class. The class is templatized on either elfcpp::SHT_REL
860 // or elfcpp::SHT_RELA, and also on whether this is a dynamic
861 // relocation or an ordinary relocation.
863 // A relocation can be against a global symbol, a local symbol, a
864 // local section symbol, an output section, or the undefined symbol at
865 // index 0. We represent the latter by using a NULL global symbol.
867 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
870 template<bool dynamic
, int size
, bool big_endian
>
871 class Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
874 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
875 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Addend
;
877 // An uninitialized entry. We need this because we want to put
878 // instances of this class into an STL container.
880 : local_sym_index_(INVALID_CODE
)
883 // We have a bunch of different constructors. They come in pairs
884 // depending on how the address of the relocation is specified. It
885 // can either be an offset in an Output_data or an offset in an
888 // A reloc against a global symbol.
890 Output_reloc(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
891 Address address
, bool is_relative
);
893 Output_reloc(Symbol
* gsym
, unsigned int type
, Relobj
* relobj
,
894 unsigned int shndx
, Address address
, bool is_relative
);
896 // A reloc against a local symbol or local section symbol.
898 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
899 unsigned int local_sym_index
, unsigned int type
,
900 Output_data
* od
, Address address
, bool is_relative
,
901 bool is_section_symbol
);
903 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
904 unsigned int local_sym_index
, unsigned int type
,
905 unsigned int shndx
, Address address
, bool is_relative
,
906 bool is_section_symbol
);
908 // A reloc against the STT_SECTION symbol of an output section.
910 Output_reloc(Output_section
* os
, unsigned int type
, Output_data
* od
,
913 Output_reloc(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
914 unsigned int shndx
, Address address
);
916 // Return TRUE if this is a RELATIVE relocation.
919 { return this->is_relative_
; }
921 // Return whether this is against a local section symbol.
923 is_local_section_symbol() const
925 return (this->local_sym_index_
!= GSYM_CODE
926 && this->local_sym_index_
!= SECTION_CODE
927 && this->local_sym_index_
!= INVALID_CODE
928 && this->is_section_symbol_
);
931 // For a local section symbol, return the offset of the input
932 // section within the output section. ADDEND is the addend being
933 // applied to the input section.
935 local_section_offset(Addend addend
) const;
937 // Get the value of the symbol referred to by a Rel relocation when
938 // we are adding the given ADDEND.
940 symbol_value(Addend addend
) const;
942 // Write the reloc entry to an output view.
944 write(unsigned char* pov
) const;
946 // Write the offset and info fields to Write_rel.
947 template<typename Write_rel
>
948 void write_rel(Write_rel
*) const;
950 // This is used when sorting dynamic relocs. Return -1 to sort this
951 // reloc before R2, 0 to sort the same as R2, 1 to sort after R2.
953 compare(const Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>& r2
)
956 // Return whether this reloc should be sorted before the argument
957 // when sorting dynamic relocs.
959 sort_before(const Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>&
961 { return this->compare(r2
) < 0; }
964 // Record that we need a dynamic symbol index.
966 set_needs_dynsym_index();
968 // Return the symbol index.
970 get_symbol_index() const;
972 // Return the output address.
976 // Codes for local_sym_index_.
983 // Invalid uninitialized entry.
989 // For a local symbol or local section symbol
990 // (this->local_sym_index_ >= 0), the object. We will never
991 // generate a relocation against a local symbol in a dynamic
992 // object; that doesn't make sense. And our callers will always
993 // be templatized, so we use Sized_relobj here.
994 Sized_relobj
<size
, big_endian
>* relobj
;
995 // For a global symbol (this->local_sym_index_ == GSYM_CODE, the
996 // symbol. If this is NULL, it indicates a relocation against the
997 // undefined 0 symbol.
999 // For a relocation against an output section
1000 // (this->local_sym_index_ == SECTION_CODE), the output section.
1005 // If this->shndx_ is not INVALID CODE, the object which holds the
1006 // input section being used to specify the reloc address.
1008 // If this->shndx_ is INVALID_CODE, the output data being used to
1009 // specify the reloc address. This may be NULL if the reloc
1010 // address is absolute.
1013 // The address offset within the input section or the Output_data.
1015 // This is GSYM_CODE for a global symbol, or SECTION_CODE for a
1016 // relocation against an output section, or INVALID_CODE for an
1017 // uninitialized value. Otherwise, for a local symbol
1018 // (this->is_section_symbol_ is false), the local symbol index. For
1019 // a local section symbol (this->is_section_symbol_ is true), the
1020 // section index in the input file.
1021 unsigned int local_sym_index_
;
1022 // The reloc type--a processor specific code.
1023 unsigned int type_
: 30;
1024 // True if the relocation is a RELATIVE relocation.
1025 bool is_relative_
: 1;
1026 // True if the relocation is against a section symbol.
1027 bool is_section_symbol_
: 1;
1028 // If the reloc address is an input section in an object, the
1029 // section index. This is INVALID_CODE if the reloc address is
1030 // specified in some other way.
1031 unsigned int shndx_
;
1034 // The SHT_RELA version of Output_reloc<>. This is just derived from
1035 // the SHT_REL version of Output_reloc, but it adds an addend.
1037 template<bool dynamic
, int size
, bool big_endian
>
1038 class Output_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
1041 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
1042 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Addend
;
1044 // An uninitialized entry.
1049 // A reloc against a global symbol.
1051 Output_reloc(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1052 Address address
, Addend addend
, bool is_relative
)
1053 : rel_(gsym
, type
, od
, address
, is_relative
), addend_(addend
)
1056 Output_reloc(Symbol
* gsym
, unsigned int type
, Relobj
* relobj
,
1057 unsigned int shndx
, Address address
, Addend addend
,
1059 : rel_(gsym
, type
, relobj
, shndx
, address
, is_relative
), addend_(addend
)
1062 // A reloc against a local symbol.
1064 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
1065 unsigned int local_sym_index
, unsigned int type
,
1066 Output_data
* od
, Address address
,
1067 Addend addend
, bool is_relative
, bool is_section_symbol
)
1068 : rel_(relobj
, local_sym_index
, type
, od
, address
, is_relative
,
1073 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
1074 unsigned int local_sym_index
, unsigned int type
,
1075 unsigned int shndx
, Address address
,
1076 Addend addend
, bool is_relative
, bool is_section_symbol
)
1077 : rel_(relobj
, local_sym_index
, type
, shndx
, address
, is_relative
,
1082 // A reloc against the STT_SECTION symbol of an output section.
1084 Output_reloc(Output_section
* os
, unsigned int type
, Output_data
* od
,
1085 Address address
, Addend addend
)
1086 : rel_(os
, type
, od
, address
), addend_(addend
)
1089 Output_reloc(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
1090 unsigned int shndx
, Address address
, Addend addend
)
1091 : rel_(os
, type
, relobj
, shndx
, address
), addend_(addend
)
1094 // Write the reloc entry to an output view.
1096 write(unsigned char* pov
) const;
1098 // Return whether this reloc should be sorted before the argument
1099 // when sorting dynamic relocs.
1101 sort_before(const Output_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>&
1104 int i
= this->rel_
.compare(r2
.rel_
);
1110 return this->addend_
< r2
.addend_
;
1115 Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
> rel_
;
1120 // Output_data_reloc is used to manage a section containing relocs.
1121 // SH_TYPE is either elfcpp::SHT_REL or elfcpp::SHT_RELA. DYNAMIC
1122 // indicates whether this is a dynamic relocation or a normal
1123 // relocation. Output_data_reloc_base is a base class.
1124 // Output_data_reloc is the real class, which we specialize based on
1127 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
1128 class Output_data_reloc_base
: public Output_section_data_build
1131 typedef Output_reloc
<sh_type
, dynamic
, size
, big_endian
> Output_reloc_type
;
1132 typedef typename
Output_reloc_type::Address Address
;
1133 static const int reloc_size
=
1134 Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
1136 // Construct the section.
1137 Output_data_reloc_base(bool sort_relocs
)
1138 : Output_section_data_build(Output_data::default_alignment_for_size(size
)),
1139 sort_relocs_(sort_relocs
)
1143 // Write out the data.
1145 do_write(Output_file
*);
1147 // Set the entry size and the link.
1149 do_adjust_output_section(Output_section
*os
);
1151 // Write to a map file.
1153 do_print_to_mapfile(Mapfile
* mapfile
) const
1155 mapfile
->print_output_data(this,
1157 ? _("** dynamic relocs")
1161 // Add a relocation entry.
1163 add(Output_data
*od
, const Output_reloc_type
& reloc
)
1165 this->relocs_
.push_back(reloc
);
1166 this->set_current_data_size(this->relocs_
.size() * reloc_size
);
1167 od
->add_dynamic_reloc();
1171 typedef std::vector
<Output_reloc_type
> Relocs
;
1173 // The class used to sort the relocations.
1174 struct Sort_relocs_comparison
1177 operator()(const Output_reloc_type
& r1
, const Output_reloc_type
& r2
) const
1178 { return r1
.sort_before(r2
); }
1181 // The relocations in this section.
1183 // Whether to sort the relocations when writing them out, to make
1184 // the dynamic linker more efficient.
1188 // The class which callers actually create.
1190 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
1191 class Output_data_reloc
;
1193 // The SHT_REL version of Output_data_reloc.
1195 template<bool dynamic
, int size
, bool big_endian
>
1196 class Output_data_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
1197 : public Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
1200 typedef Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
,
1204 typedef typename
Base::Output_reloc_type Output_reloc_type
;
1205 typedef typename
Output_reloc_type::Address Address
;
1207 Output_data_reloc(bool sr
)
1208 : Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>(sr
)
1211 // Add a reloc against a global symbol.
1214 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Address address
)
1215 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, false)); }
1218 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Relobj
* relobj
,
1219 unsigned int shndx
, Address address
)
1220 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1223 // These are to simplify the Copy_relocs class.
1226 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Address address
,
1229 gold_assert(addend
== 0);
1230 this->add_global(gsym
, type
, od
, address
);
1234 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Relobj
* relobj
,
1235 unsigned int shndx
, Address address
, Address addend
)
1237 gold_assert(addend
== 0);
1238 this->add_global(gsym
, type
, od
, relobj
, shndx
, address
);
1241 // Add a RELATIVE reloc against a global symbol. The final relocation
1242 // will not reference the symbol.
1245 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1247 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, true)); }
1250 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1251 Relobj
* relobj
, unsigned int shndx
, Address address
)
1253 this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1257 // Add a reloc against a local symbol.
1260 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1261 unsigned int local_sym_index
, unsigned int type
,
1262 Output_data
* od
, Address address
)
1264 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
,
1265 address
, false, false));
1269 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1270 unsigned int local_sym_index
, unsigned int type
,
1271 Output_data
* od
, unsigned int shndx
, Address address
)
1273 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1274 address
, false, false));
1277 // Add a RELATIVE reloc against a local symbol.
1280 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1281 unsigned int local_sym_index
, unsigned int type
,
1282 Output_data
* od
, Address address
)
1284 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
,
1285 address
, true, false));
1289 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1290 unsigned int local_sym_index
, unsigned int type
,
1291 Output_data
* od
, unsigned int shndx
, Address address
)
1293 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1294 address
, true, false));
1297 // Add a reloc against a local section symbol. This will be
1298 // converted into a reloc against the STT_SECTION symbol of the
1302 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1303 unsigned int input_shndx
, unsigned int type
,
1304 Output_data
* od
, Address address
)
1306 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, od
,
1307 address
, false, true));
1311 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1312 unsigned int input_shndx
, unsigned int type
,
1313 Output_data
* od
, unsigned int shndx
, Address address
)
1315 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, shndx
,
1316 address
, false, true));
1319 // A reloc against the STT_SECTION symbol of an output section.
1320 // OS is the Output_section that the relocation refers to; OD is
1321 // the Output_data object being relocated.
1324 add_output_section(Output_section
* os
, unsigned int type
,
1325 Output_data
* od
, Address address
)
1326 { this->add(od
, Output_reloc_type(os
, type
, od
, address
)); }
1329 add_output_section(Output_section
* os
, unsigned int type
, Output_data
* od
,
1330 Relobj
* relobj
, unsigned int shndx
, Address address
)
1331 { this->add(od
, Output_reloc_type(os
, type
, relobj
, shndx
, address
)); }
1334 // The SHT_RELA version of Output_data_reloc.
1336 template<bool dynamic
, int size
, bool big_endian
>
1337 class Output_data_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
1338 : public Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
1341 typedef Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
,
1345 typedef typename
Base::Output_reloc_type Output_reloc_type
;
1346 typedef typename
Output_reloc_type::Address Address
;
1347 typedef typename
Output_reloc_type::Addend Addend
;
1349 Output_data_reloc(bool sr
)
1350 : Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>(sr
)
1353 // Add a reloc against a global symbol.
1356 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1357 Address address
, Addend addend
)
1358 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, addend
,
1362 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Relobj
* relobj
,
1363 unsigned int shndx
, Address address
,
1365 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1368 // Add a RELATIVE reloc against a global symbol. The final output
1369 // relocation will not reference the symbol, but we must keep the symbol
1370 // information long enough to set the addend of the relocation correctly
1371 // when it is written.
1374 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1375 Address address
, Addend addend
)
1376 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, addend
, true)); }
1379 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1380 Relobj
* relobj
, unsigned int shndx
, Address address
,
1382 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1385 // Add a reloc against a local symbol.
1388 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1389 unsigned int local_sym_index
, unsigned int type
,
1390 Output_data
* od
, Address address
, Addend addend
)
1392 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
, address
,
1393 addend
, false, false));
1397 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1398 unsigned int local_sym_index
, unsigned int type
,
1399 Output_data
* od
, unsigned int shndx
, Address address
,
1402 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1403 address
, addend
, false, false));
1406 // Add a RELATIVE reloc against a local symbol.
1409 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1410 unsigned int local_sym_index
, unsigned int type
,
1411 Output_data
* od
, Address address
, Addend addend
)
1413 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
, address
,
1414 addend
, true, false));
1418 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1419 unsigned int local_sym_index
, unsigned int type
,
1420 Output_data
* od
, unsigned int shndx
, Address address
,
1423 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1424 address
, addend
, true, false));
1427 // Add a reloc against a local section symbol. This will be
1428 // converted into a reloc against the STT_SECTION symbol of the
1432 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1433 unsigned int input_shndx
, unsigned int type
,
1434 Output_data
* od
, Address address
, Addend addend
)
1436 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, od
, address
,
1437 addend
, false, true));
1441 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1442 unsigned int input_shndx
, unsigned int type
,
1443 Output_data
* od
, unsigned int shndx
, Address address
,
1446 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, shndx
,
1447 address
, addend
, false, true));
1450 // A reloc against the STT_SECTION symbol of an output section.
1453 add_output_section(Output_section
* os
, unsigned int type
, Output_data
* od
,
1454 Address address
, Addend addend
)
1455 { this->add(os
, Output_reloc_type(os
, type
, od
, address
, addend
)); }
1458 add_output_section(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
1459 unsigned int shndx
, Address address
, Addend addend
)
1460 { this->add(os
, Output_reloc_type(os
, type
, relobj
, shndx
, address
,
1464 // Output_relocatable_relocs represents a relocation section in a
1465 // relocatable link. The actual data is written out in the target
1466 // hook relocate_for_relocatable. This just saves space for it.
1468 template<int sh_type
, int size
, bool big_endian
>
1469 class Output_relocatable_relocs
: public Output_section_data
1472 Output_relocatable_relocs(Relocatable_relocs
* rr
)
1473 : Output_section_data(Output_data::default_alignment_for_size(size
)),
1478 set_final_data_size();
1480 // Write out the data. There is nothing to do here.
1482 do_write(Output_file
*)
1485 // Write to a map file.
1487 do_print_to_mapfile(Mapfile
* mapfile
) const
1488 { mapfile
->print_output_data(this, _("** relocs")); }
1491 // The relocs associated with this input section.
1492 Relocatable_relocs
* rr_
;
1495 // Handle a GROUP section.
1497 template<int size
, bool big_endian
>
1498 class Output_data_group
: public Output_section_data
1501 // The constructor clears *INPUT_SHNDXES.
1502 Output_data_group(Sized_relobj
<size
, big_endian
>* relobj
,
1503 section_size_type entry_count
,
1504 elfcpp::Elf_Word flags
,
1505 std::vector
<unsigned int>* input_shndxes
);
1508 do_write(Output_file
*);
1510 // Write to a map file.
1512 do_print_to_mapfile(Mapfile
* mapfile
) const
1513 { mapfile
->print_output_data(this, _("** group")); }
1516 // The input object.
1517 Sized_relobj
<size
, big_endian
>* relobj_
;
1518 // The group flag word.
1519 elfcpp::Elf_Word flags_
;
1520 // The section indexes of the input sections in this group.
1521 std::vector
<unsigned int> input_shndxes_
;
1524 // Output_data_got is used to manage a GOT. Each entry in the GOT is
1525 // for one symbol--either a global symbol or a local symbol in an
1526 // object. The target specific code adds entries to the GOT as
1529 template<int size
, bool big_endian
>
1530 class Output_data_got
: public Output_section_data_build
1533 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Valtype
;
1534 typedef Output_data_reloc
<elfcpp::SHT_REL
, true, size
, big_endian
> Rel_dyn
;
1535 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true, size
, big_endian
> Rela_dyn
;
1538 : Output_section_data_build(Output_data::default_alignment_for_size(size
)),
1542 // Add an entry for a global symbol to the GOT. Return true if this
1543 // is a new GOT entry, false if the symbol was already in the GOT.
1545 add_global(Symbol
* gsym
, unsigned int got_type
);
1547 // Add an entry for a global symbol to the GOT, and add a dynamic
1548 // relocation of type R_TYPE for the GOT entry.
1550 add_global_with_rel(Symbol
* gsym
, unsigned int got_type
,
1551 Rel_dyn
* rel_dyn
, unsigned int r_type
);
1554 add_global_with_rela(Symbol
* gsym
, unsigned int got_type
,
1555 Rela_dyn
* rela_dyn
, unsigned int r_type
);
1557 // Add a pair of entries for a global symbol to the GOT, and add
1558 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1560 add_global_pair_with_rel(Symbol
* gsym
, unsigned int got_type
,
1561 Rel_dyn
* rel_dyn
, unsigned int r_type_1
,
1562 unsigned int r_type_2
);
1565 add_global_pair_with_rela(Symbol
* gsym
, unsigned int got_type
,
1566 Rela_dyn
* rela_dyn
, unsigned int r_type_1
,
1567 unsigned int r_type_2
);
1569 // Add an entry for a local symbol to the GOT. This returns true if
1570 // this is a new GOT entry, false if the symbol already has a GOT
1573 add_local(Sized_relobj
<size
, big_endian
>* object
, unsigned int sym_index
,
1574 unsigned int got_type
);
1576 // Add an entry for a local symbol to the GOT, and add a dynamic
1577 // relocation of type R_TYPE for the GOT entry.
1579 add_local_with_rel(Sized_relobj
<size
, big_endian
>* object
,
1580 unsigned int sym_index
, unsigned int got_type
,
1581 Rel_dyn
* rel_dyn
, unsigned int r_type
);
1584 add_local_with_rela(Sized_relobj
<size
, big_endian
>* object
,
1585 unsigned int sym_index
, unsigned int got_type
,
1586 Rela_dyn
* rela_dyn
, unsigned int r_type
);
1588 // Add a pair of entries for a local symbol to the GOT, and add
1589 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1591 add_local_pair_with_rel(Sized_relobj
<size
, big_endian
>* object
,
1592 unsigned int sym_index
, unsigned int shndx
,
1593 unsigned int got_type
, Rel_dyn
* rel_dyn
,
1594 unsigned int r_type_1
, unsigned int r_type_2
);
1597 add_local_pair_with_rela(Sized_relobj
<size
, big_endian
>* object
,
1598 unsigned int sym_index
, unsigned int shndx
,
1599 unsigned int got_type
, Rela_dyn
* rela_dyn
,
1600 unsigned int r_type_1
, unsigned int r_type_2
);
1602 // Add a constant to the GOT. This returns the offset of the new
1603 // entry from the start of the GOT.
1605 add_constant(Valtype constant
)
1607 this->entries_
.push_back(Got_entry(constant
));
1608 this->set_got_size();
1609 return this->last_got_offset();
1613 // Write out the GOT table.
1615 do_write(Output_file
*);
1617 // Write to a map file.
1619 do_print_to_mapfile(Mapfile
* mapfile
) const
1620 { mapfile
->print_output_data(this, _("** GOT")); }
1623 // This POD class holds a single GOT entry.
1627 // Create a zero entry.
1629 : local_sym_index_(CONSTANT_CODE
)
1630 { this->u_
.constant
= 0; }
1632 // Create a global symbol entry.
1633 explicit Got_entry(Symbol
* gsym
)
1634 : local_sym_index_(GSYM_CODE
)
1635 { this->u_
.gsym
= gsym
; }
1637 // Create a local symbol entry.
1638 Got_entry(Sized_relobj
<size
, big_endian
>* object
,
1639 unsigned int local_sym_index
)
1640 : local_sym_index_(local_sym_index
)
1642 gold_assert(local_sym_index
!= GSYM_CODE
1643 && local_sym_index
!= CONSTANT_CODE
);
1644 this->u_
.object
= object
;
1647 // Create a constant entry. The constant is a host value--it will
1648 // be swapped, if necessary, when it is written out.
1649 explicit Got_entry(Valtype constant
)
1650 : local_sym_index_(CONSTANT_CODE
)
1651 { this->u_
.constant
= constant
; }
1653 // Write the GOT entry to an output view.
1655 write(unsigned char* pov
) const;
1666 // For a local symbol, the object.
1667 Sized_relobj
<size
, big_endian
>* object
;
1668 // For a global symbol, the symbol.
1670 // For a constant, the constant.
1673 // For a local symbol, the local symbol index. This is GSYM_CODE
1674 // for a global symbol, or CONSTANT_CODE for a constant.
1675 unsigned int local_sym_index_
;
1678 typedef std::vector
<Got_entry
> Got_entries
;
1680 // Return the offset into the GOT of GOT entry I.
1682 got_offset(unsigned int i
) const
1683 { return i
* (size
/ 8); }
1685 // Return the offset into the GOT of the last entry added.
1687 last_got_offset() const
1688 { return this->got_offset(this->entries_
.size() - 1); }
1690 // Set the size of the section.
1693 { this->set_current_data_size(this->got_offset(this->entries_
.size())); }
1695 // The list of GOT entries.
1696 Got_entries entries_
;
1699 // Output_data_dynamic is used to hold the data in SHT_DYNAMIC
1702 class Output_data_dynamic
: public Output_section_data
1705 Output_data_dynamic(Stringpool
* pool
)
1706 : Output_section_data(Output_data::default_alignment()),
1707 entries_(), pool_(pool
)
1710 // Add a new dynamic entry with a fixed numeric value.
1712 add_constant(elfcpp::DT tag
, unsigned int val
)
1713 { this->add_entry(Dynamic_entry(tag
, val
)); }
1715 // Add a new dynamic entry with the address of output data.
1717 add_section_address(elfcpp::DT tag
, const Output_data
* od
)
1718 { this->add_entry(Dynamic_entry(tag
, od
, false)); }
1720 // Add a new dynamic entry with the address of output data
1721 // plus a constant offset.
1723 add_section_plus_offset(elfcpp::DT tag
, const Output_data
* od
,
1724 unsigned int offset
)
1725 { this->add_entry(Dynamic_entry(tag
, od
, offset
)); }
1727 // Add a new dynamic entry with the size of output data.
1729 add_section_size(elfcpp::DT tag
, const Output_data
* od
)
1730 { this->add_entry(Dynamic_entry(tag
, od
, true)); }
1732 // Add a new dynamic entry with the address of a symbol.
1734 add_symbol(elfcpp::DT tag
, const Symbol
* sym
)
1735 { this->add_entry(Dynamic_entry(tag
, sym
)); }
1737 // Add a new dynamic entry with a string.
1739 add_string(elfcpp::DT tag
, const char* str
)
1740 { this->add_entry(Dynamic_entry(tag
, this->pool_
->add(str
, true, NULL
))); }
1743 add_string(elfcpp::DT tag
, const std::string
& str
)
1744 { this->add_string(tag
, str
.c_str()); }
1747 // Adjust the output section to set the entry size.
1749 do_adjust_output_section(Output_section
*);
1751 // Set the final data size.
1753 set_final_data_size();
1755 // Write out the dynamic entries.
1757 do_write(Output_file
*);
1759 // Write to a map file.
1761 do_print_to_mapfile(Mapfile
* mapfile
) const
1762 { mapfile
->print_output_data(this, _("** dynamic")); }
1765 // This POD class holds a single dynamic entry.
1769 // Create an entry with a fixed numeric value.
1770 Dynamic_entry(elfcpp::DT tag
, unsigned int val
)
1771 : tag_(tag
), offset_(DYNAMIC_NUMBER
)
1772 { this->u_
.val
= val
; }
1774 // Create an entry with the size or address of a section.
1775 Dynamic_entry(elfcpp::DT tag
, const Output_data
* od
, bool section_size
)
1777 offset_(section_size
1778 ? DYNAMIC_SECTION_SIZE
1779 : DYNAMIC_SECTION_ADDRESS
)
1780 { this->u_
.od
= od
; }
1782 // Create an entry with the address of a section plus a constant offset.
1783 Dynamic_entry(elfcpp::DT tag
, const Output_data
* od
, unsigned int offset
)
1786 { this->u_
.od
= od
; }
1788 // Create an entry with the address of a symbol.
1789 Dynamic_entry(elfcpp::DT tag
, const Symbol
* sym
)
1790 : tag_(tag
), offset_(DYNAMIC_SYMBOL
)
1791 { this->u_
.sym
= sym
; }
1793 // Create an entry with a string.
1794 Dynamic_entry(elfcpp::DT tag
, const char* str
)
1795 : tag_(tag
), offset_(DYNAMIC_STRING
)
1796 { this->u_
.str
= str
; }
1798 // Write the dynamic entry to an output view.
1799 template<int size
, bool big_endian
>
1801 write(unsigned char* pov
, const Stringpool
*) const;
1804 // Classification is encoded in the OFFSET field.
1808 DYNAMIC_SECTION_ADDRESS
= 0,
1810 DYNAMIC_NUMBER
= -1U,
1812 DYNAMIC_SECTION_SIZE
= -2U,
1814 DYNAMIC_SYMBOL
= -3U,
1816 DYNAMIC_STRING
= -4U
1817 // Any other value indicates a section address plus OFFSET.
1822 // For DYNAMIC_NUMBER.
1824 // For DYNAMIC_SECTION_SIZE and section address plus OFFSET.
1825 const Output_data
* od
;
1826 // For DYNAMIC_SYMBOL.
1828 // For DYNAMIC_STRING.
1833 // The type of entry (Classification) or offset within a section.
1834 unsigned int offset_
;
1837 // Add an entry to the list.
1839 add_entry(const Dynamic_entry
& entry
)
1840 { this->entries_
.push_back(entry
); }
1842 // Sized version of write function.
1843 template<int size
, bool big_endian
>
1845 sized_write(Output_file
* of
);
1847 // The type of the list of entries.
1848 typedef std::vector
<Dynamic_entry
> Dynamic_entries
;
1851 Dynamic_entries entries_
;
1852 // The pool used for strings.
1856 // Output_symtab_xindex is used to handle SHT_SYMTAB_SHNDX sections,
1857 // which may be required if the object file has more than
1858 // SHN_LORESERVE sections.
1860 class Output_symtab_xindex
: public Output_section_data
1863 Output_symtab_xindex(size_t symcount
)
1864 : Output_section_data(symcount
* 4, 4),
1868 // Add an entry: symbol number SYMNDX has section SHNDX.
1870 add(unsigned int symndx
, unsigned int shndx
)
1871 { this->entries_
.push_back(std::make_pair(symndx
, shndx
)); }
1875 do_write(Output_file
*);
1877 // Write to a map file.
1879 do_print_to_mapfile(Mapfile
* mapfile
) const
1880 { mapfile
->print_output_data(this, _("** symtab xindex")); }
1883 template<bool big_endian
>
1885 endian_do_write(unsigned char*);
1887 // It is likely that most symbols will not require entries. Rather
1888 // than keep a vector for all symbols, we keep pairs of symbol index
1889 // and section index.
1890 typedef std::vector
<std::pair
<unsigned int, unsigned int> > Xindex_entries
;
1892 // The entries we need.
1893 Xindex_entries entries_
;
1896 // An output section. We don't expect to have too many output
1897 // sections, so we don't bother to do a template on the size.
1899 class Output_section
: public Output_data
1902 // Create an output section, giving the name, type, and flags.
1903 Output_section(const char* name
, elfcpp::Elf_Word
, elfcpp::Elf_Xword
);
1904 virtual ~Output_section();
1906 // Add a new input section SHNDX, named NAME, with header SHDR, from
1907 // object OBJECT. RELOC_SHNDX is the index of a relocation section
1908 // which applies to this section, or 0 if none, or -1U if more than
1909 // one. HAVE_SECTIONS_SCRIPT is true if we have a SECTIONS clause
1910 // in a linker script; in that case we need to keep track of input
1911 // sections associated with an output section. Return the offset
1912 // within the output section.
1913 template<int size
, bool big_endian
>
1915 add_input_section(Sized_relobj
<size
, big_endian
>* object
, unsigned int shndx
,
1917 const elfcpp::Shdr
<size
, big_endian
>& shdr
,
1918 unsigned int reloc_shndx
, bool have_sections_script
);
1920 // Add generated data POSD to this output section.
1922 add_output_section_data(Output_section_data
* posd
);
1924 // Return the section name.
1927 { return this->name_
; }
1929 // Return the section type.
1932 { return this->type_
; }
1934 // Return the section flags.
1937 { return this->flags_
; }
1939 // Set the section flags. This may only be used with the Layout
1940 // code when it is prepared to move the section to a different
1943 set_flags(elfcpp::Elf_Xword flags
)
1944 { this->flags_
= flags
; }
1946 // Update the output section flags based on input section flags.
1948 update_flags_for_input_section(elfcpp::Elf_Xword flags
)
1950 this->flags_
|= (flags
1951 & (elfcpp::SHF_WRITE
1953 | elfcpp::SHF_EXECINSTR
));
1956 // Return the entsize field.
1959 { return this->entsize_
; }
1961 // Set the entsize field.
1963 set_entsize(uint64_t v
);
1965 // Set the load address.
1967 set_load_address(uint64_t load_address
)
1969 this->load_address_
= load_address
;
1970 this->has_load_address_
= true;
1973 // Set the link field to the output section index of a section.
1975 set_link_section(const Output_data
* od
)
1977 gold_assert(this->link_
== 0
1978 && !this->should_link_to_symtab_
1979 && !this->should_link_to_dynsym_
);
1980 this->link_section_
= od
;
1983 // Set the link field to a constant.
1985 set_link(unsigned int v
)
1987 gold_assert(this->link_section_
== NULL
1988 && !this->should_link_to_symtab_
1989 && !this->should_link_to_dynsym_
);
1993 // Record that this section should link to the normal symbol table.
1995 set_should_link_to_symtab()
1997 gold_assert(this->link_section_
== NULL
1999 && !this->should_link_to_dynsym_
);
2000 this->should_link_to_symtab_
= true;
2003 // Record that this section should link to the dynamic symbol table.
2005 set_should_link_to_dynsym()
2007 gold_assert(this->link_section_
== NULL
2009 && !this->should_link_to_symtab_
);
2010 this->should_link_to_dynsym_
= true;
2013 // Return the info field.
2017 gold_assert(this->info_section_
== NULL
2018 && this->info_symndx_
== NULL
);
2022 // Set the info field to the output section index of a section.
2024 set_info_section(const Output_section
* os
)
2026 gold_assert((this->info_section_
== NULL
2027 || (this->info_section_
== os
2028 && this->info_uses_section_index_
))
2029 && this->info_symndx_
== NULL
2030 && this->info_
== 0);
2031 this->info_section_
= os
;
2032 this->info_uses_section_index_
= true;
2035 // Set the info field to the symbol table index of a symbol.
2037 set_info_symndx(const Symbol
* sym
)
2039 gold_assert(this->info_section_
== NULL
2040 && (this->info_symndx_
== NULL
2041 || this->info_symndx_
== sym
)
2042 && this->info_
== 0);
2043 this->info_symndx_
= sym
;
2046 // Set the info field to the symbol table index of a section symbol.
2048 set_info_section_symndx(const Output_section
* os
)
2050 gold_assert((this->info_section_
== NULL
2051 || (this->info_section_
== os
2052 && !this->info_uses_section_index_
))
2053 && this->info_symndx_
== NULL
2054 && this->info_
== 0);
2055 this->info_section_
= os
;
2056 this->info_uses_section_index_
= false;
2059 // Set the info field to a constant.
2061 set_info(unsigned int v
)
2063 gold_assert(this->info_section_
== NULL
2064 && this->info_symndx_
== NULL
2065 && (this->info_
== 0
2066 || this->info_
== v
));
2070 // Set the addralign field.
2072 set_addralign(uint64_t v
)
2073 { this->addralign_
= v
; }
2075 // Whether the output section index has been set.
2077 has_out_shndx() const
2078 { return this->out_shndx_
!= -1U; }
2080 // Indicate that we need a symtab index.
2082 set_needs_symtab_index()
2083 { this->needs_symtab_index_
= true; }
2085 // Return whether we need a symtab index.
2087 needs_symtab_index() const
2088 { return this->needs_symtab_index_
; }
2090 // Get the symtab index.
2092 symtab_index() const
2094 gold_assert(this->symtab_index_
!= 0);
2095 return this->symtab_index_
;
2098 // Set the symtab index.
2100 set_symtab_index(unsigned int index
)
2102 gold_assert(index
!= 0);
2103 this->symtab_index_
= index
;
2106 // Indicate that we need a dynsym index.
2108 set_needs_dynsym_index()
2109 { this->needs_dynsym_index_
= true; }
2111 // Return whether we need a dynsym index.
2113 needs_dynsym_index() const
2114 { return this->needs_dynsym_index_
; }
2116 // Get the dynsym index.
2118 dynsym_index() const
2120 gold_assert(this->dynsym_index_
!= 0);
2121 return this->dynsym_index_
;
2124 // Set the dynsym index.
2126 set_dynsym_index(unsigned int index
)
2128 gold_assert(index
!= 0);
2129 this->dynsym_index_
= index
;
2132 // Return whether the input sections sections attachd to this output
2133 // section may require sorting. This is used to handle constructor
2134 // priorities compatibly with GNU ld.
2136 may_sort_attached_input_sections() const
2137 { return this->may_sort_attached_input_sections_
; }
2139 // Record that the input sections attached to this output section
2140 // may require sorting.
2142 set_may_sort_attached_input_sections()
2143 { this->may_sort_attached_input_sections_
= true; }
2145 // Return whether the input sections attached to this output section
2146 // require sorting. This is used to handle constructor priorities
2147 // compatibly with GNU ld.
2149 must_sort_attached_input_sections() const
2150 { return this->must_sort_attached_input_sections_
; }
2152 // Record that the input sections attached to this output section
2155 set_must_sort_attached_input_sections()
2156 { this->must_sort_attached_input_sections_
= true; }
2158 // Return whether this section holds relro data--data which has
2159 // dynamic relocations but which may be marked read-only after the
2160 // dynamic relocations have been completed.
2163 { return this->is_relro_
; }
2165 // Record that this section holds relro data.
2168 { this->is_relro_
= true; }
2170 // True if this section holds relro local data--relro data for which
2171 // the dynamic relocations are all RELATIVE relocations.
2173 is_relro_local() const
2174 { return this->is_relro_local_
; }
2176 // Record that this section holds relro local data.
2178 set_is_relro_local()
2179 { this->is_relro_local_
= true; }
2181 // Return whether this section should be written after all the input
2182 // sections are complete.
2184 after_input_sections() const
2185 { return this->after_input_sections_
; }
2187 // Record that this section should be written after all the input
2188 // sections are complete.
2190 set_after_input_sections()
2191 { this->after_input_sections_
= true; }
2193 // Return whether this section requires postprocessing after all
2194 // relocations have been applied.
2196 requires_postprocessing() const
2197 { return this->requires_postprocessing_
; }
2199 // If a section requires postprocessing, return the buffer to use.
2201 postprocessing_buffer() const
2203 gold_assert(this->postprocessing_buffer_
!= NULL
);
2204 return this->postprocessing_buffer_
;
2207 // If a section requires postprocessing, create the buffer to use.
2209 create_postprocessing_buffer();
2211 // If a section requires postprocessing, this is the size of the
2212 // buffer to which relocations should be applied.
2214 postprocessing_buffer_size() const
2215 { return this->current_data_size_for_child(); }
2217 // Modify the section name. This is only permitted for an
2218 // unallocated section, and only before the size has been finalized.
2219 // Otherwise the name will not get into Layout::namepool_.
2221 set_name(const char* newname
)
2223 gold_assert((this->flags_
& elfcpp::SHF_ALLOC
) == 0);
2224 gold_assert(!this->is_data_size_valid());
2225 this->name_
= newname
;
2228 // Return whether the offset OFFSET in the input section SHNDX in
2229 // object OBJECT is being included in the link.
2231 is_input_address_mapped(const Relobj
* object
, unsigned int shndx
,
2232 off_t offset
) const;
2234 // Return the offset within the output section of OFFSET relative to
2235 // the start of input section SHNDX in object OBJECT.
2237 output_offset(const Relobj
* object
, unsigned int shndx
,
2238 section_offset_type offset
) const;
2240 // Return the output virtual address of OFFSET relative to the start
2241 // of input section SHNDX in object OBJECT.
2243 output_address(const Relobj
* object
, unsigned int shndx
,
2244 off_t offset
) const;
2246 // Return the output address of the start of the merged section for
2247 // input section SHNDX in object OBJECT. This is not necessarily
2248 // the offset corresponding to input offset 0 in the section, since
2249 // the section may be mapped arbitrarily.
2251 starting_output_address(const Relobj
* object
, unsigned int shndx
) const;
2253 // Record that this output section was found in the SECTIONS clause
2254 // of a linker script.
2256 set_found_in_sections_clause()
2257 { this->found_in_sections_clause_
= true; }
2259 // Return whether this output section was found in the SECTIONS
2260 // clause of a linker script.
2262 found_in_sections_clause() const
2263 { return this->found_in_sections_clause_
; }
2265 // Write the section header into *OPHDR.
2266 template<int size
, bool big_endian
>
2268 write_header(const Layout
*, const Stringpool
*,
2269 elfcpp::Shdr_write
<size
, big_endian
>*) const;
2271 // The next few calls are for linker script support.
2273 // Store the list of input sections for this Output_section into the
2274 // list passed in. This removes the input sections, leaving only
2275 // any Output_section_data elements. This returns the size of those
2276 // Output_section_data elements. ADDRESS is the address of this
2277 // output section. FILL is the fill value to use, in case there are
2278 // any spaces between the remaining Output_section_data elements.
2280 get_input_sections(uint64_t address
, const std::string
& fill
,
2281 std::list
<std::pair
<Relobj
*, unsigned int > >*);
2283 // Add an input section from a script.
2285 add_input_section_for_script(Relobj
* object
, unsigned int shndx
,
2286 off_t data_size
, uint64_t addralign
);
2288 // Set the current size of the output section.
2290 set_current_data_size(off_t size
)
2291 { this->set_current_data_size_for_child(size
); }
2293 // Get the current size of the output section.
2295 current_data_size() const
2296 { return this->current_data_size_for_child(); }
2298 // End of linker script support.
2300 // Print merge statistics to stderr.
2302 print_merge_stats();
2305 // Return the output section--i.e., the object itself.
2310 // Return the section index in the output file.
2312 do_out_shndx() const
2314 gold_assert(this->out_shndx_
!= -1U);
2315 return this->out_shndx_
;
2318 // Set the output section index.
2320 do_set_out_shndx(unsigned int shndx
)
2322 gold_assert(this->out_shndx_
== -1U || this->out_shndx_
== shndx
);
2323 this->out_shndx_
= shndx
;
2326 // Set the final data size of the Output_section. For a typical
2327 // Output_section, there is nothing to do, but if there are any
2328 // Output_section_data objects we need to set their final addresses
2331 set_final_data_size();
2333 // Reset the address and file offset.
2335 do_reset_address_and_file_offset();
2337 // Write the data to the file. For a typical Output_section, this
2338 // does nothing: the data is written out by calling Object::Relocate
2339 // on each input object. But if there are any Output_section_data
2340 // objects we do need to write them out here.
2342 do_write(Output_file
*);
2344 // Return the address alignment--function required by parent class.
2346 do_addralign() const
2347 { return this->addralign_
; }
2349 // Return whether there is a load address.
2351 do_has_load_address() const
2352 { return this->has_load_address_
; }
2354 // Return the load address.
2356 do_load_address() const
2358 gold_assert(this->has_load_address_
);
2359 return this->load_address_
;
2362 // Return whether this is an Output_section.
2364 do_is_section() const
2367 // Return whether this is a section of the specified type.
2369 do_is_section_type(elfcpp::Elf_Word type
) const
2370 { return this->type_
== type
; }
2372 // Return whether the specified section flag is set.
2374 do_is_section_flag_set(elfcpp::Elf_Xword flag
) const
2375 { return (this->flags_
& flag
) != 0; }
2377 // Set the TLS offset. Called only for SHT_TLS sections.
2379 do_set_tls_offset(uint64_t tls_base
);
2381 // Return the TLS offset, relative to the base of the TLS segment.
2382 // Valid only for SHT_TLS sections.
2384 do_tls_offset() const
2385 { return this->tls_offset_
; }
2387 // This may be implemented by a child class.
2389 do_finalize_name(Layout
*)
2392 // Print to the map file.
2394 do_print_to_mapfile(Mapfile
*) const;
2396 // Record that this section requires postprocessing after all
2397 // relocations have been applied. This is called by a child class.
2399 set_requires_postprocessing()
2401 this->requires_postprocessing_
= true;
2402 this->after_input_sections_
= true;
2405 // Write all the data of an Output_section into the postprocessing
2408 write_to_postprocessing_buffer();
2411 // In some cases we need to keep a list of the input sections
2412 // associated with this output section. We only need the list if we
2413 // might have to change the offsets of the input section within the
2414 // output section after we add the input section. The ordinary
2415 // input sections will be written out when we process the object
2416 // file, and as such we don't need to track them here. We do need
2417 // to track Output_section_data objects here. We store instances of
2418 // this structure in a std::vector, so it must be a POD. There can
2419 // be many instances of this structure, so we use a union to save
2425 : shndx_(0), p2align_(0)
2427 this->u1_
.data_size
= 0;
2428 this->u2_
.object
= NULL
;
2431 // For an ordinary input section.
2432 Input_section(Relobj
* object
, unsigned int shndx
, off_t data_size
,
2435 p2align_(ffsll(static_cast<long long>(addralign
)))
2437 gold_assert(shndx
!= OUTPUT_SECTION_CODE
2438 && shndx
!= MERGE_DATA_SECTION_CODE
2439 && shndx
!= MERGE_STRING_SECTION_CODE
);
2440 this->u1_
.data_size
= data_size
;
2441 this->u2_
.object
= object
;
2444 // For a non-merge output section.
2445 Input_section(Output_section_data
* posd
)
2446 : shndx_(OUTPUT_SECTION_CODE
),
2447 p2align_(ffsll(static_cast<long long>(posd
->addralign())))
2449 this->u1_
.data_size
= 0;
2450 this->u2_
.posd
= posd
;
2453 // For a merge section.
2454 Input_section(Output_section_data
* posd
, bool is_string
, uint64_t entsize
)
2456 ? MERGE_STRING_SECTION_CODE
2457 : MERGE_DATA_SECTION_CODE
),
2458 p2align_(ffsll(static_cast<long long>(posd
->addralign())))
2460 this->u1_
.entsize
= entsize
;
2461 this->u2_
.posd
= posd
;
2464 // The required alignment.
2468 return (this->p2align_
== 0
2470 : static_cast<uint64_t>(1) << (this->p2align_
- 1));
2473 // Return the required size.
2477 // Whether this is an input section.
2479 is_input_section() const
2481 return (this->shndx_
!= OUTPUT_SECTION_CODE
2482 && this->shndx_
!= MERGE_DATA_SECTION_CODE
2483 && this->shndx_
!= MERGE_STRING_SECTION_CODE
);
2486 // Return whether this is a merge section which matches the
2489 is_merge_section(bool is_string
, uint64_t entsize
,
2490 uint64_t addralign
) const
2492 return (this->shndx_
== (is_string
2493 ? MERGE_STRING_SECTION_CODE
2494 : MERGE_DATA_SECTION_CODE
)
2495 && this->u1_
.entsize
== entsize
2496 && this->addralign() == addralign
);
2499 // Return the object for an input section.
2503 gold_assert(this->is_input_section());
2504 return this->u2_
.object
;
2507 // Return the input section index for an input section.
2511 gold_assert(this->is_input_section());
2512 return this->shndx_
;
2515 // Set the output section.
2517 set_output_section(Output_section
* os
)
2519 gold_assert(!this->is_input_section());
2520 this->u2_
.posd
->set_output_section(os
);
2523 // Set the address and file offset. This is called during
2524 // Layout::finalize. SECTION_FILE_OFFSET is the file offset of
2525 // the enclosing section.
2527 set_address_and_file_offset(uint64_t address
, off_t file_offset
,
2528 off_t section_file_offset
);
2530 // Reset the address and file offset.
2532 reset_address_and_file_offset();
2534 // Finalize the data size.
2536 finalize_data_size();
2538 // Add an input section, for SHF_MERGE sections.
2540 add_input_section(Relobj
* object
, unsigned int shndx
)
2542 gold_assert(this->shndx_
== MERGE_DATA_SECTION_CODE
2543 || this->shndx_
== MERGE_STRING_SECTION_CODE
);
2544 return this->u2_
.posd
->add_input_section(object
, shndx
);
2547 // Given an input OBJECT, an input section index SHNDX within that
2548 // object, and an OFFSET relative to the start of that input
2549 // section, return whether or not the output offset is known. If
2550 // this function returns true, it sets *POUTPUT to the offset in
2551 // the output section, relative to the start of the input section
2552 // in the output section. *POUTPUT may be different from OFFSET
2553 // for a merged section.
2555 output_offset(const Relobj
* object
, unsigned int shndx
,
2556 section_offset_type offset
,
2557 section_offset_type
*poutput
) const;
2559 // Return whether this is the merge section for the input section
2562 is_merge_section_for(const Relobj
* object
, unsigned int shndx
) const;
2564 // Write out the data. This does nothing for an input section.
2566 write(Output_file
*);
2568 // Write the data to a buffer. This does nothing for an input
2571 write_to_buffer(unsigned char*);
2573 // Print to a map file.
2575 print_to_mapfile(Mapfile
*) const;
2577 // Print statistics about merge sections to stderr.
2579 print_merge_stats(const char* section_name
)
2581 if (this->shndx_
== MERGE_DATA_SECTION_CODE
2582 || this->shndx_
== MERGE_STRING_SECTION_CODE
)
2583 this->u2_
.posd
->print_merge_stats(section_name
);
2587 // Code values which appear in shndx_. If the value is not one of
2588 // these codes, it is the input section index in the object file.
2591 // An Output_section_data.
2592 OUTPUT_SECTION_CODE
= -1U,
2593 // An Output_section_data for an SHF_MERGE section with
2594 // SHF_STRINGS not set.
2595 MERGE_DATA_SECTION_CODE
= -2U,
2596 // An Output_section_data for an SHF_MERGE section with
2598 MERGE_STRING_SECTION_CODE
= -3U
2601 // For an ordinary input section, this is the section index in the
2602 // input file. For an Output_section_data, this is
2603 // OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2604 // MERGE_STRING_SECTION_CODE.
2605 unsigned int shndx_
;
2606 // The required alignment, stored as a power of 2.
2607 unsigned int p2align_
;
2610 // For an ordinary input section, the section size.
2612 // For OUTPUT_SECTION_CODE, this is not used. For
2613 // MERGE_DATA_SECTION_CODE or MERGE_STRING_SECTION_CODE, the
2619 // For an ordinary input section, the object which holds the
2622 // For OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2623 // MERGE_STRING_SECTION_CODE, the data.
2624 Output_section_data
* posd
;
2628 typedef std::vector
<Input_section
> Input_section_list
;
2630 // This class is used to sort the input sections.
2631 class Input_section_sort_entry
;
2633 // This is the sort comparison function.
2634 struct Input_section_sort_compare
2637 operator()(const Input_section_sort_entry
&,
2638 const Input_section_sort_entry
&) const;
2641 // Fill data. This is used to fill in data between input sections.
2642 // It is also used for data statements (BYTE, WORD, etc.) in linker
2643 // scripts. When we have to keep track of the input sections, we
2644 // can use an Output_data_const, but we don't want to have to keep
2645 // track of input sections just to implement fills.
2649 Fill(off_t section_offset
, off_t length
)
2650 : section_offset_(section_offset
),
2651 length_(convert_to_section_size_type(length
))
2654 // Return section offset.
2656 section_offset() const
2657 { return this->section_offset_
; }
2659 // Return fill length.
2662 { return this->length_
; }
2665 // The offset within the output section.
2666 off_t section_offset_
;
2667 // The length of the space to fill.
2668 section_size_type length_
;
2671 typedef std::vector
<Fill
> Fill_list
;
2673 // Add a new output section by Input_section.
2675 add_output_section_data(Input_section
*);
2677 // Add an SHF_MERGE input section. Returns true if the section was
2680 add_merge_input_section(Relobj
* object
, unsigned int shndx
, uint64_t flags
,
2681 uint64_t entsize
, uint64_t addralign
);
2683 // Add an output SHF_MERGE section POSD to this output section.
2684 // IS_STRING indicates whether it is a SHF_STRINGS section, and
2685 // ENTSIZE is the entity size. This returns the entry added to
2688 add_output_merge_section(Output_section_data
* posd
, bool is_string
,
2691 // Sort the attached input sections.
2693 sort_attached_input_sections();
2695 // Most of these fields are only valid after layout.
2697 // The name of the section. This will point into a Stringpool.
2699 // The section address is in the parent class.
2700 // The section alignment.
2701 uint64_t addralign_
;
2702 // The section entry size.
2704 // The load address. This is only used when using a linker script
2705 // with a SECTIONS clause. The has_load_address_ field indicates
2706 // whether this field is valid.
2707 uint64_t load_address_
;
2708 // The file offset is in the parent class.
2709 // Set the section link field to the index of this section.
2710 const Output_data
* link_section_
;
2711 // If link_section_ is NULL, this is the link field.
2713 // Set the section info field to the index of this section.
2714 const Output_section
* info_section_
;
2715 // If info_section_ is NULL, set the info field to the symbol table
2716 // index of this symbol.
2717 const Symbol
* info_symndx_
;
2718 // If info_section_ and info_symndx_ are NULL, this is the section
2721 // The section type.
2722 const elfcpp::Elf_Word type_
;
2723 // The section flags.
2724 elfcpp::Elf_Xword flags_
;
2725 // The section index.
2726 unsigned int out_shndx_
;
2727 // If there is a STT_SECTION for this output section in the normal
2728 // symbol table, this is the symbol index. This starts out as zero.
2729 // It is initialized in Layout::finalize() to be the index, or -1U
2730 // if there isn't one.
2731 unsigned int symtab_index_
;
2732 // If there is a STT_SECTION for this output section in the dynamic
2733 // symbol table, this is the symbol index. This starts out as zero.
2734 // It is initialized in Layout::finalize() to be the index, or -1U
2735 // if there isn't one.
2736 unsigned int dynsym_index_
;
2737 // The input sections. This will be empty in cases where we don't
2738 // need to keep track of them.
2739 Input_section_list input_sections_
;
2740 // The offset of the first entry in input_sections_.
2741 off_t first_input_offset_
;
2742 // The fill data. This is separate from input_sections_ because we
2743 // often will need fill sections without needing to keep track of
2746 // If the section requires postprocessing, this buffer holds the
2747 // section contents during relocation.
2748 unsigned char* postprocessing_buffer_
;
2749 // Whether this output section needs a STT_SECTION symbol in the
2750 // normal symbol table. This will be true if there is a relocation
2752 bool needs_symtab_index_
: 1;
2753 // Whether this output section needs a STT_SECTION symbol in the
2754 // dynamic symbol table. This will be true if there is a dynamic
2755 // relocation which needs it.
2756 bool needs_dynsym_index_
: 1;
2757 // Whether the link field of this output section should point to the
2758 // normal symbol table.
2759 bool should_link_to_symtab_
: 1;
2760 // Whether the link field of this output section should point to the
2761 // dynamic symbol table.
2762 bool should_link_to_dynsym_
: 1;
2763 // Whether this section should be written after all the input
2764 // sections are complete.
2765 bool after_input_sections_
: 1;
2766 // Whether this section requires post processing after all
2767 // relocations have been applied.
2768 bool requires_postprocessing_
: 1;
2769 // Whether an input section was mapped to this output section
2770 // because of a SECTIONS clause in a linker script.
2771 bool found_in_sections_clause_
: 1;
2772 // Whether this section has an explicitly specified load address.
2773 bool has_load_address_
: 1;
2774 // True if the info_section_ field means the section index of the
2775 // section, false if it means the symbol index of the corresponding
2777 bool info_uses_section_index_
: 1;
2778 // True if the input sections attached to this output section may
2780 bool may_sort_attached_input_sections_
: 1;
2781 // True if the input sections attached to this output section must
2783 bool must_sort_attached_input_sections_
: 1;
2784 // True if the input sections attached to this output section have
2785 // already been sorted.
2786 bool attached_input_sections_are_sorted_
: 1;
2787 // True if this section holds relro data.
2789 // True if this section holds relro local data.
2790 bool is_relro_local_
: 1;
2791 // For SHT_TLS sections, the offset of this section relative to the base
2792 // of the TLS segment.
2793 uint64_t tls_offset_
;
2796 // An output segment. PT_LOAD segments are built from collections of
2797 // output sections. Other segments typically point within PT_LOAD
2798 // segments, and are built directly as needed.
2800 class Output_segment
2803 // Create an output segment, specifying the type and flags.
2804 Output_segment(elfcpp::Elf_Word
, elfcpp::Elf_Word
);
2806 // Return the virtual address.
2809 { return this->vaddr_
; }
2811 // Return the physical address.
2814 { return this->paddr_
; }
2816 // Return the segment type.
2819 { return this->type_
; }
2821 // Return the segment flags.
2824 { return this->flags_
; }
2826 // Return the memory size.
2829 { return this->memsz_
; }
2831 // Return the file size.
2834 { return this->filesz_
; }
2836 // Return the file offset.
2839 { return this->offset_
; }
2841 // Return the maximum alignment of the Output_data.
2843 maximum_alignment();
2845 // Add an Output_section to this segment.
2847 add_output_section(Output_section
* os
, elfcpp::Elf_Word seg_flags
);
2849 // Remove an Output_section from this segment. It is an error if it
2852 remove_output_section(Output_section
* os
);
2854 // Add an Output_data (which is not an Output_section) to the start
2857 add_initial_output_data(Output_data
*);
2859 // Return true if this segment has any sections which hold actual
2860 // data, rather than being a BSS section.
2862 has_any_data_sections() const
2863 { return !this->output_data_
.empty(); }
2865 // Return the number of dynamic relocations applied to this segment.
2867 dynamic_reloc_count() const;
2869 // Return the address of the first section.
2871 first_section_load_address() const;
2873 // Return whether the addresses have been set already.
2875 are_addresses_set() const
2876 { return this->are_addresses_set_
; }
2878 // Set the addresses.
2880 set_addresses(uint64_t vaddr
, uint64_t paddr
)
2882 this->vaddr_
= vaddr
;
2883 this->paddr_
= paddr
;
2884 this->are_addresses_set_
= true;
2887 // Set the segment flags. This is only used if we have a PHDRS
2888 // clause which explicitly specifies the flags.
2890 set_flags(elfcpp::Elf_Word flags
)
2891 { this->flags_
= flags
; }
2893 // Set the address of the segment to ADDR and the offset to *POFF
2894 // and set the addresses and offsets of all contained output
2895 // sections accordingly. Set the section indexes of all contained
2896 // output sections starting with *PSHNDX. If RESET is true, first
2897 // reset the addresses of the contained sections. Return the
2898 // address of the immediately following segment. Update *POFF and
2899 // *PSHNDX. This should only be called for a PT_LOAD segment.
2901 set_section_addresses(const Layout
*, bool reset
, uint64_t addr
, off_t
* poff
,
2902 unsigned int* pshndx
);
2904 // Set the minimum alignment of this segment. This may be adjusted
2905 // upward based on the section alignments.
2907 set_minimum_p_align(uint64_t align
)
2908 { this->min_p_align_
= align
; }
2910 // Set the offset of this segment based on the section. This should
2911 // only be called for a non-PT_LOAD segment.
2915 // Set the TLS offsets of the sections contained in the PT_TLS segment.
2919 // Return the number of output sections.
2921 output_section_count() const;
2923 // Return the section attached to the list segment with the lowest
2924 // load address. This is used when handling a PHDRS clause in a
2927 section_with_lowest_load_address() const;
2929 // Write the segment header into *OPHDR.
2930 template<int size
, bool big_endian
>
2932 write_header(elfcpp::Phdr_write
<size
, big_endian
>*);
2934 // Write the section headers of associated sections into V.
2935 template<int size
, bool big_endian
>
2937 write_section_headers(const Layout
*, const Stringpool
*, unsigned char* v
,
2938 unsigned int* pshndx
) const;
2940 // Print the output sections in the map file.
2942 print_sections_to_mapfile(Mapfile
*) const;
2945 Output_segment(const Output_segment
&);
2946 Output_segment
& operator=(const Output_segment
&);
2948 typedef std::list
<Output_data
*> Output_data_list
;
2950 // Find the maximum alignment in an Output_data_list.
2952 maximum_alignment_list(const Output_data_list
*);
2954 // Return whether the first data section is a relro section.
2956 is_first_section_relro() const;
2958 // Set the section addresses in an Output_data_list.
2960 set_section_list_addresses(const Layout
*, bool reset
, Output_data_list
*,
2961 uint64_t addr
, off_t
* poff
, unsigned int* pshndx
,
2962 bool* in_tls
, bool* in_relro
);
2964 // Return the number of Output_sections in an Output_data_list.
2966 output_section_count_list(const Output_data_list
*) const;
2968 // Return the number of dynamic relocs in an Output_data_list.
2970 dynamic_reloc_count_list(const Output_data_list
*) const;
2972 // Find the section with the lowest load address in an
2973 // Output_data_list.
2975 lowest_load_address_in_list(const Output_data_list
* pdl
,
2976 Output_section
** found
,
2977 uint64_t* found_lma
) const;
2979 // Write the section headers in the list into V.
2980 template<int size
, bool big_endian
>
2982 write_section_headers_list(const Layout
*, const Stringpool
*,
2983 const Output_data_list
*, unsigned char* v
,
2984 unsigned int* pshdx
) const;
2986 // Print a section list to the mapfile.
2988 print_section_list_to_mapfile(Mapfile
*, const Output_data_list
*) const;
2990 // The list of output data with contents attached to this segment.
2991 Output_data_list output_data_
;
2992 // The list of output data without contents attached to this segment.
2993 Output_data_list output_bss_
;
2994 // The segment virtual address.
2996 // The segment physical address.
2998 // The size of the segment in memory.
3000 // The maximum section alignment. The is_max_align_known_ field
3001 // indicates whether this has been finalized.
3002 uint64_t max_align_
;
3003 // The required minimum value for the p_align field. This is used
3004 // for PT_LOAD segments. Note that this does not mean that
3005 // addresses should be aligned to this value; it means the p_paddr
3006 // and p_vaddr fields must be congruent modulo this value. For
3007 // non-PT_LOAD segments, the dynamic linker works more efficiently
3008 // if the p_align field has the more conventional value, although it
3009 // can align as needed.
3010 uint64_t min_p_align_
;
3011 // The offset of the segment data within the file.
3013 // The size of the segment data in the file.
3015 // The segment type;
3016 elfcpp::Elf_Word type_
;
3017 // The segment flags.
3018 elfcpp::Elf_Word flags_
;
3019 // Whether we have finalized max_align_.
3020 bool is_max_align_known_
: 1;
3021 // Whether vaddr and paddr were set by a linker script.
3022 bool are_addresses_set_
: 1;
3025 // This class represents the output file.
3030 Output_file(const char* name
);
3032 // Indicate that this is a temporary file which should not be
3036 { this->is_temporary_
= true; }
3038 // Open the output file. FILE_SIZE is the final size of the file.
3040 open(off_t file_size
);
3042 // Resize the output file.
3044 resize(off_t file_size
);
3046 // Close the output file (flushing all buffered data) and make sure
3047 // there are no errors.
3051 // We currently always use mmap which makes the view handling quite
3052 // simple. In the future we may support other approaches.
3054 // Write data to the output file.
3056 write(off_t offset
, const void* data
, size_t len
)
3057 { memcpy(this->base_
+ offset
, data
, len
); }
3059 // Get a buffer to use to write to the file, given the offset into
3060 // the file and the size.
3062 get_output_view(off_t start
, size_t size
)
3064 gold_assert(start
>= 0
3065 && start
+ static_cast<off_t
>(size
) <= this->file_size_
);
3066 return this->base_
+ start
;
3069 // VIEW must have been returned by get_output_view. Write the
3070 // buffer to the file, passing in the offset and the size.
3072 write_output_view(off_t
, size_t, unsigned char*)
3075 // Get a read/write buffer. This is used when we want to write part
3076 // of the file, read it in, and write it again.
3078 get_input_output_view(off_t start
, size_t size
)
3079 { return this->get_output_view(start
, size
); }
3081 // Write a read/write buffer back to the file.
3083 write_input_output_view(off_t
, size_t, unsigned char*)
3086 // Get a read buffer. This is used when we just want to read part
3087 // of the file back it in.
3088 const unsigned char*
3089 get_input_view(off_t start
, size_t size
)
3090 { return this->get_output_view(start
, size
); }
3092 // Release a read bfufer.
3094 free_input_view(off_t
, size_t, const unsigned char*)
3098 // Map the file into memory and return a pointer to the map.
3102 // Unmap the file from memory (and flush to disk buffers).
3112 // Base of file mapped into memory.
3113 unsigned char* base_
;
3114 // True iff base_ points to a memory buffer rather than an output file.
3115 bool map_is_anonymous_
;
3116 // True if this is a temporary file which should not be output.
3120 } // End namespace gold.
3122 #endif // !defined(GOLD_OUTPUT_H)