blob: 11a62c0af232750f9e33e43a91ba15cdc8169e7a [file] [log] [blame]
Rafael Espindola01205f72015-09-22 18:19:46 +00001//===- Target.cpp ---------------------------------------------------------===//
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//===----------------------------------------------------------------------===//
Rui Ueyama34f29242015-10-13 19:51:57 +00009//
Rui Ueyama66072272015-10-15 19:52:27 +000010// Machine-specific things, such as applying relocations, creation of
11// GOT or PLT entries, etc., are handled in this file.
12//
13// Refer the ELF spec for the single letter varaibles, S, A or P, used
14// in this file. SA is S+A.
Rui Ueyama34f29242015-10-13 19:51:57 +000015//
16//===----------------------------------------------------------------------===//
Rafael Espindola01205f72015-09-22 18:19:46 +000017
18#include "Target.h"
Rafael Espindolac4010882015-09-22 20:54:08 +000019#include "Error.h"
Rui Ueyamaaf21d922015-10-08 20:06:07 +000020#include "OutputSections.h"
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +000021#include "Symbols.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000022
23#include "llvm/ADT/ArrayRef.h"
Rafael Espindolac4010882015-09-22 20:54:08 +000024#include "llvm/Object/ELF.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000025#include "llvm/Support/Endian.h"
26#include "llvm/Support/ELF.h"
27
28using namespace llvm;
Rafael Espindolac4010882015-09-22 20:54:08 +000029using namespace llvm::object;
Rafael Espindola0872ea32015-09-24 14:16:02 +000030using namespace llvm::support::endian;
Rafael Espindola01205f72015-09-22 18:19:46 +000031using namespace llvm::ELF;
32
33namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000034namespace elf {
Rafael Espindola01205f72015-09-22 18:19:46 +000035
Rui Ueyamac1c282a2016-02-11 21:18:01 +000036TargetInfo *Target;
Rafael Espindola01205f72015-09-22 18:19:46 +000037
Rafael Espindolae7e57b22015-11-09 21:43:00 +000038template <endianness E> static void add32(void *P, int32_t V) {
39 write32<E>(P, read32<E>(P) + V);
40}
Igor Kudrin15cd9ff2015-11-06 07:43:03 +000041
Rafael Espindolae7e57b22015-11-09 21:43:00 +000042static void or32le(uint8_t *P, int32_t V) { write32le(P, read32le(P) | V); }
Rui Ueyamaefc23de2015-10-14 21:30:32 +000043
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000044template <unsigned N> static void checkInt(int64_t V, uint32_t Type) {
45 if (isInt<N>(V))
46 return;
47 StringRef S = getELFRelocationTypeName(Config->EMachine, Type);
George Rimar777f9632016-03-12 08:31:34 +000048 error("relocation " + S + " out of range");
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000049}
50
51template <unsigned N> static void checkUInt(uint64_t V, uint32_t Type) {
52 if (isUInt<N>(V))
53 return;
54 StringRef S = getELFRelocationTypeName(Config->EMachine, Type);
George Rimar777f9632016-03-12 08:31:34 +000055 error("relocation " + S + " out of range");
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000056}
57
Igor Kudrinfea8ed52015-11-26 10:05:24 +000058template <unsigned N> static void checkIntUInt(uint64_t V, uint32_t Type) {
59 if (isInt<N>(V) || isUInt<N>(V))
60 return;
61 StringRef S = getELFRelocationTypeName(Config->EMachine, Type);
George Rimar777f9632016-03-12 08:31:34 +000062 error("relocation " + S + " out of range");
Igor Kudrinfea8ed52015-11-26 10:05:24 +000063}
64
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000065template <unsigned N> static void checkAlignment(uint64_t V, uint32_t Type) {
66 if ((V & (N - 1)) == 0)
67 return;
68 StringRef S = getELFRelocationTypeName(Config->EMachine, Type);
George Rimar777f9632016-03-12 08:31:34 +000069 error("improper alignment for relocation " + S);
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000070}
71
Rui Ueyamaefc23de2015-10-14 21:30:32 +000072namespace {
73class X86TargetInfo final : public TargetInfo {
74public:
75 X86TargetInfo();
Rafael Espindolada99df32016-03-30 12:40:38 +000076 uint64_t getImplicitAddend(uint8_t *Buf, uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +000077 void writeGotPltHeader(uint8_t *Buf) const override;
George Rimar98b060d2016-03-06 06:01:07 +000078 uint32_t getDynRel(uint32_t Type) const override;
79 uint32_t getTlsGotRel(uint32_t Type) const override;
80 bool pointsToLocalDynamicGotEntry(uint32_t Type) const override;
81 bool isTlsLocalDynamicRel(uint32_t Type) const override;
82 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
83 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +000084 void writeGotPlt(uint8_t *Buf, uint64_t Plt) const override;
Rui Ueyama900e2d22016-01-29 03:51:49 +000085 void writePltZero(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +000086 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
87 int32_t Index, unsigned RelOff) const override;
Rafael Espindolaffcad442016-03-23 14:58:25 +000088 bool isRelRelative(uint32_t Type) const override;
Rafael Espindolafb1533b2016-02-22 21:23:29 +000089 bool needsCopyRelImpl(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +000090 bool needsDynRelative(uint32_t Type) const override;
Rafael Espindolaa0a65f92016-02-09 15:11:01 +000091 bool needsGot(uint32_t Type, SymbolBody &S) const override;
Rafael Espindola993f0272016-02-26 14:27:47 +000092 bool needsPltImpl(uint32_t Type) const override;
Rui Ueyama96f0e0b2015-10-23 02:40:46 +000093 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +000094 uint64_t SA, uint64_t ZA = 0) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +000095
96 size_t relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
97 uint64_t P, uint64_t SA) const override;
98 size_t relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +000099 uint64_t P, uint64_t SA) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000100 size_t relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000101 uint64_t P, uint64_t SA) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000102 size_t relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
103 uint64_t P, uint64_t SA) const override;
104
George Rimarbfb7bf72015-12-21 10:00:12 +0000105 bool isGotRelative(uint32_t Type) const override;
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000106 bool refersToGotEntry(uint32_t Type) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000107};
108
109class X86_64TargetInfo final : public TargetInfo {
110public:
111 X86_64TargetInfo();
George Rimar86971052016-03-29 08:35:42 +0000112 uint32_t getDynRel(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000113 uint32_t getTlsGotRel(uint32_t Type) const override;
114 bool pointsToLocalDynamicGotEntry(uint32_t Type) const override;
115 bool isTlsLocalDynamicRel(uint32_t Type) const override;
116 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
117 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000118 void writeGotPltHeader(uint8_t *Buf) const override;
119 void writeGotPlt(uint8_t *Buf, uint64_t Plt) const override;
Rui Ueyama900e2d22016-01-29 03:51:49 +0000120 void writePltZero(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000121 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
122 int32_t Index, unsigned RelOff) const override;
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000123 bool needsCopyRelImpl(uint32_t Type) const override;
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000124 bool needsGot(uint32_t Type, SymbolBody &S) const override;
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000125 bool refersToGotEntry(uint32_t Type) const override;
Rafael Espindola993f0272016-02-26 14:27:47 +0000126 bool needsPltImpl(uint32_t Type) const override;
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000127 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000128 uint64_t SA, uint64_t ZA = 0) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000129 bool isRelRelative(uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000130 bool isSizeRel(uint32_t Type) const override;
George Rimar6713cf82015-11-25 21:46:05 +0000131
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000132 size_t relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
133 uint64_t P, uint64_t SA) const override;
134 size_t relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000135 uint64_t P, uint64_t SA) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000136 size_t relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000137 uint64_t P, uint64_t SA) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000138 size_t relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
139 uint64_t P, uint64_t SA) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000140};
141
Davide Italiano8c3444362016-01-11 19:45:33 +0000142class PPCTargetInfo final : public TargetInfo {
143public:
144 PPCTargetInfo();
Davide Italiano8c3444362016-01-11 19:45:33 +0000145 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000146 uint64_t SA, uint64_t ZA) const override;
Davide Italiano8c3444362016-01-11 19:45:33 +0000147 bool isRelRelative(uint32_t Type) const override;
148};
149
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000150class PPC64TargetInfo final : public TargetInfo {
151public:
152 PPC64TargetInfo();
Rui Ueyama9398f862016-01-29 04:15:02 +0000153 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
154 int32_t Index, unsigned RelOff) const override;
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000155 bool needsGot(uint32_t Type, SymbolBody &S) const override;
Rafael Espindola993f0272016-02-26 14:27:47 +0000156 bool needsPltImpl(uint32_t Type) const override;
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000157 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000158 uint64_t SA, uint64_t ZA) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000159 bool isRelRelative(uint32_t Type) const override;
160};
161
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000162class AArch64TargetInfo final : public TargetInfo {
163public:
164 AArch64TargetInfo();
George Rimar98b060d2016-03-06 06:01:07 +0000165 uint32_t getDynRel(uint32_t Type) const override;
166 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
167 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000168 void writeGotPlt(uint8_t *Buf, uint64_t Plt) const override;
Rui Ueyama900e2d22016-01-29 03:51:49 +0000169 void writePltZero(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000170 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
171 int32_t Index, unsigned RelOff) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000172 uint32_t getTlsGotRel(uint32_t Type) const override;
Rafael Espindola435c00f2016-02-23 20:19:44 +0000173 bool isRelRelative(uint32_t Type) const override;
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000174 bool needsCopyRelImpl(uint32_t Type) const override;
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000175 bool needsGot(uint32_t Type, SymbolBody &S) const override;
Rafael Espindola993f0272016-02-26 14:27:47 +0000176 bool needsPltImpl(uint32_t Type) const override;
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000177 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000178 uint64_t SA, uint64_t ZA = 0) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000179 size_t relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000180 uint64_t P, uint64_t SA) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000181 size_t relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000182 uint64_t P, uint64_t SA) const override;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000183
184private:
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000185 static const uint64_t TcbSize = 16;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000186};
187
Tom Stellard80efb162016-01-07 03:59:08 +0000188class AMDGPUTargetInfo final : public TargetInfo {
189public:
Rui Ueyama012eb782016-01-29 04:05:09 +0000190 AMDGPUTargetInfo() {}
Tom Stellard80efb162016-01-07 03:59:08 +0000191 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000192 uint64_t SA, uint64_t ZA) const override;
Tom Stellard80efb162016-01-07 03:59:08 +0000193};
194
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000195template <class ELFT> class MipsTargetInfo final : public TargetInfo {
196public:
197 MipsTargetInfo();
George Rimar98b060d2016-03-06 06:01:07 +0000198 uint32_t getDynRel(uint32_t Type) const override;
Simon Atanasyan2287dc32016-02-10 19:57:19 +0000199 void writeGotPlt(uint8_t *Buf, uint64_t Plt) const override;
200 void writePltZero(uint8_t *Buf) const override;
201 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
202 int32_t Index, unsigned RelOff) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000203 void writeGotHeader(uint8_t *Buf) const override;
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000204 bool needsCopyRelImpl(uint32_t Type) const override;
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000205 bool needsGot(uint32_t Type, SymbolBody &S) const override;
Rafael Espindola993f0272016-02-26 14:27:47 +0000206 bool needsPltImpl(uint32_t Type) const override;
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000207 void relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type, uint64_t P,
Rafael Espindola163974d2016-03-29 23:05:59 +0000208 uint64_t SA, uint64_t ZA) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000209 bool isHintRel(uint32_t Type) const override;
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +0000210 bool isRelRelative(uint32_t Type) const override;
Simon Atanasyand040a582016-02-25 16:19:15 +0000211 bool refersToGotEntry(uint32_t Type) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000212};
213} // anonymous namespace
214
Rui Ueyama91004392015-10-13 16:08:15 +0000215TargetInfo *createTarget() {
216 switch (Config->EMachine) {
217 case EM_386:
218 return new X86TargetInfo();
219 case EM_AARCH64:
220 return new AArch64TargetInfo();
Tom Stellard80efb162016-01-07 03:59:08 +0000221 case EM_AMDGPU:
222 return new AMDGPUTargetInfo();
Rui Ueyama91004392015-10-13 16:08:15 +0000223 case EM_MIPS:
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000224 switch (Config->EKind) {
225 case ELF32LEKind:
226 return new MipsTargetInfo<ELF32LE>();
227 case ELF32BEKind:
228 return new MipsTargetInfo<ELF32BE>();
229 default:
George Rimar777f9632016-03-12 08:31:34 +0000230 fatal("unsupported MIPS target");
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000231 }
Davide Italiano8c3444362016-01-11 19:45:33 +0000232 case EM_PPC:
233 return new PPCTargetInfo();
Rui Ueyama91004392015-10-13 16:08:15 +0000234 case EM_PPC64:
235 return new PPC64TargetInfo();
236 case EM_X86_64:
237 return new X86_64TargetInfo();
238 }
George Rimar777f9632016-03-12 08:31:34 +0000239 fatal("unknown target machine");
Rui Ueyama91004392015-10-13 16:08:15 +0000240}
241
Rafael Espindola01205f72015-09-22 18:19:46 +0000242TargetInfo::~TargetInfo() {}
243
Rafael Espindolada99df32016-03-30 12:40:38 +0000244uint64_t TargetInfo::getImplicitAddend(uint8_t *Buf, uint32_t Type) const {
245 return 0;
246}
247
George Rimar98b060d2016-03-06 06:01:07 +0000248bool TargetInfo::canRelaxTls(uint32_t Type, const SymbolBody *S) const {
George Rimar2f0fab52016-03-06 06:26:18 +0000249 if (Config->Shared || (S && !S->IsTls))
Rafael Espindola1ea51d22016-03-04 16:14:19 +0000250 return false;
Rafael Espindola1ea51d22016-03-04 16:14:19 +0000251
Rafael Espindolad405f472016-03-04 21:37:09 +0000252 // We know we are producing an executable.
253
254 // Global-Dynamic relocs can be relaxed to Initial-Exec or Local-Exec
255 // depending on the symbol being locally defined or not.
256 if (isTlsGlobalDynamicRel(Type))
257 return true;
258
259 // Local-Dynamic relocs can be relaxed to Local-Exec.
260 if (isTlsLocalDynamicRel(Type))
261 return true;
262
263 // Initial-Exec relocs can be relaxed to Local-Exec if the symbol is locally
264 // defined.
265 if (isTlsInitialExecRel(Type))
Rui Ueyamac4466602016-03-13 19:48:18 +0000266 return !S->isPreemptible();
Rafael Espindolad405f472016-03-04 21:37:09 +0000267
George Rimar77d1cb12015-11-24 09:00:06 +0000268 return false;
269}
270
George Rimar786e8662016-03-17 05:57:33 +0000271uint64_t TargetInfo::getVAStart() const { return Config->Pic ? 0 : VAStart; }
Igor Kudrinf6f45472015-11-10 08:39:27 +0000272
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000273bool TargetInfo::needsCopyRelImpl(uint32_t Type) const { return false; }
274
275template <typename ELFT> static bool mayNeedCopy(const SymbolBody &S) {
276 if (Config->Shared)
277 return false;
278 auto *SS = dyn_cast<SharedSymbol<ELFT>>(&S);
279 if (!SS)
280 return false;
281 return SS->Sym.getType() == STT_OBJECT;
282}
283
Rafael Espindolaf7ae3592016-02-23 18:53:29 +0000284template <class ELFT>
Rui Ueyama02dfd492015-12-17 01:18:40 +0000285bool TargetInfo::needsCopyRel(uint32_t Type, const SymbolBody &S) const {
Rafael Espindolaf7ae3592016-02-23 18:53:29 +0000286 return mayNeedCopy<ELFT>(S) && needsCopyRelImpl(Type);
George Rimarbc590fe2015-10-28 16:48:58 +0000287}
288
George Rimarbfb7bf72015-12-21 10:00:12 +0000289bool TargetInfo::isGotRelative(uint32_t Type) const { return false; }
Rui Ueyamac516ae12016-01-29 02:33:45 +0000290bool TargetInfo::isHintRel(uint32_t Type) const { return false; }
Rafael Espindolaae244002015-10-05 19:30:12 +0000291bool TargetInfo::isRelRelative(uint32_t Type) const { return true; }
Rui Ueyamac516ae12016-01-29 02:33:45 +0000292bool TargetInfo::isSizeRel(uint32_t Type) const { return false; }
George Rimar48651482015-12-11 08:59:37 +0000293
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000294bool TargetInfo::needsGot(uint32_t Type, SymbolBody &S) const { return false; }
Rui Ueyama012eb782016-01-29 04:05:09 +0000295
Rafael Espindola993f0272016-02-26 14:27:47 +0000296bool TargetInfo::needsPltImpl(uint32_t Type) const { return false; }
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000297
298bool TargetInfo::refersToGotEntry(uint32_t Type) const { return false; }
299
Rafael Espindola852860e2016-02-12 15:47:37 +0000300TargetInfo::PltNeed TargetInfo::needsPlt(uint32_t Type,
301 const SymbolBody &S) const {
Rafael Espindola54322872016-03-24 12:55:27 +0000302 if (S.IsGnuIFunc)
Rafael Espindoladd7f4e32016-02-25 23:03:55 +0000303 return Plt_Explicit;
Rui Ueyamac4466602016-03-13 19:48:18 +0000304 if (S.isPreemptible() && needsPltImpl(Type))
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000305 return Plt_Explicit;
306
307 // This handles a non PIC program call to function in a shared library.
308 // In an ideal world, we could just report an error saying the relocation
309 // can overflow at runtime.
310 // In the real world with glibc, crt1.o has a R_X86_64_PC32 pointing to
311 // libc.so.
312 //
313 // The general idea on how to handle such cases is to create a PLT entry
314 // and use that as the function value.
315 //
316 // For the static linking part, we just return true and everything else
317 // will use the the PLT entry as the address.
318 //
319 // The remaining problem is making sure pointer equality still works. We
320 // need the help of the dynamic linker for that. We let it know that we have
321 // a direct reference to a so symbol by creating an undefined symbol with a
322 // non zero st_value. Seeing that, the dynamic linker resolves the symbol to
323 // the value of the symbol we created. This is true even for got entries, so
324 // pointer equality is maintained. To avoid an infinite loop, the only entry
325 // that points to the real function is a dedicated got entry used by the
326 // plt. That is identified by special relocation types (R_X86_64_JUMP_SLOT,
327 // R_386_JMP_SLOT, etc).
Rafael Espindola54322872016-03-24 12:55:27 +0000328 if (S.isShared())
329 if (!Config->Pic && S.IsFunc && !refersToGotEntry(Type))
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000330 return Plt_Implicit;
331
Rafael Espindola852860e2016-02-12 15:47:37 +0000332 return Plt_No;
333}
Rui Ueyama012eb782016-01-29 04:05:09 +0000334
George Rimar98b060d2016-03-06 06:01:07 +0000335bool TargetInfo::isTlsInitialExecRel(uint32_t Type) const { return false; }
Rafael Espindolad405f472016-03-04 21:37:09 +0000336
George Rimar98b060d2016-03-06 06:01:07 +0000337bool TargetInfo::pointsToLocalDynamicGotEntry(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000338 return false;
339}
340
George Rimar98b060d2016-03-06 06:01:07 +0000341bool TargetInfo::isTlsLocalDynamicRel(uint32_t Type) const { return false; }
Rafael Espindolad405f472016-03-04 21:37:09 +0000342
George Rimar98b060d2016-03-06 06:01:07 +0000343bool TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000344 return false;
345}
346
George Rimar7b8850f2016-03-06 06:09:50 +0000347size_t TargetInfo::relaxTls(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
348 uint64_t P, uint64_t SA,
Rafael Espindola67d72c02016-03-11 12:06:30 +0000349 const SymbolBody &S) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000350 if (isTlsGlobalDynamicRel(Type)) {
351 if (S.isPreemptible())
352 return relaxTlsGdToIe(Loc, BufEnd, Type, P, SA);
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000353 return relaxTlsGdToLe(Loc, BufEnd, Type, P, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000354 }
355 if (isTlsLocalDynamicRel(Type))
356 return relaxTlsLdToLe(Loc, BufEnd, Type, P, SA);
357 assert(isTlsInitialExecRel(Type));
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000358 return relaxTlsIeToLe(Loc, BufEnd, Type, P, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000359}
360
361size_t TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000362 uint64_t P, uint64_t SA) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000363 llvm_unreachable("Should not have claimed to be relaxable");
364}
365
366size_t TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
367 uint64_t P, uint64_t SA) const {
368 llvm_unreachable("Should not have claimed to be relaxable");
369}
370
371size_t TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000372 uint64_t P, uint64_t SA) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000373 llvm_unreachable("Should not have claimed to be relaxable");
374}
375
376size_t TargetInfo::relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
377 uint64_t P, uint64_t SA) const {
378 llvm_unreachable("Should not have claimed to be relaxable");
George Rimar6713cf82015-11-25 21:46:05 +0000379}
George Rimar77d1cb12015-11-24 09:00:06 +0000380
Rafael Espindola7f074422015-09-22 21:35:51 +0000381X86TargetInfo::X86TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000382 CopyRel = R_386_COPY;
383 GotRel = R_386_GLOB_DAT;
384 PltRel = R_386_JUMP_SLOT;
385 IRelativeRel = R_386_IRELATIVE;
386 RelativeRel = R_386_RELATIVE;
387 TlsGotRel = R_386_TLS_TPOFF;
Rui Ueyama724d6252016-01-29 01:49:32 +0000388 TlsModuleIndexRel = R_386_TLS_DTPMOD32;
389 TlsOffsetRel = R_386_TLS_DTPOFF32;
390 UseLazyBinding = true;
George Rimar77b77792015-11-25 22:15:01 +0000391 PltEntrySize = 16;
Rui Ueyama62515452016-01-29 03:00:32 +0000392 PltZeroSize = 16;
George Rimar77b77792015-11-25 22:15:01 +0000393}
394
Rafael Espindolaffcad442016-03-23 14:58:25 +0000395bool X86TargetInfo::isRelRelative(uint32_t Type) const {
396 switch (Type) {
397 default:
398 return false;
399 case R_386_PC32:
400 case R_386_PLT32:
401 case R_386_TLS_LDO_32:
402 return true;
403 }
404}
405
Rui Ueyamac516ae12016-01-29 02:33:45 +0000406void X86TargetInfo::writeGotPltHeader(uint8_t *Buf) const {
George Rimar77b77792015-11-25 22:15:01 +0000407 write32le(Buf, Out<ELF32LE>::Dynamic->getVA());
408}
409
Rui Ueyamac516ae12016-01-29 02:33:45 +0000410void X86TargetInfo::writeGotPlt(uint8_t *Buf, uint64_t Plt) const {
Rui Ueyamacf375932016-01-29 23:58:03 +0000411 // Entries in .got.plt initially points back to the corresponding
412 // PLT entries with a fixed offset to skip the first instruction.
George Rimar77b77792015-11-25 22:15:01 +0000413 write32le(Buf, Plt + 6);
Rafael Espindola7f074422015-09-22 21:35:51 +0000414}
Rafael Espindola01205f72015-09-22 18:19:46 +0000415
George Rimar98b060d2016-03-06 06:01:07 +0000416uint32_t X86TargetInfo::getDynRel(uint32_t Type) const {
George Rimard23970f2015-11-25 20:41:53 +0000417 if (Type == R_386_TLS_LE)
418 return R_386_TLS_TPOFF;
419 if (Type == R_386_TLS_LE_32)
420 return R_386_TLS_TPOFF32;
421 return Type;
422}
423
George Rimar98b060d2016-03-06 06:01:07 +0000424uint32_t X86TargetInfo::getTlsGotRel(uint32_t Type) const {
George Rimar6f17e092015-12-17 09:32:21 +0000425 if (Type == R_386_TLS_IE)
426 return Type;
Rui Ueyama724d6252016-01-29 01:49:32 +0000427 return TlsGotRel;
George Rimar6f17e092015-12-17 09:32:21 +0000428}
429
George Rimar98b060d2016-03-06 06:01:07 +0000430bool X86TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000431 return Type == R_386_TLS_GD;
432}
433
George Rimar98b060d2016-03-06 06:01:07 +0000434bool X86TargetInfo::isTlsLocalDynamicRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +0000435 return Type == R_386_TLS_LDO_32 || Type == R_386_TLS_LDM;
436}
437
George Rimar98b060d2016-03-06 06:01:07 +0000438bool X86TargetInfo::pointsToLocalDynamicGotEntry(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000439 return Type == R_386_TLS_LDM;
440}
441
George Rimar98b060d2016-03-06 06:01:07 +0000442bool X86TargetInfo::isTlsInitialExecRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +0000443 return Type == R_386_TLS_IE || Type == R_386_TLS_GOTIE;
444}
445
Rui Ueyama900e2d22016-01-29 03:51:49 +0000446void X86TargetInfo::writePltZero(uint8_t *Buf) const {
George Rimar77b77792015-11-25 22:15:01 +0000447 // Executable files and shared object files have
448 // separate procedure linkage tables.
George Rimar786e8662016-03-17 05:57:33 +0000449 if (Config->Pic) {
George Rimar77b77792015-11-25 22:15:01 +0000450 const uint8_t V[] = {
Rui Ueyamaf53b1b72016-01-05 16:35:46 +0000451 0xff, 0xb3, 0x04, 0x00, 0x00, 0x00, // pushl 4(%ebx)
Rui Ueyamacf375932016-01-29 23:58:03 +0000452 0xff, 0xa3, 0x08, 0x00, 0x00, 0x00, // jmp *8(%ebx)
453 0x90, 0x90, 0x90, 0x90 // nop; nop; nop; nop
George Rimar77b77792015-11-25 22:15:01 +0000454 };
455 memcpy(Buf, V, sizeof(V));
456 return;
457 }
George Rimar648a2c32015-10-20 08:54:27 +0000458
George Rimar77b77792015-11-25 22:15:01 +0000459 const uint8_t PltData[] = {
460 0xff, 0x35, 0x00, 0x00, 0x00, 0x00, // pushl (GOT+4)
Rui Ueyamacf375932016-01-29 23:58:03 +0000461 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // jmp *(GOT+8)
462 0x90, 0x90, 0x90, 0x90 // nop; nop; nop; nop
George Rimar77b77792015-11-25 22:15:01 +0000463 };
464 memcpy(Buf, PltData, sizeof(PltData));
Rui Ueyama900e2d22016-01-29 03:51:49 +0000465 uint32_t Got = Out<ELF32LE>::GotPlt->getVA();
Rui Ueyamacf375932016-01-29 23:58:03 +0000466 write32le(Buf + 2, Got + 4);
467 write32le(Buf + 8, Got + 8);
George Rimar77b77792015-11-25 22:15:01 +0000468}
469
Rui Ueyama9398f862016-01-29 04:15:02 +0000470void X86TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
471 uint64_t PltEntryAddr, int32_t Index,
472 unsigned RelOff) const {
George Rimar77b77792015-11-25 22:15:01 +0000473 const uint8_t Inst[] = {
474 0xff, 0x00, 0x00, 0x00, 0x00, 0x00, // jmp *foo_in_GOT|*foo@GOT(%ebx)
475 0x68, 0x00, 0x00, 0x00, 0x00, // pushl $reloc_offset
476 0xe9, 0x00, 0x00, 0x00, 0x00 // jmp .PLT0@PC
477 };
Rui Ueyama1500a902015-09-29 23:00:47 +0000478 memcpy(Buf, Inst, sizeof(Inst));
Rui Ueyama9398f862016-01-29 04:15:02 +0000479
George Rimar77b77792015-11-25 22:15:01 +0000480 // jmp *foo@GOT(%ebx) or jmp *foo_in_GOT
George Rimar786e8662016-03-17 05:57:33 +0000481 Buf[1] = Config->Pic ? 0xa3 : 0x25;
Rui Ueyama9398f862016-01-29 04:15:02 +0000482 uint32_t Got = UseLazyBinding ? Out<ELF32LE>::GotPlt->getVA()
483 : Out<ELF32LE>::Got->getVA();
484 write32le(Buf + 2, Config->Shared ? GotEntryAddr - Got : GotEntryAddr);
George Rimar77b77792015-11-25 22:15:01 +0000485 write32le(Buf + 7, RelOff);
Rui Ueyama62515452016-01-29 03:00:32 +0000486 write32le(Buf + 12, -Index * PltEntrySize - PltZeroSize - 16);
Rafael Espindola01205f72015-09-22 18:19:46 +0000487}
488
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000489bool X86TargetInfo::needsCopyRelImpl(uint32_t Type) const {
490 return Type == R_386_32 || Type == R_386_16 || Type == R_386_8;
George Rimar70e25082015-11-25 11:27:40 +0000491}
492
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000493bool X86TargetInfo::needsGot(uint32_t Type, SymbolBody &S) const {
George Rimar2f0fab52016-03-06 06:26:18 +0000494 if (S.IsTls && Type == R_386_TLS_GD)
Rui Ueyamac4466602016-03-13 19:48:18 +0000495 return Target->canRelaxTls(Type, &S) && S.isPreemptible();
George Rimar6f17e092015-12-17 09:32:21 +0000496 if (Type == R_386_TLS_GOTIE || Type == R_386_TLS_IE)
Rui Ueyamabaf16512016-01-29 00:20:12 +0000497 return !canRelaxTls(Type, &S);
Rafael Espindola54322872016-03-24 12:55:27 +0000498 return Type == R_386_GOT32 || needsPlt(Type, S);
Rafael Espindola01205f72015-09-22 18:19:46 +0000499}
500
Rafael Espindola993f0272016-02-26 14:27:47 +0000501bool X86TargetInfo::needsPltImpl(uint32_t Type) const {
502 return Type == R_386_PLT32;
Rafael Espindola01205f72015-09-22 18:19:46 +0000503}
504
George Rimarbfb7bf72015-12-21 10:00:12 +0000505bool X86TargetInfo::isGotRelative(uint32_t Type) const {
506 // This relocation does not require got entry,
507 // but it is relative to got and needs it to be created.
508 // Here we request for that.
509 return Type == R_386_GOTOFF;
510}
511
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000512bool X86TargetInfo::refersToGotEntry(uint32_t Type) const {
513 return Type == R_386_GOT32;
514}
515
Rafael Espindolada99df32016-03-30 12:40:38 +0000516uint64_t X86TargetInfo::getImplicitAddend(uint8_t *Buf, uint32_t Type) const {
517 switch (Type) {
518 default:
519 return 0;
520 case R_386_32:
521 case R_386_GOT32:
522 case R_386_GOTOFF:
523 case R_386_GOTPC:
524 case R_386_PC32:
525 case R_386_PLT32:
526 return read32le(Buf);
527 }
528}
529
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000530void X86TargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola163974d2016-03-29 23:05:59 +0000531 uint64_t P, uint64_t SA, uint64_t ZA) const {
Rafael Espindolac4010882015-09-22 20:54:08 +0000532 switch (Type) {
Igor Kudrinb4a09272015-12-01 08:41:20 +0000533 case R_386_32:
Rafael Espindolada99df32016-03-30 12:40:38 +0000534 write32le(Loc, SA);
Igor Kudrinb4a09272015-12-01 08:41:20 +0000535 break;
George Rimarffb67352016-01-19 11:00:48 +0000536 case R_386_GOT32: {
537 uint64_t V = SA - Out<ELF32LE>::Got->getVA() -
538 Out<ELF32LE>::Got->getNumEntries() * 4;
539 checkInt<32>(V, Type);
Rafael Espindolada99df32016-03-30 12:40:38 +0000540 write32le(Loc, V);
George Rimarffb67352016-01-19 11:00:48 +0000541 break;
542 }
George Rimarbfb7bf72015-12-21 10:00:12 +0000543 case R_386_GOTOFF:
Rafael Espindolada99df32016-03-30 12:40:38 +0000544 write32le(Loc, SA - Out<ELF32LE>::Got->getVA());
Rafael Espindola8acb95c2015-09-29 14:42:37 +0000545 break;
George Rimar13934772015-11-25 20:20:31 +0000546 case R_386_GOTPC:
Rafael Espindolada99df32016-03-30 12:40:38 +0000547 write32le(Loc, SA + Out<ELF32LE>::Got->getVA() - P);
George Rimar13934772015-11-25 20:20:31 +0000548 break;
Rafael Espindolac4010882015-09-22 20:54:08 +0000549 case R_386_PC32:
George Rimarb72a9c62015-12-10 09:03:39 +0000550 case R_386_PLT32:
Rafael Espindolada99df32016-03-30 12:40:38 +0000551 write32le(Loc, SA - P);
Rafael Espindolac4010882015-09-22 20:54:08 +0000552 break;
George Rimar9db204a2015-12-02 09:58:20 +0000553 case R_386_TLS_GD:
554 case R_386_TLS_LDM:
555 case R_386_TLS_TPOFF: {
556 uint64_t V = SA - Out<ELF32LE>::Got->getVA() -
557 Out<ELF32LE>::Got->getNumEntries() * 4;
558 checkInt<32>(V, Type);
559 write32le(Loc, V);
560 break;
561 }
George Rimar6f17e092015-12-17 09:32:21 +0000562 case R_386_TLS_IE:
George Rimar9db204a2015-12-02 09:58:20 +0000563 case R_386_TLS_LDO_32:
564 write32le(Loc, SA);
565 break;
George Rimard23970f2015-11-25 20:41:53 +0000566 case R_386_TLS_LE:
567 write32le(Loc, SA - Out<ELF32LE>::TlsPhdr->p_memsz);
568 break;
569 case R_386_TLS_LE_32:
570 write32le(Loc, Out<ELF32LE>::TlsPhdr->p_memsz - SA);
571 break;
Rafael Espindolac4010882015-09-22 20:54:08 +0000572 default:
George Rimar57610422016-03-11 14:43:02 +0000573 fatal("unrecognized reloc " + Twine(Type));
Rafael Espindolac4010882015-09-22 20:54:08 +0000574 }
575}
576
George Rimar98b060d2016-03-06 06:01:07 +0000577bool X86TargetInfo::needsDynRelative(uint32_t Type) const {
George Rimar6f17e092015-12-17 09:32:21 +0000578 return Config->Shared && Type == R_386_TLS_IE;
579}
580
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000581size_t X86TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000582 uint32_t Type, uint64_t P,
583 uint64_t SA) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000584 // GD can be optimized to LE:
585 // leal x@tlsgd(, %ebx, 1),
586 // call __tls_get_addr@plt
587 // Can be converted to:
588 // movl %gs:0,%eax
589 // addl $x@ntpoff,%eax
590 // But gold emits subl $foo@tpoff,%eax instead of addl.
591 // These instructions are completely equal in behavior.
592 // This method generates subl to be consistent with gold.
593 const uint8_t Inst[] = {
594 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0, %eax
595 0x81, 0xe8, 0x00, 0x00, 0x00, 0x00 // subl 0(%ebx), %eax
596 };
597 memcpy(Loc - 3, Inst, sizeof(Inst));
598 relocateOne(Loc + 5, BufEnd, R_386_32, P,
599 Out<ELF32LE>::TlsPhdr->p_memsz - SA);
600
601 // The next relocation should be against __tls_get_addr, so skip it
602 return 1;
George Rimar2558e122015-12-09 09:55:54 +0000603}
604
605// "Ulrich Drepper, ELF Handling For Thread-Local Storage" (5.1
606// IA-32 Linker Optimizations, http://www.akkadia.org/drepper/tls.pdf) shows
607// how GD can be optimized to IE:
608// leal x@tlsgd(, %ebx, 1),
609// call __tls_get_addr@plt
610// Is converted to:
611// movl %gs:0, %eax
612// addl x@gotntpoff(%ebx), %eax
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000613size_t X86TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd,
614 uint32_t Type, uint64_t P,
615 uint64_t SA) const {
George Rimar2558e122015-12-09 09:55:54 +0000616 const uint8_t Inst[] = {
617 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0, %eax
618 0x03, 0x83, 0x00, 0x00, 0x00, 0x00 // addl 0(%ebx), %eax
619 };
620 memcpy(Loc - 3, Inst, sizeof(Inst));
621 relocateOne(Loc + 5, BufEnd, R_386_32, P,
622 SA - Out<ELF32LE>::Got->getVA() -
623 Out<ELF32LE>::Got->getNumEntries() * 4);
George Rimar2558e122015-12-09 09:55:54 +0000624
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000625 // The next relocation should be against __tls_get_addr, so skip it
626 return 1;
George Rimar2558e122015-12-09 09:55:54 +0000627}
628
George Rimar6f17e092015-12-17 09:32:21 +0000629// In some conditions, relocations can be optimized to avoid using GOT.
630// This function does that for Initial Exec to Local Exec case.
631// Read "ELF Handling For Thread-Local Storage, 5.1
632// IA-32 Linker Optimizations" (http://www.akkadia.org/drepper/tls.pdf)
George Rimar2558e122015-12-09 09:55:54 +0000633// by Ulrich Drepper for details.
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000634
635size_t X86TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000636 uint32_t Type, uint64_t P,
637 uint64_t SA) const {
George Rimar6f17e092015-12-17 09:32:21 +0000638 // Ulrich's document section 6.2 says that @gotntpoff can
639 // be used with MOVL or ADDL instructions.
640 // @indntpoff is similar to @gotntpoff, but for use in
641 // position dependent code.
George Rimar2558e122015-12-09 09:55:54 +0000642 uint8_t *Inst = Loc - 2;
George Rimar6f17e092015-12-17 09:32:21 +0000643 uint8_t *Op = Loc - 1;
George Rimar2558e122015-12-09 09:55:54 +0000644 uint8_t Reg = (Loc[-1] >> 3) & 7;
645 bool IsMov = *Inst == 0x8b;
George Rimar6f17e092015-12-17 09:32:21 +0000646 if (Type == R_386_TLS_IE) {
647 // For R_386_TLS_IE relocation we perform the next transformations:
648 // MOVL foo@INDNTPOFF,%EAX is transformed to MOVL $foo,%EAX
649 // MOVL foo@INDNTPOFF,%REG is transformed to MOVL $foo,%REG
650 // ADDL foo@INDNTPOFF,%REG is transformed to ADDL $foo,%REG
651 // First one is special because when EAX is used the sequence is 5 bytes
652 // long, otherwise it is 6 bytes.
653 if (*Op == 0xa1) {
654 *Op = 0xb8;
655 } else {
656 *Inst = IsMov ? 0xc7 : 0x81;
657 *Op = 0xc0 | ((*Op >> 3) & 7);
658 }
659 } else {
660 // R_386_TLS_GOTIE relocation can be optimized to
661 // R_386_TLS_LE so that it does not use GOT.
662 // "MOVL foo@GOTTPOFF(%RIP), %REG" is transformed to "MOVL $foo, %REG".
663 // "ADDL foo@GOTNTPOFF(%RIP), %REG" is transformed to "LEAL foo(%REG), %REG"
664 // Note: gold converts to ADDL instead of LEAL.
665 *Inst = IsMov ? 0xc7 : 0x8d;
666 if (IsMov)
667 *Op = 0xc0 | ((*Op >> 3) & 7);
668 else
669 *Op = 0x80 | Reg | (Reg << 3);
670 }
George Rimar2558e122015-12-09 09:55:54 +0000671 relocateOne(Loc, BufEnd, R_386_TLS_LE, P, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000672
673 return 0;
674}
675
676size_t X86TargetInfo::relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd,
677 uint32_t Type, uint64_t P,
678 uint64_t SA) const {
679 if (Type == R_386_TLS_LDO_32) {
680 relocateOne(Loc, BufEnd, R_386_TLS_LE, P, SA);
681 return 0;
682 }
683
684 // LD can be optimized to LE:
685 // leal foo(%reg),%eax
686 // call ___tls_get_addr
687 // Is converted to:
688 // movl %gs:0,%eax
689 // nop
690 // leal 0(%esi,1),%esi
691 const uint8_t Inst[] = {
692 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0,%eax
693 0x90, // nop
694 0x8d, 0x74, 0x26, 0x00 // leal 0(%esi,1),%esi
695 };
696 memcpy(Loc - 2, Inst, sizeof(Inst));
697
698 // The next relocation should be against __tls_get_addr, so skip it
699 return 1;
George Rimar2558e122015-12-09 09:55:54 +0000700}
701
Rafael Espindola7f074422015-09-22 21:35:51 +0000702X86_64TargetInfo::X86_64TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000703 CopyRel = R_X86_64_COPY;
704 GotRel = R_X86_64_GLOB_DAT;
705 PltRel = R_X86_64_JUMP_SLOT;
706 RelativeRel = R_X86_64_RELATIVE;
707 IRelativeRel = R_X86_64_IRELATIVE;
708 TlsGotRel = R_X86_64_TPOFF64;
Rui Ueyama724d6252016-01-29 01:49:32 +0000709 TlsModuleIndexRel = R_X86_64_DTPMOD64;
710 TlsOffsetRel = R_X86_64_DTPOFF64;
711 UseLazyBinding = true;
George Rimar648a2c32015-10-20 08:54:27 +0000712 PltEntrySize = 16;
Rui Ueyama62515452016-01-29 03:00:32 +0000713 PltZeroSize = 16;
George Rimar648a2c32015-10-20 08:54:27 +0000714}
715
Rui Ueyamac516ae12016-01-29 02:33:45 +0000716void X86_64TargetInfo::writeGotPltHeader(uint8_t *Buf) const {
Igor Kudrin351b41d2015-11-16 17:44:08 +0000717 write64le(Buf, Out<ELF64LE>::Dynamic->getVA());
718}
719
Rui Ueyamac516ae12016-01-29 02:33:45 +0000720void X86_64TargetInfo::writeGotPlt(uint8_t *Buf, uint64_t Plt) const {
Rui Ueyamacf375932016-01-29 23:58:03 +0000721 // See comments in X86TargetInfo::writeGotPlt.
George Rimar648a2c32015-10-20 08:54:27 +0000722 write32le(Buf, Plt + 6);
723}
724
Rui Ueyama900e2d22016-01-29 03:51:49 +0000725void X86_64TargetInfo::writePltZero(uint8_t *Buf) const {
George Rimar648a2c32015-10-20 08:54:27 +0000726 const uint8_t PltData[] = {
727 0xff, 0x35, 0x00, 0x00, 0x00, 0x00, // pushq GOT+8(%rip)
728 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // jmp *GOT+16(%rip)
729 0x0f, 0x1f, 0x40, 0x00 // nopl 0x0(rax)
730 };
731 memcpy(Buf, PltData, sizeof(PltData));
Rui Ueyama900e2d22016-01-29 03:51:49 +0000732 uint64_t Got = Out<ELF64LE>::GotPlt->getVA();
733 uint64_t Plt = Out<ELF64LE>::Plt->getVA();
734 write32le(Buf + 2, Got - Plt + 2); // GOT+8
735 write32le(Buf + 8, Got - Plt + 4); // GOT+16
Rafael Espindola7f074422015-09-22 21:35:51 +0000736}
Rafael Espindola01205f72015-09-22 18:19:46 +0000737
Rui Ueyama9398f862016-01-29 04:15:02 +0000738void X86_64TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
739 uint64_t PltEntryAddr, int32_t Index,
740 unsigned RelOff) const {
George Rimar648a2c32015-10-20 08:54:27 +0000741 const uint8_t Inst[] = {
742 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // jmpq *got(%rip)
743 0x68, 0x00, 0x00, 0x00, 0x00, // pushq <relocation index>
744 0xe9, 0x00, 0x00, 0x00, 0x00 // jmpq plt[0]
745 };
Rui Ueyama1500a902015-09-29 23:00:47 +0000746 memcpy(Buf, Inst, sizeof(Inst));
Rafael Espindola01205f72015-09-22 18:19:46 +0000747
George Rimar648a2c32015-10-20 08:54:27 +0000748 write32le(Buf + 2, GotEntryAddr - PltEntryAddr - 6);
749 write32le(Buf + 7, Index);
Rui Ueyama62515452016-01-29 03:00:32 +0000750 write32le(Buf + 12, -Index * PltEntrySize - PltZeroSize - 16);
Rafael Espindola01205f72015-09-22 18:19:46 +0000751}
752
Rafael Espindolafb1533b2016-02-22 21:23:29 +0000753bool X86_64TargetInfo::needsCopyRelImpl(uint32_t Type) const {
754 return Type == R_X86_64_32S || Type == R_X86_64_32 || Type == R_X86_64_PC32 ||
755 Type == R_X86_64_64;
George Rimarbc590fe2015-10-28 16:48:58 +0000756}
757
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000758bool X86_64TargetInfo::refersToGotEntry(uint32_t Type) const {
George Rimar9f8f4e32016-03-22 12:15:26 +0000759 return Type == R_X86_64_GOTPCREL || Type == R_X86_64_GOTPCRELX ||
760 Type == R_X86_64_REX_GOTPCRELX;
Rafael Espindola795dc5a2016-02-24 18:24:23 +0000761}
762
Rafael Espindolaa0a65f92016-02-09 15:11:01 +0000763bool X86_64TargetInfo::needsGot(uint32_t Type, SymbolBody &S) const {
George Rimar25411f252015-12-04 11:20:13 +0000764 if (Type == R_X86_64_TLSGD)
Rui Ueyamac4466602016-03-13 19:48:18 +0000765 return Target->canRelaxTls(Type, &S) && S.isPreemptible();
George Rimar77d1cb12015-11-24 09:00:06 +0000766 if (Type == R_X86_64_GOTTPOFF)
Rui Ueyamabaf16512016-01-29 00:20:12 +0000767 return !canRelaxTls(Type, &S);
Rafael Espindola54322872016-03-24 12:55:27 +0000768 return refersToGotEntry(Type) || needsPlt(Type, S);
Rafael Espindola01205f72015-09-22 18:19:46 +0000769}
770
George Rimar86971052016-03-29 08:35:42 +0000771uint32_t X86_64TargetInfo::getDynRel(uint32_t Type) const {
772 if (Type == R_X86_64_PC32 || Type == R_X86_64_32)
773 if (Config->Shared)
774 error(getELFRelocationTypeName(EM_X86_64, Type) +
775 " cannot be a dynamic relocation");
776 return Type;
777}
778
George Rimar98b060d2016-03-06 06:01:07 +0000779uint32_t X86_64TargetInfo::getTlsGotRel(uint32_t Type) const {
George Rimar2960c982016-02-11 11:14:46 +0000780 // No other types of TLS relocations requiring GOT should
781 // reach here.
782 assert(Type == R_X86_64_GOTTPOFF);
783 return R_X86_64_PC32;
784}
785
George Rimar98b060d2016-03-06 06:01:07 +0000786bool X86_64TargetInfo::isTlsInitialExecRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +0000787 return Type == R_X86_64_GOTTPOFF;
788}
789
George Rimar98b060d2016-03-06 06:01:07 +0000790bool X86_64TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000791 return Type == R_X86_64_TLSGD;
792}
793
George Rimar98b060d2016-03-06 06:01:07 +0000794bool X86_64TargetInfo::pointsToLocalDynamicGotEntry(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000795 return Type == R_X86_64_TLSLD;
796}
797
George Rimar98b060d2016-03-06 06:01:07 +0000798bool X86_64TargetInfo::isTlsLocalDynamicRel(uint32_t Type) const {
Rafael Espindola1f04c442016-03-08 20:24:36 +0000799 return Type == R_X86_64_DTPOFF32 || Type == R_X86_64_DTPOFF64 ||
800 Type == R_X86_64_TLSLD;
George Rimard23970f2015-11-25 20:41:53 +0000801}
802
Rafael Espindola993f0272016-02-26 14:27:47 +0000803bool X86_64TargetInfo::needsPltImpl(uint32_t Type) const {
804 return Type == R_X86_64_PLT32;
Rafael Espindola01205f72015-09-22 18:19:46 +0000805}
Rafael Espindolac4010882015-09-22 20:54:08 +0000806
Rafael Espindolaae244002015-10-05 19:30:12 +0000807bool X86_64TargetInfo::isRelRelative(uint32_t Type) const {
808 switch (Type) {
809 default:
810 return false;
Michael J. Spencera5d9d1f2015-11-11 01:27:58 +0000811 case R_X86_64_DTPOFF32:
Michael J. Spencerac2307b2015-11-11 01:28:11 +0000812 case R_X86_64_DTPOFF64:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000813 case R_X86_64_PC8:
814 case R_X86_64_PC16:
815 case R_X86_64_PC32:
816 case R_X86_64_PC64:
817 case R_X86_64_PLT32:
Rafael Espindolaae244002015-10-05 19:30:12 +0000818 return true;
819 }
820}
821
Rui Ueyamac516ae12016-01-29 02:33:45 +0000822bool X86_64TargetInfo::isSizeRel(uint32_t Type) const {
Rui Ueyama3a7c2f62016-01-08 00:13:23 +0000823 return Type == R_X86_64_SIZE32 || Type == R_X86_64_SIZE64;
George Rimar48651482015-12-11 08:59:37 +0000824}
825
George Rimar6713cf82015-11-25 21:46:05 +0000826// "Ulrich Drepper, ELF Handling For Thread-Local Storage" (5.5
827// x86-x64 linker optimizations, http://www.akkadia.org/drepper/tls.pdf) shows
George Rimar6713cf82015-11-25 21:46:05 +0000828// how GD can be optimized to LE:
829// .byte 0x66
830// leaq x@tlsgd(%rip), %rdi
831// .word 0x6666
832// rex64
833// call __tls_get_addr@plt
834// Is converted to:
835// mov %fs:0x0,%rax
836// lea x@tpoff,%rax
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000837size_t X86_64TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000838 uint32_t Type, uint64_t P,
839 uint64_t SA) const {
George Rimar6713cf82015-11-25 21:46:05 +0000840 const uint8_t Inst[] = {
841 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:0x0,%rax
842 0x48, 0x8d, 0x80, 0x00, 0x00, 0x00, 0x00 // lea x@tpoff,%rax
843 };
844 memcpy(Loc - 4, Inst, sizeof(Inst));
845 relocateOne(Loc + 8, BufEnd, R_X86_64_TPOFF32, P, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000846
847 // The next relocation should be against __tls_get_addr, so skip it
848 return 1;
George Rimar77d1cb12015-11-24 09:00:06 +0000849}
850
George Rimar25411f252015-12-04 11:20:13 +0000851// "Ulrich Drepper, ELF Handling For Thread-Local Storage" (5.5
852// x86-x64 linker optimizations, http://www.akkadia.org/drepper/tls.pdf) shows
853// how GD can be optimized to IE:
854// .byte 0x66
855// leaq x@tlsgd(%rip), %rdi
856// .word 0x6666
857// rex64
858// call __tls_get_addr@plt
859// Is converted to:
860// mov %fs:0x0,%rax
861// addq x@tpoff,%rax
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000862size_t X86_64TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint8_t *BufEnd,
863 uint32_t Type, uint64_t P,
864 uint64_t SA) const {
George Rimar25411f252015-12-04 11:20:13 +0000865 const uint8_t Inst[] = {
866 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:0x0,%rax
867 0x48, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00 // addq x@tpoff,%rax
868 };
869 memcpy(Loc - 4, Inst, sizeof(Inst));
George Rimar2960c982016-02-11 11:14:46 +0000870 relocateOne(Loc + 8, BufEnd, R_X86_64_PC32, P + 12, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000871
872 // The next relocation should be against __tls_get_addr, so skip it
873 return 1;
George Rimar25411f252015-12-04 11:20:13 +0000874}
875
George Rimar77d1cb12015-11-24 09:00:06 +0000876// In some conditions, R_X86_64_GOTTPOFF relocation can be optimized to
George Rimarc55b4e22015-12-07 16:54:56 +0000877// R_X86_64_TPOFF32 so that it does not use GOT.
George Rimar77d1cb12015-11-24 09:00:06 +0000878// This function does that. Read "ELF Handling For Thread-Local Storage,
879// 5.5 x86-x64 linker optimizations" (http://www.akkadia.org/drepper/tls.pdf)
880// by Ulrich Drepper for details.
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000881size_t X86_64TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +0000882 uint32_t Type, uint64_t P,
883 uint64_t SA) const {
George Rimar77d1cb12015-11-24 09:00:06 +0000884 // Ulrich's document section 6.5 says that @gottpoff(%rip) must be
885 // used in MOVQ or ADDQ instructions only.
886 // "MOVQ foo@GOTTPOFF(%RIP), %REG" is transformed to "MOVQ $foo, %REG".
887 // "ADDQ foo@GOTTPOFF(%RIP), %REG" is transformed to "LEAQ foo(%REG), %REG"
888 // (if the register is not RSP/R12) or "ADDQ $foo, %RSP".
889 // Opcodes info can be found at http://ref.x86asm.net/coder64.html#x48.
890 uint8_t *Prefix = Loc - 3;
891 uint8_t *Inst = Loc - 2;
892 uint8_t *RegSlot = Loc - 1;
893 uint8_t Reg = Loc[-1] >> 3;
894 bool IsMov = *Inst == 0x8b;
895 bool RspAdd = !IsMov && Reg == 4;
896 // r12 and rsp registers requires special handling.
897 // Problem is that for other registers, for example leaq 0xXXXXXXXX(%r11),%r11
898 // result out is 7 bytes: 4d 8d 9b XX XX XX XX,
899 // but leaq 0xXXXXXXXX(%r12),%r12 is 8 bytes: 4d 8d a4 24 XX XX XX XX.
900 // The same true for rsp. So we convert to addq for them, saving 1 byte that
901 // we dont have.
902 if (RspAdd)
903 *Inst = 0x81;
904 else
905 *Inst = IsMov ? 0xc7 : 0x8d;
906 if (*Prefix == 0x4c)
907 *Prefix = (IsMov || RspAdd) ? 0x49 : 0x4d;
908 *RegSlot = (IsMov || RspAdd) ? (0xc0 | Reg) : (0x80 | Reg | (Reg << 3));
909 relocateOne(Loc, BufEnd, R_X86_64_TPOFF32, P, SA);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000910 return 0;
George Rimar77d1cb12015-11-24 09:00:06 +0000911}
912
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000913// "Ulrich Drepper, ELF Handling For Thread-Local Storage" (5.5
914// x86-x64 linker optimizations, http://www.akkadia.org/drepper/tls.pdf) shows
915// how LD can be optimized to LE:
916// leaq bar@tlsld(%rip), %rdi
917// callq __tls_get_addr@PLT
918// leaq bar@dtpoff(%rax), %rcx
919// Is converted to:
920// .word 0x6666
921// .byte 0x66
922// mov %fs:0,%rax
923// leaq bar@tpoff(%rax), %rcx
924size_t X86_64TargetInfo::relaxTlsLdToLe(uint8_t *Loc, uint8_t *BufEnd,
925 uint32_t Type, uint64_t P,
926 uint64_t SA) const {
927 if (Type == R_X86_64_DTPOFF64) {
George Rimar1452f482016-03-10 18:57:17 +0000928 write64le(Loc, SA - Out<ELF64LE>::TlsPhdr->p_memsz);
929 return 0;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000930 }
931 if (Type == R_X86_64_DTPOFF32) {
932 relocateOne(Loc, BufEnd, R_X86_64_TPOFF32, P, SA);
George Rimar6713cf82015-11-25 21:46:05 +0000933 return 0;
George Rimar25411f252015-12-04 11:20:13 +0000934 }
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000935
936 const uint8_t Inst[] = {
937 0x66, 0x66, //.word 0x6666
938 0x66, //.byte 0x66
939 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00 // mov %fs:0,%rax
940 };
941 memcpy(Loc - 3, Inst, sizeof(Inst));
942 // The next relocation should be against __tls_get_addr, so skip it
943 return 1;
George Rimar6713cf82015-11-25 21:46:05 +0000944}
945
Rui Ueyama96f0e0b2015-10-23 02:40:46 +0000946void X86_64TargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola163974d2016-03-29 23:05:59 +0000947 uint64_t P, uint64_t SA, uint64_t ZA) const {
Rafael Espindolac4010882015-09-22 20:54:08 +0000948 switch (Type) {
Rui Ueyama3835b492015-10-23 16:13:27 +0000949 case R_X86_64_32:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000950 checkUInt<32>(SA, Type);
951 write32le(Loc, SA);
952 break;
Rafael Espindolac4010882015-09-22 20:54:08 +0000953 case R_X86_64_32S:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000954 checkInt<32>(SA, Type);
Rui Ueyama66072272015-10-15 19:52:27 +0000955 write32le(Loc, SA);
Rafael Espindolac4010882015-09-22 20:54:08 +0000956 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +0000957 case R_X86_64_64:
Rui Ueyamad41cb952016-02-10 22:00:21 +0000958 case R_X86_64_DTPOFF64:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000959 write64le(Loc, SA);
960 break;
Michael J. Spencera5d9d1f2015-11-11 01:27:58 +0000961 case R_X86_64_DTPOFF32:
962 write32le(Loc, SA);
963 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +0000964 case R_X86_64_GOTPCREL:
George Rimar9f8f4e32016-03-22 12:15:26 +0000965 case R_X86_64_GOTPCRELX:
966 case R_X86_64_REX_GOTPCRELX:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000967 case R_X86_64_PC32:
968 case R_X86_64_PLT32:
969 case R_X86_64_TLSGD:
970 case R_X86_64_TLSLD:
971 write32le(Loc, SA - P);
972 break;
George Rimar48651482015-12-11 08:59:37 +0000973 case R_X86_64_SIZE32:
974 write32le(Loc, ZA);
975 break;
976 case R_X86_64_SIZE64:
977 write64le(Loc, ZA);
978 break;
Rafael Espindolaac1c0f82015-11-05 15:22:26 +0000979 case R_X86_64_TPOFF32: {
Rafael Espindolaea7a1e902015-11-06 22:14:44 +0000980 uint64_t Val = SA - Out<ELF64LE>::TlsPhdr->p_memsz;
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000981 checkInt<32>(Val, Type);
Rafael Espindolaac1c0f82015-11-05 15:22:26 +0000982 write32le(Loc, Val);
Michael J. Spencerd77f0d22015-11-03 22:39:09 +0000983 break;
Rafael Espindolaac1c0f82015-11-05 15:22:26 +0000984 }
Rafael Espindolac4010882015-09-22 20:54:08 +0000985 default:
George Rimar57610422016-03-11 14:43:02 +0000986 fatal("unrecognized reloc " + Twine(Type));
Rafael Espindolac4010882015-09-22 20:54:08 +0000987 }
988}
989
Hal Finkel3c8cc672015-10-12 20:56:18 +0000990// Relocation masks following the #lo(value), #hi(value), #ha(value),
991// #higher(value), #highera(value), #highest(value), and #highesta(value)
992// macros defined in section 4.5.1. Relocation Types of the PPC-elf64abi
993// document.
Rui Ueyamac44e5a12015-10-23 16:54:58 +0000994static uint16_t applyPPCLo(uint64_t V) { return V; }
995static uint16_t applyPPCHi(uint64_t V) { return V >> 16; }
996static uint16_t applyPPCHa(uint64_t V) { return (V + 0x8000) >> 16; }
997static uint16_t applyPPCHigher(uint64_t V) { return V >> 32; }
998static uint16_t applyPPCHighera(uint64_t V) { return (V + 0x8000) >> 32; }
Hal Finkel3c8cc672015-10-12 20:56:18 +0000999static uint16_t applyPPCHighest(uint64_t V) { return V >> 48; }
Hal Finkel3c8cc672015-10-12 20:56:18 +00001000static uint16_t applyPPCHighesta(uint64_t V) { return (V + 0x8000) >> 48; }
1001
Davide Italiano8c3444362016-01-11 19:45:33 +00001002PPCTargetInfo::PPCTargetInfo() {}
Davide Italiano8c3444362016-01-11 19:45:33 +00001003bool PPCTargetInfo::isRelRelative(uint32_t Type) const { return false; }
1004
1005void PPCTargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola163974d2016-03-29 23:05:59 +00001006 uint64_t P, uint64_t SA, uint64_t ZA) const {
Davide Italiano8c3444362016-01-11 19:45:33 +00001007 switch (Type) {
1008 case R_PPC_ADDR16_HA:
1009 write16be(Loc, applyPPCHa(SA));
1010 break;
1011 case R_PPC_ADDR16_LO:
1012 write16be(Loc, applyPPCLo(SA));
1013 break;
1014 default:
George Rimar57610422016-03-11 14:43:02 +00001015 fatal("unrecognized reloc " + Twine(Type));
Davide Italiano8c3444362016-01-11 19:45:33 +00001016 }
1017}
1018
Rafael Espindolac4010882015-09-22 20:54:08 +00001019PPC64TargetInfo::PPC64TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +00001020 GotRel = R_PPC64_GLOB_DAT;
1021 RelativeRel = R_PPC64_RELATIVE;
Hal Finkel6c2a3b82015-10-08 21:51:31 +00001022 PltEntrySize = 32;
Hal Finkelc848b322015-10-12 19:34:29 +00001023
1024 // We need 64K pages (at least under glibc/Linux, the loader won't
1025 // set different permissions on a finer granularity than that).
Hal Finkele3c26262015-10-08 22:23:54 +00001026 PageSize = 65536;
Hal Finkel736c7412015-10-15 07:49:07 +00001027
1028 // The PPC64 ELF ABI v1 spec, says:
1029 //
1030 // It is normally desirable to put segments with different characteristics
1031 // in separate 256 Mbyte portions of the address space, to give the
1032 // operating system full paging flexibility in the 64-bit address space.
1033 //
1034 // And because the lowest non-zero 256M boundary is 0x10000000, PPC64 linkers
1035 // use 0x10000000 as the starting address.
1036 VAStart = 0x10000000;
Rafael Espindolac4010882015-09-22 20:54:08 +00001037}
Hal Finkel3c8cc672015-10-12 20:56:18 +00001038
Hal Finkel6f97c2b2015-10-16 21:55:40 +00001039uint64_t getPPC64TocBase() {
Hal Finkel3c8cc672015-10-12 20:56:18 +00001040 // The TOC consists of sections .got, .toc, .tocbss, .plt in that
1041 // order. The TOC starts where the first of these sections starts.
1042
1043 // FIXME: This obviously does not do the right thing when there is no .got
1044 // section, but there is a .toc or .tocbss section.
1045 uint64_t TocVA = Out<ELF64BE>::Got->getVA();
1046 if (!TocVA)
1047 TocVA = Out<ELF64BE>::Plt->getVA();
1048
1049 // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000
1050 // thus permitting a full 64 Kbytes segment. Note that the glibc startup
1051 // code (crt1.o) assumes that you can get from the TOC base to the
1052 // start of the .toc section with only a single (signed) 16-bit relocation.
1053 return TocVA + 0x8000;
1054}
1055
Rui Ueyama9398f862016-01-29 04:15:02 +00001056void PPC64TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1057 uint64_t PltEntryAddr, int32_t Index,
1058 unsigned RelOff) const {
Hal Finkel3c8cc672015-10-12 20:56:18 +00001059 uint64_t Off = GotEntryAddr - getPPC64TocBase();
1060
1061 // FIXME: What we should do, in theory, is get the offset of the function
1062 // descriptor in the .opd section, and use that as the offset from %r2 (the
1063 // TOC-base pointer). Instead, we have the GOT-entry offset, and that will
1064 // be a pointer to the function descriptor in the .opd section. Using
1065 // this scheme is simpler, but requires an extra indirection per PLT dispatch.
1066
Hal Finkelfa92f682015-10-13 21:47:34 +00001067 write32be(Buf, 0xf8410028); // std %r2, 40(%r1)
Hal Finkel3c8cc672015-10-12 20:56:18 +00001068 write32be(Buf + 4, 0x3d620000 | applyPPCHa(Off)); // addis %r11, %r2, X@ha
1069 write32be(Buf + 8, 0xe98b0000 | applyPPCLo(Off)); // ld %r12, X@l(%r11)
1070 write32be(Buf + 12, 0xe96c0000); // ld %r11,0(%r12)
1071 write32be(Buf + 16, 0x7d6903a6); // mtctr %r11
1072 write32be(Buf + 20, 0xe84c0008); // ld %r2,8(%r12)
1073 write32be(Buf + 24, 0xe96c0010); // ld %r11,16(%r12)
1074 write32be(Buf + 28, 0x4e800420); // bctr
1075}
1076
Rafael Espindolaa0a65f92016-02-09 15:11:01 +00001077bool PPC64TargetInfo::needsGot(uint32_t Type, SymbolBody &S) const {
Rafael Espindola54322872016-03-24 12:55:27 +00001078 if (needsPlt(Type, S))
Hal Finkel3c8cc672015-10-12 20:56:18 +00001079 return true;
1080
1081 switch (Type) {
1082 default: return false;
1083 case R_PPC64_GOT16:
Hal Finkel3c8cc672015-10-12 20:56:18 +00001084 case R_PPC64_GOT16_DS:
Igor Kudrinb4a09272015-12-01 08:41:20 +00001085 case R_PPC64_GOT16_HA:
1086 case R_PPC64_GOT16_HI:
1087 case R_PPC64_GOT16_LO:
Hal Finkel3c8cc672015-10-12 20:56:18 +00001088 case R_PPC64_GOT16_LO_DS:
1089 return true;
1090 }
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00001091}
Hal Finkel3c8cc672015-10-12 20:56:18 +00001092
Rafael Espindola993f0272016-02-26 14:27:47 +00001093bool PPC64TargetInfo::needsPltImpl(uint32_t Type) const {
Hal Finkel3c8cc672015-10-12 20:56:18 +00001094 // These are function calls that need to be redirected through a PLT stub.
Rafael Espindola993f0272016-02-26 14:27:47 +00001095 return Type == R_PPC64_REL24;
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00001096}
Hal Finkel3c8cc672015-10-12 20:56:18 +00001097
Hal Finkelbe0823d2015-10-12 20:58:52 +00001098bool PPC64TargetInfo::isRelRelative(uint32_t Type) const {
1099 switch (Type) {
1100 default:
Hal Finkelbe0823d2015-10-12 20:58:52 +00001101 return true;
Hal Finkel00918622015-10-16 19:01:50 +00001102 case R_PPC64_ADDR64:
Igor Kudrinb4a09272015-12-01 08:41:20 +00001103 case R_PPC64_TOC:
Hal Finkel00918622015-10-16 19:01:50 +00001104 return false;
Hal Finkelbe0823d2015-10-12 20:58:52 +00001105 }
1106}
1107
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001108void PPC64TargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola163974d2016-03-29 23:05:59 +00001109 uint64_t P, uint64_t SA, uint64_t ZA) const {
Hal Finkel3c8cc672015-10-12 20:56:18 +00001110 uint64_t TB = getPPC64TocBase();
1111
Hal Finkel3c8cc672015-10-12 20:56:18 +00001112 // For a TOC-relative relocation, adjust the addend and proceed in terms of
1113 // the corresponding ADDR16 relocation type.
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001114 switch (Type) {
Rafael Espindola826941a2015-10-15 18:19:39 +00001115 case R_PPC64_TOC16: Type = R_PPC64_ADDR16; SA -= TB; break;
1116 case R_PPC64_TOC16_DS: Type = R_PPC64_ADDR16_DS; SA -= TB; break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001117 case R_PPC64_TOC16_HA: Type = R_PPC64_ADDR16_HA; SA -= TB; break;
1118 case R_PPC64_TOC16_HI: Type = R_PPC64_ADDR16_HI; SA -= TB; break;
Rafael Espindola826941a2015-10-15 18:19:39 +00001119 case R_PPC64_TOC16_LO: Type = R_PPC64_ADDR16_LO; SA -= TB; break;
1120 case R_PPC64_TOC16_LO_DS: Type = R_PPC64_ADDR16_LO_DS; SA -= TB; break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001121 default: break;
1122 }
1123
Hal Finkel3c8cc672015-10-12 20:56:18 +00001124 switch (Type) {
Igor Kudrinb4a09272015-12-01 08:41:20 +00001125 case R_PPC64_ADDR14: {
1126 checkAlignment<4>(SA, Type);
1127 // Preserve the AA/LK bits in the branch instruction
1128 uint8_t AALK = Loc[3];
1129 write16be(Loc + 2, (AALK & 3) | (SA & 0xfffc));
1130 break;
1131 }
Hal Finkel3c8cc672015-10-12 20:56:18 +00001132 case R_PPC64_ADDR16:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001133 checkInt<16>(SA, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001134 write16be(Loc, SA);
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001135 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001136 case R_PPC64_ADDR16_DS:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001137 checkInt<16>(SA, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001138 write16be(Loc, (read16be(Loc) & 3) | (SA & ~3));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001139 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001140 case R_PPC64_ADDR16_HA:
1141 write16be(Loc, applyPPCHa(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001142 break;
1143 case R_PPC64_ADDR16_HI:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001144 write16be(Loc, applyPPCHi(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001145 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001146 case R_PPC64_ADDR16_HIGHER:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001147 write16be(Loc, applyPPCHigher(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001148 break;
1149 case R_PPC64_ADDR16_HIGHERA:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001150 write16be(Loc, applyPPCHighera(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001151 break;
1152 case R_PPC64_ADDR16_HIGHEST:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001153 write16be(Loc, applyPPCHighest(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001154 break;
1155 case R_PPC64_ADDR16_HIGHESTA:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001156 write16be(Loc, applyPPCHighesta(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001157 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001158 case R_PPC64_ADDR16_LO:
1159 write16be(Loc, applyPPCLo(SA));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001160 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001161 case R_PPC64_ADDR16_LO_DS:
1162 write16be(Loc, (read16be(Loc) & 3) | (applyPPCLo(SA) & ~3));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001163 break;
1164 case R_PPC64_ADDR32:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001165 checkInt<32>(SA, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001166 write32be(Loc, SA);
Hal Finkel3c8cc672015-10-12 20:56:18 +00001167 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001168 case R_PPC64_ADDR64:
1169 write64be(Loc, SA);
1170 break;
1171 case R_PPC64_REL16_HA:
1172 write16be(Loc, applyPPCHa(SA - P));
1173 break;
1174 case R_PPC64_REL16_HI:
1175 write16be(Loc, applyPPCHi(SA - P));
1176 break;
1177 case R_PPC64_REL16_LO:
1178 write16be(Loc, applyPPCLo(SA - P));
1179 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001180 case R_PPC64_REL24: {
Hal Finkel82281982015-10-17 00:48:20 +00001181 // If we have an undefined weak symbol, we might get here with a symbol
1182 // address of zero. That could overflow, but the code must be unreachable,
1183 // so don't bother doing anything at all.
1184 if (!SA)
1185 break;
1186
Hal Finkeldaedc122015-10-12 23:16:53 +00001187 uint64_t PltStart = Out<ELF64BE>::Plt->getVA();
1188 uint64_t PltEnd = PltStart + Out<ELF64BE>::Plt->getSize();
Rui Ueyama9e82fa22015-10-15 19:39:36 +00001189 bool InPlt = PltStart <= SA && SA < PltEnd;
Hal Finkeldaedc122015-10-12 23:16:53 +00001190
1191 if (!InPlt && Out<ELF64BE>::Opd) {
1192 // If this is a local call, and we currently have the address of a
1193 // function-descriptor, get the underlying code address instead.
1194 uint64_t OpdStart = Out<ELF64BE>::Opd->getVA();
1195 uint64_t OpdEnd = OpdStart + Out<ELF64BE>::Opd->getSize();
Rui Ueyama9e82fa22015-10-15 19:39:36 +00001196 bool InOpd = OpdStart <= SA && SA < OpdEnd;
Hal Finkeldaedc122015-10-12 23:16:53 +00001197
1198 if (InOpd)
Rui Ueyama9e82fa22015-10-15 19:39:36 +00001199 SA = read64be(&Out<ELF64BE>::OpdBuf[SA - OpdStart]);
Hal Finkeldaedc122015-10-12 23:16:53 +00001200 }
1201
Hal Finkel3c8cc672015-10-12 20:56:18 +00001202 uint32_t Mask = 0x03FFFFFC;
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001203 checkInt<24>(SA - P, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001204 write32be(Loc, (read32be(Loc) & ~Mask) | ((SA - P) & Mask));
Hal Finkel87bbd5f2015-10-12 21:19:18 +00001205
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001206 uint32_t Nop = 0x60000000;
1207 if (InPlt && Loc + 8 <= BufEnd && read32be(Loc + 4) == Nop)
1208 write32be(Loc + 4, 0xe8410028); // ld %r2, 40(%r1)
Hal Finkel3c8cc672015-10-12 20:56:18 +00001209 break;
1210 }
1211 case R_PPC64_REL32:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001212 checkInt<32>(SA - P, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001213 write32be(Loc, SA - P);
Hal Finkel3c8cc672015-10-12 20:56:18 +00001214 break;
1215 case R_PPC64_REL64:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001216 write64be(Loc, SA - P);
Hal Finkel3c8cc672015-10-12 20:56:18 +00001217 break;
Hal Finkel6f97c2b2015-10-16 21:55:40 +00001218 case R_PPC64_TOC:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001219 write64be(Loc, SA);
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001220 break;
1221 default:
George Rimar57610422016-03-11 14:43:02 +00001222 fatal("unrecognized reloc " + Twine(Type));
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001223 }
1224}
Rafael Espindola1d6063e2015-09-22 21:24:52 +00001225
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001226AArch64TargetInfo::AArch64TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +00001227 CopyRel = R_AARCH64_COPY;
Adhemerval Zanella668ad0f2016-02-23 16:54:40 +00001228 RelativeRel = R_AARCH64_RELATIVE;
Rui Ueyama724d6252016-01-29 01:49:32 +00001229 IRelativeRel = R_AARCH64_IRELATIVE;
1230 GotRel = R_AARCH64_GLOB_DAT;
1231 PltRel = R_AARCH64_JUMP_SLOT;
1232 TlsGotRel = R_AARCH64_TLS_TPREL64;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001233 TlsModuleIndexRel = R_AARCH64_TLS_DTPMOD64;
1234 TlsOffsetRel = R_AARCH64_TLS_DTPREL64;
Rui Ueyama724d6252016-01-29 01:49:32 +00001235 UseLazyBinding = true;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001236 PltEntrySize = 16;
Rui Ueyama62515452016-01-29 03:00:32 +00001237 PltZeroSize = 32;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001238}
George Rimar648a2c32015-10-20 08:54:27 +00001239
Rafael Espindolaa4e35f72016-02-24 16:15:13 +00001240bool AArch64TargetInfo::isRelRelative(uint32_t Type) const {
Adhemerval Zanella3db3f6d2016-03-24 19:12:14 +00001241 switch (Type) {
1242 default:
1243 return false;
1244 case R_AARCH64_PREL32:
1245 case R_AARCH64_ADR_PREL_LO21:
1246 case R_AARCH64_ADR_PREL_PG_HI21:
1247 case R_AARCH64_ADR_GOT_PAGE:
1248 case R_AARCH64_LDST8_ABS_LO12_NC:
1249 case R_AARCH64_LDST16_ABS_LO12_NC:
1250 case R_AARCH64_LDST32_ABS_LO12_NC:
1251 case R_AARCH64_LDST64_ABS_LO12_NC:
1252 case R_AARCH64_LDST128_ABS_LO12_NC:
1253 case R_AARCH64_ADD_ABS_LO12_NC:
1254 case R_AARCH64_CALL26:
1255 case R_AARCH64_JUMP26:
1256 case R_AARCH64_CONDBR19:
1257 case R_AARCH64_TSTBR14:
Rafael Espindola07275532016-03-28 01:31:11 +00001258 case R_AARCH64_PREL64:
Adhemerval Zanella3db3f6d2016-03-24 19:12:14 +00001259 return true;
1260 }
Rafael Espindolaa4e35f72016-02-24 16:15:13 +00001261}
Rafael Espindola435c00f2016-02-23 20:19:44 +00001262
George Rimar98b060d2016-03-06 06:01:07 +00001263bool AArch64TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001264 return Type == R_AARCH64_TLSDESC_ADR_PAGE21 ||
1265 Type == R_AARCH64_TLSDESC_LD64_LO12_NC ||
1266 Type == R_AARCH64_TLSDESC_ADD_LO12_NC ||
1267 Type == R_AARCH64_TLSDESC_CALL;
1268}
1269
George Rimar98b060d2016-03-06 06:01:07 +00001270bool AArch64TargetInfo::isTlsInitialExecRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +00001271 return Type == R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 ||
1272 Type == R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC;
1273}
1274
George Rimar98b060d2016-03-06 06:01:07 +00001275uint32_t AArch64TargetInfo::getDynRel(uint32_t Type) const {
Igor Kudrincfe47f52015-12-05 06:20:24 +00001276 if (Type == R_AARCH64_ABS32 || Type == R_AARCH64_ABS64)
1277 return Type;
1278 StringRef S = getELFRelocationTypeName(EM_AARCH64, Type);
George Rimarca1d1fb2016-03-15 14:00:22 +00001279 error("relocation " + S + " cannot be used when making a shared object; "
Igor Kudrincfe47f52015-12-05 06:20:24 +00001280 "recompile with -fPIC.");
Rui Ueyama21923992016-02-01 23:28:21 +00001281 // Keep it going with a dummy value so that we can find more reloc errors.
1282 return R_AARCH64_ABS32;
Igor Kudrincfe47f52015-12-05 06:20:24 +00001283}
1284
Rui Ueyamac516ae12016-01-29 02:33:45 +00001285void AArch64TargetInfo::writeGotPlt(uint8_t *Buf, uint64_t Plt) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001286 write64le(Buf, Out<ELF64LE>::Plt->getVA());
1287}
1288
Rui Ueyama900e2d22016-01-29 03:51:49 +00001289void AArch64TargetInfo::writePltZero(uint8_t *Buf) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001290 const uint8_t PltData[] = {
1291 0xf0, 0x7b, 0xbf, 0xa9, // stp x16, x30, [sp,#-16]!
1292 0x10, 0x00, 0x00, 0x90, // adrp x16, Page(&(.plt.got[2]))
1293 0x11, 0x02, 0x40, 0xf9, // ldr x17, [x16, Offset(&(.plt.got[2]))]
1294 0x10, 0x02, 0x00, 0x91, // add x16, x16, Offset(&(.plt.got[2]))
1295 0x20, 0x02, 0x1f, 0xd6, // br x17
1296 0x1f, 0x20, 0x03, 0xd5, // nop
1297 0x1f, 0x20, 0x03, 0xd5, // nop
1298 0x1f, 0x20, 0x03, 0xd5 // nop
1299 };
1300 memcpy(Buf, PltData, sizeof(PltData));
1301
Rui Ueyama900e2d22016-01-29 03:51:49 +00001302 uint64_t Got = Out<ELF64LE>::GotPlt->getVA();
1303 uint64_t Plt = Out<ELF64LE>::Plt->getVA();
1304 relocateOne(Buf + 4, Buf + 8, R_AARCH64_ADR_PREL_PG_HI21, Plt + 4, Got + 16);
1305 relocateOne(Buf + 8, Buf + 12, R_AARCH64_LDST64_ABS_LO12_NC, Plt + 8,
1306 Got + 16);
1307 relocateOne(Buf + 12, Buf + 16, R_AARCH64_ADD_ABS_LO12_NC, Plt + 12,
1308 Got + 16);
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001309}
1310
Rui Ueyama9398f862016-01-29 04:15:02 +00001311void AArch64TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1312 uint64_t PltEntryAddr, int32_t Index,
1313 unsigned RelOff) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001314 const uint8_t Inst[] = {
1315 0x10, 0x00, 0x00, 0x90, // adrp x16, Page(&(.plt.got[n]))
1316 0x11, 0x02, 0x40, 0xf9, // ldr x17, [x16, Offset(&(.plt.got[n]))]
1317 0x10, 0x02, 0x00, 0x91, // add x16, x16, Offset(&(.plt.got[n]))
1318 0x20, 0x02, 0x1f, 0xd6 // br x17
1319 };
1320 memcpy(Buf, Inst, sizeof(Inst));
1321
1322 relocateOne(Buf, Buf + 4, R_AARCH64_ADR_PREL_PG_HI21, PltEntryAddr,
1323 GotEntryAddr);
1324 relocateOne(Buf + 4, Buf + 8, R_AARCH64_LDST64_ABS_LO12_NC, PltEntryAddr + 4,
1325 GotEntryAddr);
1326 relocateOne(Buf + 8, Buf + 12, R_AARCH64_ADD_ABS_LO12_NC, PltEntryAddr + 8,
1327 GotEntryAddr);
1328}
1329
George Rimar98b060d2016-03-06 06:01:07 +00001330uint32_t AArch64TargetInfo::getTlsGotRel(uint32_t Type) const {
George Rimar2960c982016-02-11 11:14:46 +00001331 assert(Type == R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 ||
George Rimar4d1d16d2016-03-06 06:16:05 +00001332 Type == R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC);
1333 return Type;
George Rimar3d737e42016-01-13 13:04:46 +00001334}
1335
Rafael Espindolafb1533b2016-02-22 21:23:29 +00001336bool AArch64TargetInfo::needsCopyRelImpl(uint32_t Type) const {
Igor Kudrin9606d192015-12-03 08:05:35 +00001337 switch (Type) {
1338 default:
1339 return false;
1340 case R_AARCH64_ABS16:
1341 case R_AARCH64_ABS32:
1342 case R_AARCH64_ABS64:
1343 case R_AARCH64_ADD_ABS_LO12_NC:
1344 case R_AARCH64_ADR_PREL_LO21:
1345 case R_AARCH64_ADR_PREL_PG_HI21:
1346 case R_AARCH64_LDST8_ABS_LO12_NC:
Davide Italiano2dfc5fd2016-01-15 01:49:51 +00001347 case R_AARCH64_LDST16_ABS_LO12_NC:
Igor Kudrin9606d192015-12-03 08:05:35 +00001348 case R_AARCH64_LDST32_ABS_LO12_NC:
1349 case R_AARCH64_LDST64_ABS_LO12_NC:
Davide Italiano0d4fbae2016-01-14 01:30:21 +00001350 case R_AARCH64_LDST128_ABS_LO12_NC:
Rafael Espindolafb1533b2016-02-22 21:23:29 +00001351 return true;
Igor Kudrin9606d192015-12-03 08:05:35 +00001352 }
1353}
1354
Rafael Espindolaa0a65f92016-02-09 15:11:01 +00001355bool AArch64TargetInfo::needsGot(uint32_t Type, SymbolBody &S) const {
George Rimar3d737e42016-01-13 13:04:46 +00001356 switch (Type) {
George Rimar3d737e42016-01-13 13:04:46 +00001357 case R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
Rafael Espindola48b91022016-03-16 22:43:36 +00001358 case R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
Rafael Espindola54bf9e12016-03-16 23:01:56 +00001359 return !canRelaxTls(Type, &S);
George Rimar3d737e42016-01-13 13:04:46 +00001360 case R_AARCH64_ADR_GOT_PAGE:
1361 case R_AARCH64_LD64_GOT_LO12_NC:
1362 return true;
1363 default:
Rafael Espindola54322872016-03-24 12:55:27 +00001364 return needsPlt(Type, S);
George Rimar3d737e42016-01-13 13:04:46 +00001365 }
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00001366}
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001367
Rafael Espindola993f0272016-02-26 14:27:47 +00001368bool AArch64TargetInfo::needsPltImpl(uint32_t Type) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001369 switch (Type) {
1370 default:
Rafael Espindola795dc5a2016-02-24 18:24:23 +00001371 return false;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001372 case R_AARCH64_CALL26:
George Rimar4102bfb2016-01-11 14:22:00 +00001373 case R_AARCH64_CONDBR19:
Igor Kudrinb4a09272015-12-01 08:41:20 +00001374 case R_AARCH64_JUMP26:
George Rimar1395dbd2016-01-11 14:27:05 +00001375 case R_AARCH64_TSTBR14:
Rafael Espindola993f0272016-02-26 14:27:47 +00001376 return true;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001377 }
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00001378}
Davide Italiano1d750a62015-09-27 08:45:38 +00001379
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001380static void updateAArch64Addr(uint8_t *L, uint64_t Imm) {
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001381 uint32_t ImmLo = (Imm & 0x3) << 29;
1382 uint32_t ImmHi = ((Imm & 0x1FFFFC) >> 2) << 5;
1383 uint64_t Mask = (0x3 << 29) | (0x7FFFF << 5);
Rui Ueyama87bc41b2015-10-06 18:54:43 +00001384 write32le(L, (read32le(L) & ~Mask) | ImmLo | ImmHi);
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001385}
1386
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001387static inline void updateAArch64Add(uint8_t *L, uint64_t Imm) {
1388 or32le(L, (Imm & 0xFFF) << 10);
1389}
1390
Davide Italiano318ca222015-10-02 22:13:51 +00001391// Page(Expr) is the page address of the expression Expr, defined
1392// as (Expr & ~0xFFF). (This applies even if the machine page size
Davide Italianod9b5be42015-10-02 22:17:09 +00001393// supported by the platform has a different value.)
Davide Italianoef4be6b2015-10-06 19:01:32 +00001394static uint64_t getAArch64Page(uint64_t Expr) {
Davide Italiano318ca222015-10-02 22:13:51 +00001395 return Expr & (~static_cast<uint64_t>(0xFFF));
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001396}
1397
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001398void AArch64TargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd,
Simon Atanasyan09b3e362015-12-01 21:24:45 +00001399 uint32_t Type, uint64_t P, uint64_t SA,
Rafael Espindola163974d2016-03-29 23:05:59 +00001400 uint64_t ZA) const {
Davide Italiano1d750a62015-09-27 08:45:38 +00001401 switch (Type) {
Davide Italianodf88f962015-10-04 00:59:16 +00001402 case R_AARCH64_ABS16:
Igor Kudrinfea8ed52015-11-26 10:05:24 +00001403 checkIntUInt<16>(SA, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001404 write16le(Loc, SA);
Davide Italianodf88f962015-10-04 00:59:16 +00001405 break;
1406 case R_AARCH64_ABS32:
Igor Kudrinfea8ed52015-11-26 10:05:24 +00001407 checkIntUInt<32>(SA, Type);
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001408 write32le(Loc, SA);
Davide Italianodf88f962015-10-04 00:59:16 +00001409 break;
1410 case R_AARCH64_ABS64:
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001411 write64le(Loc, SA);
Davide Italianodf88f962015-10-04 00:59:16 +00001412 break;
Davide Italiano0b6974b2015-10-03 19:56:07 +00001413 case R_AARCH64_ADD_ABS_LO12_NC:
Davide Italianoa7165742015-10-16 21:06:55 +00001414 // This relocation stores 12 bits and there's no instruction
1415 // to do it. Instead, we do a 32 bits store of the value
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001416 // of r_addend bitwise-or'ed Loc. This assumes that the addend
1417 // bits in Loc are zero.
1418 or32le(Loc, (SA & 0xFFF) << 10);
Davide Italiano0b6974b2015-10-03 19:56:07 +00001419 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001420 case R_AARCH64_ADR_GOT_PAGE: {
1421 uint64_t X = getAArch64Page(SA) - getAArch64Page(P);
1422 checkInt<33>(X, Type);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001423 updateAArch64Addr(Loc, (X >> 12) & 0x1FFFFF); // X[32:12]
Igor Kudrinb4a09272015-12-01 08:41:20 +00001424 break;
1425 }
Rui Ueyamaee8c53b2015-10-06 19:57:01 +00001426 case R_AARCH64_ADR_PREL_LO21: {
Rafael Espindola826941a2015-10-15 18:19:39 +00001427 uint64_t X = SA - P;
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001428 checkInt<21>(X, Type);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001429 updateAArch64Addr(Loc, X & 0x1FFFFF);
Davide Italiano1d750a62015-09-27 08:45:38 +00001430 break;
Rui Ueyamaee8c53b2015-10-06 19:57:01 +00001431 }
George Rimar3d737e42016-01-13 13:04:46 +00001432 case R_AARCH64_ADR_PREL_PG_HI21:
1433 case R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21: {
Rafael Espindola826941a2015-10-15 18:19:39 +00001434 uint64_t X = getAArch64Page(SA) - getAArch64Page(P);
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001435 checkInt<33>(X, Type);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001436 updateAArch64Addr(Loc, (X >> 12) & 0x1FFFFF); // X[32:12]
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001437 break;
Rui Ueyamaee8c53b2015-10-06 19:57:01 +00001438 }
Igor Kudrinb4a09272015-12-01 08:41:20 +00001439 case R_AARCH64_CALL26:
1440 case R_AARCH64_JUMP26: {
Igor Kudrinb34115b2015-11-13 03:26:59 +00001441 uint64_t X = SA - P;
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001442 checkInt<28>(X, Type);
Igor Kudrinb34115b2015-11-13 03:26:59 +00001443 or32le(Loc, (X & 0x0FFFFFFC) >> 2);
1444 break;
1445 }
George Rimar4102bfb2016-01-11 14:22:00 +00001446 case R_AARCH64_CONDBR19: {
1447 uint64_t X = SA - P;
1448 checkInt<21>(X, Type);
1449 or32le(Loc, (X & 0x1FFFFC) << 3);
1450 break;
1451 }
Igor Kudrin5d2bffd2015-11-24 06:48:31 +00001452 case R_AARCH64_LD64_GOT_LO12_NC:
George Rimar3d737e42016-01-13 13:04:46 +00001453 case R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
Igor Kudrin9b7e7db2015-11-26 09:49:44 +00001454 checkAlignment<8>(SA, Type);
Igor Kudrin5d2bffd2015-11-24 06:48:31 +00001455 or32le(Loc, (SA & 0xFF8) << 7);
1456 break;
Davide Italiano0d4fbae2016-01-14 01:30:21 +00001457 case R_AARCH64_LDST128_ABS_LO12_NC:
1458 or32le(Loc, (SA & 0x0FF8) << 6);
1459 break;
Davide Italiano2dfc5fd2016-01-15 01:49:51 +00001460 case R_AARCH64_LDST16_ABS_LO12_NC:
1461 or32le(Loc, (SA & 0x0FFC) << 9);
1462 break;
Davide Italianodc67f9b2015-11-20 21:35:38 +00001463 case R_AARCH64_LDST8_ABS_LO12_NC:
Davide Italianodc67f9b2015-11-20 21:35:38 +00001464 or32le(Loc, (SA & 0xFFF) << 10);
1465 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001466 case R_AARCH64_LDST32_ABS_LO12_NC:
1467 or32le(Loc, (SA & 0xFFC) << 8);
1468 break;
1469 case R_AARCH64_LDST64_ABS_LO12_NC:
1470 or32le(Loc, (SA & 0xFF8) << 7);
1471 break;
Davide Italiano3300b792015-10-29 19:55:59 +00001472 case R_AARCH64_PREL16:
Igor Kudrinfea8ed52015-11-26 10:05:24 +00001473 checkIntUInt<16>(SA - P, Type);
Davide Italiano3300b792015-10-29 19:55:59 +00001474 write16le(Loc, SA - P);
1475 break;
1476 case R_AARCH64_PREL32:
Igor Kudrinfea8ed52015-11-26 10:05:24 +00001477 checkIntUInt<32>(SA - P, Type);
Davide Italiano3300b792015-10-29 19:55:59 +00001478 write32le(Loc, SA - P);
1479 break;
Davide Italianob12d6682015-10-28 16:14:18 +00001480 case R_AARCH64_PREL64:
Davide Italianob12d6682015-10-28 16:14:18 +00001481 write64le(Loc, SA - P);
1482 break;
George Rimar1395dbd2016-01-11 14:27:05 +00001483 case R_AARCH64_TSTBR14: {
1484 uint64_t X = SA - P;
1485 checkInt<16>(X, Type);
1486 or32le(Loc, (X & 0xFFFC) << 3);
1487 break;
1488 }
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001489 case R_AARCH64_TLSLE_ADD_TPREL_HI12: {
1490 uint64_t V = llvm::alignTo(TcbSize, Out<ELF64LE>::TlsPhdr->p_align) + SA;
1491 checkInt<24>(V, Type);
1492 updateAArch64Add(Loc, (V & 0xFFF000) >> 12);
1493 break;
1494 }
1495 case R_AARCH64_TLSLE_ADD_TPREL_LO12_NC: {
1496 uint64_t V = llvm::alignTo(TcbSize, Out<ELF64LE>::TlsPhdr->p_align) + SA;
1497 updateAArch64Add(Loc, V & 0xFFF);
1498 break;
1499 }
Davide Italiano1d750a62015-09-27 08:45:38 +00001500 default:
George Rimar57610422016-03-11 14:43:02 +00001501 fatal("unrecognized reloc " + Twine(Type));
Davide Italiano1d750a62015-09-27 08:45:38 +00001502 }
1503}
Simon Atanasyan49829a12015-09-29 05:34:03 +00001504
Rafael Espindola89cc14f2016-03-16 19:03:58 +00001505size_t AArch64TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +00001506 uint32_t Type, uint64_t P,
1507 uint64_t SA) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001508 // TLSDESC Global-Dynamic relocation are in the form:
1509 // adrp x0, :tlsdesc:v [R_AARCH64_TLSDESC_ADR_PAGE21]
1510 // ldr x1, [x0, #:tlsdesc_lo12:v [R_AARCH64_TLSDESC_LD64_LO12_NC]
1511 // add x0, x0, :tlsdesc_los:v [_AARCH64_TLSDESC_ADD_LO12_NC]
1512 // .tlsdesccall [R_AARCH64_TLSDESC_CALL]
1513 // And it can optimized to:
1514 // movz x0, #0x0, lsl #16
1515 // movk x0, #0x10
1516 // nop
1517 // nop
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001518 uint64_t TPOff = llvm::alignTo(TcbSize, Out<ELF64LE>::TlsPhdr->p_align);
1519 uint64_t X = SA + TPOff;
1520 checkUInt<32>(X, Type);
1521
1522 uint32_t NewInst;
1523 switch (Type) {
1524 case R_AARCH64_TLSDESC_ADD_LO12_NC:
1525 case R_AARCH64_TLSDESC_CALL:
1526 // nop
1527 NewInst = 0xd503201f;
1528 break;
1529 case R_AARCH64_TLSDESC_ADR_PAGE21:
1530 // movz
1531 NewInst = 0xd2a00000 | (((X >> 16) & 0xffff) << 5);
1532 break;
1533 case R_AARCH64_TLSDESC_LD64_LO12_NC:
1534 // movk
1535 NewInst = 0xf2800000 | ((X & 0xffff) << 5);
1536 break;
1537 default:
George Rimar777f9632016-03-12 08:31:34 +00001538 llvm_unreachable("unsupported Relocation for TLS GD to LE relax");
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001539 }
1540 write32le(Loc, NewInst);
Rafael Espindola89cc14f2016-03-16 19:03:58 +00001541
1542 return 0;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001543}
1544
Rafael Espindola89cc14f2016-03-16 19:03:58 +00001545size_t AArch64TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint8_t *BufEnd,
Rafael Espindola54bf9e12016-03-16 23:01:56 +00001546 uint32_t Type, uint64_t P,
1547 uint64_t SA) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001548 uint64_t TPOff = llvm::alignTo(TcbSize, Out<ELF64LE>::TlsPhdr->p_align);
1549 uint64_t X = SA + TPOff;
1550 checkUInt<32>(X, Type);
1551
George Rimar4d1d16d2016-03-06 06:16:05 +00001552 uint32_t Inst = read32le(Loc);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001553 uint32_t NewInst;
1554 if (Type == R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21) {
1555 // Generate movz.
1556 unsigned RegNo = (Inst & 0x1f);
1557 NewInst = (0xd2a00000 | RegNo) | (((X >> 16) & 0xffff) << 5);
1558 } else if (Type == R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC) {
1559 // Generate movk
1560 unsigned RegNo = (Inst & 0x1f);
1561 NewInst = (0xf2800000 | RegNo) | ((X & 0xffff) << 5);
1562 } else {
George Rimar777f9632016-03-12 08:31:34 +00001563 llvm_unreachable("invalid Relocation for TLS IE to LE Relax");
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001564 }
1565 write32le(Loc, NewInst);
Rafael Espindola89cc14f2016-03-16 19:03:58 +00001566
1567 return 0;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001568}
1569
Rui Ueyama1300e6b2016-01-07 20:34:16 +00001570// Implementing relocations for AMDGPU is low priority since most
1571// programs don't use relocations now. Thus, this function is not
1572// actually called (relocateOne is called for each relocation).
1573// That's why the AMDGPU port works without implementing this function.
Tom Stellard80efb162016-01-07 03:59:08 +00001574void AMDGPUTargetInfo::relocateOne(uint8_t *Loc, uint8_t *BufEnd, uint32_t Type,
Rafael Espindola163974d2016-03-29 23:05:59 +00001575 uint64_t P, uint64_t SA, uint64_t ZA) const {
George Rimar57610422016-03-11 14:43:02 +00001576 llvm_unreachable("not implemented");
Tom Stellard80efb162016-01-07 03:59:08 +00001577}
1578
Simon Atanasyan9c2d7882015-10-14 14:24:46 +00001579template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() {
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00001580 GotHeaderEntriesNum = 2;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001581 GotPltHeaderEntriesNum = 2;
Simon Atanasyaneae66c02016-02-10 10:08:39 +00001582 PageSize = 65536;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001583 PltEntrySize = 16;
1584 PltZeroSize = 32;
1585 UseLazyBinding = true;
Simon Atanasyaneae66c02016-02-10 10:08:39 +00001586 CopyRel = R_MIPS_COPY;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001587 PltRel = R_MIPS_JUMP_SLOT;
Rui Ueyama724d6252016-01-29 01:49:32 +00001588 RelativeRel = R_MIPS_REL32;
Simon Atanasyanca558ea2016-01-14 21:34:50 +00001589}
1590
1591template <class ELFT>
George Rimar98b060d2016-03-06 06:01:07 +00001592uint32_t MipsTargetInfo<ELFT>::getDynRel(uint32_t Type) const {
Simon Atanasyanca558ea2016-01-14 21:34:50 +00001593 if (Type == R_MIPS_32 || Type == R_MIPS_64)
1594 return R_MIPS_REL32;
1595 StringRef S = getELFRelocationTypeName(EM_MIPS, Type);
George Rimarca1d1fb2016-03-15 14:00:22 +00001596 error("relocation " + S + " cannot be used when making a shared object; "
Simon Atanasyanca558ea2016-01-14 21:34:50 +00001597 "recompile with -fPIC.");
Rui Ueyama21923992016-02-01 23:28:21 +00001598 // Keep it going with a dummy value so that we can find more reloc errors.
1599 return R_MIPS_32;
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00001600}
1601
1602template <class ELFT>
Rui Ueyamac516ae12016-01-29 02:33:45 +00001603void MipsTargetInfo<ELFT>::writeGotHeader(uint8_t *Buf) const {
Rui Ueyama9328b2c2016-03-14 23:16:09 +00001604 typedef typename ELFT::Off Elf_Off;
1605 typedef typename ELFT::uint uintX_t;
Rui Ueyama8364c622016-01-29 22:55:38 +00001606
1607 // Set the MSB of the second GOT slot. This is not required by any
1608 // MIPS ABI documentation, though.
1609 //
1610 // There is a comment in glibc saying that "The MSB of got[1] of a
1611 // gnu object is set to identify gnu objects," and in GNU gold it
1612 // says "the second entry will be used by some runtime loaders".
1613 // But how this field is being used is unclear.
1614 //
1615 // We are not really willing to mimic other linkers behaviors
1616 // without understanding why they do that, but because all files
1617 // generated by GNU tools have this special GOT value, and because
1618 // we've been doing this for years, it is probably a safe bet to
1619 // keep doing this for now. We really need to revisit this to see
1620 // if we had to do this.
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00001621 auto *P = reinterpret_cast<Elf_Off *>(Buf);
Rui Ueyama8364c622016-01-29 22:55:38 +00001622 P[1] = uintX_t(1) << (ELFT::Is64Bits ? 63 : 31);
Simon Atanasyan49829a12015-09-29 05:34:03 +00001623}
1624
Simon Atanasyan9c2d7882015-10-14 14:24:46 +00001625template <class ELFT>
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001626void MipsTargetInfo<ELFT>::writeGotPlt(uint8_t *Buf, uint64_t Plt) const {
1627 write32<ELFT::TargetEndianness>(Buf, Out<ELFT>::Plt->getVA());
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00001628}
Simon Atanasyan49829a12015-09-29 05:34:03 +00001629
Simon Atanasyan35031192015-12-15 06:06:34 +00001630static uint16_t mipsHigh(uint64_t V) { return (V + 0x8000) >> 16; }
Simon Atanasyan2cd670d2015-12-13 06:49:01 +00001631
Simon Atanasyane364e2e2016-02-04 12:31:39 +00001632template <endianness E, uint8_t BSIZE, uint8_t SHIFT>
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001633static void applyMipsPcReloc(uint8_t *Loc, uint32_t Type, uint64_t P,
Simon Atanasyan62313912016-02-10 10:08:35 +00001634 uint64_t S) {
Simon Atanasyane364e2e2016-02-04 12:31:39 +00001635 uint32_t Mask = 0xffffffff >> (32 - BSIZE);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001636 uint32_t Instr = read32<E>(Loc);
Simon Atanasyane364e2e2016-02-04 12:31:39 +00001637 int64_t A = SignExtend64<BSIZE + SHIFT>((Instr & Mask) << SHIFT);
1638 if (SHIFT > 0)
Simon Atanasyan62313912016-02-10 10:08:35 +00001639 checkAlignment<(1 << SHIFT)>(S + A, Type);
1640 int64_t V = S + A - P;
Simon Atanasyane364e2e2016-02-04 12:31:39 +00001641 checkInt<BSIZE + SHIFT>(V, Type);
1642 write32<E>(Loc, (Instr & ~Mask) | ((V >> SHIFT) & Mask));
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001643}
1644
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001645template <endianness E>
Simon Atanasyana888e672016-03-04 10:55:12 +00001646static void writeMipsHi16(uint8_t *Loc, uint64_t V) {
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001647 uint32_t Instr = read32<E>(Loc);
Simon Atanasyana888e672016-03-04 10:55:12 +00001648 write32<E>(Loc, (Instr & 0xffff0000) | mipsHigh(V));
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001649}
1650
Simon Atanasyan3b377852016-03-04 10:55:20 +00001651template <endianness E>
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001652static void writeMipsLo16(uint8_t *Loc, uint64_t V) {
1653 uint32_t Instr = read32<E>(Loc);
1654 write32<E>(Loc, (Instr & 0xffff0000) | (V & 0xffff));
1655}
1656
Simon Atanasyan4e18a312016-03-04 10:55:29 +00001657template <endianness E> static int16_t readSignedLo16(uint8_t *Loc) {
1658 return SignExtend32<16>(read32<E>(Loc) & 0xffff);
1659}
1660
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001661template <class ELFT>
1662void MipsTargetInfo<ELFT>::writePltZero(uint8_t *Buf) const {
1663 const endianness E = ELFT::TargetEndianness;
1664 write32<E>(Buf, 0x3c1c0000); // lui $28, %hi(&GOTPLT[0])
1665 write32<E>(Buf + 4, 0x8f990000); // lw $25, %lo(&GOTPLT[0])($28)
1666 write32<E>(Buf + 8, 0x279c0000); // addiu $28, $28, %lo(&GOTPLT[0])
1667 write32<E>(Buf + 12, 0x031cc023); // subu $24, $24, $28
1668 write32<E>(Buf + 16, 0x03e07825); // move $15, $31
1669 write32<E>(Buf + 20, 0x0018c082); // srl $24, $24, 2
1670 write32<E>(Buf + 24, 0x0320f809); // jalr $25
1671 write32<E>(Buf + 28, 0x2718fffe); // subu $24, $24, 2
1672 uint64_t Got = Out<ELFT>::GotPlt->getVA();
Simon Atanasyana888e672016-03-04 10:55:12 +00001673 writeMipsHi16<E>(Buf, Got);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001674 writeMipsLo16<E>(Buf + 4, Got);
1675 writeMipsLo16<E>(Buf + 8, Got);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001676}
1677
1678template <class ELFT>
1679void MipsTargetInfo<ELFT>::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1680 uint64_t PltEntryAddr, int32_t Index,
1681 unsigned RelOff) const {
1682 const endianness E = ELFT::TargetEndianness;
1683 write32<E>(Buf, 0x3c0f0000); // lui $15, %hi(.got.plt entry)
1684 write32<E>(Buf + 4, 0x8df90000); // l[wd] $25, %lo(.got.plt entry)($15)
1685 write32<E>(Buf + 8, 0x03200008); // jr $25
1686 write32<E>(Buf + 12, 0x25f80000); // addiu $24, $15, %lo(.got.plt entry)
Simon Atanasyana888e672016-03-04 10:55:12 +00001687 writeMipsHi16<E>(Buf, GotEntryAddr);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001688 writeMipsLo16<E>(Buf + 4, GotEntryAddr);
1689 writeMipsLo16<E>(Buf + 12, GotEntryAddr);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001690}
1691
1692template <class ELFT>
Rafael Espindolafb1533b2016-02-22 21:23:29 +00001693bool MipsTargetInfo<ELFT>::needsCopyRelImpl(uint32_t Type) const {
Simon Atanasyan49bc69b2016-02-25 05:03:52 +00001694 return !isRelRelative(Type);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001695}
1696
1697template <class ELFT>
1698bool MipsTargetInfo<ELFT>::needsGot(uint32_t Type, SymbolBody &S) const {
Rafael Espindola54322872016-03-24 12:55:27 +00001699 return needsPlt(Type, S) || refersToGotEntry(Type);
Simon Atanasyand040a582016-02-25 16:19:15 +00001700}
1701
1702template <class ELFT>
1703bool MipsTargetInfo<ELFT>::refersToGotEntry(uint32_t Type) const {
1704 return Type == R_MIPS_GOT16 || Type == R_MIPS_CALL16;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001705}
1706
1707template <class ELFT>
Rafael Espindola993f0272016-02-26 14:27:47 +00001708bool MipsTargetInfo<ELFT>::needsPltImpl(uint32_t Type) const {
1709 return Type == R_MIPS_26;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001710}
1711
Simon Atanasyan9c2d7882015-10-14 14:24:46 +00001712template <class ELFT>
Rui Ueyama96f0e0b2015-10-23 02:40:46 +00001713void MipsTargetInfo<ELFT>::relocateOne(uint8_t *Loc, uint8_t *BufEnd,
Simon Atanasyan62313912016-02-10 10:08:35 +00001714 uint32_t Type, uint64_t P, uint64_t S,
Rafael Espindola163974d2016-03-29 23:05:59 +00001715 uint64_t ZA) const {
Rafael Espindolae7e57b22015-11-09 21:43:00 +00001716 const endianness E = ELFT::TargetEndianness;
Simon Atanasyana8e9cb32016-03-17 12:36:08 +00001717 // Thread pointer and DRP offsets from the start of TLS data area.
1718 // https://www.linux-mips.org/wiki/NPTL
1719 const uint32_t TPOffset = 0x7000;
1720 const uint32_t DTPOffset = 0x8000;
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00001721 switch (Type) {
1722 case R_MIPS_32:
Simon Atanasyan62313912016-02-10 10:08:35 +00001723 add32<E>(Loc, S);
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00001724 break;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00001725 case R_MIPS_26: {
1726 uint32_t Instr = read32<E>(Loc);
1727 // FIXME (simon): If the relocation target symbol is not a PLT entry
1728 // we should use another expression for calculation:
1729 // ((A << 2) | (P & 0xf0000000)) >> 2
1730 S += SignExtend64<28>((Instr & 0x3ffffff) << 2);
1731 write32<E>(Loc, (Instr & ~0x3ffffff) | (S >> 2));
1732 break;
1733 }
Rui Ueyama7ee3cf72015-12-03 20:59:51 +00001734 case R_MIPS_CALL16:
1735 case R_MIPS_GOT16: {
Simon Atanasyan62313912016-02-10 10:08:35 +00001736 int64_t V = S - getMipsGpAddr<ELFT>();
Rui Ueyama7ee3cf72015-12-03 20:59:51 +00001737 if (Type == R_MIPS_GOT16)
1738 checkInt<16>(V, Type);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001739 writeMipsLo16<E>(Loc, V);
Rui Ueyama7ee3cf72015-12-03 20:59:51 +00001740 break;
1741 }
Simon Atanasyan57830b62015-12-25 13:02:13 +00001742 case R_MIPS_GPREL16: {
Simon Atanasyan4e18a312016-03-04 10:55:29 +00001743 int64_t V = S + readSignedLo16<E>(Loc) - getMipsGpAddr<ELFT>();
Simon Atanasyan57830b62015-12-25 13:02:13 +00001744 checkInt<16>(V, Type);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001745 writeMipsLo16<E>(Loc, V);
Simon Atanasyan57830b62015-12-25 13:02:13 +00001746 break;
1747 }
1748 case R_MIPS_GPREL32:
Simon Atanasyan62313912016-02-10 10:08:35 +00001749 write32<E>(Loc, S + int32_t(read32<E>(Loc)) - getMipsGpAddr<ELFT>());
Simon Atanasyan57830b62015-12-25 13:02:13 +00001750 break;
Simon Atanasyan3b377852016-03-04 10:55:20 +00001751 case R_MIPS_HI16:
Rafael Espindola163974d2016-03-29 23:05:59 +00001752 writeMipsHi16<E>(Loc, S);
Simon Atanasyan09b3e362015-12-01 21:24:45 +00001753 break;
Simon Atanasyane4361852015-12-13 06:49:14 +00001754 case R_MIPS_JALR:
1755 // Ignore this optimization relocation for now
1756 break;
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001757 case R_MIPS_LO16:
Simon Atanasyan4e18a312016-03-04 10:55:29 +00001758 writeMipsLo16<E>(Loc, S + readSignedLo16<E>(Loc));
Simon Atanasyan09b3e362015-12-01 21:24:45 +00001759 break;
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001760 case R_MIPS_PC16:
Simon Atanasyan62313912016-02-10 10:08:35 +00001761 applyMipsPcReloc<E, 16, 2>(Loc, Type, P, S);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001762 break;
1763 case R_MIPS_PC19_S2:
Simon Atanasyan62313912016-02-10 10:08:35 +00001764 applyMipsPcReloc<E, 19, 2>(Loc, Type, P, S);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001765 break;
1766 case R_MIPS_PC21_S2:
Simon Atanasyan62313912016-02-10 10:08:35 +00001767 applyMipsPcReloc<E, 21, 2>(Loc, Type, P, S);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001768 break;
1769 case R_MIPS_PC26_S2:
Simon Atanasyan62313912016-02-10 10:08:35 +00001770 applyMipsPcReloc<E, 26, 2>(Loc, Type, P, S);
Simon Atanasyane364e2e2016-02-04 12:31:39 +00001771 break;
1772 case R_MIPS_PC32:
Simon Atanasyan62313912016-02-10 10:08:35 +00001773 applyMipsPcReloc<E, 32, 0>(Loc, Type, P, S);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001774 break;
Simon Atanasyan3b377852016-03-04 10:55:20 +00001775 case R_MIPS_PCHI16:
Rafael Espindola163974d2016-03-29 23:05:59 +00001776 writeMipsHi16<E>(Loc, S - P);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001777 break;
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00001778 case R_MIPS_PCLO16:
Simon Atanasyan4e18a312016-03-04 10:55:29 +00001779 writeMipsLo16<E>(Loc, S + readSignedLo16<E>(Loc) - P);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001780 break;
Simon Atanasyana8e9cb32016-03-17 12:36:08 +00001781 case R_MIPS_TLS_DTPREL_HI16:
1782 writeMipsHi16<E>(Loc, S - DTPOffset + readSignedLo16<E>(Loc));
1783 break;
1784 case R_MIPS_TLS_DTPREL_LO16:
1785 writeMipsLo16<E>(Loc, S - DTPOffset + readSignedLo16<E>(Loc));
1786 break;
1787 case R_MIPS_TLS_TPREL_HI16:
1788 writeMipsHi16<E>(Loc, S - TPOffset + readSignedLo16<E>(Loc));
1789 break;
1790 case R_MIPS_TLS_TPREL_LO16:
1791 writeMipsLo16<E>(Loc, S - TPOffset + readSignedLo16<E>(Loc));
1792 break;
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00001793 default:
George Rimar57610422016-03-11 14:43:02 +00001794 fatal("unrecognized reloc " + Twine(Type));
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00001795 }
1796}
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00001797
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001798template <class ELFT>
Rui Ueyamac516ae12016-01-29 02:33:45 +00001799bool MipsTargetInfo<ELFT>::isHintRel(uint32_t Type) const {
Simon Atanasyan682aeea2016-01-14 20:42:09 +00001800 return Type == R_MIPS_JALR;
1801}
1802
1803template <class ELFT>
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001804bool MipsTargetInfo<ELFT>::isRelRelative(uint32_t Type) const {
1805 switch (Type) {
1806 default:
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001807 return true;
Simon Atanasyan49bc69b2016-02-25 05:03:52 +00001808 case R_MIPS_26:
1809 case R_MIPS_32:
1810 case R_MIPS_64:
1811 case R_MIPS_HI16:
Simon Atanasyana8e9cb32016-03-17 12:36:08 +00001812 case R_MIPS_TLS_DTPREL_HI16:
1813 case R_MIPS_TLS_DTPREL_LO16:
1814 case R_MIPS_TLS_TPREL_HI16:
1815 case R_MIPS_TLS_TPREL_LO16:
Simon Atanasyan49bc69b2016-02-25 05:03:52 +00001816 return false;
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00001817 }
1818}
1819
Rui Ueyama3f11c8c2015-12-24 08:41:12 +00001820// _gp is a MIPS-specific ABI-defined symbol which points to
1821// a location that is relative to GOT. This function returns
1822// the value for the symbol.
Rui Ueyama9328b2c2016-03-14 23:16:09 +00001823template <class ELFT> typename ELFT::uint getMipsGpAddr() {
Rui Ueyama3f11c8c2015-12-24 08:41:12 +00001824 unsigned GPOffset = 0x7ff0;
1825 if (uint64_t V = Out<ELFT>::Got->getVA())
1826 return V + GPOffset;
1827 return 0;
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00001828}
1829
1830template uint32_t getMipsGpAddr<ELF32LE>();
1831template uint32_t getMipsGpAddr<ELF32BE>();
1832template uint64_t getMipsGpAddr<ELF64LE>();
1833template uint64_t getMipsGpAddr<ELF64BE>();
Rafael Espindolaf7ae3592016-02-23 18:53:29 +00001834
1835template bool TargetInfo::needsCopyRel<ELF32LE>(uint32_t,
1836 const SymbolBody &) const;
1837template bool TargetInfo::needsCopyRel<ELF32BE>(uint32_t,
1838 const SymbolBody &) const;
1839template bool TargetInfo::needsCopyRel<ELF64LE>(uint32_t,
1840 const SymbolBody &) const;
1841template bool TargetInfo::needsCopyRel<ELF64BE>(uint32_t,
1842 const SymbolBody &) const;
Rafael Espindola01205f72015-09-22 18:19:46 +00001843}
1844}