2015-08-14 22:12:54 +08:00
|
|
|
//===- Symbols.h ------------------------------------------------*- C++ -*-===//
|
2015-07-25 05:03:07 +08:00
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2015-10-14 03:51:57 +08:00
|
|
|
//
|
|
|
|
// All symbols are handled as SymbolBodies regardless of their types.
|
|
|
|
// This file defines various types of SymbolBodies.
|
|
|
|
//
|
|
|
|
// File-scope symbols in ELF objects are the only exception of SymbolBody
|
|
|
|
// instantiation. We will never create SymbolBodies for them for performance
|
|
|
|
// reason. They are often represented as nullptrs. This is fine for symbol
|
|
|
|
// resolution because the symbol table naturally cares only about
|
|
|
|
// externally-visible symbols. For relocations, you have to deal with both
|
|
|
|
// local and non-local functions, and we have two different functions
|
|
|
|
// where we need them.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
#ifndef LLD_ELF_SYMBOLS_H
|
|
|
|
#define LLD_ELF_SYMBOLS_H
|
|
|
|
|
2015-09-22 08:01:39 +08:00
|
|
|
#include "InputSection.h"
|
2015-08-25 04:06:32 +08:00
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "lld/Core/LLVM.h"
|
2015-09-05 06:28:10 +08:00
|
|
|
#include "llvm/Object/Archive.h"
|
2015-07-25 05:03:07 +08:00
|
|
|
#include "llvm/Object/ELF.h"
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
namespace elf2 {
|
|
|
|
|
2015-09-05 06:28:10 +08:00
|
|
|
class ArchiveFile;
|
2015-07-25 05:03:07 +08:00
|
|
|
class InputFile;
|
|
|
|
class SymbolBody;
|
2015-07-29 06:58:25 +08:00
|
|
|
template <class ELFT> class ObjectFile;
|
2015-09-19 06:13:25 +08:00
|
|
|
template <class ELFT> class OutputSection;
|
2015-10-16 06:27:29 +08:00
|
|
|
template <class ELFT> class OutputSectionBase;
|
2015-10-12 04:59:12 +08:00
|
|
|
template <class ELFT> class SharedFile;
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-10-08 07:46:11 +08:00
|
|
|
// Initializes global objects defined in this file.
|
|
|
|
// Called at the beginning of main().
|
|
|
|
void initSymbols();
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// A real symbol object, SymbolBody, is usually accessed indirectly
|
|
|
|
// through a Symbol. There's always one Symbol for each symbol name.
|
|
|
|
// The resolver updates SymbolBody pointers as it resolves symbols.
|
|
|
|
struct Symbol {
|
|
|
|
SymbolBody *Body;
|
|
|
|
};
|
|
|
|
|
|
|
|
// The base class for real symbol classes.
|
|
|
|
class SymbolBody {
|
|
|
|
public:
|
|
|
|
enum Kind {
|
2015-09-26 05:20:23 +08:00
|
|
|
DefinedFirst,
|
|
|
|
DefinedRegularKind = DefinedFirst,
|
|
|
|
DefinedAbsoluteKind,
|
|
|
|
DefinedCommonKind,
|
|
|
|
DefinedSyntheticKind,
|
|
|
|
SharedKind,
|
|
|
|
DefinedLast = SharedKind,
|
|
|
|
UndefinedKind,
|
|
|
|
LazyKind
|
2015-07-25 05:03:07 +08:00
|
|
|
};
|
|
|
|
|
2015-07-29 06:58:25 +08:00
|
|
|
Kind kind() const { return static_cast<Kind>(SymbolKind); }
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-08-29 04:19:34 +08:00
|
|
|
bool isWeak() const { return IsWeak; }
|
2015-08-31 09:46:20 +08:00
|
|
|
bool isUndefined() const { return SymbolKind == UndefinedKind; }
|
2015-09-05 06:28:10 +08:00
|
|
|
bool isDefined() const { return SymbolKind <= DefinedLast; }
|
2015-08-31 07:17:30 +08:00
|
|
|
bool isCommon() const { return SymbolKind == DefinedCommonKind; }
|
2015-09-05 06:28:10 +08:00
|
|
|
bool isLazy() const { return SymbolKind == LazyKind; }
|
2015-09-08 23:50:05 +08:00
|
|
|
bool isShared() const { return SymbolKind == SharedKind; }
|
|
|
|
bool isUsedInRegularObj() const { return IsUsedInRegularObj; }
|
2015-09-23 07:38:23 +08:00
|
|
|
bool isUsedInDynamicReloc() const { return IsUsedInDynamicReloc; }
|
|
|
|
void setUsedInDynamicReloc() { IsUsedInDynamicReloc = true; }
|
2015-12-17 08:12:03 +08:00
|
|
|
bool isTls() const { return IsTls; }
|
2015-08-15 00:46:28 +08:00
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// Returns the symbol name.
|
2015-07-29 06:58:25 +08:00
|
|
|
StringRef getName() const { return Name; }
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-10-22 02:13:47 +08:00
|
|
|
uint8_t getVisibility() const { return Visibility; }
|
2015-09-02 07:12:52 +08:00
|
|
|
|
2015-12-17 08:12:04 +08:00
|
|
|
unsigned DynamicSymbolTableIndex = 0;
|
2015-12-02 03:20:26 +08:00
|
|
|
uint32_t GlobalDynIndex = -1;
|
2015-10-09 08:42:06 +08:00
|
|
|
uint32_t GotIndex = -1;
|
2015-10-20 16:54:27 +08:00
|
|
|
uint32_t GotPltIndex = -1;
|
2015-10-09 08:42:06 +08:00
|
|
|
uint32_t PltIndex = -1;
|
2015-12-02 03:20:26 +08:00
|
|
|
bool hasGlobalDynIndex() { return GlobalDynIndex != uint32_t(-1); }
|
2015-09-18 22:40:19 +08:00
|
|
|
bool isInGot() const { return GotIndex != -1U; }
|
2015-10-20 16:54:27 +08:00
|
|
|
bool isInGotPlt() const { return GotPltIndex != -1U; }
|
2015-09-21 23:11:29 +08:00
|
|
|
bool isInPlt() const { return PltIndex != -1U; }
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// A SymbolBody has a backreference to a Symbol. Originally they are
|
|
|
|
// doubly-linked. A backreference will never change. But the pointer
|
|
|
|
// in the Symbol may be mutated by the resolver. If you have a
|
|
|
|
// pointer P to a SymbolBody and are not sure whether the resolver
|
|
|
|
// has chosen the object among other objects having the same name,
|
|
|
|
// you can access P->Backref->Body to get the resolver's result.
|
|
|
|
void setBackref(Symbol *P) { Backref = P; }
|
2015-10-08 07:20:23 +08:00
|
|
|
SymbolBody *repl() { return Backref ? Backref->Body : this; }
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
// Decides which symbol should "win" in the symbol table, this or
|
|
|
|
// the Other. Returns 1 if this wins, -1 if the Other wins, or 0 if
|
|
|
|
// they are duplicate (conflicting) symbols.
|
2015-08-31 09:16:19 +08:00
|
|
|
template <class ELFT> int compare(SymbolBody *Other);
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
protected:
|
2015-10-09 17:58:39 +08:00
|
|
|
SymbolBody(Kind K, StringRef Name, bool IsWeak, uint8_t Visibility,
|
2015-12-17 08:12:03 +08:00
|
|
|
bool IsTls)
|
|
|
|
: SymbolKind(K), IsWeak(IsWeak), Visibility(Visibility), IsTls(IsTls),
|
2015-10-22 02:13:47 +08:00
|
|
|
Name(Name) {
|
2015-09-08 23:50:05 +08:00
|
|
|
IsUsedInRegularObj = K != SharedKind && K != LazyKind;
|
2015-09-23 07:38:23 +08:00
|
|
|
IsUsedInDynamicReloc = 0;
|
2015-09-08 23:50:05 +08:00
|
|
|
}
|
2015-07-25 05:03:07 +08:00
|
|
|
|
2015-07-29 06:58:25 +08:00
|
|
|
const unsigned SymbolKind : 8;
|
2015-10-06 22:33:58 +08:00
|
|
|
unsigned IsWeak : 1;
|
2015-10-22 02:13:47 +08:00
|
|
|
unsigned Visibility : 2;
|
2015-09-08 23:50:05 +08:00
|
|
|
unsigned IsUsedInRegularObj : 1;
|
2015-09-23 07:38:23 +08:00
|
|
|
unsigned IsUsedInDynamicReloc : 1;
|
2015-12-17 08:12:03 +08:00
|
|
|
unsigned IsTls : 1;
|
2015-07-29 06:58:25 +08:00
|
|
|
StringRef Name;
|
2015-07-25 05:03:07 +08:00
|
|
|
Symbol *Backref = nullptr;
|
|
|
|
};
|
|
|
|
|
2015-08-15 00:46:28 +08:00
|
|
|
// This is for symbols created from elf files and not from the command line.
|
|
|
|
// Since they come from object files, they have a Elf_Sym.
|
|
|
|
//
|
|
|
|
// FIXME: Another alternative is to give every symbol an Elf_Sym. To do that
|
|
|
|
// we have to delay creating the symbol table until the output format is
|
|
|
|
// known and some of its methods will be templated. We should experiment with
|
|
|
|
// that once we have a bit more code.
|
|
|
|
template <class ELFT> class ELFSymbolBody : public SymbolBody {
|
|
|
|
protected:
|
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::Elf_Sym Elf_Sym;
|
|
|
|
ELFSymbolBody(Kind K, StringRef Name, const Elf_Sym &Sym)
|
2015-09-02 07:12:52 +08:00
|
|
|
: SymbolBody(K, Name, Sym.getBinding() == llvm::ELF::STB_WEAK,
|
2015-10-09 17:58:39 +08:00
|
|
|
Sym.getVisibility(), Sym.getType() == llvm::ELF::STT_TLS),
|
2015-09-02 07:12:52 +08:00
|
|
|
Sym(Sym) {}
|
2015-08-15 00:46:28 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
const Elf_Sym &Sym;
|
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
|
|
|
Kind K = S->kind();
|
|
|
|
return K >= DefinedFirst && K <= UndefinedKind;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-10-14 03:51:57 +08:00
|
|
|
// The base class for any defined symbols, including absolute symbols, etc.
|
2015-08-15 00:46:28 +08:00
|
|
|
template <class ELFT> class Defined : public ELFSymbolBody<ELFT> {
|
|
|
|
typedef ELFSymbolBody<ELFT> Base;
|
2015-08-27 20:40:06 +08:00
|
|
|
|
|
|
|
protected:
|
2015-12-22 04:47:33 +08:00
|
|
|
typedef typename SymbolBody::Kind Kind;
|
2015-08-27 20:40:06 +08:00
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
|
|
|
|
|
|
|
public:
|
2015-09-30 10:06:17 +08:00
|
|
|
Defined(Kind K, StringRef N, const Elf_Sym &Sym)
|
2015-08-27 20:40:06 +08:00
|
|
|
: ELFSymbolBody<ELFT>(K, N, Sym) {}
|
2015-08-29 04:19:34 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) { return S->isDefined(); }
|
2015-08-27 20:40:06 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
template <class ELFT> class DefinedAbsolute : public Defined<ELFT> {
|
|
|
|
typedef ELFSymbolBody<ELFT> Base;
|
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
|
|
|
|
|
|
|
public:
|
2015-09-24 21:34:01 +08:00
|
|
|
static Elf_Sym IgnoreUndef;
|
|
|
|
|
2015-11-20 10:32:35 +08:00
|
|
|
// The following symbols must be added early to reserve their places
|
|
|
|
// in symbol tables. The value of the symbols are set when all sections
|
|
|
|
// are finalized and their addresses are determined.
|
|
|
|
|
|
|
|
// The content for _end and end symbols.
|
|
|
|
static Elf_Sym End;
|
|
|
|
|
2015-11-06 15:43:03 +08:00
|
|
|
// The content for _gp symbol for MIPS target.
|
|
|
|
static Elf_Sym MipsGp;
|
|
|
|
|
2015-12-21 18:12:06 +08:00
|
|
|
// __rel_iplt_start/__rel_iplt_end for signaling
|
|
|
|
// where R_[*]_IRELATIVE relocations do live.
|
|
|
|
static Elf_Sym RelaIpltStart;
|
|
|
|
static Elf_Sym RelaIpltEnd;
|
|
|
|
|
2015-09-30 10:06:17 +08:00
|
|
|
DefinedAbsolute(StringRef N, const Elf_Sym &Sym)
|
2015-12-22 04:47:33 +08:00
|
|
|
: Defined<ELFT>(SymbolBody::DefinedAbsoluteKind, N, Sym) {}
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::DefinedAbsoluteKind;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-24 21:34:01 +08:00
|
|
|
template <class ELFT>
|
|
|
|
typename DefinedAbsolute<ELFT>::Elf_Sym DefinedAbsolute<ELFT>::IgnoreUndef;
|
|
|
|
|
2015-11-20 10:32:35 +08:00
|
|
|
template <class ELFT>
|
|
|
|
typename DefinedAbsolute<ELFT>::Elf_Sym DefinedAbsolute<ELFT>::End;
|
|
|
|
|
2015-11-06 15:43:03 +08:00
|
|
|
template <class ELFT>
|
|
|
|
typename DefinedAbsolute<ELFT>::Elf_Sym DefinedAbsolute<ELFT>::MipsGp;
|
|
|
|
|
2015-12-21 18:12:06 +08:00
|
|
|
template <class ELFT>
|
|
|
|
typename DefinedAbsolute<ELFT>::Elf_Sym DefinedAbsolute<ELFT>::RelaIpltStart;
|
|
|
|
|
|
|
|
template <class ELFT>
|
|
|
|
typename DefinedAbsolute<ELFT>::Elf_Sym DefinedAbsolute<ELFT>::RelaIpltEnd;
|
|
|
|
|
2015-08-29 05:26:51 +08:00
|
|
|
template <class ELFT> class DefinedCommon : public Defined<ELFT> {
|
|
|
|
typedef ELFSymbolBody<ELFT> Base;
|
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
|
|
|
|
|
|
|
public:
|
2015-10-16 06:27:29 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::uintX_t uintX_t;
|
2015-09-30 10:06:17 +08:00
|
|
|
DefinedCommon(StringRef N, const Elf_Sym &Sym)
|
2015-12-22 04:47:33 +08:00
|
|
|
: Defined<ELFT>(SymbolBody::DefinedCommonKind, N, Sym) {
|
2015-09-01 09:19:12 +08:00
|
|
|
MaxAlignment = Sym.st_value;
|
|
|
|
}
|
2015-08-29 05:26:51 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::DefinedCommonKind;
|
2015-08-29 05:26:51 +08:00
|
|
|
}
|
2015-09-01 06:55:21 +08:00
|
|
|
|
|
|
|
// The output offset of this common symbol in the output bss. Computed by the
|
|
|
|
// writer.
|
|
|
|
uintX_t OffsetInBSS;
|
2015-09-01 09:19:12 +08:00
|
|
|
|
|
|
|
// The maximum alignment we have seen for this symbol.
|
|
|
|
uintX_t MaxAlignment;
|
2015-08-29 05:26:51 +08:00
|
|
|
};
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
// Regular defined symbols read from object file symbol tables.
|
2015-08-29 04:19:34 +08:00
|
|
|
template <class ELFT> class DefinedRegular : public Defined<ELFT> {
|
2015-08-14 23:10:49 +08:00
|
|
|
typedef Defined<ELFT> Base;
|
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
public:
|
2015-10-20 05:00:02 +08:00
|
|
|
DefinedRegular(StringRef N, const Elf_Sym &Sym,
|
|
|
|
InputSectionBase<ELFT> &Section)
|
2015-12-22 04:47:33 +08:00
|
|
|
: Defined<ELFT>(SymbolBody::DefinedRegularKind, N, Sym),
|
|
|
|
Section(Section) {}
|
2015-07-25 05:03:07 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::DefinedRegularKind;
|
2015-07-25 05:03:07 +08:00
|
|
|
}
|
|
|
|
|
ELF2: Implement --gc-sections.
Section garbage collection is a feature to remove unused sections
from outputs. Unused sections are sections that cannot be reachable
from known GC-root symbols or sections. Naturally the feature is
implemented as a mark-sweep garbage collector.
In this patch, I added Live bit to InputSectionBase. If and only
if Live bit is on, the section will be written to the output.
Starting from GC-root symbols or sections, a new function, markLive(),
visits all reachable sections and sets their Live bits. Writer then
ignores sections whose Live bit is off, so that such sections are
excluded from the output.
This change has small negative impact on performance if you use
the feature because making sections means more work. The time to
link Clang changes from 0.356s to 0.386s, or +8%.
It reduces Clang size from 57,764,984 bytes to 55,296,600 bytes.
That is 4.3% reduction.
http://reviews.llvm.org/D13950
llvm-svn: 251043
2015-10-23 02:49:53 +08:00
|
|
|
InputSectionBase<ELFT> &Section;
|
2015-08-12 01:33:02 +08:00
|
|
|
};
|
|
|
|
|
2015-12-17 08:48:16 +08:00
|
|
|
// DefinedSynthetic is a class to represent linker-generated ELF symbols.
|
|
|
|
// The difference from the regular symbol is that DefinedSynthetic symbols
|
|
|
|
// don't belong to any input files or sections. Thus, its constructor
|
|
|
|
// takes an output section to calculate output VA, etc.
|
2015-09-26 02:56:53 +08:00
|
|
|
template <class ELFT> class DefinedSynthetic : public Defined<ELFT> {
|
|
|
|
typedef Defined<ELFT> Base;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
2015-09-30 10:06:17 +08:00
|
|
|
DefinedSynthetic(StringRef N, const Elf_Sym &Sym,
|
2015-10-16 06:27:29 +08:00
|
|
|
OutputSectionBase<ELFT> &Section)
|
2015-12-22 04:47:33 +08:00
|
|
|
: Defined<ELFT>(SymbolBody::DefinedSyntheticKind, N, Sym),
|
|
|
|
Section(Section) {}
|
2015-09-26 02:56:53 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::DefinedSyntheticKind;
|
2015-09-26 02:56:53 +08:00
|
|
|
}
|
|
|
|
|
2015-10-16 06:27:29 +08:00
|
|
|
const OutputSectionBase<ELFT> &Section;
|
2015-09-26 02:56:53 +08:00
|
|
|
};
|
|
|
|
|
2015-08-31 09:46:20 +08:00
|
|
|
// Undefined symbol.
|
2015-08-15 00:46:28 +08:00
|
|
|
template <class ELFT> class Undefined : public ELFSymbolBody<ELFT> {
|
|
|
|
typedef ELFSymbolBody<ELFT> Base;
|
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
|
|
|
|
|
|
|
public:
|
2015-10-08 08:29:00 +08:00
|
|
|
static Elf_Sym Required;
|
|
|
|
static Elf_Sym Optional;
|
2015-08-31 09:46:20 +08:00
|
|
|
|
2015-09-30 10:06:17 +08:00
|
|
|
Undefined(StringRef N, const Elf_Sym &Sym)
|
2015-12-22 04:47:33 +08:00
|
|
|
: ELFSymbolBody<ELFT>(SymbolBody::UndefinedKind, N, Sym) {}
|
2015-08-15 00:46:28 +08:00
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::UndefinedKind;
|
2015-08-15 00:46:28 +08:00
|
|
|
}
|
2015-10-05 17:43:57 +08:00
|
|
|
|
2015-10-08 08:29:00 +08:00
|
|
|
bool canKeepUndefined() const { return &this->Sym == &Optional; }
|
2015-08-15 00:46:28 +08:00
|
|
|
};
|
|
|
|
|
2015-08-31 09:46:20 +08:00
|
|
|
template <class ELFT>
|
2015-10-08 08:29:00 +08:00
|
|
|
typename Undefined<ELFT>::Elf_Sym Undefined<ELFT>::Required;
|
2015-10-05 17:43:57 +08:00
|
|
|
template <class ELFT>
|
2015-10-08 08:29:00 +08:00
|
|
|
typename Undefined<ELFT>::Elf_Sym Undefined<ELFT>::Optional;
|
2015-08-31 09:46:20 +08:00
|
|
|
|
2015-09-25 23:34:03 +08:00
|
|
|
template <class ELFT> class SharedSymbol : public Defined<ELFT> {
|
2015-09-26 02:32:09 +08:00
|
|
|
typedef Defined<ELFT> Base;
|
2015-09-08 23:50:05 +08:00
|
|
|
typedef typename Base::Elf_Sym Elf_Sym;
|
2015-10-29 00:48:58 +08:00
|
|
|
typedef typename llvm::object::ELFFile<ELFT>::uintX_t uintX_t;
|
2015-09-08 23:50:05 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
static bool classof(const SymbolBody *S) {
|
2015-12-22 04:47:33 +08:00
|
|
|
return S->kind() == SymbolBody::SharedKind;
|
2015-09-08 23:50:05 +08:00
|
|
|
}
|
|
|
|
|
2015-10-12 04:59:12 +08:00
|
|
|
SharedSymbol(SharedFile<ELFT> *F, StringRef Name, const Elf_Sym &Sym)
|
2015-12-22 04:47:33 +08:00
|
|
|
: Defined<ELFT>(SymbolBody::SharedKind, Name, Sym), File(F) {}
|
2015-10-12 04:59:12 +08:00
|
|
|
|
|
|
|
SharedFile<ELFT> *File;
|
2015-10-29 00:48:58 +08:00
|
|
|
|
2015-12-17 09:14:23 +08:00
|
|
|
// True if the linker has to generate a copy relocation for this shared
|
|
|
|
// symbol. OffsetInBSS is significant only when NeedsCopy is true.
|
|
|
|
bool NeedsCopy = false;
|
|
|
|
uintX_t OffsetInBSS = 0;
|
2015-09-08 23:50:05 +08:00
|
|
|
};
|
|
|
|
|
2015-09-05 06:28:10 +08:00
|
|
|
// This class represents a symbol defined in an archive file. It is
|
|
|
|
// created from an archive file header, and it knows how to load an
|
|
|
|
// object file from an archive to replace itself with a defined
|
|
|
|
// symbol. If the resolver finds both Undefined and Lazy for
|
|
|
|
// the same name, it will ask the Lazy to load a file.
|
|
|
|
class Lazy : public SymbolBody {
|
|
|
|
public:
|
|
|
|
Lazy(ArchiveFile *F, const llvm::object::Archive::Symbol S)
|
2015-10-09 17:58:39 +08:00
|
|
|
: SymbolBody(LazyKind, S.getName(), false, llvm::ELF::STV_DEFAULT, false),
|
2015-09-05 06:28:10 +08:00
|
|
|
File(F), Sym(S) {}
|
|
|
|
|
|
|
|
static bool classof(const SymbolBody *S) { return S->kind() == LazyKind; }
|
|
|
|
|
|
|
|
// Returns an object file for this symbol, or a nullptr if the file
|
|
|
|
// was already returned.
|
|
|
|
std::unique_ptr<InputFile> getMember();
|
|
|
|
|
2015-10-06 22:33:58 +08:00
|
|
|
void setWeak() { IsWeak = true; }
|
|
|
|
void setUsedInRegularObj() { IsUsedInRegularObj = true; }
|
|
|
|
|
2015-09-05 06:28:10 +08:00
|
|
|
private:
|
|
|
|
ArchiveFile *File;
|
|
|
|
const llvm::object::Archive::Symbol Sym;
|
|
|
|
};
|
|
|
|
|
2015-07-25 05:03:07 +08:00
|
|
|
} // namespace elf2
|
|
|
|
} // namespace lld
|
|
|
|
|
|
|
|
#endif
|