blob: a00b951e0a851547d5ea3d39cb77870c0ce4f172 [file] [log] [blame]
Jim Grosbach06594e12012-01-16 23:50:58 +00001//===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
Jim Grosbachf016b0a2011-03-21 22:15:52 +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 the MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
Jim Grosbach6a85a052011-03-23 19:52:00 +000014#define DEBUG_TYPE "dyld"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ExecutionEngine/RuntimeDyld.h"
Andrew Kayloradc70562012-10-02 21:18:39 +000016#include "ObjectImageCommon.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000017#include "RuntimeDyldELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000018#include "RuntimeDyldImpl.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000019#include "RuntimeDyldMachO.h"
Rafael Espindola8de86072013-06-11 18:01:14 +000020#include "llvm/Support/FileSystem.h"
Tim Northover94bc73d2012-10-29 10:47:04 +000021#include "llvm/Support/MathExtras.h"
Rafael Espindola4f60a382013-05-30 03:05:14 +000022#include "llvm/Object/ELF.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000023
Jim Grosbachf016b0a2011-03-21 22:15:52 +000024using namespace llvm;
25using namespace llvm::object;
26
Chandler Carruth086f7082011-04-05 23:54:31 +000027// Empty out-of-line virtual destructor as the key function.
Danil Malyshev72510f22011-07-13 07:57:58 +000028RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth086f7082011-04-05 23:54:31 +000029
Jim Grosbachf016b0a2011-03-21 22:15:52 +000030namespace llvm {
Jim Grosbachf016b0a2011-03-21 22:15:52 +000031
Rafael Espindolafa5942b2013-05-05 20:43:10 +000032StringRef RuntimeDyldImpl::getEHFrameSection() {
33 return StringRef();
34}
35
Jim Grosbach733d3052011-04-12 21:20:41 +000036// Resolve the relocations for all symbols we currently know about.
37void RuntimeDyldImpl::resolveRelocations() {
Preston Gurd2138ef62012-04-12 20:13:57 +000038 // First, resolve relocations associated with external symbols.
Eli Benderskyb92e1cf2012-04-30 12:15:58 +000039 resolveExternalSymbols();
Danil Malyshev70d22cc2012-03-30 16:45:19 +000040
Jim Grosbacheff0a402012-01-16 22:26:39 +000041 // Just iterate over the sections we have and resolve all the relocations
42 // in them. Gross overkill, but it gets the job done.
43 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor5f3a9982013-08-19 19:38:06 +000044 // The Section here (Sections[i]) refers to the section in which the
45 // symbol for the relocation is located. The SectionID in the relocation
46 // entry provides the section to which the relocation will be applied.
Andrew Kaylora714efc2012-11-05 20:57:16 +000047 uint64_t Addr = Sections[i].LoadAddress;
48 DEBUG(dbgs() << "Resolving relocations Section #" << i
49 << "\t" << format("%p", (uint8_t *)Addr)
50 << "\n");
51 resolveRelocationList(Relocations[i], Addr);
Jim Grosbacheff0a402012-01-16 22:26:39 +000052 }
Jim Grosbach733d3052011-04-12 21:20:41 +000053}
54
Jim Grosbach6d613972012-09-13 21:50:06 +000055void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000056 uint64_t TargetAddress) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +000057 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
58 if (Sections[i].Address == LocalAddress) {
59 reassignSectionAddress(i, TargetAddress);
60 return;
61 }
62 }
63 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000064}
65
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +000066// Subclasses can implement this method to create specialized image instances.
Sylvestre Ledru35521e22012-07-23 08:51:15 +000067// The caller owns the pointer that is returned.
Andrew Kayloradc70562012-10-02 21:18:39 +000068ObjectImage *RuntimeDyldImpl::createObjectImage(ObjectBuffer *InputBuffer) {
69 return new ObjectImageCommon(InputBuffer);
Preston Gurdcc31af92012-04-16 22:12:58 +000070}
71
Andrew Kayloradc70562012-10-02 21:18:39 +000072ObjectImage *RuntimeDyldImpl::loadObject(ObjectBuffer *InputBuffer) {
Preston Gurdcc31af92012-04-16 22:12:58 +000073 OwningPtr<ObjectImage> obj(createObjectImage(InputBuffer));
Preston Gurd2138ef62012-04-12 20:13:57 +000074 if (!obj)
75 report_fatal_error("Unable to create object image from memory buffer!");
Danil Malyshev70d22cc2012-03-30 16:45:19 +000076
77 Arch = (Triple::ArchType)obj->getArch();
78
Eli Benderskyfc079082012-05-01 06:58:59 +000079 // Symbols found in this object
80 StringMap<SymbolLoc> LocalSymbols;
81 // Used sections from the object file
82 ObjSectionToIDMap LocalSections;
83
Tim Northover94bc73d2012-10-29 10:47:04 +000084 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyfc079082012-05-01 06:58:59 +000085 CommonSymbolMap CommonSymbols;
Tim Northover94bc73d2012-10-29 10:47:04 +000086 // Maximum required total memory to allocate all common symbols
Eli Benderskyfc079082012-05-01 06:58:59 +000087 uint64_t CommonSize = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +000088
89 error_code err;
90 // Parse symbols
91 DEBUG(dbgs() << "Parse symbols:\n");
92 for (symbol_iterator i = obj->begin_symbols(), e = obj->end_symbols();
93 i != e; i.increment(err)) {
94 Check(err);
95 object::SymbolRef::Type SymType;
96 StringRef Name;
97 Check(i->getType(SymType));
98 Check(i->getName(Name));
99
Preston Gurd2138ef62012-04-12 20:13:57 +0000100 uint32_t flags;
101 Check(i->getFlags(flags));
102
103 bool isCommon = flags & SymbolRef::SF_Common;
104 if (isCommon) {
105 // Add the common symbols to a list. We'll allocate them all below.
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000106 uint32_t Align;
107 Check(i->getAlignment(Align));
Preston Gurd2138ef62012-04-12 20:13:57 +0000108 uint64_t Size = 0;
109 Check(i->getSize(Size));
Tim Northover94bc73d2012-10-29 10:47:04 +0000110 CommonSize += Size + Align;
111 CommonSymbols[*i] = CommonSymbolInfo(Size, Align);
Preston Gurd2138ef62012-04-12 20:13:57 +0000112 } else {
113 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000114 SymType == object::SymbolRef::ST_Data ||
115 SymType == object::SymbolRef::ST_Unknown) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000116 uint64_t FileOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000117 StringRef SectionData;
Tim Northoverd05e6b52012-12-17 17:59:35 +0000118 bool IsCode;
Preston Gurd2138ef62012-04-12 20:13:57 +0000119 section_iterator si = obj->end_sections();
120 Check(i->getFileOffset(FileOffset));
121 Check(i->getSection(si));
122 if (si == obj->end_sections()) continue;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000123 Check(si->getContents(SectionData));
Tim Northoverd05e6b52012-12-17 17:59:35 +0000124 Check(si->isText(IsCode));
Preston Gurd2138ef62012-04-12 20:13:57 +0000125 const uint8_t* SymPtr = (const uint8_t*)InputBuffer->getBufferStart() +
126 (uintptr_t)FileOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000127 uintptr_t SectOffset = (uintptr_t)(SymPtr -
128 (const uint8_t*)SectionData.begin());
Tim Northoverd05e6b52012-12-17 17:59:35 +0000129 unsigned SectionID = findOrEmitSection(*obj, *si, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000130 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
131 DEBUG(dbgs() << "\tFileOffset: " << format("%p", (uintptr_t)FileOffset)
132 << " flags: " << flags
133 << " SID: " << SectionID
134 << " Offset: " << format("%p", SectOffset));
Amara Emersonc958bf32012-11-16 11:11:59 +0000135 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000136 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000137 }
138 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
139 }
140
Preston Gurd2138ef62012-04-12 20:13:57 +0000141 // Allocate common symbols
142 if (CommonSize != 0)
Preston Gurdcc31af92012-04-16 22:12:58 +0000143 emitCommonSymbols(*obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurd2138ef62012-04-12 20:13:57 +0000144
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000145 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000146 DEBUG(dbgs() << "Parse relocations:\n");
147 for (section_iterator si = obj->begin_sections(),
148 se = obj->end_sections(); si != se; si.increment(err)) {
149 Check(err);
150 bool isFirstRelocation = true;
151 unsigned SectionID = 0;
152 StubMap Stubs;
Rafael Espindola4f60a382013-05-30 03:05:14 +0000153 section_iterator RelocatedSection = si->getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000154
155 for (relocation_iterator i = si->begin_relocations(),
156 e = si->end_relocations(); i != e; i.increment(err)) {
157 Check(err);
158
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000159 // If it's the first relocation in this section, find its SectionID
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000160 if (isFirstRelocation) {
Rafael Espindola4f60a382013-05-30 03:05:14 +0000161 SectionID =
162 findOrEmitSection(*obj, *RelocatedSection, true, LocalSections);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000163 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
164 isFirstRelocation = false;
165 }
166
Rafael Espindola37008942013-04-29 19:03:21 +0000167 processRelocationRef(SectionID, *i, *obj, LocalSections, LocalSymbols,
Rafael Espindola4d4a48d2013-04-29 14:44:23 +0000168 Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000169 }
170 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000171
Andrew Kayloradc70562012-10-02 21:18:39 +0000172 return obj.take();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000173}
174
Eli Bendersky667b8792012-05-01 10:41:12 +0000175void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
176 const CommonSymbolMap &CommonSymbols,
177 uint64_t TotalSize,
178 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000179 // Allocate memory for the section
180 unsigned SectionID = Sections.size();
181 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void*),
Andrew Kaylora342cb92012-11-15 23:50:01 +0000182 SectionID, false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000183 if (!Addr)
184 report_fatal_error("Unable to allocate memory for common symbols!");
185 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000186 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000187 memset(Addr, 0, TotalSize);
188
189 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID
190 << " new addr: " << format("%p", Addr)
191 << " DataSize: " << TotalSize
192 << "\n");
193
194 // Assign the address of each symbol
Eli Bendersky667b8792012-05-01 10:41:12 +0000195 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
196 itEnd = CommonSymbols.end(); it != itEnd; it++) {
Tim Northover94bc73d2012-10-29 10:47:04 +0000197 uint64_t Size = it->second.first;
198 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000199 StringRef Name;
200 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000201 if (Align) {
202 // This symbol has an alignment requirement.
203 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
204 Addr += AlignOffset;
205 Offset += AlignOffset;
206 DEBUG(dbgs() << "Allocating common symbol " << Name << " address " <<
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000207 format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000208 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000209 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000210 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000211 Offset += Size;
212 Addr += Size;
213 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000214}
215
Preston Gurdcc31af92012-04-16 22:12:58 +0000216unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
217 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000218 bool IsCode) {
219
220 unsigned StubBufSize = 0,
221 StubSize = getMaxStubSize();
222 error_code err;
Rafael Espindola4f60a382013-05-30 03:05:14 +0000223 const ObjectFile *ObjFile = Obj.getObjectFile();
224 // FIXME: this is an inefficient way to handle this. We should computed the
225 // necessary section allocation size in loadObject by walking all the sections
226 // once.
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000227 if (StubSize > 0) {
Rafael Espindola4f60a382013-05-30 03:05:14 +0000228 for (section_iterator SI = ObjFile->begin_sections(),
229 SE = ObjFile->end_sections();
230 SI != SE; SI.increment(err), Check(err)) {
231 section_iterator RelSecI = SI->getRelocatedSection();
232 if (!(RelSecI == Section))
233 continue;
234
235 for (relocation_iterator I = SI->begin_relocations(),
236 E = SI->end_relocations(); I != E; I.increment(err), Check(err)) {
237 StubBufSize += StubSize;
238 }
239 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000240 }
Rafael Espindola4f60a382013-05-30 03:05:14 +0000241
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000242 StringRef data;
243 uint64_t Alignment64;
244 Check(Section.getContents(data));
245 Check(Section.getAlignment(Alignment64));
246
247 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000248 bool IsRequired;
249 bool IsVirtual;
250 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000251 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000252 uint64_t DataSize;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000253 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000254 Check(Section.isRequiredForExecution(IsRequired));
255 Check(Section.isVirtual(IsVirtual));
256 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000257 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000258 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000259 Check(Section.getName(Name));
Richard Sandifordca044082013-05-03 14:15:35 +0000260 if (StubSize > 0) {
261 unsigned StubAlignment = getStubAlignment();
262 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
263 if (StubAlignment > EndAlignment)
264 StubBufSize += StubAlignment - EndAlignment;
265 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000266
Preston Gurd2138ef62012-04-12 20:13:57 +0000267 unsigned Allocate;
268 unsigned SectionID = Sections.size();
269 uint8_t *Addr;
270 const char *pData = 0;
271
272 // Some sections, such as debug info, don't need to be loaded for execution.
273 // Leave those where they are.
274 if (IsRequired) {
275 Allocate = DataSize + StubBufSize;
276 Addr = IsCode
277 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)
Andrew Kaylora342cb92012-11-15 23:50:01 +0000278 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000279 if (!Addr)
280 report_fatal_error("Unable to allocate section memory!");
281
282 // Virtual sections have no data in the object image, so leave pData = 0
283 if (!IsVirtual)
284 pData = data.data();
285
286 // Zero-initialize or copy the data from the image
287 if (IsZeroInit || IsVirtual)
288 memset(Addr, 0, DataSize);
289 else
290 memcpy(Addr, pData, DataSize);
291
292 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000293 << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000294 << " obj addr: " << format("%p", pData)
295 << " new addr: " << format("%p", Addr)
296 << " DataSize: " << DataSize
297 << " StubBufSize: " << StubBufSize
298 << " Allocate: " << Allocate
299 << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000300 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Preston Gurd2138ef62012-04-12 20:13:57 +0000301 }
302 else {
303 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000304 // to handle later processing (and by 'handle' I mean don't do anything
305 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000306 Allocate = 0;
307 Addr = 0;
308 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000309 << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000310 << " obj addr: " << format("%p", data.data())
311 << " new addr: 0"
312 << " DataSize: " << DataSize
313 << " StubBufSize: " << StubBufSize
314 << " Allocate: " << Allocate
315 << "\n");
316 }
317
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000318 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000319 return SectionID;
320}
321
Preston Gurdcc31af92012-04-16 22:12:58 +0000322unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
323 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000324 bool IsCode,
325 ObjSectionToIDMap &LocalSections) {
326
327 unsigned SectionID = 0;
328 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
329 if (i != LocalSections.end())
330 SectionID = i->second;
331 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000332 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000333 LocalSections[Section] = SectionID;
334 }
335 return SectionID;
336}
337
Eli Bendersky667b8792012-05-01 10:41:12 +0000338void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
339 unsigned SectionID) {
340 Relocations[SectionID].push_back(RE);
341}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000342
Eli Bendersky667b8792012-05-01 10:41:12 +0000343void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
344 StringRef SymbolName) {
345 // Relocation by symbol. If the symbol is found in the global symbol table,
346 // create an appropriate section relocation. Otherwise, add it to
347 // ExternalSymbolRelocations.
348 SymbolTableMap::const_iterator Loc =
349 GlobalSymbolTable.find(SymbolName);
350 if (Loc == GlobalSymbolTable.end()) {
351 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000352 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000353 // Copy the RE since we want to modify its addend.
354 RelocationEntry RECopy = RE;
355 RECopy.Addend += Loc->second.second;
356 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000357 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000358}
359
360uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
Tim Northover37cde972013-05-04 20:14:09 +0000361 if (Arch == Triple::aarch64) {
362 // This stub has to be able to access the full address space,
363 // since symbol lookup won't necessarily find a handy, in-range,
364 // PLT stub for functions which could be anywhere.
365 uint32_t *StubAddr = (uint32_t*)Addr;
366
367 // Stub can use ip0 (== x16) to calculate address
368 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
369 StubAddr++;
370 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
371 StubAddr++;
372 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
373 StubAddr++;
374 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
375 StubAddr++;
376 *StubAddr = 0xd61f0200; // br ip0
377
378 return Addr;
379 } else if (Arch == Triple::arm) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000380 // TODO: There is only ARM far stub now. We should add the Thumb stub,
381 // and stubs for branches Thumb - ARM and ARM - Thumb.
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000382 uint32_t *StubAddr = (uint32_t*)Addr;
383 *StubAddr = 0xe51ff004; // ldr pc,<label>
384 return (uint8_t*)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000385 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000386 uint32_t *StubAddr = (uint32_t*)Addr;
387 // 0: 3c190000 lui t9,%hi(addr).
388 // 4: 27390000 addiu t9,t9,%lo(addr).
389 // 8: 03200008 jr t9.
390 // c: 00000000 nop.
391 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
392 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
393
394 *StubAddr = LuiT9Instr;
395 StubAddr++;
396 *StubAddr = AdduiT9Instr;
397 StubAddr++;
398 *StubAddr = JrT9Instr;
399 StubAddr++;
400 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000401 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000402 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000403 // PowerPC64 stub: the address points to a function descriptor
404 // instead of the function itself. Load the function address
405 // on r11 and sets it to control register. Also loads the function
406 // TOC in r2 and environment pointer to r11.
407 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
408 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
409 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
410 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
411 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
412 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
413 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
414 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
415 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
416 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
417 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000418
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000419 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000420 } else if (Arch == Triple::systemz) {
421 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
422 writeInt16BE(Addr+2, 0x0000);
423 writeInt16BE(Addr+4, 0x0004);
424 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
425 // 8-byte address stored at Addr + 8
426 return Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000427 }
428 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000429}
430
431// Assign an address to a symbol name and resolve all the relocations
432// associated with it.
433void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
434 uint64_t Addr) {
435 // The address to use for relocation resolution is not
436 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000437 // a remote execution environment of some sort. Relocations can't
438 // be applied until all the sections have been moved. The client must
439 // trigger this with a call to MCJIT::finalize() or
440 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000441 //
442 // Addr is a uint64_t because we can't assume the pointer width
443 // of the target is the same as that of the host. Just use a generic
444 // "big enough" type.
445 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000446}
447
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000448void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
449 uint64_t Value) {
450 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000451 const RelocationEntry &RE = Relocs[i];
452 // Ignore relocations for sections that were not loaded
453 if (Sections[RE.SectionID].Address == 0)
454 continue;
455 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000456 }
457}
458
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000459void RuntimeDyldImpl::resolveExternalSymbols() {
460 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin(),
461 e = ExternalSymbolRelocations.end();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000462 for (; i != e; i++) {
463 StringRef Name = i->first();
464 RelocationList &Relocs = i->second;
Eli Benderskyfc079082012-05-01 06:58:59 +0000465 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
466 if (Loc == GlobalSymbolTable.end()) {
Andrew Kaylor3d5d3102013-02-20 18:09:21 +0000467 if (Name.size() == 0) {
468 // This is an absolute symbol, use an address of zero.
469 DEBUG(dbgs() << "Resolving absolute relocations." << "\n");
470 resolveRelocationList(Relocs, 0);
Andrew Kaylorfca968e2013-02-20 18:24:34 +0000471 } else {
472 // This is an external symbol, try to get its address from
Andrew Kaylor3d5d3102013-02-20 18:09:21 +0000473 // MemoryManager.
474 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000475 true);
Andrew Kaylor3d5d3102013-02-20 18:09:21 +0000476 DEBUG(dbgs() << "Resolving relocations Name: " << Name
477 << "\t" << format("%p", Addr)
478 << "\n");
479 resolveRelocationList(Relocs, (uintptr_t)Addr);
480 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000481 } else {
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000482 report_fatal_error("Expected external symbol");
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000483 }
484 }
485}
486
487
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000488//===----------------------------------------------------------------------===//
489// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000490RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000491 // FIXME: There's a potential issue lurking here if a single instance of
492 // RuntimeDyld is used to load multiple objects. The current implementation
493 // associates a single memory manager with a RuntimeDyld instance. Even
494 // though the public class spawns a new 'impl' instance for each load,
495 // they share a single memory manager. This can become a problem when page
496 // permissions are applied.
Danil Malyshev72510f22011-07-13 07:57:58 +0000497 Dyld = 0;
498 MM = mm;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000499}
500
501RuntimeDyld::~RuntimeDyld() {
502 delete Dyld;
503}
504
Andrew Kayloradc70562012-10-02 21:18:39 +0000505ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Danil Malyshev72510f22011-07-13 07:57:58 +0000506 if (!Dyld) {
Rafael Espindola8de86072013-06-11 18:01:14 +0000507 sys::fs::file_magic Type =
508 sys::fs::identify_magic(InputBuffer->getBuffer());
509 switch (Type) {
510 case sys::fs::file_magic::elf_relocatable:
511 case sys::fs::file_magic::elf_executable:
512 case sys::fs::file_magic::elf_shared_object:
513 case sys::fs::file_magic::elf_core:
514 Dyld = new RuntimeDyldELF(MM);
515 break;
516 case sys::fs::file_magic::macho_object:
517 case sys::fs::file_magic::macho_executable:
518 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
519 case sys::fs::file_magic::macho_core:
520 case sys::fs::file_magic::macho_preload_executable:
521 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
522 case sys::fs::file_magic::macho_dynamic_linker:
523 case sys::fs::file_magic::macho_bundle:
524 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
525 case sys::fs::file_magic::macho_dsym_companion:
526 Dyld = new RuntimeDyldMachO(MM);
527 break;
528 case sys::fs::file_magic::unknown:
529 case sys::fs::file_magic::bitcode:
530 case sys::fs::file_magic::archive:
531 case sys::fs::file_magic::coff_object:
532 case sys::fs::file_magic::pecoff_executable:
Alexey Samsonove6388e62013-06-18 15:03:28 +0000533 case sys::fs::file_magic::macho_universal_binary:
Rafael Espindola8de86072013-06-11 18:01:14 +0000534 report_fatal_error("Incompatible object format!");
Eli Bendersky4c647582012-01-16 08:56:09 +0000535 }
Danil Malyshev72510f22011-07-13 07:57:58 +0000536 } else {
Eli Bendersky4c647582012-01-16 08:56:09 +0000537 if (!Dyld->isCompatibleFormat(InputBuffer))
Danil Malyshev72510f22011-07-13 07:57:58 +0000538 report_fatal_error("Incompatible object format!");
539 }
540
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000541 return Dyld->loadObject(InputBuffer);
542}
543
Jim Grosbach18b81c52011-04-08 17:31:24 +0000544void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000545 return Dyld->getSymbolAddress(Name);
546}
547
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000548uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
549 return Dyld->getSymbolLoadAddress(Name);
550}
551
Jim Grosbach733d3052011-04-12 21:20:41 +0000552void RuntimeDyld::resolveRelocations() {
553 Dyld->resolveRelocations();
554}
555
Jim Grosbacheff0a402012-01-16 22:26:39 +0000556void RuntimeDyld::reassignSectionAddress(unsigned SectionID,
557 uint64_t Addr) {
558 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000559}
560
Jim Grosbach6d613972012-09-13 21:50:06 +0000561void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000562 uint64_t TargetAddress) {
563 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
564}
565
Jim Grosbach5cc5eef2011-03-22 18:22:27 +0000566StringRef RuntimeDyld::getErrorString() {
Jim Grosbach40411cc2011-03-22 18:19:42 +0000567 return Dyld->getErrorString();
568}
569
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000570StringRef RuntimeDyld::getEHFrameSection() {
571 return Dyld->getEHFrameSection();
572}
573
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000574} // end namespace llvm