1 // symtab.h -- the gold symbol table -*- 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 "parameters.h"
32 #include "stringpool.h"
43 template<int size
, bool big_endian
>
46 template<int size
, bool big_endian
>
49 class Version_script_info
;
55 class Output_symtab_xindex
;
57 // The base class of an entry in the symbol table. The symbol table
58 // can have a lot of entries, so we don't want this class to big.
59 // Size dependent fields can be found in the template class
60 // Sized_symbol. Targets may support their own derived classes.
65 // Because we want the class to be small, we don't use any virtual
66 // functions. But because symbols can be defined in different
67 // places, we need to classify them. This enum is the different
68 // sources of symbols we support.
71 // Symbol defined in a relocatable or dynamic input file--this is
72 // the most common case.
74 // Symbol defined in an Output_data, a special section created by
77 // Symbol defined in an Output_segment, with no associated
80 // Symbol value is constant.
82 // Symbol is undefined.
86 // When the source is IN_OUTPUT_SEGMENT, we need to describe what
88 enum Segment_offset_base
90 // From the start of the segment.
92 // From the end of the segment.
94 // From the filesz of the segment--i.e., after the loaded bytes
95 // but before the bytes which are allocated but zeroed.
99 // Return the symbol name.
102 { return this->name_
; }
104 // Return the (ANSI) demangled version of the name, if
105 // parameters.demangle() is true. Otherwise, return the name. This
106 // is intended to be used only for logging errors, so it's not
109 demangled_name() const;
111 // Return the symbol version. This will return NULL for an
112 // unversioned symbol.
115 { return this->version_
; }
117 // Return whether this version is the default for this symbol name
118 // (eg, "foo@@V2" is a default version; "foo@V1" is not). Only
119 // meaningful for versioned symbols.
123 gold_assert(this->version_
!= NULL
);
124 return this->is_def_
;
127 // Set that this version is the default for this symbol name.
130 { this->is_def_
= true; }
132 // Return the symbol source.
135 { return this->source_
; }
137 // Return the object with which this symbol is associated.
141 gold_assert(this->source_
== FROM_OBJECT
);
142 return this->u_
.from_object
.object
;
145 // Return the index of the section in the input relocatable or
146 // dynamic object file.
148 shndx(bool* is_ordinary
) const
150 gold_assert(this->source_
== FROM_OBJECT
);
151 *is_ordinary
= this->is_ordinary_shndx_
;
152 return this->u_
.from_object
.shndx
;
155 // Return the output data section with which this symbol is
156 // associated, if the symbol was specially defined with respect to
157 // an output data section.
161 gold_assert(this->source_
== IN_OUTPUT_DATA
);
162 return this->u_
.in_output_data
.output_data
;
165 // If this symbol was defined with respect to an output data
166 // section, return whether the value is an offset from end.
168 offset_is_from_end() const
170 gold_assert(this->source_
== IN_OUTPUT_DATA
);
171 return this->u_
.in_output_data
.offset_is_from_end
;
174 // Return the output segment with which this symbol is associated,
175 // if the symbol was specially defined with respect to an output
178 output_segment() const
180 gold_assert(this->source_
== IN_OUTPUT_SEGMENT
);
181 return this->u_
.in_output_segment
.output_segment
;
184 // If this symbol was defined with respect to an output segment,
185 // return the offset base.
189 gold_assert(this->source_
== IN_OUTPUT_SEGMENT
);
190 return this->u_
.in_output_segment
.offset_base
;
193 // Return the symbol binding.
196 { return this->binding_
; }
198 // Return the symbol type.
201 { return this->type_
; }
203 // Return the symbol visibility.
206 { return this->visibility_
; }
208 // Return the non-visibility part of the st_other field.
211 { return this->nonvis_
; }
213 // Return whether this symbol is a forwarder. This will never be
214 // true of a symbol found in the hash table, but may be true of
215 // symbol pointers attached to object files.
218 { return this->is_forwarder_
; }
220 // Mark this symbol as a forwarder.
223 { this->is_forwarder_
= true; }
225 // Return whether this symbol has an alias in the weak aliases table
229 { return this->has_alias_
; }
231 // Mark this symbol as having an alias.
234 { this->has_alias_
= true; }
236 // Return whether this symbol needs an entry in the dynamic symbol
239 needs_dynsym_entry() const
241 return (this->needs_dynsym_entry_
242 || (this->in_reg() && this->in_dyn()));
245 // Mark this symbol as needing an entry in the dynamic symbol table.
247 set_needs_dynsym_entry()
248 { this->needs_dynsym_entry_
= true; }
250 // Return whether this symbol should be added to the dynamic symbol
253 should_add_dynsym_entry() const;
255 // Return whether this symbol has been seen in a regular object.
258 { return this->in_reg_
; }
260 // Mark this symbol as having been seen in a regular object.
263 { this->in_reg_
= true; }
265 // Return whether this symbol has been seen in a dynamic object.
268 { return this->in_dyn_
; }
270 // Mark this symbol as having been seen in a dynamic object.
273 { this->in_dyn_
= true; }
275 // Return the index of this symbol in the output file symbol table.
276 // A value of -1U means that this symbol is not going into the
277 // output file. This starts out as zero, and is set to a non-zero
278 // value by Symbol_table::finalize. It is an error to ask for the
279 // symbol table index before it has been set.
283 gold_assert(this->symtab_index_
!= 0);
284 return this->symtab_index_
;
287 // Set the index of the symbol in the output file symbol table.
289 set_symtab_index(unsigned int index
)
291 gold_assert(index
!= 0);
292 this->symtab_index_
= index
;
295 // Return whether this symbol already has an index in the output
296 // file symbol table.
298 has_symtab_index() const
299 { return this->symtab_index_
!= 0; }
301 // Return the index of this symbol in the dynamic symbol table. A
302 // value of -1U means that this symbol is not going into the dynamic
303 // symbol table. This starts out as zero, and is set to a non-zero
304 // during Layout::finalize. It is an error to ask for the dynamic
305 // symbol table index before it has been set.
309 gold_assert(this->dynsym_index_
!= 0);
310 return this->dynsym_index_
;
313 // Set the index of the symbol in the dynamic symbol table.
315 set_dynsym_index(unsigned int index
)
317 gold_assert(index
!= 0);
318 this->dynsym_index_
= index
;
321 // Return whether this symbol already has an index in the dynamic
324 has_dynsym_index() const
325 { return this->dynsym_index_
!= 0; }
327 // Return whether this symbol has an entry in the GOT section.
328 // For a TLS symbol, this GOT entry will hold its tp-relative offset.
330 has_got_offset(unsigned int got_type
) const
331 { return this->got_offsets_
.get_offset(got_type
) != -1U; }
333 // Return the offset into the GOT section of this symbol.
335 got_offset(unsigned int got_type
) const
337 unsigned int got_offset
= this->got_offsets_
.get_offset(got_type
);
338 gold_assert(got_offset
!= -1U);
342 // Set the GOT offset of this symbol.
344 set_got_offset(unsigned int got_type
, unsigned int got_offset
)
345 { this->got_offsets_
.set_offset(got_type
, got_offset
); }
347 // Return whether this symbol has an entry in the PLT section.
349 has_plt_offset() const
350 { return this->has_plt_offset_
; }
352 // Return the offset into the PLT section of this symbol.
356 gold_assert(this->has_plt_offset());
357 return this->plt_offset_
;
360 // Set the PLT offset of this symbol.
362 set_plt_offset(unsigned int plt_offset
)
364 this->has_plt_offset_
= true;
365 this->plt_offset_
= plt_offset
;
368 // Return whether this dynamic symbol needs a special value in the
369 // dynamic symbol table.
371 needs_dynsym_value() const
372 { return this->needs_dynsym_value_
; }
374 // Set that this dynamic symbol needs a special value in the dynamic
377 set_needs_dynsym_value()
379 gold_assert(this->object()->is_dynamic());
380 this->needs_dynsym_value_
= true;
383 // Return true if the final value of this symbol is known at link
386 final_value_is_known() const;
388 // Return whether this is a defined symbol (not undefined or
394 if (this->source_
!= FROM_OBJECT
)
395 return this->source_
!= IS_UNDEFINED
;
396 unsigned int shndx
= this->shndx(&is_ordinary
);
398 ? shndx
!= elfcpp::SHN_UNDEF
399 : shndx
!= elfcpp::SHN_COMMON
);
402 // Return true if this symbol is from a dynamic object.
404 is_from_dynobj() const
406 return this->source_
== FROM_OBJECT
&& this->object()->is_dynamic();
409 // Return whether this is an undefined symbol.
414 return ((this->source_
== FROM_OBJECT
415 && this->shndx(&is_ordinary
) == elfcpp::SHN_UNDEF
417 || this->source_
== IS_UNDEFINED
);
420 // Return whether this is a weak undefined symbol.
422 is_weak_undefined() const
423 { return this->is_undefined() && this->binding() == elfcpp::STB_WEAK
; }
425 // Return whether this is an absolute symbol.
430 return ((this->source_
== FROM_OBJECT
431 && this->shndx(&is_ordinary
) == elfcpp::SHN_ABS
433 || this->source_
== IS_CONSTANT
);
436 // Return whether this is a common symbol.
441 return (this->source_
== FROM_OBJECT
442 && ((this->shndx(&is_ordinary
) == elfcpp::SHN_COMMON
444 || this->type_
== elfcpp::STT_COMMON
));
447 // Return whether this symbol can be seen outside this object.
449 is_externally_visible() const
451 return (this->visibility_
== elfcpp::STV_DEFAULT
452 || this->visibility_
== elfcpp::STV_PROTECTED
);
455 // Return true if this symbol can be preempted by a definition in
456 // another link unit.
458 is_preemptible() const
460 // It doesn't make sense to ask whether a symbol defined in
461 // another object is preemptible.
462 gold_assert(!this->is_from_dynobj());
464 // It doesn't make sense to ask whether an undefined symbol
466 gold_assert(!this->is_undefined());
468 // If a symbol does not have default visibility, it can not be
469 // seen outside this link unit and therefore is not preemptible.
470 if (this->visibility_
!= elfcpp::STV_DEFAULT
)
473 // If this symbol has been forced to be a local symbol by a
474 // version script, then it is not visible outside this link unit
475 // and is not preemptible.
476 if (this->is_forced_local_
)
479 // If we are not producing a shared library, then nothing is
481 if (!parameters
->options().shared())
484 // If the user used -Bsymbolic, then nothing is preemptible.
485 if (parameters
->options().Bsymbolic())
488 // If the user used -Bsymbolic-functions, then functions are not
489 // preemptible. We explicitly check for not being STT_OBJECT,
490 // rather than for being STT_FUNC, because that is what the GNU
492 if (this->type() != elfcpp::STT_OBJECT
493 && parameters
->options().Bsymbolic_functions())
496 // Otherwise the symbol is preemptible.
500 // Return true if this symbol is a function that needs a PLT entry.
501 // If the symbol is defined in a dynamic object or if it is subject
502 // to pre-emption, we need to make a PLT entry. If we're doing a
503 // static link, we don't create PLT entries.
505 needs_plt_entry() const
507 return (!parameters
->doing_static_link()
508 && this->type() == elfcpp::STT_FUNC
509 && (this->is_from_dynobj()
510 || this->is_undefined()
511 || this->is_preemptible()));
514 // When determining whether a reference to a symbol needs a dynamic
515 // relocation, we need to know several things about the reference.
516 // These flags may be or'ed together.
519 // Reference to the symbol's absolute address.
521 // A non-PIC reference.
527 // Given a direct absolute or pc-relative static relocation against
528 // the global symbol, this function returns whether a dynamic relocation
532 needs_dynamic_reloc(int flags
) const
534 // No dynamic relocations in a static link!
535 if (parameters
->doing_static_link())
538 // A reference to a weak undefined symbol from an executable should be
539 // statically resolved to 0, and does not need a dynamic relocation.
540 // This matches gnu ld behavior.
541 if (this->is_weak_undefined() && !parameters
->options().shared())
544 // A reference to an absolute symbol does not need a dynamic relocation.
545 if (this->is_absolute())
548 // An absolute reference within a position-independent output file
549 // will need a dynamic relocation.
550 if ((flags
& ABSOLUTE_REF
)
551 && parameters
->options().output_is_position_independent())
554 // A function call that can branch to a local PLT entry does not need
555 // a dynamic relocation. A non-pic pc-relative function call in a
556 // shared library cannot use a PLT entry.
557 if ((flags
& FUNCTION_CALL
)
558 && this->has_plt_offset()
559 && !((flags
& NON_PIC_REF
) && parameters
->options().shared()))
562 // A reference to any PLT entry in a non-position-independent executable
563 // does not need a dynamic relocation.
564 if (!parameters
->options().output_is_position_independent()
565 && this->has_plt_offset())
568 // A reference to a symbol defined in a dynamic object or to a
569 // symbol that is preemptible will need a dynamic relocation.
570 if (this->is_from_dynobj()
571 || this->is_undefined()
572 || this->is_preemptible())
575 // For all other cases, return FALSE.
579 // Given a direct absolute static relocation against
580 // the global symbol, where a dynamic relocation is needed, this
581 // function returns whether a relative dynamic relocation can be used.
582 // The caller must determine separately whether the static relocation
583 // is compatible with a relative relocation.
586 can_use_relative_reloc(bool is_function_call
) const
588 // A function call that can branch to a local PLT entry can
589 // use a RELATIVE relocation.
590 if (is_function_call
&& this->has_plt_offset())
593 // A reference to a symbol defined in a dynamic object or to a
594 // symbol that is preemptible can not use a RELATIVE relocaiton.
595 if (this->is_from_dynobj()
596 || this->is_undefined()
597 || this->is_preemptible())
600 // For all other cases, return TRUE.
604 // Return the output section where this symbol is defined. Return
605 // NULL if the symbol has an absolute value.
607 output_section() const;
609 // Set the symbol's output section. This is used for symbols
610 // defined in scripts. This should only be called after the symbol
611 // table has been finalized.
613 set_output_section(Output_section
*);
615 // Return whether there should be a warning for references to this
619 { return this->has_warning_
; }
621 // Mark this symbol as having a warning.
624 { this->has_warning_
= true; }
626 // Return whether this symbol is defined by a COPY reloc from a
629 is_copied_from_dynobj() const
630 { return this->is_copied_from_dynobj_
; }
632 // Mark this symbol as defined by a COPY reloc.
634 set_is_copied_from_dynobj()
635 { this->is_copied_from_dynobj_
= true; }
637 // Return whether this symbol is forced to visibility STB_LOCAL
638 // by a "local:" entry in a version script.
640 is_forced_local() const
641 { return this->is_forced_local_
; }
643 // Mark this symbol as forced to STB_LOCAL visibility.
645 set_is_forced_local()
646 { this->is_forced_local_
= true; }
649 // Instances of this class should always be created at a specific
652 { memset(this, 0, sizeof *this); }
654 // Initialize the general fields.
656 init_fields(const char* name
, const char* version
,
657 elfcpp::STT type
, elfcpp::STB binding
,
658 elfcpp::STV visibility
, unsigned char nonvis
);
660 // Initialize fields from an ELF symbol in OBJECT. ST_SHNDX is the
661 // section index, IS_ORDINARY is whether it is a normal section
662 // index rather than a special code.
663 template<int size
, bool big_endian
>
665 init_base_object(const char *name
, const char* version
, Object
* object
,
666 const elfcpp::Sym
<size
, big_endian
>&, unsigned int st_shndx
,
669 // Initialize fields for an Output_data.
671 init_base_output_data(const char* name
, const char* version
, Output_data
*,
672 elfcpp::STT
, elfcpp::STB
, elfcpp::STV
,
673 unsigned char nonvis
, bool offset_is_from_end
);
675 // Initialize fields for an Output_segment.
677 init_base_output_segment(const char* name
, const char* version
,
678 Output_segment
* os
, elfcpp::STT type
,
679 elfcpp::STB binding
, elfcpp::STV visibility
,
680 unsigned char nonvis
,
681 Segment_offset_base offset_base
);
683 // Initialize fields for a constant.
685 init_base_constant(const char* name
, const char* version
, elfcpp::STT type
,
686 elfcpp::STB binding
, elfcpp::STV visibility
,
687 unsigned char nonvis
);
689 // Initialize fields for an undefined symbol.
691 init_base_undefined(const char* name
, const char* version
, elfcpp::STT type
,
692 elfcpp::STB binding
, elfcpp::STV visibility
,
693 unsigned char nonvis
);
695 // Override existing symbol.
696 template<int size
, bool big_endian
>
698 override_base(const elfcpp::Sym
<size
, big_endian
>&, unsigned int st_shndx
,
699 bool is_ordinary
, Object
* object
, const char* version
);
701 // Override existing symbol with a special symbol.
703 override_base_with_special(const Symbol
* from
);
705 // Override symbol version.
707 override_version(const char* version
);
709 // Allocate a common symbol by giving it a location in the output
712 allocate_base_common(Output_data
*);
715 Symbol(const Symbol
&);
716 Symbol
& operator=(const Symbol
&);
718 // Symbol name (expected to point into a Stringpool).
720 // Symbol version (expected to point into a Stringpool). This may
722 const char* version_
;
726 // This struct is used if SOURCE_ == FROM_OBJECT.
729 // Object in which symbol is defined, or in which it was first
732 // Section number in object_ in which symbol is defined.
736 // This struct is used if SOURCE_ == IN_OUTPUT_DATA.
739 // Output_data in which symbol is defined. Before
740 // Layout::finalize the symbol's value is an offset within the
742 Output_data
* output_data
;
743 // True if the offset is from the end, false if the offset is
744 // from the beginning.
745 bool offset_is_from_end
;
748 // This struct is used if SOURCE_ == IN_OUTPUT_SEGMENT.
751 // Output_segment in which the symbol is defined. Before
752 // Layout::finalize the symbol's value is an offset.
753 Output_segment
* output_segment
;
754 // The base to use for the offset before Layout::finalize.
755 Segment_offset_base offset_base
;
759 // The index of this symbol in the output file. If the symbol is
760 // not going into the output file, this value is -1U. This field
761 // starts as always holding zero. It is set to a non-zero value by
762 // Symbol_table::finalize.
763 unsigned int symtab_index_
;
765 // The index of this symbol in the dynamic symbol table. If the
766 // symbol is not going into the dynamic symbol table, this value is
767 // -1U. This field starts as always holding zero. It is set to a
768 // non-zero value during Layout::finalize.
769 unsigned int dynsym_index_
;
771 // If this symbol has an entry in the GOT section (has_got_offset_
772 // is true), this holds the offset from the start of the GOT section.
773 // A symbol may have more than one GOT offset (e.g., when mixing
774 // modules compiled with two different TLS models), but will usually
776 Got_offset_list got_offsets_
;
778 // If this symbol has an entry in the PLT section (has_plt_offset_
779 // is true), then this is the offset from the start of the PLT
781 unsigned int plt_offset_
;
783 // Symbol type (bits 0 to 3).
784 elfcpp::STT type_
: 4;
785 // Symbol binding (bits 4 to 7).
786 elfcpp::STB binding_
: 4;
787 // Symbol visibility (bits 8 to 9).
788 elfcpp::STV visibility_
: 2;
789 // Rest of symbol st_other field (bits 10 to 15).
790 unsigned int nonvis_
: 6;
791 // The type of symbol (bits 16 to 18).
793 // True if this symbol always requires special target-specific
794 // handling (bit 19).
795 bool is_target_special_
: 1;
796 // True if this is the default version of the symbol (bit 20).
798 // True if this symbol really forwards to another symbol. This is
799 // used when we discover after the fact that two different entries
800 // in the hash table really refer to the same symbol. This will
801 // never be set for a symbol found in the hash table, but may be set
802 // for a symbol found in the list of symbols attached to an Object.
803 // It forwards to the symbol found in the forwarders_ map of
804 // Symbol_table (bit 21).
805 bool is_forwarder_
: 1;
806 // True if the symbol has an alias in the weak_aliases table in
807 // Symbol_table (bit 22).
809 // True if this symbol needs to be in the dynamic symbol table (bit
811 bool needs_dynsym_entry_
: 1;
812 // True if we've seen this symbol in a regular object (bit 24).
814 // True if we've seen this symbol in a dynamic object (bit 25).
816 // True if the symbol has an entry in the PLT section (bit 26).
817 bool has_plt_offset_
: 1;
818 // True if this is a dynamic symbol which needs a special value in
819 // the dynamic symbol table (bit 27).
820 bool needs_dynsym_value_
: 1;
821 // True if there is a warning for this symbol (bit 28).
822 bool has_warning_
: 1;
823 // True if we are using a COPY reloc for this symbol, so that the
824 // real definition lives in a dynamic object (bit 29).
825 bool is_copied_from_dynobj_
: 1;
826 // True if this symbol was forced to local visibility by a version
828 bool is_forced_local_
: 1;
829 // True if the field u_.from_object.shndx is an ordinary section
830 // index, not one of the special codes from SHN_LORESERVE to
832 bool is_ordinary_shndx_
: 1;
835 // The parts of a symbol which are size specific. Using a template
836 // derived class like this helps us use less space on a 32-bit system.
839 class Sized_symbol
: public Symbol
842 typedef typename
elfcpp::Elf_types
<size
>::Elf_Addr Value_type
;
843 typedef typename
elfcpp::Elf_types
<size
>::Elf_WXword Size_type
;
848 // Initialize fields from an ELF symbol in OBJECT. ST_SHNDX is the
849 // section index, IS_ORDINARY is whether it is a normal section
850 // index rather than a special code.
851 template<bool big_endian
>
853 init_object(const char *name
, const char* version
, Object
* object
,
854 const elfcpp::Sym
<size
, big_endian
>&, unsigned int st_shndx
,
857 // Initialize fields for an Output_data.
859 init_output_data(const char* name
, const char* version
, Output_data
*,
860 Value_type value
, Size_type symsize
, elfcpp::STT
,
861 elfcpp::STB
, elfcpp::STV
, unsigned char nonvis
,
862 bool offset_is_from_end
);
864 // Initialize fields for an Output_segment.
866 init_output_segment(const char* name
, const char* version
, Output_segment
*,
867 Value_type value
, Size_type symsize
, elfcpp::STT
,
868 elfcpp::STB
, elfcpp::STV
, unsigned char nonvis
,
869 Segment_offset_base offset_base
);
871 // Initialize fields for a constant.
873 init_constant(const char* name
, const char* version
, Value_type value
,
874 Size_type symsize
, elfcpp::STT
, elfcpp::STB
, elfcpp::STV
,
875 unsigned char nonvis
);
877 // Initialize fields for an undefined symbol.
879 init_undefined(const char* name
, const char* version
, elfcpp::STT
,
880 elfcpp::STB
, elfcpp::STV
, unsigned char nonvis
);
882 // Override existing symbol.
883 template<bool big_endian
>
885 override(const elfcpp::Sym
<size
, big_endian
>&, unsigned int st_shndx
,
886 bool is_ordinary
, Object
* object
, const char* version
);
888 // Override existing symbol with a special symbol.
890 override_with_special(const Sized_symbol
<size
>*);
892 // Return the symbol's value.
895 { return this->value_
; }
897 // Return the symbol's size (we can't call this 'size' because that
898 // is a template parameter).
901 { return this->symsize_
; }
903 // Set the symbol size. This is used when resolving common symbols.
905 set_symsize(Size_type symsize
)
906 { this->symsize_
= symsize
; }
908 // Set the symbol value. This is called when we store the final
909 // values of the symbols into the symbol table.
911 set_value(Value_type value
)
912 { this->value_
= value
; }
914 // Allocate a common symbol by giving it a location in the output
917 allocate_common(Output_data
*, Value_type value
);
920 Sized_symbol(const Sized_symbol
&);
921 Sized_symbol
& operator=(const Sized_symbol
&);
923 // Symbol value. Before Layout::finalize this is the offset in the
924 // input section. This is set to the final value during
931 // A struct describing a symbol defined by the linker, where the value
932 // of the symbol is defined based on an output section. This is used
933 // for symbols defined by the linker, like "_init_array_start".
935 struct Define_symbol_in_section
939 // The name of the output section with which this symbol should be
940 // associated. If there is no output section with that name, the
941 // symbol will be defined as zero.
942 const char* output_section
;
943 // The offset of the symbol within the output section. This is an
944 // offset from the start of the output section, unless start_at_end
945 // is true, in which case this is an offset from the end of the
948 // The size of the symbol.
952 // The symbol binding.
954 // The symbol visibility.
955 elfcpp::STV visibility
;
956 // The rest of the st_other field.
957 unsigned char nonvis
;
958 // If true, the value field is an offset from the end of the output
960 bool offset_is_from_end
;
961 // If true, this symbol is defined only if we see a reference to it.
965 // A struct describing a symbol defined by the linker, where the value
966 // of the symbol is defined based on a segment. This is used for
967 // symbols defined by the linker, like "_end". We describe the
968 // segment with which the symbol should be associated by its
969 // characteristics. If no segment meets these characteristics, the
970 // symbol will be defined as zero. If there is more than one segment
971 // which meets these characteristics, we will use the first one.
973 struct Define_symbol_in_segment
977 // The segment type where the symbol should be defined, typically
979 elfcpp::PT segment_type
;
980 // Bitmask of segment flags which must be set.
981 elfcpp::PF segment_flags_set
;
982 // Bitmask of segment flags which must be clear.
983 elfcpp::PF segment_flags_clear
;
984 // The offset of the symbol within the segment. The offset is
985 // calculated from the position set by offset_base.
987 // The size of the symbol.
991 // The symbol binding.
993 // The symbol visibility.
994 elfcpp::STV visibility
;
995 // The rest of the st_other field.
996 unsigned char nonvis
;
997 // The base from which we compute the offset.
998 Symbol::Segment_offset_base offset_base
;
999 // If true, this symbol is defined only if we see a reference to it.
1003 // This class manages warnings. Warnings are a GNU extension. When
1004 // we see a section named .gnu.warning.SYM in an object file, and if
1005 // we wind using the definition of SYM from that object file, then we
1006 // will issue a warning for any relocation against SYM from a
1007 // different object file. The text of the warning is the contents of
1008 // the section. This is not precisely the definition used by the old
1009 // GNU linker; the old GNU linker treated an occurrence of
1010 // .gnu.warning.SYM as defining a warning symbol. A warning symbol
1011 // would trigger a warning on any reference. However, it was
1012 // inconsistent in that a warning in a dynamic object only triggered
1013 // if there was no definition in a regular object. This linker is
1014 // different in that we only issue a warning if we use the symbol
1015 // definition from the same object file as the warning section.
1024 // Add a warning for symbol NAME in object OBJ. WARNING is the text
1027 add_warning(Symbol_table
* symtab
, const char* name
, Object
* obj
,
1028 const std::string
& warning
);
1030 // For each symbol for which we should give a warning, make a note
1033 note_warnings(Symbol_table
* symtab
);
1035 // Issue a warning for a reference to SYM at RELINFO's location.
1036 template<int size
, bool big_endian
>
1038 issue_warning(const Symbol
* sym
, const Relocate_info
<size
, big_endian
>*,
1039 size_t relnum
, off_t reloffset
) const;
1042 Warnings(const Warnings
&);
1043 Warnings
& operator=(const Warnings
&);
1045 // What we need to know to get the warning text.
1046 struct Warning_location
1048 // The object the warning is in.
1050 // The warning text.
1054 : object(NULL
), text()
1058 set(Object
* o
, const std::string
& t
)
1065 // A mapping from warning symbol names (canonicalized in
1066 // Symbol_table's namepool_ field) to warning information.
1067 typedef Unordered_map
<const char*, Warning_location
> Warning_table
;
1069 Warning_table warnings_
;
1072 // The main linker symbol table.
1077 // COUNT is an estimate of how many symbosl will be inserted in the
1078 // symbol table. It's ok to put 0 if you don't know; a correct
1079 // guess will just save some CPU by reducing hashtable resizes.
1080 Symbol_table(unsigned int count
, const Version_script_info
& version_script
);
1084 // Add COUNT external symbols from the relocatable object RELOBJ to
1085 // the symbol table. SYMS is the symbols, SYMNDX_OFFSET is the
1086 // offset in the symbol table of the first symbol, SYM_NAMES is
1087 // their names, SYM_NAME_SIZE is the size of SYM_NAMES. This sets
1088 // SYMPOINTERS to point to the symbols in the symbol table.
1089 template<int size
, bool big_endian
>
1091 add_from_relobj(Sized_relobj
<size
, big_endian
>* relobj
,
1092 const unsigned char* syms
, size_t count
,
1093 size_t symndx_offset
, const char* sym_names
,
1094 size_t sym_name_size
,
1095 typename Sized_relobj
<size
, big_endian
>::Symbols
*);
1097 // Add COUNT dynamic symbols from the dynamic object DYNOBJ to the
1098 // symbol table. SYMS is the symbols. SYM_NAMES is their names.
1099 // SYM_NAME_SIZE is the size of SYM_NAMES. The other parameters are
1100 // symbol version data.
1101 template<int size
, bool big_endian
>
1103 add_from_dynobj(Sized_dynobj
<size
, big_endian
>* dynobj
,
1104 const unsigned char* syms
, size_t count
,
1105 const char* sym_names
, size_t sym_name_size
,
1106 const unsigned char* versym
, size_t versym_size
,
1107 const std::vector
<const char*>*);
1109 // Define a special symbol based on an Output_data. It is a
1110 // multiple definition error if this symbol is already defined.
1112 define_in_output_data(const char* name
, const char* version
,
1113 Output_data
*, uint64_t value
, uint64_t symsize
,
1114 elfcpp::STT type
, elfcpp::STB binding
,
1115 elfcpp::STV visibility
, unsigned char nonvis
,
1116 bool offset_is_from_end
, bool only_if_ref
);
1118 // Define a special symbol based on an Output_segment. It is a
1119 // multiple definition error if this symbol is already defined.
1121 define_in_output_segment(const char* name
, const char* version
,
1122 Output_segment
*, uint64_t value
, uint64_t symsize
,
1123 elfcpp::STT type
, elfcpp::STB binding
,
1124 elfcpp::STV visibility
, unsigned char nonvis
,
1125 Symbol::Segment_offset_base
, bool only_if_ref
);
1127 // Define a special symbol with a constant value. It is a multiple
1128 // definition error if this symbol is already defined.
1130 define_as_constant(const char* name
, const char* version
,
1131 uint64_t value
, uint64_t symsize
, elfcpp::STT type
,
1132 elfcpp::STB binding
, elfcpp::STV visibility
,
1133 unsigned char nonvis
, bool only_if_ref
,
1134 bool force_override
);
1136 // Define a set of symbols in output sections. If ONLY_IF_REF is
1137 // true, only define them if they are referenced.
1139 define_symbols(const Layout
*, int count
, const Define_symbol_in_section
*,
1142 // Define a set of symbols in output segments. If ONLY_IF_REF is
1143 // true, only defined them if they are referenced.
1145 define_symbols(const Layout
*, int count
, const Define_symbol_in_segment
*,
1148 // Define SYM using a COPY reloc. POSD is the Output_data where the
1149 // symbol should be defined--typically a .dyn.bss section. VALUE is
1150 // the offset within POSD.
1153 define_with_copy_reloc(Sized_symbol
<size
>* sym
, Output_data
* posd
,
1154 typename
elfcpp::Elf_types
<size
>::Elf_Addr
);
1156 // Look up a symbol.
1158 lookup(const char*, const char* version
= NULL
) const;
1160 // Return the real symbol associated with the forwarder symbol FROM.
1162 resolve_forwards(const Symbol
* from
) const;
1164 // Return the sized version of a symbol in this table.
1167 get_sized_symbol(Symbol
*) const;
1170 const Sized_symbol
<size
>*
1171 get_sized_symbol(const Symbol
*) const;
1173 // Return the count of undefined symbols seen.
1175 saw_undefined() const
1176 { return this->saw_undefined_
; }
1178 // Allocate the common symbols
1180 allocate_commons(Layout
*);
1182 // Add a warning for symbol NAME in object OBJ. WARNING is the text
1185 add_warning(const char* name
, Object
* obj
, const std::string
& warning
)
1186 { this->warnings_
.add_warning(this, name
, obj
, warning
); }
1188 // Canonicalize a symbol name for use in the hash table.
1190 canonicalize_name(const char* name
)
1191 { return this->namepool_
.add(name
, true, NULL
); }
1193 // Possibly issue a warning for a reference to SYM at LOCATION which
1195 template<int size
, bool big_endian
>
1197 issue_warning(const Symbol
* sym
,
1198 const Relocate_info
<size
, big_endian
>* relinfo
,
1199 size_t relnum
, off_t reloffset
) const
1200 { this->warnings_
.issue_warning(sym
, relinfo
, relnum
, reloffset
); }
1202 // Check candidate_odr_violations_ to find symbols with the same name
1203 // but apparently different definitions (different source-file/line-no).
1205 detect_odr_violations(const Task
*, const char* output_file_name
) const;
1207 // Add any undefined symbols named on the command line to the symbol
1210 add_undefined_symbols_from_command_line();
1212 // SYM is defined using a COPY reloc. Return the dynamic object
1213 // where the original definition was found.
1215 get_copy_source(const Symbol
* sym
) const;
1217 // Set the dynamic symbol indexes. INDEX is the index of the first
1218 // global dynamic symbol. Pointers to the symbols are stored into
1219 // the vector. The names are stored into the Stringpool. This
1220 // returns an updated dynamic symbol index.
1222 set_dynsym_indexes(unsigned int index
, std::vector
<Symbol
*>*,
1223 Stringpool
*, Versions
*);
1225 // Finalize the symbol table after we have set the final addresses
1226 // of all the input sections. This sets the final symbol indexes,
1227 // values and adds the names to *POOL. *PLOCAL_SYMCOUNT is the
1228 // index of the first global symbol. OFF is the file offset of the
1229 // global symbol table, DYNOFF is the offset of the globals in the
1230 // dynamic symbol table, DYN_GLOBAL_INDEX is the index of the first
1231 // global dynamic symbol, and DYNCOUNT is the number of global
1232 // dynamic symbols. This records the parameters, and returns the
1233 // new file offset. It updates *PLOCAL_SYMCOUNT if it created any
1236 finalize(off_t off
, off_t dynoff
, size_t dyn_global_index
, size_t dyncount
,
1237 Stringpool
* pool
, unsigned int *plocal_symcount
);
1239 // Write out the global symbols.
1241 write_globals(const Input_objects
*, const Stringpool
*, const Stringpool
*,
1242 Output_symtab_xindex
*, Output_symtab_xindex
*,
1243 Output_file
*) const;
1245 // Write out a section symbol. Return the updated offset.
1247 write_section_symbol(const Output_section
*, Output_symtab_xindex
*,
1248 Output_file
*, off_t
) const;
1250 // Dump statistical information to stderr.
1252 print_stats() const;
1254 // Return the version script information.
1255 const Version_script_info
&
1256 version_script() const
1257 { return version_script_
; }
1260 Symbol_table(const Symbol_table
&);
1261 Symbol_table
& operator=(const Symbol_table
&);
1263 // The type of the list of common symbols.
1264 typedef std::vector
<Symbol
*> Commons_type
;
1266 // Make FROM a forwarder symbol to TO.
1268 make_forwarder(Symbol
* from
, Symbol
* to
);
1271 template<int size
, bool big_endian
>
1273 add_from_object(Object
*, const char *name
, Stringpool::Key name_key
,
1274 const char *version
, Stringpool::Key version_key
,
1275 bool def
, const elfcpp::Sym
<size
, big_endian
>& sym
,
1276 unsigned int st_shndx
, bool is_ordinary
,
1277 unsigned int orig_st_shndx
);
1280 template<int size
, bool big_endian
>
1282 resolve(Sized_symbol
<size
>* to
,
1283 const elfcpp::Sym
<size
, big_endian
>& sym
,
1284 unsigned int st_shndx
, bool is_ordinary
,
1285 unsigned int orig_st_shndx
,
1286 Object
*, const char* version
);
1288 template<int size
, bool big_endian
>
1290 resolve(Sized_symbol
<size
>* to
, const Sized_symbol
<size
>* from
,
1291 const char* version
);
1293 // Record that a symbol is forced to be local by a version script.
1295 force_local(Symbol
*);
1297 // Adjust NAME and *NAME_KEY for wrapping.
1299 wrap_symbol(Object
* object
, const char*, Stringpool::Key
* name_key
);
1301 // Whether we should override a symbol, based on flags in
1304 should_override(const Symbol
*, unsigned int, Object
*, bool*);
1306 // Override a symbol.
1307 template<int size
, bool big_endian
>
1309 override(Sized_symbol
<size
>* tosym
,
1310 const elfcpp::Sym
<size
, big_endian
>& fromsym
,
1311 unsigned int st_shndx
, bool is_ordinary
,
1312 Object
* object
, const char* version
);
1314 // Whether we should override a symbol with a special symbol which
1315 // is automatically defined by the linker.
1317 should_override_with_special(const Symbol
*);
1319 // Override a symbol with a special symbol.
1322 override_with_special(Sized_symbol
<size
>* tosym
,
1323 const Sized_symbol
<size
>* fromsym
);
1325 // Record all weak alias sets for a dynamic object.
1328 record_weak_aliases(std::vector
<Sized_symbol
<size
>*>*);
1330 // Define a special symbol.
1331 template<int size
, bool big_endian
>
1333 define_special_symbol(const char** pname
, const char** pversion
,
1334 bool only_if_ref
, Sized_symbol
<size
>** poldsym
);
1336 // Define a symbol in an Output_data, sized version.
1339 do_define_in_output_data(const char* name
, const char* version
, Output_data
*,
1340 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1341 typename
elfcpp::Elf_types
<size
>::Elf_WXword ssize
,
1342 elfcpp::STT type
, elfcpp::STB binding
,
1343 elfcpp::STV visibility
, unsigned char nonvis
,
1344 bool offset_is_from_end
, bool only_if_ref
);
1346 // Define a symbol in an Output_segment, sized version.
1349 do_define_in_output_segment(
1350 const char* name
, const char* version
, Output_segment
* os
,
1351 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1352 typename
elfcpp::Elf_types
<size
>::Elf_WXword ssize
,
1353 elfcpp::STT type
, elfcpp::STB binding
,
1354 elfcpp::STV visibility
, unsigned char nonvis
,
1355 Symbol::Segment_offset_base offset_base
, bool only_if_ref
);
1357 // Define a symbol as a constant, sized version.
1360 do_define_as_constant(
1361 const char* name
, const char* version
,
1362 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1363 typename
elfcpp::Elf_types
<size
>::Elf_WXword ssize
,
1364 elfcpp::STT type
, elfcpp::STB binding
,
1365 elfcpp::STV visibility
, unsigned char nonvis
,
1366 bool only_if_ref
, bool force_override
);
1368 // Add any undefined symbols named on the command line to the symbol
1369 // table, sized version.
1372 do_add_undefined_symbols_from_command_line();
1374 // Allocate the common symbols, sized version.
1377 do_allocate_commons(Layout
*);
1379 // Allocate the common symbols from one list.
1382 do_allocate_commons_list(Layout
*, bool is_tls
, Commons_type
*);
1384 // Implement detect_odr_violations.
1385 template<int size
, bool big_endian
>
1387 sized_detect_odr_violations() const;
1389 // Finalize symbols specialized for size.
1392 sized_finalize(off_t
, Stringpool
*, unsigned int*);
1394 // Finalize a symbol. Return whether it should be added to the
1398 sized_finalize_symbol(Symbol
*);
1400 // Add a symbol the final symtab by setting its index.
1403 add_to_final_symtab(Symbol
*, Stringpool
*, unsigned int* pindex
, off_t
* poff
);
1405 // Write globals specialized for size and endianness.
1406 template<int size
, bool big_endian
>
1408 sized_write_globals(const Input_objects
*, const Stringpool
*,
1409 const Stringpool
*, Output_symtab_xindex
*,
1410 Output_symtab_xindex
*, Output_file
*) const;
1412 // Write out a symbol to P.
1413 template<int size
, bool big_endian
>
1415 sized_write_symbol(Sized_symbol
<size
>*,
1416 typename
elfcpp::Elf_types
<size
>::Elf_Addr value
,
1418 const Stringpool
*, unsigned char* p
) const;
1420 // Possibly warn about an undefined symbol from a dynamic object.
1422 warn_about_undefined_dynobj_symbol(const Input_objects
*, Symbol
*) const;
1424 // Write out a section symbol, specialized for size and endianness.
1425 template<int size
, bool big_endian
>
1427 sized_write_section_symbol(const Output_section
*, Output_symtab_xindex
*,
1428 Output_file
*, off_t
) const;
1430 // The type of the symbol hash table.
1432 typedef std::pair
<Stringpool::Key
, Stringpool::Key
> Symbol_table_key
;
1434 struct Symbol_table_hash
1437 operator()(const Symbol_table_key
&) const;
1440 struct Symbol_table_eq
1443 operator()(const Symbol_table_key
&, const Symbol_table_key
&) const;
1446 typedef Unordered_map
<Symbol_table_key
, Symbol
*, Symbol_table_hash
,
1447 Symbol_table_eq
> Symbol_table_type
;
1449 // The type of the list of symbols which have been forced local.
1450 typedef std::vector
<Symbol
*> Forced_locals
;
1452 // A map from symbols with COPY relocs to the dynamic objects where
1453 // they are defined.
1454 typedef Unordered_map
<const Symbol
*, Dynobj
*> Copied_symbol_dynobjs
;
1456 // A map from symbol name (as a pointer into the namepool) to all
1457 // the locations the symbols is (weakly) defined (and certain other
1458 // conditions are met). This map will be used later to detect
1459 // possible One Definition Rule (ODR) violations.
1460 struct Symbol_location
1462 Object
* object
; // Object where the symbol is defined.
1463 unsigned int shndx
; // Section-in-object where the symbol is defined.
1464 off_t offset
; // Offset-in-section where the symbol is defined.
1465 bool operator==(const Symbol_location
& that
) const
1467 return (this->object
== that
.object
1468 && this->shndx
== that
.shndx
1469 && this->offset
== that
.offset
);
1473 struct Symbol_location_hash
1475 size_t operator()(const Symbol_location
& loc
) const
1476 { return reinterpret_cast<uintptr_t>(loc
.object
) ^ loc
.offset
^ loc
.shndx
; }
1479 typedef Unordered_map
<const char*,
1480 Unordered_set
<Symbol_location
, Symbol_location_hash
> >
1483 // We increment this every time we see a new undefined symbol, for
1484 // use in archive groups.
1486 // The index of the first global symbol in the output file.
1487 unsigned int first_global_index_
;
1488 // The file offset within the output symtab section where we should
1491 // The number of global symbols we want to write out.
1492 unsigned int output_count_
;
1493 // The file offset of the global dynamic symbols, or 0 if none.
1494 off_t dynamic_offset_
;
1495 // The index of the first global dynamic symbol.
1496 unsigned int first_dynamic_global_index_
;
1497 // The number of global dynamic symbols, or 0 if none.
1498 unsigned int dynamic_count_
;
1499 // The symbol hash table.
1500 Symbol_table_type table_
;
1501 // A pool of symbol names. This is used for all global symbols.
1502 // Entries in the hash table point into this pool.
1503 Stringpool namepool_
;
1504 // Forwarding symbols.
1505 Unordered_map
<const Symbol
*, Symbol
*> forwarders_
;
1506 // Weak aliases. A symbol in this list points to the next alias.
1507 // The aliases point to each other in a circular list.
1508 Unordered_map
<Symbol
*, Symbol
*> weak_aliases_
;
1509 // We don't expect there to be very many common symbols, so we keep
1510 // a list of them. When we find a common symbol we add it to this
1511 // list. It is possible that by the time we process the list the
1512 // symbol is no longer a common symbol. It may also have become a
1514 Commons_type commons_
;
1515 // This is like the commons_ field, except that it holds TLS common
1517 Commons_type tls_commons_
;
1518 // A list of symbols which have been forced to be local. We don't
1519 // expect there to be very many of them, so we keep a list of them
1520 // rather than walking the whole table to find them.
1521 Forced_locals forced_locals_
;
1522 // Manage symbol warnings.
1524 // Manage potential One Definition Rule (ODR) violations.
1525 Odr_map candidate_odr_violations_
;
1527 // When we emit a COPY reloc for a symbol, we define it in an
1528 // Output_data. When it's time to emit version information for it,
1529 // we need to know the dynamic object in which we found the original
1530 // definition. This maps symbols with COPY relocs to the dynamic
1531 // object where they were defined.
1532 Copied_symbol_dynobjs copied_symbol_dynobjs_
;
1533 // Information parsed from the version script, if any.
1534 const Version_script_info
& version_script_
;
1537 // We inline get_sized_symbol for efficiency.
1541 Symbol_table::get_sized_symbol(Symbol
* sym
) const
1543 gold_assert(size
== parameters
->target().get_size());
1544 return static_cast<Sized_symbol
<size
>*>(sym
);
1548 const Sized_symbol
<size
>*
1549 Symbol_table::get_sized_symbol(const Symbol
* sym
) const
1551 gold_assert(size
== parameters
->target().get_size());
1552 return static_cast<const Sized_symbol
<size
>*>(sym
);
1555 } // End namespace gold.
1557 #endif // !defined(GOLD_SYMTAB_H)