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 {
|
|
|
|
namespace elf2 {
|
|
|
|
class SymbolBody;
|
|
|
|
|
|
|
|
class TargetInfo {
|
|
|
|
public:
|
2015-10-09 06:23:54 +08:00
|
|
|
unsigned getPageSize() const { return PageSize; }
|
2015-11-10 16:39:27 +08:00
|
|
|
uint64_t getVAStart() const;
|
2015-10-29 00:48:58 +08:00
|
|
|
unsigned getCopyReloc() const { return CopyReloc; }
|
2015-09-23 05:35:51 +08:00
|
|
|
unsigned getGotReloc() const { return GotReloc; }
|
2015-10-20 16:54:27 +08:00
|
|
|
unsigned getPltReloc() const { return PltReloc; }
|
2015-10-06 03:30:12 +08:00
|
|
|
unsigned getRelativeReloc() const { return RelativeReloc; }
|
2015-12-21 18:12:06 +08:00
|
|
|
unsigned getIRelativeReloc() const { return IRelativeReloc; }
|
2015-11-13 08:32:58 +08:00
|
|
|
bool isTlsLocalDynamicReloc(unsigned Type) const {
|
|
|
|
return Type == TlsLocalDynamicReloc;
|
|
|
|
}
|
|
|
|
bool isTlsGlobalDynamicReloc(unsigned Type) const {
|
|
|
|
return Type == TlsGlobalDynamicReloc;
|
|
|
|
}
|
2015-11-11 09:00:24 +08:00
|
|
|
unsigned getTlsModuleIndexReloc() const { return TlsModuleIndexReloc; }
|
2015-11-13 08:28:34 +08:00
|
|
|
unsigned getTlsOffsetReloc() const { return TlsOffsetReloc; }
|
2015-10-20 16:54:27 +08:00
|
|
|
unsigned getPltZeroEntrySize() const { return PltZeroEntrySize; }
|
2015-10-09 05:51:31 +08:00
|
|
|
unsigned getPltEntrySize() const { return PltEntrySize; }
|
2015-10-20 16:54:27 +08:00
|
|
|
bool supportsLazyRelocations() const { return LazyRelocations; }
|
2015-11-06 15:43:03 +08:00
|
|
|
unsigned getGotHeaderEntriesNum() const { return GotHeaderEntriesNum; }
|
2015-11-17 01:44:08 +08:00
|
|
|
unsigned getGotPltHeaderEntriesNum() const { return GotPltHeaderEntriesNum; }
|
2015-11-26 04:41:53 +08:00
|
|
|
virtual unsigned getDynReloc(unsigned Type) const { return Type; }
|
2015-12-17 17:32:21 +08:00
|
|
|
virtual bool isTlsDynReloc(unsigned Type, const SymbolBody &S) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
virtual unsigned getTlsGotReloc(unsigned Type = -1) const {
|
|
|
|
return TlsGotReloc;
|
|
|
|
}
|
2015-11-06 15:43:03 +08:00
|
|
|
virtual void writeGotHeaderEntries(uint8_t *Buf) const;
|
2015-11-17 01:44:08 +08:00
|
|
|
virtual void writeGotPltHeaderEntries(uint8_t *Buf) const;
|
2015-10-20 16:54:27 +08:00
|
|
|
virtual void writeGotPltEntry(uint8_t *Buf, uint64_t Plt) const = 0;
|
|
|
|
virtual void writePltZeroEntry(uint8_t *Buf, uint64_t GotEntryAddr,
|
|
|
|
uint64_t PltEntryAddr) const = 0;
|
2015-11-26 06:15:01 +08:00
|
|
|
virtual void writePltEntry(uint8_t *Buf, uint64_t GotAddr,
|
|
|
|
uint64_t GotEntryAddr, uint64_t PltEntryAddr,
|
|
|
|
int32_t Index, unsigned RelOff) const = 0;
|
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.
|
|
|
|
virtual bool isHintReloc(uint32_t Type) const;
|
|
|
|
|
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-08 08:13:23 +08:00
|
|
|
virtual bool isSizeReloc(uint32_t Type) const;
|
2015-12-17 17:32:21 +08:00
|
|
|
virtual bool relocNeedsDynRelative(unsigned Type) const { return false; }
|
2015-09-30 07:22:16 +08:00
|
|
|
virtual bool relocNeedsGot(uint32_t Type, const SymbolBody &S) const = 0;
|
|
|
|
virtual bool relocNeedsPlt(uint32_t Type, const SymbolBody &S) const = 0;
|
2015-10-23 10:40:46 +08:00
|
|
|
virtual void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
|
2015-12-11 16:59:37 +08:00
|
|
|
uint64_t P, uint64_t SA, uint64_t ZA = 0,
|
2015-12-02 05:24:45 +08:00
|
|
|
uint8_t *PairedLoc = nullptr) const = 0;
|
2015-12-21 18:00:12 +08:00
|
|
|
virtual bool isGotRelative(uint32_t Type) const;
|
2016-01-29 08:20:12 +08:00
|
|
|
virtual bool canRelaxTls(unsigned Type, const SymbolBody *S) const;
|
2015-12-17 09:18:40 +08:00
|
|
|
virtual bool needsCopyRel(uint32_t Type, const SymbolBody &S) const;
|
2015-11-26 05:46:05 +08:00
|
|
|
virtual unsigned relocateTlsOptimize(uint8_t *Loc, uint8_t *BufEnd,
|
2015-12-04 19:20:13 +08:00
|
|
|
uint32_t Type, uint64_t P, uint64_t SA,
|
2016-01-23 02:02:28 +08:00
|
|
|
const SymbolBody *S) const;
|
2015-09-23 02:19:46 +08:00
|
|
|
virtual ~TargetInfo();
|
|
|
|
|
|
|
|
protected:
|
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;
|
|
|
|
|
2015-10-29 00:48:58 +08:00
|
|
|
unsigned CopyReloc;
|
2015-09-23 05:35:51 +08:00
|
|
|
unsigned GotReloc;
|
2015-10-20 16:54:27 +08:00
|
|
|
unsigned PltReloc;
|
2015-10-06 03:30:12 +08:00
|
|
|
unsigned RelativeReloc;
|
2015-12-21 18:12:06 +08:00
|
|
|
unsigned IRelativeReloc;
|
2015-11-14 00:28:53 +08:00
|
|
|
unsigned TlsGotReloc = 0;
|
2015-11-11 09:00:24 +08:00
|
|
|
unsigned TlsLocalDynamicReloc = 0;
|
2015-11-13 08:28:34 +08:00
|
|
|
unsigned TlsGlobalDynamicReloc = 0;
|
2015-11-11 09:00:24 +08:00
|
|
|
unsigned TlsModuleIndexReloc;
|
2015-11-13 08:28:34 +08:00
|
|
|
unsigned TlsOffsetReloc;
|
2015-10-09 05:51:31 +08:00
|
|
|
unsigned PltEntrySize = 8;
|
2015-10-20 16:54:27 +08:00
|
|
|
unsigned PltZeroEntrySize = 0;
|
2015-11-06 15:43:03 +08:00
|
|
|
unsigned GotHeaderEntriesNum = 0;
|
2015-11-17 01:44:08 +08:00
|
|
|
unsigned GotPltHeaderEntriesNum = 3;
|
2015-10-20 16:54:27 +08:00
|
|
|
bool LazyRelocations = false;
|
2015-09-23 02:19:46 +08:00
|
|
|
};
|
|
|
|
|
2015-10-17 05:55:40 +08:00
|
|
|
uint64_t getPPC64TocBase();
|
|
|
|
|
2015-11-06 15:43:03 +08:00
|
|
|
template <class ELFT>
|
|
|
|
typename llvm::object::ELFFile<ELFT>::uintX_t getMipsGpAddr();
|
|
|
|
|
2016-01-21 13:33:23 +08:00
|
|
|
// Returns true if the relocation requires entry in the local part of GOT.
|
|
|
|
bool needsMipsLocalGot(uint32_t Type, SymbolBody *Body);
|
|
|
|
|
2015-12-21 18:12:06 +08:00
|
|
|
template <class ELFT> bool isGnuIFunc(const SymbolBody &S);
|
|
|
|
|
2015-09-23 02:19:46 +08:00
|
|
|
extern std::unique_ptr<TargetInfo> Target;
|
2015-10-14 00:08:15 +08:00
|
|
|
TargetInfo *createTarget();
|
2015-09-23 02:19:46 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|