]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Target.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r305145, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / Target.h
1 //===- Target.h -------------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLD_ELF_TARGET_H
11 #define LLD_ELF_TARGET_H
12
13 #include "InputSection.h"
14 #include "llvm/ADT/StringRef.h"
15 #include "llvm/Object/ELF.h"
16
17 #include <memory>
18
19 namespace lld {
20 namespace elf {
21 class InputFile;
22 class SymbolBody;
23
24 class TargetInfo {
25 public:
26   virtual bool isPicRel(uint32_t Type) const { return true; }
27   virtual uint32_t getDynRel(uint32_t Type) const { return Type; }
28   virtual void writeGotPltHeader(uint8_t *Buf) const {}
29   virtual void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const {};
30   virtual void writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const;
31   virtual int64_t getImplicitAddend(const uint8_t *Buf, uint32_t Type) const;
32
33   // If lazy binding is supported, the first entry of the PLT has code
34   // to call the dynamic linker to resolve PLT entries the first time
35   // they are called. This function writes that code.
36   virtual void writePltHeader(uint8_t *Buf) const {}
37
38   virtual void writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
39                         uint64_t PltEntryAddr, int32_t Index,
40                         unsigned RelOff) const {}
41   virtual void addPltHeaderSymbols(InputSectionBase *IS) const {}
42   virtual void addPltSymbols(InputSectionBase *IS, uint64_t Off) const {}
43   // Returns true if a relocation only uses the low bits of a value such that
44   // all those bits are in in the same page. For example, if the relocation
45   // only uses the low 12 bits in a system with 4k pages. If this is true, the
46   // bits will always have the same value at runtime and we don't have to emit
47   // a dynamic relocation.
48   virtual bool usesOnlyLowPageBits(uint32_t Type) const;
49
50   // Decide whether a Thunk is needed for the relocation from File
51   // targeting S.
52   virtual bool needsThunk(RelExpr Expr, uint32_t RelocType,
53                           const InputFile *File, const SymbolBody &S) const;
54   virtual RelExpr getRelExpr(uint32_t Type, const SymbolBody &S,
55                              const uint8_t *Loc) const = 0;
56   virtual void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const = 0;
57   virtual ~TargetInfo();
58
59   unsigned TlsGdRelaxSkip = 1;
60   unsigned PageSize = 4096;
61   unsigned DefaultMaxPageSize = 4096;
62
63   // On FreeBSD x86_64 the first page cannot be mmaped.
64   // On Linux that is controled by vm.mmap_min_addr. At least on some x86_64
65   // installs that is 65536, so the first 15 pages cannot be used.
66   // Given that, the smallest value that can be used in here is 0x10000.
67   uint64_t DefaultImageBase = 0x10000;
68
69   uint32_t CopyRel;
70   uint32_t GotRel;
71   uint32_t PltRel;
72   uint32_t RelativeRel;
73   uint32_t IRelativeRel;
74   uint32_t TlsDescRel;
75   uint32_t TlsGotRel;
76   uint32_t TlsModuleIndexRel;
77   uint32_t TlsOffsetRel;
78   unsigned GotEntrySize = 0;
79   unsigned GotPltEntrySize = 0;
80   unsigned PltEntrySize;
81   unsigned PltHeaderSize;
82
83   // At least on x86_64 positions 1 and 2 are used by the first plt entry
84   // to support lazy loading.
85   unsigned GotPltHeaderEntriesNum = 3;
86
87   // Set to 0 for variant 2
88   unsigned TcbSize = 0;
89
90   bool NeedsThunks = false;
91
92   // A 4-byte field corresponding to one or more trap instructions, used to pad
93   // executable OutputSections.
94   uint32_t TrapInstr = 0;
95
96   virtual RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
97                                   RelExpr Expr) const;
98   virtual void relaxGot(uint8_t *Loc, uint64_t Val) const;
99   virtual void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
100   virtual void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
101   virtual void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
102   virtual void relaxTlsLdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
103 };
104
105 uint64_t getPPC64TocBase();
106 uint64_t getAArch64Page(uint64_t Expr);
107
108 extern TargetInfo *Target;
109 TargetInfo *createTarget();
110 }
111
112 std::string toString(uint32_t RelType);
113 }
114
115 #endif