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"
|
2015-09-29 13:34:03 +08:00
|
|
|
#include "llvm/ADT/StringRef.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
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
namespace lld {
|
2016-02-28 08:25:54 +08:00
|
|
|
namespace elf {
|
2016-04-01 05:26:23 +08:00
|
|
|
class InputFile;
|
2015-09-23 02:19:46 +08:00
|
|
|
class SymbolBody;
|
|
|
|
|
|
|
|
class TargetInfo {
|
|
|
|
public:
|
2016-03-06 14:01:07 +08:00
|
|
|
virtual bool isTlsInitialExecRel(uint32_t Type) const;
|
|
|
|
virtual bool isTlsLocalDynamicRel(uint32_t Type) const;
|
|
|
|
virtual bool isTlsGlobalDynamicRel(uint32_t Type) const;
|
2016-11-25 16:56:36 +08:00
|
|
|
virtual bool isPicRel(uint32_t Type) const { return true; }
|
2016-03-06 14:01:07 +08:00
|
|
|
virtual uint32_t getDynRel(uint32_t Type) const { return Type; }
|
2016-01-29 11:51:51 +08:00
|
|
|
virtual void writeGotPltHeader(uint8_t *Buf) const {}
|
2016-06-17 00:14:50 +08:00
|
|
|
virtual void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const {};
|
2016-04-01 22:36:09 +08:00
|
|
|
virtual uint64_t getImplicitAddend(const uint8_t *Buf, uint32_t 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 {}
|
2016-01-08 10:41:35 +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.
|
|
|
|
virtual bool usesOnlyLowPageBits(uint32_t 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
|
|
|
|
// targeting S. Returns one of:
|
|
|
|
// Expr if there is no Thunk required
|
|
|
|
// R_THUNK_ABS if thunk is required and expression is absolute
|
|
|
|
// R_THUNK_PC if thunk is required and expression is pc rel
|
|
|
|
// R_THUNK_PLT_PC if thunk is required to PLT entry and expression is pc rel
|
|
|
|
virtual RelExpr getThunkExpr(RelExpr Expr, uint32_t RelocType,
|
|
|
|
const InputFile &File,
|
|
|
|
const SymbolBody &S) const;
|
2016-04-13 09:40:19 +08:00
|
|
|
virtual RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const = 0;
|
|
|
|
virtual void relocateOne(uint8_t *Loc, uint32_t 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
|
|
|
|
2016-11-24 01:44:02 +08:00
|
|
|
// 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
|
2015-10-15 15:49:07 +08:00
|
|
|
// 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.
|
2016-07-15 01:43:28 +08:00
|
|
|
uint64_t DefaultImageBase = 0x10000;
|
2015-10-15 15:49:07 +08:00
|
|
|
|
2016-03-06 14:01:07 +08:00
|
|
|
uint32_t CopyRel;
|
|
|
|
uint32_t GotRel;
|
|
|
|
uint32_t PltRel;
|
|
|
|
uint32_t RelativeRel;
|
|
|
|
uint32_t IRelativeRel;
|
2016-06-03 03:49:53 +08:00
|
|
|
uint32_t TlsDescRel;
|
2016-06-17 07:50:25 +08:00
|
|
|
uint32_t TlsGotRel;
|
2016-03-06 14:01:07 +08:00
|
|
|
uint32_t TlsModuleIndexRel;
|
|
|
|
uint32_t 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;
|
|
|
|
|
2016-06-05 06:58:54 +08:00
|
|
|
virtual RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
|
|
|
|
RelExpr Expr) const;
|
2016-05-25 22:31:37 +08:00
|
|
|
virtual void relaxGot(uint8_t *Loc, uint64_t Val) const;
|
2016-04-13 09:40:19 +08:00
|
|
|
virtual void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
|
|
|
|
virtual void relaxTlsLdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
|
2015-09-23 02:19:46 +08:00
|
|
|
};
|
|
|
|
|
2016-11-24 02:07:33 +08:00
|
|
|
std::string toString(uint32_t RelType);
|
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;
|
2015-10-14 00:08:15 +08:00
|
|
|
TargetInfo *createTarget();
|
2015-09-23 02:19:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|