2015-09-23 02:19:46 +08:00
|
|
|
//===- Target.h -------------------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Linker
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLD_ELF_TARGET_H
|
|
|
|
#define LLD_ELF_TARGET_H
|
|
|
|
|
2016-04-13 09:40:19 +08:00
|
|
|
#include "InputSection.h"
|
[lld] unified COFF and ELF error handling on new Common/ErrorHandler
Summary:
The COFF linker and the ELF linker have long had similar but separate
Error.h and Error.cpp files to implement error handling. This change
introduces new error handling code in Common/ErrorHandler.h, changes the
COFF and ELF linkers to use it, and removes the old, separate
implementations.
Reviewers: ruiu
Reviewed By: ruiu
Subscribers: smeenai, jyknight, emaste, sdardis, nemanjai, nhaehnle, mgorny, javed.absar, kbarton, fedor.sergeev, llvm-commits
Differential Revision: https://reviews.llvm.org/D39259
llvm-svn: 316624
2017-10-26 06:28:38 +08:00
|
|
|
#include "lld/Common/ErrorHandler.h"
|
2015-11-06 15:43:03 +08:00
|
|
|
#include "llvm/Object/ELF.h"
|
2015-09-29 13:34:03 +08:00
|
|
|
|
2015-09-23 02:19:46 +08:00
|
|
|
namespace lld {
|
2017-10-12 06:49:24 +08:00
|
|
|
std::string toString(elf::RelType Type);
|
2017-06-17 01:32:43 +08:00
|
|
|
|
2016-02-28 08:25:54 +08:00
|
|
|
namespace elf {
|
2017-11-07 08:04:22 +08:00
|
|
|
class Defined;
|
2016-04-01 05:26:23 +08:00
|
|
|
class InputFile;
|
2017-11-04 05:21:47 +08:00
|
|
|
class Symbol;
|
2015-09-23 02:19:46 +08:00
|
|
|
|
|
|
|
class TargetInfo {
|
|
|
|
public:
|
2017-10-25 01:01:40 +08:00
|
|
|
virtual uint32_t calcEFlags() const { return 0; }
|
2017-10-12 06:49:24 +08:00
|
|
|
virtual bool isPicRel(RelType Type) const { return true; }
|
|
|
|
virtual RelType getDynRel(RelType Type) const { return Type; }
|
2016-01-29 11:51:51 +08:00
|
|
|
virtual void writeGotPltHeader(uint8_t *Buf) const {}
|
2017-11-04 05:21:47 +08:00
|
|
|
virtual void writeGotPlt(uint8_t *Buf, const Symbol &S) const {};
|
|
|
|
virtual void writeIgotPlt(uint8_t *Buf, const Symbol &S) const;
|
2017-10-12 06:49:24 +08:00
|
|
|
virtual int64_t getImplicitAddend(const uint8_t *Buf, RelType Type) const;
|
2016-01-29 11:00:30 +08:00
|
|
|
|
|
|
|
// If lazy binding is supported, the first entry of the PLT has code
|
|
|
|
// to call the dynamic linker to resolve PLT entries the first time
|
|
|
|
// they are called. This function writes that code.
|
2016-06-17 00:28:50 +08:00
|
|
|
virtual void writePltHeader(uint8_t *Buf) const {}
|
2016-01-29 11:00:30 +08:00
|
|
|
|
2016-01-29 12:15:02 +08:00
|
|
|
virtual void writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
|
2016-01-29 10:33:45 +08:00
|
|
|
uint64_t PltEntryAddr, int32_t Index,
|
2016-01-29 11:51:51 +08:00
|
|
|
unsigned RelOff) const {}
|
2017-12-20 07:59:35 +08:00
|
|
|
virtual void addPltHeaderSymbols(InputSection &IS) const {}
|
|
|
|
virtual void addPltSymbols(InputSection &IS, uint64_t Off) const {}
|
2017-10-12 06:49:24 +08:00
|
|
|
|
2016-04-28 22:34:39 +08:00
|
|
|
// Returns true if a relocation only uses the low bits of a value such that
|
|
|
|
// all those bits are in in the same page. For example, if the relocation
|
|
|
|
// only uses the low 12 bits in a system with 4k pages. If this is true, the
|
|
|
|
// bits will always have the same value at runtime and we don't have to emit
|
|
|
|
// a dynamic relocation.
|
2017-10-12 06:49:24 +08:00
|
|
|
virtual bool usesOnlyLowPageBits(RelType Type) const;
|
2016-01-08 10:41:35 +08:00
|
|
|
|
2016-07-09 00:10:27 +08:00
|
|
|
// Decide whether a Thunk is needed for the relocation from File
|
2017-02-01 18:26:03 +08:00
|
|
|
// targeting S.
|
2017-10-27 17:04:11 +08:00
|
|
|
virtual bool needsThunk(RelExpr Expr, RelType RelocType,
|
|
|
|
const InputFile *File, uint64_t BranchAddr,
|
2017-11-04 05:21:47 +08:00
|
|
|
const Symbol &S) const;
|
2017-10-27 17:04:11 +08:00
|
|
|
// Return true if we can reach Dst from Src with Relocation RelocType
|
|
|
|
virtual bool inBranchRange(RelType Type, uint64_t Src,
|
|
|
|
uint64_t Dst) const;
|
2017-11-04 05:21:47 +08:00
|
|
|
virtual RelExpr getRelExpr(RelType Type, const Symbol &S,
|
2017-04-08 14:14:14 +08:00
|
|
|
const uint8_t *Loc) const = 0;
|
2017-10-12 06:49:24 +08:00
|
|
|
|
|
|
|
virtual void relocateOne(uint8_t *Loc, RelType Type, uint64_t Val) const = 0;
|
|
|
|
|
2015-09-23 02:19:46 +08:00
|
|
|
virtual ~TargetInfo();
|
|
|
|
|
2016-06-05 07:04:39 +08:00
|
|
|
unsigned TlsGdRelaxSkip = 1;
|
2015-10-09 06:23:54 +08:00
|
|
|
unsigned PageSize = 4096;
|
2016-12-08 05:13:27 +08:00
|
|
|
unsigned DefaultMaxPageSize = 4096;
|
2015-10-15 15:49:07 +08:00
|
|
|
|
2017-10-10 18:09:35 +08:00
|
|
|
uint64_t getImageBase();
|
2015-10-15 15:49:07 +08:00
|
|
|
|
2018-03-12 04:58:18 +08:00
|
|
|
// Offset of _GLOBAL_OFFSET_TABLE_ from base of .got or .got.plt section.
|
2017-06-26 18:22:17 +08:00
|
|
|
uint64_t GotBaseSymOff = 0;
|
2018-03-12 04:58:18 +08:00
|
|
|
// True if _GLOBAL_OFFSET_TABLE_ is relative to .got.plt, false if .got.
|
|
|
|
bool GotBaseSymInGotPlt = true;
|
2017-06-26 18:22:17 +08:00
|
|
|
|
2017-10-27 16:58:28 +08:00
|
|
|
// On systems with range extensions we place collections of Thunks at
|
|
|
|
// regular spacings that enable the majority of branches reach the Thunks.
|
|
|
|
uint32_t ThunkSectionSpacing = 0;
|
|
|
|
|
2017-10-12 06:49:24 +08:00
|
|
|
RelType CopyRel;
|
|
|
|
RelType GotRel;
|
|
|
|
RelType PltRel;
|
|
|
|
RelType RelativeRel;
|
|
|
|
RelType IRelativeRel;
|
|
|
|
RelType TlsDescRel;
|
|
|
|
RelType TlsGotRel;
|
|
|
|
RelType TlsModuleIndexRel;
|
|
|
|
RelType TlsOffsetRel;
|
2016-11-11 21:24:49 +08:00
|
|
|
unsigned GotEntrySize = 0;
|
2016-11-10 17:48:29 +08:00
|
|
|
unsigned GotPltEntrySize = 0;
|
2016-06-17 07:50:25 +08:00
|
|
|
unsigned PltEntrySize;
|
|
|
|
unsigned PltHeaderSize;
|
2016-05-10 02:12:15 +08:00
|
|
|
|
|
|
|
// At least on x86_64 positions 1 and 2 are used by the first plt entry
|
|
|
|
// to support lazy loading.
|
2015-11-17 01:44:08 +08:00
|
|
|
unsigned GotPltHeaderEntriesNum = 3;
|
2016-05-10 02:12:15 +08:00
|
|
|
|
2016-05-21 01:41:09 +08:00
|
|
|
// Set to 0 for variant 2
|
|
|
|
unsigned TcbSize = 0;
|
|
|
|
|
2016-07-21 01:58:07 +08:00
|
|
|
bool NeedsThunks = false;
|
|
|
|
|
2017-04-07 18:36:42 +08:00
|
|
|
// A 4-byte field corresponding to one or more trap instructions, used to pad
|
|
|
|
// executable OutputSections.
|
|
|
|
uint32_t TrapInstr = 0;
|
|
|
|
|
2017-10-12 06:49:24 +08:00
|
|
|
virtual RelExpr adjustRelaxExpr(RelType Type, const uint8_t *Data,
|
2016-06-05 06:58:54 +08:00
|
|
|
RelExpr Expr) const;
|
2016-05-25 22:31:37 +08:00
|
|
|
virtual void relaxGot(uint8_t *Loc, uint64_t Val) const;
|
2017-10-12 06:49:24 +08:00
|
|
|
virtual void relaxTlsGdToIe(uint8_t *Loc, RelType Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsGdToLe(uint8_t *Loc, RelType Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsIeToLe(uint8_t *Loc, RelType Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsLdToLe(uint8_t *Loc, RelType Type, uint64_t Val) const;
|
2017-10-10 18:09:35 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
// On FreeBSD x86_64 the first page cannot be mmaped.
|
|
|
|
// On Linux that is controled by vm.mmap_min_addr. At least on some x86_64
|
|
|
|
// installs that is 65536, so the first 15 pages cannot be used.
|
|
|
|
// Given that, the smallest value that can be used in here is 0x10000.
|
|
|
|
uint64_t DefaultImageBase = 0x10000;
|
2015-09-23 02:19:46 +08:00
|
|
|
};
|
|
|
|
|
2017-06-17 04:15:03 +08:00
|
|
|
TargetInfo *getAArch64TargetInfo();
|
|
|
|
TargetInfo *getAMDGPUTargetInfo();
|
|
|
|
TargetInfo *getARMTargetInfo();
|
|
|
|
TargetInfo *getAVRTargetInfo();
|
|
|
|
TargetInfo *getPPC64TargetInfo();
|
|
|
|
TargetInfo *getPPCTargetInfo();
|
2017-06-29 01:05:39 +08:00
|
|
|
TargetInfo *getSPARCV9TargetInfo();
|
2017-06-17 04:15:03 +08:00
|
|
|
TargetInfo *getX32TargetInfo();
|
|
|
|
TargetInfo *getX86TargetInfo();
|
|
|
|
TargetInfo *getX86_64TargetInfo();
|
|
|
|
template <class ELFT> TargetInfo *getMipsTargetInfo();
|
2017-06-17 01:32:43 +08:00
|
|
|
|
|
|
|
std::string getErrorLocation(const uint8_t *Loc);
|
|
|
|
|
2015-10-17 05:55:40 +08:00
|
|
|
uint64_t getPPC64TocBase();
|
2016-12-05 22:14:26 +08:00
|
|
|
uint64_t getAArch64Page(uint64_t Expr);
|
2015-10-17 05:55:40 +08:00
|
|
|
|
2016-02-12 05:18:01 +08:00
|
|
|
extern TargetInfo *Target;
|
2017-06-17 04:15:03 +08:00
|
|
|
TargetInfo *getTarget();
|
2017-06-17 01:32:43 +08:00
|
|
|
|
2017-11-07 08:04:22 +08:00
|
|
|
template <class ELFT> bool isMipsPIC(const Defined *Sym);
|
|
|
|
|
2017-12-12 04:47:21 +08:00
|
|
|
static inline void reportRangeError(uint8_t *Loc, RelType Type, const Twine &V,
|
|
|
|
int64_t Min, uint64_t Max) {
|
|
|
|
error(getErrorLocation(Loc) + "relocation " + lld::toString(Type) +
|
|
|
|
" out of range: " + V + " is not in [" + Twine(Min) + ", " +
|
|
|
|
Twine(Max) + "]");
|
|
|
|
}
|
|
|
|
|
2017-06-17 01:32:43 +08:00
|
|
|
template <unsigned N>
|
2017-10-12 06:49:24 +08:00
|
|
|
static void checkInt(uint8_t *Loc, int64_t V, RelType Type) {
|
2017-06-17 01:32:43 +08:00
|
|
|
if (!llvm::isInt<N>(V))
|
2017-12-12 04:47:21 +08:00
|
|
|
reportRangeError(Loc, Type, Twine(V), llvm::minIntN(N), llvm::maxIntN(N));
|
2015-09-23 02:19:46 +08:00
|
|
|
}
|
2017-01-06 18:04:08 +08:00
|
|
|
|
2017-06-17 01:32:43 +08:00
|
|
|
template <unsigned N>
|
2017-10-12 06:49:24 +08:00
|
|
|
static void checkUInt(uint8_t *Loc, uint64_t V, RelType Type) {
|
2017-06-17 01:32:43 +08:00
|
|
|
if (!llvm::isUInt<N>(V))
|
2017-12-12 04:47:21 +08:00
|
|
|
reportRangeError(Loc, Type, Twine(V), 0, llvm::maxUIntN(N));
|
2017-06-17 01:32:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <unsigned N>
|
2017-10-12 06:49:24 +08:00
|
|
|
static void checkIntUInt(uint8_t *Loc, uint64_t V, RelType Type) {
|
2017-06-17 01:32:43 +08:00
|
|
|
if (!llvm::isInt<N>(V) && !llvm::isUInt<N>(V))
|
2017-12-12 04:47:21 +08:00
|
|
|
// For the error message we should cast V to a signed integer so that error
|
|
|
|
// messages show a small negative value rather than an extremely large one
|
|
|
|
reportRangeError(Loc, Type, Twine((int64_t)V), llvm::minIntN(N),
|
|
|
|
llvm::maxUIntN(N));
|
2017-06-17 01:32:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
template <unsigned N>
|
2017-10-12 06:49:24 +08:00
|
|
|
static void checkAlignment(uint8_t *Loc, uint64_t V, RelType Type) {
|
2017-06-17 01:32:43 +08:00
|
|
|
if ((V & (N - 1)) != 0)
|
|
|
|
error(getErrorLocation(Loc) + "improper alignment for relocation " +
|
2017-12-08 22:53:14 +08:00
|
|
|
lld::toString(Type) + ": 0x" + llvm::utohexstr(V) +
|
|
|
|
" is not aligned to " + Twine(N) + " bytes");
|
2017-06-17 01:32:43 +08:00
|
|
|
}
|
2018-03-10 02:03:22 +08:00
|
|
|
|
|
|
|
// Endianness-aware read/write.
|
|
|
|
inline uint16_t read16(const void *P) {
|
|
|
|
return llvm::support::endian::read16(P, Config->Endianness);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint32_t read32(const void *P) {
|
|
|
|
return llvm::support::endian::read32(P, Config->Endianness);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t read64(const void *P) {
|
|
|
|
return llvm::support::endian::read64(P, Config->Endianness);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void write16(void *P, uint16_t V) {
|
|
|
|
llvm::support::endian::write16(P, V, Config->Endianness);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void write32(void *P, uint32_t V) {
|
|
|
|
llvm::support::endian::write32(P, V, Config->Endianness);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void write64(void *P, uint64_t V) {
|
|
|
|
llvm::support::endian::write64(P, V, Config->Endianness);
|
|
|
|
}
|
2017-06-17 01:32:43 +08:00
|
|
|
} // namespace elf
|
2017-07-18 19:55:35 +08:00
|
|
|
} // namespace lld
|
2015-09-23 02:19:46 +08:00
|
|
|
|
|
|
|
#endif
|