blob: 4cc8a43b708b084c8f9319663ad99782446efb5d [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//
Nico Weberd08aa5c2016-08-24 16:36:41 +000013// Refer the ELF spec for the single letter variables, S, A or P, used
Rafael Espindola22ef9562016-04-13 01:40:19 +000014// in this file.
Rui Ueyama34f29242015-10-13 19:51:57 +000015//
Rui Ueyama55274e32016-04-23 01:10:15 +000016// Some functions defined in this file has "relaxTls" as part of their names.
17// They do peephole optimization for TLS variables by rewriting instructions.
18// They are not part of the ABI but optional optimization, so you can skip
19// them if you are not interested in how TLS variables are optimized.
20// See the following paper for the details.
21//
22// Ulrich Drepper, ELF Handling For Thread-Local Storage
23// http://www.akkadia.org/drepper/tls.pdf
24//
Rui Ueyama34f29242015-10-13 19:51:57 +000025//===----------------------------------------------------------------------===//
Rafael Espindola01205f72015-09-22 18:19:46 +000026
27#include "Target.h"
Rafael Espindolac4010882015-09-22 20:54:08 +000028#include "Error.h"
Simon Atanasyan13f6da12016-03-31 21:26:23 +000029#include "InputFiles.h"
Rui Ueyama9381eb12016-12-18 14:06:06 +000030#include "Memory.h"
Rui Ueyamaaf21d922015-10-08 20:06:07 +000031#include "OutputSections.h"
Rui Ueyama6e3595d2016-12-21 00:05:39 +000032#include "SymbolTable.h"
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +000033#include "Symbols.h"
Eugene Leviant41ca3272016-11-10 09:48:29 +000034#include "SyntheticSections.h"
Peter Smithfb05cd92016-07-08 16:10:27 +000035#include "Thunks.h"
Simon Atanasyan9e0297b2016-11-05 22:58:01 +000036#include "Writer.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000037#include "llvm/ADT/ArrayRef.h"
Rafael Espindolac4010882015-09-22 20:54:08 +000038#include "llvm/Object/ELF.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000039#include "llvm/Support/ELF.h"
Rui Ueyama520d9162016-12-08 18:31:13 +000040#include "llvm/Support/Endian.h"
Rafael Espindola01205f72015-09-22 18:19:46 +000041
42using namespace llvm;
Rafael Espindolac4010882015-09-22 20:54:08 +000043using namespace llvm::object;
Rafael Espindola0872ea32015-09-24 14:16:02 +000044using namespace llvm::support::endian;
Rafael Espindola01205f72015-09-22 18:19:46 +000045using namespace llvm::ELF;
46
Rui Ueyamace039262017-01-06 10:04:08 +000047std::string lld::toString(uint32_t Type) {
Rui Ueyama965bed82017-01-25 21:27:59 +000048 StringRef S = getELFRelocationTypeName(elf::Config->EMachine, Type);
49 if (S == "Unknown")
50 return ("Unknown (" + Twine(Type) + ")").str();
51 return S;
Rui Ueyamace039262017-01-06 10:04:08 +000052}
53
Rafael Espindola01205f72015-09-22 18:19:46 +000054namespace lld {
Rafael Espindolae0df00b2016-02-28 00:25:54 +000055namespace elf {
Rafael Espindola01205f72015-09-22 18:19:46 +000056
Rui Ueyamac1c282a2016-02-11 21:18:01 +000057TargetInfo *Target;
Rafael Espindola01205f72015-09-22 18:19:46 +000058
Rafael Espindolae7e57b22015-11-09 21:43:00 +000059static void or32le(uint8_t *P, int32_t V) { write32le(P, read32le(P) | V); }
Rui Ueyama7fd5c84f2016-11-01 18:30:26 +000060static void or32be(uint8_t *P, int32_t V) { write32be(P, read32be(P) | V); }
Rui Ueyamaefc23de2015-10-14 21:30:32 +000061
Rui Ueyama6e3595d2016-12-21 00:05:39 +000062template <class ELFT> static std::string getErrorLoc(uint8_t *Loc) {
63 for (InputSectionData *D : Symtab<ELFT>::X->Sections) {
64 auto *IS = dyn_cast_or_null<InputSection<ELFT>>(D);
65 if (!IS || !IS->OutSec)
66 continue;
67
68 uint8_t *ISLoc = cast<OutputSection<ELFT>>(IS->OutSec)->Loc + IS->OutSecOff;
69 if (ISLoc <= Loc && Loc < ISLoc + IS->getSize())
70 return IS->getLocation(Loc - ISLoc) + ": ";
71 }
72 return "";
73}
74
75static std::string getErrorLocation(uint8_t *Loc) {
76 switch (Config->EKind) {
77 case ELF32LEKind:
78 return getErrorLoc<ELF32LE>(Loc);
79 case ELF32BEKind:
80 return getErrorLoc<ELF32BE>(Loc);
81 case ELF64LEKind:
82 return getErrorLoc<ELF64LE>(Loc);
83 case ELF64BEKind:
84 return getErrorLoc<ELF64BE>(Loc);
85 default:
86 llvm_unreachable("unknown ELF type");
87 }
88}
89
Eugene Leviant84569e62016-11-29 08:05:44 +000090template <unsigned N>
91static void checkInt(uint8_t *Loc, int64_t V, uint32_t Type) {
Rui Ueyamabebf4892016-06-16 23:28:03 +000092 if (!isInt<N>(V))
Eugene Leviant84569e62016-11-29 08:05:44 +000093 error(getErrorLocation(Loc) + "relocation " + toString(Type) +
94 " out of range");
Igor Kudrin9b7e7db2015-11-26 09:49:44 +000095}
96
Eugene Leviant84569e62016-11-29 08:05:44 +000097template <unsigned N>
98static void checkUInt(uint8_t *Loc, uint64_t V, uint32_t Type) {
Rui Ueyamabebf4892016-06-16 23:28:03 +000099 if (!isUInt<N>(V))
Eugene Leviant84569e62016-11-29 08:05:44 +0000100 error(getErrorLocation(Loc) + "relocation " + toString(Type) +
101 " out of range");
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000102}
103
Eugene Leviant84569e62016-11-29 08:05:44 +0000104template <unsigned N>
105static void checkIntUInt(uint8_t *Loc, uint64_t V, uint32_t Type) {
Rui Ueyamabebf4892016-06-16 23:28:03 +0000106 if (!isInt<N>(V) && !isUInt<N>(V))
Eugene Leviant84569e62016-11-29 08:05:44 +0000107 error(getErrorLocation(Loc) + "relocation " + toString(Type) +
108 " out of range");
Igor Kudrinfea8ed52015-11-26 10:05:24 +0000109}
110
Eugene Leviant84569e62016-11-29 08:05:44 +0000111template <unsigned N>
112static void checkAlignment(uint8_t *Loc, uint64_t V, uint32_t Type) {
Rui Ueyamabebf4892016-06-16 23:28:03 +0000113 if ((V & (N - 1)) != 0)
Eugene Leviant84569e62016-11-29 08:05:44 +0000114 error(getErrorLocation(Loc) + "improper alignment for relocation " +
115 toString(Type));
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000116}
117
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000118namespace {
119class X86TargetInfo final : public TargetInfo {
120public:
121 X86TargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000122 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Rui Ueyama640724c2017-02-06 22:32:45 +0000123 int64_t getImplicitAddend(const uint8_t *Buf, uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000124 void writeGotPltHeader(uint8_t *Buf) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000125 uint32_t getDynRel(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000126 bool isTlsLocalDynamicRel(uint32_t Type) const override;
127 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
128 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000129 void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Peter Smith4b360292016-12-09 09:59:54 +0000130 void writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000131 void writePltHeader(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000132 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
133 int32_t Index, unsigned RelOff) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000134 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000135
Rafael Espindola69f54022016-06-04 23:22:34 +0000136 RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
137 RelExpr Expr) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000138 void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
139 void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
140 void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
141 void relaxTlsLdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000142};
143
Rui Ueyama46626e12016-07-12 23:28:31 +0000144template <class ELFT> class X86_64TargetInfo final : public TargetInfo {
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000145public:
146 X86_64TargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000147 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Eugene Leviantab024a32016-11-25 08:56:36 +0000148 bool isPicRel(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000149 bool isTlsLocalDynamicRel(uint32_t Type) const override;
150 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
151 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac516ae12016-01-29 02:33:45 +0000152 void writeGotPltHeader(uint8_t *Buf) const override;
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000153 void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000154 void writePltHeader(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000155 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
156 int32_t Index, unsigned RelOff) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000157 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
George Rimar6713cf82015-11-25 21:46:05 +0000158
Rafael Espindola5c66b822016-06-04 22:58:54 +0000159 RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
160 RelExpr Expr) const override;
George Rimar5c33b912016-05-25 14:31:37 +0000161 void relaxGot(uint8_t *Loc, uint64_t Val) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000162 void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
163 void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
164 void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
165 void relaxTlsLdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
George Rimarb7204302016-06-02 09:22:00 +0000166
167private:
168 void relaxGotNoPic(uint8_t *Loc, uint64_t Val, uint8_t Op,
169 uint8_t ModRm) const;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000170};
171
Davide Italiano8c3444362016-01-11 19:45:33 +0000172class PPCTargetInfo final : public TargetInfo {
173public:
174 PPCTargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000175 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000176 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Davide Italiano8c3444362016-01-11 19:45:33 +0000177};
178
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000179class PPC64TargetInfo final : public TargetInfo {
180public:
181 PPC64TargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000182 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000183 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
184 int32_t Index, unsigned RelOff) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000185 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000186};
187
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000188class AArch64TargetInfo final : public TargetInfo {
189public:
190 AArch64TargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000191 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Eugene Leviantab024a32016-11-25 08:56:36 +0000192 bool isPicRel(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000193 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000194 void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000195 void writePltHeader(uint8_t *Buf) const override;
Rui Ueyama9398f862016-01-29 04:15:02 +0000196 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
197 int32_t Index, unsigned RelOff) const override;
Rafael Espindolab8ff59a2016-04-28 14:34:39 +0000198 bool usesOnlyLowPageBits(uint32_t Type) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000199 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindolae1979ae2016-06-04 23:33:31 +0000200 RelExpr adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
201 RelExpr Expr) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000202 void relaxTlsGdToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindolae1979ae2016-06-04 23:33:31 +0000203 void relaxTlsGdToIe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000204 void relaxTlsIeToLe(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000205};
206
Tom Stellard80efb162016-01-07 03:59:08 +0000207class AMDGPUTargetInfo final : public TargetInfo {
208public:
Tom Stellard391e3a82016-07-04 19:19:07 +0000209 AMDGPUTargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000210 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
211 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Tom Stellard80efb162016-01-07 03:59:08 +0000212};
213
Peter Smith8646ced2016-06-07 09:31:52 +0000214class ARMTargetInfo final : public TargetInfo {
215public:
216 ARMTargetInfo();
217 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Eugene Leviantab024a32016-11-25 08:56:36 +0000218 bool isPicRel(uint32_t Type) const override;
Peter Smith8646ced2016-06-07 09:31:52 +0000219 uint32_t getDynRel(uint32_t Type) const override;
Rui Ueyama640724c2017-02-06 22:32:45 +0000220 int64_t getImplicitAddend(const uint8_t *Buf, uint32_t Type) const override;
Peter Smith441cf5d2016-07-20 14:56:26 +0000221 bool isTlsLocalDynamicRel(uint32_t Type) const override;
Peter Smith9d450252016-07-20 08:52:27 +0000222 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
223 bool isTlsInitialExecRel(uint32_t Type) const override;
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000224 void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Peter Smith4b360292016-12-09 09:59:54 +0000225 void writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000226 void writePltHeader(uint8_t *Buf) const override;
Peter Smith8646ced2016-06-07 09:31:52 +0000227 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
228 int32_t Index, unsigned RelOff) const override;
Peter Smith96943762017-01-25 10:31:16 +0000229 void addPltSymbols(InputSectionData *IS, uint64_t Off) const override;
230 void addPltHeaderSymbols(InputSectionData *ISD) const override;
Peter Smith3a52eb02017-02-01 10:26:03 +0000231 bool needsThunk(RelExpr Expr, uint32_t RelocType, const InputFile *File,
232 const SymbolBody &S) const override;
Peter Smith8646ced2016-06-07 09:31:52 +0000233 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
234};
235
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000236template <class ELFT> class MipsTargetInfo final : public TargetInfo {
237public:
238 MipsTargetInfo();
Rafael Espindola22ef9562016-04-13 01:40:19 +0000239 RelExpr getRelExpr(uint32_t Type, const SymbolBody &S) const override;
Rui Ueyama640724c2017-02-06 22:32:45 +0000240 int64_t getImplicitAddend(const uint8_t *Buf, uint32_t Type) const override;
Eugene Leviantab024a32016-11-25 08:56:36 +0000241 bool isPicRel(uint32_t Type) const override;
George Rimar98b060d2016-03-06 06:01:07 +0000242 uint32_t getDynRel(uint32_t Type) const override;
Simon Atanasyan002e2442016-06-23 15:26:31 +0000243 bool isTlsLocalDynamicRel(uint32_t Type) const override;
244 bool isTlsGlobalDynamicRel(uint32_t Type) const override;
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000245 void writeGotPlt(uint8_t *Buf, const SymbolBody &S) const override;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000246 void writePltHeader(uint8_t *Buf) const override;
Simon Atanasyan2287dc32016-02-10 19:57:19 +0000247 void writePlt(uint8_t *Buf, uint64_t GotEntryAddr, uint64_t PltEntryAddr,
248 int32_t Index, unsigned RelOff) const override;
Peter Smith3a52eb02017-02-01 10:26:03 +0000249 bool needsThunk(RelExpr Expr, uint32_t RelocType, const InputFile *File,
250 const SymbolBody &S) const override;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000251 void relocateOne(uint8_t *Loc, uint32_t Type, uint64_t Val) const override;
Rafael Espindolab8ff59a2016-04-28 14:34:39 +0000252 bool usesOnlyLowPageBits(uint32_t Type) const override;
Rui Ueyamaefc23de2015-10-14 21:30:32 +0000253};
254} // anonymous namespace
255
Rui Ueyama91004392015-10-13 16:08:15 +0000256TargetInfo *createTarget() {
257 switch (Config->EMachine) {
258 case EM_386:
Rui Ueyama6c509902016-08-03 20:15:56 +0000259 case EM_IAMCU:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000260 return make<X86TargetInfo>();
Rui Ueyama91004392015-10-13 16:08:15 +0000261 case EM_AARCH64:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000262 return make<AArch64TargetInfo>();
Tom Stellard80efb162016-01-07 03:59:08 +0000263 case EM_AMDGPU:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000264 return make<AMDGPUTargetInfo>();
Peter Smith8646ced2016-06-07 09:31:52 +0000265 case EM_ARM:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000266 return make<ARMTargetInfo>();
Rui Ueyama91004392015-10-13 16:08:15 +0000267 case EM_MIPS:
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000268 switch (Config->EKind) {
269 case ELF32LEKind:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000270 return make<MipsTargetInfo<ELF32LE>>();
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000271 case ELF32BEKind:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000272 return make<MipsTargetInfo<ELF32BE>>();
Simon Atanasyanae77ab72016-04-29 10:39:17 +0000273 case ELF64LEKind:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000274 return make<MipsTargetInfo<ELF64LE>>();
Simon Atanasyanae77ab72016-04-29 10:39:17 +0000275 case ELF64BEKind:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000276 return make<MipsTargetInfo<ELF64BE>>();
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000277 default:
George Rimar777f9632016-03-12 08:31:34 +0000278 fatal("unsupported MIPS target");
Simon Atanasyan9c2d7882015-10-14 14:24:46 +0000279 }
Davide Italiano8c3444362016-01-11 19:45:33 +0000280 case EM_PPC:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000281 return make<PPCTargetInfo>();
Rui Ueyama91004392015-10-13 16:08:15 +0000282 case EM_PPC64:
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000283 return make<PPC64TargetInfo>();
Rui Ueyama91004392015-10-13 16:08:15 +0000284 case EM_X86_64:
Rui Ueyama46626e12016-07-12 23:28:31 +0000285 if (Config->EKind == ELF32LEKind)
Rui Ueyama6dbf7ff2016-12-08 17:44:39 +0000286 return make<X86_64TargetInfo<ELF32LE>>();
287 return make<X86_64TargetInfo<ELF64LE>>();
Rui Ueyama91004392015-10-13 16:08:15 +0000288 }
George Rimar777f9632016-03-12 08:31:34 +0000289 fatal("unknown target machine");
Rui Ueyama91004392015-10-13 16:08:15 +0000290}
291
Rafael Espindola01205f72015-09-22 18:19:46 +0000292TargetInfo::~TargetInfo() {}
293
Rui Ueyama640724c2017-02-06 22:32:45 +0000294int64_t TargetInfo::getImplicitAddend(const uint8_t *Buf, uint32_t Type) const {
Rafael Espindolada99df32016-03-30 12:40:38 +0000295 return 0;
296}
297
Rafael Espindolab8ff59a2016-04-28 14:34:39 +0000298bool TargetInfo::usesOnlyLowPageBits(uint32_t Type) const { return false; }
George Rimar48651482015-12-11 08:59:37 +0000299
Peter Smith3a52eb02017-02-01 10:26:03 +0000300bool TargetInfo::needsThunk(RelExpr Expr, uint32_t RelocType,
301 const InputFile *File, const SymbolBody &S) const {
302 return false;
Simon Atanasyan13f6da12016-03-31 21:26:23 +0000303}
304
George Rimar98b060d2016-03-06 06:01:07 +0000305bool TargetInfo::isTlsInitialExecRel(uint32_t Type) const { return false; }
Rafael Espindolad405f472016-03-04 21:37:09 +0000306
George Rimar98b060d2016-03-06 06:01:07 +0000307bool TargetInfo::isTlsLocalDynamicRel(uint32_t Type) const { return false; }
Rafael Espindolad405f472016-03-04 21:37:09 +0000308
George Rimara4c7e742016-10-20 08:36:42 +0000309bool TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const { return false; }
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000310
Peter Smith4b360292016-12-09 09:59:54 +0000311void TargetInfo::writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const {
312 writeGotPlt(Buf, S);
313}
314
Rafael Espindola5c66b822016-06-04 22:58:54 +0000315RelExpr TargetInfo::adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
316 RelExpr Expr) const {
George Rimarf10c8292016-06-01 16:45:30 +0000317 return Expr;
George Rimar5c33b912016-05-25 14:31:37 +0000318}
319
320void TargetInfo::relaxGot(uint8_t *Loc, uint64_t Val) const {
321 llvm_unreachable("Should not have claimed to be relaxable");
322}
323
Rafael Espindola22ef9562016-04-13 01:40:19 +0000324void TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint32_t Type,
325 uint64_t Val) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000326 llvm_unreachable("Should not have claimed to be relaxable");
327}
328
Rafael Espindola22ef9562016-04-13 01:40:19 +0000329void TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint32_t Type,
330 uint64_t Val) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000331 llvm_unreachable("Should not have claimed to be relaxable");
332}
333
Rafael Espindola22ef9562016-04-13 01:40:19 +0000334void TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint32_t Type,
335 uint64_t Val) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000336 llvm_unreachable("Should not have claimed to be relaxable");
337}
338
Rafael Espindola22ef9562016-04-13 01:40:19 +0000339void TargetInfo::relaxTlsLdToLe(uint8_t *Loc, uint32_t Type,
340 uint64_t Val) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000341 llvm_unreachable("Should not have claimed to be relaxable");
George Rimar6713cf82015-11-25 21:46:05 +0000342}
George Rimar77d1cb12015-11-24 09:00:06 +0000343
Rafael Espindola7f074422015-09-22 21:35:51 +0000344X86TargetInfo::X86TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000345 CopyRel = R_386_COPY;
346 GotRel = R_386_GLOB_DAT;
347 PltRel = R_386_JUMP_SLOT;
348 IRelativeRel = R_386_IRELATIVE;
349 RelativeRel = R_386_RELATIVE;
350 TlsGotRel = R_386_TLS_TPOFF;
Rui Ueyama724d6252016-01-29 01:49:32 +0000351 TlsModuleIndexRel = R_386_TLS_DTPMOD32;
352 TlsOffsetRel = R_386_TLS_DTPOFF32;
Rui Ueyama803b1202016-07-13 18:55:14 +0000353 GotEntrySize = 4;
354 GotPltEntrySize = 4;
George Rimar77b77792015-11-25 22:15:01 +0000355 PltEntrySize = 16;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000356 PltHeaderSize = 16;
Rafael Espindolaf807d472016-06-04 23:04:39 +0000357 TlsGdRelaxSkip = 2;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000358}
359
360RelExpr X86TargetInfo::getRelExpr(uint32_t Type, const SymbolBody &S) const {
361 switch (Type) {
George Rimarf242ffa2017-01-25 13:36:49 +0000362 case R_386_8:
George Rimar57b0e6a2017-01-11 08:29:52 +0000363 case R_386_16:
364 case R_386_32:
365 case R_386_TLS_LDO_32:
Rafael Espindola22ef9562016-04-13 01:40:19 +0000366 return R_ABS;
Rafael Espindoladf172772016-04-18 01:29:15 +0000367 case R_386_TLS_GD:
368 return R_TLSGD;
Rafael Espindolac4d56972016-04-18 00:28:57 +0000369 case R_386_TLS_LDM:
370 return R_TLSLD;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000371 case R_386_PLT32:
Rafael Espindolab312a742016-04-21 17:30:24 +0000372 return R_PLT_PC;
George Rimarf242ffa2017-01-25 13:36:49 +0000373 case R_386_PC8:
George Rimar1b3d34a2016-12-03 07:30:30 +0000374 case R_386_PC16:
Rafael Espindola22ef9562016-04-13 01:40:19 +0000375 case R_386_PC32:
Rafael Espindola22ef9562016-04-13 01:40:19 +0000376 return R_PC;
Rafael Espindola3f5d6342016-04-18 12:07:13 +0000377 case R_386_GOTPC:
Rafael Espindola79202c32016-08-31 23:24:11 +0000378 return R_GOTONLY_PC_FROM_END;
Rafael Espindola5628ee72016-04-15 19:14:18 +0000379 case R_386_TLS_IE:
380 return R_GOT;
Rafael Espindola3f5d6342016-04-18 12:07:13 +0000381 case R_386_GOT32:
Rafael Espindolad03e6592016-07-06 21:41:39 +0000382 case R_386_GOT32X:
Rafael Espindola3f5d6342016-04-18 12:07:13 +0000383 case R_386_TLS_GOTIE:
384 return R_GOT_FROM_END;
385 case R_386_GOTOFF:
Rafael Espindola79202c32016-08-31 23:24:11 +0000386 return R_GOTREL_FROM_END;
Rafael Espindola3f5d6342016-04-18 12:07:13 +0000387 case R_386_TLS_LE:
388 return R_TLS;
389 case R_386_TLS_LE_32:
390 return R_NEG_TLS;
George Rimar7fa220f2017-01-11 14:20:13 +0000391 case R_386_NONE:
392 return R_HINT;
George Rimar57b0e6a2017-01-11 08:29:52 +0000393 default:
George Rimar7d9eaf72017-01-31 15:37:51 +0000394 error(toString(S.File) + ": unknown relocation type: " + toString(Type));
George Rimar57b0e6a2017-01-11 08:29:52 +0000395 return R_HINT;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000396 }
George Rimar77b77792015-11-25 22:15:01 +0000397}
398
Rafael Espindola69f54022016-06-04 23:22:34 +0000399RelExpr X86TargetInfo::adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
400 RelExpr Expr) const {
401 switch (Expr) {
402 default:
403 return Expr;
404 case R_RELAX_TLS_GD_TO_IE:
405 return R_RELAX_TLS_GD_TO_IE_END;
406 case R_RELAX_TLS_GD_TO_LE:
407 return R_RELAX_TLS_GD_TO_LE_NEG;
408 }
409}
410
Rui Ueyamac516ae12016-01-29 02:33:45 +0000411void X86TargetInfo::writeGotPltHeader(uint8_t *Buf) const {
Eugene Leviant6380ce22016-11-15 12:26:55 +0000412 write32le(Buf, In<ELF32LE>::Dynamic->getVA());
George Rimar77b77792015-11-25 22:15:01 +0000413}
414
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000415void X86TargetInfo::writeGotPlt(uint8_t *Buf, const SymbolBody &S) const {
Rui Ueyamacf375932016-01-29 23:58:03 +0000416 // Entries in .got.plt initially points back to the corresponding
417 // PLT entries with a fixed offset to skip the first instruction.
Rui Ueyamac9fee5f2016-06-16 16:14:50 +0000418 write32le(Buf, S.getPltVA<ELF32LE>() + 6);
Rafael Espindola7f074422015-09-22 21:35:51 +0000419}
Rafael Espindola01205f72015-09-22 18:19:46 +0000420
Peter Smith4b360292016-12-09 09:59:54 +0000421void X86TargetInfo::writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const {
422 // An x86 entry is the address of the ifunc resolver function.
423 write32le(Buf, S.getVA<ELF32LE>());
424}
425
George Rimar98b060d2016-03-06 06:01:07 +0000426uint32_t X86TargetInfo::getDynRel(uint32_t Type) const {
George Rimard23970f2015-11-25 20:41:53 +0000427 if (Type == R_386_TLS_LE)
428 return R_386_TLS_TPOFF;
429 if (Type == R_386_TLS_LE_32)
430 return R_386_TLS_TPOFF32;
431 return Type;
432}
433
George Rimar98b060d2016-03-06 06:01:07 +0000434bool X86TargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000435 return Type == R_386_TLS_GD;
436}
437
George Rimar98b060d2016-03-06 06:01:07 +0000438bool X86TargetInfo::isTlsLocalDynamicRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +0000439 return Type == R_386_TLS_LDO_32 || 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 Ueyama4a90f572016-06-16 16:28:50 +0000446void X86TargetInfo::writePltHeader(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));
Eugene Leviant41ca3272016-11-10 09:48:29 +0000465 uint32_t Got = In<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;
Eugene Leviant41ca3272016-11-10 09:48:29 +0000482 uint32_t Got = In<ELF32LE>::GotPlt->getVA();
Rui Ueyama9398f862016-01-29 04:15:02 +0000483 write32le(Buf + 2, Config->Shared ? GotEntryAddr - Got : GotEntryAddr);
George Rimar77b77792015-11-25 22:15:01 +0000484 write32le(Buf + 7, RelOff);
Rui Ueyama4a90f572016-06-16 16:28:50 +0000485 write32le(Buf + 12, -Index * PltEntrySize - PltHeaderSize - 16);
Rafael Espindola01205f72015-09-22 18:19:46 +0000486}
487
Rui Ueyama640724c2017-02-06 22:32:45 +0000488int64_t X86TargetInfo::getImplicitAddend(const uint8_t *Buf,
489 uint32_t Type) const {
Rafael Espindolada99df32016-03-30 12:40:38 +0000490 switch (Type) {
491 default:
492 return 0;
George Rimarf242ffa2017-01-25 13:36:49 +0000493 case R_386_8:
494 case R_386_PC8:
495 return *Buf;
George Rimar1b3d34a2016-12-03 07:30:30 +0000496 case R_386_16:
George Rimarc49fd8c2016-12-08 13:50:28 +0000497 case R_386_PC16:
498 return read16le(Buf);
Rafael Espindolada99df32016-03-30 12:40:38 +0000499 case R_386_32:
500 case R_386_GOT32:
Rafael Espindola9639ec12016-07-06 21:48:50 +0000501 case R_386_GOT32X:
Rafael Espindolada99df32016-03-30 12:40:38 +0000502 case R_386_GOTOFF:
503 case R_386_GOTPC:
504 case R_386_PC32:
505 case R_386_PLT32:
Ed Schouten21483f52016-08-20 10:54:51 +0000506 case R_386_TLS_LE:
Rafael Espindolada99df32016-03-30 12:40:38 +0000507 return read32le(Buf);
508 }
509}
510
Rafael Espindola22ef9562016-04-13 01:40:19 +0000511void X86TargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
512 uint64_t Val) const {
Rui Ueyama6ec3b462017-01-25 21:05:17 +0000513 // R_386_{PC,}{8,16} are not part of the i386 psABI, but they are
514 // being used for some 16-bit programs such as boot loaders, so
515 // we want to support them.
Rui Ueyama59a7cee2017-01-31 20:28:32 +0000516 switch (Type) {
517 case R_386_8:
518 case R_386_PC8:
519 checkInt<8>(Loc, Val, Type);
Rui Ueyama6ec3b462017-01-25 21:05:17 +0000520 *Loc = Val;
Rui Ueyama59a7cee2017-01-31 20:28:32 +0000521 break;
522 case R_386_16:
523 case R_386_PC16:
524 checkInt<16>(Loc, Val, Type);
George Rimar1b3d34a2016-12-03 07:30:30 +0000525 write16le(Loc, Val);
Rui Ueyama59a7cee2017-01-31 20:28:32 +0000526 break;
527 default:
528 checkInt<32>(Loc, Val, Type);
Rui Ueyama6ec3b462017-01-25 21:05:17 +0000529 write32le(Loc, Val);
Rui Ueyama59a7cee2017-01-31 20:28:32 +0000530 }
Rafael Espindolac4010882015-09-22 20:54:08 +0000531}
532
Rafael Espindola22ef9562016-04-13 01:40:19 +0000533void X86TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint32_t Type,
534 uint64_t Val) const {
Rui Ueyama55274e32016-04-23 01:10:15 +0000535 // Convert
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000536 // leal x@tlsgd(, %ebx, 1),
537 // call __tls_get_addr@plt
Rui Ueyama55274e32016-04-23 01:10:15 +0000538 // to
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000539 // movl %gs:0,%eax
Rui Ueyama55274e32016-04-23 01:10:15 +0000540 // subl $x@ntpoff,%eax
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000541 const uint8_t Inst[] = {
542 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0, %eax
543 0x81, 0xe8, 0x00, 0x00, 0x00, 0x00 // subl 0(%ebx), %eax
544 };
545 memcpy(Loc - 3, Inst, sizeof(Inst));
Rafael Espindolaebed1fe2016-05-20 21:23:52 +0000546 relocateOne(Loc + 5, R_386_32, Val);
George Rimar2558e122015-12-09 09:55:54 +0000547}
548
Rafael Espindola22ef9562016-04-13 01:40:19 +0000549void X86TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint32_t Type,
550 uint64_t Val) const {
Rui Ueyama55274e32016-04-23 01:10:15 +0000551 // Convert
552 // leal x@tlsgd(, %ebx, 1),
553 // call __tls_get_addr@plt
554 // to
555 // movl %gs:0, %eax
556 // addl x@gotntpoff(%ebx), %eax
George Rimar2558e122015-12-09 09:55:54 +0000557 const uint8_t Inst[] = {
558 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0, %eax
559 0x03, 0x83, 0x00, 0x00, 0x00, 0x00 // addl 0(%ebx), %eax
560 };
561 memcpy(Loc - 3, Inst, sizeof(Inst));
Rafael Espindola74f3dbe2016-05-20 20:09:35 +0000562 relocateOne(Loc + 5, R_386_32, Val);
George Rimar2558e122015-12-09 09:55:54 +0000563}
564
George Rimar6f17e092015-12-17 09:32:21 +0000565// In some conditions, relocations can be optimized to avoid using GOT.
566// This function does that for Initial Exec to Local Exec case.
Rafael Espindola22ef9562016-04-13 01:40:19 +0000567void X86TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint32_t Type,
568 uint64_t Val) const {
George Rimar6f17e092015-12-17 09:32:21 +0000569 // Ulrich's document section 6.2 says that @gotntpoff can
570 // be used with MOVL or ADDL instructions.
571 // @indntpoff is similar to @gotntpoff, but for use in
572 // position dependent code.
George Rimar2558e122015-12-09 09:55:54 +0000573 uint8_t Reg = (Loc[-1] >> 3) & 7;
Rui Ueyamab319ae22016-06-21 05:44:14 +0000574
George Rimar6f17e092015-12-17 09:32:21 +0000575 if (Type == R_386_TLS_IE) {
Rui Ueyamab319ae22016-06-21 05:44:14 +0000576 if (Loc[-1] == 0xa1) {
577 // "movl foo@indntpoff,%eax" -> "movl $foo,%eax"
578 // This case is different from the generic case below because
579 // this is a 5 byte instruction while below is 6 bytes.
580 Loc[-1] = 0xb8;
581 } else if (Loc[-2] == 0x8b) {
582 // "movl foo@indntpoff,%reg" -> "movl $foo,%reg"
583 Loc[-2] = 0xc7;
584 Loc[-1] = 0xc0 | Reg;
George Rimar6f17e092015-12-17 09:32:21 +0000585 } else {
Rui Ueyamab319ae22016-06-21 05:44:14 +0000586 // "addl foo@indntpoff,%reg" -> "addl $foo,%reg"
587 Loc[-2] = 0x81;
588 Loc[-1] = 0xc0 | Reg;
George Rimar6f17e092015-12-17 09:32:21 +0000589 }
590 } else {
Rui Ueyamab319ae22016-06-21 05:44:14 +0000591 assert(Type == R_386_TLS_GOTIE);
592 if (Loc[-2] == 0x8b) {
593 // "movl foo@gottpoff(%rip),%reg" -> "movl $foo,%reg"
594 Loc[-2] = 0xc7;
595 Loc[-1] = 0xc0 | Reg;
596 } else {
597 // "addl foo@gotntpoff(%rip),%reg" -> "leal foo(%reg),%reg"
598 Loc[-2] = 0x8d;
599 Loc[-1] = 0x80 | (Reg << 3) | Reg;
600 }
George Rimar6f17e092015-12-17 09:32:21 +0000601 }
Rafael Espindola8818ca62016-05-20 17:41:09 +0000602 relocateOne(Loc, R_386_TLS_LE, Val);
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000603}
604
Rafael Espindola22ef9562016-04-13 01:40:19 +0000605void X86TargetInfo::relaxTlsLdToLe(uint8_t *Loc, uint32_t Type,
606 uint64_t Val) const {
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000607 if (Type == R_386_TLS_LDO_32) {
Rafael Espindola8818ca62016-05-20 17:41:09 +0000608 relocateOne(Loc, R_386_TLS_LE, Val);
Rafael Espindola22ef9562016-04-13 01:40:19 +0000609 return;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000610 }
611
Rui Ueyama55274e32016-04-23 01:10:15 +0000612 // Convert
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000613 // leal foo(%reg),%eax
614 // call ___tls_get_addr
Rui Ueyama55274e32016-04-23 01:10:15 +0000615 // to
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000616 // movl %gs:0,%eax
617 // nop
618 // leal 0(%esi,1),%esi
619 const uint8_t Inst[] = {
620 0x65, 0xa1, 0x00, 0x00, 0x00, 0x00, // movl %gs:0,%eax
621 0x90, // nop
622 0x8d, 0x74, 0x26, 0x00 // leal 0(%esi,1),%esi
623 };
624 memcpy(Loc - 2, Inst, sizeof(Inst));
George Rimar2558e122015-12-09 09:55:54 +0000625}
626
Rui Ueyama46626e12016-07-12 23:28:31 +0000627template <class ELFT> X86_64TargetInfo<ELFT>::X86_64TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +0000628 CopyRel = R_X86_64_COPY;
629 GotRel = R_X86_64_GLOB_DAT;
630 PltRel = R_X86_64_JUMP_SLOT;
631 RelativeRel = R_X86_64_RELATIVE;
632 IRelativeRel = R_X86_64_IRELATIVE;
633 TlsGotRel = R_X86_64_TPOFF64;
Rui Ueyama724d6252016-01-29 01:49:32 +0000634 TlsModuleIndexRel = R_X86_64_DTPMOD64;
635 TlsOffsetRel = R_X86_64_DTPOFF64;
Rui Ueyama803b1202016-07-13 18:55:14 +0000636 GotEntrySize = 8;
637 GotPltEntrySize = 8;
George Rimar648a2c32015-10-20 08:54:27 +0000638 PltEntrySize = 16;
Rui Ueyama4a90f572016-06-16 16:28:50 +0000639 PltHeaderSize = 16;
Rafael Espindolaf807d472016-06-04 23:04:39 +0000640 TlsGdRelaxSkip = 2;
Ed Maste8fd01962016-11-23 17:44:02 +0000641 // Align to the large page size (known as a superpage or huge page).
642 // FreeBSD automatically promotes large, superpage-aligned allocations.
Rui Ueyama835bd722016-11-23 22:10:46 +0000643 DefaultImageBase = 0x200000;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000644}
645
Rui Ueyama46626e12016-07-12 23:28:31 +0000646template <class ELFT>
647RelExpr X86_64TargetInfo<ELFT>::getRelExpr(uint32_t Type,
648 const SymbolBody &S) const {
Rafael Espindola22ef9562016-04-13 01:40:19 +0000649 switch (Type) {
Peter Collingbourneae303862017-01-18 02:20:53 +0000650 case R_X86_64_8:
George Rimar66666362017-01-12 09:00:17 +0000651 case R_X86_64_32:
652 case R_X86_64_32S:
653 case R_X86_64_64:
654 case R_X86_64_DTPOFF32:
655 case R_X86_64_DTPOFF64:
Rafael Espindola22ef9562016-04-13 01:40:19 +0000656 return R_ABS;
Rafael Espindolaece62b92016-04-18 12:44:33 +0000657 case R_X86_64_TPOFF32:
658 return R_TLS;
Rafael Espindolac4d56972016-04-18 00:28:57 +0000659 case R_X86_64_TLSLD:
660 return R_TLSLD_PC;
Rafael Espindoladf172772016-04-18 01:29:15 +0000661 case R_X86_64_TLSGD:
662 return R_TLSGD_PC;
Rafael Espindola3151d892016-04-14 18:39:44 +0000663 case R_X86_64_SIZE32:
664 case R_X86_64_SIZE64:
665 return R_SIZE;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000666 case R_X86_64_PLT32:
Rafael Espindolab312a742016-04-21 17:30:24 +0000667 return R_PLT_PC;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000668 case R_X86_64_PC32:
Rafael Espindola926bff82016-04-25 14:05:44 +0000669 case R_X86_64_PC64:
Rafael Espindola22ef9562016-04-13 01:40:19 +0000670 return R_PC;
Rafael Espindola5628ee72016-04-15 19:14:18 +0000671 case R_X86_64_GOT32:
Rafael Espindola157c51d2016-12-09 21:46:39 +0000672 case R_X86_64_GOT64:
Rafael Espindolaf4c1cd42016-04-18 12:58:59 +0000673 return R_GOT_FROM_END;
Rafael Espindola5628ee72016-04-15 19:14:18 +0000674 case R_X86_64_GOTPCREL:
Rafael Espindoladba64b82016-05-24 11:53:15 +0000675 case R_X86_64_GOTPCRELX:
676 case R_X86_64_REX_GOTPCRELX:
Rafael Espindolafe3a2f12016-05-24 12:12:06 +0000677 case R_X86_64_GOTTPOFF:
678 return R_GOT_PC;
Rafael Espindola5708b2f2016-12-02 08:00:09 +0000679 case R_X86_64_NONE:
680 return R_HINT;
George Rimar66666362017-01-12 09:00:17 +0000681 default:
George Rimar7d9eaf72017-01-31 15:37:51 +0000682 error(toString(S.File) + ": unknown relocation type: " + toString(Type));
George Rimar66666362017-01-12 09:00:17 +0000683 return R_HINT;
Rafael Espindola22ef9562016-04-13 01:40:19 +0000684 }
George Rimar648a2c32015-10-20 08:54:27 +0000685}
686
Rui Ueyama46626e12016-07-12 23:28:31 +0000687template <class ELFT>
688void X86_64TargetInfo<ELFT>::writeGotPltHeader(uint8_t *Buf) const {
Rafael Espindola4ee6cb32016-05-09 18:12:15 +0000689 // The first entry holds the value of _DYNAMIC. It is not clear why that is
690 // required, but it is documented in the psabi and the glibc dynamic linker
Rafael Espindolae5027512016-05-10 16:23:46 +0000691 // seems to use it (note that this is relevant for linking ld.so, not any
Rafael Espindola4ee6cb32016-05-09 18:12:15 +0000692 // other program).
Eugene Leviant6380ce22016-11-15 12:26:55 +0000693 write64le(Buf, In<ELFT>::Dynamic->getVA());
Igor Kudrin351b41d2015-11-16 17:44:08 +0000694}
695
Rui Ueyama46626e12016-07-12 23:28:31 +0000696template <class ELFT>
697void X86_64TargetInfo<ELFT>::writeGotPlt(uint8_t *Buf,
698 const SymbolBody &S) const {
Rui Ueyamacf375932016-01-29 23:58:03 +0000699 // See comments in X86TargetInfo::writeGotPlt.
Rui Ueyama46626e12016-07-12 23:28:31 +0000700 write32le(Buf, S.getPltVA<ELFT>() + 6);
George Rimar648a2c32015-10-20 08:54:27 +0000701}
702
Rui Ueyama46626e12016-07-12 23:28:31 +0000703template <class ELFT>
704void X86_64TargetInfo<ELFT>::writePltHeader(uint8_t *Buf) const {
George Rimar648a2c32015-10-20 08:54:27 +0000705 const uint8_t PltData[] = {
706 0xff, 0x35, 0x00, 0x00, 0x00, 0x00, // pushq GOT+8(%rip)
707 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // jmp *GOT+16(%rip)
708 0x0f, 0x1f, 0x40, 0x00 // nopl 0x0(rax)
709 };
710 memcpy(Buf, PltData, sizeof(PltData));
Eugene Leviant41ca3272016-11-10 09:48:29 +0000711 uint64_t Got = In<ELFT>::GotPlt->getVA();
Eugene Leviantff23d3e2016-11-18 14:35:03 +0000712 uint64_t Plt = In<ELFT>::Plt->getVA();
Rui Ueyama900e2d22016-01-29 03:51:49 +0000713 write32le(Buf + 2, Got - Plt + 2); // GOT+8
714 write32le(Buf + 8, Got - Plt + 4); // GOT+16
Rafael Espindola7f074422015-09-22 21:35:51 +0000715}
Rafael Espindola01205f72015-09-22 18:19:46 +0000716
Rui Ueyama46626e12016-07-12 23:28:31 +0000717template <class ELFT>
718void X86_64TargetInfo<ELFT>::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
719 uint64_t PltEntryAddr, int32_t Index,
720 unsigned RelOff) const {
George Rimar648a2c32015-10-20 08:54:27 +0000721 const uint8_t Inst[] = {
722 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, // jmpq *got(%rip)
723 0x68, 0x00, 0x00, 0x00, 0x00, // pushq <relocation index>
724 0xe9, 0x00, 0x00, 0x00, 0x00 // jmpq plt[0]
725 };
Rui Ueyama1500a902015-09-29 23:00:47 +0000726 memcpy(Buf, Inst, sizeof(Inst));
Rafael Espindola01205f72015-09-22 18:19:46 +0000727
George Rimar648a2c32015-10-20 08:54:27 +0000728 write32le(Buf + 2, GotEntryAddr - PltEntryAddr - 6);
729 write32le(Buf + 7, Index);
Rui Ueyama4a90f572016-06-16 16:28:50 +0000730 write32le(Buf + 12, -Index * PltEntrySize - PltHeaderSize - 16);
Rafael Espindola01205f72015-09-22 18:19:46 +0000731}
732
Rui Ueyama46626e12016-07-12 23:28:31 +0000733template <class ELFT>
Eugene Leviantab024a32016-11-25 08:56:36 +0000734bool X86_64TargetInfo<ELFT>::isPicRel(uint32_t Type) const {
735 return Type != R_X86_64_PC32 && Type != R_X86_64_32;
George Rimar86971052016-03-29 08:35:42 +0000736}
737
Rui Ueyama46626e12016-07-12 23:28:31 +0000738template <class ELFT>
739bool X86_64TargetInfo<ELFT>::isTlsInitialExecRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +0000740 return Type == R_X86_64_GOTTPOFF;
741}
742
Rui Ueyama46626e12016-07-12 23:28:31 +0000743template <class ELFT>
744bool X86_64TargetInfo<ELFT>::isTlsGlobalDynamicRel(uint32_t Type) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +0000745 return Type == R_X86_64_TLSGD;
746}
747
Rui Ueyama46626e12016-07-12 23:28:31 +0000748template <class ELFT>
749bool X86_64TargetInfo<ELFT>::isTlsLocalDynamicRel(uint32_t Type) const {
Rafael Espindola1f04c442016-03-08 20:24:36 +0000750 return Type == R_X86_64_DTPOFF32 || Type == R_X86_64_DTPOFF64 ||
751 Type == R_X86_64_TLSLD;
George Rimard23970f2015-11-25 20:41:53 +0000752}
753
Rui Ueyama46626e12016-07-12 23:28:31 +0000754template <class ELFT>
755void X86_64TargetInfo<ELFT>::relaxTlsGdToLe(uint8_t *Loc, uint32_t Type,
756 uint64_t Val) const {
Rui Ueyama55274e32016-04-23 01:10:15 +0000757 // Convert
758 // .byte 0x66
759 // leaq x@tlsgd(%rip), %rdi
760 // .word 0x6666
761 // rex64
762 // call __tls_get_addr@plt
763 // to
764 // mov %fs:0x0,%rax
765 // lea x@tpoff,%rax
George Rimar6713cf82015-11-25 21:46:05 +0000766 const uint8_t Inst[] = {
767 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:0x0,%rax
768 0x48, 0x8d, 0x80, 0x00, 0x00, 0x00, 0x00 // lea x@tpoff,%rax
769 };
770 memcpy(Loc - 4, Inst, sizeof(Inst));
Rafael Espindola91e9fc02016-05-20 21:09:59 +0000771 // The original code used a pc relative relocation and so we have to
772 // compensate for the -4 in had in the addend.
Rafael Espindola8818ca62016-05-20 17:41:09 +0000773 relocateOne(Loc + 8, R_X86_64_TPOFF32, Val + 4);
George Rimar77d1cb12015-11-24 09:00:06 +0000774}
775
Rui Ueyama46626e12016-07-12 23:28:31 +0000776template <class ELFT>
777void X86_64TargetInfo<ELFT>::relaxTlsGdToIe(uint8_t *Loc, uint32_t Type,
778 uint64_t Val) const {
Rui Ueyama55274e32016-04-23 01:10:15 +0000779 // Convert
780 // .byte 0x66
781 // leaq x@tlsgd(%rip), %rdi
782 // .word 0x6666
783 // rex64
784 // call __tls_get_addr@plt
785 // to
786 // mov %fs:0x0,%rax
787 // addq x@tpoff,%rax
George Rimar25411f252015-12-04 11:20:13 +0000788 const uint8_t Inst[] = {
789 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00, // mov %fs:0x0,%rax
790 0x48, 0x03, 0x05, 0x00, 0x00, 0x00, 0x00 // addq x@tpoff,%rax
791 };
792 memcpy(Loc - 4, Inst, sizeof(Inst));
Rafael Espindola91e9fc02016-05-20 21:09:59 +0000793 // Both code sequences are PC relatives, but since we are moving the constant
794 // forward by 8 bytes we have to subtract the value by 8.
Rafael Espindola22ef9562016-04-13 01:40:19 +0000795 relocateOne(Loc + 8, R_X86_64_PC32, Val - 8);
George Rimar25411f252015-12-04 11:20:13 +0000796}
797
George Rimar77d1cb12015-11-24 09:00:06 +0000798// In some conditions, R_X86_64_GOTTPOFF relocation can be optimized to
George Rimarc55b4e22015-12-07 16:54:56 +0000799// R_X86_64_TPOFF32 so that it does not use GOT.
Rui Ueyama46626e12016-07-12 23:28:31 +0000800template <class ELFT>
801void X86_64TargetInfo<ELFT>::relaxTlsIeToLe(uint8_t *Loc, uint32_t Type,
802 uint64_t Val) const {
Rui Ueyama55a9def2016-06-21 03:42:32 +0000803 uint8_t *Inst = Loc - 3;
George Rimar77d1cb12015-11-24 09:00:06 +0000804 uint8_t Reg = Loc[-1] >> 3;
Rui Ueyama3f5dd142016-06-21 05:01:31 +0000805 uint8_t *RegSlot = Loc - 1;
Rui Ueyama55274e32016-04-23 01:10:15 +0000806
Rui Ueyama73575c42016-06-21 05:09:39 +0000807 // Note that ADD with RSP or R12 is converted to ADD instead of LEA
Rui Ueyama55a9def2016-06-21 03:42:32 +0000808 // because LEA with these registers needs 4 bytes to encode and thus
809 // wouldn't fit the space.
810
811 if (memcmp(Inst, "\x48\x03\x25", 3) == 0) {
812 // "addq foo@gottpoff(%rip),%rsp" -> "addq $foo,%rsp"
813 memcpy(Inst, "\x48\x81\xc4", 3);
814 } else if (memcmp(Inst, "\x4c\x03\x25", 3) == 0) {
815 // "addq foo@gottpoff(%rip),%r12" -> "addq $foo,%r12"
816 memcpy(Inst, "\x49\x81\xc4", 3);
817 } else if (memcmp(Inst, "\x4c\x03", 2) == 0) {
818 // "addq foo@gottpoff(%rip),%r[8-15]" -> "leaq foo(%r[8-15]),%r[8-15]"
819 memcpy(Inst, "\x4d\x8d", 2);
820 *RegSlot = 0x80 | (Reg << 3) | Reg;
821 } else if (memcmp(Inst, "\x48\x03", 2) == 0) {
822 // "addq foo@gottpoff(%rip),%reg -> "leaq foo(%reg),%reg"
823 memcpy(Inst, "\x48\x8d", 2);
824 *RegSlot = 0x80 | (Reg << 3) | Reg;
825 } else if (memcmp(Inst, "\x4c\x8b", 2) == 0) {
826 // "movq foo@gottpoff(%rip),%r[8-15]" -> "movq $foo,%r[8-15]"
827 memcpy(Inst, "\x49\xc7", 2);
828 *RegSlot = 0xc0 | Reg;
829 } else if (memcmp(Inst, "\x48\x8b", 2) == 0) {
830 // "movq foo@gottpoff(%rip),%reg" -> "movq $foo,%reg"
831 memcpy(Inst, "\x48\xc7", 2);
832 *RegSlot = 0xc0 | Reg;
Rui Ueyama03a6cec2016-06-21 06:03:28 +0000833 } else {
George Rimarf39cdea2016-12-22 11:05:05 +0000834 error(getErrorLocation(Loc - 3) +
Eugene Leviant84569e62016-11-29 08:05:44 +0000835 "R_X86_64_GOTTPOFF must be used in MOVQ or ADDQ instructions only");
Rui Ueyama55a9def2016-06-21 03:42:32 +0000836 }
837
838 // The original code used a PC relative relocation.
839 // Need to compensate for the -4 it had in the addend.
Rafael Espindola8818ca62016-05-20 17:41:09 +0000840 relocateOne(Loc, R_X86_64_TPOFF32, Val + 4);
George Rimar77d1cb12015-11-24 09:00:06 +0000841}
842
Rui Ueyama46626e12016-07-12 23:28:31 +0000843template <class ELFT>
844void X86_64TargetInfo<ELFT>::relaxTlsLdToLe(uint8_t *Loc, uint32_t Type,
845 uint64_t Val) const {
Rui Ueyama55274e32016-04-23 01:10:15 +0000846 // Convert
847 // leaq bar@tlsld(%rip), %rdi
848 // callq __tls_get_addr@PLT
849 // leaq bar@dtpoff(%rax), %rcx
850 // to
851 // .word 0x6666
852 // .byte 0x66
853 // mov %fs:0,%rax
854 // leaq bar@tpoff(%rax), %rcx
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000855 if (Type == R_X86_64_DTPOFF64) {
Rafael Espindola8818ca62016-05-20 17:41:09 +0000856 write64le(Loc, Val);
Rafael Espindola22ef9562016-04-13 01:40:19 +0000857 return;
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000858 }
859 if (Type == R_X86_64_DTPOFF32) {
Rafael Espindola8818ca62016-05-20 17:41:09 +0000860 relocateOne(Loc, R_X86_64_TPOFF32, Val);
Rafael Espindola22ef9562016-04-13 01:40:19 +0000861 return;
George Rimar25411f252015-12-04 11:20:13 +0000862 }
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000863
864 const uint8_t Inst[] = {
Rui Ueyama02fcf112016-05-25 04:29:53 +0000865 0x66, 0x66, // .word 0x6666
866 0x66, // .byte 0x66
Rafael Espindola89cc14f2016-03-16 19:03:58 +0000867 0x64, 0x48, 0x8b, 0x04, 0x25, 0x00, 0x00, 0x00, 0x00 // mov %fs:0,%rax
868 };
869 memcpy(Loc - 3, Inst, sizeof(Inst));
George Rimar6713cf82015-11-25 21:46:05 +0000870}
871
Rui Ueyama46626e12016-07-12 23:28:31 +0000872template <class ELFT>
873void X86_64TargetInfo<ELFT>::relocateOne(uint8_t *Loc, uint32_t Type,
874 uint64_t Val) const {
Rafael Espindolac4010882015-09-22 20:54:08 +0000875 switch (Type) {
Peter Collingbourneae303862017-01-18 02:20:53 +0000876 case R_X86_64_8:
877 checkUInt<8>(Loc, Val, Type);
878 *Loc = Val;
879 break;
Rui Ueyama3835b492015-10-23 16:13:27 +0000880 case R_X86_64_32:
Eugene Leviant84569e62016-11-29 08:05:44 +0000881 checkUInt<32>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +0000882 write32le(Loc, Val);
Igor Kudrin9b7e7db2015-11-26 09:49:44 +0000883 break;
Rafael Espindolac4010882015-09-22 20:54:08 +0000884 case R_X86_64_32S:
Rafael Espindolaece62b92016-04-18 12:44:33 +0000885 case R_X86_64_TPOFF32:
Rafael Espindolaf4c1cd42016-04-18 12:58:59 +0000886 case R_X86_64_GOT32:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000887 case R_X86_64_GOTPCREL:
George Rimar9f8f4e32016-03-22 12:15:26 +0000888 case R_X86_64_GOTPCRELX:
889 case R_X86_64_REX_GOTPCRELX:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000890 case R_X86_64_PC32:
Rafael Espindola38bd2172016-05-04 15:51:23 +0000891 case R_X86_64_GOTTPOFF:
Igor Kudrinb4a09272015-12-01 08:41:20 +0000892 case R_X86_64_PLT32:
893 case R_X86_64_TLSGD:
894 case R_X86_64_TLSLD:
Rafael Espindola3c20fb42016-04-18 11:53:42 +0000895 case R_X86_64_DTPOFF32:
George Rimar48651482015-12-11 08:59:37 +0000896 case R_X86_64_SIZE32:
Eugene Leviant84569e62016-11-29 08:05:44 +0000897 checkInt<32>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +0000898 write32le(Loc, Val);
George Rimar48651482015-12-11 08:59:37 +0000899 break;
Rui Ueyamae66f45c2016-05-25 04:10:14 +0000900 case R_X86_64_64:
901 case R_X86_64_DTPOFF64:
Rafael Espindolaf1e24532016-11-29 03:45:36 +0000902 case R_X86_64_GLOB_DAT:
Rui Ueyamae66f45c2016-05-25 04:10:14 +0000903 case R_X86_64_PC64:
Rafael Espindolad3b32df2016-11-29 03:36:30 +0000904 case R_X86_64_SIZE64:
Rafael Espindola157c51d2016-12-09 21:46:39 +0000905 case R_X86_64_GOT64:
Rui Ueyamae66f45c2016-05-25 04:10:14 +0000906 write64le(Loc, Val);
907 break;
Rafael Espindolac4010882015-09-22 20:54:08 +0000908 default:
George Rimar66666362017-01-12 09:00:17 +0000909 llvm_unreachable("unexpected relocation");
Rafael Espindolac4010882015-09-22 20:54:08 +0000910 }
911}
912
Rui Ueyama46626e12016-07-12 23:28:31 +0000913template <class ELFT>
914RelExpr X86_64TargetInfo<ELFT>::adjustRelaxExpr(uint32_t Type,
915 const uint8_t *Data,
916 RelExpr RelExpr) const {
George Rimar5c33b912016-05-25 14:31:37 +0000917 if (Type != R_X86_64_GOTPCRELX && Type != R_X86_64_REX_GOTPCRELX)
George Rimarf10c8292016-06-01 16:45:30 +0000918 return RelExpr;
George Rimara8f9cf12016-05-26 13:37:12 +0000919 const uint8_t Op = Data[-2];
920 const uint8_t ModRm = Data[-1];
George Rimarf10c8292016-06-01 16:45:30 +0000921 // FIXME: When PIC is disabled and foo is defined locally in the
922 // lower 32 bit address space, memory operand in mov can be converted into
923 // immediate operand. Otherwise, mov must be changed to lea. We support only
924 // latter relaxation at this moment.
George Rimar95433df2016-05-25 16:51:08 +0000925 if (Op == 0x8b)
George Rimarf10c8292016-06-01 16:45:30 +0000926 return R_RELAX_GOT_PC;
George Rimar95433df2016-05-25 16:51:08 +0000927 // Relax call and jmp.
George Rimarf10c8292016-06-01 16:45:30 +0000928 if (Op == 0xff && (ModRm == 0x15 || ModRm == 0x25))
929 return R_RELAX_GOT_PC;
930
931 // Relaxation of test, adc, add, and, cmp, or, sbb, sub, xor.
932 // If PIC then no relaxation is available.
933 // We also don't relax test/binop instructions without REX byte,
934 // they are 32bit operations and not common to have.
935 assert(Type == R_X86_64_REX_GOTPCRELX);
936 return Config->Pic ? RelExpr : R_RELAX_GOT_PC_NOPIC;
George Rimar5c33b912016-05-25 14:31:37 +0000937}
938
George Rimarb7204302016-06-02 09:22:00 +0000939// A subset of relaxations can only be applied for no-PIC. This method
940// handles such relaxations. Instructions encoding information was taken from:
941// "Intel 64 and IA-32 Architectures Software Developer's Manual V2"
942// (http://www.intel.com/content/dam/www/public/us/en/documents/manuals/
943// 64-ia-32-architectures-software-developer-instruction-set-reference-manual-325383.pdf)
Rui Ueyama46626e12016-07-12 23:28:31 +0000944template <class ELFT>
945void X86_64TargetInfo<ELFT>::relaxGotNoPic(uint8_t *Loc, uint64_t Val,
946 uint8_t Op, uint8_t ModRm) const {
George Rimarf10c8292016-06-01 16:45:30 +0000947 const uint8_t Rex = Loc[-3];
948 // Convert "test %reg, foo@GOTPCREL(%rip)" to "test $foo, %reg".
949 if (Op == 0x85) {
950 // See "TEST-Logical Compare" (4-428 Vol. 2B),
951 // TEST r/m64, r64 uses "full" ModR / M byte (no opcode extension).
952
953 // ModR/M byte has form XX YYY ZZZ, where
954 // YYY is MODRM.reg(register 2), ZZZ is MODRM.rm(register 1).
955 // XX has different meanings:
956 // 00: The operand's memory address is in reg1.
957 // 01: The operand's memory address is reg1 + a byte-sized displacement.
958 // 10: The operand's memory address is reg1 + a word-sized displacement.
959 // 11: The operand is reg1 itself.
960 // If an instruction requires only one operand, the unused reg2 field
961 // holds extra opcode bits rather than a register code
962 // 0xC0 == 11 000 000 binary.
963 // 0x38 == 00 111 000 binary.
964 // We transfer reg2 to reg1 here as operand.
965 // See "2.1.3 ModR/M and SIB Bytes" (Vol. 2A 2-3).
Rui Ueyama595bc5d2016-06-16 19:48:07 +0000966 Loc[-1] = 0xc0 | (ModRm & 0x38) >> 3; // ModR/M byte.
George Rimarf10c8292016-06-01 16:45:30 +0000967
968 // Change opcode from TEST r/m64, r64 to TEST r/m64, imm32
969 // See "TEST-Logical Compare" (4-428 Vol. 2B).
Rui Ueyama595bc5d2016-06-16 19:48:07 +0000970 Loc[-2] = 0xf7;
George Rimarf10c8292016-06-01 16:45:30 +0000971
972 // Move R bit to the B bit in REX byte.
973 // REX byte is encoded as 0100WRXB, where
974 // 0100 is 4bit fixed pattern.
975 // REX.W When 1, a 64-bit operand size is used. Otherwise, when 0, the
976 // default operand size is used (which is 32-bit for most but not all
977 // instructions).
978 // REX.R This 1-bit value is an extension to the MODRM.reg field.
979 // REX.X This 1-bit value is an extension to the SIB.index field.
980 // REX.B This 1-bit value is an extension to the MODRM.rm field or the
981 // SIB.base field.
982 // See "2.2.1.2 More on REX Prefix Fields " (2-8 Vol. 2A).
Rui Ueyama595bc5d2016-06-16 19:48:07 +0000983 Loc[-3] = (Rex & ~0x4) | (Rex & 0x4) >> 2;
George Rimarf10c8292016-06-01 16:45:30 +0000984 relocateOne(Loc, R_X86_64_PC32, Val);
985 return;
986 }
987
988 // If we are here then we need to relax the adc, add, and, cmp, or, sbb, sub
989 // or xor operations.
990
991 // Convert "binop foo@GOTPCREL(%rip), %reg" to "binop $foo, %reg".
992 // Logic is close to one for test instruction above, but we also
993 // write opcode extension here, see below for details.
Rui Ueyama595bc5d2016-06-16 19:48:07 +0000994 Loc[-1] = 0xc0 | (ModRm & 0x38) >> 3 | (Op & 0x3c); // ModR/M byte.
George Rimarf10c8292016-06-01 16:45:30 +0000995
996 // Primary opcode is 0x81, opcode extension is one of:
997 // 000b = ADD, 001b is OR, 010b is ADC, 011b is SBB,
998 // 100b is AND, 101b is SUB, 110b is XOR, 111b is CMP.
999 // This value was wrote to MODRM.reg in a line above.
1000 // See "3.2 INSTRUCTIONS (A-M)" (Vol. 2A 3-15),
1001 // "INSTRUCTION SET REFERENCE, N-Z" (Vol. 2B 4-1) for
1002 // descriptions about each operation.
Rui Ueyama595bc5d2016-06-16 19:48:07 +00001003 Loc[-2] = 0x81;
1004 Loc[-3] = (Rex & ~0x4) | (Rex & 0x4) >> 2;
George Rimar5c33b912016-05-25 14:31:37 +00001005 relocateOne(Loc, R_X86_64_PC32, Val);
1006}
1007
Rui Ueyama46626e12016-07-12 23:28:31 +00001008template <class ELFT>
1009void X86_64TargetInfo<ELFT>::relaxGot(uint8_t *Loc, uint64_t Val) const {
George Rimarb7204302016-06-02 09:22:00 +00001010 const uint8_t Op = Loc[-2];
1011 const uint8_t ModRm = Loc[-1];
1012
Rui Ueyamaa71ba432016-06-16 23:28:05 +00001013 // Convert "mov foo@GOTPCREL(%rip),%reg" to "lea foo(%rip),%reg".
George Rimarb7204302016-06-02 09:22:00 +00001014 if (Op == 0x8b) {
Rui Ueyama595bc5d2016-06-16 19:48:07 +00001015 Loc[-2] = 0x8d;
George Rimarb7204302016-06-02 09:22:00 +00001016 relocateOne(Loc, R_X86_64_PC32, Val);
1017 return;
1018 }
1019
Rui Ueyamaa71ba432016-06-16 23:28:05 +00001020 if (Op != 0xff) {
1021 // We are relaxing a rip relative to an absolute, so compensate
1022 // for the old -4 addend.
1023 assert(!Config->Pic);
1024 relaxGotNoPic(Loc, Val + 4, Op, ModRm);
1025 return;
1026 }
1027
George Rimarb7204302016-06-02 09:22:00 +00001028 // Convert call/jmp instructions.
Rui Ueyamaa71ba432016-06-16 23:28:05 +00001029 if (ModRm == 0x15) {
1030 // ABI says we can convert "call *foo@GOTPCREL(%rip)" to "nop; call foo".
1031 // Instead we convert to "addr32 call foo" where addr32 is an instruction
1032 // prefix. That makes result expression to be a single instruction.
1033 Loc[-2] = 0x67; // addr32 prefix
1034 Loc[-1] = 0xe8; // call
George Rimarb7204302016-06-02 09:22:00 +00001035 relocateOne(Loc, R_X86_64_PC32, Val);
1036 return;
1037 }
1038
Rui Ueyamaa71ba432016-06-16 23:28:05 +00001039 // Convert "jmp *foo@GOTPCREL(%rip)" to "jmp foo; nop".
1040 // jmp doesn't return, so it is fine to use nop here, it is just a stub.
1041 assert(ModRm == 0x25);
1042 Loc[-2] = 0xe9; // jmp
1043 Loc[3] = 0x90; // nop
1044 relocateOne(Loc - 1, R_X86_64_PC32, Val + 1);
George Rimarb7204302016-06-02 09:22:00 +00001045}
1046
Hal Finkel3c8cc672015-10-12 20:56:18 +00001047// Relocation masks following the #lo(value), #hi(value), #ha(value),
1048// #higher(value), #highera(value), #highest(value), and #highesta(value)
1049// macros defined in section 4.5.1. Relocation Types of the PPC-elf64abi
1050// document.
Rui Ueyamac44e5a12015-10-23 16:54:58 +00001051static uint16_t applyPPCLo(uint64_t V) { return V; }
1052static uint16_t applyPPCHi(uint64_t V) { return V >> 16; }
1053static uint16_t applyPPCHa(uint64_t V) { return (V + 0x8000) >> 16; }
1054static uint16_t applyPPCHigher(uint64_t V) { return V >> 32; }
1055static uint16_t applyPPCHighera(uint64_t V) { return (V + 0x8000) >> 32; }
Hal Finkel3c8cc672015-10-12 20:56:18 +00001056static uint16_t applyPPCHighest(uint64_t V) { return V >> 48; }
Hal Finkel3c8cc672015-10-12 20:56:18 +00001057static uint16_t applyPPCHighesta(uint64_t V) { return (V + 0x8000) >> 48; }
1058
Davide Italiano8c3444362016-01-11 19:45:33 +00001059PPCTargetInfo::PPCTargetInfo() {}
Davide Italiano8c3444362016-01-11 19:45:33 +00001060
Rafael Espindola22ef9562016-04-13 01:40:19 +00001061void PPCTargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
1062 uint64_t Val) const {
Davide Italiano8c3444362016-01-11 19:45:33 +00001063 switch (Type) {
1064 case R_PPC_ADDR16_HA:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001065 write16be(Loc, applyPPCHa(Val));
Davide Italiano8c3444362016-01-11 19:45:33 +00001066 break;
1067 case R_PPC_ADDR16_LO:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001068 write16be(Loc, applyPPCLo(Val));
Davide Italiano8c3444362016-01-11 19:45:33 +00001069 break;
Rui Ueyama035c4f12016-11-01 18:30:28 +00001070 case R_PPC_ADDR32:
Rui Ueyama7fd5c84f2016-11-01 18:30:26 +00001071 case R_PPC_REL32:
1072 write32be(Loc, Val);
1073 break;
Rui Ueyama035c4f12016-11-01 18:30:28 +00001074 case R_PPC_REL24:
1075 or32be(Loc, Val & 0x3FFFFFC);
1076 break;
Davide Italiano8c3444362016-01-11 19:45:33 +00001077 default:
George Rimardcf5b722016-12-21 08:21:34 +00001078 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Davide Italiano8c3444362016-01-11 19:45:33 +00001079 }
1080}
1081
Rafael Espindola22ef9562016-04-13 01:40:19 +00001082RelExpr PPCTargetInfo::getRelExpr(uint32_t Type, const SymbolBody &S) const {
Rui Ueyama7fd5c84f2016-11-01 18:30:26 +00001083 switch (Type) {
1084 case R_PPC_REL24:
1085 case R_PPC_REL32:
1086 return R_PC;
1087 default:
1088 return R_ABS;
1089 }
Rafael Espindola22ef9562016-04-13 01:40:19 +00001090}
1091
Rafael Espindolac4010882015-09-22 20:54:08 +00001092PPC64TargetInfo::PPC64TargetInfo() {
Rafael Espindolae4c86d832016-05-18 21:03:36 +00001093 PltRel = GotRel = R_PPC64_GLOB_DAT;
Rui Ueyama724d6252016-01-29 01:49:32 +00001094 RelativeRel = R_PPC64_RELATIVE;
Rui Ueyama803b1202016-07-13 18:55:14 +00001095 GotEntrySize = 8;
1096 GotPltEntrySize = 8;
Hal Finkel6c2a3b82015-10-08 21:51:31 +00001097 PltEntrySize = 32;
Rui Ueyamac737ef52016-06-16 23:50:25 +00001098 PltHeaderSize = 0;
Hal Finkelc848b322015-10-12 19:34:29 +00001099
1100 // We need 64K pages (at least under glibc/Linux, the loader won't
1101 // set different permissions on a finer granularity than that).
Rafael Espindolad4db0b32016-12-07 21:13:27 +00001102 DefaultMaxPageSize = 65536;
Hal Finkel736c7412015-10-15 07:49:07 +00001103
1104 // The PPC64 ELF ABI v1 spec, says:
1105 //
1106 // It is normally desirable to put segments with different characteristics
1107 // in separate 256 Mbyte portions of the address space, to give the
1108 // operating system full paging flexibility in the 64-bit address space.
1109 //
1110 // And because the lowest non-zero 256M boundary is 0x10000000, PPC64 linkers
1111 // use 0x10000000 as the starting address.
Rui Ueyama941faa72016-07-14 17:43:28 +00001112 DefaultImageBase = 0x10000000;
Rafael Espindolac4010882015-09-22 20:54:08 +00001113}
Hal Finkel3c8cc672015-10-12 20:56:18 +00001114
Rafael Espindola15cec292016-04-27 12:25:22 +00001115static uint64_t PPC64TocOffset = 0x8000;
1116
Hal Finkel6f97c2b2015-10-16 21:55:40 +00001117uint64_t getPPC64TocBase() {
Rafael Espindola520ed3a2016-04-27 12:21:27 +00001118 // The TOC consists of sections .got, .toc, .tocbss, .plt in that order. The
1119 // TOC starts where the first of these sections starts. We always create a
1120 // .got when we see a relocation that uses it, so for us the start is always
1121 // the .got.
Eugene Leviantad4439e2016-11-11 11:33:32 +00001122 uint64_t TocVA = In<ELF64BE>::Got->getVA();
Hal Finkel3c8cc672015-10-12 20:56:18 +00001123
1124 // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000
1125 // thus permitting a full 64 Kbytes segment. Note that the glibc startup
1126 // code (crt1.o) assumes that you can get from the TOC base to the
1127 // start of the .toc section with only a single (signed) 16-bit relocation.
Rafael Espindola15cec292016-04-27 12:25:22 +00001128 return TocVA + PPC64TocOffset;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001129}
1130
Rafael Espindola22ef9562016-04-13 01:40:19 +00001131RelExpr PPC64TargetInfo::getRelExpr(uint32_t Type, const SymbolBody &S) const {
1132 switch (Type) {
1133 default:
1134 return R_ABS;
Rafael Espindola15cec292016-04-27 12:25:22 +00001135 case R_PPC64_TOC16:
1136 case R_PPC64_TOC16_DS:
1137 case R_PPC64_TOC16_HA:
1138 case R_PPC64_TOC16_HI:
1139 case R_PPC64_TOC16_LO:
1140 case R_PPC64_TOC16_LO_DS:
1141 return R_GOTREL;
Rafael Espindola365e5f62016-04-27 11:54:07 +00001142 case R_PPC64_TOC:
1143 return R_PPC_TOC;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001144 case R_PPC64_REL24:
Rafael Espindolab312a742016-04-21 17:30:24 +00001145 return R_PPC_PLT_OPD;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001146 }
1147}
1148
Rui Ueyama9398f862016-01-29 04:15:02 +00001149void PPC64TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1150 uint64_t PltEntryAddr, int32_t Index,
1151 unsigned RelOff) const {
Hal Finkel3c8cc672015-10-12 20:56:18 +00001152 uint64_t Off = GotEntryAddr - getPPC64TocBase();
1153
1154 // FIXME: What we should do, in theory, is get the offset of the function
1155 // descriptor in the .opd section, and use that as the offset from %r2 (the
1156 // TOC-base pointer). Instead, we have the GOT-entry offset, and that will
1157 // be a pointer to the function descriptor in the .opd section. Using
1158 // this scheme is simpler, but requires an extra indirection per PLT dispatch.
1159
George Rimara4c7e742016-10-20 08:36:42 +00001160 write32be(Buf, 0xf8410028); // std %r2, 40(%r1)
1161 write32be(Buf + 4, 0x3d620000 | applyPPCHa(Off)); // addis %r11, %r2, X@ha
1162 write32be(Buf + 8, 0xe98b0000 | applyPPCLo(Off)); // ld %r12, X@l(%r11)
1163 write32be(Buf + 12, 0xe96c0000); // ld %r11,0(%r12)
1164 write32be(Buf + 16, 0x7d6903a6); // mtctr %r11
1165 write32be(Buf + 20, 0xe84c0008); // ld %r2,8(%r12)
1166 write32be(Buf + 24, 0xe96c0010); // ld %r11,16(%r12)
1167 write32be(Buf + 28, 0x4e800420); // bctr
Hal Finkel3c8cc672015-10-12 20:56:18 +00001168}
1169
Rui Ueyama2f524fb2016-06-16 23:28:08 +00001170static std::pair<uint32_t, uint64_t> toAddr16Rel(uint32_t Type, uint64_t Val) {
1171 uint64_t V = Val - PPC64TocOffset;
1172 switch (Type) {
George Rimara4c7e742016-10-20 08:36:42 +00001173 case R_PPC64_TOC16:
1174 return {R_PPC64_ADDR16, V};
1175 case R_PPC64_TOC16_DS:
1176 return {R_PPC64_ADDR16_DS, V};
1177 case R_PPC64_TOC16_HA:
1178 return {R_PPC64_ADDR16_HA, V};
1179 case R_PPC64_TOC16_HI:
1180 return {R_PPC64_ADDR16_HI, V};
1181 case R_PPC64_TOC16_LO:
1182 return {R_PPC64_ADDR16_LO, V};
1183 case R_PPC64_TOC16_LO_DS:
1184 return {R_PPC64_ADDR16_LO_DS, V};
1185 default:
1186 return {Type, Val};
Rui Ueyama2f524fb2016-06-16 23:28:08 +00001187 }
1188}
1189
Rafael Espindola22ef9562016-04-13 01:40:19 +00001190void PPC64TargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
1191 uint64_t Val) const {
Rui Ueyama2f524fb2016-06-16 23:28:08 +00001192 // For a TOC-relative relocation, proceed in terms of the corresponding
Rafael Espindola15cec292016-04-27 12:25:22 +00001193 // ADDR16 relocation type.
Rui Ueyama2f524fb2016-06-16 23:28:08 +00001194 std::tie(Type, Val) = toAddr16Rel(Type, Val);
Hal Finkel3c8cc672015-10-12 20:56:18 +00001195
Hal Finkel3c8cc672015-10-12 20:56:18 +00001196 switch (Type) {
Igor Kudrinb4a09272015-12-01 08:41:20 +00001197 case R_PPC64_ADDR14: {
Eugene Leviant84569e62016-11-29 08:05:44 +00001198 checkAlignment<4>(Loc, Val, Type);
Igor Kudrinb4a09272015-12-01 08:41:20 +00001199 // Preserve the AA/LK bits in the branch instruction
1200 uint8_t AALK = Loc[3];
Rafael Espindola22ef9562016-04-13 01:40:19 +00001201 write16be(Loc + 2, (AALK & 3) | (Val & 0xfffc));
Igor Kudrinb4a09272015-12-01 08:41:20 +00001202 break;
1203 }
Hal Finkel3c8cc672015-10-12 20:56:18 +00001204 case R_PPC64_ADDR16:
Eugene Leviant84569e62016-11-29 08:05:44 +00001205 checkInt<16>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001206 write16be(Loc, Val);
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001207 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001208 case R_PPC64_ADDR16_DS:
Eugene Leviant84569e62016-11-29 08:05:44 +00001209 checkInt<16>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001210 write16be(Loc, (read16be(Loc) & 3) | (Val & ~3));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001211 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001212 case R_PPC64_ADDR16_HA:
Rui Ueyamae991a492016-06-16 23:28:06 +00001213 case R_PPC64_REL16_HA:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001214 write16be(Loc, applyPPCHa(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001215 break;
1216 case R_PPC64_ADDR16_HI:
Rui Ueyamae991a492016-06-16 23:28:06 +00001217 case R_PPC64_REL16_HI:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001218 write16be(Loc, applyPPCHi(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001219 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001220 case R_PPC64_ADDR16_HIGHER:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001221 write16be(Loc, applyPPCHigher(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001222 break;
1223 case R_PPC64_ADDR16_HIGHERA:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001224 write16be(Loc, applyPPCHighera(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001225 break;
1226 case R_PPC64_ADDR16_HIGHEST:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001227 write16be(Loc, applyPPCHighest(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001228 break;
1229 case R_PPC64_ADDR16_HIGHESTA:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001230 write16be(Loc, applyPPCHighesta(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001231 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001232 case R_PPC64_ADDR16_LO:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001233 write16be(Loc, applyPPCLo(Val));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001234 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001235 case R_PPC64_ADDR16_LO_DS:
Rui Ueyamae991a492016-06-16 23:28:06 +00001236 case R_PPC64_REL16_LO:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001237 write16be(Loc, (read16be(Loc) & 3) | (applyPPCLo(Val) & ~3));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001238 break;
1239 case R_PPC64_ADDR32:
Rui Ueyamae991a492016-06-16 23:28:06 +00001240 case R_PPC64_REL32:
Eugene Leviant84569e62016-11-29 08:05:44 +00001241 checkInt<32>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001242 write32be(Loc, Val);
Hal Finkel3c8cc672015-10-12 20:56:18 +00001243 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001244 case R_PPC64_ADDR64:
Rui Ueyamae991a492016-06-16 23:28:06 +00001245 case R_PPC64_REL64:
1246 case R_PPC64_TOC:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001247 write64be(Loc, Val);
Igor Kudrinb4a09272015-12-01 08:41:20 +00001248 break;
Hal Finkel3c8cc672015-10-12 20:56:18 +00001249 case R_PPC64_REL24: {
1250 uint32_t Mask = 0x03FFFFFC;
Eugene Leviant84569e62016-11-29 08:05:44 +00001251 checkInt<24>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001252 write32be(Loc, (read32be(Loc) & ~Mask) | (Val & Mask));
Hal Finkel3c8cc672015-10-12 20:56:18 +00001253 break;
1254 }
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001255 default:
George Rimardcf5b722016-12-21 08:21:34 +00001256 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Rafael Espindola3efa4e92015-09-22 21:12:55 +00001257 }
1258}
Rafael Espindola1d6063e2015-09-22 21:24:52 +00001259
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001260AArch64TargetInfo::AArch64TargetInfo() {
Rui Ueyama724d6252016-01-29 01:49:32 +00001261 CopyRel = R_AARCH64_COPY;
Adhemerval Zanella668ad0f2016-02-23 16:54:40 +00001262 RelativeRel = R_AARCH64_RELATIVE;
Rui Ueyama724d6252016-01-29 01:49:32 +00001263 IRelativeRel = R_AARCH64_IRELATIVE;
1264 GotRel = R_AARCH64_GLOB_DAT;
1265 PltRel = R_AARCH64_JUMP_SLOT;
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001266 TlsDescRel = R_AARCH64_TLSDESC;
Rui Ueyama724d6252016-01-29 01:49:32 +00001267 TlsGotRel = R_AARCH64_TLS_TPREL64;
Rui Ueyama803b1202016-07-13 18:55:14 +00001268 GotEntrySize = 8;
1269 GotPltEntrySize = 8;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001270 PltEntrySize = 16;
Rui Ueyama4a90f572016-06-16 16:28:50 +00001271 PltHeaderSize = 32;
Rafael Espindolad4db0b32016-12-07 21:13:27 +00001272 DefaultMaxPageSize = 65536;
Rafael Espindola8818ca62016-05-20 17:41:09 +00001273
1274 // It doesn't seem to be documented anywhere, but tls on aarch64 uses variant
1275 // 1 of the tls structures and the tcb size is 16.
1276 TcbSize = 16;
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001277}
George Rimar648a2c32015-10-20 08:54:27 +00001278
Rafael Espindola22ef9562016-04-13 01:40:19 +00001279RelExpr AArch64TargetInfo::getRelExpr(uint32_t Type,
1280 const SymbolBody &S) const {
1281 switch (Type) {
1282 default:
1283 return R_ABS;
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001284 case R_AARCH64_TLSDESC_ADR_PAGE21:
1285 return R_TLSDESC_PAGE;
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001286 case R_AARCH64_TLSDESC_LD64_LO12_NC:
1287 case R_AARCH64_TLSDESC_ADD_LO12_NC:
1288 return R_TLSDESC;
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001289 case R_AARCH64_TLSDESC_CALL:
Peter Smithd6486032016-10-20 09:59:26 +00001290 return R_TLSDESC_CALL;
Rafael Espindola8818ca62016-05-20 17:41:09 +00001291 case R_AARCH64_TLSLE_ADD_TPREL_HI12:
1292 case R_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
1293 return R_TLS;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001294 case R_AARCH64_CALL26:
Rafael Espindolab312a742016-04-21 17:30:24 +00001295 case R_AARCH64_CONDBR19:
1296 case R_AARCH64_JUMP26:
1297 case R_AARCH64_TSTBR14:
1298 return R_PLT_PC;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001299 case R_AARCH64_PREL16:
1300 case R_AARCH64_PREL32:
1301 case R_AARCH64_PREL64:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001302 case R_AARCH64_ADR_PREL_LO21:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001303 return R_PC;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001304 case R_AARCH64_ADR_PREL_PG_HI21:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001305 return R_PAGE_PC;
Rafael Espindola5628ee72016-04-15 19:14:18 +00001306 case R_AARCH64_LD64_GOT_LO12_NC:
1307 case R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
1308 return R_GOT;
1309 case R_AARCH64_ADR_GOT_PAGE:
1310 case R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
1311 return R_GOT_PAGE_PC;
Rafael Espindola22ef9562016-04-13 01:40:19 +00001312 }
1313}
1314
Rafael Espindolae1979ae2016-06-04 23:33:31 +00001315RelExpr AArch64TargetInfo::adjustRelaxExpr(uint32_t Type, const uint8_t *Data,
1316 RelExpr Expr) const {
1317 if (Expr == R_RELAX_TLS_GD_TO_IE) {
1318 if (Type == R_AARCH64_TLSDESC_ADR_PAGE21)
1319 return R_RELAX_TLS_GD_TO_IE_PAGE_PC;
1320 return R_RELAX_TLS_GD_TO_IE_ABS;
1321 }
1322 return Expr;
1323}
1324
Rafael Espindolab8ff59a2016-04-28 14:34:39 +00001325bool AArch64TargetInfo::usesOnlyLowPageBits(uint32_t Type) const {
Adhemerval Zanella3db3f6d2016-03-24 19:12:14 +00001326 switch (Type) {
1327 default:
1328 return false;
Ed Schouten39aca422016-04-06 18:21:07 +00001329 case R_AARCH64_ADD_ABS_LO12_NC:
Rafael Espindola53d0a9f2016-06-02 15:24:52 +00001330 case R_AARCH64_LD64_GOT_LO12_NC:
1331 case R_AARCH64_LDST128_ABS_LO12_NC:
Adhemerval Zanella3db3f6d2016-03-24 19:12:14 +00001332 case R_AARCH64_LDST16_ABS_LO12_NC:
1333 case R_AARCH64_LDST32_ABS_LO12_NC:
1334 case R_AARCH64_LDST64_ABS_LO12_NC:
Rafael Espindola53d0a9f2016-06-02 15:24:52 +00001335 case R_AARCH64_LDST8_ABS_LO12_NC:
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001336 case R_AARCH64_TLSDESC_ADD_LO12_NC:
1337 case R_AARCH64_TLSDESC_LD64_LO12_NC:
Rafael Espindolade17d282016-05-04 21:40:07 +00001338 case R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
Adhemerval Zanella3db3f6d2016-03-24 19:12:14 +00001339 return true;
1340 }
Rafael Espindolaa4e35f72016-02-24 16:15:13 +00001341}
Rafael Espindola435c00f2016-02-23 20:19:44 +00001342
George Rimar98b060d2016-03-06 06:01:07 +00001343bool AArch64TargetInfo::isTlsInitialExecRel(uint32_t Type) const {
Rafael Espindolad405f472016-03-04 21:37:09 +00001344 return Type == R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21 ||
1345 Type == R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC;
1346}
1347
Eugene Leviantab024a32016-11-25 08:56:36 +00001348bool AArch64TargetInfo::isPicRel(uint32_t Type) const {
1349 return Type == R_AARCH64_ABS32 || Type == R_AARCH64_ABS64;
Igor Kudrincfe47f52015-12-05 06:20:24 +00001350}
1351
Rui Ueyamac9fee5f2016-06-16 16:14:50 +00001352void AArch64TargetInfo::writeGotPlt(uint8_t *Buf, const SymbolBody &) const {
Eugene Leviantff23d3e2016-11-18 14:35:03 +00001353 write64le(Buf, In<ELF64LE>::Plt->getVA());
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001354}
1355
Adhemerval Zanella6afe1282016-12-05 14:14:26 +00001356// Page(Expr) is the page address of the expression Expr, defined
1357// as (Expr & ~0xFFF). (This applies even if the machine page size
1358// supported by the platform has a different value.)
1359uint64_t getAArch64Page(uint64_t Expr) {
Rafael Espindola22ef9562016-04-13 01:40:19 +00001360 return Expr & (~static_cast<uint64_t>(0xFFF));
1361}
1362
Rui Ueyama4a90f572016-06-16 16:28:50 +00001363void AArch64TargetInfo::writePltHeader(uint8_t *Buf) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001364 const uint8_t PltData[] = {
1365 0xf0, 0x7b, 0xbf, 0xa9, // stp x16, x30, [sp,#-16]!
1366 0x10, 0x00, 0x00, 0x90, // adrp x16, Page(&(.plt.got[2]))
1367 0x11, 0x02, 0x40, 0xf9, // ldr x17, [x16, Offset(&(.plt.got[2]))]
1368 0x10, 0x02, 0x00, 0x91, // add x16, x16, Offset(&(.plt.got[2]))
1369 0x20, 0x02, 0x1f, 0xd6, // br x17
1370 0x1f, 0x20, 0x03, 0xd5, // nop
1371 0x1f, 0x20, 0x03, 0xd5, // nop
1372 0x1f, 0x20, 0x03, 0xd5 // nop
1373 };
1374 memcpy(Buf, PltData, sizeof(PltData));
1375
Eugene Leviant41ca3272016-11-10 09:48:29 +00001376 uint64_t Got = In<ELF64LE>::GotPlt->getVA();
Eugene Leviantff23d3e2016-11-18 14:35:03 +00001377 uint64_t Plt = In<ELF64LE>::Plt->getVA();
Rafael Espindola22ef9562016-04-13 01:40:19 +00001378 relocateOne(Buf + 4, R_AARCH64_ADR_PREL_PG_HI21,
1379 getAArch64Page(Got + 16) - getAArch64Page(Plt + 4));
1380 relocateOne(Buf + 8, R_AARCH64_LDST64_ABS_LO12_NC, Got + 16);
1381 relocateOne(Buf + 12, R_AARCH64_ADD_ABS_LO12_NC, Got + 16);
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001382}
1383
Rui Ueyama9398f862016-01-29 04:15:02 +00001384void AArch64TargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1385 uint64_t PltEntryAddr, int32_t Index,
1386 unsigned RelOff) const {
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001387 const uint8_t Inst[] = {
1388 0x10, 0x00, 0x00, 0x90, // adrp x16, Page(&(.plt.got[n]))
1389 0x11, 0x02, 0x40, 0xf9, // ldr x17, [x16, Offset(&(.plt.got[n]))]
1390 0x10, 0x02, 0x00, 0x91, // add x16, x16, Offset(&(.plt.got[n]))
1391 0x20, 0x02, 0x1f, 0xd6 // br x17
1392 };
1393 memcpy(Buf, Inst, sizeof(Inst));
1394
Rafael Espindola22ef9562016-04-13 01:40:19 +00001395 relocateOne(Buf, R_AARCH64_ADR_PREL_PG_HI21,
1396 getAArch64Page(GotEntryAddr) - getAArch64Page(PltEntryAddr));
1397 relocateOne(Buf + 4, R_AARCH64_LDST64_ABS_LO12_NC, GotEntryAddr);
1398 relocateOne(Buf + 8, R_AARCH64_ADD_ABS_LO12_NC, GotEntryAddr);
Igor Kudrindb7de9f2015-11-17 18:01:30 +00001399}
1400
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001401static void write32AArch64Addr(uint8_t *L, uint64_t Imm) {
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001402 uint32_t ImmLo = (Imm & 0x3) << 29;
Rafael Espindola1c0eb972016-06-02 16:00:25 +00001403 uint32_t ImmHi = (Imm & 0x1FFFFC) << 3;
1404 uint64_t Mask = (0x3 << 29) | (0x1FFFFC << 3);
Rui Ueyama87bc41b2015-10-06 18:54:43 +00001405 write32le(L, (read32le(L) & ~Mask) | ImmLo | ImmHi);
Davide Italiano1f31a2c2015-10-02 22:00:42 +00001406}
1407
Rui Ueyama248e4a32016-12-08 17:04:18 +00001408// Return the bits [Start, End] from Val shifted Start bits.
1409// For instance, getBits(0xF0, 4, 8) returns 0xF.
1410static uint64_t getBits(uint64_t Val, int Start, int End) {
Adhemerval Zanellad719d372016-12-07 17:31:48 +00001411 uint64_t Mask = ((uint64_t)1 << (End + 1 - Start)) - 1;
1412 return (Val >> Start) & Mask;
1413}
1414
Rui Ueyama8cb62832016-12-08 17:18:09 +00001415// Update the immediate field in a AARCH64 ldr, str, and add instruction.
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001416static void or32AArch64Imm(uint8_t *L, uint64_t Imm) {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001417 or32le(L, (Imm & 0xFFF) << 10);
1418}
1419
Rafael Espindola22ef9562016-04-13 01:40:19 +00001420void AArch64TargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
1421 uint64_t Val) const {
Davide Italiano1d750a62015-09-27 08:45:38 +00001422 switch (Type) {
Davide Italianodf88f962015-10-04 00:59:16 +00001423 case R_AARCH64_ABS16:
Rui Ueyamae66f45c2016-05-25 04:10:14 +00001424 case R_AARCH64_PREL16:
Eugene Leviant84569e62016-11-29 08:05:44 +00001425 checkIntUInt<16>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001426 write16le(Loc, Val);
Davide Italianodf88f962015-10-04 00:59:16 +00001427 break;
1428 case R_AARCH64_ABS32:
Rui Ueyamae66f45c2016-05-25 04:10:14 +00001429 case R_AARCH64_PREL32:
Eugene Leviant84569e62016-11-29 08:05:44 +00001430 checkIntUInt<32>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001431 write32le(Loc, Val);
Davide Italianodf88f962015-10-04 00:59:16 +00001432 break;
1433 case R_AARCH64_ABS64:
Rafael Espindolaf1e24532016-11-29 03:45:36 +00001434 case R_AARCH64_GLOB_DAT:
Rui Ueyamae66f45c2016-05-25 04:10:14 +00001435 case R_AARCH64_PREL64:
Rafael Espindola22ef9562016-04-13 01:40:19 +00001436 write64le(Loc, Val);
Davide Italianodf88f962015-10-04 00:59:16 +00001437 break;
Davide Italiano0b6974b2015-10-03 19:56:07 +00001438 case R_AARCH64_ADD_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001439 or32AArch64Imm(Loc, Val);
Davide Italiano0b6974b2015-10-03 19:56:07 +00001440 break;
Rafael Espindolad79073d2016-04-25 12:32:19 +00001441 case R_AARCH64_ADR_GOT_PAGE:
Rui Ueyamae66f45c2016-05-25 04:10:14 +00001442 case R_AARCH64_ADR_PREL_PG_HI21:
1443 case R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21:
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001444 case R_AARCH64_TLSDESC_ADR_PAGE21:
Eugene Leviant84569e62016-11-29 08:05:44 +00001445 checkInt<33>(Loc, Val, Type);
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001446 write32AArch64Addr(Loc, Val >> 12);
Igor Kudrinb4a09272015-12-01 08:41:20 +00001447 break;
Rafael Espindolad79073d2016-04-25 12:32:19 +00001448 case R_AARCH64_ADR_PREL_LO21:
Eugene Leviant84569e62016-11-29 08:05:44 +00001449 checkInt<21>(Loc, Val, Type);
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001450 write32AArch64Addr(Loc, Val);
Davide Italiano1d750a62015-09-27 08:45:38 +00001451 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001452 case R_AARCH64_CALL26:
Rafael Espindolad79073d2016-04-25 12:32:19 +00001453 case R_AARCH64_JUMP26:
Eugene Leviant84569e62016-11-29 08:05:44 +00001454 checkInt<28>(Loc, Val, Type);
Rafael Espindolad79073d2016-04-25 12:32:19 +00001455 or32le(Loc, (Val & 0x0FFFFFFC) >> 2);
Igor Kudrinb34115b2015-11-13 03:26:59 +00001456 break;
Rafael Espindolad79073d2016-04-25 12:32:19 +00001457 case R_AARCH64_CONDBR19:
Eugene Leviant84569e62016-11-29 08:05:44 +00001458 checkInt<21>(Loc, Val, Type);
Rafael Espindolad79073d2016-04-25 12:32:19 +00001459 or32le(Loc, (Val & 0x1FFFFC) << 3);
George Rimar4102bfb2016-01-11 14:22:00 +00001460 break;
Igor Kudrin5d2bffd2015-11-24 06:48:31 +00001461 case R_AARCH64_LD64_GOT_LO12_NC:
George Rimar3d737e42016-01-13 13:04:46 +00001462 case R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC:
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001463 case R_AARCH64_TLSDESC_LD64_LO12_NC:
Eugene Leviant84569e62016-11-29 08:05:44 +00001464 checkAlignment<8>(Loc, Val, Type);
Rafael Espindola22ef9562016-04-13 01:40:19 +00001465 or32le(Loc, (Val & 0xFF8) << 7);
Igor Kudrin5d2bffd2015-11-24 06:48:31 +00001466 break;
Adhemerval Zanellad719d372016-12-07 17:31:48 +00001467 case R_AARCH64_LDST8_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001468 or32AArch64Imm(Loc, getBits(Val, 0, 11));
Davide Italiano0d4fbae2016-01-14 01:30:21 +00001469 break;
Davide Italiano2dfc5fd2016-01-15 01:49:51 +00001470 case R_AARCH64_LDST16_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001471 or32AArch64Imm(Loc, getBits(Val, 1, 11));
Davide Italianodc67f9b2015-11-20 21:35:38 +00001472 break;
Igor Kudrinb4a09272015-12-01 08:41:20 +00001473 case R_AARCH64_LDST32_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001474 or32AArch64Imm(Loc, getBits(Val, 2, 11));
Igor Kudrinb4a09272015-12-01 08:41:20 +00001475 break;
1476 case R_AARCH64_LDST64_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001477 or32AArch64Imm(Loc, getBits(Val, 3, 11));
Adhemerval Zanellad719d372016-12-07 17:31:48 +00001478 break;
1479 case R_AARCH64_LDST128_ABS_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001480 or32AArch64Imm(Loc, getBits(Val, 4, 11));
Igor Kudrinb4a09272015-12-01 08:41:20 +00001481 break;
Eugene Leviant99da7522016-09-12 10:02:41 +00001482 case R_AARCH64_MOVW_UABS_G0_NC:
1483 or32le(Loc, (Val & 0xFFFF) << 5);
1484 break;
1485 case R_AARCH64_MOVW_UABS_G1_NC:
1486 or32le(Loc, (Val & 0xFFFF0000) >> 11);
1487 break;
1488 case R_AARCH64_MOVW_UABS_G2_NC:
1489 or32le(Loc, (Val & 0xFFFF00000000) >> 27);
1490 break;
1491 case R_AARCH64_MOVW_UABS_G3:
1492 or32le(Loc, (Val & 0xFFFF000000000000) >> 43);
1493 break;
Rafael Espindolad79073d2016-04-25 12:32:19 +00001494 case R_AARCH64_TSTBR14:
Eugene Leviant84569e62016-11-29 08:05:44 +00001495 checkInt<16>(Loc, Val, Type);
Rafael Espindolad79073d2016-04-25 12:32:19 +00001496 or32le(Loc, (Val & 0xFFFC) << 3);
George Rimar1395dbd2016-01-11 14:27:05 +00001497 break;
Rafael Espindola8818ca62016-05-20 17:41:09 +00001498 case R_AARCH64_TLSLE_ADD_TPREL_HI12:
Eugene Leviant84569e62016-11-29 08:05:44 +00001499 checkInt<24>(Loc, Val, Type);
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001500 or32AArch64Imm(Loc, Val >> 12);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001501 break;
Rafael Espindola8818ca62016-05-20 17:41:09 +00001502 case R_AARCH64_TLSLE_ADD_TPREL_LO12_NC:
Rafael Espindolae37d13b2016-06-02 19:49:53 +00001503 case R_AARCH64_TLSDESC_ADD_LO12_NC:
Rui Ueyamafd7ed232016-12-15 03:31:53 +00001504 or32AArch64Imm(Loc, Val);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001505 break;
Davide Italiano1d750a62015-09-27 08:45:38 +00001506 default:
George Rimardcf5b722016-12-21 08:21:34 +00001507 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Davide Italiano1d750a62015-09-27 08:45:38 +00001508 }
1509}
Simon Atanasyan49829a12015-09-29 05:34:03 +00001510
Rafael Espindola22ef9562016-04-13 01:40:19 +00001511void AArch64TargetInfo::relaxTlsGdToLe(uint8_t *Loc, uint32_t Type,
1512 uint64_t Val) const {
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001513 // TLSDESC Global-Dynamic relocation are in the form:
1514 // adrp x0, :tlsdesc:v [R_AARCH64_TLSDESC_ADR_PAGE21]
1515 // ldr x1, [x0, #:tlsdesc_lo12:v [R_AARCH64_TLSDESC_LD64_LO12_NC]
1516 // add x0, x0, :tlsdesc_los:v [_AARCH64_TLSDESC_ADD_LO12_NC]
1517 // .tlsdesccall [R_AARCH64_TLSDESC_CALL]
Rafael Espindolae1979ae2016-06-04 23:33:31 +00001518 // blr x1
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001519 // And it can optimized to:
1520 // movz x0, #0x0, lsl #16
1521 // movk x0, #0x10
1522 // nop
1523 // nop
Eugene Leviant84569e62016-11-29 08:05:44 +00001524 checkUInt<32>(Loc, Val, Type);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001525
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001526 switch (Type) {
1527 case R_AARCH64_TLSDESC_ADD_LO12_NC:
1528 case R_AARCH64_TLSDESC_CALL:
Rui Ueyamaf9d56202016-06-16 16:44:52 +00001529 write32le(Loc, 0xd503201f); // nop
1530 return;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001531 case R_AARCH64_TLSDESC_ADR_PAGE21:
Rui Ueyamaf9d56202016-06-16 16:44:52 +00001532 write32le(Loc, 0xd2a00000 | (((Val >> 16) & 0xffff) << 5)); // movz
1533 return;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001534 case R_AARCH64_TLSDESC_LD64_LO12_NC:
Rui Ueyamaf9d56202016-06-16 16:44:52 +00001535 write32le(Loc, 0xf2800000 | ((Val & 0xffff) << 5)); // movk
1536 return;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001537 default:
Rui Ueyamaf9d56202016-06-16 16:44:52 +00001538 llvm_unreachable("unsupported relocation for TLS GD to LE relaxation");
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001539 }
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001540}
1541
Rafael Espindolae1979ae2016-06-04 23:33:31 +00001542void AArch64TargetInfo::relaxTlsGdToIe(uint8_t *Loc, uint32_t Type,
1543 uint64_t Val) const {
1544 // TLSDESC Global-Dynamic relocation are in the form:
1545 // adrp x0, :tlsdesc:v [R_AARCH64_TLSDESC_ADR_PAGE21]
1546 // ldr x1, [x0, #:tlsdesc_lo12:v [R_AARCH64_TLSDESC_LD64_LO12_NC]
1547 // add x0, x0, :tlsdesc_los:v [_AARCH64_TLSDESC_ADD_LO12_NC]
1548 // .tlsdesccall [R_AARCH64_TLSDESC_CALL]
1549 // blr x1
1550 // And it can optimized to:
1551 // adrp x0, :gottprel:v
1552 // ldr x0, [x0, :gottprel_lo12:v]
1553 // nop
1554 // nop
1555
1556 switch (Type) {
1557 case R_AARCH64_TLSDESC_ADD_LO12_NC:
1558 case R_AARCH64_TLSDESC_CALL:
1559 write32le(Loc, 0xd503201f); // nop
1560 break;
1561 case R_AARCH64_TLSDESC_ADR_PAGE21:
1562 write32le(Loc, 0x90000000); // adrp
1563 relocateOne(Loc, R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21, Val);
1564 break;
1565 case R_AARCH64_TLSDESC_LD64_LO12_NC:
1566 write32le(Loc, 0xf9400000); // ldr
1567 relocateOne(Loc, R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC, Val);
1568 break;
1569 default:
Rui Ueyamaf9d56202016-06-16 16:44:52 +00001570 llvm_unreachable("unsupported relocation for TLS GD to LE relaxation");
Rafael Espindolae1979ae2016-06-04 23:33:31 +00001571 }
1572}
1573
Rafael Espindola22ef9562016-04-13 01:40:19 +00001574void AArch64TargetInfo::relaxTlsIeToLe(uint8_t *Loc, uint32_t Type,
1575 uint64_t Val) const {
Eugene Leviant84569e62016-11-29 08:05:44 +00001576 checkUInt<32>(Loc, Val, Type);
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001577
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001578 if (Type == R_AARCH64_TLSIE_ADR_GOTTPREL_PAGE21) {
Rui Ueyamad089a432016-06-16 16:40:36 +00001579 // Generate MOVZ.
1580 uint32_t RegNo = read32le(Loc) & 0x1f;
1581 write32le(Loc, (0xd2a00000 | RegNo) | (((Val >> 16) & 0xffff) << 5));
1582 return;
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001583 }
Rui Ueyamad089a432016-06-16 16:40:36 +00001584 if (Type == R_AARCH64_TLSIE_LD64_GOTTPREL_LO12_NC) {
1585 // Generate MOVK.
1586 uint32_t RegNo = read32le(Loc) & 0x1f;
1587 write32le(Loc, (0xf2800000 | RegNo) | ((Val & 0xffff) << 5));
1588 return;
1589 }
1590 llvm_unreachable("invalid relocation for TLS IE to LE relaxation");
Adhemerval Zanella74bcf032016-02-12 13:43:03 +00001591}
1592
Rui Ueyama0fad6ea2016-07-14 05:46:22 +00001593AMDGPUTargetInfo::AMDGPUTargetInfo() {
Rui Ueyama7caf48c2016-08-31 21:04:25 +00001594 RelativeRel = R_AMDGPU_REL64;
Rui Ueyama0fad6ea2016-07-14 05:46:22 +00001595 GotRel = R_AMDGPU_ABS64;
1596 GotEntrySize = 8;
1597}
Tom Stellard391e3a82016-07-04 19:19:07 +00001598
Rafael Espindola22ef9562016-04-13 01:40:19 +00001599void AMDGPUTargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
1600 uint64_t Val) const {
Tom Stellard391e3a82016-07-04 19:19:07 +00001601 switch (Type) {
Konstantin Zhuravlyov667e245e2016-07-21 15:30:13 +00001602 case R_AMDGPU_ABS32:
Tom Stellard391e3a82016-07-04 19:19:07 +00001603 case R_AMDGPU_GOTPCREL:
Konstantin Zhuravlyovd4327e92016-10-14 04:51:43 +00001604 case R_AMDGPU_GOTPCREL32_LO:
Tom Stellard391e3a82016-07-04 19:19:07 +00001605 case R_AMDGPU_REL32:
Konstantin Zhuravlyovd4327e92016-10-14 04:51:43 +00001606 case R_AMDGPU_REL32_LO:
Tom Stellard391e3a82016-07-04 19:19:07 +00001607 write32le(Loc, Val);
1608 break;
Konstantin Zhuravlyovb625d172016-10-20 18:34:58 +00001609 case R_AMDGPU_ABS64:
1610 write64le(Loc, Val);
1611 break;
Konstantin Zhuravlyovd4327e92016-10-14 04:51:43 +00001612 case R_AMDGPU_GOTPCREL32_HI:
1613 case R_AMDGPU_REL32_HI:
1614 write32le(Loc, Val >> 32);
1615 break;
Tom Stellard391e3a82016-07-04 19:19:07 +00001616 default:
George Rimardcf5b722016-12-21 08:21:34 +00001617 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Tom Stellard391e3a82016-07-04 19:19:07 +00001618 }
Rafael Espindola22ef9562016-04-13 01:40:19 +00001619}
1620
1621RelExpr AMDGPUTargetInfo::getRelExpr(uint32_t Type, const SymbolBody &S) const {
Tom Stellard391e3a82016-07-04 19:19:07 +00001622 switch (Type) {
Konstantin Zhuravlyov667e245e2016-07-21 15:30:13 +00001623 case R_AMDGPU_ABS32:
Konstantin Zhuravlyovb625d172016-10-20 18:34:58 +00001624 case R_AMDGPU_ABS64:
Konstantin Zhuravlyov667e245e2016-07-21 15:30:13 +00001625 return R_ABS;
Tom Stellard391e3a82016-07-04 19:19:07 +00001626 case R_AMDGPU_REL32:
Konstantin Zhuravlyovd4327e92016-10-14 04:51:43 +00001627 case R_AMDGPU_REL32_LO:
1628 case R_AMDGPU_REL32_HI:
Tom Stellard391e3a82016-07-04 19:19:07 +00001629 return R_PC;
1630 case R_AMDGPU_GOTPCREL:
Konstantin Zhuravlyovd4327e92016-10-14 04:51:43 +00001631 case R_AMDGPU_GOTPCREL32_LO:
1632 case R_AMDGPU_GOTPCREL32_HI:
Tom Stellard391e3a82016-07-04 19:19:07 +00001633 return R_GOT_PC;
1634 default:
George Rimar7d9eaf72017-01-31 15:37:51 +00001635 error(toString(S.File) + ": unknown relocation type: " + toString(Type));
Rui Ueyama965bed82017-01-25 21:27:59 +00001636 return R_HINT;
Tom Stellard391e3a82016-07-04 19:19:07 +00001637 }
Tom Stellard80efb162016-01-07 03:59:08 +00001638}
1639
Peter Smith8646ced2016-06-07 09:31:52 +00001640ARMTargetInfo::ARMTargetInfo() {
1641 CopyRel = R_ARM_COPY;
1642 RelativeRel = R_ARM_RELATIVE;
1643 IRelativeRel = R_ARM_IRELATIVE;
1644 GotRel = R_ARM_GLOB_DAT;
1645 PltRel = R_ARM_JUMP_SLOT;
1646 TlsGotRel = R_ARM_TLS_TPOFF32;
1647 TlsModuleIndexRel = R_ARM_TLS_DTPMOD32;
1648 TlsOffsetRel = R_ARM_TLS_DTPOFF32;
Rui Ueyama803b1202016-07-13 18:55:14 +00001649 GotEntrySize = 4;
1650 GotPltEntrySize = 4;
Peter Smith8646ced2016-06-07 09:31:52 +00001651 PltEntrySize = 16;
Rui Ueyama4a90f572016-06-16 16:28:50 +00001652 PltHeaderSize = 20;
Peter Smith9d450252016-07-20 08:52:27 +00001653 // ARM uses Variant 1 TLS
1654 TcbSize = 8;
Rafael Espindola0f7ceda2016-07-20 17:58:07 +00001655 NeedsThunks = true;
Peter Smith8646ced2016-06-07 09:31:52 +00001656}
1657
1658RelExpr ARMTargetInfo::getRelExpr(uint32_t Type, const SymbolBody &S) const {
1659 switch (Type) {
1660 default:
1661 return R_ABS;
Peter Smithfa4d90d2016-06-16 09:53:46 +00001662 case R_ARM_THM_JUMP11:
1663 return R_PC;
Peter Smith8646ced2016-06-07 09:31:52 +00001664 case R_ARM_CALL:
1665 case R_ARM_JUMP24:
1666 case R_ARM_PC24:
1667 case R_ARM_PLT32:
Peter Smithd6486032016-10-20 09:59:26 +00001668 case R_ARM_PREL31:
Peter Smithfa4d90d2016-06-16 09:53:46 +00001669 case R_ARM_THM_JUMP19:
1670 case R_ARM_THM_JUMP24:
1671 case R_ARM_THM_CALL:
Peter Smith8646ced2016-06-07 09:31:52 +00001672 return R_PLT_PC;
1673 case R_ARM_GOTOFF32:
1674 // (S + A) - GOT_ORG
1675 return R_GOTREL;
1676 case R_ARM_GOT_BREL:
1677 // GOT(S) + A - GOT_ORG
1678 return R_GOT_OFF;
1679 case R_ARM_GOT_PREL:
Peter Smith9d450252016-07-20 08:52:27 +00001680 case R_ARM_TLS_IE32:
1681 // GOT(S) + A - P
Peter Smith8646ced2016-06-07 09:31:52 +00001682 return R_GOT_PC;
Davide Italiano38115ff2016-08-01 19:28:13 +00001683 case R_ARM_TARGET1:
1684 return Config->Target1Rel ? R_PC : R_ABS;
Peter Smith9bbd4e22016-10-17 18:12:24 +00001685 case R_ARM_TARGET2:
1686 if (Config->Target2 == Target2Policy::Rel)
1687 return R_PC;
1688 if (Config->Target2 == Target2Policy::Abs)
1689 return R_ABS;
1690 return R_GOT_PC;
Peter Smith9d450252016-07-20 08:52:27 +00001691 case R_ARM_TLS_GD32:
1692 return R_TLSGD_PC;
Peter Smith441cf5d2016-07-20 14:56:26 +00001693 case R_ARM_TLS_LDM32:
1694 return R_TLSLD_PC;
Peter Smith8646ced2016-06-07 09:31:52 +00001695 case R_ARM_BASE_PREL:
1696 // B(S) + A - P
1697 // FIXME: currently B(S) assumed to be .got, this may not hold for all
1698 // platforms.
1699 return R_GOTONLY_PC;
Peter Smithfb05cd92016-07-08 16:10:27 +00001700 case R_ARM_MOVW_PREL_NC:
1701 case R_ARM_MOVT_PREL:
Peter Smith8646ced2016-06-07 09:31:52 +00001702 case R_ARM_REL32:
Peter Smithfb05cd92016-07-08 16:10:27 +00001703 case R_ARM_THM_MOVW_PREL_NC:
1704 case R_ARM_THM_MOVT_PREL:
Peter Smith8646ced2016-06-07 09:31:52 +00001705 return R_PC;
Peter Smithd6486032016-10-20 09:59:26 +00001706 case R_ARM_NONE:
1707 return R_HINT;
Peter Smith9d450252016-07-20 08:52:27 +00001708 case R_ARM_TLS_LE32:
1709 return R_TLS;
Peter Smith8646ced2016-06-07 09:31:52 +00001710 }
1711}
1712
Eugene Leviantab024a32016-11-25 08:56:36 +00001713bool ARMTargetInfo::isPicRel(uint32_t Type) const {
1714 return (Type == R_ARM_TARGET1 && !Config->Target1Rel) ||
1715 (Type == R_ARM_ABS32);
1716}
1717
Peter Smith8646ced2016-06-07 09:31:52 +00001718uint32_t ARMTargetInfo::getDynRel(uint32_t Type) const {
Davide Italiano38115ff2016-08-01 19:28:13 +00001719 if (Type == R_ARM_TARGET1 && !Config->Target1Rel)
1720 return R_ARM_ABS32;
Peter Smith8646ced2016-06-07 09:31:52 +00001721 if (Type == R_ARM_ABS32)
1722 return Type;
Peter Smith8646ced2016-06-07 09:31:52 +00001723 // Keep it going with a dummy value so that we can find more reloc errors.
1724 return R_ARM_ABS32;
1725}
1726
Rui Ueyamac9fee5f2016-06-16 16:14:50 +00001727void ARMTargetInfo::writeGotPlt(uint8_t *Buf, const SymbolBody &) const {
Eugene Leviantff23d3e2016-11-18 14:35:03 +00001728 write32le(Buf, In<ELF32LE>::Plt->getVA());
Peter Smith8646ced2016-06-07 09:31:52 +00001729}
1730
Peter Smith4b360292016-12-09 09:59:54 +00001731void ARMTargetInfo::writeIgotPlt(uint8_t *Buf, const SymbolBody &S) const {
1732 // An ARM entry is the address of the ifunc resolver function.
1733 write32le(Buf, S.getVA<ELF32LE>());
1734}
1735
Rui Ueyama4a90f572016-06-16 16:28:50 +00001736void ARMTargetInfo::writePltHeader(uint8_t *Buf) const {
Peter Smith8646ced2016-06-07 09:31:52 +00001737 const uint8_t PltData[] = {
1738 0x04, 0xe0, 0x2d, 0xe5, // str lr, [sp,#-4]!
1739 0x04, 0xe0, 0x9f, 0xe5, // ldr lr, L2
1740 0x0e, 0xe0, 0x8f, 0xe0, // L1: add lr, pc, lr
1741 0x08, 0xf0, 0xbe, 0xe5, // ldr pc, [lr, #8]
1742 0x00, 0x00, 0x00, 0x00, // L2: .word &(.got.plt) - L1 - 8
1743 };
1744 memcpy(Buf, PltData, sizeof(PltData));
Eugene Leviant41ca3272016-11-10 09:48:29 +00001745 uint64_t GotPlt = In<ELF32LE>::GotPlt->getVA();
Eugene Leviantff23d3e2016-11-18 14:35:03 +00001746 uint64_t L1 = In<ELF32LE>::Plt->getVA() + 8;
Peter Smith8646ced2016-06-07 09:31:52 +00001747 write32le(Buf + 16, GotPlt - L1 - 8);
1748}
1749
Peter Smith96943762017-01-25 10:31:16 +00001750void ARMTargetInfo::addPltHeaderSymbols(InputSectionData *ISD) const {
1751 auto *IS = cast<InputSection<ELF32LE>>(ISD);
1752 addSyntheticLocal("$a", STT_NOTYPE, 0, 0, IS);
1753 addSyntheticLocal("$d", STT_NOTYPE, 16, 0, IS);
1754}
1755
Peter Smith8646ced2016-06-07 09:31:52 +00001756void ARMTargetInfo::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
1757 uint64_t PltEntryAddr, int32_t Index,
1758 unsigned RelOff) const {
1759 // FIXME: Using simple code sequence with simple relocations.
1760 // There is a more optimal sequence but it requires support for the group
1761 // relocations. See ELF for the ARM Architecture Appendix A.3
1762 const uint8_t PltData[] = {
1763 0x04, 0xc0, 0x9f, 0xe5, // ldr ip, L2
1764 0x0f, 0xc0, 0x8c, 0xe0, // L1: add ip, ip, pc
1765 0x00, 0xf0, 0x9c, 0xe5, // ldr pc, [ip]
1766 0x00, 0x00, 0x00, 0x00, // L2: .word Offset(&(.plt.got) - L1 - 8
1767 };
1768 memcpy(Buf, PltData, sizeof(PltData));
1769 uint64_t L1 = PltEntryAddr + 4;
1770 write32le(Buf + 12, GotEntryAddr - L1 - 8);
1771}
1772
Peter Smith96943762017-01-25 10:31:16 +00001773void ARMTargetInfo::addPltSymbols(InputSectionData *ISD, uint64_t Off) const {
1774 auto *IS = cast<InputSection<ELF32LE>>(ISD);
1775 addSyntheticLocal("$a", STT_NOTYPE, Off, 0, IS);
1776 addSyntheticLocal("$d", STT_NOTYPE, Off + 12, 0, IS);
1777}
1778
Peter Smith3a52eb02017-02-01 10:26:03 +00001779bool ARMTargetInfo::needsThunk(RelExpr Expr, uint32_t RelocType,
1780 const InputFile *File,
1781 const SymbolBody &S) const {
Peter Smith97c6d782017-01-04 09:45:45 +00001782 // If S is an undefined weak symbol in an executable we don't need a Thunk.
1783 // In a DSO calls to undefined symbols, including weak ones get PLT entries
1784 // which may need a thunk.
Peter Smithee6d7182017-01-18 09:57:14 +00001785 if (S.isUndefined() && !S.isLocal() && S.symbol()->isWeak() &&
1786 !Config->Shared)
Peter Smith3a52eb02017-02-01 10:26:03 +00001787 return false;
Peter Smithfb05cd92016-07-08 16:10:27 +00001788 // A state change from ARM to Thumb and vice versa must go through an
1789 // interworking thunk if the relocation type is not R_ARM_CALL or
1790 // R_ARM_THM_CALL.
1791 switch (RelocType) {
1792 case R_ARM_PC24:
1793 case R_ARM_PLT32:
1794 case R_ARM_JUMP24:
1795 // Source is ARM, all PLT entries are ARM so no interworking required.
1796 // Otherwise we need to interwork if Symbol has bit 0 set (Thumb).
1797 if (Expr == R_PC && ((S.getVA<ELF32LE>() & 1) == 1))
Peter Smith3a52eb02017-02-01 10:26:03 +00001798 return true;
Peter Smithfb05cd92016-07-08 16:10:27 +00001799 break;
1800 case R_ARM_THM_JUMP19:
1801 case R_ARM_THM_JUMP24:
1802 // Source is Thumb, all PLT entries are ARM so interworking is required.
1803 // Otherwise we need to interwork if Symbol has bit 0 clear (ARM).
Peter Smith3a52eb02017-02-01 10:26:03 +00001804 if (Expr == R_PLT_PC || ((S.getVA<ELF32LE>() & 1) == 0))
1805 return true;
Peter Smithfb05cd92016-07-08 16:10:27 +00001806 break;
1807 }
Peter Smith3a52eb02017-02-01 10:26:03 +00001808 return false;
Peter Smithfb05cd92016-07-08 16:10:27 +00001809}
1810
Peter Smith8646ced2016-06-07 09:31:52 +00001811void ARMTargetInfo::relocateOne(uint8_t *Loc, uint32_t Type,
1812 uint64_t Val) const {
1813 switch (Type) {
Peter Smith8646ced2016-06-07 09:31:52 +00001814 case R_ARM_ABS32:
1815 case R_ARM_BASE_PREL:
Rafael Espindolaf1e24532016-11-29 03:45:36 +00001816 case R_ARM_GLOB_DAT:
Peter Smith8646ced2016-06-07 09:31:52 +00001817 case R_ARM_GOTOFF32:
1818 case R_ARM_GOT_BREL:
1819 case R_ARM_GOT_PREL:
1820 case R_ARM_REL32:
Peter Smithd9209992016-12-13 10:42:05 +00001821 case R_ARM_RELATIVE:
Davide Italiano38115ff2016-08-01 19:28:13 +00001822 case R_ARM_TARGET1:
Peter Smith9bbd4e22016-10-17 18:12:24 +00001823 case R_ARM_TARGET2:
Peter Smith9d450252016-07-20 08:52:27 +00001824 case R_ARM_TLS_GD32:
1825 case R_ARM_TLS_IE32:
Peter Smith441cf5d2016-07-20 14:56:26 +00001826 case R_ARM_TLS_LDM32:
1827 case R_ARM_TLS_LDO32:
Peter Smith9d450252016-07-20 08:52:27 +00001828 case R_ARM_TLS_LE32:
Rafael Espindolaf1e24532016-11-29 03:45:36 +00001829 case R_ARM_TLS_TPOFF32:
Peter Smith8646ced2016-06-07 09:31:52 +00001830 write32le(Loc, Val);
1831 break;
Peter Smithde3e7382016-11-29 16:23:50 +00001832 case R_ARM_TLS_DTPMOD32:
1833 write32le(Loc, 1);
1834 break;
Peter Smith8646ced2016-06-07 09:31:52 +00001835 case R_ARM_PREL31:
Eugene Leviant84569e62016-11-29 08:05:44 +00001836 checkInt<31>(Loc, Val, Type);
Peter Smith8646ced2016-06-07 09:31:52 +00001837 write32le(Loc, (read32le(Loc) & 0x80000000) | (Val & ~0x80000000));
1838 break;
1839 case R_ARM_CALL:
Peter Smithfa4d90d2016-06-16 09:53:46 +00001840 // R_ARM_CALL is used for BL and BLX instructions, depending on the
1841 // value of bit 0 of Val, we must select a BL or BLX instruction
1842 if (Val & 1) {
1843 // If bit 0 of Val is 1 the target is Thumb, we must select a BLX.
1844 // The BLX encoding is 0xfa:H:imm24 where Val = imm24:H:'1'
Eugene Leviant84569e62016-11-29 08:05:44 +00001845 checkInt<26>(Loc, Val, Type);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001846 write32le(Loc, 0xfa000000 | // opcode
1847 ((Val & 2) << 23) | // H
1848 ((Val >> 2) & 0x00ffffff)); // imm24
1849 break;
1850 }
1851 if ((read32le(Loc) & 0xfe000000) == 0xfa000000)
1852 // BLX (always unconditional) instruction to an ARM Target, select an
1853 // unconditional BL.
1854 write32le(Loc, 0xeb000000 | (read32le(Loc) & 0x00ffffff));
George Rimara4c7e742016-10-20 08:36:42 +00001855 // fall through as BL encoding is shared with B
Peter Smith8646ced2016-06-07 09:31:52 +00001856 case R_ARM_JUMP24:
1857 case R_ARM_PC24:
1858 case R_ARM_PLT32:
Eugene Leviant84569e62016-11-29 08:05:44 +00001859 checkInt<26>(Loc, Val, Type);
Peter Smith8646ced2016-06-07 09:31:52 +00001860 write32le(Loc, (read32le(Loc) & ~0x00ffffff) | ((Val >> 2) & 0x00ffffff));
1861 break;
Peter Smithfa4d90d2016-06-16 09:53:46 +00001862 case R_ARM_THM_JUMP11:
Eugene Leviant84569e62016-11-29 08:05:44 +00001863 checkInt<12>(Loc, Val, Type);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001864 write16le(Loc, (read32le(Loc) & 0xf800) | ((Val >> 1) & 0x07ff));
1865 break;
1866 case R_ARM_THM_JUMP19:
1867 // Encoding T3: Val = S:J2:J1:imm6:imm11:0
Eugene Leviant84569e62016-11-29 08:05:44 +00001868 checkInt<21>(Loc, Val, Type);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001869 write16le(Loc,
1870 (read16le(Loc) & 0xfbc0) | // opcode cond
1871 ((Val >> 10) & 0x0400) | // S
1872 ((Val >> 12) & 0x003f)); // imm6
1873 write16le(Loc + 2,
1874 0x8000 | // opcode
1875 ((Val >> 8) & 0x0800) | // J2
1876 ((Val >> 5) & 0x2000) | // J1
1877 ((Val >> 1) & 0x07ff)); // imm11
1878 break;
1879 case R_ARM_THM_CALL:
1880 // R_ARM_THM_CALL is used for BL and BLX instructions, depending on the
1881 // value of bit 0 of Val, we must select a BL or BLX instruction
1882 if ((Val & 1) == 0) {
1883 // Ensure BLX destination is 4-byte aligned. As BLX instruction may
1884 // only be two byte aligned. This must be done before overflow check
1885 Val = alignTo(Val, 4);
1886 }
1887 // Bit 12 is 0 for BLX, 1 for BL
1888 write16le(Loc + 2, (read16le(Loc + 2) & ~0x1000) | (Val & 1) << 12);
George Rimara4c7e742016-10-20 08:36:42 +00001889 // Fall through as rest of encoding is the same as B.W
Peter Smithfa4d90d2016-06-16 09:53:46 +00001890 case R_ARM_THM_JUMP24:
1891 // Encoding B T4, BL T1, BLX T2: Val = S:I1:I2:imm10:imm11:0
1892 // FIXME: Use of I1 and I2 require v6T2ops
Eugene Leviant84569e62016-11-29 08:05:44 +00001893 checkInt<25>(Loc, Val, Type);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001894 write16le(Loc,
1895 0xf000 | // opcode
1896 ((Val >> 14) & 0x0400) | // S
1897 ((Val >> 12) & 0x03ff)); // imm10
1898 write16le(Loc + 2,
1899 (read16le(Loc + 2) & 0xd000) | // opcode
1900 (((~(Val >> 10)) ^ (Val >> 11)) & 0x2000) | // J1
1901 (((~(Val >> 11)) ^ (Val >> 13)) & 0x0800) | // J2
1902 ((Val >> 1) & 0x07ff)); // imm11
1903 break;
Peter Smith8646ced2016-06-07 09:31:52 +00001904 case R_ARM_MOVW_ABS_NC:
Peter Smithfb05cd92016-07-08 16:10:27 +00001905 case R_ARM_MOVW_PREL_NC:
Peter Smith8646ced2016-06-07 09:31:52 +00001906 write32le(Loc, (read32le(Loc) & ~0x000f0fff) | ((Val & 0xf000) << 4) |
1907 (Val & 0x0fff));
1908 break;
1909 case R_ARM_MOVT_ABS:
Peter Smithfb05cd92016-07-08 16:10:27 +00001910 case R_ARM_MOVT_PREL:
Eugene Leviant84569e62016-11-29 08:05:44 +00001911 checkInt<32>(Loc, Val, Type);
Peter Smith8646ced2016-06-07 09:31:52 +00001912 write32le(Loc, (read32le(Loc) & ~0x000f0fff) |
1913 (((Val >> 16) & 0xf000) << 4) | ((Val >> 16) & 0xfff));
1914 break;
Peter Smithfa4d90d2016-06-16 09:53:46 +00001915 case R_ARM_THM_MOVT_ABS:
Peter Smithfb05cd92016-07-08 16:10:27 +00001916 case R_ARM_THM_MOVT_PREL:
Peter Smithfa4d90d2016-06-16 09:53:46 +00001917 // Encoding T1: A = imm4:i:imm3:imm8
Eugene Leviant84569e62016-11-29 08:05:44 +00001918 checkInt<32>(Loc, Val, Type);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001919 write16le(Loc,
1920 0xf2c0 | // opcode
1921 ((Val >> 17) & 0x0400) | // i
1922 ((Val >> 28) & 0x000f)); // imm4
1923 write16le(Loc + 2,
1924 (read16le(Loc + 2) & 0x8f00) | // opcode
1925 ((Val >> 12) & 0x7000) | // imm3
1926 ((Val >> 16) & 0x00ff)); // imm8
1927 break;
1928 case R_ARM_THM_MOVW_ABS_NC:
Peter Smithfb05cd92016-07-08 16:10:27 +00001929 case R_ARM_THM_MOVW_PREL_NC:
Peter Smithfa4d90d2016-06-16 09:53:46 +00001930 // Encoding T3: A = imm4:i:imm3:imm8
1931 write16le(Loc,
1932 0xf240 | // opcode
1933 ((Val >> 1) & 0x0400) | // i
1934 ((Val >> 12) & 0x000f)); // imm4
1935 write16le(Loc + 2,
1936 (read16le(Loc + 2) & 0x8f00) | // opcode
1937 ((Val << 4) & 0x7000) | // imm3
1938 (Val & 0x00ff)); // imm8
1939 break;
Peter Smith8646ced2016-06-07 09:31:52 +00001940 default:
George Rimardcf5b722016-12-21 08:21:34 +00001941 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Peter Smith8646ced2016-06-07 09:31:52 +00001942 }
1943}
1944
Rui Ueyama640724c2017-02-06 22:32:45 +00001945int64_t ARMTargetInfo::getImplicitAddend(const uint8_t *Buf,
1946 uint32_t Type) const {
Peter Smith8646ced2016-06-07 09:31:52 +00001947 switch (Type) {
1948 default:
1949 return 0;
1950 case R_ARM_ABS32:
1951 case R_ARM_BASE_PREL:
1952 case R_ARM_GOTOFF32:
1953 case R_ARM_GOT_BREL:
1954 case R_ARM_GOT_PREL:
1955 case R_ARM_REL32:
Davide Italiano38115ff2016-08-01 19:28:13 +00001956 case R_ARM_TARGET1:
Peter Smith9bbd4e22016-10-17 18:12:24 +00001957 case R_ARM_TARGET2:
Peter Smith9d450252016-07-20 08:52:27 +00001958 case R_ARM_TLS_GD32:
Peter Smith441cf5d2016-07-20 14:56:26 +00001959 case R_ARM_TLS_LDM32:
1960 case R_ARM_TLS_LDO32:
Peter Smith9d450252016-07-20 08:52:27 +00001961 case R_ARM_TLS_IE32:
1962 case R_ARM_TLS_LE32:
Peter Smith8646ced2016-06-07 09:31:52 +00001963 return SignExtend64<32>(read32le(Buf));
Peter Smith8646ced2016-06-07 09:31:52 +00001964 case R_ARM_PREL31:
1965 return SignExtend64<31>(read32le(Buf));
Peter Smith8646ced2016-06-07 09:31:52 +00001966 case R_ARM_CALL:
1967 case R_ARM_JUMP24:
1968 case R_ARM_PC24:
1969 case R_ARM_PLT32:
Rui Ueyamabebf4892016-06-16 23:28:03 +00001970 return SignExtend64<26>(read32le(Buf) << 2);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001971 case R_ARM_THM_JUMP11:
Rui Ueyamabebf4892016-06-16 23:28:03 +00001972 return SignExtend64<12>(read16le(Buf) << 1);
Peter Smithfa4d90d2016-06-16 09:53:46 +00001973 case R_ARM_THM_JUMP19: {
1974 // Encoding T3: A = S:J2:J1:imm10:imm6:0
1975 uint16_t Hi = read16le(Buf);
1976 uint16_t Lo = read16le(Buf + 2);
1977 return SignExtend64<20>(((Hi & 0x0400) << 10) | // S
1978 ((Lo & 0x0800) << 8) | // J2
1979 ((Lo & 0x2000) << 5) | // J1
1980 ((Hi & 0x003f) << 12) | // imm6
1981 ((Lo & 0x07ff) << 1)); // imm11:0
1982 }
Peter Smithfb05cd92016-07-08 16:10:27 +00001983 case R_ARM_THM_CALL:
1984 case R_ARM_THM_JUMP24: {
Peter Smithfa4d90d2016-06-16 09:53:46 +00001985 // Encoding B T4, BL T1, BLX T2: A = S:I1:I2:imm10:imm11:0
1986 // I1 = NOT(J1 EOR S), I2 = NOT(J2 EOR S)
1987 // FIXME: I1 and I2 require v6T2ops
1988 uint16_t Hi = read16le(Buf);
1989 uint16_t Lo = read16le(Buf + 2);
1990 return SignExtend64<24>(((Hi & 0x0400) << 14) | // S
1991 (~((Lo ^ (Hi << 3)) << 10) & 0x00800000) | // I1
1992 (~((Lo ^ (Hi << 1)) << 11) & 0x00400000) | // I2
1993 ((Hi & 0x003ff) << 12) | // imm0
1994 ((Lo & 0x007ff) << 1)); // imm11:0
1995 }
1996 // ELF for the ARM Architecture 4.6.1.1 the implicit addend for MOVW and
1997 // MOVT is in the range -32768 <= A < 32768
Peter Smith8646ced2016-06-07 09:31:52 +00001998 case R_ARM_MOVW_ABS_NC:
Peter Smithfb05cd92016-07-08 16:10:27 +00001999 case R_ARM_MOVT_ABS:
2000 case R_ARM_MOVW_PREL_NC:
2001 case R_ARM_MOVT_PREL: {
Peter Smith8646ced2016-06-07 09:31:52 +00002002 uint64_t Val = read32le(Buf) & 0x000f0fff;
2003 return SignExtend64<16>(((Val & 0x000f0000) >> 4) | (Val & 0x00fff));
2004 }
Peter Smithfa4d90d2016-06-16 09:53:46 +00002005 case R_ARM_THM_MOVW_ABS_NC:
Peter Smithfb05cd92016-07-08 16:10:27 +00002006 case R_ARM_THM_MOVT_ABS:
2007 case R_ARM_THM_MOVW_PREL_NC:
2008 case R_ARM_THM_MOVT_PREL: {
Peter Smithfa4d90d2016-06-16 09:53:46 +00002009 // Encoding T3: A = imm4:i:imm3:imm8
2010 uint16_t Hi = read16le(Buf);
2011 uint16_t Lo = read16le(Buf + 2);
2012 return SignExtend64<16>(((Hi & 0x000f) << 12) | // imm4
2013 ((Hi & 0x0400) << 1) | // i
2014 ((Lo & 0x7000) >> 4) | // imm3
2015 (Lo & 0x00ff)); // imm8
2016 }
Peter Smith8646ced2016-06-07 09:31:52 +00002017 }
2018}
2019
Peter Smith441cf5d2016-07-20 14:56:26 +00002020bool ARMTargetInfo::isTlsLocalDynamicRel(uint32_t Type) const {
2021 return Type == R_ARM_TLS_LDO32 || Type == R_ARM_TLS_LDM32;
2022}
2023
Peter Smith9d450252016-07-20 08:52:27 +00002024bool ARMTargetInfo::isTlsGlobalDynamicRel(uint32_t Type) const {
2025 return Type == R_ARM_TLS_GD32;
2026}
2027
2028bool ARMTargetInfo::isTlsInitialExecRel(uint32_t Type) const {
2029 return Type == R_ARM_TLS_IE32;
2030}
2031
Simon Atanasyan9c2d7882015-10-14 14:24:46 +00002032template <class ELFT> MipsTargetInfo<ELFT>::MipsTargetInfo() {
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002033 GotPltHeaderEntriesNum = 2;
Rafael Espindolad4db0b32016-12-07 21:13:27 +00002034 DefaultMaxPageSize = 65536;
Rui Ueyama803b1202016-07-13 18:55:14 +00002035 GotEntrySize = sizeof(typename ELFT::uint);
2036 GotPltEntrySize = sizeof(typename ELFT::uint);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002037 PltEntrySize = 16;
Rui Ueyama4a90f572016-06-16 16:28:50 +00002038 PltHeaderSize = 32;
Simon Atanasyaneae66c02016-02-10 10:08:39 +00002039 CopyRel = R_MIPS_COPY;
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002040 PltRel = R_MIPS_JUMP_SLOT;
Rafael Espindola0f7ceda2016-07-20 17:58:07 +00002041 NeedsThunks = true;
Simon Atanasyan002e2442016-06-23 15:26:31 +00002042 if (ELFT::Is64Bits) {
Simon Atanasyanda83bbc2016-05-04 22:39:40 +00002043 RelativeRel = (R_MIPS_64 << 8) | R_MIPS_REL32;
Simon Atanasyan002e2442016-06-23 15:26:31 +00002044 TlsGotRel = R_MIPS_TLS_TPREL64;
2045 TlsModuleIndexRel = R_MIPS_TLS_DTPMOD64;
2046 TlsOffsetRel = R_MIPS_TLS_DTPREL64;
2047 } else {
Simon Atanasyanda83bbc2016-05-04 22:39:40 +00002048 RelativeRel = R_MIPS_REL32;
Simon Atanasyan002e2442016-06-23 15:26:31 +00002049 TlsGotRel = R_MIPS_TLS_TPREL32;
2050 TlsModuleIndexRel = R_MIPS_TLS_DTPMOD32;
2051 TlsOffsetRel = R_MIPS_TLS_DTPREL32;
2052 }
Simon Atanasyanca558ea2016-01-14 21:34:50 +00002053}
2054
2055template <class ELFT>
Rafael Espindola22ef9562016-04-13 01:40:19 +00002056RelExpr MipsTargetInfo<ELFT>::getRelExpr(uint32_t Type,
2057 const SymbolBody &S) const {
Simon Atanasyan9e0297b2016-11-05 22:58:01 +00002058 // See comment in the calculateMipsRelChain.
2059 if (ELFT::Is64Bits || Config->MipsN32Abi)
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002060 Type &= 0xff;
Rafael Espindola22ef9562016-04-13 01:40:19 +00002061 switch (Type) {
2062 default:
2063 return R_ABS;
Rafael Espindolaebb04b92016-05-04 14:44:22 +00002064 case R_MIPS_JALR:
2065 return R_HINT;
Rafael Espindola1763dc42016-04-26 22:00:04 +00002066 case R_MIPS_GPREL16:
2067 case R_MIPS_GPREL32:
Simon Atanasyan725dc142016-11-16 21:01:02 +00002068 return R_MIPS_GOTREL;
Rafael Espindolab312a742016-04-21 17:30:24 +00002069 case R_MIPS_26:
2070 return R_PLT;
Rafael Espindola22ef9562016-04-13 01:40:19 +00002071 case R_MIPS_HI16:
Simon Atanasyan1ca263c2016-04-14 21:10:05 +00002072 case R_MIPS_LO16:
Simon Atanasyanbe804552016-05-04 17:47:11 +00002073 case R_MIPS_GOT_OFST:
Simon Atanasyan6a4eb752016-12-08 06:19:47 +00002074 // R_MIPS_HI16/R_MIPS_LO16 relocations against _gp_disp calculate
2075 // offset between start of function and 'gp' value which by default
2076 // equal to the start of .got section. In that case we consider these
2077 // relocations as relative.
Rafael Espindola22ef9562016-04-13 01:40:19 +00002078 if (&S == ElfSym<ELFT>::MipsGpDisp)
2079 return R_PC;
2080 return R_ABS;
2081 case R_MIPS_PC32:
2082 case R_MIPS_PC16:
2083 case R_MIPS_PC19_S2:
2084 case R_MIPS_PC21_S2:
2085 case R_MIPS_PC26_S2:
2086 case R_MIPS_PCHI16:
2087 case R_MIPS_PCLO16:
2088 return R_PC;
Rafael Espindola5628ee72016-04-15 19:14:18 +00002089 case R_MIPS_GOT16:
Rafael Espindola5628ee72016-04-15 19:14:18 +00002090 if (S.isLocal())
Simon Atanasyan4e3a15c2016-05-15 18:13:50 +00002091 return R_MIPS_GOT_LOCAL_PAGE;
Simon Atanasyanbe804552016-05-04 17:47:11 +00002092 // fallthrough
2093 case R_MIPS_CALL16:
2094 case R_MIPS_GOT_DISP:
Simon Atanasyan002e2442016-06-23 15:26:31 +00002095 case R_MIPS_TLS_GOTTPREL:
Simon Atanasyan41325112016-06-19 21:39:37 +00002096 return R_MIPS_GOT_OFF;
Simon Atanasyanbed04bf2016-10-21 07:22:30 +00002097 case R_MIPS_CALL_HI16:
2098 case R_MIPS_CALL_LO16:
2099 case R_MIPS_GOT_HI16:
2100 case R_MIPS_GOT_LO16:
2101 return R_MIPS_GOT_OFF32;
Simon Atanasyanbe804552016-05-04 17:47:11 +00002102 case R_MIPS_GOT_PAGE:
Simon Atanasyan4e3a15c2016-05-15 18:13:50 +00002103 return R_MIPS_GOT_LOCAL_PAGE;
Simon Atanasyan002e2442016-06-23 15:26:31 +00002104 case R_MIPS_TLS_GD:
2105 return R_MIPS_TLSGD;
2106 case R_MIPS_TLS_LDM:
2107 return R_MIPS_TLSLD;
Rafael Espindola22ef9562016-04-13 01:40:19 +00002108 }
2109}
2110
Eugene Leviantab024a32016-11-25 08:56:36 +00002111template <class ELFT> bool MipsTargetInfo<ELFT>::isPicRel(uint32_t Type) const {
2112 return Type == R_MIPS_32 || Type == R_MIPS_64;
2113}
2114
Rafael Espindola22ef9562016-04-13 01:40:19 +00002115template <class ELFT>
George Rimar98b060d2016-03-06 06:01:07 +00002116uint32_t MipsTargetInfo<ELFT>::getDynRel(uint32_t Type) const {
Eugene Leviantab024a32016-11-25 08:56:36 +00002117 return RelativeRel;
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00002118}
2119
2120template <class ELFT>
Simon Atanasyan002e2442016-06-23 15:26:31 +00002121bool MipsTargetInfo<ELFT>::isTlsLocalDynamicRel(uint32_t Type) const {
2122 return Type == R_MIPS_TLS_LDM;
2123}
2124
2125template <class ELFT>
2126bool MipsTargetInfo<ELFT>::isTlsGlobalDynamicRel(uint32_t Type) const {
2127 return Type == R_MIPS_TLS_GD;
2128}
2129
2130template <class ELFT>
Rui Ueyamac9fee5f2016-06-16 16:14:50 +00002131void MipsTargetInfo<ELFT>::writeGotPlt(uint8_t *Buf, const SymbolBody &) const {
Eugene Leviantff23d3e2016-11-18 14:35:03 +00002132 write32<ELFT::TargetEndianness>(Buf, In<ELFT>::Plt->getVA());
Rafael Espindola3ef3a4c2015-09-29 23:22:16 +00002133}
Simon Atanasyan49829a12015-09-29 05:34:03 +00002134
Simon Atanasyane364e2e2016-02-04 12:31:39 +00002135template <endianness E, uint8_t BSIZE, uint8_t SHIFT>
Rafael Espindola666625b2016-04-01 14:36:09 +00002136static int64_t getPcRelocAddend(const uint8_t *Loc) {
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002137 uint32_t Instr = read32<E>(Loc);
2138 uint32_t Mask = 0xffffffff >> (32 - BSIZE);
2139 return SignExtend64<BSIZE + SHIFT>((Instr & Mask) << SHIFT);
2140}
2141
2142template <endianness E, uint8_t BSIZE, uint8_t SHIFT>
Rafael Espindola22ef9562016-04-13 01:40:19 +00002143static void applyMipsPcReloc(uint8_t *Loc, uint32_t Type, uint64_t V) {
Simon Atanasyane364e2e2016-02-04 12:31:39 +00002144 uint32_t Mask = 0xffffffff >> (32 - BSIZE);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002145 uint32_t Instr = read32<E>(Loc);
Rafael Espindola66ea7bb2016-03-31 12:09:36 +00002146 if (SHIFT > 0)
Eugene Leviant84569e62016-11-29 08:05:44 +00002147 checkAlignment<(1 << SHIFT)>(Loc, V, Type);
2148 checkInt<BSIZE + SHIFT>(Loc, V, Type);
Simon Atanasyane364e2e2016-02-04 12:31:39 +00002149 write32<E>(Loc, (Instr & ~Mask) | ((V >> SHIFT) & Mask));
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002150}
2151
George Rimara4c7e742016-10-20 08:36:42 +00002152template <endianness E> static void writeMipsHi16(uint8_t *Loc, uint64_t V) {
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002153 uint32_t Instr = read32<E>(Loc);
Simon Atanasyan97519cb2016-08-31 11:47:17 +00002154 uint16_t Res = ((V + 0x8000) >> 16) & 0xffff;
2155 write32<E>(Loc, (Instr & 0xffff0000) | Res);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002156}
2157
George Rimara4c7e742016-10-20 08:36:42 +00002158template <endianness E> static void writeMipsHigher(uint8_t *Loc, uint64_t V) {
Simon Atanasyane5532a12016-08-31 11:47:21 +00002159 uint32_t Instr = read32<E>(Loc);
2160 uint16_t Res = ((V + 0x80008000) >> 32) & 0xffff;
2161 write32<E>(Loc, (Instr & 0xffff0000) | Res);
2162}
2163
George Rimara4c7e742016-10-20 08:36:42 +00002164template <endianness E> static void writeMipsHighest(uint8_t *Loc, uint64_t V) {
Simon Atanasyane5532a12016-08-31 11:47:21 +00002165 uint32_t Instr = read32<E>(Loc);
2166 uint16_t Res = ((V + 0x800080008000) >> 48) & 0xffff;
2167 write32<E>(Loc, (Instr & 0xffff0000) | Res);
2168}
2169
George Rimara4c7e742016-10-20 08:36:42 +00002170template <endianness E> static void writeMipsLo16(uint8_t *Loc, uint64_t V) {
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00002171 uint32_t Instr = read32<E>(Loc);
2172 write32<E>(Loc, (Instr & 0xffff0000) | (V & 0xffff));
2173}
2174
Simon Atanasyana088bce2016-07-20 20:15:33 +00002175template <class ELFT> static bool isMipsR6() {
2176 const auto &FirstObj = cast<ELFFileBase<ELFT>>(*Config->FirstElf);
2177 uint32_t Arch = FirstObj.getObj().getHeader()->e_flags & EF_MIPS_ARCH;
2178 return Arch == EF_MIPS_ARCH_32R6 || Arch == EF_MIPS_ARCH_64R6;
2179}
2180
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002181template <class ELFT>
Rui Ueyama4a90f572016-06-16 16:28:50 +00002182void MipsTargetInfo<ELFT>::writePltHeader(uint8_t *Buf) const {
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002183 const endianness E = ELFT::TargetEndianness;
Simon Atanasyan9e0297b2016-11-05 22:58:01 +00002184 if (Config->MipsN32Abi) {
2185 write32<E>(Buf, 0x3c0e0000); // lui $14, %hi(&GOTPLT[0])
2186 write32<E>(Buf + 4, 0x8dd90000); // lw $25, %lo(&GOTPLT[0])($14)
2187 write32<E>(Buf + 8, 0x25ce0000); // addiu $14, $14, %lo(&GOTPLT[0])
2188 write32<E>(Buf + 12, 0x030ec023); // subu $24, $24, $14
2189 } else {
2190 write32<E>(Buf, 0x3c1c0000); // lui $28, %hi(&GOTPLT[0])
2191 write32<E>(Buf + 4, 0x8f990000); // lw $25, %lo(&GOTPLT[0])($28)
2192 write32<E>(Buf + 8, 0x279c0000); // addiu $28, $28, %lo(&GOTPLT[0])
2193 write32<E>(Buf + 12, 0x031cc023); // subu $24, $24, $28
2194 }
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002195 write32<E>(Buf + 16, 0x03e07825); // move $15, $31
2196 write32<E>(Buf + 20, 0x0018c082); // srl $24, $24, 2
2197 write32<E>(Buf + 24, 0x0320f809); // jalr $25
2198 write32<E>(Buf + 28, 0x2718fffe); // subu $24, $24, 2
Eugene Leviant41ca3272016-11-10 09:48:29 +00002199 uint64_t Got = In<ELFT>::GotPlt->getVA();
Simon Atanasyana888e672016-03-04 10:55:12 +00002200 writeMipsHi16<E>(Buf, Got);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00002201 writeMipsLo16<E>(Buf + 4, Got);
2202 writeMipsLo16<E>(Buf + 8, Got);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002203}
2204
2205template <class ELFT>
2206void MipsTargetInfo<ELFT>::writePlt(uint8_t *Buf, uint64_t GotEntryAddr,
2207 uint64_t PltEntryAddr, int32_t Index,
2208 unsigned RelOff) const {
2209 const endianness E = ELFT::TargetEndianness;
George Rimara4c7e742016-10-20 08:36:42 +00002210 write32<E>(Buf, 0x3c0f0000); // lui $15, %hi(.got.plt entry)
2211 write32<E>(Buf + 4, 0x8df90000); // l[wd] $25, %lo(.got.plt entry)($15)
2212 // jr $25
Simon Atanasyana088bce2016-07-20 20:15:33 +00002213 write32<E>(Buf + 8, isMipsR6<ELFT>() ? 0x03200009 : 0x03200008);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002214 write32<E>(Buf + 12, 0x25f80000); // addiu $24, $15, %lo(.got.plt entry)
Simon Atanasyana888e672016-03-04 10:55:12 +00002215 writeMipsHi16<E>(Buf, GotEntryAddr);
Simon Atanasyan0dcf5412016-03-04 10:55:24 +00002216 writeMipsLo16<E>(Buf + 4, GotEntryAddr);
2217 writeMipsLo16<E>(Buf + 12, GotEntryAddr);
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002218}
2219
2220template <class ELFT>
Peter Smith3a52eb02017-02-01 10:26:03 +00002221bool MipsTargetInfo<ELFT>::needsThunk(RelExpr Expr, uint32_t Type,
2222 const InputFile *File,
2223 const SymbolBody &S) const {
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002224 // Any MIPS PIC code function is invoked with its address in register $t9.
2225 // So if we have a branch instruction from non-PIC code to the PIC one
2226 // we cannot make the jump directly and need to create a small stubs
2227 // to save the target function address.
2228 // See page 3-38 ftp://www.linux-mips.org/pub/linux/mips/doc/ABI/mipsabi.pdf
2229 if (Type != R_MIPS_26)
Peter Smith3a52eb02017-02-01 10:26:03 +00002230 return false;
Peter Smithee6d7182017-01-18 09:57:14 +00002231 auto *F = dyn_cast_or_null<ELFFileBase<ELFT>>(File);
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002232 if (!F)
Peter Smith3a52eb02017-02-01 10:26:03 +00002233 return false;
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002234 // If current file has PIC code, LA25 stub is not required.
2235 if (F->getObj().getHeader()->e_flags & EF_MIPS_PIC)
Peter Smith3a52eb02017-02-01 10:26:03 +00002236 return false;
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002237 auto *D = dyn_cast<DefinedRegular<ELFT>>(&S);
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002238 // LA25 is required if target file has PIC code
2239 // or target symbol is a PIC symbol.
Peter Smith3a52eb02017-02-01 10:26:03 +00002240 return D && D->isMipsPIC();
Simon Atanasyan13f6da12016-03-31 21:26:23 +00002241}
2242
2243template <class ELFT>
Rui Ueyama640724c2017-02-06 22:32:45 +00002244int64_t MipsTargetInfo<ELFT>::getImplicitAddend(const uint8_t *Buf,
2245 uint32_t Type) const {
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002246 const endianness E = ELFT::TargetEndianness;
2247 switch (Type) {
2248 default:
2249 return 0;
2250 case R_MIPS_32:
2251 case R_MIPS_GPREL32:
Simon Atanasyan875951e2016-09-05 15:42:39 +00002252 case R_MIPS_TLS_DTPREL32:
2253 case R_MIPS_TLS_TPREL32:
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002254 return read32<E>(Buf);
2255 case R_MIPS_26:
2256 // FIXME (simon): If the relocation target symbol is not a PLT entry
2257 // we should use another expression for calculation:
2258 // ((A << 2) | (P & 0xf0000000)) >> 2
Simon Atanasyand2ae3032016-07-22 05:56:43 +00002259 return SignExtend64<28>((read32<E>(Buf) & 0x3ffffff) << 2);
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002260 case R_MIPS_GPREL16:
2261 case R_MIPS_LO16:
2262 case R_MIPS_PCLO16:
2263 case R_MIPS_TLS_DTPREL_HI16:
2264 case R_MIPS_TLS_DTPREL_LO16:
2265 case R_MIPS_TLS_TPREL_HI16:
2266 case R_MIPS_TLS_TPREL_LO16:
Rui Ueyamae517de62016-06-16 17:06:24 +00002267 return SignExtend64<16>(read32<E>(Buf));
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002268 case R_MIPS_PC16:
2269 return getPcRelocAddend<E, 16, 2>(Buf);
2270 case R_MIPS_PC19_S2:
2271 return getPcRelocAddend<E, 19, 2>(Buf);
2272 case R_MIPS_PC21_S2:
2273 return getPcRelocAddend<E, 21, 2>(Buf);
2274 case R_MIPS_PC26_S2:
2275 return getPcRelocAddend<E, 26, 2>(Buf);
2276 case R_MIPS_PC32:
2277 return getPcRelocAddend<E, 32, 0>(Buf);
2278 }
2279}
2280
Eugene Leviant84569e62016-11-29 08:05:44 +00002281static std::pair<uint32_t, uint64_t>
2282calculateMipsRelChain(uint8_t *Loc, uint32_t Type, uint64_t Val) {
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002283 // MIPS N64 ABI packs multiple relocations into the single relocation
2284 // record. In general, all up to three relocations can have arbitrary
2285 // types. In fact, Clang and GCC uses only a few combinations. For now,
2286 // we support two of them. That is allow to pass at least all LLVM
2287 // test suite cases.
2288 // <any relocation> / R_MIPS_SUB / R_MIPS_HI16 | R_MIPS_LO16
2289 // <any relocation> / R_MIPS_64 / R_MIPS_NONE
2290 // The first relocation is a 'real' relocation which is calculated
2291 // using the corresponding symbol's value. The second and the third
2292 // relocations used to modify result of the first one: extend it to
2293 // 64-bit, extract high or low part etc. For details, see part 2.9 Relocation
2294 // at the https://dmz-portal.mips.com/mw/images/8/82/007-4658-001.pdf
2295 uint32_t Type2 = (Type >> 8) & 0xff;
2296 uint32_t Type3 = (Type >> 16) & 0xff;
2297 if (Type2 == R_MIPS_NONE && Type3 == R_MIPS_NONE)
2298 return std::make_pair(Type, Val);
2299 if (Type2 == R_MIPS_64 && Type3 == R_MIPS_NONE)
2300 return std::make_pair(Type2, Val);
2301 if (Type2 == R_MIPS_SUB && (Type3 == R_MIPS_HI16 || Type3 == R_MIPS_LO16))
2302 return std::make_pair(Type3, -Val);
Eugene Leviant84569e62016-11-29 08:05:44 +00002303 error(getErrorLocation(Loc) + "unsupported relocations combination " +
2304 Twine(Type));
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002305 return std::make_pair(Type & 0xff, Val);
2306}
2307
Rafael Espindola8cc68c32016-03-30 13:18:08 +00002308template <class ELFT>
Rafael Espindola22ef9562016-04-13 01:40:19 +00002309void MipsTargetInfo<ELFT>::relocateOne(uint8_t *Loc, uint32_t Type,
2310 uint64_t Val) const {
Rafael Espindolae7e57b22015-11-09 21:43:00 +00002311 const endianness E = ELFT::TargetEndianness;
Simon Atanasyana8e9cb32016-03-17 12:36:08 +00002312 // Thread pointer and DRP offsets from the start of TLS data area.
2313 // https://www.linux-mips.org/wiki/NPTL
Simon Atanasyan875951e2016-09-05 15:42:39 +00002314 if (Type == R_MIPS_TLS_DTPREL_HI16 || Type == R_MIPS_TLS_DTPREL_LO16 ||
Simon Atanasyan643729d2016-09-05 15:42:43 +00002315 Type == R_MIPS_TLS_DTPREL32 || Type == R_MIPS_TLS_DTPREL64)
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002316 Val -= 0x8000;
Simon Atanasyan875951e2016-09-05 15:42:39 +00002317 else if (Type == R_MIPS_TLS_TPREL_HI16 || Type == R_MIPS_TLS_TPREL_LO16 ||
Simon Atanasyan643729d2016-09-05 15:42:43 +00002318 Type == R_MIPS_TLS_TPREL32 || Type == R_MIPS_TLS_TPREL64)
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002319 Val -= 0x7000;
Simon Atanasyan9e0297b2016-11-05 22:58:01 +00002320 if (ELFT::Is64Bits || Config->MipsN32Abi)
Eugene Leviant84569e62016-11-29 08:05:44 +00002321 std::tie(Type, Val) = calculateMipsRelChain(Loc, Type, Val);
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00002322 switch (Type) {
2323 case R_MIPS_32:
Simon Atanasyan9ac81982016-05-06 15:02:50 +00002324 case R_MIPS_GPREL32:
Simon Atanasyan875951e2016-09-05 15:42:39 +00002325 case R_MIPS_TLS_DTPREL32:
2326 case R_MIPS_TLS_TPREL32:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002327 write32<E>(Loc, Val);
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00002328 break;
Simon Atanasyanda83bbc2016-05-04 22:39:40 +00002329 case R_MIPS_64:
Simon Atanasyan643729d2016-09-05 15:42:43 +00002330 case R_MIPS_TLS_DTPREL64:
2331 case R_MIPS_TLS_TPREL64:
Simon Atanasyanda83bbc2016-05-04 22:39:40 +00002332 write64<E>(Loc, Val);
2333 break;
Simon Atanasyan10296c22016-05-07 07:36:47 +00002334 case R_MIPS_26:
Simon Atanasyand2ae3032016-07-22 05:56:43 +00002335 write32<E>(Loc, (read32<E>(Loc) & ~0x3ffffff) | ((Val >> 2) & 0x3ffffff));
Simon Atanasyan2287dc32016-02-10 19:57:19 +00002336 break;
Simon Atanasyanbe804552016-05-04 17:47:11 +00002337 case R_MIPS_GOT_DISP:
2338 case R_MIPS_GOT_PAGE:
Rafael Espindola58cd5db2016-04-19 22:46:03 +00002339 case R_MIPS_GOT16:
Simon Atanasyan9ac81982016-05-06 15:02:50 +00002340 case R_MIPS_GPREL16:
Simon Atanasyan002e2442016-06-23 15:26:31 +00002341 case R_MIPS_TLS_GD:
2342 case R_MIPS_TLS_LDM:
Eugene Leviant84569e62016-11-29 08:05:44 +00002343 checkInt<16>(Loc, Val, Type);
Rafael Espindola58cd5db2016-04-19 22:46:03 +00002344 // fallthrough
Rui Ueyama7ee3cf72015-12-03 20:59:51 +00002345 case R_MIPS_CALL16:
Simon Atanasyane933a8e2016-08-18 19:08:36 +00002346 case R_MIPS_CALL_LO16:
Simon Atanasyan978f91c2016-08-18 19:08:41 +00002347 case R_MIPS_GOT_LO16:
Simon Atanasyanbe804552016-05-04 17:47:11 +00002348 case R_MIPS_GOT_OFST:
Simon Atanasyan5b9ac412016-05-06 15:02:54 +00002349 case R_MIPS_LO16:
2350 case R_MIPS_PCLO16:
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002351 case R_MIPS_TLS_DTPREL_LO16:
Simon Atanasyan002e2442016-06-23 15:26:31 +00002352 case R_MIPS_TLS_GOTTPREL:
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002353 case R_MIPS_TLS_TPREL_LO16:
Rafael Espindola58cd5db2016-04-19 22:46:03 +00002354 writeMipsLo16<E>(Loc, Val);
Rui Ueyama7ee3cf72015-12-03 20:59:51 +00002355 break;
Simon Atanasyane933a8e2016-08-18 19:08:36 +00002356 case R_MIPS_CALL_HI16:
Simon Atanasyan978f91c2016-08-18 19:08:41 +00002357 case R_MIPS_GOT_HI16:
Simon Atanasyan3b377852016-03-04 10:55:20 +00002358 case R_MIPS_HI16:
Simon Atanasyan5b9ac412016-05-06 15:02:54 +00002359 case R_MIPS_PCHI16:
Simon Atanasyan8c8a5b52016-05-08 14:08:40 +00002360 case R_MIPS_TLS_DTPREL_HI16:
2361 case R_MIPS_TLS_TPREL_HI16:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002362 writeMipsHi16<E>(Loc, Val);
Simon Atanasyan09b3e362015-12-01 21:24:45 +00002363 break;
Simon Atanasyane5532a12016-08-31 11:47:21 +00002364 case R_MIPS_HIGHER:
2365 writeMipsHigher<E>(Loc, Val);
2366 break;
2367 case R_MIPS_HIGHEST:
2368 writeMipsHighest<E>(Loc, Val);
2369 break;
Simon Atanasyane4361852015-12-13 06:49:14 +00002370 case R_MIPS_JALR:
2371 // Ignore this optimization relocation for now
2372 break;
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002373 case R_MIPS_PC16:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002374 applyMipsPcReloc<E, 16, 2>(Loc, Type, Val);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002375 break;
2376 case R_MIPS_PC19_S2:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002377 applyMipsPcReloc<E, 19, 2>(Loc, Type, Val);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002378 break;
2379 case R_MIPS_PC21_S2:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002380 applyMipsPcReloc<E, 21, 2>(Loc, Type, Val);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002381 break;
2382 case R_MIPS_PC26_S2:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002383 applyMipsPcReloc<E, 26, 2>(Loc, Type, Val);
Simon Atanasyane364e2e2016-02-04 12:31:39 +00002384 break;
2385 case R_MIPS_PC32:
Rafael Espindola22ef9562016-04-13 01:40:19 +00002386 applyMipsPcReloc<E, 32, 0>(Loc, Type, Val);
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002387 break;
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00002388 default:
George Rimardcf5b722016-12-21 08:21:34 +00002389 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type));
Simon Atanasyan3b732ac2015-10-12 15:10:02 +00002390 }
2391}
Igor Kudrin15cd9ff2015-11-06 07:43:03 +00002392
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002393template <class ELFT>
Rafael Espindolab8ff59a2016-04-28 14:34:39 +00002394bool MipsTargetInfo<ELFT>::usesOnlyLowPageBits(uint32_t Type) const {
Simon Atanasyanbe804552016-05-04 17:47:11 +00002395 return Type == R_MIPS_LO16 || Type == R_MIPS_GOT_OFST;
Simon Atanasyan0fc0acf2015-12-21 17:36:40 +00002396}
Rafael Espindola01205f72015-09-22 18:19:46 +00002397}
2398}