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
|
|
|
|
|
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 {
|
2015-09-23 02:19:46 +08:00
|
|
|
class SymbolBody;
|
|
|
|
|
|
|
|
class TargetInfo {
|
|
|
|
public:
|
2015-11-10 16:39:27 +08:00
|
|
|
uint64_t getVAStart() const;
|
2016-03-06 14:01:07 +08:00
|
|
|
virtual bool isTlsInitialExecRel(uint32_t Type) const;
|
|
|
|
virtual bool pointsToLocalDynamicGotEntry(uint32_t Type) const;
|
|
|
|
virtual bool isTlsLocalDynamicRel(uint32_t Type) const;
|
|
|
|
virtual bool isTlsGlobalDynamicRel(uint32_t Type) const;
|
|
|
|
virtual uint32_t getDynRel(uint32_t Type) const { return Type; }
|
|
|
|
virtual uint32_t getTlsGotRel(uint32_t Type) const { return TlsGotRel; }
|
2016-01-29 11:51:51 +08:00
|
|
|
virtual void writeGotHeader(uint8_t *Buf) const {}
|
|
|
|
virtual void writeGotPltHeader(uint8_t *Buf) const {}
|
|
|
|
virtual void writeGotPlt(uint8_t *Buf, uint64_t Plt) const {};
|
2016-03-30 20:40:38 +08:00
|
|
|
virtual uint64_t getImplicitAddend(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-01-29 11:51:51 +08:00
|
|
|
virtual void writePltZero(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-01-15 04:42:09 +08:00
|
|
|
// Returns true if a relocation is just a hint for linker to make for example
|
|
|
|
// some code optimization. Such relocations should not be handled as a regular
|
|
|
|
// ones and lead to dynamic relocation creation etc.
|
2016-01-29 10:33:45 +08:00
|
|
|
virtual bool isHintRel(uint32_t Type) const;
|
2016-01-15 04:42:09 +08:00
|
|
|
|
2016-01-08 10:41:35 +08:00
|
|
|
// Returns true if a relocation is relative to the place being relocated,
|
|
|
|
// such as relocations used for PC-relative instructions. Such relocations
|
|
|
|
// need not be fixed up if an image is loaded to a different address than
|
|
|
|
// the link-time address. So we don't have to emit a relocation for the
|
|
|
|
// dynamic linker if isRelRelative returns true.
|
2015-10-06 03:30:12 +08:00
|
|
|
virtual bool isRelRelative(uint32_t Type) const;
|
2016-01-08 10:41:35 +08:00
|
|
|
|
2016-01-29 10:33:45 +08:00
|
|
|
virtual bool isSizeRel(uint32_t Type) const;
|
2016-03-06 14:01:07 +08:00
|
|
|
virtual bool needsDynRelative(uint32_t Type) const { return false; }
|
2016-03-31 21:38:28 +08:00
|
|
|
virtual bool needsGot(uint32_t Type, const SymbolBody &S) const;
|
2016-02-25 02:24:23 +08:00
|
|
|
virtual bool refersToGotEntry(uint32_t Type) const;
|
2016-02-12 23:47:37 +08:00
|
|
|
|
|
|
|
enum PltNeed { Plt_No, Plt_Explicit, Plt_Implicit };
|
2016-02-25 02:24:23 +08:00
|
|
|
PltNeed needsPlt(uint32_t Type, const SymbolBody &S) const;
|
|
|
|
|
2015-10-23 10:40:46 +08:00
|
|
|
virtual void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
2016-03-30 21:27:50 +08:00
|
|
|
uint64_t P, uint64_t SA) const = 0;
|
2015-12-21 18:00:12 +08:00
|
|
|
virtual bool isGotRelative(uint32_t Type) const;
|
2016-03-06 14:01:07 +08:00
|
|
|
bool canRelaxTls(uint32_t Type, const SymbolBody *S) const;
|
2016-02-24 02:53:29 +08:00
|
|
|
template <class ELFT>
|
2016-02-23 05:23:29 +08:00
|
|
|
bool needsCopyRel(uint32_t Type, const SymbolBody &S) const;
|
2016-03-17 03:03:58 +08:00
|
|
|
size_t relaxTls(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
|
|
|
|
uint64_t SA, const SymbolBody &S) const;
|
2015-09-23 02:19:46 +08:00
|
|
|
virtual ~TargetInfo();
|
|
|
|
|
2015-10-09 06:23:54 +08:00
|
|
|
unsigned PageSize = 4096;
|
2015-10-15 15:49:07 +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
|
|
|
|
// 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.
|
|
|
|
// If using 2MB pages, the smallest page aligned address that works is
|
|
|
|
// 0x200000, but it looks like every OS uses 4k pages for executables.
|
|
|
|
uint64_t VAStart = 0x10000;
|
|
|
|
|
2016-03-06 14:01:07 +08:00
|
|
|
uint32_t CopyRel;
|
|
|
|
uint32_t GotRel;
|
|
|
|
uint32_t PltRel;
|
|
|
|
uint32_t RelativeRel;
|
|
|
|
uint32_t IRelativeRel;
|
|
|
|
uint32_t TlsGotRel = 0;
|
|
|
|
uint32_t TlsModuleIndexRel;
|
|
|
|
uint32_t TlsOffsetRel;
|
2015-10-09 05:51:31 +08:00
|
|
|
unsigned PltEntrySize = 8;
|
2016-01-29 11:00:32 +08:00
|
|
|
unsigned PltZeroSize = 0;
|
2015-11-06 15:43:03 +08:00
|
|
|
unsigned GotHeaderEntriesNum = 0;
|
2015-11-17 01:44:08 +08:00
|
|
|
unsigned GotPltHeaderEntriesNum = 3;
|
2016-01-29 09:49:32 +08:00
|
|
|
bool UseLazyBinding = false;
|
2016-02-23 05:23:29 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
virtual bool needsCopyRelImpl(uint32_t Type) const;
|
2016-02-26 22:27:47 +08:00
|
|
|
virtual bool needsPltImpl(uint32_t Type) const;
|
2016-03-17 03:03:58 +08:00
|
|
|
|
|
|
|
virtual size_t relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
|
|
|
uint64_t P, uint64_t SA) const;
|
|
|
|
virtual size_t relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
2016-03-17 07:01:56 +08:00
|
|
|
uint64_t P, uint64_t SA) const;
|
2016-03-17 03:03:58 +08:00
|
|
|
virtual size_t relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
2016-03-17 07:01:56 +08:00
|
|
|
uint64_t P, uint64_t SA) const;
|
2016-03-17 03:03:58 +08:00
|
|
|
virtual size_t relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
|
|
|
uint64_t P, uint64_t SA) const;
|
2015-09-23 02:19:46 +08:00
|
|
|
};
|
|
|
|
|
2015-10-17 05:55:40 +08:00
|
|
|
uint64_t getPPC64TocBase();
|
|
|
|
|
2016-03-15 07:16:09 +08:00
|
|
|
template <class ELFT> typename ELFT::uint getMipsGpAddr();
|
2015-11-06 15:43:03 +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
|