2006-08-19 00:29:20 +02:00
|
|
|
// resolve.cc -- symbol resolution for gold
|
|
|
|
|
2008-01-09 20:57:45 +01:00
|
|
|
// Copyright 2006, 2007, 2008 Free Software Foundation, Inc.
|
2007-09-22 23:02:10 +02:00
|
|
|
// Written by Ian Lance Taylor <iant@google.com>.
|
|
|
|
|
|
|
|
// This file is part of gold.
|
|
|
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
// MA 02110-1301, USA.
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
#include "gold.h"
|
|
|
|
|
|
|
|
#include "elfcpp.h"
|
|
|
|
#include "target.h"
|
|
|
|
#include "object.h"
|
|
|
|
#include "symtab.h"
|
2008-09-20 00:54:57 +02:00
|
|
|
#include "plugin.h"
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
namespace gold
|
|
|
|
{
|
|
|
|
|
2006-09-07 23:21:41 +02:00
|
|
|
// Symbol methods used in this file.
|
|
|
|
|
2008-05-08 20:44:33 +02:00
|
|
|
// This symbol is being overridden by another symbol whose version is
|
|
|
|
// VERSION. Update the VERSION_ field accordingly.
|
|
|
|
|
|
|
|
inline void
|
|
|
|
Symbol::override_version(const char* version)
|
|
|
|
{
|
|
|
|
if (version == NULL)
|
|
|
|
{
|
|
|
|
// This is the case where this symbol is NAME/VERSION, and the
|
|
|
|
// version was not marked as hidden. That makes it the default
|
|
|
|
// version, so we create NAME/NULL. Later we see another symbol
|
|
|
|
// NAME/NULL, and that symbol is overriding this one. In this
|
|
|
|
// case, since NAME/VERSION is the default, we make NAME/NULL
|
|
|
|
// override NAME/VERSION as well. They are already the same
|
|
|
|
// Symbol structure. Setting the VERSION_ field to NULL ensures
|
|
|
|
// that it will be output with the correct, empty, version.
|
|
|
|
this->version_ = version;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is the case where this symbol is NAME/VERSION_ONE, and
|
|
|
|
// now we see NAME/VERSION_TWO, and NAME/VERSION_TWO is
|
|
|
|
// overriding NAME. If VERSION_ONE and VERSION_TWO are
|
|
|
|
// different, then this can only happen when VERSION_ONE is NULL
|
|
|
|
// and VERSION_TWO is not hidden.
|
|
|
|
gold_assert(this->version_ == version || this->version_ == NULL);
|
|
|
|
this->version_ = version;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-07 23:21:41 +02:00
|
|
|
// Override the fields in Symbol.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Symbol::override_base(const elfcpp::Sym<size, big_endian>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx, bool is_ordinary,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object, const char* version)
|
2006-09-07 23:21:41 +02:00
|
|
|
{
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_assert(this->source_ == FROM_OBJECT);
|
2006-11-03 19:26:11 +01:00
|
|
|
this->u_.from_object.object = object;
|
2008-05-08 20:44:33 +02:00
|
|
|
this->override_version(version);
|
2008-04-19 20:30:58 +02:00
|
|
|
this->u_.from_object.shndx = st_shndx;
|
|
|
|
this->is_ordinary_shndx_ = is_ordinary;
|
2006-09-07 23:21:41 +02:00
|
|
|
this->type_ = sym.get_st_type();
|
|
|
|
this->binding_ = sym.get_st_bind();
|
|
|
|
this->visibility_ = sym.get_st_visibility();
|
2006-11-03 19:26:11 +01:00
|
|
|
this->nonvis_ = sym.get_st_nonvis();
|
2007-08-28 06:12:19 +02:00
|
|
|
if (object->is_dynamic())
|
|
|
|
this->in_dyn_ = true;
|
|
|
|
else
|
|
|
|
this->in_reg_ = true;
|
2006-09-07 23:21:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Override the fields in Sized_symbol.
|
|
|
|
|
|
|
|
template<int size>
|
|
|
|
template<bool big_endian>
|
|
|
|
void
|
|
|
|
Sized_symbol<size>::override(const elfcpp::Sym<size, big_endian>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned st_shndx, bool is_ordinary,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object, const char* version)
|
2006-09-07 23:21:41 +02:00
|
|
|
{
|
2008-04-19 20:30:58 +02:00
|
|
|
this->override_base(sym, st_shndx, is_ordinary, object, version);
|
2006-09-07 23:21:41 +02:00
|
|
|
this->value_ = sym.get_st_value();
|
2006-11-03 19:26:11 +01:00
|
|
|
this->symsize_ = sym.get_st_size();
|
2006-09-07 23:21:41 +02:00
|
|
|
}
|
|
|
|
|
2007-10-14 17:35:27 +02:00
|
|
|
// Override TOSYM with symbol FROMSYM, defined in OBJECT, with version
|
|
|
|
// VERSION. This handles all aliases of TOSYM.
|
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
|
|
|
Symbol_table::override(Sized_symbol<size>* tosym,
|
|
|
|
const elfcpp::Sym<size, big_endian>& fromsym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx, bool is_ordinary,
|
2007-10-14 17:35:27 +02:00
|
|
|
Object* object, const char* version)
|
|
|
|
{
|
2008-04-19 20:30:58 +02:00
|
|
|
tosym->override(fromsym, st_shndx, is_ordinary, object, version);
|
2007-10-14 17:35:27 +02:00
|
|
|
if (tosym->has_alias())
|
|
|
|
{
|
|
|
|
Symbol* sym = this->weak_aliases_[tosym];
|
|
|
|
gold_assert(sym != NULL);
|
2008-02-29 20:19:17 +01:00
|
|
|
Sized_symbol<size>* ssym = this->get_sized_symbol<size>(sym);
|
2007-10-14 17:35:27 +02:00
|
|
|
do
|
|
|
|
{
|
2008-04-19 20:30:58 +02:00
|
|
|
ssym->override(fromsym, st_shndx, is_ordinary, object, version);
|
2007-10-14 17:35:27 +02:00
|
|
|
sym = this->weak_aliases_[ssym];
|
|
|
|
gold_assert(sym != NULL);
|
2008-02-29 20:19:17 +01:00
|
|
|
ssym = this->get_sized_symbol<size>(sym);
|
2007-10-14 17:35:27 +02:00
|
|
|
}
|
|
|
|
while (ssym != tosym);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
// The resolve functions build a little code for each symbol.
|
|
|
|
// Bit 0: 0 for global, 1 for weak.
|
|
|
|
// Bit 1: 0 for regular object, 1 for shared object
|
|
|
|
// Bits 2-3: 0 for normal, 1 for undefined, 2 for common
|
|
|
|
// This gives us values from 0 to 11.
|
|
|
|
|
|
|
|
static const int global_or_weak_shift = 0;
|
|
|
|
static const unsigned int global_flag = 0 << global_or_weak_shift;
|
|
|
|
static const unsigned int weak_flag = 1 << global_or_weak_shift;
|
|
|
|
|
|
|
|
static const int regular_or_dynamic_shift = 1;
|
|
|
|
static const unsigned int regular_flag = 0 << regular_or_dynamic_shift;
|
|
|
|
static const unsigned int dynamic_flag = 1 << regular_or_dynamic_shift;
|
|
|
|
|
|
|
|
static const int def_undef_or_common_shift = 2;
|
|
|
|
static const unsigned int def_flag = 0 << def_undef_or_common_shift;
|
|
|
|
static const unsigned int undef_flag = 1 << def_undef_or_common_shift;
|
|
|
|
static const unsigned int common_flag = 2 << def_undef_or_common_shift;
|
|
|
|
|
2007-11-13 21:02:32 +01:00
|
|
|
// This convenience function combines all the flags based on facts
|
|
|
|
// about the symbol.
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
symbol_to_bits(elfcpp::STB binding, bool is_dynamic,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int shndx, bool is_ordinary, elfcpp::STT type)
|
2007-11-13 21:02:32 +01:00
|
|
|
{
|
|
|
|
unsigned int bits;
|
|
|
|
|
|
|
|
switch (binding)
|
|
|
|
{
|
|
|
|
case elfcpp::STB_GLOBAL:
|
|
|
|
bits = global_flag;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case elfcpp::STB_WEAK:
|
|
|
|
bits = weak_flag;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case elfcpp::STB_LOCAL:
|
|
|
|
// We should only see externally visible symbols in the symbol
|
|
|
|
// table.
|
|
|
|
gold_error(_("invalid STB_LOCAL symbol in external symbols"));
|
|
|
|
bits = global_flag;
|
|
|
|
|
|
|
|
default:
|
|
|
|
// Any target which wants to handle STB_LOOS, etc., needs to
|
|
|
|
// define a resolve method.
|
|
|
|
gold_error(_("unsupported symbol binding"));
|
|
|
|
bits = global_flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_dynamic)
|
|
|
|
bits |= dynamic_flag;
|
|
|
|
else
|
|
|
|
bits |= regular_flag;
|
|
|
|
|
|
|
|
switch (shndx)
|
|
|
|
{
|
|
|
|
case elfcpp::SHN_UNDEF:
|
|
|
|
bits |= undef_flag;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case elfcpp::SHN_COMMON:
|
2008-04-19 20:30:58 +02:00
|
|
|
if (!is_ordinary)
|
|
|
|
bits |= common_flag;
|
2007-11-13 21:02:32 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
if (type == elfcpp::STT_COMMON)
|
|
|
|
bits |= common_flag;
|
|
|
|
else
|
|
|
|
bits |= def_flag;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return bits;
|
|
|
|
}
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
// Resolve a symbol. This is called the second and subsequent times
|
2008-04-19 20:30:58 +02:00
|
|
|
// we see a symbol. TO is the pre-existing symbol. ST_SHNDX is the
|
|
|
|
// section index for SYM, possibly adjusted for many sections.
|
|
|
|
// IS_ORDINARY is whether ST_SHNDX is a normal section index rather
|
|
|
|
// than a special code. ORIG_ST_SHNDX is the original section index,
|
|
|
|
// before any munging because of discarded sections, except that all
|
2008-07-23 16:36:09 +02:00
|
|
|
// non-ordinary section indexes are mapped to SHN_UNDEF. VERSION is
|
2008-04-19 20:30:58 +02:00
|
|
|
// the version of SYM.
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
template<int size, bool big_endian>
|
|
|
|
void
|
2006-09-07 23:21:41 +02:00
|
|
|
Symbol_table::resolve(Sized_symbol<size>* to,
|
2006-08-19 00:29:20 +02:00
|
|
|
const elfcpp::Sym<size, big_endian>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx, bool is_ordinary,
|
|
|
|
unsigned int orig_st_shndx,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object, const char* version)
|
2006-08-19 00:29:20 +02:00
|
|
|
{
|
|
|
|
if (object->target()->has_resolve())
|
|
|
|
{
|
2006-09-26 23:50:25 +02:00
|
|
|
Sized_target<size, big_endian>* sized_target;
|
2008-02-29 20:19:17 +01:00
|
|
|
sized_target = object->sized_target<size, big_endian>();
|
2006-12-06 01:02:36 +01:00
|
|
|
sized_target->resolve(to, sym, object, version);
|
2006-08-19 00:29:20 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
if (!object->is_dynamic())
|
|
|
|
{
|
|
|
|
// Record that we've seen this symbol in a regular object.
|
|
|
|
to->set_in_reg();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Record that we've seen this symbol in a dynamic object.
|
|
|
|
to->set_in_dyn();
|
|
|
|
}
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2008-09-20 00:54:57 +02:00
|
|
|
// Record if we've seen this symbol in a real ELF object (i.e., the
|
|
|
|
// symbol is referenced from outside the world known to the plugin).
|
|
|
|
if (object->pluginobj() == NULL)
|
|
|
|
to->set_in_real_elf();
|
|
|
|
|
|
|
|
// If we're processing replacement files, allow new symbols to override
|
|
|
|
// the placeholders from the plugin objects.
|
|
|
|
if (to->source() == Symbol::FROM_OBJECT)
|
|
|
|
{
|
|
|
|
Pluginobj* obj = to->object()->pluginobj();
|
|
|
|
if (obj != NULL
|
|
|
|
&& parameters->options().plugins()->in_replacement_phase())
|
|
|
|
{
|
|
|
|
this->override(to, sym, st_shndx, is_ordinary, object, version);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-13 21:02:32 +01:00
|
|
|
unsigned int frombits = symbol_to_bits(sym.get_st_bind(),
|
|
|
|
object->is_dynamic(),
|
2008-04-19 20:30:58 +02:00
|
|
|
st_shndx, is_ordinary,
|
2007-11-13 21:02:32 +01:00
|
|
|
sym.get_st_type());
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
bool adjust_common_sizes;
|
2007-10-14 09:10:20 +02:00
|
|
|
if (Symbol_table::should_override(to, frombits, object,
|
|
|
|
&adjust_common_sizes))
|
2007-09-19 08:02:29 +02:00
|
|
|
{
|
|
|
|
typename Sized_symbol<size>::Size_type tosize = to->symsize();
|
|
|
|
|
2008-04-19 20:30:58 +02:00
|
|
|
this->override(to, sym, st_shndx, is_ordinary, object, version);
|
2007-09-19 08:02:29 +02:00
|
|
|
|
|
|
|
if (adjust_common_sizes && tosize > to->symsize())
|
|
|
|
to->set_symsize(tosize);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (adjust_common_sizes && sym.get_st_size() > to->symsize())
|
|
|
|
to->set_symsize(sym.get_st_size());
|
|
|
|
}
|
2007-11-13 21:02:32 +01:00
|
|
|
|
|
|
|
// A new weak undefined reference, merging with an old weak
|
|
|
|
// reference, could be a One Definition Rule (ODR) violation --
|
|
|
|
// especially if the types or sizes of the references differ. We'll
|
|
|
|
// store such pairs and look them up later to make sure they
|
|
|
|
// actually refer to the same lines of code. (Note: not all ODR
|
|
|
|
// violations can be found this way, and not everything this finds
|
|
|
|
// is an ODR violation. But it's helpful to warn about.)
|
2008-04-19 20:30:58 +02:00
|
|
|
bool to_is_ordinary;
|
2008-02-28 01:18:24 +01:00
|
|
|
if (parameters->options().detect_odr_violations()
|
2008-04-19 20:30:58 +02:00
|
|
|
&& sym.get_st_bind() == elfcpp::STB_WEAK
|
2007-11-13 21:02:32 +01:00
|
|
|
&& to->binding() == elfcpp::STB_WEAK
|
2008-04-19 20:30:58 +02:00
|
|
|
&& orig_st_shndx != elfcpp::SHN_UNDEF
|
|
|
|
&& to->shndx(&to_is_ordinary) != elfcpp::SHN_UNDEF
|
|
|
|
&& to_is_ordinary
|
|
|
|
&& sym.get_st_size() != 0 // Ignore weird 0-sized symbols.
|
2007-11-13 21:02:32 +01:00
|
|
|
&& to->symsize() != 0
|
2008-04-19 20:30:58 +02:00
|
|
|
&& (sym.get_st_type() != to->type()
|
|
|
|
|| sym.get_st_size() != to->symsize())
|
2007-11-13 21:02:32 +01:00
|
|
|
// C does not have a concept of ODR, so we only need to do this
|
|
|
|
// on C++ symbols. These have (mangled) names starting with _Z.
|
|
|
|
&& to->name()[0] == '_' && to->name()[1] == 'Z')
|
|
|
|
{
|
2007-11-15 02:12:55 +01:00
|
|
|
Symbol_location fromloc
|
2008-04-19 20:30:58 +02:00
|
|
|
= { object, orig_st_shndx, sym.get_st_value() };
|
|
|
|
Symbol_location toloc = { to->object(), to->shndx(&to_is_ordinary),
|
|
|
|
to->value() };
|
2007-11-15 02:12:55 +01:00
|
|
|
this->candidate_odr_violations_[to->name()].insert(fromloc);
|
|
|
|
this->candidate_odr_violations_[to->name()].insert(toloc);
|
2007-11-13 21:02:32 +01:00
|
|
|
}
|
2007-09-19 08:02:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle the core of symbol resolution. This is called with the
|
|
|
|
// existing symbol, TO, and a bitflag describing the new symbol. This
|
|
|
|
// returns true if we should override the existing symbol with the new
|
|
|
|
// one, and returns false otherwise. It sets *ADJUST_COMMON_SIZES to
|
|
|
|
// true if we should set the symbol size to the maximum of the TO and
|
|
|
|
// FROM sizes. It handles error conditions.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Symbol_table::should_override(const Symbol* to, unsigned int frombits,
|
2007-10-14 09:10:20 +02:00
|
|
|
Object* object, bool* adjust_common_sizes)
|
2007-09-19 08:02:29 +02:00
|
|
|
{
|
|
|
|
*adjust_common_sizes = false;
|
|
|
|
|
2008-01-09 20:57:45 +01:00
|
|
|
unsigned int tobits;
|
2008-05-07 08:08:01 +02:00
|
|
|
if (to->source() == Symbol::IS_UNDEFINED)
|
|
|
|
tobits = symbol_to_bits(to->binding(), false, elfcpp::SHN_UNDEF, true,
|
|
|
|
to->type());
|
|
|
|
else if (to->source() != Symbol::FROM_OBJECT)
|
2008-04-19 20:30:58 +02:00
|
|
|
tobits = symbol_to_bits(to->binding(), false, elfcpp::SHN_ABS, false,
|
2008-01-09 20:57:45 +01:00
|
|
|
to->type());
|
|
|
|
else
|
2008-04-19 20:30:58 +02:00
|
|
|
{
|
|
|
|
bool is_ordinary;
|
|
|
|
unsigned int shndx = to->shndx(&is_ordinary);
|
|
|
|
tobits = symbol_to_bits(to->binding(),
|
|
|
|
to->object()->is_dynamic(),
|
|
|
|
shndx,
|
|
|
|
is_ordinary,
|
|
|
|
to->type());
|
|
|
|
}
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2006-09-07 23:21:41 +02:00
|
|
|
// FIXME: Warn if either but not both of TO and SYM are STT_TLS.
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
// We use a giant switch table for symbol resolution. This code is
|
|
|
|
// unwieldy, but: 1) it is efficient; 2) we definitely handle all
|
|
|
|
// cases; 3) it is easy to change the handling of a particular case.
|
|
|
|
// The alternative would be a series of conditionals, but it is easy
|
|
|
|
// to get the ordering wrong. This could also be done as a table,
|
|
|
|
// but that is no easier to understand than this large switch
|
|
|
|
// statement.
|
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
// These are the values generated by the bit codes.
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
DEF = global_flag | regular_flag | def_flag,
|
|
|
|
WEAK_DEF = weak_flag | regular_flag | def_flag,
|
|
|
|
DYN_DEF = global_flag | dynamic_flag | def_flag,
|
|
|
|
DYN_WEAK_DEF = weak_flag | dynamic_flag | def_flag,
|
|
|
|
UNDEF = global_flag | regular_flag | undef_flag,
|
|
|
|
WEAK_UNDEF = weak_flag | regular_flag | undef_flag,
|
|
|
|
DYN_UNDEF = global_flag | dynamic_flag | undef_flag,
|
|
|
|
DYN_WEAK_UNDEF = weak_flag | dynamic_flag | undef_flag,
|
|
|
|
COMMON = global_flag | regular_flag | common_flag,
|
|
|
|
WEAK_COMMON = weak_flag | regular_flag | common_flag,
|
|
|
|
DYN_COMMON = global_flag | dynamic_flag | common_flag,
|
|
|
|
DYN_WEAK_COMMON = weak_flag | dynamic_flag | common_flag
|
|
|
|
};
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
switch (tobits * 16 + frombits)
|
|
|
|
{
|
|
|
|
case DEF * 16 + DEF:
|
2006-10-06 22:40:16 +02:00
|
|
|
// Two definitions of the same symbol.
|
2008-02-28 23:39:29 +01:00
|
|
|
|
|
|
|
// If either symbol is defined by an object included using
|
|
|
|
// --just-symbols, then don't warn. This is for compatibility
|
|
|
|
// with the GNU linker. FIXME: This is a hack.
|
|
|
|
if ((to->source() == Symbol::FROM_OBJECT && to->object()->just_symbols())
|
|
|
|
|| object->just_symbols())
|
|
|
|
return false;
|
|
|
|
|
2007-10-14 09:10:20 +02:00
|
|
|
// FIXME: Do a better job of reporting locations.
|
|
|
|
gold_error(_("%s: multiple definition of %s"),
|
|
|
|
object != NULL ? object->name().c_str() : _("command line"),
|
2007-11-15 02:12:55 +01:00
|
|
|
to->demangled_name().c_str());
|
2007-10-14 09:10:20 +02:00
|
|
|
gold_error(_("%s: previous definition here"),
|
|
|
|
(to->source() == Symbol::FROM_OBJECT
|
|
|
|
? to->object()->name().c_str()
|
|
|
|
: _("command line")));
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case WEAK_DEF * 16 + DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen a weak definition, and now we see a strong
|
|
|
|
// definition. In the original SVR4 linker, this was treated as
|
|
|
|
// a multiple definition error. In the Solaris linker and the
|
|
|
|
// GNU linker, a weak definition followed by a regular
|
|
|
|
// definition causes the weak definition to be overridden. We
|
|
|
|
// are currently compatible with the GNU linker. In the future
|
|
|
|
// we should add a target specific option to change this.
|
|
|
|
// FIXME.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DYN_DEF * 16 + DEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen a definition in a dynamic object, and now we see a
|
|
|
|
// definition in a regular object. The definition in the
|
|
|
|
// regular object overrides the definition in the dynamic
|
|
|
|
// object.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + DEF:
|
|
|
|
case WEAK_UNDEF * 16 + DEF:
|
|
|
|
case DYN_UNDEF * 16 + DEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen an undefined reference, and now we see a
|
|
|
|
// definition. We use the definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + DEF:
|
|
|
|
case WEAK_COMMON * 16 + DEF:
|
|
|
|
case DYN_COMMON * 16 + DEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen a common symbol and now we see a definition. The
|
2006-12-06 01:02:36 +01:00
|
|
|
// definition overrides. FIXME: We should optionally issue, version a
|
2006-09-07 23:21:41 +02:00
|
|
|
// warning.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + WEAK_DEF:
|
|
|
|
case WEAK_DEF * 16 + WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen a definition and now we see a weak definition. We
|
|
|
|
// ignore the new weak definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case DYN_DEF * 16 + WEAK_DEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// We've seen a dynamic definition and now we see a regular weak
|
|
|
|
// definition. The regular weak definition overrides.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + WEAK_DEF:
|
|
|
|
case WEAK_UNDEF * 16 + WEAK_DEF:
|
|
|
|
case DYN_UNDEF * 16 + WEAK_DEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A weak definition of a currently undefined symbol.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + WEAK_DEF:
|
|
|
|
case WEAK_COMMON * 16 + WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A weak definition does not override a common definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case DYN_COMMON * 16 + WEAK_DEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A weak definition does override a definition in a dynamic
|
|
|
|
// object. FIXME: We should optionally issue a warning.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_DEF:
|
|
|
|
case WEAK_DEF * 16 + DYN_DEF:
|
|
|
|
case DYN_DEF * 16 + DYN_DEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Ignore a dynamic definition if we already have a definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + DYN_DEF:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_DEF:
|
|
|
|
case DYN_UNDEF * 16 + DYN_DEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Use a dynamic definition if we have a reference.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + DYN_DEF:
|
|
|
|
case WEAK_COMMON * 16 + DYN_DEF:
|
|
|
|
case DYN_COMMON * 16 + DYN_DEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Ignore a dynamic definition if we already have a common
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case WEAK_DEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_DEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Ignore a weak dynamic definition if we already have a
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_UNDEF * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Use a weak dynamic definition if we have a reference.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + DYN_WEAK_DEF:
|
|
|
|
case WEAK_COMMON * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_COMMON * 16 + DYN_WEAK_DEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_WEAK_DEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// Ignore a weak dynamic definition if we already have a common
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + UNDEF:
|
|
|
|
case WEAK_DEF * 16 + UNDEF:
|
|
|
|
case DYN_DEF * 16 + UNDEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + UNDEF:
|
|
|
|
case UNDEF * 16 + UNDEF:
|
2006-11-03 19:26:11 +01:00
|
|
|
// A new undefined reference tells us nothing.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case WEAK_UNDEF * 16 + UNDEF:
|
|
|
|
case DYN_UNDEF * 16 + UNDEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + UNDEF:
|
2006-11-03 19:26:11 +01:00
|
|
|
// A strong undef overrides a dynamic or weak undef.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + UNDEF:
|
|
|
|
case WEAK_COMMON * 16 + UNDEF:
|
|
|
|
case DYN_COMMON * 16 + UNDEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + UNDEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A new undefined reference tells us nothing.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + WEAK_UNDEF:
|
|
|
|
case WEAK_DEF * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_DEF * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + WEAK_UNDEF:
|
|
|
|
case UNDEF * 16 + WEAK_UNDEF:
|
|
|
|
case WEAK_UNDEF * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_UNDEF * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + WEAK_UNDEF:
|
|
|
|
case COMMON * 16 + WEAK_UNDEF:
|
|
|
|
case WEAK_COMMON * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_COMMON * 16 + WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + WEAK_UNDEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A new weak undefined reference tells us nothing.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_UNDEF:
|
|
|
|
case WEAK_DEF * 16 + DYN_UNDEF:
|
|
|
|
case DYN_DEF * 16 + DYN_UNDEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_UNDEF:
|
|
|
|
case UNDEF * 16 + DYN_UNDEF:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_UNDEF:
|
|
|
|
case DYN_UNDEF * 16 + DYN_UNDEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_UNDEF:
|
|
|
|
case COMMON * 16 + DYN_UNDEF:
|
|
|
|
case WEAK_COMMON * 16 + DYN_UNDEF:
|
|
|
|
case DYN_COMMON * 16 + DYN_UNDEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_UNDEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A new dynamic undefined reference tells us nothing.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case WEAK_DEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_DEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case UNDEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_UNDEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case COMMON * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case WEAK_COMMON * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_COMMON * 16 + DYN_WEAK_UNDEF:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_WEAK_UNDEF:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A new weak dynamic undefined reference tells us nothing.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + COMMON:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A common symbol does not override a definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case WEAK_DEF * 16 + COMMON:
|
|
|
|
case DYN_DEF * 16 + COMMON:
|
|
|
|
case DYN_WEAK_DEF * 16 + COMMON:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A common symbol does override a weak definition or a dynamic
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + COMMON:
|
|
|
|
case WEAK_UNDEF * 16 + COMMON:
|
|
|
|
case DYN_UNDEF * 16 + COMMON:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + COMMON:
|
2006-09-07 23:21:41 +02:00
|
|
|
// A common symbol is a definition for a reference.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Set the size to the maximum.
|
2007-09-19 08:02:29 +02:00
|
|
|
*adjust_common_sizes = true;
|
|
|
|
return false;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case WEAK_COMMON * 16 + COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// I'm not sure just what a weak common symbol means, but
|
|
|
|
// presumably it can be overridden by a regular common symbol.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case DYN_COMMON * 16 + COMMON:
|
|
|
|
case DYN_WEAK_COMMON * 16 + COMMON:
|
2007-09-19 08:02:29 +02:00
|
|
|
// Use the real common symbol, but adjust the size if necessary.
|
|
|
|
*adjust_common_sizes = true;
|
|
|
|
return true;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + WEAK_COMMON:
|
|
|
|
case WEAK_DEF * 16 + WEAK_COMMON:
|
|
|
|
case DYN_DEF * 16 + WEAK_COMMON:
|
|
|
|
case DYN_WEAK_DEF * 16 + WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Whatever a weak common symbol is, it won't override a
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + WEAK_COMMON:
|
|
|
|
case WEAK_UNDEF * 16 + WEAK_COMMON:
|
|
|
|
case DYN_UNDEF * 16 + WEAK_COMMON:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// A weak common symbol is better than an undefined symbol.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + WEAK_COMMON:
|
|
|
|
case WEAK_COMMON * 16 + WEAK_COMMON:
|
|
|
|
case DYN_COMMON * 16 + WEAK_COMMON:
|
|
|
|
case DYN_WEAK_COMMON * 16 + WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Ignore a weak common symbol in the presence of a real common
|
|
|
|
// symbol.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_COMMON:
|
|
|
|
case WEAK_DEF * 16 + DYN_COMMON:
|
|
|
|
case DYN_DEF * 16 + DYN_COMMON:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Ignore a dynamic common symbol in the presence of a
|
|
|
|
// definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + DYN_COMMON:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_COMMON:
|
|
|
|
case DYN_UNDEF * 16 + DYN_COMMON:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// A dynamic common symbol is a definition of sorts.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + DYN_COMMON:
|
|
|
|
case WEAK_COMMON * 16 + DYN_COMMON:
|
|
|
|
case DYN_COMMON * 16 + DYN_COMMON:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Set the size to the maximum.
|
2007-09-19 08:02:29 +02:00
|
|
|
*adjust_common_sizes = true;
|
|
|
|
return false;
|
2006-08-19 00:29:20 +02:00
|
|
|
|
|
|
|
case DEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case WEAK_DEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_DEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_WEAK_DEF * 16 + DYN_WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// A common symbol is ignored in the face of a definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return false;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case UNDEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case WEAK_UNDEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_UNDEF * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_WEAK_UNDEF * 16 + DYN_WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// I guess a weak common symbol is better than a definition.
|
2007-09-19 08:02:29 +02:00
|
|
|
return true;
|
2006-11-03 19:26:11 +01:00
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
case COMMON * 16 + DYN_WEAK_COMMON:
|
|
|
|
case WEAK_COMMON * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_COMMON * 16 + DYN_WEAK_COMMON:
|
|
|
|
case DYN_WEAK_COMMON * 16 + DYN_WEAK_COMMON:
|
2006-11-03 19:26:11 +01:00
|
|
|
// Set the size to the maximum.
|
2007-09-19 08:02:29 +02:00
|
|
|
*adjust_common_sizes = true;
|
|
|
|
return false;
|
2006-09-07 23:21:41 +02:00
|
|
|
|
|
|
|
default:
|
2006-11-29 18:56:40 +01:00
|
|
|
gold_unreachable();
|
2006-08-19 00:29:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
// A special case of should_override which is only called for a strong
|
|
|
|
// defined symbol from a regular object file. This is used when
|
|
|
|
// defining special symbols.
|
|
|
|
|
|
|
|
bool
|
|
|
|
Symbol_table::should_override_with_special(const Symbol* to)
|
|
|
|
{
|
|
|
|
bool adjust_common_sizes;
|
|
|
|
unsigned int frombits = global_flag | regular_flag | def_flag;
|
2007-10-14 09:10:20 +02:00
|
|
|
bool ret = Symbol_table::should_override(to, frombits, NULL,
|
|
|
|
&adjust_common_sizes);
|
2007-09-19 08:02:29 +02:00
|
|
|
gold_assert(!adjust_common_sizes);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override symbol base with a special symbol.
|
|
|
|
|
|
|
|
void
|
|
|
|
Symbol::override_base_with_special(const Symbol* from)
|
|
|
|
{
|
2007-10-23 01:08:22 +02:00
|
|
|
gold_assert(this->name_ == from->name_ || this->has_alias());
|
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
this->source_ = from->source_;
|
|
|
|
switch (from->source_)
|
|
|
|
{
|
|
|
|
case FROM_OBJECT:
|
|
|
|
this->u_.from_object = from->u_.from_object;
|
|
|
|
break;
|
|
|
|
case IN_OUTPUT_DATA:
|
|
|
|
this->u_.in_output_data = from->u_.in_output_data;
|
|
|
|
break;
|
|
|
|
case IN_OUTPUT_SEGMENT:
|
|
|
|
this->u_.in_output_segment = from->u_.in_output_segment;
|
|
|
|
break;
|
2008-05-07 08:08:01 +02:00
|
|
|
case IS_CONSTANT:
|
|
|
|
case IS_UNDEFINED:
|
2007-09-19 08:02:29 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
gold_unreachable();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-08 20:44:33 +02:00
|
|
|
this->override_version(from->version_);
|
2007-09-19 08:02:29 +02:00
|
|
|
this->type_ = from->type_;
|
|
|
|
this->binding_ = from->binding_;
|
|
|
|
this->visibility_ = from->visibility_;
|
|
|
|
this->nonvis_ = from->nonvis_;
|
|
|
|
|
|
|
|
// Special symbols are always considered to be regular symbols.
|
|
|
|
this->in_reg_ = true;
|
2007-10-23 01:08:22 +02:00
|
|
|
|
|
|
|
if (from->needs_dynsym_entry_)
|
|
|
|
this->needs_dynsym_entry_ = true;
|
|
|
|
if (from->needs_dynsym_value_)
|
|
|
|
this->needs_dynsym_value_ = true;
|
|
|
|
|
|
|
|
// We shouldn't see these flags. If we do, we need to handle them
|
|
|
|
// somehow.
|
|
|
|
gold_assert(!from->is_target_special_ || this->is_target_special_);
|
|
|
|
gold_assert(!from->is_forwarder_);
|
|
|
|
gold_assert(!from->has_plt_offset_);
|
|
|
|
gold_assert(!from->has_warning_);
|
|
|
|
gold_assert(!from->is_copied_from_dynobj_);
|
2008-01-24 01:15:00 +01:00
|
|
|
gold_assert(!from->is_forced_local_);
|
2007-09-19 08:02:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Override a symbol with a special symbol.
|
|
|
|
|
|
|
|
template<int size>
|
|
|
|
void
|
|
|
|
Sized_symbol<size>::override_with_special(const Sized_symbol<size>* from)
|
|
|
|
{
|
|
|
|
this->override_base_with_special(from);
|
|
|
|
this->value_ = from->value_;
|
|
|
|
this->symsize_ = from->symsize_;
|
|
|
|
}
|
|
|
|
|
2007-10-14 17:35:27 +02:00
|
|
|
// Override TOSYM with the special symbol FROMSYM. This handles all
|
|
|
|
// aliases of TOSYM.
|
|
|
|
|
|
|
|
template<int size>
|
|
|
|
void
|
|
|
|
Symbol_table::override_with_special(Sized_symbol<size>* tosym,
|
|
|
|
const Sized_symbol<size>* fromsym)
|
|
|
|
{
|
|
|
|
tosym->override_with_special(fromsym);
|
|
|
|
if (tosym->has_alias())
|
|
|
|
{
|
|
|
|
Symbol* sym = this->weak_aliases_[tosym];
|
|
|
|
gold_assert(sym != NULL);
|
2008-02-29 20:19:17 +01:00
|
|
|
Sized_symbol<size>* ssym = this->get_sized_symbol<size>(sym);
|
2007-10-14 17:35:27 +02:00
|
|
|
do
|
|
|
|
{
|
|
|
|
ssym->override_with_special(fromsym);
|
|
|
|
sym = this->weak_aliases_[ssym];
|
|
|
|
gold_assert(sym != NULL);
|
2008-02-29 20:19:17 +01:00
|
|
|
ssym = this->get_sized_symbol<size>(sym);
|
2007-10-14 17:35:27 +02:00
|
|
|
}
|
|
|
|
while (ssym != tosym);
|
|
|
|
}
|
2008-01-24 01:15:00 +01:00
|
|
|
if (tosym->binding() == elfcpp::STB_LOCAL)
|
|
|
|
this->force_local(tosym);
|
2007-10-14 17:35:27 +02:00
|
|
|
}
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
// Instantiate the templates we need. We could use the configure
|
|
|
|
// script to restrict this to only the ones needed for implemented
|
|
|
|
// targets.
|
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_32_LITTLE
|
2006-08-19 00:29:20 +02:00
|
|
|
template
|
|
|
|
void
|
2007-09-04 22:00:53 +02:00
|
|
|
Symbol_table::resolve<32, false>(
|
2006-09-07 23:21:41 +02:00
|
|
|
Sized_symbol<32>* to,
|
2007-09-04 22:00:53 +02:00
|
|
|
const elfcpp::Sym<32, false>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx,
|
|
|
|
bool is_ordinary,
|
|
|
|
unsigned int orig_st_shndx,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object,
|
|
|
|
const char* version);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_32_BIG
|
2006-08-19 00:29:20 +02:00
|
|
|
template
|
|
|
|
void
|
2007-09-04 22:00:53 +02:00
|
|
|
Symbol_table::resolve<32, true>(
|
2006-09-07 23:21:41 +02:00
|
|
|
Sized_symbol<32>* to,
|
2007-09-04 22:00:53 +02:00
|
|
|
const elfcpp::Sym<32, true>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx,
|
|
|
|
bool is_ordinary,
|
|
|
|
unsigned int orig_st_shndx,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object,
|
|
|
|
const char* version);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_64_LITTLE
|
2006-08-19 00:29:20 +02:00
|
|
|
template
|
|
|
|
void
|
2007-09-04 22:00:53 +02:00
|
|
|
Symbol_table::resolve<64, false>(
|
2006-09-07 23:21:41 +02:00
|
|
|
Sized_symbol<64>* to,
|
2007-09-04 22:00:53 +02:00
|
|
|
const elfcpp::Sym<64, false>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx,
|
|
|
|
bool is_ordinary,
|
|
|
|
unsigned int orig_st_shndx,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object,
|
|
|
|
const char* version);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2007-09-04 22:00:53 +02:00
|
|
|
#ifdef HAVE_TARGET_64_BIG
|
2006-08-19 00:29:20 +02:00
|
|
|
template
|
|
|
|
void
|
2007-09-04 22:00:53 +02:00
|
|
|
Symbol_table::resolve<64, true>(
|
2006-09-07 23:21:41 +02:00
|
|
|
Sized_symbol<64>* to,
|
2007-09-04 22:00:53 +02:00
|
|
|
const elfcpp::Sym<64, true>& sym,
|
2008-04-19 20:30:58 +02:00
|
|
|
unsigned int st_shndx,
|
|
|
|
bool is_ordinary,
|
|
|
|
unsigned int orig_st_shndx,
|
2006-12-06 01:02:36 +01:00
|
|
|
Object* object,
|
|
|
|
const char* version);
|
2007-09-04 22:00:53 +02:00
|
|
|
#endif
|
2006-08-19 00:29:20 +02:00
|
|
|
|
2007-09-19 08:02:29 +02:00
|
|
|
#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
|
|
|
|
template
|
|
|
|
void
|
2007-10-14 17:35:27 +02:00
|
|
|
Symbol_table::override_with_special<32>(Sized_symbol<32>*,
|
|
|
|
const Sized_symbol<32>*);
|
2007-09-19 08:02:29 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
|
|
|
|
template
|
|
|
|
void
|
2007-10-14 17:35:27 +02:00
|
|
|
Symbol_table::override_with_special<64>(Sized_symbol<64>*,
|
|
|
|
const Sized_symbol<64>*);
|
2007-09-19 08:02:29 +02:00
|
|
|
#endif
|
|
|
|
|
2006-08-19 00:29:20 +02:00
|
|
|
} // End namespace gold.
|