]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Target.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r306956, 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 "Error.h"
14 #include "InputSection.h"
15 #include "llvm/Object/ELF.h"
16
17 namespace lld {
18 std::string toString(uint32_t RelType);
19
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   // Offset of _GLOBAL_OFFSET_TABLE_ from base of .got section. Use -1 for
70   // end of .got
71   uint64_t GotBaseSymOff = 0;
72
73   uint32_t CopyRel;
74   uint32_t GotRel;
75   uint32_t PltRel;
76   uint32_t RelativeRel;
77   uint32_t IRelativeRel;
78   uint32_t TlsDescRel;
79   uint32_t TlsGotRel;
80   uint32_t TlsModuleIndexRel;
81   uint32_t TlsOffsetRel;
82   unsigned GotEntrySize = 0;
83   unsigned GotPltEntrySize = 0;
84   unsigned PltEntrySize;
85   unsigned PltHeaderSize;
86
87   // At least on x86_64 positions 1 and 2 are used by the first plt entry
88   // to support lazy loading.
89   unsigned GotPltHeaderEntriesNum = 3;
90
91   // Set to 0 for variant 2
92   unsigned TcbSize = 0;
93
94   bool NeedsThunks = false;
95
96   // A 4-byte field corresponding to one or more trap instructions, used to pad
97   // executable OutputSections.
98   uint32_t TrapInstr = 0;
99
100   virtual RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
101                                   RelExpr Expr) const;
102   virtual void relaxGot(uint8_t *Loc, uint64_t Val) const;
103   virtual void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
104   virtual void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
105   virtual void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
106   virtual void relaxTlsLdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const;
107 };
108
109 TargetInfo *getAArch64TargetInfo();
110 TargetInfo *getAMDGPUTargetInfo();
111 TargetInfo *getARMTargetInfo();
112 TargetInfo *getAVRTargetInfo();
113 TargetInfo *getPPC64TargetInfo();
114 TargetInfo *getPPCTargetInfo();
115 TargetInfo *getSPARCV9TargetInfo();
116 TargetInfo *getX32TargetInfo();
117 TargetInfo *getX86TargetInfo();
118 TargetInfo *getX86_64TargetInfo();
119 template <class ELFT> TargetInfo *getMipsTargetInfo();
120
121 std::string getErrorLocation(const uint8_t *Loc);
122
123 uint64_t getPPC64TocBase();
124 uint64_t getAArch64Page(uint64_t Expr);
125
126 extern TargetInfo *Target;
127 TargetInfo *getTarget();
128
129 template <unsigned N>
130 static void checkInt(uint8_t *Loc, int64_t V, uint32_t Type) {
131   if (!llvm::isInt<N>(V))
132     error(getErrorLocation(Loc) + "relocation " + lld::toString(Type) +
133           " out of range");
134 }
135
136 template <unsigned N>
137 static void checkUInt(uint8_t *Loc, uint64_t V, uint32_t Type) {
138   if (!llvm::isUInt<N>(V))
139     error(getErrorLocation(Loc) + "relocation " + lld::toString(Type) +
140           " out of range");
141 }
142
143 template <unsigned N>
144 static void checkIntUInt(uint8_t *Loc, uint64_t V, uint32_t Type) {
145   if (!llvm::isInt<N>(V) && !llvm::isUInt<N>(V))
146     error(getErrorLocation(Loc) + "relocation " + lld::toString(Type) +
147           " out of range");
148 }
149
150 template <unsigned N>
151 static void checkAlignment(uint8_t *Loc, uint64_t V, uint32_t Type) {
152   if ((V & (N - 1)) != 0)
153     error(getErrorLocation(Loc) + "improper alignment for relocation " +
154           lld::toString(Type));
155 }
156 } // namespace elf
157 }
158
159 #endif