Index: ELF/Symbols.h =================================================================== --- ELF/Symbols.h +++ ELF/Symbols.h @@ -84,7 +84,7 @@ bool isLazy() const { return SymbolKind == LazyKind; } bool isShared() const { return SymbolKind == SharedKind; } bool isUsedInRegularObj() const { return IsUsedInRegularObj; } - bool isFunc() const { return IsFunc; } + bool isFunc() const { return Type == llvm::ELF::STT_FUNC; } // Returns the symbol name. StringRef getName() const { return Name; } @@ -128,10 +128,10 @@ protected: SymbolBody(Kind K, StringRef Name, bool IsWeak, uint8_t Visibility, - bool IsTls, bool IsFunc) + uint8_t Type, bool IsTls) : SymbolKind(K), IsWeak(IsWeak), Visibility(Visibility), MustBeInDynSym(false), NeedsCopyOrPltAddr(false), IsTls(IsTls), - IsFunc(IsFunc), Name(Name) { + Type(Type), Name(Name) { IsUsedInRegularObj = K != SharedKind && K != LazyKind; } @@ -156,7 +156,7 @@ unsigned IsTls : 1; protected: - unsigned IsFunc : 1; + uint8_t Type; StringRef Name; Symbol *Backref = nullptr; @@ -165,8 +165,8 @@ // The base class for any defined symbols. class Defined : public SymbolBody { public: - Defined(Kind K, StringRef Name, bool IsWeak, uint8_t Visibility, bool IsTls, - bool IsFunction); + Defined(Kind K, StringRef Name, bool IsWeak, uint8_t Visibility, + uint8_t Type, bool IsTls); static bool classof(const SymbolBody *S) { return S->isDefined(); } }; @@ -178,8 +178,8 @@ public: DefinedElf(Kind K, StringRef N, const Elf_Sym &Sym) : Defined(K, N, Sym.getBinding() == llvm::ELF::STB_WEAK, - Sym.getVisibility(), Sym.getType() == llvm::ELF::STT_TLS, - Sym.getType() == llvm::ELF::STT_FUNC), + Sym.getVisibility(), Sym.getType(), + Sym.getType() == llvm::ELF::STT_TLS), Sym(Sym) {} const Elf_Sym &Sym; @@ -307,7 +307,7 @@ // OffsetInBss is significant only when needsCopy() is true. uintX_t OffsetInBss = 0; - bool needsCopy() const { return this->NeedsCopyOrPltAddr && !this->IsFunc; } + bool needsCopy() const { return this->NeedsCopyOrPltAddr && !this->isFunc(); } }; // This class represents a symbol defined in an archive file. It is Index: ELF/Symbols.cpp =================================================================== --- ELF/Symbols.cpp +++ ELF/Symbols.cpp @@ -61,7 +61,7 @@ auto *SS = cast>(this); if (!SS->NeedsCopyOrPltAddr) return 0; - if (SS->IsFunc) + if (SS->isFunc()) return getPltVA(); else return Out::Bss->getVA() + SS->OffsetInBss; @@ -161,8 +161,8 @@ } Defined::Defined(Kind K, StringRef Name, bool IsWeak, uint8_t Visibility, - bool IsTls, bool IsFunction) - : SymbolBody(K, Name, IsWeak, Visibility, IsTls, IsFunction) {} + uint8_t Type, bool IsTls) + : SymbolBody(K, Name, IsWeak, Visibility, Type, IsTls) {} DefinedBitcode::DefinedBitcode(StringRef Name, bool IsWeak) : Defined(DefinedBitcodeKind, Name, IsWeak, STV_DEFAULT, false, false) {} @@ -173,7 +173,7 @@ Undefined::Undefined(SymbolBody::Kind K, StringRef N, bool IsWeak, uint8_t Visibility, bool IsTls) - : SymbolBody(K, N, IsWeak, Visibility, IsTls, /*IsFunction*/ false), + : SymbolBody(K, N, IsWeak, Visibility, 0 /* Type */, IsTls), CanKeepUndefined(false) {} Undefined::Undefined(StringRef N, bool IsWeak, uint8_t Visibility, @@ -195,13 +195,13 @@ OutputSectionBase &Section, uint8_t Visibility) : Defined(SymbolBody::DefinedSyntheticKind, N, false, Visibility, - /*IsTls*/ false, /*IsFunction*/ false), + Type, /*IsTls*/ false), Value(Value), Section(Section) {} DefinedCommon::DefinedCommon(StringRef N, uint64_t Size, uint64_t Alignment, bool IsWeak, uint8_t Visibility) - : Defined(SymbolBody::DefinedCommonKind, N, IsWeak, Visibility, - /*IsTls*/ false, /*IsFunction*/ false) { + : Defined(SymbolBody::DefinedCommonKind, N, IsWeak, Visibility, Type, + /*IsTls*/ false) { MaxAlignment = Alignment; this->Size = Size; }