1 // symtab.h -- the gold symbol table -*- C++ -*-
3 // Copyright 2006, 2007 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>
55 // The base class of an entry in the symbol table. The symbol table
56 // can have a lot of entries, so we don't want this class to big.
57 // Size dependent fields can be found in the template class
58 // Sized_symbol. Targets may support their own derived classes.
63 // Because we want the class to be small, we don't use any virtual
64 // functions. But because symbols can be defined in different
65 // places, we need to classify them. This enum is the different
66 // sources of symbols we support.
69 // Symbol defined in a relocatable or dynamic input file--this is
70 // the most common case.
72 // Symbol defined in an Output_data, a special section created by
75 // Symbol defined in an Output_segment, with no associated
78 // Symbol value is constant.
82 // When the source is IN_OUTPUT_SEGMENT, we need to describe what
84 enum Segment_offset_base
86 // From the start of the segment.
88 // From the end of the segment.
90 // From the filesz of the segment--i.e., after the loaded bytes
91 // but before the bytes which are allocated but zeroed.
95 // Return the symbol name.
98 { return this->name_; }
100 // Return the symbol version. This will return NULL for an
101 // unversioned symbol.
104 { return this->version_; }
106 // Return the symbol source.
109 { return this->source_; }
111 // Return the object with which this symbol is associated.
115 gold_assert(this->source_ == FROM_OBJECT);
116 return this->u_.from_object.object;
119 // Return the index of the section in the input relocatable or
120 // dynamic object file.
124 gold_assert(this->source_ == FROM_OBJECT);
125 return this->u_.from_object.shndx;
128 // Return the output data section with which this symbol is
129 // associated, if the symbol was specially defined with respect to
130 // an output data section.
134 gold_assert(this->source_ == IN_OUTPUT_DATA);
135 return this->u_.in_output_data.output_data;
138 // If this symbol was defined with respect to an output data
139 // section, return whether the value is an offset from end.
141 offset_is_from_end() const
143 gold_assert(this->source_ == IN_OUTPUT_DATA);
144 return this->u_.in_output_data.offset_is_from_end;
147 // Return the output segment with which this symbol is associated,
148 // if the symbol was specially defined with respect to an output
151 output_segment() const
153 gold_assert(this->source_ == IN_OUTPUT_SEGMENT);
154 return this->u_.in_output_segment.output_segment;
157 // If this symbol was defined with respect to an output segment,
158 // return the offset base.
162 gold_assert(this->source_ == IN_OUTPUT_SEGMENT);
163 return this->u_.in_output_segment.offset_base;
166 // Return the symbol binding.
169 { return this->binding_; }
171 // Return the symbol type.
174 { return this->type_; }
176 // Return the symbol visibility.
179 { return this->visibility_; }
181 // Return the non-visibility part of the st_other field.
184 { return this->nonvis_; }
186 // Return whether this symbol is a forwarder. This will never be
187 // true of a symbol found in the hash table, but may be true of
188 // symbol pointers attached to object files.
191 { return this->is_forwarder_; }
193 // Mark this symbol as a forwarder.
196 { this->is_forwarder_ = true; }
198 // Return whether this symbol has an alias in the weak aliases table
202 { return this->has_alias_; }
204 // Mark this symbol as having an alias.
207 { this->has_alias_ = true; }
209 // Return whether this symbol needs an entry in the dynamic symbol
212 needs_dynsym_entry() const
214 return (this->needs_dynsym_entry_
215 || (this->in_reg() && this->in_dyn()));
218 // Mark this symbol as needing an entry in the dynamic symbol table.
220 set_needs_dynsym_entry()
221 { this->needs_dynsym_entry_ = true; }
223 // Return whether this symbol should be added to the dynamic symbol
226 should_add_dynsym_entry() const;
228 // Return whether this symbol has been seen in a regular object.
231 { return this->in_reg_; }
233 // Mark this symbol as having been seen in a regular object.
236 { this->in_reg_ = true; }
238 // Return whether this symbol has been seen in a dynamic object.
241 { return this->in_dyn_; }
243 // Mark this symbol as having been seen in a dynamic object.
246 { this->in_dyn_ = true; }
248 // Return the index of this symbol in the output file symbol table.
249 // A value of -1U means that this symbol is not going into the
250 // output file. This starts out as zero, and is set to a non-zero
251 // value by Symbol_table::finalize. It is an error to ask for the
252 // symbol table index before it has been set.
256 gold_assert(this->symtab_index_ != 0);
257 return this->symtab_index_;
260 // Set the index of the symbol in the output file symbol table.
262 set_symtab_index(unsigned int index)
264 gold_assert(index != 0);
265 this->symtab_index_ = index;
268 // Return whether this symbol already has an index in the output
269 // file symbol table.
271 has_symtab_index() const
272 { return this->symtab_index_ != 0; }
274 // Return the index of this symbol in the dynamic symbol table. A
275 // value of -1U means that this symbol is not going into the dynamic
276 // symbol table. This starts out as zero, and is set to a non-zero
277 // during Layout::finalize. It is an error to ask for the dynamic
278 // symbol table index before it has been set.
282 gold_assert(this->dynsym_index_ != 0);
283 return this->dynsym_index_;
286 // Set the index of the symbol in the dynamic symbol table.
288 set_dynsym_index(unsigned int index)
290 gold_assert(index != 0);
291 this->dynsym_index_ = index;
294 // Return whether this symbol already has an index in the dynamic
297 has_dynsym_index() const
298 { return this->dynsym_index_ != 0; }
300 // Return whether this symbol has an entry in the GOT section.
302 has_got_offset() const
303 { return this->has_got_offset_; }
305 // Return the offset into the GOT section of this symbol.
309 gold_assert(this->has_got_offset());
310 return this->got_offset_;
313 // Set the GOT offset of this symbol.
315 set_got_offset(unsigned int got_offset)
317 this->has_got_offset_ = true;
318 this->got_offset_ = got_offset;
321 // Return whether this symbol has an entry in the PLT section.
323 has_plt_offset() const
324 { return this->has_plt_offset_; }
326 // Return the offset into the PLT section of this symbol.
330 gold_assert(this->has_plt_offset());
331 return this->plt_offset_;
334 // Set the PLT offset of this symbol.
336 set_plt_offset(unsigned int plt_offset)
338 this->has_plt_offset_ = true;
339 this->plt_offset_ = plt_offset;
342 // Return whether this dynamic symbol needs a special value in the
343 // dynamic symbol table.
345 needs_dynsym_value() const
346 { return this->needs_dynsym_value_; }
348 // Set that this dynamic symbol needs a special value in the dynamic
351 set_needs_dynsym_value()
353 gold_assert(this->object()->is_dynamic());
354 this->needs_dynsym_value_ = true;
357 // Return true if the final value of this symbol is known at link
360 final_value_is_known() const;
362 // Return whether this is a defined symbol (not undefined or
367 return (this->source_ != FROM_OBJECT
368 || (this->shndx() != elfcpp::SHN_UNDEF
369 && this->shndx() != elfcpp::SHN_COMMON));
372 // Return true if this symbol is from a dynamic object.
374 is_from_dynobj() const
376 return this->source_ == FROM_OBJECT && this->object()->is_dynamic();
379 // Return whether this is an undefined symbol.
383 return this->source_ == FROM_OBJECT && this->shndx() == elfcpp::SHN_UNDEF;
386 // Return whether this is a common symbol.
390 return (this->source_ == FROM_OBJECT
391 && (this->shndx() == elfcpp::SHN_COMMON
392 || this->type_ == elfcpp::STT_COMMON));
395 // Return whether this symbol can be seen outside this object.
397 is_externally_visible() const
399 return (this->visibility_ == elfcpp::STV_DEFAULT
400 || this->visibility_ == elfcpp::STV_PROTECTED);
403 // Return true if this symbol can be preempted by a definition in
404 // another link unit.
406 is_preemptible() const
408 return (this->visibility_ != elfcpp::STV_INTERNAL
409 && this->visibility_ != elfcpp::STV_HIDDEN
410 && this->visibility_ != elfcpp::STV_PROTECTED
411 && parameters->output_is_shared()
412 && !parameters->symbolic());
415 // Return true if this symbol is a function that needs a PLT entry.
416 // If the symbol is defined in a dynamic object or if it is subject
417 // to pre-emption, we need to make a PLT entry.
419 needs_plt_entry() const
421 return (this->type() == elfcpp::STT_FUNC
422 && (this->is_from_dynobj() || this->is_preemptible()));
425 // Given a direct absolute or pc-relative static relocation against
426 // the global symbol, this function returns whether a dynamic relocation
430 needs_dynamic_reloc(bool is_absolute_ref, bool is_function_call) const
432 // An absolute reference within a position-independent output file
433 // will need a dynamic relocaion.
434 if (is_absolute_ref && parameters->output_is_position_independent())
437 // A function call that can branch to a local PLT entry does not need
438 // a dynamic relocation.
439 if (is_function_call && this->has_plt_offset())
442 // A reference to any PLT entry in a non-position-independent executable
443 // does not need a dynamic relocation.
444 if (!parameters->output_is_position_independent()
445 && this->has_plt_offset())
448 // A reference to a symbol defined in a dynamic object or to a
449 // symbol that is preemptible will need a dynamic relocation.
450 if (this->is_from_dynobj() || this->is_preemptible())
453 // For all other cases, return FALSE.
457 // Given a direct absolute static relocation against
458 // the global symbol, where a dynamic relocation is needed, this
459 // function returns whether a relative dynamic relocation can be used.
460 // The caller must determine separately whether the static relocation
461 // is compatible with a relative relocation.
464 can_use_relative_reloc(bool is_function_call) const
466 // A function call that can branch to a local PLT entry can
467 // use a RELATIVE relocation.
468 if (is_function_call && this->has_plt_offset())
471 // A reference to a symbol defined in a dynamic object or to a
472 // symbol that is preemptible can not use a RELATIVE relocaiton.
473 if (this->is_from_dynobj() || this->is_preemptible())
476 // For all other cases, return TRUE.
480 // Return whether there should be a warning for references to this
484 { return this->has_warning_; }
486 // Mark this symbol as having a warning.
489 { this->has_warning_ = true; }
491 // Return whether this symbol is defined by a COPY reloc from a
494 is_copied_from_dynobj() const
495 { return this->is_copied_from_dynobj_; }
497 // Mark this symbol as defined by a COPY reloc.
499 set_is_copied_from_dynobj()
500 { this->is_copied_from_dynobj_ = true; }
502 // Mark this symbol as needing its value written to the GOT even when
503 // the value is subject to dynamic relocation (e.g., when the target
504 // uses a RELATIVE relocation for the GOT entry).
506 set_needs_value_in_got()
507 { this->needs_value_in_got_ = true; }
509 // Return whether this symbol needs its value written to the GOT even
510 // when the value is subject to dynamic relocation.
512 needs_value_in_got() const
513 { return this->needs_value_in_got_; }
516 // Instances of this class should always be created at a specific
519 { memset(this, 0, sizeof *this); }
521 // Initialize the general fields.
523 init_fields(const char* name, const char* version,
524 elfcpp::STT type, elfcpp::STB binding,
525 elfcpp::STV visibility, unsigned char nonvis);
527 // Initialize fields from an ELF symbol in OBJECT.
528 template<int size, bool big_endian>
530 init_base(const char *name, const char* version, Object* object,
531 const elfcpp::Sym<size, big_endian>&);
533 // Initialize fields for an Output_data.
535 init_base(const char* name, Output_data*, elfcpp::STT, elfcpp::STB,
536 elfcpp::STV, unsigned char nonvis, bool offset_is_from_end);
538 // Initialize fields for an Output_segment.
540 init_base(const char* name, Output_segment* os, elfcpp::STT type,
541 elfcpp::STB binding, elfcpp::STV visibility,
542 unsigned char nonvis, Segment_offset_base offset_base);
544 // Initialize fields for a constant.
546 init_base(const char* name, elfcpp::STT type, elfcpp::STB binding,
547 elfcpp::STV visibility, unsigned char nonvis);
549 // Override existing symbol.
550 template<int size, bool big_endian>
552 override_base(const elfcpp::Sym<size, big_endian>&, Object* object,
553 const char* version);
555 // Override existing symbol with a special symbol.
557 override_base_with_special(const Symbol* from);
560 Symbol(const Symbol&);
561 Symbol& operator=(const Symbol&);
563 // Symbol name (expected to point into a Stringpool).
565 // Symbol version (expected to point into a Stringpool). This may
567 const char* version_;
571 // This struct is used if SOURCE_ == FROM_OBJECT.
574 // Object in which symbol is defined, or in which it was first
577 // Section number in object_ in which symbol is defined.
581 // This struct is used if SOURCE_ == IN_OUTPUT_DATA.
584 // Output_data in which symbol is defined. Before
585 // Layout::finalize the symbol's value is an offset within the
587 Output_data* output_data;
588 // True if the offset is from the end, false if the offset is
589 // from the beginning.
590 bool offset_is_from_end;
593 // This struct is used if SOURCE_ == IN_OUTPUT_SEGMENT.
596 // Output_segment in which the symbol is defined. Before
597 // Layout::finalize the symbol's value is an offset.
598 Output_segment* output_segment;
599 // The base to use for the offset before Layout::finalize.
600 Segment_offset_base offset_base;
604 // The index of this symbol in the output file. If the symbol is
605 // not going into the output file, this value is -1U. This field
606 // starts as always holding zero. It is set to a non-zero value by
607 // Symbol_table::finalize.
608 unsigned int symtab_index_;
610 // The index of this symbol in the dynamic symbol table. If the
611 // symbol is not going into the dynamic symbol table, this value is
612 // -1U. This field starts as always holding zero. It is set to a
613 // non-zero value during Layout::finalize.
614 unsigned int dynsym_index_;
616 // If this symbol has an entry in the GOT section (has_got_offset_
617 // is true), this is the offset from the start of the GOT section.
618 unsigned int got_offset_;
620 // If this symbol has an entry in the PLT section (has_plt_offset_
621 // is true), then this is the offset from the start of the PLT
623 unsigned int plt_offset_;
626 elfcpp::STT type_ : 4;
628 elfcpp::STB binding_ : 4;
629 // Symbol visibility.
630 elfcpp::STV visibility_ : 2;
631 // Rest of symbol st_other field.
632 unsigned int nonvis_ : 6;
633 // The type of symbol.
635 // True if this symbol always requires special target-specific
637 bool is_target_special_ : 1;
638 // True if this is the default version of the symbol.
640 // True if this symbol really forwards to another symbol. This is
641 // used when we discover after the fact that two different entries
642 // in the hash table really refer to the same symbol. This will
643 // never be set for a symbol found in the hash table, but may be set
644 // for a symbol found in the list of symbols attached to an Object.
645 // It forwards to the symbol found in the forwarders_ map of
647 bool is_forwarder_ : 1;
648 // True if the symbol has an alias in the weak_aliases table in
651 // True if this symbol needs to be in the dynamic symbol table.
652 bool needs_dynsym_entry_ : 1;
653 // True if we've seen this symbol in a regular object.
655 // True if we've seen this symbol in a dynamic object.
657 // True if the symbol has an entry in the GOT section.
658 bool has_got_offset_ : 1;
659 // True if the symbol has an entry in the PLT section.
660 bool has_plt_offset_ : 1;
661 // True if this is a dynamic symbol which needs a special value in
662 // the dynamic symbol table.
663 bool needs_dynsym_value_ : 1;
664 // True if there is a warning for this symbol.
665 bool has_warning_ : 1;
666 // True if we are using a COPY reloc for this symbol, so that the
667 // real definition lives in a dynamic object.
668 bool is_copied_from_dynobj_ : 1;
669 // True if the static value should be written to the GOT even
670 // when the final value is subject to dynamic relocation.
671 bool needs_value_in_got_ : 1;
674 // The parts of a symbol which are size specific. Using a template
675 // derived class like this helps us use less space on a 32-bit system.
678 class Sized_symbol : public Symbol
681 typedef typename elfcpp::Elf_types<size>::Elf_Addr Value_type;
682 typedef typename elfcpp::Elf_types<size>::Elf_WXword Size_type;
687 // Initialize fields from an ELF symbol in OBJECT.
688 template<bool big_endian>
690 init(const char *name, const char* version, Object* object,
691 const elfcpp::Sym<size, big_endian>&);
693 // Initialize fields for an Output_data.
695 init(const char* name, Output_data*, Value_type value, Size_type symsize,
696 elfcpp::STT, elfcpp::STB, elfcpp::STV, unsigned char nonvis,
697 bool offset_is_from_end);
699 // Initialize fields for an Output_segment.
701 init(const char* name, Output_segment*, Value_type value, Size_type symsize,
702 elfcpp::STT, elfcpp::STB, elfcpp::STV, unsigned char nonvis,
703 Segment_offset_base offset_base);
705 // Initialize fields for a constant.
707 init(const char* name, Value_type value, Size_type symsize,
708 elfcpp::STT, elfcpp::STB, elfcpp::STV, unsigned char nonvis);
710 // Override existing symbol.
711 template<bool big_endian>
713 override(const elfcpp::Sym<size, big_endian>&, Object* object,
714 const char* version);
716 // Override existing symbol with a special symbol.
718 override_with_special(const Sized_symbol<size>*);
720 // Return the symbol's value.
723 { return this->value_; }
725 // Return the symbol's size (we can't call this 'size' because that
726 // is a template parameter).
729 { return this->symsize_; }
731 // Set the symbol size. This is used when resolving common symbols.
733 set_symsize(Size_type symsize)
734 { this->symsize_ = symsize; }
736 // Set the symbol value. This is called when we store the final
737 // values of the symbols into the symbol table.
739 set_value(Value_type value)
740 { this->value_ = value; }
743 Sized_symbol(const Sized_symbol&);
744 Sized_symbol& operator=(const Sized_symbol&);
746 // Symbol value. Before Layout::finalize this is the offset in the
747 // input section. This is set to the final value during
754 // A struct describing a symbol defined by the linker, where the value
755 // of the symbol is defined based on an output section. This is used
756 // for symbols defined by the linker, like "_init_array_start".
758 struct Define_symbol_in_section
762 // The name of the output section with which this symbol should be
763 // associated. If there is no output section with that name, the
764 // symbol will be defined as zero.
765 const char* output_section;
766 // The offset of the symbol within the output section. This is an
767 // offset from the start of the output section, unless start_at_end
768 // is true, in which case this is an offset from the end of the
771 // The size of the symbol.
775 // The symbol binding.
777 // The symbol visibility.
778 elfcpp::STV visibility;
779 // The rest of the st_other field.
780 unsigned char nonvis;
781 // If true, the value field is an offset from the end of the output
783 bool offset_is_from_end;
784 // If true, this symbol is defined only if we see a reference to it.
788 // A struct describing a symbol defined by the linker, where the value
789 // of the symbol is defined based on a segment. This is used for
790 // symbols defined by the linker, like "_end". We describe the
791 // segment with which the symbol should be associated by its
792 // characteristics. If no segment meets these characteristics, the
793 // symbol will be defined as zero. If there is more than one segment
794 // which meets these characteristics, we will use the first one.
796 struct Define_symbol_in_segment
800 // The segment type where the symbol should be defined, typically
802 elfcpp::PT segment_type;
803 // Bitmask of segment flags which must be set.
804 elfcpp::PF segment_flags_set;
805 // Bitmask of segment flags which must be clear.
806 elfcpp::PF segment_flags_clear;
807 // The offset of the symbol within the segment. The offset is
808 // calculated from the position set by offset_base.
810 // The size of the symbol.
814 // The symbol binding.
816 // The symbol visibility.
817 elfcpp::STV visibility;
818 // The rest of the st_other field.
819 unsigned char nonvis;
820 // The base from which we compute the offset.
821 Symbol::Segment_offset_base offset_base;
822 // If true, this symbol is defined only if we see a reference to it.
826 // This class manages warnings. Warnings are a GNU extension. When
827 // we see a section named .gnu.warning.SYM in an object file, and if
828 // we wind using the definition of SYM from that object file, then we
829 // will issue a warning for any relocation against SYM from a
830 // different object file. The text of the warning is the contents of
831 // the section. This is not precisely the definition used by the old
832 // GNU linker; the old GNU linker treated an occurrence of
833 // .gnu.warning.SYM as defining a warning symbol. A warning symbol
834 // would trigger a warning on any reference. However, it was
835 // inconsistent in that a warning in a dynamic object only triggered
836 // if there was no definition in a regular object. This linker is
837 // different in that we only issue a warning if we use the symbol
838 // definition from the same object file as the warning section.
847 // Add a warning for symbol NAME in section SHNDX in object OBJ.
849 add_warning(Symbol_table* symtab, const char* name, Object* obj,
852 // For each symbol for which we should give a warning, make a note
855 note_warnings(Symbol_table* symtab);
857 // Issue a warning for a reference to SYM at RELINFO's location.
858 template<int size, bool big_endian>
860 issue_warning(const Symbol* sym, const Relocate_info<size, big_endian>*,
861 size_t relnum, off_t reloffset) const;
864 Warnings(const Warnings&);
865 Warnings& operator=(const Warnings&);
867 // What we need to know to get the warning text.
868 struct Warning_location
870 // The object the warning is in.
872 // The index of the warning section.
874 // The warning text if we have already loaded it.
878 : object(NULL), shndx(0), text()
882 set(Object* o, unsigned int s)
889 set_text(const char* t, off_t l)
890 { this->text.assign(t, l); }
893 // A mapping from warning symbol names (canonicalized in
894 // Symbol_table's namepool_ field) to
895 typedef Unordered_map<const char*, Warning_location> Warning_table;
897 Warning_table warnings_;
900 // The main linker symbol table.
909 // Add COUNT external symbols from the relocatable object RELOBJ to
910 // the symbol table. SYMS is the symbols, SYM_NAMES is their names,
911 // SYM_NAME_SIZE is the size of SYM_NAMES. This sets SYMPOINTERS to
912 // point to the symbols in the symbol table.
913 template<int size, bool big_endian>
915 add_from_relobj(Sized_relobj<size, big_endian>* relobj,
916 const unsigned char* syms, size_t count,
917 const char* sym_names, size_t sym_name_size,
918 typename Sized_relobj<size, big_endian>::Symbols*);
920 // Add COUNT dynamic symbols from the dynamic object DYNOBJ to the
921 // symbol table. SYMS is the symbols. SYM_NAMES is their names.
922 // SYM_NAME_SIZE is the size of SYM_NAMES. The other parameters are
923 // symbol version data.
924 template<int size, bool big_endian>
926 add_from_dynobj(Sized_dynobj<size, big_endian>* dynobj,
927 const unsigned char* syms, size_t count,
928 const char* sym_names, size_t sym_name_size,
929 const unsigned char* versym, size_t versym_size,
930 const std::vector<const char*>*);
932 // Define a special symbol based on an Output_data. It is a
933 // multiple definition error if this symbol is already defined.
935 define_in_output_data(const Target*, const char* name, const char* version,
936 Output_data*, uint64_t value, uint64_t symsize,
937 elfcpp::STT type, elfcpp::STB binding,
938 elfcpp::STV visibility, unsigned char nonvis,
939 bool offset_is_from_end, bool only_if_ref);
941 // Define a special symbol based on an Output_segment. It is a
942 // multiple definition error if this symbol is already defined.
944 define_in_output_segment(const Target*, const char* name,
945 const char* version, Output_segment*,
946 uint64_t value, uint64_t symsize,
947 elfcpp::STT type, elfcpp::STB binding,
948 elfcpp::STV visibility, unsigned char nonvis,
949 Symbol::Segment_offset_base, bool only_if_ref);
951 // Define a special symbol with a constant value. It is a multiple
952 // definition error if this symbol is already defined.
954 define_as_constant(const Target*, const char* name, const char* version,
955 uint64_t value, uint64_t symsize, elfcpp::STT type,
956 elfcpp::STB binding, elfcpp::STV visibility,
957 unsigned char nonvis, bool only_if_ref);
959 // Define a set of symbols in output sections.
961 define_symbols(const Layout*, const Target*, int count,
962 const Define_symbol_in_section*);
964 // Define a set of symbols in output segments.
966 define_symbols(const Layout*, const Target*, int count,
967 const Define_symbol_in_segment*);
969 // Define SYM using a COPY reloc. POSD is the Output_data where the
970 // symbol should be defined--typically a .dyn.bss section. VALUE is
971 // the offset within POSD.
974 define_with_copy_reloc(const Target*, Sized_symbol<size>* sym,
975 Output_data* posd, uint64_t value);
979 lookup(const char*, const char* version = NULL) const;
981 // Return the real symbol associated with the forwarder symbol FROM.
983 resolve_forwards(const Symbol* from) const;
985 // Return the sized version of a symbol in this table.
988 get_sized_symbol(Symbol* ACCEPT_SIZE) const;
991 const Sized_symbol<size>*
992 get_sized_symbol(const Symbol* ACCEPT_SIZE) const;
994 // Return the count of undefined symbols seen.
996 saw_undefined() const
997 { return this->saw_undefined_; }
999 // Allocate the common symbols
1001 allocate_commons(const General_options&, Layout*);
1003 // Add a warning for symbol NAME in section SHNDX in object OBJ.
1005 add_warning(const char* name, Object* obj, unsigned int shndx)
1006 { this->warnings_.add_warning(this, name, obj, shndx); }
1008 // Canonicalize a symbol name for use in the hash table.
1010 canonicalize_name(const char* name)
1011 { return this->namepool_.add(name, true, NULL); }
1013 // Possibly issue a warning for a reference to SYM at LOCATION which
1015 template<int size, bool big_endian>
1017 issue_warning(const Symbol* sym,
1018 const Relocate_info<size, big_endian>* relinfo,
1019 size_t relnum, off_t reloffset) const
1020 { this->warnings_.issue_warning(sym, relinfo, relnum, reloffset); }
1022 // SYM is defined using a COPY reloc. Return the dynamic object
1023 // where the original definition was found.
1025 get_copy_source(const Symbol* sym) const;
1027 // Set the dynamic symbol indexes. INDEX is the index of the first
1028 // global dynamic symbol. Pointers to the symbols are stored into
1029 // the vector. The names are stored into the Stringpool. This
1030 // returns an updated dynamic symbol index.
1032 set_dynsym_indexes(const Target*, unsigned int index,
1033 std::vector<Symbol*>*, Stringpool*, Versions*);
1035 // Finalize the symbol table after we have set the final addresses
1036 // of all the input sections. This sets the final symbol indexes,
1037 // values and adds the names to *POOL. INDEX is the index of the
1038 // first global symbol. OFF is the file offset of the global symbol
1039 // table, DYNOFF is the offset of the globals in the dynamic symbol
1040 // table, DYN_GLOBAL_INDEX is the index of the first global dynamic
1041 // symbol, and DYNCOUNT is the number of global dynamic symbols.
1042 // This records the parameters, and returns the new file offset.
1044 finalize(unsigned int index, off_t off, off_t dynoff,
1045 size_t dyn_global_index, size_t dyncount, Stringpool* pool);
1047 // Write out the global symbols.
1049 write_globals(const Target*, const Stringpool*, const Stringpool*,
1050 Output_file*) const;
1052 // Write out a section symbol. Return the updated offset.
1054 write_section_symbol(const Output_section*, Output_file*, off_t) const;
1057 Symbol_table(const Symbol_table&);
1058 Symbol_table& operator=(const Symbol_table&);
1060 // Make FROM a forwarder symbol to TO.
1062 make_forwarder(Symbol* from, Symbol* to);
1065 template<int size, bool big_endian>
1067 add_from_object(Object*, const char *name, Stringpool::Key name_key,
1068 const char *version, Stringpool::Key version_key,
1069 bool def, const elfcpp::Sym<size, big_endian>& sym);
1072 template<int size, bool big_endian>
1074 resolve(Sized_symbol<size>* to,
1075 const elfcpp::Sym<size, big_endian>& sym,
1076 Object*, const char* version);
1078 template<int size, bool big_endian>
1080 resolve(Sized_symbol<size>* to, const Sized_symbol<size>* from,
1081 const char* version ACCEPT_SIZE_ENDIAN);
1083 // Whether we should override a symbol, based on flags in
1086 should_override(const Symbol*, unsigned int, Object*, bool*);
1088 // Override a symbol.
1089 template<int size, bool big_endian>
1091 override(Sized_symbol<size>* tosym,
1092 const elfcpp::Sym<size, big_endian>& fromsym,
1093 Object* object, const char* version);
1095 // Whether we should override a symbol with a special symbol which
1096 // is automatically defined by the linker.
1098 should_override_with_special(const Symbol*);
1100 // Override a symbol with a special symbol.
1103 override_with_special(Sized_symbol<size>* tosym,
1104 const Sized_symbol<size>* fromsym);
1106 // Record all weak alias sets for a dynamic object.
1109 record_weak_aliases(std::vector<Sized_symbol<size>*>*);
1111 // Define a special symbol.
1112 template<int size, bool big_endian>
1114 define_special_symbol(const Target* target, const char** pname,
1115 const char** pversion, bool only_if_ref,
1116 Sized_symbol<size>** poldsym ACCEPT_SIZE_ENDIAN);
1118 // Define a symbol in an Output_data, sized version.
1121 do_define_in_output_data(const Target*, const char* name,
1122 const char* version, Output_data*,
1123 typename elfcpp::Elf_types<size>::Elf_Addr value,
1124 typename elfcpp::Elf_types<size>::Elf_WXword ssize,
1125 elfcpp::STT type, elfcpp::STB binding,
1126 elfcpp::STV visibility, unsigned char nonvis,
1127 bool offset_is_from_end, bool only_if_ref);
1129 // Define a symbol in an Output_segment, sized version.
1132 do_define_in_output_segment(
1133 const Target*, const char* name, const char* version, Output_segment* os,
1134 typename elfcpp::Elf_types<size>::Elf_Addr value,
1135 typename elfcpp::Elf_types<size>::Elf_WXword ssize,
1136 elfcpp::STT type, elfcpp::STB binding,
1137 elfcpp::STV visibility, unsigned char nonvis,
1138 Symbol::Segment_offset_base offset_base, bool only_if_ref);
1140 // Define a symbol as a constant, sized version.
1143 do_define_as_constant(
1144 const Target*, const char* name, const char* version,
1145 typename elfcpp::Elf_types<size>::Elf_Addr value,
1146 typename elfcpp::Elf_types<size>::Elf_WXword ssize,
1147 elfcpp::STT type, elfcpp::STB binding,
1148 elfcpp::STV visibility, unsigned char nonvis,
1151 // Allocate the common symbols, sized version.
1154 do_allocate_commons(const General_options&, Layout*);
1156 // Finalize symbols specialized for size.
1159 sized_finalize(unsigned int, off_t, Stringpool*);
1161 // Write globals specialized for size and endianness.
1162 template<int size, bool big_endian>
1164 sized_write_globals(const Target*, const Stringpool*, const Stringpool*,
1165 Output_file*) const;
1167 // Write out a symbol to P.
1168 template<int size, bool big_endian>
1170 sized_write_symbol(Sized_symbol<size>*,
1171 typename elfcpp::Elf_types<size>::Elf_Addr value,
1173 const Stringpool*, unsigned char* p
1174 ACCEPT_SIZE_ENDIAN) const;
1176 // Write out a section symbol, specialized for size and endianness.
1177 template<int size, bool big_endian>
1179 sized_write_section_symbol(const Output_section*, Output_file*, off_t) const;
1181 // The type of the symbol hash table.
1183 typedef std::pair<Stringpool::Key, Stringpool::Key> Symbol_table_key;
1185 struct Symbol_table_hash
1188 operator()(const Symbol_table_key&) const;
1191 struct Symbol_table_eq
1194 operator()(const Symbol_table_key&, const Symbol_table_key&) const;
1197 typedef Unordered_map<Symbol_table_key, Symbol*, Symbol_table_hash,
1198 Symbol_table_eq> Symbol_table_type;
1200 // The type of the list of common symbols.
1201 typedef std::vector<Symbol*> Commons_type;
1203 // A map from symbols with COPY relocs to the dynamic objects where
1204 // they are defined.
1205 typedef Unordered_map<const Symbol*, Dynobj*> Copied_symbol_dynobjs;
1207 // We increment this every time we see a new undefined symbol, for
1208 // use in archive groups.
1210 // The index of the first global symbol in the output file.
1211 unsigned int first_global_index_;
1212 // The file offset within the output symtab section where we should
1215 // The number of global symbols we want to write out.
1216 size_t output_count_;
1217 // The file offset of the global dynamic symbols, or 0 if none.
1218 off_t dynamic_offset_;
1219 // The index of the first global dynamic symbol.
1220 unsigned int first_dynamic_global_index_;
1221 // The number of global dynamic symbols, or 0 if none.
1222 off_t dynamic_count_;
1223 // The symbol hash table.
1224 Symbol_table_type table_;
1225 // A pool of symbol names. This is used for all global symbols.
1226 // Entries in the hash table point into this pool.
1227 Stringpool namepool_;
1228 // Forwarding symbols.
1229 Unordered_map<const Symbol*, Symbol*> forwarders_;
1230 // Weak aliases. A symbol in this list points to the next alias.
1231 // The aliases point to each other in a circular list.
1232 Unordered_map<Symbol*, Symbol*> weak_aliases_;
1233 // We don't expect there to be very many common symbols, so we keep
1234 // a list of them. When we find a common symbol we add it to this
1235 // list. It is possible that by the time we process the list the
1236 // symbol is no longer a common symbol. It may also have become a
1238 Commons_type commons_;
1239 // Manage symbol warnings.
1241 // When we emit a COPY reloc for a symbol, we define it in an
1242 // Output_data. When it's time to emit version information for it,
1243 // we need to know the dynamic object in which we found the original
1244 // definition. This maps symbols with COPY relocs to the dynamic
1245 // object where they were defined.
1246 Copied_symbol_dynobjs copied_symbol_dynobjs_;
1249 // We inline get_sized_symbol for efficiency.
1253 Symbol_table::get_sized_symbol(Symbol* sym ACCEPT_SIZE) const
1255 gold_assert(size == parameters->get_size());
1256 return static_cast<Sized_symbol<size>*>(sym);
1260 const Sized_symbol<size>*
1261 Symbol_table::get_sized_symbol(const Symbol* sym ACCEPT_SIZE) const
1263 gold_assert(size == parameters->get_size());
1264 return static_cast<const Sized_symbol<size>*>(sym);
1267 } // End namespace gold.
1269 #endif // !defined(GOLD_SYMTAB_H)