blob: c3736691c28f369e4d2a51bc7eb511ed45b196e0 [file] [log] [blame]
Jim Grosbach06594e12012-01-16 23:50:58 +00001//===-- RuntimeDyldELF.cpp - Run-time dynamic linker for MC-JIT -*- C++ -*-===//
Eli Bendersky4c647582012-01-16 08:56:09 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implementation of ELF support for the MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "dyld"
Andrew Kayloradc70562012-10-02 21:18:39 +000015#include "RuntimeDyldELF.h"
16#include "JITRegistrar.h"
17#include "ObjectImageCommon.h"
Eli Bendersky4c647582012-01-16 08:56:09 +000018#include "llvm/ADT/IntervalMap.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/ADT/OwningPtr.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/StringRef.h"
Eli Bendersky4c647582012-01-16 08:56:09 +000022#include "llvm/ADT/Triple.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/ExecutionEngine/ObjectBuffer.h"
24#include "llvm/ExecutionEngine/ObjectImage.h"
Michael J. Spencer126973b2013-08-08 22:27:13 +000025#include "llvm/Object/ELFObjectFile.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Object/ObjectFile.h"
27#include "llvm/Support/ELF.h"
Lang Hames173c69f2014-01-08 04:09:09 +000028#include "llvm/Support/MemoryBuffer.h"
29
Eli Bendersky4c647582012-01-16 08:56:09 +000030using namespace llvm;
31using namespace llvm::object;
32
Preston Gurdcc31af92012-04-16 22:12:58 +000033namespace {
34
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +000035static inline
36error_code check(error_code Err) {
37 if (Err) {
38 report_fatal_error(Err.message());
39 }
40 return Err;
41}
42
Michael J. Spencer1a791612013-01-15 07:44:25 +000043template<class ELFT>
Michael J. Spencerbae14ce2013-01-04 20:36:28 +000044class DyldELFObject
Michael J. Spencer1a791612013-01-15 07:44:25 +000045 : public ELFObjectFile<ELFT> {
Rafael Espindola035b4162013-04-17 21:20:55 +000046 LLVM_ELF_IMPORT_TYPES_ELFT(ELFT)
Preston Gurdcc31af92012-04-16 22:12:58 +000047
Michael J. Spencer1a791612013-01-15 07:44:25 +000048 typedef Elf_Shdr_Impl<ELFT> Elf_Shdr;
49 typedef Elf_Sym_Impl<ELFT> Elf_Sym;
Michael J. Spencerbae14ce2013-01-04 20:36:28 +000050 typedef
Michael J. Spencer1a791612013-01-15 07:44:25 +000051 Elf_Rel_Impl<ELFT, false> Elf_Rel;
Michael J. Spencerbae14ce2013-01-04 20:36:28 +000052 typedef
Michael J. Spencer1a791612013-01-15 07:44:25 +000053 Elf_Rel_Impl<ELFT, true> Elf_Rela;
Preston Gurdcc31af92012-04-16 22:12:58 +000054
Michael J. Spencer1a791612013-01-15 07:44:25 +000055 typedef Elf_Ehdr_Impl<ELFT> Elf_Ehdr;
Preston Gurdcc31af92012-04-16 22:12:58 +000056
57 typedef typename ELFDataTypeTypedefHelper<
Michael J. Spencer1a791612013-01-15 07:44:25 +000058 ELFT>::value_type addr_type;
Preston Gurdcc31af92012-04-16 22:12:58 +000059
Preston Gurdcc31af92012-04-16 22:12:58 +000060public:
Andrew Kayloradc70562012-10-02 21:18:39 +000061 DyldELFObject(MemoryBuffer *Wrapper, error_code &ec);
Preston Gurdcc31af92012-04-16 22:12:58 +000062
63 void updateSectionAddress(const SectionRef &Sec, uint64_t Addr);
64 void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr);
65
Andrew Kaylor5c010902012-07-27 17:52:42 +000066 // Methods for type inquiry through isa, cast and dyn_cast
Preston Gurdcc31af92012-04-16 22:12:58 +000067 static inline bool classof(const Binary *v) {
Michael J. Spencer1a791612013-01-15 07:44:25 +000068 return (isa<ELFObjectFile<ELFT> >(v)
Michael J. Spencerbae14ce2013-01-04 20:36:28 +000069 && classof(cast<ELFObjectFile
Michael J. Spencer1a791612013-01-15 07:44:25 +000070 <ELFT> >(v)));
Preston Gurdcc31af92012-04-16 22:12:58 +000071 }
72 static inline bool classof(
Michael J. Spencer1a791612013-01-15 07:44:25 +000073 const ELFObjectFile<ELFT> *v) {
Preston Gurdcc31af92012-04-16 22:12:58 +000074 return v->isDyldType();
75 }
Preston Gurdcc31af92012-04-16 22:12:58 +000076};
77
Michael J. Spencer1a791612013-01-15 07:44:25 +000078template<class ELFT>
Andrew Kayloradc70562012-10-02 21:18:39 +000079class ELFObjectImage : public ObjectImageCommon {
Preston Gurdcc31af92012-04-16 22:12:58 +000080 protected:
Michael J. Spencer1a791612013-01-15 07:44:25 +000081 DyldELFObject<ELFT> *DyldObj;
Preston Gurdcc31af92012-04-16 22:12:58 +000082 bool Registered;
83
84 public:
Andrew Kayloradc70562012-10-02 21:18:39 +000085 ELFObjectImage(ObjectBuffer *Input,
Michael J. Spencer1a791612013-01-15 07:44:25 +000086 DyldELFObject<ELFT> *Obj)
Andrew Kayloradc70562012-10-02 21:18:39 +000087 : ObjectImageCommon(Input, Obj),
Preston Gurdcc31af92012-04-16 22:12:58 +000088 DyldObj(Obj),
89 Registered(false) {}
90
91 virtual ~ELFObjectImage() {
92 if (Registered)
93 deregisterWithDebugger();
94 }
95
96 // Subclasses can override these methods to update the image with loaded
97 // addresses for sections and common symbols
98 virtual void updateSectionAddress(const SectionRef &Sec, uint64_t Addr)
99 {
100 DyldObj->updateSectionAddress(Sec, Addr);
101 }
102
103 virtual void updateSymbolAddress(const SymbolRef &Sym, uint64_t Addr)
104 {
105 DyldObj->updateSymbolAddress(Sym, Addr);
106 }
107
108 virtual void registerWithDebugger()
109 {
Andrew Kayloradc70562012-10-02 21:18:39 +0000110 JITRegistrar::getGDBRegistrar().registerObject(*Buffer);
Preston Gurdcc31af92012-04-16 22:12:58 +0000111 Registered = true;
112 }
113 virtual void deregisterWithDebugger()
114 {
Andrew Kayloradc70562012-10-02 21:18:39 +0000115 JITRegistrar::getGDBRegistrar().deregisterObject(*Buffer);
Preston Gurdcc31af92012-04-16 22:12:58 +0000116 }
117};
118
Andrew Kayloradc70562012-10-02 21:18:39 +0000119// The MemoryBuffer passed into this constructor is just a wrapper around the
120// actual memory. Ultimately, the Binary parent class will take ownership of
121// this MemoryBuffer object but not the underlying memory.
Michael J. Spencer1a791612013-01-15 07:44:25 +0000122template<class ELFT>
123DyldELFObject<ELFT>::DyldELFObject(MemoryBuffer *Wrapper, error_code &ec)
124 : ELFObjectFile<ELFT>(Wrapper, ec) {
Preston Gurdcc31af92012-04-16 22:12:58 +0000125 this->isDyldELFObject = true;
126}
127
Michael J. Spencer1a791612013-01-15 07:44:25 +0000128template<class ELFT>
129void DyldELFObject<ELFT>::updateSectionAddress(const SectionRef &Sec,
130 uint64_t Addr) {
Preston Gurdcc31af92012-04-16 22:12:58 +0000131 DataRefImpl ShdrRef = Sec.getRawDataRefImpl();
132 Elf_Shdr *shdr = const_cast<Elf_Shdr*>(
133 reinterpret_cast<const Elf_Shdr *>(ShdrRef.p));
134
135 // This assumes the address passed in matches the target address bitness
136 // The template-based type cast handles everything else.
137 shdr->sh_addr = static_cast<addr_type>(Addr);
138}
139
Michael J. Spencer1a791612013-01-15 07:44:25 +0000140template<class ELFT>
141void DyldELFObject<ELFT>::updateSymbolAddress(const SymbolRef &SymRef,
142 uint64_t Addr) {
Preston Gurdcc31af92012-04-16 22:12:58 +0000143
144 Elf_Sym *sym = const_cast<Elf_Sym*>(
Michael J. Spencer1a791612013-01-15 07:44:25 +0000145 ELFObjectFile<ELFT>::getSymbol(SymRef.getRawDataRefImpl()));
Preston Gurdcc31af92012-04-16 22:12:58 +0000146
147 // This assumes the address passed in matches the target address bitness
148 // The template-based type cast handles everything else.
149 sym->st_value = static_cast<addr_type>(Addr);
150}
151
152} // namespace
153
Eli Bendersky4c647582012-01-16 08:56:09 +0000154namespace llvm {
155
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000156void RuntimeDyldELF::registerEHFrames() {
157 if (!MemMgr)
158 return;
159 for (int i = 0, e = UnregisteredEHFrameSections.size(); i != e; ++i) {
160 SID EHFrameSID = UnregisteredEHFrameSections[i];
161 uint8_t *EHFrameAddr = Sections[EHFrameSID].Address;
162 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].LoadAddress;
163 size_t EHFrameSize = Sections[EHFrameSID].Size;
164 MemMgr->registerEHFrames(EHFrameAddr, EHFrameLoadAddr, EHFrameSize);
Andrew Kaylorc442a762013-10-16 00:14:21 +0000165 RegisteredEHFrameSections.push_back(EHFrameSID);
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000166 }
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000167 UnregisteredEHFrameSections.clear();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000168}
169
Andrew Kaylorc442a762013-10-16 00:14:21 +0000170void RuntimeDyldELF::deregisterEHFrames() {
171 if (!MemMgr)
172 return;
173 for (int i = 0, e = RegisteredEHFrameSections.size(); i != e; ++i) {
174 SID EHFrameSID = RegisteredEHFrameSections[i];
175 uint8_t *EHFrameAddr = Sections[EHFrameSID].Address;
176 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].LoadAddress;
177 size_t EHFrameSize = Sections[EHFrameSID].Size;
178 MemMgr->deregisterEHFrames(EHFrameAddr, EHFrameLoadAddr, EHFrameSize);
179 }
180 RegisteredEHFrameSections.clear();
181}
182
Lang Hames173c69f2014-01-08 04:09:09 +0000183ObjectImage *RuntimeDyldELF::createObjectImageFromFile(object::ObjectFile *ObjFile) {
184 if (!ObjFile)
185 return NULL;
186
187 error_code ec;
188 MemoryBuffer* Buffer = MemoryBuffer::getMemBuffer(ObjFile->getData(),
189 "",
190 false);
191
192 if (ObjFile->getBytesInAddress() == 4 && ObjFile->isLittleEndian()) {
193 DyldELFObject<ELFType<support::little, 2, false> > *Obj =
194 new DyldELFObject<ELFType<support::little, 2, false> >(Buffer, ec);
195 return new ELFObjectImage<ELFType<support::little, 2, false> >(NULL, Obj);
196 }
197 else if (ObjFile->getBytesInAddress() == 4 && !ObjFile->isLittleEndian()) {
198 DyldELFObject<ELFType<support::big, 2, false> > *Obj =
199 new DyldELFObject<ELFType<support::big, 2, false> >(Buffer, ec);
200 return new ELFObjectImage<ELFType<support::big, 2, false> >(NULL, Obj);
201 }
202 else if (ObjFile->getBytesInAddress() == 8 && !ObjFile->isLittleEndian()) {
203 DyldELFObject<ELFType<support::big, 2, true> > *Obj =
204 new DyldELFObject<ELFType<support::big, 2, true> >(Buffer, ec);
205 return new ELFObjectImage<ELFType<support::big, 2, true> >(NULL, Obj);
206 }
207 else if (ObjFile->getBytesInAddress() == 8 && ObjFile->isLittleEndian()) {
208 DyldELFObject<ELFType<support::little, 2, true> > *Obj =
209 new DyldELFObject<ELFType<support::little, 2, true> >(Buffer, ec);
210 return new ELFObjectImage<ELFType<support::little, 2, true> >(NULL, Obj);
211 }
212 else
213 llvm_unreachable("Unexpected ELF format");
214}
215
Andrew Kayloradc70562012-10-02 21:18:39 +0000216ObjectImage *RuntimeDyldELF::createObjectImage(ObjectBuffer *Buffer) {
217 if (Buffer->getBufferSize() < ELF::EI_NIDENT)
218 llvm_unreachable("Unexpected ELF object size");
219 std::pair<unsigned char, unsigned char> Ident = std::make_pair(
220 (uint8_t)Buffer->getBufferStart()[ELF::EI_CLASS],
221 (uint8_t)Buffer->getBufferStart()[ELF::EI_DATA]);
Preston Gurdcc31af92012-04-16 22:12:58 +0000222 error_code ec;
223
224 if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2LSB) {
Michael J. Spencer1a791612013-01-15 07:44:25 +0000225 DyldELFObject<ELFType<support::little, 4, false> > *Obj =
226 new DyldELFObject<ELFType<support::little, 4, false> >(
227 Buffer->getMemBuffer(), ec);
228 return new ELFObjectImage<ELFType<support::little, 4, false> >(Buffer, Obj);
Preston Gurdcc31af92012-04-16 22:12:58 +0000229 }
230 else if (Ident.first == ELF::ELFCLASS32 && Ident.second == ELF::ELFDATA2MSB) {
Michael J. Spencer1a791612013-01-15 07:44:25 +0000231 DyldELFObject<ELFType<support::big, 4, false> > *Obj =
232 new DyldELFObject<ELFType<support::big, 4, false> >(
233 Buffer->getMemBuffer(), ec);
234 return new ELFObjectImage<ELFType<support::big, 4, false> >(Buffer, Obj);
Preston Gurdcc31af92012-04-16 22:12:58 +0000235 }
236 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2MSB) {
Michael J. Spencer1a791612013-01-15 07:44:25 +0000237 DyldELFObject<ELFType<support::big, 8, true> > *Obj =
238 new DyldELFObject<ELFType<support::big, 8, true> >(
239 Buffer->getMemBuffer(), ec);
240 return new ELFObjectImage<ELFType<support::big, 8, true> >(Buffer, Obj);
Preston Gurdcc31af92012-04-16 22:12:58 +0000241 }
242 else if (Ident.first == ELF::ELFCLASS64 && Ident.second == ELF::ELFDATA2LSB) {
Michael J. Spencer1a791612013-01-15 07:44:25 +0000243 DyldELFObject<ELFType<support::little, 8, true> > *Obj =
244 new DyldELFObject<ELFType<support::little, 8, true> >(
245 Buffer->getMemBuffer(), ec);
246 return new ELFObjectImage<ELFType<support::little, 8, true> >(Buffer, Obj);
Preston Gurdcc31af92012-04-16 22:12:58 +0000247 }
248 else
249 llvm_unreachable("Unexpected ELF format");
250}
251
Preston Gurdcc31af92012-04-16 22:12:58 +0000252RuntimeDyldELF::~RuntimeDyldELF() {
Preston Gurdcc31af92012-04-16 22:12:58 +0000253}
Eli Bendersky4c647582012-01-16 08:56:09 +0000254
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000255void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section,
256 uint64_t Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000257 uint64_t Value,
258 uint32_t Type,
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000259 int64_t Addend,
260 uint64_t SymOffset) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000261 switch (Type) {
262 default:
263 llvm_unreachable("Relocation type not implemented yet!");
264 break;
Eli Bendersky4c647582012-01-16 08:56:09 +0000265 case ELF::R_X86_64_64: {
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000266 uint64_t *Target = reinterpret_cast<uint64_t*>(Section.Address + Offset);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000267 *Target = Value + Addend;
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000268 DEBUG(dbgs() << "Writing " << format("%p", (Value + Addend))
269 << " at " << format("%p\n",Target));
Eli Bendersky4c647582012-01-16 08:56:09 +0000270 break;
271 }
272 case ELF::R_X86_64_32:
273 case ELF::R_X86_64_32S: {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000274 Value += Addend;
Andrew Kaylor8e87a752012-07-27 20:30:12 +0000275 assert((Type == ELF::R_X86_64_32 && (Value <= UINT32_MAX)) ||
Michael J. Spencerbae14ce2013-01-04 20:36:28 +0000276 (Type == ELF::R_X86_64_32S &&
Andrew Kaylor8e87a752012-07-27 20:30:12 +0000277 ((int64_t)Value <= INT32_MAX && (int64_t)Value >= INT32_MIN)));
Eli Bendersky4c647582012-01-16 08:56:09 +0000278 uint32_t TruncatedAddr = (Value & 0xFFFFFFFF);
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000279 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
Eli Bendersky4c647582012-01-16 08:56:09 +0000280 *Target = TruncatedAddr;
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000281 DEBUG(dbgs() << "Writing " << format("%p", TruncatedAddr)
282 << " at " << format("%p\n",Target));
Eli Bendersky4c647582012-01-16 08:56:09 +0000283 break;
284 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000285 case ELF::R_X86_64_GOTPCREL: {
286 // findGOTEntry returns the 'G + GOT' part of the relocation calculation
287 // based on the load/target address of the GOT (not the current/local addr).
288 uint64_t GOTAddr = findGOTEntry(Value, SymOffset);
289 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
290 uint64_t FinalAddress = Section.LoadAddress + Offset;
291 // The processRelocationRef method combines the symbol offset and the addend
292 // and in most cases that's what we want. For this relocation type, we need
293 // the raw addend, so we subtract the symbol offset to get it.
294 int64_t RealOffset = GOTAddr + Addend - SymOffset - FinalAddress;
295 assert(RealOffset <= INT32_MAX && RealOffset >= INT32_MIN);
296 int32_t TruncOffset = (RealOffset & 0xFFFFFFFF);
297 *Target = TruncOffset;
298 break;
299 }
Eli Bendersky4c647582012-01-16 08:56:09 +0000300 case ELF::R_X86_64_PC32: {
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000301 // Get the placeholder value from the generated object since
302 // a previous relocation attempt may have overwritten the loaded version
303 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
304 + Offset);
305 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
306 uint64_t FinalAddress = Section.LoadAddress + Offset;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000307 int64_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
Andrew Kaylor8e87a752012-07-27 20:30:12 +0000308 assert(RealOffset <= INT32_MAX && RealOffset >= INT32_MIN);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000309 int32_t TruncOffset = (RealOffset & 0xFFFFFFFF);
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000310 *Target = TruncOffset;
Eli Bendersky4c647582012-01-16 08:56:09 +0000311 break;
312 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000313 case ELF::R_X86_64_PC64: {
314 // Get the placeholder value from the generated object since
315 // a previous relocation attempt may have overwritten the loaded version
316 uint64_t *Placeholder = reinterpret_cast<uint64_t*>(Section.ObjAddress
317 + Offset);
318 uint64_t *Target = reinterpret_cast<uint64_t*>(Section.Address + Offset);
319 uint64_t FinalAddress = Section.LoadAddress + Offset;
320 *Target = *Placeholder + Value + Addend - FinalAddress;
321 break;
322 }
Eli Bendersky4c647582012-01-16 08:56:09 +0000323 }
324}
325
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000326void RuntimeDyldELF::resolveX86Relocation(const SectionEntry &Section,
327 uint64_t Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000328 uint32_t Value,
329 uint32_t Type,
330 int32_t Addend) {
331 switch (Type) {
Eli Bendersky4c647582012-01-16 08:56:09 +0000332 case ELF::R_386_32: {
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000333 // Get the placeholder value from the generated object since
334 // a previous relocation attempt may have overwritten the loaded version
335 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
336 + Offset);
337 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
338 *Target = *Placeholder + Value + Addend;
Eli Bendersky4c647582012-01-16 08:56:09 +0000339 break;
340 }
341 case ELF::R_386_PC32: {
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000342 // Get the placeholder value from the generated object since
343 // a previous relocation attempt may have overwritten the loaded version
344 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress
345 + Offset);
346 uint32_t *Target = reinterpret_cast<uint32_t*>(Section.Address + Offset);
347 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000348 uint32_t RealOffset = *Placeholder + Value + Addend - FinalAddress;
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000349 *Target = RealOffset;
Eli Bendersky4c647582012-01-16 08:56:09 +0000350 break;
351 }
352 default:
353 // There are other relocation types, but it appears these are the
Andrew Kaylor782d5c42012-07-27 18:39:47 +0000354 // only ones currently used by the LLVM ELF object writer
Craig Toppera2886c22012-02-07 05:05:23 +0000355 llvm_unreachable("Relocation type not implemented yet!");
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000356 break;
Eli Bendersky4c647582012-01-16 08:56:09 +0000357 }
358}
359
Tim Northoverfa1b2f82013-05-04 20:13:59 +0000360void RuntimeDyldELF::resolveAArch64Relocation(const SectionEntry &Section,
361 uint64_t Offset,
362 uint64_t Value,
363 uint32_t Type,
364 int64_t Addend) {
365 uint32_t *TargetPtr = reinterpret_cast<uint32_t*>(Section.Address + Offset);
366 uint64_t FinalAddress = Section.LoadAddress + Offset;
367
368 DEBUG(dbgs() << "resolveAArch64Relocation, LocalAddress: 0x"
369 << format("%llx", Section.Address + Offset)
370 << " FinalAddress: 0x" << format("%llx",FinalAddress)
371 << " Value: 0x" << format("%llx",Value)
372 << " Type: 0x" << format("%x",Type)
373 << " Addend: 0x" << format("%llx",Addend)
374 << "\n");
375
376 switch (Type) {
377 default:
378 llvm_unreachable("Relocation type not implemented yet!");
379 break;
Tim Northoverb23d8db2013-05-04 20:14:14 +0000380 case ELF::R_AARCH64_ABS64: {
381 uint64_t *TargetPtr = reinterpret_cast<uint64_t*>(Section.Address + Offset);
382 *TargetPtr = Value + Addend;
383 break;
384 }
Tim Northover5959ea32013-05-19 15:39:03 +0000385 case ELF::R_AARCH64_PREL32: {
Tim Northoverfa1b2f82013-05-04 20:13:59 +0000386 uint64_t Result = Value + Addend - FinalAddress;
Michael J. Spencer126973b2013-08-08 22:27:13 +0000387 assert(static_cast<int64_t>(Result) >= INT32_MIN &&
Tim Northoverfa1b2f82013-05-04 20:13:59 +0000388 static_cast<int64_t>(Result) <= UINT32_MAX);
389 *TargetPtr = static_cast<uint32_t>(Result & 0xffffffffU);
390 break;
391 }
Tim Northover37cde972013-05-04 20:14:09 +0000392 case ELF::R_AARCH64_CALL26: // fallthrough
393 case ELF::R_AARCH64_JUMP26: {
394 // Operation: S+A-P. Set Call or B immediate value to bits fff_fffc of the
395 // calculation.
396 uint64_t BranchImm = Value + Addend - FinalAddress;
397
398 // "Check that -2^27 <= result < 2^27".
Michael J. Spencer126973b2013-08-08 22:27:13 +0000399 assert(-(1LL << 27) <= static_cast<int64_t>(BranchImm) &&
Tim Northover37cde972013-05-04 20:14:09 +0000400 static_cast<int64_t>(BranchImm) < (1LL << 27));
Tim Northover5959ea32013-05-19 15:39:03 +0000401
402 // AArch64 code is emitted with .rela relocations. The data already in any
403 // bits affected by the relocation on entry is garbage.
404 *TargetPtr &= 0xfc000000U;
Tim Northover37cde972013-05-04 20:14:09 +0000405 // Immediate goes in bits 25:0 of B and BL.
406 *TargetPtr |= static_cast<uint32_t>(BranchImm & 0xffffffcU) >> 2;
407 break;
408 }
Tim Northover4d01c1e2013-05-04 20:14:04 +0000409 case ELF::R_AARCH64_MOVW_UABS_G3: {
410 uint64_t Result = Value + Addend;
Tim Northover5959ea32013-05-19 15:39:03 +0000411
412 // AArch64 code is emitted with .rela relocations. The data already in any
413 // bits affected by the relocation on entry is garbage.
Tim Northoverca8a0072013-07-25 12:42:52 +0000414 *TargetPtr &= 0xffe0001fU;
Tim Northover4d01c1e2013-05-04 20:14:04 +0000415 // Immediate goes in bits 20:5 of MOVZ/MOVK instruction
416 *TargetPtr |= Result >> (48 - 5);
Tim Northover8625fd82013-07-01 19:23:10 +0000417 // Shift must be "lsl #48", in bits 22:21
418 assert((*TargetPtr >> 21 & 0x3) == 3 && "invalid shift for relocation");
Tim Northover4d01c1e2013-05-04 20:14:04 +0000419 break;
420 }
421 case ELF::R_AARCH64_MOVW_UABS_G2_NC: {
422 uint64_t Result = Value + Addend;
Tim Northover5959ea32013-05-19 15:39:03 +0000423
Tim Northover5959ea32013-05-19 15:39:03 +0000424 // AArch64 code is emitted with .rela relocations. The data already in any
425 // bits affected by the relocation on entry is garbage.
Tim Northoverca8a0072013-07-25 12:42:52 +0000426 *TargetPtr &= 0xffe0001fU;
Tim Northover4d01c1e2013-05-04 20:14:04 +0000427 // Immediate goes in bits 20:5 of MOVZ/MOVK instruction
428 *TargetPtr |= ((Result & 0xffff00000000ULL) >> (32 - 5));
Tim Northover8625fd82013-07-01 19:23:10 +0000429 // Shift must be "lsl #32", in bits 22:21
430 assert((*TargetPtr >> 21 & 0x3) == 2 && "invalid shift for relocation");
Tim Northover4d01c1e2013-05-04 20:14:04 +0000431 break;
432 }
433 case ELF::R_AARCH64_MOVW_UABS_G1_NC: {
434 uint64_t Result = Value + Addend;
Tim Northover5959ea32013-05-19 15:39:03 +0000435
436 // AArch64 code is emitted with .rela relocations. The data already in any
437 // bits affected by the relocation on entry is garbage.
Tim Northoverca8a0072013-07-25 12:42:52 +0000438 *TargetPtr &= 0xffe0001fU;
Tim Northover4d01c1e2013-05-04 20:14:04 +0000439 // Immediate goes in bits 20:5 of MOVZ/MOVK instruction
440 *TargetPtr |= ((Result & 0xffff0000U) >> (16 - 5));
Tim Northover8625fd82013-07-01 19:23:10 +0000441 // Shift must be "lsl #16", in bits 22:2
442 assert((*TargetPtr >> 21 & 0x3) == 1 && "invalid shift for relocation");
Tim Northover4d01c1e2013-05-04 20:14:04 +0000443 break;
444 }
445 case ELF::R_AARCH64_MOVW_UABS_G0_NC: {
446 uint64_t Result = Value + Addend;
Tim Northover5959ea32013-05-19 15:39:03 +0000447
448 // AArch64 code is emitted with .rela relocations. The data already in any
449 // bits affected by the relocation on entry is garbage.
Tim Northoverca8a0072013-07-25 12:42:52 +0000450 *TargetPtr &= 0xffe0001fU;
Tim Northover4d01c1e2013-05-04 20:14:04 +0000451 // Immediate goes in bits 20:5 of MOVZ/MOVK instruction
452 *TargetPtr |= ((Result & 0xffffU) << 5);
Tim Northover8625fd82013-07-01 19:23:10 +0000453 // Shift must be "lsl #0", in bits 22:21.
454 assert((*TargetPtr >> 21 & 0x3) == 0 && "invalid shift for relocation");
Tim Northover4d01c1e2013-05-04 20:14:04 +0000455 break;
456 }
Bradley Smith9d808492014-02-11 12:59:09 +0000457 case ELF::R_AARCH64_ADR_PREL_PG_HI21: {
458 // Operation: Page(S+A) - Page(P)
459 uint64_t Result = ((Value + Addend) & ~0xfffULL) - (FinalAddress & ~0xfffULL);
460
461 // Check that -2^32 <= X < 2^32
462 assert(static_cast<int64_t>(Result) >= (-1LL << 32) &&
463 static_cast<int64_t>(Result) < (1LL << 32) &&
464 "overflow check failed for relocation");
465
466 // AArch64 code is emitted with .rela relocations. The data already in any
467 // bits affected by the relocation on entry is garbage.
468 *TargetPtr &= 0x9f00001fU;
469 // Immediate goes in bits 30:29 + 5:23 of ADRP instruction, taken
470 // from bits 32:12 of X.
471 *TargetPtr |= ((Result & 0x3000U) << (29 - 12));
472 *TargetPtr |= ((Result & 0x1ffffc000ULL) >> (14 - 5));
473 break;
474 }
475 case ELF::R_AARCH64_LDST32_ABS_LO12_NC: {
476 // Operation: S + A
477 uint64_t Result = Value + Addend;
478
479 // AArch64 code is emitted with .rela relocations. The data already in any
480 // bits affected by the relocation on entry is garbage.
481 *TargetPtr &= 0xffc003ffU;
482 // Immediate goes in bits 21:10 of LD/ST instruction, taken
483 // from bits 11:2 of X
484 *TargetPtr |= ((Result & 0xffc) << (10 - 2));
485 break;
486 }
487 case ELF::R_AARCH64_LDST64_ABS_LO12_NC: {
488 // Operation: S + A
489 uint64_t Result = Value + Addend;
490
491 // AArch64 code is emitted with .rela relocations. The data already in any
492 // bits affected by the relocation on entry is garbage.
493 *TargetPtr &= 0xffc003ffU;
494 // Immediate goes in bits 21:10 of LD/ST instruction, taken
495 // from bits 11:3 of X
496 *TargetPtr |= ((Result & 0xff8) << (10 - 3));
497 break;
498 }
Tim Northoverfa1b2f82013-05-04 20:13:59 +0000499 }
500}
501
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000502void RuntimeDyldELF::resolveARMRelocation(const SectionEntry &Section,
503 uint64_t Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000504 uint32_t Value,
505 uint32_t Type,
506 int32_t Addend) {
507 // TODO: Add Thumb relocations.
Tim Northover3b684d82013-05-28 19:48:19 +0000508 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress +
509 Offset);
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000510 uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset);
511 uint32_t FinalAddress = ((Section.LoadAddress + Offset) & 0xFFFFFFFF);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000512 Value += Addend;
513
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000514 DEBUG(dbgs() << "resolveARMRelocation, LocalAddress: "
515 << Section.Address + Offset
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000516 << " FinalAddress: " << format("%p",FinalAddress)
517 << " Value: " << format("%x",Value)
518 << " Type: " << format("%x",Type)
519 << " Addend: " << format("%x",Addend)
520 << "\n");
521
522 switch(Type) {
523 default:
524 llvm_unreachable("Not implemented relocation type!");
525
Renato Golin8cea6e82014-01-29 11:50:56 +0000526 case ELF::R_ARM_NONE:
527 break;
Michael J. Spencerbae14ce2013-01-04 20:36:28 +0000528 // Write a 32bit value to relocation address, taking into account the
Tim Northover471cbb72012-10-03 16:29:42 +0000529 // implicit addend encoded in the target.
Renato Golin8cea6e82014-01-29 11:50:56 +0000530 case ELF::R_ARM_PREL31:
Tim Northover3b684d82013-05-28 19:48:19 +0000531 case ELF::R_ARM_TARGET1:
532 case ELF::R_ARM_ABS32:
533 *TargetPtr = *Placeholder + Value;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000534 break;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000535 // Write first 16 bit of 32 bit value to the mov instruction.
536 // Last 4 bit should be shifted.
Tim Northover3b684d82013-05-28 19:48:19 +0000537 case ELF::R_ARM_MOVW_ABS_NC:
Tim Northover471cbb72012-10-03 16:29:42 +0000538 // We are not expecting any other addend in the relocation address.
Michael J. Spencerbae14ce2013-01-04 20:36:28 +0000539 // Using 0x000F0FFF because MOVW has its 16 bit immediate split into 2
Tim Northover471cbb72012-10-03 16:29:42 +0000540 // non-contiguous fields.
Tim Northover3b684d82013-05-28 19:48:19 +0000541 assert((*Placeholder & 0x000F0FFF) == 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000542 Value = Value & 0xFFFF;
Tim Northover3b684d82013-05-28 19:48:19 +0000543 *TargetPtr = *Placeholder | (Value & 0xFFF);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000544 *TargetPtr |= ((Value >> 12) & 0xF) << 16;
545 break;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000546 // Write last 16 bit of 32 bit value to the mov instruction.
547 // Last 4 bit should be shifted.
Tim Northover3b684d82013-05-28 19:48:19 +0000548 case ELF::R_ARM_MOVT_ABS:
Tim Northover471cbb72012-10-03 16:29:42 +0000549 // We are not expecting any other addend in the relocation address.
550 // Use 0x000F0FFF for the same reason as R_ARM_MOVW_ABS_NC.
Tim Northover3b684d82013-05-28 19:48:19 +0000551 assert((*Placeholder & 0x000F0FFF) == 0);
552
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000553 Value = (Value >> 16) & 0xFFFF;
Tim Northover3b684d82013-05-28 19:48:19 +0000554 *TargetPtr = *Placeholder | (Value & 0xFFF);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000555 *TargetPtr |= ((Value >> 12) & 0xF) << 16;
556 break;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000557 // Write 24 bit relative value to the branch instruction.
558 case ELF::R_ARM_PC24 : // Fall through.
559 case ELF::R_ARM_CALL : // Fall through.
Tim Northover3b684d82013-05-28 19:48:19 +0000560 case ELF::R_ARM_JUMP24: {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000561 int32_t RelValue = static_cast<int32_t>(Value - FinalAddress - 8);
562 RelValue = (RelValue & 0x03FFFFFC) >> 2;
Tim Northover3b684d82013-05-28 19:48:19 +0000563 assert((*TargetPtr & 0xFFFFFF) == 0xFFFFFE);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000564 *TargetPtr &= 0xFF000000;
565 *TargetPtr |= RelValue;
566 break;
567 }
Tim Northover3b684d82013-05-28 19:48:19 +0000568 case ELF::R_ARM_PRIVATE_0:
569 // This relocation is reserved by the ARM ELF ABI for internal use. We
570 // appropriate it here to act as an R_ARM_ABS32 without any addend for use
571 // in the stubs created during JIT (which can't put an addend into the
572 // original object file).
573 *TargetPtr = Value;
574 break;
575 }
Eli Bendersky4c647582012-01-16 08:56:09 +0000576}
577
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000578void RuntimeDyldELF::resolveMIPSRelocation(const SectionEntry &Section,
579 uint64_t Offset,
Akira Hatanaka11dfbe12012-08-20 17:53:24 +0000580 uint32_t Value,
581 uint32_t Type,
582 int32_t Addend) {
Akira Hatanaka2e236242013-07-24 01:58:40 +0000583 uint32_t *Placeholder = reinterpret_cast<uint32_t*>(Section.ObjAddress +
584 Offset);
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000585 uint32_t* TargetPtr = (uint32_t*)(Section.Address + Offset);
Akira Hatanaka111174b2012-08-17 21:28:04 +0000586 Value += Addend;
587
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000588 DEBUG(dbgs() << "resolveMipselocation, LocalAddress: "
589 << Section.Address + Offset
590 << " FinalAddress: "
591 << format("%p",Section.LoadAddress + Offset)
Akira Hatanaka111174b2012-08-17 21:28:04 +0000592 << " Value: " << format("%x",Value)
593 << " Type: " << format("%x",Type)
594 << " Addend: " << format("%x",Addend)
595 << "\n");
596
597 switch(Type) {
598 default:
599 llvm_unreachable("Not implemented relocation type!");
600 break;
601 case ELF::R_MIPS_32:
Akira Hatanaka2e236242013-07-24 01:58:40 +0000602 *TargetPtr = Value + (*Placeholder);
Akira Hatanaka111174b2012-08-17 21:28:04 +0000603 break;
604 case ELF::R_MIPS_26:
Akira Hatanaka2e236242013-07-24 01:58:40 +0000605 *TargetPtr = ((*Placeholder) & 0xfc000000) | (( Value & 0x0fffffff) >> 2);
Akira Hatanaka111174b2012-08-17 21:28:04 +0000606 break;
607 case ELF::R_MIPS_HI16:
608 // Get the higher 16-bits. Also add 1 if bit 15 is 1.
Akira Hatanaka2e236242013-07-24 01:58:40 +0000609 Value += ((*Placeholder) & 0x0000ffff) << 16;
610 *TargetPtr = ((*Placeholder) & 0xffff0000) |
611 (((Value + 0x8000) >> 16) & 0xffff);
612 break;
613 case ELF::R_MIPS_LO16:
614 Value += ((*Placeholder) & 0x0000ffff);
615 *TargetPtr = ((*Placeholder) & 0xffff0000) | (Value & 0xffff);
616 break;
617 case ELF::R_MIPS_UNUSED1:
618 // Similar to ELF::R_ARM_PRIVATE_0, R_MIPS_UNUSED1 and R_MIPS_UNUSED2
619 // are used for internal JIT purpose. These relocations are similar to
620 // R_MIPS_HI16 and R_MIPS_LO16, but they do not take any addend into
621 // account.
Akira Hatanaka111174b2012-08-17 21:28:04 +0000622 *TargetPtr = ((*TargetPtr) & 0xffff0000) |
623 (((Value + 0x8000) >> 16) & 0xffff);
624 break;
Akira Hatanaka2e236242013-07-24 01:58:40 +0000625 case ELF::R_MIPS_UNUSED2:
Akira Hatanaka111174b2012-08-17 21:28:04 +0000626 *TargetPtr = ((*TargetPtr) & 0xffff0000) | (Value & 0xffff);
627 break;
628 }
629}
630
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000631// Return the .TOC. section address to R_PPC64_TOC relocations.
632uint64_t RuntimeDyldELF::findPPC64TOC() const {
633 // The TOC consists of sections .got, .toc, .tocbss, .plt in that
634 // order. The TOC starts where the first of these sections starts.
635 SectionList::const_iterator it = Sections.begin();
636 SectionList::const_iterator ite = Sections.end();
637 for (; it != ite; ++it) {
638 if (it->Name == ".got" ||
639 it->Name == ".toc" ||
640 it->Name == ".tocbss" ||
641 it->Name == ".plt")
642 break;
643 }
644 if (it == ite) {
645 // This may happen for
646 // * references to TOC base base (sym@toc, .odp relocation) without
647 // a .toc directive.
648 // In this case just use the first section (which is usually
649 // the .odp) since the code won't reference the .toc base
650 // directly.
651 it = Sections.begin();
652 }
653 assert (it != ite);
654 // Per the ppc64-elf-linux ABI, The TOC base is TOC value plus 0x8000
655 // thus permitting a full 64 Kbytes segment.
656 return it->LoadAddress + 0x8000;
657}
658
659// Returns the sections and offset associated with the ODP entry referenced
660// by Symbol.
661void RuntimeDyldELF::findOPDEntrySection(ObjectImage &Obj,
662 ObjSectionToIDMap &LocalSections,
663 RelocationValueRef &Rel) {
664 // Get the ELF symbol value (st_value) to compare with Relocation offset in
665 // .opd entries
Rafael Espindola5e812af2014-01-30 02:49:50 +0000666 for (section_iterator si = Obj.begin_sections(), se = Obj.end_sections();
667 si != se; ++si) {
Rafael Espindolaa61f1e92013-06-03 19:37:34 +0000668 section_iterator RelSecI = si->getRelocatedSection();
669 if (RelSecI == Obj.end_sections())
670 continue;
671
672 StringRef RelSectionName;
673 check(RelSecI->getName(RelSectionName));
674 if (RelSectionName != ".opd")
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000675 continue;
676
Rafael Espindolab5155a52014-02-10 20:24:04 +0000677 for (relocation_iterator i = si->relocation_begin(),
678 e = si->relocation_end(); i != e;) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000679 // The R_PPC64_ADDR64 relocation indicates the first field
680 // of a .opd entry
681 uint64_t TypeFunc;
682 check(i->getType(TypeFunc));
683 if (TypeFunc != ELF::R_PPC64_ADDR64) {
Rafael Espindola5e812af2014-01-30 02:49:50 +0000684 ++i;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000685 continue;
686 }
687
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000688 uint64_t TargetSymbolOffset;
Rafael Espindola806f0062013-06-05 01:33:53 +0000689 symbol_iterator TargetSymbol = i->getSymbol();
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000690 check(i->getOffset(TargetSymbolOffset));
Rafael Espindola0d15f732013-05-09 03:39:05 +0000691 int64_t Addend;
692 check(getELFRelocationAddend(*i, Addend));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000693
Rafael Espindola5e812af2014-01-30 02:49:50 +0000694 ++i;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000695 if (i == e)
696 break;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000697
698 // Just check if following relocation is a R_PPC64_TOC
699 uint64_t TypeTOC;
700 check(i->getType(TypeTOC));
701 if (TypeTOC != ELF::R_PPC64_TOC)
702 continue;
703
704 // Finally compares the Symbol value and the target symbol offset
705 // to check if this .opd entry refers to the symbol the relocation
706 // points to.
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000707 if (Rel.Addend != (int64_t)TargetSymbolOffset)
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000708 continue;
709
710 section_iterator tsi(Obj.end_sections());
Rafael Espindola806f0062013-06-05 01:33:53 +0000711 check(TargetSymbol->getSection(tsi));
Lang Hames9b2dc932014-02-18 21:46:39 +0000712 bool IsCode = false;
713 tsi->isText(IsCode);
714 Rel.SectionID = findOrEmitSection(Obj, (*tsi), IsCode, LocalSections);
Rafael Espindola0d15f732013-05-09 03:39:05 +0000715 Rel.Addend = (intptr_t)Addend;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000716 return;
717 }
718 }
719 llvm_unreachable("Attempting to get address of ODP entry!");
720}
721
722// Relocation masks following the #lo(value), #hi(value), #higher(value),
723// and #highest(value) macros defined in section 4.5.1. Relocation Types
724// in PPC-elf64abi document.
725//
726static inline
727uint16_t applyPPClo (uint64_t value)
728{
729 return value & 0xffff;
730}
731
732static inline
733uint16_t applyPPChi (uint64_t value)
734{
735 return (value >> 16) & 0xffff;
736}
737
738static inline
739uint16_t applyPPChigher (uint64_t value)
740{
741 return (value >> 32) & 0xffff;
742}
743
744static inline
745uint16_t applyPPChighest (uint64_t value)
746{
747 return (value >> 48) & 0xffff;
748}
749
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000750void RuntimeDyldELF::resolvePPC64Relocation(const SectionEntry &Section,
751 uint64_t Offset,
752 uint64_t Value,
753 uint32_t Type,
754 int64_t Addend) {
755 uint8_t* LocalAddress = Section.Address + Offset;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000756 switch (Type) {
757 default:
758 llvm_unreachable("Relocation type not implemented yet!");
759 break;
760 case ELF::R_PPC64_ADDR16_LO :
761 writeInt16BE(LocalAddress, applyPPClo (Value + Addend));
762 break;
763 case ELF::R_PPC64_ADDR16_HI :
764 writeInt16BE(LocalAddress, applyPPChi (Value + Addend));
765 break;
766 case ELF::R_PPC64_ADDR16_HIGHER :
767 writeInt16BE(LocalAddress, applyPPChigher (Value + Addend));
768 break;
769 case ELF::R_PPC64_ADDR16_HIGHEST :
770 writeInt16BE(LocalAddress, applyPPChighest (Value + Addend));
771 break;
772 case ELF::R_PPC64_ADDR14 : {
773 assert(((Value + Addend) & 3) == 0);
774 // Preserve the AA/LK bits in the branch instruction
775 uint8_t aalk = *(LocalAddress+3);
776 writeInt16BE(LocalAddress + 2, (aalk & 3) | ((Value + Addend) & 0xfffc));
777 } break;
Adhemerval Zanella9b0b7812013-01-04 19:08:13 +0000778 case ELF::R_PPC64_ADDR32 : {
779 int32_t Result = static_cast<int32_t>(Value + Addend);
780 if (SignExtend32<32>(Result) != Result)
Adhemerval Zanella1ae22482013-01-09 17:08:15 +0000781 llvm_unreachable("Relocation R_PPC64_ADDR32 overflow");
Adhemerval Zanella9b0b7812013-01-04 19:08:13 +0000782 writeInt32BE(LocalAddress, Result);
783 } break;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000784 case ELF::R_PPC64_REL24 : {
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000785 uint64_t FinalAddress = (Section.LoadAddress + Offset);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000786 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend);
787 if (SignExtend32<24>(delta) != delta)
788 llvm_unreachable("Relocation R_PPC64_REL24 overflow");
789 // Generates a 'bl <address>' instruction
790 writeInt32BE(LocalAddress, 0x48000001 | (delta & 0x03FFFFFC));
791 } break;
Adhemerval Zanella1ae22482013-01-09 17:08:15 +0000792 case ELF::R_PPC64_REL32 : {
793 uint64_t FinalAddress = (Section.LoadAddress + Offset);
794 int32_t delta = static_cast<int32_t>(Value - FinalAddress + Addend);
795 if (SignExtend32<32>(delta) != delta)
796 llvm_unreachable("Relocation R_PPC64_REL32 overflow");
797 writeInt32BE(LocalAddress, delta);
798 } break;
Adhemerval Zanellae8bd03d2013-05-06 17:21:23 +0000799 case ELF::R_PPC64_REL64: {
800 uint64_t FinalAddress = (Section.LoadAddress + Offset);
801 uint64_t Delta = Value - FinalAddress + Addend;
802 writeInt64BE(LocalAddress, Delta);
803 } break;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000804 case ELF::R_PPC64_ADDR64 :
805 writeInt64BE(LocalAddress, Value + Addend);
806 break;
807 case ELF::R_PPC64_TOC :
808 writeInt64BE(LocalAddress, findPPC64TOC());
809 break;
810 case ELF::R_PPC64_TOC16 : {
811 uint64_t TOCStart = findPPC64TOC();
812 Value = applyPPClo((Value + Addend) - TOCStart);
813 writeInt16BE(LocalAddress, applyPPClo(Value));
814 } break;
815 case ELF::R_PPC64_TOC16_DS : {
816 uint64_t TOCStart = findPPC64TOC();
817 Value = ((Value + Addend) - TOCStart);
818 writeInt16BE(LocalAddress, applyPPClo(Value));
819 } break;
820 }
821}
822
Richard Sandifordca044082013-05-03 14:15:35 +0000823void RuntimeDyldELF::resolveSystemZRelocation(const SectionEntry &Section,
824 uint64_t Offset,
825 uint64_t Value,
826 uint32_t Type,
827 int64_t Addend) {
828 uint8_t *LocalAddress = Section.Address + Offset;
829 switch (Type) {
830 default:
831 llvm_unreachable("Relocation type not implemented yet!");
832 break;
833 case ELF::R_390_PC16DBL:
834 case ELF::R_390_PLT16DBL: {
835 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
836 assert(int16_t(Delta / 2) * 2 == Delta && "R_390_PC16DBL overflow");
837 writeInt16BE(LocalAddress, Delta / 2);
838 break;
839 }
840 case ELF::R_390_PC32DBL:
841 case ELF::R_390_PLT32DBL: {
842 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
843 assert(int32_t(Delta / 2) * 2 == Delta && "R_390_PC32DBL overflow");
844 writeInt32BE(LocalAddress, Delta / 2);
845 break;
846 }
847 case ELF::R_390_PC32: {
848 int64_t Delta = (Value + Addend) - (Section.LoadAddress + Offset);
849 assert(int32_t(Delta) == Delta && "R_390_PC32 overflow");
850 writeInt32BE(LocalAddress, Delta);
851 break;
852 }
853 case ELF::R_390_64:
854 writeInt64BE(LocalAddress, Value + Addend);
855 break;
856 }
857}
858
Andrew Kaylor5f3a9982013-08-19 19:38:06 +0000859// The target location for the relocation is described by RE.SectionID and
860// RE.Offset. RE.SectionID can be used to find the SectionEntry. Each
861// SectionEntry has three members describing its location.
862// SectionEntry::Address is the address at which the section has been loaded
863// into memory in the current (host) process. SectionEntry::LoadAddress is the
864// address that the section will have in the target process.
865// SectionEntry::ObjAddress is the address of the bits for this section in the
866// original emitted object image (also in the current address space).
867//
868// Relocations will be applied as if the section were loaded at
869// SectionEntry::LoadAddress, but they will be applied at an address based
870// on SectionEntry::Address. SectionEntry::ObjAddress will be used to refer to
871// Target memory contents if they are required for value calculations.
872//
873// The Value parameter here is the load address of the symbol for the
874// relocation to be applied. For relocations which refer to symbols in the
875// current object Value will be the LoadAddress of the section in which
876// the symbol resides (RE.Addend provides additional information about the
877// symbol location). For external symbols, Value will be the address of the
878// symbol in the target address space.
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000879void RuntimeDyldELF::resolveRelocation(const RelocationEntry &RE,
Andrew Kaylor5f3a9982013-08-19 19:38:06 +0000880 uint64_t Value) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000881 const SectionEntry &Section = Sections[RE.SectionID];
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000882 return resolveRelocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
883 RE.SymOffset);
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000884}
885
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000886void RuntimeDyldELF::resolveRelocation(const SectionEntry &Section,
887 uint64_t Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000888 uint64_t Value,
889 uint32_t Type,
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000890 int64_t Addend,
891 uint64_t SymOffset) {
Eli Bendersky4c647582012-01-16 08:56:09 +0000892 switch (Arch) {
893 case Triple::x86_64:
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000894 resolveX86_64Relocation(Section, Offset, Value, Type, Addend, SymOffset);
Eli Bendersky4c647582012-01-16 08:56:09 +0000895 break;
896 case Triple::x86:
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000897 resolveX86Relocation(Section, Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000898 (uint32_t)(Value & 0xffffffffL), Type,
899 (uint32_t)(Addend & 0xffffffffL));
Eli Bendersky4c647582012-01-16 08:56:09 +0000900 break;
Tim Northoverfa1b2f82013-05-04 20:13:59 +0000901 case Triple::aarch64:
902 resolveAArch64Relocation(Section, Offset, Value, Type, Addend);
903 break;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000904 case Triple::arm: // Fall through.
905 case Triple::thumb:
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000906 resolveARMRelocation(Section, Offset,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000907 (uint32_t)(Value & 0xffffffffL), Type,
908 (uint32_t)(Addend & 0xffffffffL));
Eli Bendersky4c647582012-01-16 08:56:09 +0000909 break;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000910 case Triple::mips: // Fall through.
911 case Triple::mipsel:
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000912 resolveMIPSRelocation(Section, Offset,
Akira Hatanaka11dfbe12012-08-20 17:53:24 +0000913 (uint32_t)(Value & 0xffffffffL), Type,
914 (uint32_t)(Addend & 0xffffffffL));
Akira Hatanaka111174b2012-08-17 21:28:04 +0000915 break;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000916 case Triple::ppc64: // Fall through.
917 case Triple::ppc64le:
Andrew Kaylorfb05a502012-11-02 19:45:23 +0000918 resolvePPC64Relocation(Section, Offset, Value, Type, Addend);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000919 break;
Richard Sandifordca044082013-05-03 14:15:35 +0000920 case Triple::systemz:
921 resolveSystemZRelocation(Section, Offset, Value, Type, Addend);
922 break;
Craig Toppera2886c22012-02-07 05:05:23 +0000923 default: llvm_unreachable("Unsupported CPU type!");
Eli Bendersky4c647582012-01-16 08:56:09 +0000924 }
925}
926
Rafael Espindola4d4a48d2013-04-29 14:44:23 +0000927void RuntimeDyldELF::processRelocationRef(unsigned SectionID,
Rafael Espindola37008942013-04-29 19:03:21 +0000928 RelocationRef RelI,
Preston Gurdcc31af92012-04-16 22:12:58 +0000929 ObjectImage &Obj,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000930 ObjSectionToIDMap &ObjSectionToID,
Eli Benderskyfc079082012-05-01 06:58:59 +0000931 const SymbolTableMap &Symbols,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000932 StubMap &Stubs) {
Rafael Espindola4d4a48d2013-04-29 14:44:23 +0000933 uint64_t RelType;
Rafael Espindola37008942013-04-29 19:03:21 +0000934 Check(RelI.getType(RelType));
Rafael Espindola4d4a48d2013-04-29 14:44:23 +0000935 int64_t Addend;
Rafael Espindola0d15f732013-05-09 03:39:05 +0000936 Check(getELFRelocationAddend(RelI, Addend));
Rafael Espindola806f0062013-06-05 01:33:53 +0000937 symbol_iterator Symbol = RelI.getSymbol();
Eli Bendersky667b8792012-05-01 10:41:12 +0000938
939 // Obtain the symbol name which is referenced in the relocation
940 StringRef TargetName;
Rafael Espindola75954472013-06-05 02:55:01 +0000941 if (Symbol != Obj.end_symbols())
942 Symbol->getName(TargetName);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000943 DEBUG(dbgs() << "\t\tRelType: " << RelType
944 << " Addend: " << Addend
945 << " TargetName: " << TargetName
946 << "\n");
Eli Bendersky667b8792012-05-01 10:41:12 +0000947 RelocationValueRef Value;
948 // First search for the symbol in the local symbol table
Rafael Espindola75954472013-06-05 02:55:01 +0000949 SymbolTableMap::const_iterator lsi = Symbols.end();
950 SymbolRef::Type SymType = SymbolRef::ST_Unknown;
951 if (Symbol != Obj.end_symbols()) {
952 lsi = Symbols.find(TargetName.data());
953 Symbol->getType(SymType);
954 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000955 if (lsi != Symbols.end()) {
956 Value.SectionID = lsi->second.first;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000957 Value.Offset = lsi->second.second;
Ulrich Weigand78e97652013-04-05 13:29:04 +0000958 Value.Addend = lsi->second.second + Addend;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000959 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000960 // Search for the symbol in the global symbol table
Rafael Espindola75954472013-06-05 02:55:01 +0000961 SymbolTableMap::const_iterator gsi = GlobalSymbolTable.end();
962 if (Symbol != Obj.end_symbols())
963 gsi = GlobalSymbolTable.find(TargetName.data());
Eli Benderskyfc079082012-05-01 06:58:59 +0000964 if (gsi != GlobalSymbolTable.end()) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000965 Value.SectionID = gsi->second.first;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000966 Value.Offset = gsi->second.second;
Ulrich Weigand78e97652013-04-05 13:29:04 +0000967 Value.Addend = gsi->second.second + Addend;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000968 } else {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000969 switch (SymType) {
970 case SymbolRef::ST_Debug: {
971 // TODO: Now ELF SymbolRef::ST_Debug = STT_SECTION, it's not obviously
972 // and can be changed by another developers. Maybe best way is add
973 // a new symbol type ST_Section to SymbolRef and use it.
Eli Bendersky667b8792012-05-01 10:41:12 +0000974 section_iterator si(Obj.end_sections());
Rafael Espindola806f0062013-06-05 01:33:53 +0000975 Symbol->getSection(si);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000976 if (si == Obj.end_sections())
977 llvm_unreachable("Symbol section not found, bad object file format!");
978 DEBUG(dbgs() << "\t\tThis is section symbol\n");
Andrew Kaylor47328722012-10-12 23:53:16 +0000979 // Default to 'true' in case isText fails (though it never does).
980 bool isCode = true;
981 si->isText(isCode);
Michael J. Spencerbae14ce2013-01-04 20:36:28 +0000982 Value.SectionID = findOrEmitSection(Obj,
983 (*si),
984 isCode,
Andrew Kaylor47328722012-10-12 23:53:16 +0000985 ObjSectionToID);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000986 Value.Addend = Addend;
987 break;
988 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000989 case SymbolRef::ST_Data:
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000990 case SymbolRef::ST_Unknown: {
991 Value.SymbolName = TargetName.data();
992 Value.Addend = Addend;
Richard Mittonad6d3492013-08-16 18:54:26 +0000993
994 // Absolute relocations will have a zero symbol ID (STN_UNDEF), which
995 // will manifest here as a NULL symbol name.
996 // We can set this as a valid (but empty) symbol name, and rely
997 // on addRelocationForSymbol to handle this.
998 if (!Value.SymbolName)
999 Value.SymbolName = "";
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001000 break;
1001 }
1002 default:
1003 llvm_unreachable("Unresolved symbol type!");
1004 break;
1005 }
1006 }
Eli Bendersky4c647582012-01-16 08:56:09 +00001007 }
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001008 uint64_t Offset;
Rafael Espindola37008942013-04-29 19:03:21 +00001009 Check(RelI.getOffset(Offset));
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001010
1011 DEBUG(dbgs() << "\t\tSectionID: " << SectionID
1012 << " Offset: " << Offset
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001013 << "\n");
Tim Northover37cde972013-05-04 20:14:09 +00001014 if (Arch == Triple::aarch64 &&
1015 (RelType == ELF::R_AARCH64_CALL26 ||
1016 RelType == ELF::R_AARCH64_JUMP26)) {
1017 // This is an AArch64 branch relocation, need to use a stub function.
1018 DEBUG(dbgs() << "\t\tThis is an AArch64 branch relocation.");
1019 SectionEntry &Section = Sections[SectionID];
1020
1021 // Look for an existing stub.
1022 StubMap::const_iterator i = Stubs.find(Value);
1023 if (i != Stubs.end()) {
1024 resolveRelocation(Section, Offset,
1025 (uint64_t)Section.Address + i->second, RelType, 0);
1026 DEBUG(dbgs() << " Stub function found\n");
1027 } else {
1028 // Create a new stub function.
1029 DEBUG(dbgs() << " Create a new stub function\n");
1030 Stubs[Value] = Section.StubOffset;
1031 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
1032 Section.StubOffset);
1033
1034 RelocationEntry REmovz_g3(SectionID,
1035 StubTargetAddr - Section.Address,
1036 ELF::R_AARCH64_MOVW_UABS_G3, Value.Addend);
1037 RelocationEntry REmovk_g2(SectionID,
1038 StubTargetAddr - Section.Address + 4,
1039 ELF::R_AARCH64_MOVW_UABS_G2_NC, Value.Addend);
1040 RelocationEntry REmovk_g1(SectionID,
1041 StubTargetAddr - Section.Address + 8,
1042 ELF::R_AARCH64_MOVW_UABS_G1_NC, Value.Addend);
1043 RelocationEntry REmovk_g0(SectionID,
1044 StubTargetAddr - Section.Address + 12,
1045 ELF::R_AARCH64_MOVW_UABS_G0_NC, Value.Addend);
1046
1047 if (Value.SymbolName) {
1048 addRelocationForSymbol(REmovz_g3, Value.SymbolName);
1049 addRelocationForSymbol(REmovk_g2, Value.SymbolName);
1050 addRelocationForSymbol(REmovk_g1, Value.SymbolName);
1051 addRelocationForSymbol(REmovk_g0, Value.SymbolName);
1052 } else {
1053 addRelocationForSection(REmovz_g3, Value.SectionID);
1054 addRelocationForSection(REmovk_g2, Value.SectionID);
1055 addRelocationForSection(REmovk_g1, Value.SectionID);
1056 addRelocationForSection(REmovk_g0, Value.SectionID);
1057 }
1058 resolveRelocation(Section, Offset,
1059 (uint64_t)Section.Address + Section.StubOffset,
1060 RelType, 0);
1061 Section.StubOffset += getMaxStubSize();
1062 }
1063 } else if (Arch == Triple::arm &&
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001064 (RelType == ELF::R_ARM_PC24 ||
1065 RelType == ELF::R_ARM_CALL ||
1066 RelType == ELF::R_ARM_JUMP24)) {
1067 // This is an ARM branch relocation, need to use a stub function.
1068 DEBUG(dbgs() << "\t\tThis is an ARM branch relocation.");
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001069 SectionEntry &Section = Sections[SectionID];
Eli Bendersky4c647582012-01-16 08:56:09 +00001070
Eric Christopherc33f6222012-10-23 17:19:15 +00001071 // Look for an existing stub.
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001072 StubMap::const_iterator i = Stubs.find(Value);
1073 if (i != Stubs.end()) {
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001074 resolveRelocation(Section, Offset,
Andrew Kaylorfb05a502012-11-02 19:45:23 +00001075 (uint64_t)Section.Address + i->second, RelType, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001076 DEBUG(dbgs() << " Stub function found\n");
1077 } else {
1078 // Create a new stub function.
1079 DEBUG(dbgs() << " Create a new stub function\n");
1080 Stubs[Value] = Section.StubOffset;
1081 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
1082 Section.StubOffset);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001083 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address,
Tim Northover3b684d82013-05-28 19:48:19 +00001084 ELF::R_ARM_PRIVATE_0, Value.Addend);
Eli Bendersky667b8792012-05-01 10:41:12 +00001085 if (Value.SymbolName)
1086 addRelocationForSymbol(RE, Value.SymbolName);
1087 else
1088 addRelocationForSection(RE, Value.SectionID);
1089
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001090 resolveRelocation(Section, Offset,
Andrew Kaylorfb05a502012-11-02 19:45:23 +00001091 (uint64_t)Section.Address + Section.StubOffset,
1092 RelType, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +00001093 Section.StubOffset += getMaxStubSize();
1094 }
Akira Hatanakaa667aad2012-12-03 23:12:19 +00001095 } else if ((Arch == Triple::mipsel || Arch == Triple::mips) &&
1096 RelType == ELF::R_MIPS_26) {
Akira Hatanaka111174b2012-08-17 21:28:04 +00001097 // This is an Mips branch relocation, need to use a stub function.
1098 DEBUG(dbgs() << "\t\tThis is a Mips branch relocation.");
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001099 SectionEntry &Section = Sections[SectionID];
1100 uint8_t *Target = Section.Address + Offset;
Akira Hatanaka111174b2012-08-17 21:28:04 +00001101 uint32_t *TargetAddress = (uint32_t *)Target;
1102
1103 // Extract the addend from the instruction.
1104 uint32_t Addend = ((*TargetAddress) & 0x03ffffff) << 2;
1105
1106 Value.Addend += Addend;
1107
1108 // Look up for existing stub.
1109 StubMap::const_iterator i = Stubs.find(Value);
1110 if (i != Stubs.end()) {
Petar Jovanovic45115f82013-11-19 21:56:00 +00001111 RelocationEntry RE(SectionID, Offset, RelType, i->second);
1112 addRelocationForSection(RE, SectionID);
Akira Hatanaka111174b2012-08-17 21:28:04 +00001113 DEBUG(dbgs() << " Stub function found\n");
1114 } else {
1115 // Create a new stub function.
1116 DEBUG(dbgs() << " Create a new stub function\n");
1117 Stubs[Value] = Section.StubOffset;
1118 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
1119 Section.StubOffset);
1120
1121 // Creating Hi and Lo relocations for the filled stub instructions.
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001122 RelocationEntry REHi(SectionID,
Akira Hatanaka111174b2012-08-17 21:28:04 +00001123 StubTargetAddr - Section.Address,
Akira Hatanaka2e236242013-07-24 01:58:40 +00001124 ELF::R_MIPS_UNUSED1, Value.Addend);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001125 RelocationEntry RELo(SectionID,
Akira Hatanaka111174b2012-08-17 21:28:04 +00001126 StubTargetAddr - Section.Address + 4,
Akira Hatanaka2e236242013-07-24 01:58:40 +00001127 ELF::R_MIPS_UNUSED2, Value.Addend);
Akira Hatanaka111174b2012-08-17 21:28:04 +00001128
1129 if (Value.SymbolName) {
1130 addRelocationForSymbol(REHi, Value.SymbolName);
1131 addRelocationForSymbol(RELo, Value.SymbolName);
1132 } else {
1133 addRelocationForSection(REHi, Value.SectionID);
1134 addRelocationForSection(RELo, Value.SectionID);
1135 }
1136
Petar Jovanovic45115f82013-11-19 21:56:00 +00001137 RelocationEntry RE(SectionID, Offset, RelType, Section.StubOffset);
1138 addRelocationForSection(RE, SectionID);
Akira Hatanaka111174b2012-08-17 21:28:04 +00001139 Section.StubOffset += getMaxStubSize();
1140 }
Bill Schmidt0a9170d2013-07-26 01:35:43 +00001141 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001142 if (RelType == ELF::R_PPC64_REL24) {
1143 // A PPC branch relocation will need a stub function if the target is
1144 // an external symbol (Symbol::ST_Unknown) or if the target address
1145 // is not within the signed 24-bits branch address.
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001146 SectionEntry &Section = Sections[SectionID];
1147 uint8_t *Target = Section.Address + Offset;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001148 bool RangeOverflow = false;
1149 if (SymType != SymbolRef::ST_Unknown) {
1150 // A function call may points to the .opd entry, so the final symbol value
1151 // in calculated based in the relocation values in .opd section.
1152 findOPDEntrySection(Obj, ObjSectionToID, Value);
1153 uint8_t *RelocTarget = Sections[Value.SectionID].Address + Value.Addend;
1154 int32_t delta = static_cast<int32_t>(Target - RelocTarget);
1155 // If it is within 24-bits branch range, just set the branch target
1156 if (SignExtend32<24>(delta) == delta) {
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001157 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001158 if (Value.SymbolName)
1159 addRelocationForSymbol(RE, Value.SymbolName);
1160 else
1161 addRelocationForSection(RE, Value.SectionID);
1162 } else {
1163 RangeOverflow = true;
1164 }
1165 }
1166 if (SymType == SymbolRef::ST_Unknown || RangeOverflow == true) {
1167 // It is an external symbol (SymbolRef::ST_Unknown) or within a range
1168 // larger than 24-bits.
1169 StubMap::const_iterator i = Stubs.find(Value);
1170 if (i != Stubs.end()) {
1171 // Symbol function stub already created, just relocate to it
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001172 resolveRelocation(Section, Offset,
Andrew Kaylorfb05a502012-11-02 19:45:23 +00001173 (uint64_t)Section.Address + i->second, RelType, 0);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001174 DEBUG(dbgs() << " Stub function found\n");
1175 } else {
1176 // Create a new stub function.
1177 DEBUG(dbgs() << " Create a new stub function\n");
1178 Stubs[Value] = Section.StubOffset;
1179 uint8_t *StubTargetAddr = createStubFunction(Section.Address +
1180 Section.StubOffset);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001181 RelocationEntry RE(SectionID, StubTargetAddr - Section.Address,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001182 ELF::R_PPC64_ADDR64, Value.Addend);
1183
1184 // Generates the 64-bits address loads as exemplified in section
1185 // 4.5.1 in PPC64 ELF ABI.
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001186 RelocationEntry REhst(SectionID,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001187 StubTargetAddr - Section.Address + 2,
1188 ELF::R_PPC64_ADDR16_HIGHEST, Value.Addend);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001189 RelocationEntry REhr(SectionID,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001190 StubTargetAddr - Section.Address + 6,
1191 ELF::R_PPC64_ADDR16_HIGHER, Value.Addend);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001192 RelocationEntry REh(SectionID,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001193 StubTargetAddr - Section.Address + 14,
1194 ELF::R_PPC64_ADDR16_HI, Value.Addend);
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001195 RelocationEntry REl(SectionID,
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001196 StubTargetAddr - Section.Address + 18,
1197 ELF::R_PPC64_ADDR16_LO, Value.Addend);
1198
1199 if (Value.SymbolName) {
1200 addRelocationForSymbol(REhst, Value.SymbolName);
1201 addRelocationForSymbol(REhr, Value.SymbolName);
1202 addRelocationForSymbol(REh, Value.SymbolName);
1203 addRelocationForSymbol(REl, Value.SymbolName);
1204 } else {
1205 addRelocationForSection(REhst, Value.SectionID);
1206 addRelocationForSection(REhr, Value.SectionID);
1207 addRelocationForSection(REh, Value.SectionID);
1208 addRelocationForSection(REl, Value.SectionID);
1209 }
1210
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001211 resolveRelocation(Section, Offset,
Andrew Kaylorfb05a502012-11-02 19:45:23 +00001212 (uint64_t)Section.Address + Section.StubOffset,
1213 RelType, 0);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001214 if (SymType == SymbolRef::ST_Unknown)
1215 // Restore the TOC for external calls
1216 writeInt32BE(Target+4, 0xE8410028); // ld r2,40(r1)
1217 Section.StubOffset += getMaxStubSize();
1218 }
1219 }
1220 } else {
Rafael Espindola4d4a48d2013-04-29 14:44:23 +00001221 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001222 // Extra check to avoid relocation againt empty symbols (usually
1223 // the R_PPC64_TOC).
Richard Mittonad6d3492013-08-16 18:54:26 +00001224 if (SymType != SymbolRef::ST_Unknown && TargetName.empty())
1225 Value.SymbolName = NULL;
1226
1227 if (Value.SymbolName)
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +00001228 addRelocationForSymbol(RE, Value.SymbolName);
1229 else
1230 addRelocationForSection(RE, Value.SectionID);
1231 }
Richard Sandifordca044082013-05-03 14:15:35 +00001232 } else if (Arch == Triple::systemz &&
1233 (RelType == ELF::R_390_PLT32DBL ||
1234 RelType == ELF::R_390_GOTENT)) {
1235 // Create function stubs for both PLT and GOT references, regardless of
1236 // whether the GOT reference is to data or code. The stub contains the
1237 // full address of the symbol, as needed by GOT references, and the
1238 // executable part only adds an overhead of 8 bytes.
1239 //
1240 // We could try to conserve space by allocating the code and data
1241 // parts of the stub separately. However, as things stand, we allocate
1242 // a stub for every relocation, so using a GOT in JIT code should be
1243 // no less space efficient than using an explicit constant pool.
1244 DEBUG(dbgs() << "\t\tThis is a SystemZ indirect relocation.");
1245 SectionEntry &Section = Sections[SectionID];
1246
1247 // Look for an existing stub.
1248 StubMap::const_iterator i = Stubs.find(Value);
1249 uintptr_t StubAddress;
1250 if (i != Stubs.end()) {
1251 StubAddress = uintptr_t(Section.Address) + i->second;
1252 DEBUG(dbgs() << " Stub function found\n");
1253 } else {
1254 // Create a new stub function.
1255 DEBUG(dbgs() << " Create a new stub function\n");
1256
1257 uintptr_t BaseAddress = uintptr_t(Section.Address);
1258 uintptr_t StubAlignment = getStubAlignment();
1259 StubAddress = (BaseAddress + Section.StubOffset +
1260 StubAlignment - 1) & -StubAlignment;
1261 unsigned StubOffset = StubAddress - BaseAddress;
1262
1263 Stubs[Value] = StubOffset;
1264 createStubFunction((uint8_t *)StubAddress);
1265 RelocationEntry RE(SectionID, StubOffset + 8,
1266 ELF::R_390_64, Value.Addend - Addend);
1267 if (Value.SymbolName)
1268 addRelocationForSymbol(RE, Value.SymbolName);
1269 else
1270 addRelocationForSection(RE, Value.SectionID);
1271 Section.StubOffset = StubOffset + getMaxStubSize();
1272 }
1273
1274 if (RelType == ELF::R_390_GOTENT)
1275 resolveRelocation(Section, Offset, StubAddress + 8,
1276 ELF::R_390_PC32DBL, Addend);
1277 else
1278 resolveRelocation(Section, Offset, StubAddress, RelType, Addend);
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001279 } else if (Arch == Triple::x86_64 && RelType == ELF::R_X86_64_PLT32) {
1280 // The way the PLT relocations normally work is that the linker allocates the
1281 // PLT and this relocation makes a PC-relative call into the PLT. The PLT
1282 // entry will then jump to an address provided by the GOT. On first call, the
1283 // GOT address will point back into PLT code that resolves the symbol. After
1284 // the first call, the GOT entry points to the actual function.
1285 //
1286 // For local functions we're ignoring all of that here and just replacing
1287 // the PLT32 relocation type with PC32, which will translate the relocation
1288 // into a PC-relative call directly to the function. For external symbols we
1289 // can't be sure the function will be within 2^32 bytes of the call site, so
1290 // we need to create a stub, which calls into the GOT. This case is
1291 // equivalent to the usual PLT implementation except that we use the stub
1292 // mechanism in RuntimeDyld (which puts stubs at the end of the section)
1293 // rather than allocating a PLT section.
1294 if (Value.SymbolName) {
1295 // This is a call to an external function.
1296 // Look for an existing stub.
1297 SectionEntry &Section = Sections[SectionID];
1298 StubMap::const_iterator i = Stubs.find(Value);
1299 uintptr_t StubAddress;
1300 if (i != Stubs.end()) {
1301 StubAddress = uintptr_t(Section.Address) + i->second;
1302 DEBUG(dbgs() << " Stub function found\n");
1303 } else {
1304 // Create a new stub function (equivalent to a PLT entry).
1305 DEBUG(dbgs() << " Create a new stub function\n");
1306
1307 uintptr_t BaseAddress = uintptr_t(Section.Address);
1308 uintptr_t StubAlignment = getStubAlignment();
1309 StubAddress = (BaseAddress + Section.StubOffset +
1310 StubAlignment - 1) & -StubAlignment;
1311 unsigned StubOffset = StubAddress - BaseAddress;
1312 Stubs[Value] = StubOffset;
1313 createStubFunction((uint8_t *)StubAddress);
1314
1315 // Create a GOT entry for the external function.
1316 GOTEntries.push_back(Value);
1317
1318 // Make our stub function a relative call to the GOT entry.
1319 RelocationEntry RE(SectionID, StubOffset + 2,
1320 ELF::R_X86_64_GOTPCREL, -4);
1321 addRelocationForSymbol(RE, Value.SymbolName);
1322
1323 // Bump our stub offset counter
1324 Section.StubOffset = StubOffset + getMaxStubSize();
1325 }
1326
1327 // Make the target call a call into the stub table.
1328 resolveRelocation(Section, Offset, StubAddress,
1329 ELF::R_X86_64_PC32, Addend);
1330 } else {
1331 RelocationEntry RE(SectionID, Offset, ELF::R_X86_64_PC32, Value.Addend,
1332 Value.Offset);
1333 addRelocationForSection(RE, Value.SectionID);
1334 }
Eli Bendersky667b8792012-05-01 10:41:12 +00001335 } else {
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001336 if (Arch == Triple::x86_64 && RelType == ELF::R_X86_64_GOTPCREL) {
1337 GOTEntries.push_back(Value);
1338 }
1339 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend, Value.Offset);
Eli Bendersky667b8792012-05-01 10:41:12 +00001340 if (Value.SymbolName)
1341 addRelocationForSymbol(RE, Value.SymbolName);
1342 else
1343 addRelocationForSection(RE, Value.SectionID);
1344 }
Jim Grosbacheff0a402012-01-16 22:26:39 +00001345}
1346
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001347void RuntimeDyldELF::updateGOTEntries(StringRef Name, uint64_t Addr) {
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001348
1349 SmallVectorImpl<std::pair<SID, GOTRelocations> >::iterator it;
1350 SmallVectorImpl<std::pair<SID, GOTRelocations> >::iterator end = GOTs.end();
1351
1352 for (it = GOTs.begin(); it != end; ++it) {
1353 GOTRelocations &GOTEntries = it->second;
1354 for (int i = 0, e = GOTEntries.size(); i != e; ++i) {
1355 if (GOTEntries[i].SymbolName != 0 && GOTEntries[i].SymbolName == Name) {
1356 GOTEntries[i].Offset = Addr;
1357 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001358 }
1359 }
1360}
1361
1362size_t RuntimeDyldELF::getGOTEntrySize() {
1363 // We don't use the GOT in all of these cases, but it's essentially free
1364 // to put them all here.
1365 size_t Result = 0;
1366 switch (Arch) {
1367 case Triple::x86_64:
1368 case Triple::aarch64:
1369 case Triple::ppc64:
1370 case Triple::ppc64le:
1371 case Triple::systemz:
1372 Result = sizeof(uint64_t);
1373 break;
1374 case Triple::x86:
1375 case Triple::arm:
1376 case Triple::thumb:
1377 case Triple::mips:
1378 case Triple::mipsel:
1379 Result = sizeof(uint32_t);
1380 break;
1381 default: llvm_unreachable("Unsupported CPU type!");
1382 }
1383 return Result;
1384}
1385
1386uint64_t RuntimeDyldELF::findGOTEntry(uint64_t LoadAddress,
1387 uint64_t Offset) {
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001388
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001389 const size_t GOTEntrySize = getGOTEntrySize();
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001390
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001391 SmallVectorImpl<std::pair<SID, GOTRelocations> >::const_iterator it;
1392 SmallVectorImpl<std::pair<SID, GOTRelocations> >::const_iterator end = GOTs.end();
1393
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001394 int GOTIndex = -1;
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001395 for (it = GOTs.begin(); it != end; ++it) {
1396 SID GOTSectionID = it->first;
1397 const GOTRelocations &GOTEntries = it->second;
1398
1399 // Find the matching entry in our vector.
1400 uint64_t SymbolOffset = 0;
1401 for (int i = 0, e = GOTEntries.size(); i != e; ++i) {
1402 if (GOTEntries[i].SymbolName == 0) {
1403 if (getSectionLoadAddress(GOTEntries[i].SectionID) == LoadAddress &&
1404 GOTEntries[i].Offset == Offset) {
1405 GOTIndex = i;
1406 SymbolOffset = GOTEntries[i].Offset;
1407 break;
1408 }
1409 } else {
1410 // GOT entries for external symbols use the addend as the address when
1411 // the external symbol has been resolved.
1412 if (GOTEntries[i].Offset == LoadAddress) {
1413 GOTIndex = i;
1414 // Don't use the Addend here. The relocation handler will use it.
1415 break;
1416 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001417 }
1418 }
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001419
1420 if (GOTIndex != -1) {
1421 if (GOTEntrySize == sizeof(uint64_t)) {
1422 uint64_t *LocalGOTAddr = (uint64_t*)getSectionAddress(GOTSectionID);
1423 // Fill in this entry with the address of the symbol being referenced.
1424 LocalGOTAddr[GOTIndex] = LoadAddress + SymbolOffset;
1425 } else {
1426 uint32_t *LocalGOTAddr = (uint32_t*)getSectionAddress(GOTSectionID);
1427 // Fill in this entry with the address of the symbol being referenced.
1428 LocalGOTAddr[GOTIndex] = (uint32_t)(LoadAddress + SymbolOffset);
1429 }
1430
1431 // Calculate the load address of this entry
1432 return getSectionLoadAddress(GOTSectionID) + (GOTIndex * GOTEntrySize);
1433 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001434 }
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001435
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001436 assert(GOTIndex != -1 && "Unable to find requested GOT entry.");
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001437 return 0;
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001438}
1439
Andrew Kaylor7bb13442013-10-11 21:25:48 +00001440void RuntimeDyldELF::finalizeLoad(ObjSectionToIDMap &SectionMap) {
1441 // If necessary, allocate the global offset table
Andrew Kaylor480dcb32013-10-05 01:52:09 +00001442 if (MemMgr) {
1443 // Allocate the GOT if necessary
1444 size_t numGOTEntries = GOTEntries.size();
1445 if (numGOTEntries != 0) {
1446 // Allocate memory for the section
1447 unsigned SectionID = Sections.size();
1448 size_t TotalSize = numGOTEntries * getGOTEntrySize();
1449 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, getGOTEntrySize(),
1450 SectionID, ".got", false);
1451 if (!Addr)
1452 report_fatal_error("Unable to allocate memory for GOT!");
1453
1454 GOTs.push_back(std::make_pair(SectionID, GOTEntries));
1455 Sections.push_back(SectionEntry(".got", Addr, TotalSize, 0));
1456 // For now, initialize all GOT entries to zero. We'll fill them in as
1457 // needed when GOT-based relocations are applied.
1458 memset(Addr, 0, TotalSize);
1459 }
1460 }
1461 else {
1462 report_fatal_error("Unable to allocate memory for GOT!");
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001463 }
Andrew Kaylor7bb13442013-10-11 21:25:48 +00001464
1465 // Look for and record the EH frame section.
1466 ObjSectionToIDMap::iterator i, e;
1467 for (i = SectionMap.begin(), e = SectionMap.end(); i != e; ++i) {
1468 const SectionRef &Section = i->first;
1469 StringRef Name;
1470 Section.getName(Name);
1471 if (Name == ".eh_frame") {
1472 UnregisteredEHFrameSections.push_back(i->second);
1473 break;
1474 }
1475 }
Andrew Kaylor4612fed2013-08-19 23:27:43 +00001476}
1477
Andrew Kayloradc70562012-10-02 21:18:39 +00001478bool RuntimeDyldELF::isCompatibleFormat(const ObjectBuffer *Buffer) const {
1479 if (Buffer->getBufferSize() < strlen(ELF::ElfMagic))
1480 return false;
1481 return (memcmp(Buffer->getBufferStart(), ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
Eli Bendersky4c647582012-01-16 08:56:09 +00001482}
Lang Hames173c69f2014-01-08 04:09:09 +00001483
1484bool RuntimeDyldELF::isCompatibleFile(const object::ObjectFile *Obj) const {
1485 return Obj->isELF();
1486}
1487
Eli Bendersky4c647582012-01-16 08:56:09 +00001488} // namespace llvm