1 // layout.h -- lay out output file sections for gold -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 3 of the License, or
11 // (at your option) any later version.
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
21 // MA 02110-1301, USA.
34 #include "workqueue.h"
37 #include "stringpool.h"
42 class General_options
;
43 class Incremental_inputs
;
47 class Output_section_data
;
49 class Output_section_headers
;
50 class Output_segment_headers
;
51 class Output_file_header
;
54 class Output_data_dynamic
;
55 class Output_symtab_xindex
;
56 class Output_reduced_debug_abbrev_section
;
57 class Output_reduced_debug_info_section
;
61 // This task function handles mapping the input sections to output
62 // sections and laying them out in memory.
64 class Layout_task_runner
: public Task_function_runner
67 // OPTIONS is the command line options, INPUT_OBJECTS is the list of
68 // input objects, SYMTAB is the symbol table, LAYOUT is the layout
70 Layout_task_runner(const General_options
& options
,
71 const Input_objects
* input_objects
,
76 : options_(options
), input_objects_(input_objects
), symtab_(symtab
),
77 target_(target
), layout_(layout
), mapfile_(mapfile
)
82 run(Workqueue
*, const Task
*);
85 Layout_task_runner(const Layout_task_runner
&);
86 Layout_task_runner
& operator=(const Layout_task_runner
&);
88 const General_options
& options_
;
89 const Input_objects
* input_objects_
;
90 Symbol_table
* symtab_
;
96 // This class holds information about the comdat group or
97 // .gnu.linkonce section that will be kept for a given signature.
102 // For a comdat group, we build a mapping from the name of each
103 // section in the group to the section index and the size in object.
104 // When we discard a group in some other object file, we use this
105 // map to figure out which kept section the discarded section is
106 // associated with. We then use that mapping when processing relocs
107 // against discarded sections.
108 struct Comdat_section_info
110 // The section index.
115 Comdat_section_info(unsigned int a_shndx
, uint64_t a_size
)
116 : shndx(a_shndx
), size(a_size
)
120 // Most comdat groups have only one or two sections, so we use a
121 // std::map rather than an Unordered_map to optimize for that case
122 // without paying too heavily for groups with more sections.
123 typedef std::map
<std::string
, Comdat_section_info
> Comdat_group
;
127 : object_(NULL
), shndx_(0), is_comdat_(false), is_group_name_(false)
128 { this->u_
.linkonce_size
= 0; }
130 // We need to support copies for the signature map in the Layout
131 // object, but we should never copy an object after it has been
132 // marked as a comdat section.
133 Kept_section(const Kept_section
& k
)
134 : object_(k
.object_
), shndx_(k
.shndx_
), is_comdat_(false),
135 is_group_name_(k
.is_group_name_
)
137 gold_assert(!k
.is_comdat_
);
138 this->u_
.linkonce_size
= 0;
143 if (this->is_comdat_
)
144 delete this->u_
.group_sections
;
147 // The object where this section lives.
150 { return this->object_
; }
154 set_object(Relobj
* object
)
156 gold_assert(this->object_
== NULL
);
157 this->object_
= object
;
160 // The section index.
163 { return this->shndx_
; }
165 // Set the section index.
167 set_shndx(unsigned int shndx
)
169 gold_assert(this->shndx_
== 0);
170 this->shndx_
= shndx
;
173 // Whether this is a comdat group.
176 { return this->is_comdat_
; }
178 // Set that this is a comdat group.
182 gold_assert(!this->is_comdat_
);
183 this->is_comdat_
= true;
184 this->u_
.group_sections
= new Comdat_group();
187 // Whether this is associated with the name of a group or section
188 // rather than the symbol name derived from a linkonce section.
190 is_group_name() const
191 { return this->is_group_name_
; }
193 // Note that this represents a comdat group rather than a single
197 { this->is_group_name_
= true; }
199 // Add a section to the group list.
201 add_comdat_section(const std::string
& name
, unsigned int shndx
,
204 gold_assert(this->is_comdat_
);
205 Comdat_section_info
sinfo(shndx
, size
);
206 this->u_
.group_sections
->insert(std::make_pair(name
, sinfo
));
209 // Look for a section name in the group list, and return whether it
210 // was found. If found, returns the section index and size.
212 find_comdat_section(const std::string
& name
, unsigned int *pshndx
,
213 uint64_t *psize
) const
215 gold_assert(this->is_comdat_
);
216 Comdat_group::const_iterator p
= this->u_
.group_sections
->find(name
);
217 if (p
== this->u_
.group_sections
->end())
219 *pshndx
= p
->second
.shndx
;
220 *psize
= p
->second
.size
;
224 // If there is only one section in the group list, return true, and
225 // return the section index and size.
227 find_single_comdat_section(unsigned int *pshndx
, uint64_t *psize
) const
229 gold_assert(this->is_comdat_
);
230 if (this->u_
.group_sections
->size() != 1)
232 Comdat_group::const_iterator p
= this->u_
.group_sections
->begin();
233 *pshndx
= p
->second
.shndx
;
234 *psize
= p
->second
.size
;
238 // Return the size of a linkonce section.
240 linkonce_size() const
242 gold_assert(!this->is_comdat_
);
243 return this->u_
.linkonce_size
;
246 // Set the size of a linkonce section.
248 set_linkonce_size(uint64_t size
)
250 gold_assert(!this->is_comdat_
);
251 this->u_
.linkonce_size
= size
;
256 Kept_section
& operator=(const Kept_section
&);
258 // The object containing the comdat group or .gnu.linkonce section.
260 // Index of the group section for comdats and the section itself for
263 // True if this is for a comdat group rather than a .gnu.linkonce
266 // The Kept_sections are values of a mapping, that maps names to
267 // them. This field is true if this struct is associated with the
268 // name of a comdat or .gnu.linkonce, false if it is associated with
269 // the name of a symbol obtained from the .gnu.linkonce.* name
270 // through some heuristics.
274 // If the is_comdat_ field is true, this holds a map from names of
275 // the sections in the group to section indexes in object_ and to
277 Comdat_group
* group_sections
;
278 // If the is_comdat_ field is false, this holds the size of the
280 uint64_t linkonce_size
;
284 // This class handles the details of laying out input sections.
289 Layout(int number_of_input_files
, Script_options
*);
293 delete this->relaxation_debug_check_
;
294 delete this->segment_states_
;
297 // Given an input section SHNDX, named NAME, with data in SHDR, from
298 // the object file OBJECT, return the output section where this
299 // input section should go. RELOC_SHNDX is the index of a
300 // relocation section which applies to this section, or 0 if none,
301 // or -1U if more than one. RELOC_TYPE is the type of the
302 // relocation section if there is one. Set *OFFSET to the offset
303 // within the output section.
304 template<int size
, bool big_endian
>
306 layout(Sized_relobj
<size
, big_endian
> *object
, unsigned int shndx
,
307 const char* name
, const elfcpp::Shdr
<size
, big_endian
>& shdr
,
308 unsigned int reloc_shndx
, unsigned int reloc_type
, off_t
* offset
);
310 // Layout an input reloc section when doing a relocatable link. The
311 // section is RELOC_SHNDX in OBJECT, with data in SHDR.
312 // DATA_SECTION is the reloc section to which it refers. RR is the
313 // relocatable information.
314 template<int size
, bool big_endian
>
316 layout_reloc(Sized_relobj
<size
, big_endian
>* object
,
317 unsigned int reloc_shndx
,
318 const elfcpp::Shdr
<size
, big_endian
>& shdr
,
319 Output_section
* data_section
,
320 Relocatable_relocs
* rr
);
322 // Layout a group section when doing a relocatable link.
323 template<int size
, bool big_endian
>
325 layout_group(Symbol_table
* symtab
,
326 Sized_relobj
<size
, big_endian
>* object
,
327 unsigned int group_shndx
,
328 const char* group_section_name
,
329 const char* signature
,
330 const elfcpp::Shdr
<size
, big_endian
>& shdr
,
331 elfcpp::Elf_Word flags
,
332 std::vector
<unsigned int>* shndxes
);
334 // Like layout, only for exception frame sections. OBJECT is an
335 // object file. SYMBOLS is the contents of the symbol table
336 // section, with size SYMBOLS_SIZE. SYMBOL_NAMES is the contents of
337 // the symbol name section, with size SYMBOL_NAMES_SIZE. SHNDX is a
338 // .eh_frame section in OBJECT. SHDR is the section header.
339 // RELOC_SHNDX is the index of a relocation section which applies to
340 // this section, or 0 if none, or -1U if more than one. RELOC_TYPE
341 // is the type of the relocation section if there is one. This
342 // returns the output section, and sets *OFFSET to the offset.
343 template<int size
, bool big_endian
>
345 layout_eh_frame(Sized_relobj
<size
, big_endian
>* object
,
346 const unsigned char* symbols
,
348 const unsigned char* symbol_names
,
349 off_t symbol_names_size
,
351 const elfcpp::Shdr
<size
, big_endian
>& shdr
,
352 unsigned int reloc_shndx
, unsigned int reloc_type
,
355 // Handle a GNU stack note. This is called once per input object
356 // file. SEEN_GNU_STACK is true if the object file has a
357 // .note.GNU-stack section. GNU_STACK_FLAGS is the section flags
358 // from that section if there was one.
360 layout_gnu_stack(bool seen_gnu_stack
, uint64_t gnu_stack_flags
);
362 // Add an Output_section_data to the layout. This is used for
363 // special sections like the GOT section.
365 add_output_section_data(const char* name
, elfcpp::Elf_Word type
,
366 elfcpp::Elf_Xword flags
,
367 Output_section_data
*);
369 // Create dynamic sections if necessary.
371 create_initial_dynamic_sections(Symbol_table
*);
373 // Define __start and __stop symbols for output sections.
375 define_section_symbols(Symbol_table
*);
377 // Create automatic note sections.
381 // Create sections for linker scripts.
383 create_script_sections()
384 { this->script_options_
->create_script_sections(this); }
386 // Define symbols from any linker script.
388 define_script_symbols(Symbol_table
* symtab
)
389 { this->script_options_
->add_symbols_to_table(symtab
); }
391 // Define symbols for group signatures.
393 define_group_signatures(Symbol_table
*);
395 // Return the Stringpool used for symbol names.
398 { return &this->sympool_
; }
400 // Return the Stringpool used for dynamic symbol names and dynamic
404 { return &this->dynpool_
; }
406 // Return the symtab_xindex section used to hold large section
407 // indexes for the normal symbol table.
408 Output_symtab_xindex
*
409 symtab_xindex() const
410 { return this->symtab_xindex_
; }
412 // Return the dynsym_xindex section used to hold large section
413 // indexes for the dynamic symbol table.
414 Output_symtab_xindex
*
415 dynsym_xindex() const
416 { return this->dynsym_xindex_
; }
418 // Return whether a section is a .gnu.linkonce section, given the
421 is_linkonce(const char* name
)
422 { return strncmp(name
, ".gnu.linkonce", sizeof(".gnu.linkonce") - 1) == 0; }
424 // Return true if a section is a debugging section.
426 is_debug_info_section(const char* name
)
428 // Debugging sections can only be recognized by name.
429 return (strncmp(name
, ".debug", sizeof(".debug") - 1) == 0
430 || strncmp(name
, ".gnu.linkonce.wi.",
431 sizeof(".gnu.linkonce.wi.") - 1) == 0
432 || strncmp(name
, ".line", sizeof(".line") - 1) == 0
433 || strncmp(name
, ".stab", sizeof(".stab") - 1) == 0);
436 // Check if a comdat group or .gnu.linkonce section with the given
437 // NAME is selected for the link. If there is already a section,
438 // *KEPT_SECTION is set to point to the signature and the function
439 // returns false. Otherwise, OBJECT, SHNDX,IS_COMDAT, and
440 // IS_GROUP_NAME are recorded for this NAME in the layout object,
441 // *KEPT_SECTION is set to the internal copy and the function return
444 find_or_add_kept_section(const std::string
& name
, Relobj
* object
,
445 unsigned int shndx
, bool is_comdat
,
446 bool is_group_name
, Kept_section
** kept_section
);
448 // Finalize the layout after all the input sections have been added.
450 finalize(const Input_objects
*, Symbol_table
*, Target
*, const Task
*);
452 // Return whether any sections require postprocessing.
454 any_postprocessing_sections() const
455 { return this->any_postprocessing_sections_
; }
457 // Return the size of the output file.
459 output_file_size() const
460 { return this->output_file_size_
; }
462 // Return the TLS segment. This will return NULL if there isn't
466 { return this->tls_segment_
; }
468 // Return the normal symbol table.
470 symtab_section() const
472 gold_assert(this->symtab_section_
!= NULL
);
473 return this->symtab_section_
;
476 // Return the dynamic symbol table.
478 dynsym_section() const
480 gold_assert(this->dynsym_section_
!= NULL
);
481 return this->dynsym_section_
;
484 // Return the dynamic tags.
487 { return this->dynamic_data_
; }
489 // Write out the output sections.
491 write_output_sections(Output_file
* of
) const;
493 // Write out data not associated with an input file or the symbol
496 write_data(const Symbol_table
*, Output_file
*) const;
498 // Write out output sections which can not be written until all the
499 // input sections are complete.
501 write_sections_after_input_sections(Output_file
* of
);
503 // Return an output section named NAME, or NULL if there is none.
505 find_output_section(const char* name
) const;
507 // Return an output segment of type TYPE, with segment flags SET set
508 // and segment flags CLEAR clear. Return NULL if there is none.
510 find_output_segment(elfcpp::PT type
, elfcpp::Elf_Word set
,
511 elfcpp::Elf_Word clear
) const;
513 // Return the number of segments we expect to produce.
515 expected_segment_count() const;
517 // Set a flag to indicate that an object file uses the static TLS model.
520 { this->has_static_tls_
= true; }
522 // Return true if any object file uses the static TLS model.
524 has_static_tls() const
525 { return this->has_static_tls_
; }
527 // Return the options which may be set by a linker script.
530 { return this->script_options_
; }
532 const Script_options
*
533 script_options() const
534 { return this->script_options_
; }
536 // Return the object managing inputs in incremental build. NULL in
537 // non-incremental builds.
540 { return this->incremental_inputs_
; }
542 // Compute and write out the build ID if needed.
544 write_build_id(Output_file
*) const;
546 // Rewrite output file in binary format.
548 write_binary(Output_file
* in
) const;
550 // Print output sections to the map file.
552 print_to_mapfile(Mapfile
*) const;
554 // Dump statistical information to stderr.
558 // A list of segments.
560 typedef std::vector
<Output_segment
*> Segment_list
;
562 // A list of sections.
564 typedef std::vector
<Output_section
*> Section_list
;
566 // The list of information to write out which is not attached to
567 // either a section or a segment.
568 typedef std::vector
<Output_data
*> Data_list
;
570 // Store the allocated sections into the section list. This is used
571 // by the linker script code.
573 get_allocated_sections(Section_list
*) const;
575 // Make a section for a linker script to hold data.
577 make_output_section_for_script(const char* name
);
579 // Make a segment. This is used by the linker script code.
581 make_output_segment(elfcpp::Elf_Word type
, elfcpp::Elf_Word flags
);
583 // Return the number of segments.
585 segment_count() const
586 { return this->segment_list_
.size(); }
588 // Map from section flags to segment flags.
589 static elfcpp::Elf_Word
590 section_flags_to_segment(elfcpp::Elf_Xword flags
);
592 // Attach sections to segments.
594 attach_sections_to_segments();
596 // For relaxation clean up, we need to know output section data created
597 // from a linker script.
599 new_output_section_data_from_script(Output_section_data
* posd
)
601 if (this->record_output_section_data_from_script_
)
602 this->script_output_section_data_list_
.push_back(posd
);
605 // Return section list.
608 { return this->section_list_
; }
611 Layout(const Layout
&);
612 Layout
& operator=(const Layout
&);
614 // Mapping from input section names to output section names.
615 struct Section_name_mapping
622 static const Section_name_mapping section_name_mapping
[];
623 static const int section_name_mapping_count
;
625 // During a relocatable link, a list of group sections and
627 struct Group_signature
629 // The group section.
630 Output_section
* section
;
632 const char* signature
;
635 : section(NULL
), signature(NULL
)
638 Group_signature(Output_section
* sectiona
, const char* signaturea
)
639 : section(sectiona
), signature(signaturea
)
642 typedef std::vector
<Group_signature
> Group_signatures
;
644 // Create a note section, filling in the header.
646 create_note(const char* name
, int note_type
, const char *section_name
,
647 size_t descsz
, bool allocate
, size_t* trailing_padding
);
649 // Create a note section for gold version.
653 // Record whether the stack must be executable.
655 create_executable_stack_info();
657 // Create a build ID note if needed.
661 // Link .stab and .stabstr sections.
663 link_stabs_sections();
665 // Create .gnu_incremental_inputs and .gnu_incremental_strtab sections needed
666 // for the next run of incremental linking to check what has changed.
668 create_incremental_info_sections();
670 // Find the first read-only PT_LOAD segment, creating one if
673 find_first_load_seg();
675 // Count the local symbols in the regular symbol table and the dynamic
676 // symbol table, and build the respective string pools.
678 count_local_symbols(const Task
*, const Input_objects
*);
680 // Create the output sections for the symbol table.
682 create_symtab_sections(const Input_objects
*, Symbol_table
*,
683 unsigned int, off_t
*);
685 // Create the .shstrtab section.
689 // Create the section header table.
691 create_shdrs(const Output_section
* shstrtab_section
, off_t
*);
693 // Create the dynamic symbol table.
695 create_dynamic_symtab(const Input_objects
*, Symbol_table
*,
696 Output_section
** pdynstr
,
697 unsigned int* plocal_dynamic_count
,
698 std::vector
<Symbol
*>* pdynamic_symbols
,
701 // Assign offsets to each local portion of the dynamic symbol table.
703 assign_local_dynsym_offsets(const Input_objects
*);
705 // Finish the .dynamic section and PT_DYNAMIC segment.
707 finish_dynamic_section(const Input_objects
*, const Symbol_table
*);
709 // Create the .interp section and PT_INTERP segment.
711 create_interp(const Target
* target
);
713 // Create the version sections.
715 create_version_sections(const Versions
*,
717 unsigned int local_symcount
,
718 const std::vector
<Symbol
*>& dynamic_symbols
,
719 const Output_section
* dynstr
);
721 template<int size
, bool big_endian
>
723 sized_create_version_sections(const Versions
* versions
,
725 unsigned int local_symcount
,
726 const std::vector
<Symbol
*>& dynamic_symbols
,
727 const Output_section
* dynstr
);
729 // Return whether to include this section in the link.
730 template<int size
, bool big_endian
>
732 include_section(Sized_relobj
<size
, big_endian
>* object
, const char* name
,
733 const elfcpp::Shdr
<size
, big_endian
>&);
735 // Return the output section name to use given an input section
736 // name. Set *PLEN to the length of the name. *PLEN must be
737 // initialized to the length of NAME.
739 output_section_name(const char* name
, size_t* plen
);
741 // Return the number of allocated output sections.
743 allocated_output_section_count() const;
745 // Return the output section for NAME, TYPE and FLAGS.
747 get_output_section(const char* name
, Stringpool::Key name_key
,
748 elfcpp::Elf_Word type
, elfcpp::Elf_Xword flags
);
750 // Choose the output section for NAME in RELOBJ.
752 choose_output_section(const Relobj
* relobj
, const char* name
,
753 elfcpp::Elf_Word type
, elfcpp::Elf_Xword flags
,
754 bool is_input_section
);
756 // Create a new Output_section.
758 make_output_section(const char* name
, elfcpp::Elf_Word type
,
759 elfcpp::Elf_Xword flags
);
761 // Attach a section to a segment.
763 attach_section_to_segment(Output_section
*);
765 // Attach an allocated section to a segment.
767 attach_allocated_section_to_segment(Output_section
*);
769 // Set the final file offsets of all the segments.
771 set_segment_offsets(const Target
*, Output_segment
*, unsigned int* pshndx
);
773 // Set the file offsets of the sections when doing a relocatable
776 set_relocatable_section_offsets(Output_data
*, unsigned int* pshndx
);
778 // Set the final file offsets of all the sections not associated
779 // with a segment. We set section offsets in three passes: the
780 // first handles all allocated sections, the second sections that
781 // require postprocessing, and the last the late-bound STRTAB
782 // sections (probably only shstrtab, which is the one we care about
783 // because it holds section names).
784 enum Section_offset_pass
786 BEFORE_INPUT_SECTIONS_PASS
,
787 POSTPROCESSING_SECTIONS_PASS
,
788 STRTAB_AFTER_POSTPROCESSING_SECTIONS_PASS
791 set_section_offsets(off_t
, Section_offset_pass pass
);
793 // Set the final section indexes of all the sections not associated
794 // with a segment. Returns the next unused index.
796 set_section_indexes(unsigned int pshndx
);
798 // Set the section addresses when using a script.
800 set_section_addresses_from_script(Symbol_table
*);
802 // Find appropriate places or orphan sections in a script.
804 place_orphan_sections_in_script();
806 // Return whether SEG1 comes before SEG2 in the output file.
808 segment_precedes(const Output_segment
* seg1
, const Output_segment
* seg2
);
810 // Use to save and restore segments during relaxation.
811 typedef Unordered_map
<const Output_segment
*, const Output_segment
*>
814 // Save states of current output segments.
816 save_segments(Segment_states
*);
818 // Restore output segment states.
820 restore_segments(const Segment_states
*);
822 // Clean up after relaxation so that it is possible to lay out the
823 // sections and segments again.
825 clean_up_after_relaxation();
827 // Doing preparation work for relaxation. This is factored out to make
828 // Layout::finalized a bit smaller and easier to read.
830 prepare_for_relaxation();
832 // Main body of the relaxation loop, which lays out the section.
834 relaxation_loop_body(int, Target
*, Symbol_table
*, Output_segment
**,
835 Output_segment
*, Output_segment_headers
*,
836 Output_file_header
*, unsigned int*);
838 // A mapping used for kept comdats/.gnu.linkonce group signatures.
839 typedef Unordered_map
<std::string
, Kept_section
> Signatures
;
841 // Mapping from input section name/type/flags to output section. We
842 // use canonicalized strings here.
844 typedef std::pair
<Stringpool::Key
,
845 std::pair
<elfcpp::Elf_Word
, elfcpp::Elf_Xword
> > Key
;
850 operator()(const Key
& k
) const;
853 typedef Unordered_map
<Key
, Output_section
*, Hash_key
> Section_name_map
;
855 // A comparison class for segments.
857 struct Compare_segments
860 operator()(const Output_segment
* seg1
, const Output_segment
* seg2
)
861 { return Layout::segment_precedes(seg1
, seg2
); }
864 typedef std::vector
<Output_section_data
*> Output_section_data_list
;
866 // Debug checker class.
867 class Relaxation_debug_check
870 Relaxation_debug_check()
874 // Check that sections and special data are in reset states.
876 check_output_data_for_reset_values(const Layout::Section_list
&,
877 const Layout::Data_list
&);
879 // Record information of a section list.
881 read_sections(const Layout::Section_list
&);
883 // Verify a section list with recorded information.
885 verify_sections(const Layout::Section_list
&);
888 // Information we care about a section.
891 // Output section described by this.
892 Output_section
* output_section
;
901 // Section information.
902 std::vector
<Section_info
> section_infos_
;
905 // The number of input files, for sizing tables.
906 int number_of_input_files_
;
907 // Information set by scripts or by command line options.
908 Script_options
* script_options_
;
909 // The output section names.
910 Stringpool namepool_
;
911 // The output symbol names.
913 // The dynamic strings, if needed.
915 // The list of group sections and linkonce sections which we have seen.
916 Signatures signatures_
;
917 // The mapping from input section name/type/flags to output sections.
918 Section_name_map section_name_map_
;
919 // The list of output segments.
920 Segment_list segment_list_
;
921 // The list of output sections.
922 Section_list section_list_
;
923 // The list of output sections which are not attached to any output
925 Section_list unattached_section_list_
;
926 // The list of unattached Output_data objects which require special
927 // handling because they are not Output_sections.
928 Data_list special_output_list_
;
929 // The section headers.
930 Output_section_headers
* section_headers_
;
931 // A pointer to the PT_TLS segment if there is one.
932 Output_segment
* tls_segment_
;
933 // A pointer to the PT_GNU_RELRO segment if there is one.
934 Output_segment
* relro_segment_
;
935 // The SHT_SYMTAB output section.
936 Output_section
* symtab_section_
;
937 // The SHT_SYMTAB_SHNDX for the regular symbol table if there is one.
938 Output_symtab_xindex
* symtab_xindex_
;
939 // The SHT_DYNSYM output section if there is one.
940 Output_section
* dynsym_section_
;
941 // The SHT_SYMTAB_SHNDX for the dynamic symbol table if there is one.
942 Output_symtab_xindex
* dynsym_xindex_
;
943 // The SHT_DYNAMIC output section if there is one.
944 Output_section
* dynamic_section_
;
945 // The dynamic data which goes into dynamic_section_.
946 Output_data_dynamic
* dynamic_data_
;
947 // The exception frame output section if there is one.
948 Output_section
* eh_frame_section_
;
949 // The exception frame data for eh_frame_section_.
950 Eh_frame
* eh_frame_data_
;
951 // Whether we have added eh_frame_data_ to the .eh_frame section.
952 bool added_eh_frame_data_
;
953 // The exception frame header output section if there is one.
954 Output_section
* eh_frame_hdr_section_
;
955 // The space for the build ID checksum if there is one.
956 Output_section_data
* build_id_note_
;
957 // The output section containing dwarf abbreviations
958 Output_reduced_debug_abbrev_section
* debug_abbrev_
;
959 // The output section containing the dwarf debug info tree
960 Output_reduced_debug_info_section
* debug_info_
;
961 // A list of group sections and their signatures.
962 Group_signatures group_signatures_
;
963 // The size of the output file.
964 off_t output_file_size_
;
965 // Whether we have attached the sections to the segments.
966 bool sections_are_attached_
;
967 // Whether we have seen an object file marked to require an
969 bool input_requires_executable_stack_
;
970 // Whether we have seen at least one object file with an executable
972 bool input_with_gnu_stack_note_
;
973 // Whether we have seen at least one object file without an
974 // executable stack marker.
975 bool input_without_gnu_stack_note_
;
976 // Whether we have seen an object file that uses the static TLS model.
977 bool has_static_tls_
;
978 // Whether any sections require postprocessing.
979 bool any_postprocessing_sections_
;
980 // Whether we have resized the signatures_ hash table.
981 bool resized_signatures_
;
982 // Whether we have created a .stab*str output section.
983 bool have_stabstr_section_
;
984 // In incremental build, holds information check the inputs and build the
985 // .gnu_incremental_inputs section.
986 Incremental_inputs
* incremental_inputs_
;
987 // Whether we record output section data created in script
988 bool record_output_section_data_from_script_
;
989 // List of output data that needs to be removed at relexation clean up.
990 Output_section_data_list script_output_section_data_list_
;
991 // Structure to save segment states before entering the relaxation loop.
992 Segment_states
* segment_states_
;
993 // A relaxation debug checker. We only create one when in debugging mode.
994 Relaxation_debug_check
* relaxation_debug_check_
;
997 // This task handles writing out data in output sections which is not
998 // part of an input section, or which requires special handling. When
999 // this is done, it unblocks both output_sections_blocker and
1002 class Write_sections_task
: public Task
1005 Write_sections_task(const Layout
* layout
, Output_file
* of
,
1006 Task_token
* output_sections_blocker
,
1007 Task_token
* final_blocker
)
1008 : layout_(layout
), of_(of
),
1009 output_sections_blocker_(output_sections_blocker
),
1010 final_blocker_(final_blocker
)
1013 // The standard Task methods.
1019 locks(Task_locker
*);
1026 { return "Write_sections_task"; }
1029 class Write_sections_locker
;
1031 const Layout
* layout_
;
1033 Task_token
* output_sections_blocker_
;
1034 Task_token
* final_blocker_
;
1037 // This task handles writing out data which is not part of a section
1040 class Write_data_task
: public Task
1043 Write_data_task(const Layout
* layout
, const Symbol_table
* symtab
,
1044 Output_file
* of
, Task_token
* final_blocker
)
1045 : layout_(layout
), symtab_(symtab
), of_(of
), final_blocker_(final_blocker
)
1048 // The standard Task methods.
1054 locks(Task_locker
*);
1061 { return "Write_data_task"; }
1064 const Layout
* layout_
;
1065 const Symbol_table
* symtab_
;
1067 Task_token
* final_blocker_
;
1070 // This task handles writing out the global symbols.
1072 class Write_symbols_task
: public Task
1075 Write_symbols_task(const Layout
* layout
, const Symbol_table
* symtab
,
1076 const Input_objects
* input_objects
,
1077 const Stringpool
* sympool
, const Stringpool
* dynpool
,
1078 Output_file
* of
, Task_token
* final_blocker
)
1079 : layout_(layout
), symtab_(symtab
), input_objects_(input_objects
),
1080 sympool_(sympool
), dynpool_(dynpool
), of_(of
),
1081 final_blocker_(final_blocker
)
1084 // The standard Task methods.
1090 locks(Task_locker
*);
1097 { return "Write_symbols_task"; }
1100 const Layout
* layout_
;
1101 const Symbol_table
* symtab_
;
1102 const Input_objects
* input_objects_
;
1103 const Stringpool
* sympool_
;
1104 const Stringpool
* dynpool_
;
1106 Task_token
* final_blocker_
;
1109 // This task handles writing out data in output sections which can't
1110 // be written out until all the input sections have been handled.
1111 // This is for sections whose contents is based on the contents of
1112 // other output sections.
1114 class Write_after_input_sections_task
: public Task
1117 Write_after_input_sections_task(Layout
* layout
, Output_file
* of
,
1118 Task_token
* input_sections_blocker
,
1119 Task_token
* final_blocker
)
1120 : layout_(layout
), of_(of
),
1121 input_sections_blocker_(input_sections_blocker
),
1122 final_blocker_(final_blocker
)
1125 // The standard Task methods.
1131 locks(Task_locker
*);
1138 { return "Write_after_input_sections_task"; }
1143 Task_token
* input_sections_blocker_
;
1144 Task_token
* final_blocker_
;
1147 // This task function handles closing the file.
1149 class Close_task_runner
: public Task_function_runner
1152 Close_task_runner(const General_options
* options
, const Layout
* layout
,
1154 : options_(options
), layout_(layout
), of_(of
)
1157 // Run the operation.
1159 run(Workqueue
*, const Task
*);
1162 const General_options
* options_
;
1163 const Layout
* layout_
;
1167 // A small helper function to align an address.
1170 align_address(uint64_t address
, uint64_t addralign
)
1173 address
= (address
+ addralign
- 1) &~ (addralign
- 1);
1177 } // End namespace gold.
1179 #endif // !defined(GOLD_LAYOUT_H)