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-10-15 15:49:07 +08:00
|
|
|
uint64_t getVAStart() const { return VAStart; }
|
2015-10-29 00:48:58 +08:00
|
|
|
unsigned getCopyReloc() const { return CopyReloc; }
|
2015-09-23 02:19:46 +08:00
|
|
|
unsigned getPCRelReloc() const { return PCRelReloc; }
|
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 getGotRefReloc() const { return GotRefReloc; }
|
|
|
|
unsigned getRelativeReloc() const { return RelativeReloc; }
|
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-10-15 00:15:46 +08:00
|
|
|
virtual unsigned getPLTRefReloc(unsigned Type) const;
|
2015-11-06 15:43:03 +08:00
|
|
|
virtual void writeGotHeaderEntries(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-09-23 02:19:46 +08:00
|
|
|
virtual void writePltEntry(uint8_t *Buf, uint64_t GotEntryAddr,
|
2015-10-20 16:54:27 +08:00
|
|
|
uint64_t PltEntryAddr, int32_t Index) const = 0;
|
2015-10-06 03:30:12 +08:00
|
|
|
virtual bool isRelRelative(uint32_t Type) const;
|
2015-10-29 00:48:58 +08:00
|
|
|
virtual bool relocNeedsCopy(uint32_t Type, const SymbolBody &S) const;
|
2015-09-30 07:22:16 +08:00
|
|
|
virtual bool relocNeedsGot(uint32_t Type, const SymbolBody &S) const = 0;
|
2015-09-29 21:36:32 +08:00
|
|
|
virtual bool relocPointsToGot(uint32_t Type) const;
|
2015-09-30 07:22:16 +08:00
|
|
|
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,
|
|
|
|
uint64_t P, uint64_t SA) const = 0;
|
2015-09-23 04:54:08 +08:00
|
|
|
|
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 02:19:46 +08:00
|
|
|
unsigned PCRelReloc;
|
2015-09-29 22:42:37 +08:00
|
|
|
unsigned GotRefReloc;
|
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-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-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();
|
|
|
|
|
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
|