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.
31 #include "reloc-types.h"
36 class General_options
;
41 class Relocatable_relocs
;
43 template<int size
, bool big_endian
>
45 template<int size
, bool big_endian
>
48 // An abtract class for data which has to go into the output file.
53 explicit Output_data()
54 : address_(0), data_size_(0), offset_(-1),
55 is_address_valid_(false), is_data_size_valid_(false),
56 is_offset_valid_(false),
57 dynamic_reloc_count_(0)
63 // Return the address. For allocated sections, this is only valid
64 // after Layout::finalize is finished.
68 gold_assert(this->is_address_valid_
);
69 return this->address_
;
72 // Return the size of the data. For allocated sections, this must
73 // be valid after Layout::finalize calls set_address, but need not
74 // be valid before then.
78 gold_assert(this->is_data_size_valid_
);
79 return this->data_size_
;
82 // Return the file offset. This is only valid after
83 // Layout::finalize is finished. For some non-allocated sections,
84 // it may not be valid until near the end of the link.
88 gold_assert(this->is_offset_valid_
);
92 // Reset the address and file offset. This essentially disables the
93 // sanity testing about duplicate and unknown settings.
95 reset_address_and_file_offset()
97 this->is_address_valid_
= false;
98 this->is_offset_valid_
= false;
99 this->is_data_size_valid_
= false;
100 this->do_reset_address_and_file_offset();
103 // Return the required alignment.
106 { return this->do_addralign(); }
108 // Return whether this has a load address.
110 has_load_address() const
111 { return this->do_has_load_address(); }
113 // Return the load address.
116 { return this->do_load_address(); }
118 // Return whether this is an Output_section.
121 { return this->do_is_section(); }
123 // Return whether this is an Output_section of the specified type.
125 is_section_type(elfcpp::Elf_Word stt
) const
126 { return this->do_is_section_type(stt
); }
128 // Return whether this is an Output_section with the specified flag
131 is_section_flag_set(elfcpp::Elf_Xword shf
) const
132 { return this->do_is_section_flag_set(shf
); }
134 // Return the output section that this goes in, if there is one.
137 { return this->do_output_section(); }
139 // Return the output section index, if there is an output section.
142 { return this->do_out_shndx(); }
144 // Set the output section index, if this is an output section.
146 set_out_shndx(unsigned int shndx
)
147 { this->do_set_out_shndx(shndx
); }
149 // Set the address and file offset of this data, and finalize the
150 // size of the data. This is called during Layout::finalize for
151 // allocated sections.
153 set_address_and_file_offset(uint64_t addr
, off_t off
)
155 this->set_address(addr
);
156 this->set_file_offset(off
);
157 this->finalize_data_size();
162 set_address(uint64_t addr
)
164 gold_assert(!this->is_address_valid_
);
165 this->address_
= addr
;
166 this->is_address_valid_
= true;
169 // Set the file offset.
171 set_file_offset(off_t off
)
173 gold_assert(!this->is_offset_valid_
);
175 this->is_offset_valid_
= true;
178 // Finalize the data size.
182 if (!this->is_data_size_valid_
)
184 // Tell the child class to set the data size.
185 this->set_final_data_size();
186 gold_assert(this->is_data_size_valid_
);
190 // Set the TLS offset. Called only for SHT_TLS sections.
192 set_tls_offset(uint64_t tls_base
)
193 { this->do_set_tls_offset(tls_base
); }
195 // Return the TLS offset, relative to the base of the TLS segment.
196 // Valid only for SHT_TLS sections.
199 { return this->do_tls_offset(); }
201 // Write the data to the output file. This is called after
202 // Layout::finalize is complete.
204 write(Output_file
* file
)
205 { this->do_write(file
); }
207 // This is called by Layout::finalize to note that the sizes of
208 // allocated sections must now be fixed.
211 { Output_data::allocated_sizes_are_fixed
= true; }
213 // Used to check that layout has been done.
216 { return Output_data::allocated_sizes_are_fixed
; }
218 // Count the number of dynamic relocations applied to this section.
221 { ++this->dynamic_reloc_count_
; }
223 // Return the number of dynamic relocations applied to this section.
225 dynamic_reloc_count() const
226 { return this->dynamic_reloc_count_
; }
228 // Whether the address is valid.
230 is_address_valid() const
231 { return this->is_address_valid_
; }
233 // Whether the file offset is valid.
235 is_offset_valid() const
236 { return this->is_offset_valid_
; }
238 // Whether the data size is valid.
240 is_data_size_valid() const
241 { return this->is_data_size_valid_
; }
244 // Functions that child classes may or in some cases must implement.
246 // Write the data to the output file.
248 do_write(Output_file
*) = 0;
250 // Return the required alignment.
252 do_addralign() const = 0;
254 // Return whether this has a load address.
256 do_has_load_address() const
259 // Return the load address.
261 do_load_address() const
262 { gold_unreachable(); }
264 // Return whether this is an Output_section.
266 do_is_section() const
269 // Return whether this is an Output_section of the specified type.
270 // This only needs to be implement by Output_section.
272 do_is_section_type(elfcpp::Elf_Word
) const
275 // Return whether this is an Output_section with the specific flag
276 // set. This only needs to be implemented by Output_section.
278 do_is_section_flag_set(elfcpp::Elf_Xword
) const
281 // Return the output section, if there is one.
282 virtual Output_section
*
286 // Return the output section index, if there is an output section.
289 { gold_unreachable(); }
291 // Set the output section index, if this is an output section.
293 do_set_out_shndx(unsigned int)
294 { gold_unreachable(); }
296 // This is a hook for derived classes to set the data size. This is
297 // called by finalize_data_size, normally called during
298 // Layout::finalize, when the section address is set.
300 set_final_data_size()
301 { gold_unreachable(); }
303 // A hook for resetting the address and file offset.
305 do_reset_address_and_file_offset()
308 // Set the TLS offset. Called only for SHT_TLS sections.
310 do_set_tls_offset(uint64_t)
311 { gold_unreachable(); }
313 // Return the TLS offset, relative to the base of the TLS segment.
314 // Valid only for SHT_TLS sections.
316 do_tls_offset() const
317 { gold_unreachable(); }
319 // Functions that child classes may call.
321 // Set the size of the data.
323 set_data_size(off_t data_size
)
325 gold_assert(!this->is_data_size_valid_
);
326 this->data_size_
= data_size
;
327 this->is_data_size_valid_
= true;
330 // Get the current data size--this is for the convenience of
331 // sections which build up their size over time.
333 current_data_size_for_child() const
334 { return this->data_size_
; }
336 // Set the current data size--this is for the convenience of
337 // sections which build up their size over time.
339 set_current_data_size_for_child(off_t data_size
)
341 gold_assert(!this->is_data_size_valid_
);
342 this->data_size_
= data_size
;
345 // Return default alignment for the target size.
349 // Return default alignment for a specified size--32 or 64.
351 default_alignment_for_size(int size
);
354 Output_data(const Output_data
&);
355 Output_data
& operator=(const Output_data
&);
357 // This is used for verification, to make sure that we don't try to
358 // change any sizes of allocated sections after we set the section
360 static bool allocated_sizes_are_fixed
;
362 // Memory address in output file.
364 // Size of data in output file.
366 // File offset of contents in output file.
368 // Whether address_ is valid.
369 bool is_address_valid_
;
370 // Whether data_size_ is valid.
371 bool is_data_size_valid_
;
372 // Whether offset_ is valid.
373 bool is_offset_valid_
;
374 // Count of dynamic relocations applied to this section.
375 unsigned int dynamic_reloc_count_
;
378 // Output the section headers.
380 class Output_section_headers
: public Output_data
383 Output_section_headers(const Layout
*,
384 const Layout::Segment_list
*,
385 const Layout::Section_list
*,
386 const Layout::Section_list
*,
390 // Write the data to the file.
392 do_write(Output_file
*);
394 // Return the required alignment.
397 { return Output_data::default_alignment(); }
400 // Write the data to the file with the right size and endianness.
401 template<int size
, bool big_endian
>
403 do_sized_write(Output_file
*);
405 const Layout
* layout_
;
406 const Layout::Segment_list
* segment_list_
;
407 const Layout::Section_list
* section_list_
;
408 const Layout::Section_list
* unattached_section_list_
;
409 const Stringpool
* secnamepool_
;
412 // Output the segment headers.
414 class Output_segment_headers
: public Output_data
417 Output_segment_headers(const Layout::Segment_list
& segment_list
);
420 // Write the data to the file.
422 do_write(Output_file
*);
424 // Return the required alignment.
427 { return Output_data::default_alignment(); }
430 // Write the data to the file with the right size and endianness.
431 template<int size
, bool big_endian
>
433 do_sized_write(Output_file
*);
435 const Layout::Segment_list
& segment_list_
;
438 // Output the ELF file header.
440 class Output_file_header
: public Output_data
443 Output_file_header(const Target
*,
445 const Output_segment_headers
*,
448 // Add information about the section headers. We lay out the ELF
449 // file header before we create the section headers.
450 void set_section_info(const Output_section_headers
*,
451 const Output_section
* shstrtab
);
454 // Write the data to the file.
456 do_write(Output_file
*);
458 // Return the required alignment.
461 { return Output_data::default_alignment(); }
464 // Write the data to the file with the right size and endianness.
465 template<int size
, bool big_endian
>
467 do_sized_write(Output_file
*);
469 // Return the value to use for the entry address.
471 typename
elfcpp::Elf_types
<size
>::Elf_Addr
474 const Target
* target_
;
475 const Symbol_table
* symtab_
;
476 const Output_segment_headers
* segment_header_
;
477 const Output_section_headers
* section_header_
;
478 const Output_section
* shstrtab_
;
482 // Output sections are mainly comprised of input sections. However,
483 // there are cases where we have data to write out which is not in an
484 // input section. Output_section_data is used in such cases. This is
485 // an abstract base class.
487 class Output_section_data
: public Output_data
490 Output_section_data(off_t data_size
, uint64_t addralign
)
491 : Output_data(), output_section_(NULL
), addralign_(addralign
)
492 { this->set_data_size(data_size
); }
494 Output_section_data(uint64_t addralign
)
495 : Output_data(), output_section_(NULL
), addralign_(addralign
)
498 // Return the output section.
499 const Output_section
*
500 output_section() const
501 { return this->output_section_
; }
503 // Record the output section.
505 set_output_section(Output_section
* os
);
507 // Add an input section, for SHF_MERGE sections. This returns true
508 // if the section was handled.
510 add_input_section(Relobj
* object
, unsigned int shndx
)
511 { return this->do_add_input_section(object
, shndx
); }
513 // Given an input OBJECT, an input section index SHNDX within that
514 // object, and an OFFSET relative to the start of that input
515 // section, return whether or not the corresponding offset within
516 // the output section is known. If this function returns true, it
517 // sets *POUTPUT to the output offset. The value -1 indicates that
518 // this input offset is being discarded.
520 output_offset(const Relobj
* object
, unsigned int shndx
,
521 section_offset_type offset
,
522 section_offset_type
*poutput
) const
523 { return this->do_output_offset(object
, shndx
, offset
, poutput
); }
525 // Return whether this is the merge section for the input section
526 // SHNDX in OBJECT. This should return true when output_offset
527 // would return true for some values of OFFSET.
529 is_merge_section_for(const Relobj
* object
, unsigned int shndx
) const
530 { return this->do_is_merge_section_for(object
, shndx
); }
532 // Write the contents to a buffer. This is used for sections which
533 // require postprocessing, such as compression.
535 write_to_buffer(unsigned char* buffer
)
536 { this->do_write_to_buffer(buffer
); }
538 // Print merge stats to stderr. This should only be called for
539 // SHF_MERGE sections.
541 print_merge_stats(const char* section_name
)
542 { this->do_print_merge_stats(section_name
); }
545 // The child class must implement do_write.
547 // The child class may implement specific adjustments to the output
550 do_adjust_output_section(Output_section
*)
553 // May be implemented by child class. Return true if the section
556 do_add_input_section(Relobj
*, unsigned int)
557 { gold_unreachable(); }
559 // The child class may implement output_offset.
561 do_output_offset(const Relobj
*, unsigned int, section_offset_type
,
562 section_offset_type
*) const
565 // The child class may implement is_merge_section_for.
567 do_is_merge_section_for(const Relobj
*, unsigned int) const
570 // The child class may implement write_to_buffer. Most child
571 // classes can not appear in a compressed section, and they do not
574 do_write_to_buffer(unsigned char*)
575 { gold_unreachable(); }
577 // Print merge statistics.
579 do_print_merge_stats(const char*)
580 { gold_unreachable(); }
582 // Return the required alignment.
585 { return this->addralign_
; }
587 // Return the output section.
590 { return this->output_section_
; }
592 // Return the section index of the output section.
594 do_out_shndx() const;
596 // Set the alignment.
598 set_addralign(uint64_t addralign
)
599 { this->addralign_
= addralign
; }
602 // The output section for this section.
603 Output_section
* output_section_
;
604 // The required alignment.
608 // Some Output_section_data classes build up their data step by step,
609 // rather than all at once. This class provides an interface for
612 class Output_section_data_build
: public Output_section_data
615 Output_section_data_build(uint64_t addralign
)
616 : Output_section_data(addralign
)
619 // Get the current data size.
621 current_data_size() const
622 { return this->current_data_size_for_child(); }
624 // Set the current data size.
626 set_current_data_size(off_t data_size
)
627 { this->set_current_data_size_for_child(data_size
); }
630 // Set the final data size.
632 set_final_data_size()
633 { this->set_data_size(this->current_data_size_for_child()); }
636 // A simple case of Output_data in which we have constant data to
639 class Output_data_const
: public Output_section_data
642 Output_data_const(const std::string
& data
, uint64_t addralign
)
643 : Output_section_data(data
.size(), addralign
), data_(data
)
646 Output_data_const(const char* p
, off_t len
, uint64_t addralign
)
647 : Output_section_data(len
, addralign
), data_(p
, len
)
650 Output_data_const(const unsigned char* p
, off_t len
, uint64_t addralign
)
651 : Output_section_data(len
, addralign
),
652 data_(reinterpret_cast<const char*>(p
), len
)
656 // Write the data to the output file.
658 do_write(Output_file
*);
660 // Write the data to a buffer.
662 do_write_to_buffer(unsigned char* buffer
)
663 { memcpy(buffer
, this->data_
.data(), this->data_
.size()); }
669 // Another version of Output_data with constant data, in which the
670 // buffer is allocated by the caller.
672 class Output_data_const_buffer
: public Output_section_data
675 Output_data_const_buffer(const unsigned char* p
, off_t len
,
677 : Output_section_data(len
, addralign
), p_(p
)
681 // Write the data the output file.
683 do_write(Output_file
*);
685 // Write the data to a buffer.
687 do_write_to_buffer(unsigned char* buffer
)
688 { memcpy(buffer
, this->p_
, this->data_size()); }
691 const unsigned char* p_
;
694 // A place holder for a fixed amount of data written out via some
697 class Output_data_fixed_space
: public Output_section_data
700 Output_data_fixed_space(off_t data_size
, uint64_t addralign
)
701 : Output_section_data(data_size
, addralign
)
705 // Write out the data--the actual data must be written out
708 do_write(Output_file
*)
712 // A place holder for variable sized data written out via some other
715 class Output_data_space
: public Output_section_data_build
718 explicit Output_data_space(uint64_t addralign
)
719 : Output_section_data_build(addralign
)
722 // Set the alignment.
724 set_space_alignment(uint64_t align
)
725 { this->set_addralign(align
); }
728 // Write out the data--the actual data must be written out
731 do_write(Output_file
*)
735 // A string table which goes into an output section.
737 class Output_data_strtab
: public Output_section_data
740 Output_data_strtab(Stringpool
* strtab
)
741 : Output_section_data(1), strtab_(strtab
)
745 // This is called to set the address and file offset. Here we make
746 // sure that the Stringpool is finalized.
748 set_final_data_size();
750 // Write out the data.
752 do_write(Output_file
*);
754 // Write the data to a buffer.
756 do_write_to_buffer(unsigned char* buffer
)
757 { this->strtab_
->write_to_buffer(buffer
, this->data_size()); }
763 // This POD class is used to represent a single reloc in the output
764 // file. This could be a private class within Output_data_reloc, but
765 // the templatization is complex enough that I broke it out into a
766 // separate class. The class is templatized on either elfcpp::SHT_REL
767 // or elfcpp::SHT_RELA, and also on whether this is a dynamic
768 // relocation or an ordinary relocation.
770 // A relocation can be against a global symbol, a local symbol, a
771 // local section symbol, an output section, or the undefined symbol at
772 // index 0. We represent the latter by using a NULL global symbol.
774 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
777 template<bool dynamic
, int size
, bool big_endian
>
778 class Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
781 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
783 // An uninitialized entry. We need this because we want to put
784 // instances of this class into an STL container.
786 : local_sym_index_(INVALID_CODE
)
789 // We have a bunch of different constructors. They come in pairs
790 // depending on how the address of the relocation is specified. It
791 // can either be an offset in an Output_data or an offset in an
794 // A reloc against a global symbol.
796 Output_reloc(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
797 Address address
, bool is_relative
);
799 Output_reloc(Symbol
* gsym
, unsigned int type
, Relobj
* relobj
,
800 unsigned int shndx
, Address address
, bool is_relative
);
802 // A reloc against a local symbol or local section symbol.
804 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
805 unsigned int local_sym_index
, unsigned int type
,
806 Output_data
* od
, Address address
, bool is_relative
,
807 bool is_section_symbol
);
809 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
810 unsigned int local_sym_index
, unsigned int type
,
811 unsigned int shndx
, Address address
, bool is_relative
,
812 bool is_section_symbol
);
814 // A reloc against the STT_SECTION symbol of an output section.
816 Output_reloc(Output_section
* os
, unsigned int type
, Output_data
* od
,
819 Output_reloc(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
820 unsigned int shndx
, Address address
);
822 // Return TRUE if this is a RELATIVE relocation.
825 { return this->is_relative_
; }
827 // Return whether this is against a local section symbol.
829 is_local_section_symbol() const
831 return (this->local_sym_index_
!= GSYM_CODE
832 && this->local_sym_index_
!= SECTION_CODE
833 && this->local_sym_index_
!= INVALID_CODE
834 && this->is_section_symbol_
);
837 // For a local section symbol, return the offset of the input
838 // section within the output section.
840 local_section_offset() const;
842 // Get the value of the symbol referred to by a Rel relocation when
843 // we are adding the given ADDEND.
845 symbol_value(Address addend
) const;
847 // Write the reloc entry to an output view.
849 write(unsigned char* pov
) const;
851 // Write the offset and info fields to Write_rel.
852 template<typename Write_rel
>
853 void write_rel(Write_rel
*) const;
856 // Record that we need a dynamic symbol index.
858 set_needs_dynsym_index();
860 // Return the symbol index.
862 get_symbol_index() const;
864 // Codes for local_sym_index_.
871 // Invalid uninitialized entry.
877 // For a local symbol or local section symbol
878 // (this->local_sym_index_ >= 0), the object. We will never
879 // generate a relocation against a local symbol in a dynamic
880 // object; that doesn't make sense. And our callers will always
881 // be templatized, so we use Sized_relobj here.
882 Sized_relobj
<size
, big_endian
>* relobj
;
883 // For a global symbol (this->local_sym_index_ == GSYM_CODE, the
884 // symbol. If this is NULL, it indicates a relocation against the
885 // undefined 0 symbol.
887 // For a relocation against an output section
888 // (this->local_sym_index_ == SECTION_CODE), the output section.
893 // If this->shndx_ is not INVALID CODE, the object which holds the
894 // input section being used to specify the reloc address.
896 // If this->shndx_ is INVALID_CODE, the output data being used to
897 // specify the reloc address. This may be NULL if the reloc
898 // address is absolute.
901 // The address offset within the input section or the Output_data.
903 // This is GSYM_CODE for a global symbol, or SECTION_CODE for a
904 // relocation against an output section, or INVALID_CODE for an
905 // uninitialized value. Otherwise, for a local symbol
906 // (this->is_section_symbol_ is false), the local symbol index. For
907 // a local section symbol (this->is_section_symbol_ is true), the
908 // section index in the input file.
909 unsigned int local_sym_index_
;
910 // The reloc type--a processor specific code.
911 unsigned int type_
: 30;
912 // True if the relocation is a RELATIVE relocation.
913 bool is_relative_
: 1;
914 // True if the relocation is against a section symbol.
915 bool is_section_symbol_
: 1;
916 // If the reloc address is an input section in an object, the
917 // section index. This is INVALID_CODE if the reloc address is
918 // specified in some other way.
922 // The SHT_RELA version of Output_reloc<>. This is just derived from
923 // the SHT_REL version of Output_reloc, but it adds an addend.
925 template<bool dynamic
, int size
, bool big_endian
>
926 class Output_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
929 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Address
;
930 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Addend
;
932 // An uninitialized entry.
937 // A reloc against a global symbol.
939 Output_reloc(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
940 Address address
, Addend addend
, bool is_relative
)
941 : rel_(gsym
, type
, od
, address
, is_relative
), addend_(addend
)
944 Output_reloc(Symbol
* gsym
, unsigned int type
, Relobj
* relobj
,
945 unsigned int shndx
, Address address
, Addend addend
,
947 : rel_(gsym
, type
, relobj
, shndx
, address
, is_relative
), addend_(addend
)
950 // A reloc against a local symbol.
952 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
953 unsigned int local_sym_index
, unsigned int type
,
954 Output_data
* od
, Address address
,
955 Addend addend
, bool is_relative
, bool is_section_symbol
)
956 : rel_(relobj
, local_sym_index
, type
, od
, address
, is_relative
,
961 Output_reloc(Sized_relobj
<size
, big_endian
>* relobj
,
962 unsigned int local_sym_index
, unsigned int type
,
963 unsigned int shndx
, Address address
,
964 Addend addend
, bool is_relative
, bool is_section_symbol
)
965 : rel_(relobj
, local_sym_index
, type
, shndx
, address
, is_relative
,
970 // A reloc against the STT_SECTION symbol of an output section.
972 Output_reloc(Output_section
* os
, unsigned int type
, Output_data
* od
,
973 Address address
, Addend addend
)
974 : rel_(os
, type
, od
, address
), addend_(addend
)
977 Output_reloc(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
978 unsigned int shndx
, Address address
, Addend addend
)
979 : rel_(os
, type
, relobj
, shndx
, address
), addend_(addend
)
982 // Write the reloc entry to an output view.
984 write(unsigned char* pov
) const;
988 Output_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
> rel_
;
993 // Output_data_reloc is used to manage a section containing relocs.
994 // SH_TYPE is either elfcpp::SHT_REL or elfcpp::SHT_RELA. DYNAMIC
995 // indicates whether this is a dynamic relocation or a normal
996 // relocation. Output_data_reloc_base is a base class.
997 // Output_data_reloc is the real class, which we specialize based on
1000 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
1001 class Output_data_reloc_base
: public Output_section_data_build
1004 typedef Output_reloc
<sh_type
, dynamic
, size
, big_endian
> Output_reloc_type
;
1005 typedef typename
Output_reloc_type::Address Address
;
1006 static const int reloc_size
=
1007 Reloc_types
<sh_type
, size
, big_endian
>::reloc_size
;
1009 // Construct the section.
1010 Output_data_reloc_base()
1011 : Output_section_data_build(Output_data::default_alignment_for_size(size
))
1015 // Write out the data.
1017 do_write(Output_file
*);
1019 // Set the entry size and the link.
1021 do_adjust_output_section(Output_section
*os
);
1023 // Add a relocation entry.
1025 add(Output_data
*od
, const Output_reloc_type
& reloc
)
1027 this->relocs_
.push_back(reloc
);
1028 this->set_current_data_size(this->relocs_
.size() * reloc_size
);
1029 od
->add_dynamic_reloc();
1033 typedef std::vector
<Output_reloc_type
> Relocs
;
1038 // The class which callers actually create.
1040 template<int sh_type
, bool dynamic
, int size
, bool big_endian
>
1041 class Output_data_reloc
;
1043 // The SHT_REL version of Output_data_reloc.
1045 template<bool dynamic
, int size
, bool big_endian
>
1046 class Output_data_reloc
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
1047 : public Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>
1050 typedef Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
,
1054 typedef typename
Base::Output_reloc_type Output_reloc_type
;
1055 typedef typename
Output_reloc_type::Address Address
;
1058 : Output_data_reloc_base
<elfcpp::SHT_REL
, dynamic
, size
, big_endian
>()
1061 // Add a reloc against a global symbol.
1064 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Address address
)
1065 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, false)); }
1068 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Relobj
* relobj
,
1069 unsigned int shndx
, Address address
)
1070 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1073 // Add a RELATIVE reloc against a global symbol. The final relocation
1074 // will not reference the symbol.
1077 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1079 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, true)); }
1082 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1083 Relobj
* relobj
, unsigned int shndx
, Address address
)
1085 this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1089 // Add a reloc against a local symbol.
1092 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1093 unsigned int local_sym_index
, unsigned int type
,
1094 Output_data
* od
, Address address
)
1096 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
,
1097 address
, false, false));
1101 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1102 unsigned int local_sym_index
, unsigned int type
,
1103 Output_data
* od
, unsigned int shndx
, Address address
)
1105 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1106 address
, false, false));
1109 // Add a RELATIVE reloc against a local symbol.
1112 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1113 unsigned int local_sym_index
, unsigned int type
,
1114 Output_data
* od
, Address address
)
1116 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
,
1117 address
, true, false));
1121 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1122 unsigned int local_sym_index
, unsigned int type
,
1123 Output_data
* od
, unsigned int shndx
, Address address
)
1125 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1126 address
, true, false));
1129 // Add a reloc against a local section symbol. This will be
1130 // converted into a reloc against the STT_SECTION symbol of the
1134 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1135 unsigned int input_shndx
, unsigned int type
,
1136 Output_data
* od
, Address address
)
1138 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, od
,
1139 address
, false, true));
1143 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1144 unsigned int input_shndx
, unsigned int type
,
1145 Output_data
* od
, unsigned int shndx
, Address address
)
1147 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, shndx
,
1148 address
, false, true));
1151 // A reloc against the STT_SECTION symbol of an output section.
1152 // OS is the Output_section that the relocation refers to; OD is
1153 // the Output_data object being relocated.
1156 add_output_section(Output_section
* os
, unsigned int type
,
1157 Output_data
* od
, Address address
)
1158 { this->add(od
, Output_reloc_type(os
, type
, od
, address
)); }
1161 add_output_section(Output_section
* os
, unsigned int type
, Output_data
* od
,
1162 Relobj
* relobj
, unsigned int shndx
, Address address
)
1163 { this->add(od
, Output_reloc_type(os
, type
, relobj
, shndx
, address
)); }
1166 // The SHT_RELA version of Output_data_reloc.
1168 template<bool dynamic
, int size
, bool big_endian
>
1169 class Output_data_reloc
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
1170 : public Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>
1173 typedef Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
,
1177 typedef typename
Base::Output_reloc_type Output_reloc_type
;
1178 typedef typename
Output_reloc_type::Address Address
;
1179 typedef typename
Output_reloc_type::Addend Addend
;
1182 : Output_data_reloc_base
<elfcpp::SHT_RELA
, dynamic
, size
, big_endian
>()
1185 // Add a reloc against a global symbol.
1188 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1189 Address address
, Addend addend
)
1190 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, addend
,
1194 add_global(Symbol
* gsym
, unsigned int type
, Output_data
* od
, Relobj
* relobj
,
1195 unsigned int shndx
, Address address
,
1197 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1200 // Add a RELATIVE reloc against a global symbol. The final output
1201 // relocation will not reference the symbol, but we must keep the symbol
1202 // information long enough to set the addend of the relocation correctly
1203 // when it is written.
1206 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1207 Address address
, Addend addend
)
1208 { this->add(od
, Output_reloc_type(gsym
, type
, od
, address
, addend
, true)); }
1211 add_global_relative(Symbol
* gsym
, unsigned int type
, Output_data
* od
,
1212 Relobj
* relobj
, unsigned int shndx
, Address address
,
1214 { this->add(od
, Output_reloc_type(gsym
, type
, relobj
, shndx
, address
,
1217 // Add a reloc against a local symbol.
1220 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1221 unsigned int local_sym_index
, unsigned int type
,
1222 Output_data
* od
, Address address
, Addend addend
)
1224 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
, address
,
1225 addend
, false, false));
1229 add_local(Sized_relobj
<size
, big_endian
>* relobj
,
1230 unsigned int local_sym_index
, unsigned int type
,
1231 Output_data
* od
, unsigned int shndx
, Address address
,
1234 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1235 address
, addend
, false, false));
1238 // Add a RELATIVE reloc against a local symbol.
1241 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1242 unsigned int local_sym_index
, unsigned int type
,
1243 Output_data
* od
, Address address
, Addend addend
)
1245 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, od
, address
,
1246 addend
, true, false));
1250 add_local_relative(Sized_relobj
<size
, big_endian
>* relobj
,
1251 unsigned int local_sym_index
, unsigned int type
,
1252 Output_data
* od
, unsigned int shndx
, Address address
,
1255 this->add(od
, Output_reloc_type(relobj
, local_sym_index
, type
, shndx
,
1256 address
, addend
, true, false));
1259 // Add a reloc against a local section symbol. This will be
1260 // converted into a reloc against the STT_SECTION symbol of the
1264 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1265 unsigned int input_shndx
, unsigned int type
,
1266 Output_data
* od
, Address address
, Addend addend
)
1268 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, od
, address
,
1269 addend
, false, true));
1273 add_local_section(Sized_relobj
<size
, big_endian
>* relobj
,
1274 unsigned int input_shndx
, unsigned int type
,
1275 Output_data
* od
, unsigned int shndx
, Address address
,
1278 this->add(od
, Output_reloc_type(relobj
, input_shndx
, type
, shndx
,
1279 address
, addend
, false, true));
1282 // A reloc against the STT_SECTION symbol of an output section.
1285 add_output_section(Output_section
* os
, unsigned int type
, Output_data
* od
,
1286 Address address
, Addend addend
)
1287 { this->add(os
, Output_reloc_type(os
, type
, od
, address
, addend
)); }
1290 add_output_section(Output_section
* os
, unsigned int type
, Relobj
* relobj
,
1291 unsigned int shndx
, Address address
, Addend addend
)
1292 { this->add(os
, Output_reloc_type(os
, type
, relobj
, shndx
, address
,
1296 // Output_relocatable_relocs represents a relocation section in a
1297 // relocatable link. The actual data is written out in the target
1298 // hook relocate_for_relocatable. This just saves space for it.
1300 template<int sh_type
, int size
, bool big_endian
>
1301 class Output_relocatable_relocs
: public Output_section_data
1304 Output_relocatable_relocs(Relocatable_relocs
* rr
)
1305 : Output_section_data(Output_data::default_alignment_for_size(size
)),
1310 set_final_data_size();
1312 // Write out the data. There is nothing to do here.
1314 do_write(Output_file
*)
1318 // The relocs associated with this input section.
1319 Relocatable_relocs
* rr_
;
1322 // Handle a GROUP section.
1324 template<int size
, bool big_endian
>
1325 class Output_data_group
: public Output_section_data
1328 Output_data_group(Sized_relobj
<size
, big_endian
>* relobj
,
1329 section_size_type entry_count
,
1330 const elfcpp::Elf_Word
* contents
);
1333 do_write(Output_file
*);
1336 // The input object.
1337 Sized_relobj
<size
, big_endian
>* relobj_
;
1338 // The group flag word.
1339 elfcpp::Elf_Word flags_
;
1340 // The section indexes of the input sections in this group.
1341 std::vector
<unsigned int> input_sections_
;
1344 // Output_data_got is used to manage a GOT. Each entry in the GOT is
1345 // for one symbol--either a global symbol or a local symbol in an
1346 // object. The target specific code adds entries to the GOT as
1349 template<int size
, bool big_endian
>
1350 class Output_data_got
: public Output_section_data_build
1353 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Valtype
;
1354 typedef Output_data_reloc
<elfcpp::SHT_REL
, true, size
, big_endian
> Rel_dyn
;
1355 typedef Output_data_reloc
<elfcpp::SHT_RELA
, true, size
, big_endian
> Rela_dyn
;
1358 : Output_section_data_build(Output_data::default_alignment_for_size(size
)),
1362 // Add an entry for a global symbol to the GOT. Return true if this
1363 // is a new GOT entry, false if the symbol was already in the GOT.
1365 add_global(Symbol
* gsym
, unsigned int got_type
);
1367 // Add an entry for a global symbol to the GOT, and add a dynamic
1368 // relocation of type R_TYPE for the GOT entry.
1370 add_global_with_rel(Symbol
* gsym
, unsigned int got_type
,
1371 Rel_dyn
* rel_dyn
, unsigned int r_type
);
1374 add_global_with_rela(Symbol
* gsym
, unsigned int got_type
,
1375 Rela_dyn
* rela_dyn
, unsigned int r_type
);
1377 // Add a pair of entries for a global symbol to the GOT, and add
1378 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1380 add_global_pair_with_rel(Symbol
* gsym
, unsigned int got_type
,
1381 Rel_dyn
* rel_dyn
, unsigned int r_type_1
,
1382 unsigned int r_type_2
);
1385 add_global_pair_with_rela(Symbol
* gsym
, unsigned int got_type
,
1386 Rela_dyn
* rela_dyn
, unsigned int r_type_1
,
1387 unsigned int r_type_2
);
1389 // Add an entry for a local symbol to the GOT. This returns true if
1390 // this is a new GOT entry, false if the symbol already has a GOT
1393 add_local(Sized_relobj
<size
, big_endian
>* object
, unsigned int sym_index
,
1394 unsigned int got_type
);
1396 // Add an entry for a local symbol to the GOT, and add a dynamic
1397 // relocation of type R_TYPE for the GOT entry.
1399 add_local_with_rel(Sized_relobj
<size
, big_endian
>* object
,
1400 unsigned int sym_index
, unsigned int got_type
,
1401 Rel_dyn
* rel_dyn
, unsigned int r_type
);
1404 add_local_with_rela(Sized_relobj
<size
, big_endian
>* object
,
1405 unsigned int sym_index
, unsigned int got_type
,
1406 Rela_dyn
* rela_dyn
, unsigned int r_type
);
1408 // Add a pair of entries for a local symbol to the GOT, and add
1409 // dynamic relocations of type R_TYPE_1 and R_TYPE_2, respectively.
1411 add_local_pair_with_rel(Sized_relobj
<size
, big_endian
>* object
,
1412 unsigned int sym_index
, unsigned int shndx
,
1413 unsigned int got_type
, Rel_dyn
* rel_dyn
,
1414 unsigned int r_type_1
, unsigned int r_type_2
);
1417 add_local_pair_with_rela(Sized_relobj
<size
, big_endian
>* object
,
1418 unsigned int sym_index
, unsigned int shndx
,
1419 unsigned int got_type
, Rela_dyn
* rela_dyn
,
1420 unsigned int r_type_1
, unsigned int r_type_2
);
1422 // Add a constant to the GOT. This returns the offset of the new
1423 // entry from the start of the GOT.
1425 add_constant(Valtype constant
)
1427 this->entries_
.push_back(Got_entry(constant
));
1428 this->set_got_size();
1429 return this->last_got_offset();
1433 // Write out the GOT table.
1435 do_write(Output_file
*);
1438 // This POD class holds a single GOT entry.
1442 // Create a zero entry.
1444 : local_sym_index_(CONSTANT_CODE
)
1445 { this->u_
.constant
= 0; }
1447 // Create a global symbol entry.
1448 explicit Got_entry(Symbol
* gsym
)
1449 : local_sym_index_(GSYM_CODE
)
1450 { this->u_
.gsym
= gsym
; }
1452 // Create a local symbol entry.
1453 Got_entry(Sized_relobj
<size
, big_endian
>* object
,
1454 unsigned int local_sym_index
)
1455 : local_sym_index_(local_sym_index
)
1457 gold_assert(local_sym_index
!= GSYM_CODE
1458 && local_sym_index
!= CONSTANT_CODE
);
1459 this->u_
.object
= object
;
1462 // Create a constant entry. The constant is a host value--it will
1463 // be swapped, if necessary, when it is written out.
1464 explicit Got_entry(Valtype constant
)
1465 : local_sym_index_(CONSTANT_CODE
)
1466 { this->u_
.constant
= constant
; }
1468 // Write the GOT entry to an output view.
1470 write(unsigned char* pov
) const;
1481 // For a local symbol, the object.
1482 Sized_relobj
<size
, big_endian
>* object
;
1483 // For a global symbol, the symbol.
1485 // For a constant, the constant.
1488 // For a local symbol, the local symbol index. This is GSYM_CODE
1489 // for a global symbol, or CONSTANT_CODE for a constant.
1490 unsigned int local_sym_index_
;
1493 typedef std::vector
<Got_entry
> Got_entries
;
1495 // Return the offset into the GOT of GOT entry I.
1497 got_offset(unsigned int i
) const
1498 { return i
* (size
/ 8); }
1500 // Return the offset into the GOT of the last entry added.
1502 last_got_offset() const
1503 { return this->got_offset(this->entries_
.size() - 1); }
1505 // Set the size of the section.
1508 { this->set_current_data_size(this->got_offset(this->entries_
.size())); }
1510 // The list of GOT entries.
1511 Got_entries entries_
;
1514 // Output_data_dynamic is used to hold the data in SHT_DYNAMIC
1517 class Output_data_dynamic
: public Output_section_data
1520 Output_data_dynamic(Stringpool
* pool
)
1521 : Output_section_data(Output_data::default_alignment()),
1522 entries_(), pool_(pool
)
1525 // Add a new dynamic entry with a fixed numeric value.
1527 add_constant(elfcpp::DT tag
, unsigned int val
)
1528 { this->add_entry(Dynamic_entry(tag
, val
)); }
1530 // Add a new dynamic entry with the address of output data.
1532 add_section_address(elfcpp::DT tag
, const Output_data
* od
)
1533 { this->add_entry(Dynamic_entry(tag
, od
, false)); }
1535 // Add a new dynamic entry with the size of output data.
1537 add_section_size(elfcpp::DT tag
, const Output_data
* od
)
1538 { this->add_entry(Dynamic_entry(tag
, od
, true)); }
1540 // Add a new dynamic entry with the address of a symbol.
1542 add_symbol(elfcpp::DT tag
, const Symbol
* sym
)
1543 { this->add_entry(Dynamic_entry(tag
, sym
)); }
1545 // Add a new dynamic entry with a string.
1547 add_string(elfcpp::DT tag
, const char* str
)
1548 { this->add_entry(Dynamic_entry(tag
, this->pool_
->add(str
, true, NULL
))); }
1551 add_string(elfcpp::DT tag
, const std::string
& str
)
1552 { this->add_string(tag
, str
.c_str()); }
1555 // Adjust the output section to set the entry size.
1557 do_adjust_output_section(Output_section
*);
1559 // Set the final data size.
1561 set_final_data_size();
1563 // Write out the dynamic entries.
1565 do_write(Output_file
*);
1568 // This POD class holds a single dynamic entry.
1572 // Create an entry with a fixed numeric value.
1573 Dynamic_entry(elfcpp::DT tag
, unsigned int val
)
1574 : tag_(tag
), classification_(DYNAMIC_NUMBER
)
1575 { this->u_
.val
= val
; }
1577 // Create an entry with the size or address of a section.
1578 Dynamic_entry(elfcpp::DT tag
, const Output_data
* od
, bool section_size
)
1580 classification_(section_size
1581 ? DYNAMIC_SECTION_SIZE
1582 : DYNAMIC_SECTION_ADDRESS
)
1583 { this->u_
.od
= od
; }
1585 // Create an entry with the address of a symbol.
1586 Dynamic_entry(elfcpp::DT tag
, const Symbol
* sym
)
1587 : tag_(tag
), classification_(DYNAMIC_SYMBOL
)
1588 { this->u_
.sym
= sym
; }
1590 // Create an entry with a string.
1591 Dynamic_entry(elfcpp::DT tag
, const char* str
)
1592 : tag_(tag
), classification_(DYNAMIC_STRING
)
1593 { this->u_
.str
= str
; }
1595 // Write the dynamic entry to an output view.
1596 template<int size
, bool big_endian
>
1598 write(unsigned char* pov
, const Stringpool
*) const;
1606 DYNAMIC_SECTION_ADDRESS
,
1608 DYNAMIC_SECTION_SIZE
,
1617 // For DYNAMIC_NUMBER.
1619 // For DYNAMIC_SECTION_ADDRESS and DYNAMIC_SECTION_SIZE.
1620 const Output_data
* od
;
1621 // For DYNAMIC_SYMBOL.
1623 // For DYNAMIC_STRING.
1628 // The type of entry.
1629 Classification classification_
;
1632 // Add an entry to the list.
1634 add_entry(const Dynamic_entry
& entry
)
1635 { this->entries_
.push_back(entry
); }
1637 // Sized version of write function.
1638 template<int size
, bool big_endian
>
1640 sized_write(Output_file
* of
);
1642 // The type of the list of entries.
1643 typedef std::vector
<Dynamic_entry
> Dynamic_entries
;
1646 Dynamic_entries entries_
;
1647 // The pool used for strings.
1651 // An output section. We don't expect to have too many output
1652 // sections, so we don't bother to do a template on the size.
1654 class Output_section
: public Output_data
1657 // Create an output section, giving the name, type, and flags.
1658 Output_section(const char* name
, elfcpp::Elf_Word
, elfcpp::Elf_Xword
);
1659 virtual ~Output_section();
1661 // Add a new input section SHNDX, named NAME, with header SHDR, from
1662 // object OBJECT. RELOC_SHNDX is the index of a relocation section
1663 // which applies to this section, or 0 if none, or -1U if more than
1664 // one. HAVE_SECTIONS_SCRIPT is true if we have a SECTIONS clause
1665 // in a linker script; in that case we need to keep track of input
1666 // sections associated with an output section. Return the offset
1667 // within the output section.
1668 template<int size
, bool big_endian
>
1670 add_input_section(Sized_relobj
<size
, big_endian
>* object
, unsigned int shndx
,
1672 const elfcpp::Shdr
<size
, big_endian
>& shdr
,
1673 unsigned int reloc_shndx
, bool have_sections_script
);
1675 // Add generated data POSD to this output section.
1677 add_output_section_data(Output_section_data
* posd
);
1679 // Return the section name.
1682 { return this->name_
; }
1684 // Return the section type.
1687 { return this->type_
; }
1689 // Return the section flags.
1692 { return this->flags_
; }
1694 // Set the section flags. This may only be used with the Layout
1695 // code when it is prepared to move the section to a different
1698 set_flags(elfcpp::Elf_Xword flags
)
1699 { this->flags_
= flags
; }
1701 // Return the entsize field.
1704 { return this->entsize_
; }
1706 // Set the entsize field.
1708 set_entsize(uint64_t v
);
1710 // Set the load address.
1712 set_load_address(uint64_t load_address
)
1714 this->load_address_
= load_address
;
1715 this->has_load_address_
= true;
1718 // Set the link field to the output section index of a section.
1720 set_link_section(const Output_data
* od
)
1722 gold_assert(this->link_
== 0
1723 && !this->should_link_to_symtab_
1724 && !this->should_link_to_dynsym_
);
1725 this->link_section_
= od
;
1728 // Set the link field to a constant.
1730 set_link(unsigned int v
)
1732 gold_assert(this->link_section_
== NULL
1733 && !this->should_link_to_symtab_
1734 && !this->should_link_to_dynsym_
);
1738 // Record that this section should link to the normal symbol table.
1740 set_should_link_to_symtab()
1742 gold_assert(this->link_section_
== NULL
1744 && !this->should_link_to_dynsym_
);
1745 this->should_link_to_symtab_
= true;
1748 // Record that this section should link to the dynamic symbol table.
1750 set_should_link_to_dynsym()
1752 gold_assert(this->link_section_
== NULL
1754 && !this->should_link_to_symtab_
);
1755 this->should_link_to_dynsym_
= true;
1758 // Return the info field.
1762 gold_assert(this->info_section_
== NULL
1763 && this->info_symndx_
== NULL
);
1767 // Set the info field to the output section index of a section.
1769 set_info_section(const Output_section
* os
)
1771 gold_assert((this->info_section_
== NULL
1772 || (this->info_section_
== os
1773 && this->info_uses_section_index_
))
1774 && this->info_symndx_
== NULL
1775 && this->info_
== 0);
1776 this->info_section_
= os
;
1777 this->info_uses_section_index_
= true;
1780 // Set the info field to the symbol table index of a symbol.
1782 set_info_symndx(const Symbol
* sym
)
1784 gold_assert(this->info_section_
== NULL
1785 && (this->info_symndx_
== NULL
1786 || this->info_symndx_
== sym
)
1787 && this->info_
== 0);
1788 this->info_symndx_
= sym
;
1791 // Set the info field to the symbol table index of a section symbol.
1793 set_info_section_symndx(const Output_section
* os
)
1795 gold_assert((this->info_section_
== NULL
1796 || (this->info_section_
== os
1797 && !this->info_uses_section_index_
))
1798 && this->info_symndx_
== NULL
1799 && this->info_
== 0);
1800 this->info_section_
= os
;
1801 this->info_uses_section_index_
= false;
1804 // Set the info field to a constant.
1806 set_info(unsigned int v
)
1808 gold_assert(this->info_section_
== NULL
1809 && this->info_symndx_
== NULL
1810 && (this->info_
== 0
1811 || this->info_
== v
));
1815 // Set the addralign field.
1817 set_addralign(uint64_t v
)
1818 { this->addralign_
= v
; }
1820 // Indicate that we need a symtab index.
1822 set_needs_symtab_index()
1823 { this->needs_symtab_index_
= true; }
1825 // Return whether we need a symtab index.
1827 needs_symtab_index() const
1828 { return this->needs_symtab_index_
; }
1830 // Get the symtab index.
1832 symtab_index() const
1834 gold_assert(this->symtab_index_
!= 0);
1835 return this->symtab_index_
;
1838 // Set the symtab index.
1840 set_symtab_index(unsigned int index
)
1842 gold_assert(index
!= 0);
1843 this->symtab_index_
= index
;
1846 // Indicate that we need a dynsym index.
1848 set_needs_dynsym_index()
1849 { this->needs_dynsym_index_
= true; }
1851 // Return whether we need a dynsym index.
1853 needs_dynsym_index() const
1854 { return this->needs_dynsym_index_
; }
1856 // Get the dynsym index.
1858 dynsym_index() const
1860 gold_assert(this->dynsym_index_
!= 0);
1861 return this->dynsym_index_
;
1864 // Set the dynsym index.
1866 set_dynsym_index(unsigned int index
)
1868 gold_assert(index
!= 0);
1869 this->dynsym_index_
= index
;
1872 // Return whether this section should be written after all the input
1873 // sections are complete.
1875 after_input_sections() const
1876 { return this->after_input_sections_
; }
1878 // Record that this section should be written after all the input
1879 // sections are complete.
1881 set_after_input_sections()
1882 { this->after_input_sections_
= true; }
1884 // Return whether this section requires postprocessing after all
1885 // relocations have been applied.
1887 requires_postprocessing() const
1888 { return this->requires_postprocessing_
; }
1890 // If a section requires postprocessing, return the buffer to use.
1892 postprocessing_buffer() const
1894 gold_assert(this->postprocessing_buffer_
!= NULL
);
1895 return this->postprocessing_buffer_
;
1898 // If a section requires postprocessing, create the buffer to use.
1900 create_postprocessing_buffer();
1902 // If a section requires postprocessing, this is the size of the
1903 // buffer to which relocations should be applied.
1905 postprocessing_buffer_size() const
1906 { return this->current_data_size_for_child(); }
1908 // Modify the section name. This is only permitted for an
1909 // unallocated section, and only before the size has been finalized.
1910 // Otherwise the name will not get into Layout::namepool_.
1912 set_name(const char* newname
)
1914 gold_assert((this->flags_
& elfcpp::SHF_ALLOC
) == 0);
1915 gold_assert(!this->is_data_size_valid());
1916 this->name_
= newname
;
1919 // Return whether the offset OFFSET in the input section SHNDX in
1920 // object OBJECT is being included in the link.
1922 is_input_address_mapped(const Relobj
* object
, unsigned int shndx
,
1923 off_t offset
) const;
1925 // Return the offset within the output section of OFFSET relative to
1926 // the start of input section SHNDX in object OBJECT.
1928 output_offset(const Relobj
* object
, unsigned int shndx
,
1929 section_offset_type offset
) const;
1931 // Return the output virtual address of OFFSET relative to the start
1932 // of input section SHNDX in object OBJECT.
1934 output_address(const Relobj
* object
, unsigned int shndx
,
1935 off_t offset
) const;
1937 // Return the output address of the start of the merged section for
1938 // input section SHNDX in object OBJECT. This is not necessarily
1939 // the offset corresponding to input offset 0 in the section, since
1940 // the section may be mapped arbitrarily.
1942 starting_output_address(const Relobj
* object
, unsigned int shndx
) const;
1944 // Record that this output section was found in the SECTIONS clause
1945 // of a linker script.
1947 set_found_in_sections_clause()
1948 { this->found_in_sections_clause_
= true; }
1950 // Return whether this output section was found in the SECTIONS
1951 // clause of a linker script.
1953 found_in_sections_clause() const
1954 { return this->found_in_sections_clause_
; }
1956 // Write the section header into *OPHDR.
1957 template<int size
, bool big_endian
>
1959 write_header(const Layout
*, const Stringpool
*,
1960 elfcpp::Shdr_write
<size
, big_endian
>*) const;
1962 // The next few calls are for linker script support.
1964 // Store the list of input sections for this Output_section into the
1965 // list passed in. This removes the input sections, leaving only
1966 // any Output_section_data elements. This returns the size of those
1967 // Output_section_data elements. ADDRESS is the address of this
1968 // output section. FILL is the fill value to use, in case there are
1969 // any spaces between the remaining Output_section_data elements.
1971 get_input_sections(uint64_t address
, const std::string
& fill
,
1972 std::list
<std::pair
<Relobj
*, unsigned int > >*);
1974 // Add an input section from a script.
1976 add_input_section_for_script(Relobj
* object
, unsigned int shndx
,
1977 off_t data_size
, uint64_t addralign
);
1979 // Set the current size of the output section.
1981 set_current_data_size(off_t size
)
1982 { this->set_current_data_size_for_child(size
); }
1984 // Get the current size of the output section.
1986 current_data_size() const
1987 { return this->current_data_size_for_child(); }
1989 // End of linker script support.
1991 // Print merge statistics to stderr.
1993 print_merge_stats();
1996 // Return the output section--i.e., the object itself.
2001 // Return the section index in the output file.
2003 do_out_shndx() const
2005 gold_assert(this->out_shndx_
!= -1U);
2006 return this->out_shndx_
;
2009 // Set the output section index.
2011 do_set_out_shndx(unsigned int shndx
)
2013 gold_assert(this->out_shndx_
== -1U || this->out_shndx_
== shndx
);
2014 this->out_shndx_
= shndx
;
2017 // Set the final data size of the Output_section. For a typical
2018 // Output_section, there is nothing to do, but if there are any
2019 // Output_section_data objects we need to set their final addresses
2022 set_final_data_size();
2024 // Reset the address and file offset.
2026 do_reset_address_and_file_offset();
2028 // Write the data to the file. For a typical Output_section, this
2029 // does nothing: the data is written out by calling Object::Relocate
2030 // on each input object. But if there are any Output_section_data
2031 // objects we do need to write them out here.
2033 do_write(Output_file
*);
2035 // Return the address alignment--function required by parent class.
2037 do_addralign() const
2038 { return this->addralign_
; }
2040 // Return whether there is a load address.
2042 do_has_load_address() const
2043 { return this->has_load_address_
; }
2045 // Return the load address.
2047 do_load_address() const
2049 gold_assert(this->has_load_address_
);
2050 return this->load_address_
;
2053 // Return whether this is an Output_section.
2055 do_is_section() const
2058 // Return whether this is a section of the specified type.
2060 do_is_section_type(elfcpp::Elf_Word type
) const
2061 { return this->type_
== type
; }
2063 // Return whether the specified section flag is set.
2065 do_is_section_flag_set(elfcpp::Elf_Xword flag
) const
2066 { return (this->flags_
& flag
) != 0; }
2068 // Set the TLS offset. Called only for SHT_TLS sections.
2070 do_set_tls_offset(uint64_t tls_base
);
2072 // Return the TLS offset, relative to the base of the TLS segment.
2073 // Valid only for SHT_TLS sections.
2075 do_tls_offset() const
2076 { return this->tls_offset_
; }
2078 // This may be implemented by a child class.
2080 do_finalize_name(Layout
*)
2083 // Record that this section requires postprocessing after all
2084 // relocations have been applied. This is called by a child class.
2086 set_requires_postprocessing()
2088 this->requires_postprocessing_
= true;
2089 this->after_input_sections_
= true;
2092 // Write all the data of an Output_section into the postprocessing
2095 write_to_postprocessing_buffer();
2098 // In some cases we need to keep a list of the input sections
2099 // associated with this output section. We only need the list if we
2100 // might have to change the offsets of the input section within the
2101 // output section after we add the input section. The ordinary
2102 // input sections will be written out when we process the object
2103 // file, and as such we don't need to track them here. We do need
2104 // to track Output_section_data objects here. We store instances of
2105 // this structure in a std::vector, so it must be a POD. There can
2106 // be many instances of this structure, so we use a union to save
2112 : shndx_(0), p2align_(0)
2114 this->u1_
.data_size
= 0;
2115 this->u2_
.object
= NULL
;
2118 // For an ordinary input section.
2119 Input_section(Relobj
* object
, unsigned int shndx
, off_t data_size
,
2122 p2align_(ffsll(static_cast<long long>(addralign
)))
2124 gold_assert(shndx
!= OUTPUT_SECTION_CODE
2125 && shndx
!= MERGE_DATA_SECTION_CODE
2126 && shndx
!= MERGE_STRING_SECTION_CODE
);
2127 this->u1_
.data_size
= data_size
;
2128 this->u2_
.object
= object
;
2131 // For a non-merge output section.
2132 Input_section(Output_section_data
* posd
)
2133 : shndx_(OUTPUT_SECTION_CODE
),
2134 p2align_(ffsll(static_cast<long long>(posd
->addralign())))
2136 this->u1_
.data_size
= 0;
2137 this->u2_
.posd
= posd
;
2140 // For a merge section.
2141 Input_section(Output_section_data
* posd
, bool is_string
, uint64_t entsize
)
2143 ? MERGE_STRING_SECTION_CODE
2144 : MERGE_DATA_SECTION_CODE
),
2145 p2align_(ffsll(static_cast<long long>(posd
->addralign())))
2147 this->u1_
.entsize
= entsize
;
2148 this->u2_
.posd
= posd
;
2151 // The required alignment.
2155 return (this->p2align_
== 0
2157 : static_cast<uint64_t>(1) << (this->p2align_
- 1));
2160 // Return the required size.
2164 // Whether this is an input section.
2166 is_input_section() const
2168 return (this->shndx_
!= OUTPUT_SECTION_CODE
2169 && this->shndx_
!= MERGE_DATA_SECTION_CODE
2170 && this->shndx_
!= MERGE_STRING_SECTION_CODE
);
2173 // Return whether this is a merge section which matches the
2176 is_merge_section(bool is_string
, uint64_t entsize
,
2177 uint64_t addralign
) const
2179 return (this->shndx_
== (is_string
2180 ? MERGE_STRING_SECTION_CODE
2181 : MERGE_DATA_SECTION_CODE
)
2182 && this->u1_
.entsize
== entsize
2183 && this->addralign() == addralign
);
2186 // Return the object for an input section.
2190 gold_assert(this->is_input_section());
2191 return this->u2_
.object
;
2194 // Return the input section index for an input section.
2198 gold_assert(this->is_input_section());
2199 return this->shndx_
;
2202 // Set the output section.
2204 set_output_section(Output_section
* os
)
2206 gold_assert(!this->is_input_section());
2207 this->u2_
.posd
->set_output_section(os
);
2210 // Set the address and file offset. This is called during
2211 // Layout::finalize. SECTION_FILE_OFFSET is the file offset of
2212 // the enclosing section.
2214 set_address_and_file_offset(uint64_t address
, off_t file_offset
,
2215 off_t section_file_offset
);
2217 // Reset the address and file offset.
2219 reset_address_and_file_offset();
2221 // Finalize the data size.
2223 finalize_data_size();
2225 // Add an input section, for SHF_MERGE sections.
2227 add_input_section(Relobj
* object
, unsigned int shndx
)
2229 gold_assert(this->shndx_
== MERGE_DATA_SECTION_CODE
2230 || this->shndx_
== MERGE_STRING_SECTION_CODE
);
2231 return this->u2_
.posd
->add_input_section(object
, shndx
);
2234 // Given an input OBJECT, an input section index SHNDX within that
2235 // object, and an OFFSET relative to the start of that input
2236 // section, return whether or not the output offset is known. If
2237 // this function returns true, it sets *POUTPUT to the offset in
2238 // the output section, relative to the start of the input section
2239 // in the output section. *POUTPUT may be different from OFFSET
2240 // for a merged section.
2242 output_offset(const Relobj
* object
, unsigned int shndx
,
2243 section_offset_type offset
,
2244 section_offset_type
*poutput
) const;
2246 // Return whether this is the merge section for the input section
2249 is_merge_section_for(const Relobj
* object
, unsigned int shndx
) const;
2251 // Write out the data. This does nothing for an input section.
2253 write(Output_file
*);
2255 // Write the data to a buffer. This does nothing for an input
2258 write_to_buffer(unsigned char*);
2260 // Print statistics about merge sections to stderr.
2262 print_merge_stats(const char* section_name
)
2264 if (this->shndx_
== MERGE_DATA_SECTION_CODE
2265 || this->shndx_
== MERGE_STRING_SECTION_CODE
)
2266 this->u2_
.posd
->print_merge_stats(section_name
);
2270 // Code values which appear in shndx_. If the value is not one of
2271 // these codes, it is the input section index in the object file.
2274 // An Output_section_data.
2275 OUTPUT_SECTION_CODE
= -1U,
2276 // An Output_section_data for an SHF_MERGE section with
2277 // SHF_STRINGS not set.
2278 MERGE_DATA_SECTION_CODE
= -2U,
2279 // An Output_section_data for an SHF_MERGE section with
2281 MERGE_STRING_SECTION_CODE
= -3U
2284 // For an ordinary input section, this is the section index in the
2285 // input file. For an Output_section_data, this is
2286 // OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2287 // MERGE_STRING_SECTION_CODE.
2288 unsigned int shndx_
;
2289 // The required alignment, stored as a power of 2.
2290 unsigned int p2align_
;
2293 // For an ordinary input section, the section size.
2295 // For OUTPUT_SECTION_CODE, this is not used. For
2296 // MERGE_DATA_SECTION_CODE or MERGE_STRING_SECTION_CODE, the
2302 // For an ordinary input section, the object which holds the
2305 // For OUTPUT_SECTION_CODE or MERGE_DATA_SECTION_CODE or
2306 // MERGE_STRING_SECTION_CODE, the data.
2307 Output_section_data
* posd
;
2311 typedef std::vector
<Input_section
> Input_section_list
;
2313 // Fill data. This is used to fill in data between input sections.
2314 // It is also used for data statements (BYTE, WORD, etc.) in linker
2315 // scripts. When we have to keep track of the input sections, we
2316 // can use an Output_data_const, but we don't want to have to keep
2317 // track of input sections just to implement fills.
2321 Fill(off_t section_offset
, off_t length
)
2322 : section_offset_(section_offset
),
2323 length_(convert_to_section_size_type(length
))
2326 // Return section offset.
2328 section_offset() const
2329 { return this->section_offset_
; }
2331 // Return fill length.
2334 { return this->length_
; }
2337 // The offset within the output section.
2338 off_t section_offset_
;
2339 // The length of the space to fill.
2340 section_size_type length_
;
2343 typedef std::vector
<Fill
> Fill_list
;
2345 // Add a new output section by Input_section.
2347 add_output_section_data(Input_section
*);
2349 // Add an SHF_MERGE input section. Returns true if the section was
2352 add_merge_input_section(Relobj
* object
, unsigned int shndx
, uint64_t flags
,
2353 uint64_t entsize
, uint64_t addralign
);
2355 // Add an output SHF_MERGE section POSD to this output section.
2356 // IS_STRING indicates whether it is a SHF_STRINGS section, and
2357 // ENTSIZE is the entity size. This returns the entry added to
2360 add_output_merge_section(Output_section_data
* posd
, bool is_string
,
2363 // Most of these fields are only valid after layout.
2365 // The name of the section. This will point into a Stringpool.
2367 // The section address is in the parent class.
2368 // The section alignment.
2369 uint64_t addralign_
;
2370 // The section entry size.
2372 // The load address. This is only used when using a linker script
2373 // with a SECTIONS clause. The has_load_address_ field indicates
2374 // whether this field is valid.
2375 uint64_t load_address_
;
2376 // The file offset is in the parent class.
2377 // Set the section link field to the index of this section.
2378 const Output_data
* link_section_
;
2379 // If link_section_ is NULL, this is the link field.
2381 // Set the section info field to the index of this section.
2382 const Output_section
* info_section_
;
2383 // If info_section_ is NULL, set the info field to the symbol table
2384 // index of this symbol.
2385 const Symbol
* info_symndx_
;
2386 // If info_section_ and info_symndx_ are NULL, this is the section
2389 // The section type.
2390 const elfcpp::Elf_Word type_
;
2391 // The section flags.
2392 elfcpp::Elf_Xword flags_
;
2393 // The section index.
2394 unsigned int out_shndx_
;
2395 // If there is a STT_SECTION for this output section in the normal
2396 // symbol table, this is the symbol index. This starts out as zero.
2397 // It is initialized in Layout::finalize() to be the index, or -1U
2398 // if there isn't one.
2399 unsigned int symtab_index_
;
2400 // If there is a STT_SECTION for this output section in the dynamic
2401 // symbol table, this is the symbol index. This starts out as zero.
2402 // It is initialized in Layout::finalize() to be the index, or -1U
2403 // if there isn't one.
2404 unsigned int dynsym_index_
;
2405 // The input sections. This will be empty in cases where we don't
2406 // need to keep track of them.
2407 Input_section_list input_sections_
;
2408 // The offset of the first entry in input_sections_.
2409 off_t first_input_offset_
;
2410 // The fill data. This is separate from input_sections_ because we
2411 // often will need fill sections without needing to keep track of
2414 // If the section requires postprocessing, this buffer holds the
2415 // section contents during relocation.
2416 unsigned char* postprocessing_buffer_
;
2417 // Whether this output section needs a STT_SECTION symbol in the
2418 // normal symbol table. This will be true if there is a relocation
2420 bool needs_symtab_index_
: 1;
2421 // Whether this output section needs a STT_SECTION symbol in the
2422 // dynamic symbol table. This will be true if there is a dynamic
2423 // relocation which needs it.
2424 bool needs_dynsym_index_
: 1;
2425 // Whether the link field of this output section should point to the
2426 // normal symbol table.
2427 bool should_link_to_symtab_
: 1;
2428 // Whether the link field of this output section should point to the
2429 // dynamic symbol table.
2430 bool should_link_to_dynsym_
: 1;
2431 // Whether this section should be written after all the input
2432 // sections are complete.
2433 bool after_input_sections_
: 1;
2434 // Whether this section requires post processing after all
2435 // relocations have been applied.
2436 bool requires_postprocessing_
: 1;
2437 // Whether an input section was mapped to this output section
2438 // because of a SECTIONS clause in a linker script.
2439 bool found_in_sections_clause_
: 1;
2440 // Whether this section has an explicitly specified load address.
2441 bool has_load_address_
: 1;
2442 // True if the info_section_ field means the section index of the
2443 // section, false if it means the symbol index of the corresponding
2445 bool info_uses_section_index_
: 1;
2446 // For SHT_TLS sections, the offset of this section relative to the base
2447 // of the TLS segment.
2448 uint64_t tls_offset_
;
2451 // An output segment. PT_LOAD segments are built from collections of
2452 // output sections. Other segments typically point within PT_LOAD
2453 // segments, and are built directly as needed.
2455 class Output_segment
2458 // Create an output segment, specifying the type and flags.
2459 Output_segment(elfcpp::Elf_Word
, elfcpp::Elf_Word
);
2461 // Return the virtual address.
2464 { return this->vaddr_
; }
2466 // Return the physical address.
2469 { return this->paddr_
; }
2471 // Return the segment type.
2474 { return this->type_
; }
2476 // Return the segment flags.
2479 { return this->flags_
; }
2481 // Return the memory size.
2484 { return this->memsz_
; }
2486 // Return the file size.
2489 { return this->filesz_
; }
2491 // Return the file offset.
2494 { return this->offset_
; }
2496 // Return the maximum alignment of the Output_data.
2498 maximum_alignment();
2500 // Add an Output_section to this segment.
2502 add_output_section(Output_section
* os
, elfcpp::Elf_Word seg_flags
)
2503 { this->add_output_section(os
, seg_flags
, false); }
2505 // Add an Output_section to the start of this segment.
2507 add_initial_output_section(Output_section
* os
, elfcpp::Elf_Word seg_flags
)
2508 { this->add_output_section(os
, seg_flags
, true); }
2510 // Remove an Output_section from this segment. It is an error if it
2513 remove_output_section(Output_section
* os
);
2515 // Add an Output_data (which is not an Output_section) to the start
2518 add_initial_output_data(Output_data
*);
2520 // Return true if this segment has any sections which hold actual
2521 // data, rather than being a BSS section.
2523 has_any_data_sections() const
2524 { return !this->output_data_
.empty(); }
2526 // Return the number of dynamic relocations applied to this segment.
2528 dynamic_reloc_count() const;
2530 // Return the address of the first section.
2532 first_section_load_address() const;
2534 // Return whether the addresses have been set already.
2536 are_addresses_set() const
2537 { return this->are_addresses_set_
; }
2539 // Set the addresses.
2541 set_addresses(uint64_t vaddr
, uint64_t paddr
)
2543 this->vaddr_
= vaddr
;
2544 this->paddr_
= paddr
;
2545 this->are_addresses_set_
= true;
2548 // Set the segment flags. This is only used if we have a PHDRS
2549 // clause which explicitly specifies the flags.
2551 set_flags(elfcpp::Elf_Word flags
)
2552 { this->flags_
= flags
; }
2554 // Set the address of the segment to ADDR and the offset to *POFF
2555 // and set the addresses and offsets of all contained output
2556 // sections accordingly. Set the section indexes of all contained
2557 // output sections starting with *PSHNDX. If RESET is true, first
2558 // reset the addresses of the contained sections. Return the
2559 // address of the immediately following segment. Update *POFF and
2560 // *PSHNDX. This should only be called for a PT_LOAD segment.
2562 set_section_addresses(const Layout
*, bool reset
, uint64_t addr
, off_t
* poff
,
2563 unsigned int* pshndx
);
2565 // Set the minimum alignment of this segment. This may be adjusted
2566 // upward based on the section alignments.
2568 set_minimum_p_align(uint64_t align
)
2569 { this->min_p_align_
= align
; }
2571 // Set the offset of this segment based on the section. This should
2572 // only be called for a non-PT_LOAD segment.
2576 // Set the TLS offsets of the sections contained in the PT_TLS segment.
2580 // Return the number of output sections.
2582 output_section_count() const;
2584 // Return the section attached to the list segment with the lowest
2585 // load address. This is used when handling a PHDRS clause in a
2588 section_with_lowest_load_address() const;
2590 // Write the segment header into *OPHDR.
2591 template<int size
, bool big_endian
>
2593 write_header(elfcpp::Phdr_write
<size
, big_endian
>*);
2595 // Write the section headers of associated sections into V.
2596 template<int size
, bool big_endian
>
2598 write_section_headers(const Layout
*, const Stringpool
*, unsigned char* v
,
2599 unsigned int* pshndx
) const;
2602 Output_segment(const Output_segment
&);
2603 Output_segment
& operator=(const Output_segment
&);
2605 typedef std::list
<Output_data
*> Output_data_list
;
2607 // Add an Output_section to this segment, specifying front or back.
2609 add_output_section(Output_section
*, elfcpp::Elf_Word seg_flags
,
2612 // Find the maximum alignment in an Output_data_list.
2614 maximum_alignment_list(const Output_data_list
*);
2616 // Set the section addresses in an Output_data_list.
2618 set_section_list_addresses(const Layout
*, bool reset
, Output_data_list
*,
2619 uint64_t addr
, off_t
* poff
, unsigned int* pshndx
,
2622 // Return the number of Output_sections in an Output_data_list.
2624 output_section_count_list(const Output_data_list
*) const;
2626 // Return the number of dynamic relocs in an Output_data_list.
2628 dynamic_reloc_count_list(const Output_data_list
*) const;
2630 // Find the section with the lowest load address in an
2631 // Output_data_list.
2633 lowest_load_address_in_list(const Output_data_list
* pdl
,
2634 Output_section
** found
,
2635 uint64_t* found_lma
) const;
2637 // Write the section headers in the list into V.
2638 template<int size
, bool big_endian
>
2640 write_section_headers_list(const Layout
*, const Stringpool
*,
2641 const Output_data_list
*, unsigned char* v
,
2642 unsigned int* pshdx
) const;
2644 // The list of output data with contents attached to this segment.
2645 Output_data_list output_data_
;
2646 // The list of output data without contents attached to this segment.
2647 Output_data_list output_bss_
;
2648 // The segment virtual address.
2650 // The segment physical address.
2652 // The size of the segment in memory.
2654 // The maximum section alignment. The is_max_align_known_ field
2655 // indicates whether this has been finalized.
2656 uint64_t max_align_
;
2657 // The required minimum value for the p_align field. This is used
2658 // for PT_LOAD segments. Note that this does not mean that
2659 // addresses should be aligned to this value; it means the p_paddr
2660 // and p_vaddr fields must be congruent modulo this value. For
2661 // non-PT_LOAD segments, the dynamic linker works more efficiently
2662 // if the p_align field has the more conventional value, although it
2663 // can align as needed.
2664 uint64_t min_p_align_
;
2665 // The offset of the segment data within the file.
2667 // The size of the segment data in the file.
2669 // The segment type;
2670 elfcpp::Elf_Word type_
;
2671 // The segment flags.
2672 elfcpp::Elf_Word flags_
;
2673 // Whether we have finalized max_align_.
2674 bool is_max_align_known_
: 1;
2675 // Whether vaddr and paddr were set by a linker script.
2676 bool are_addresses_set_
: 1;
2679 // This class represents the output file.
2684 Output_file(const char* name
);
2686 // Indicate that this is a temporary file which should not be
2690 { this->is_temporary_
= true; }
2692 // Open the output file. FILE_SIZE is the final size of the file.
2694 open(off_t file_size
);
2696 // Resize the output file.
2698 resize(off_t file_size
);
2700 // Close the output file (flushing all buffered data) and make sure
2701 // there are no errors.
2705 // We currently always use mmap which makes the view handling quite
2706 // simple. In the future we may support other approaches.
2708 // Write data to the output file.
2710 write(off_t offset
, const void* data
, size_t len
)
2711 { memcpy(this->base_
+ offset
, data
, len
); }
2713 // Get a buffer to use to write to the file, given the offset into
2714 // the file and the size.
2716 get_output_view(off_t start
, size_t size
)
2718 gold_assert(start
>= 0
2719 && start
+ static_cast<off_t
>(size
) <= this->file_size_
);
2720 return this->base_
+ start
;
2723 // VIEW must have been returned by get_output_view. Write the
2724 // buffer to the file, passing in the offset and the size.
2726 write_output_view(off_t
, size_t, unsigned char*)
2729 // Get a read/write buffer. This is used when we want to write part
2730 // of the file, read it in, and write it again.
2732 get_input_output_view(off_t start
, size_t size
)
2733 { return this->get_output_view(start
, size
); }
2735 // Write a read/write buffer back to the file.
2737 write_input_output_view(off_t
, size_t, unsigned char*)
2740 // Get a read buffer. This is used when we just want to read part
2741 // of the file back it in.
2742 const unsigned char*
2743 get_input_view(off_t start
, size_t size
)
2744 { return this->get_output_view(start
, size
); }
2746 // Release a read bfufer.
2748 free_input_view(off_t
, size_t, const unsigned char*)
2752 // Map the file into memory and return a pointer to the map.
2756 // Unmap the file from memory (and flush to disk buffers).
2766 // Base of file mapped into memory.
2767 unsigned char* base_
;
2768 // True iff base_ points to a memory buffer rather than an output file.
2769 bool map_is_anonymous_
;
2770 // True if this is a temporary file which should not be output.
2774 } // End namespace gold.
2776 #endif // !defined(GOLD_OUTPUT_H)