blob: f9a81db4df0aa73a2e751068619d7524a7d81bed [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"
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000016#include "JITRegistrar.h"
Andrew Kayloradc70562012-10-02 21:18:39 +000017#include "ObjectImageCommon.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000018#include "RuntimeDyldELF.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "RuntimeDyldImpl.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000020#include "RuntimeDyldMachO.h"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000021#include "llvm/Object/ELF.h"
Tim Northover94bc73d2012-10-29 10:47:04 +000022#include "llvm/Support/MathExtras.h"
Andrew Kaylor4fba0492013-10-21 17:42:06 +000023#include "llvm/Support/MutexGuard.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000024
Jim Grosbachf016b0a2011-03-21 22:15:52 +000025using namespace llvm;
26using namespace llvm::object;
27
Chandler Carruth086f7082011-04-05 23:54:31 +000028// Empty out-of-line virtual destructor as the key function.
Danil Malyshev72510f22011-07-13 07:57:58 +000029RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth086f7082011-04-05 23:54:31 +000030
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000031// Pin the JITRegistrar's and ObjectImage*'s vtables to this file.
32void JITRegistrar::anchor() {}
33void ObjectImage::anchor() {}
34void ObjectImageCommon::anchor() {}
35
Jim Grosbachf016b0a2011-03-21 22:15:52 +000036namespace llvm {
Jim Grosbachf016b0a2011-03-21 22:15:52 +000037
Juergen Ributzka7608dc02014-03-21 20:28:42 +000038void RuntimeDyldImpl::registerEHFrames() {}
Rafael Espindolafa5942b2013-05-05 20:43:10 +000039
Juergen Ributzka7608dc02014-03-21 20:28:42 +000040void RuntimeDyldImpl::deregisterEHFrames() {}
Andrew Kaylorc442a762013-10-16 00:14:21 +000041
Jim Grosbach733d3052011-04-12 21:20:41 +000042// Resolve the relocations for all symbols we currently know about.
43void RuntimeDyldImpl::resolveRelocations() {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000044 MutexGuard locked(lock);
45
Preston Gurd2138ef62012-04-12 20:13:57 +000046 // First, resolve relocations associated with external symbols.
Eli Benderskyb92e1cf2012-04-30 12:15:58 +000047 resolveExternalSymbols();
Danil Malyshev70d22cc2012-03-30 16:45:19 +000048
Jim Grosbacheff0a402012-01-16 22:26:39 +000049 // Just iterate over the sections we have and resolve all the relocations
50 // in them. Gross overkill, but it gets the job done.
51 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor5f3a9982013-08-19 19:38:06 +000052 // The Section here (Sections[i]) refers to the section in which the
53 // symbol for the relocation is located. The SectionID in the relocation
54 // entry provides the section to which the relocation will be applied.
Andrew Kaylora714efc2012-11-05 20:57:16 +000055 uint64_t Addr = Sections[i].LoadAddress;
Jim Grosbach36f025e2014-04-21 19:23:59 +000056 DEBUG(dbgs() << "Resolving relocations Section #" << i << "\t"
Juergen Ributzka7608dc02014-03-21 20:28:42 +000057 << format("%p", (uint8_t *)Addr) << "\n");
Andrew Kaylora714efc2012-11-05 20:57:16 +000058 resolveRelocationList(Relocations[i], Addr);
Andrew Kaylorea395922013-10-01 01:47:35 +000059 Relocations.erase(i);
Jim Grosbacheff0a402012-01-16 22:26:39 +000060 }
Jim Grosbach733d3052011-04-12 21:20:41 +000061}
62
Jim Grosbach6d613972012-09-13 21:50:06 +000063void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000064 uint64_t TargetAddress) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000065 MutexGuard locked(lock);
Danil Malyshev70d22cc2012-03-30 16:45:19 +000066 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
67 if (Sections[i].Address == LocalAddress) {
68 reassignSectionAddress(i, TargetAddress);
69 return;
70 }
71 }
72 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000073}
74
Rafael Espindola6956b1a2014-04-21 13:45:32 +000075static error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
76 uint64_t Address;
77 if (error_code EC = Sym.getAddress(Address))
78 return EC;
79
80 if (Address == UnknownAddressOrSize) {
81 Result = UnknownAddressOrSize;
82 return object_error::success;
83 }
84
85 const ObjectFile *Obj = Sym.getObject();
86 section_iterator SecI(Obj->section_begin());
87 if (error_code EC = Sym.getSection(SecI))
88 return EC;
89
90 if (SecI == Obj->section_end()) {
91 Result = UnknownAddressOrSize;
92 return object_error::success;
93 }
94
95 uint64_t SectionAddress;
96 if (error_code EC = SecI->getAddress(SectionAddress))
97 return EC;
98
99 Result = Address - SectionAddress;
100 return object_error::success;
101}
102
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000103ObjectImage *RuntimeDyldImpl::loadObject(ObjectImage *InputObject) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000104 MutexGuard locked(lock);
105
Ahmed Charles56440fd2014-03-06 05:51:42 +0000106 std::unique_ptr<ObjectImage> Obj(InputObject);
Lang Hames937ec542014-02-12 21:30:07 +0000107 if (!Obj)
Lang Hames173c69f2014-01-08 04:09:09 +0000108 return NULL;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000109
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000110 // Save information about our target
Lang Hames937ec542014-02-12 21:30:07 +0000111 Arch = (Triple::ArchType)Obj->getArch();
112 IsTargetLittleEndian = Obj->getObjectFile()->isLittleEndian();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000113
Lang Hames937ec542014-02-12 21:30:07 +0000114 // Compute the memory size required to load all sections to be loaded
115 // and pass this information to the memory manager
116 if (MemMgr->needsToReserveAllocationSpace()) {
117 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0;
118 computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW);
119 MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
120 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000121
Eli Benderskyfc079082012-05-01 06:58:59 +0000122 // Symbols found in this object
123 StringMap<SymbolLoc> LocalSymbols;
124 // Used sections from the object file
125 ObjSectionToIDMap LocalSections;
126
Tim Northover94bc73d2012-10-29 10:47:04 +0000127 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyfc079082012-05-01 06:58:59 +0000128 CommonSymbolMap CommonSymbols;
Tim Northover94bc73d2012-10-29 10:47:04 +0000129 // Maximum required total memory to allocate all common symbols
Eli Benderskyfc079082012-05-01 06:58:59 +0000130 uint64_t CommonSize = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000131
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000132 // Parse symbols
133 DEBUG(dbgs() << "Parse symbols:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000134 for (symbol_iterator I = Obj->begin_symbols(), E = Obj->end_symbols(); I != E;
135 ++I) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000136 object::SymbolRef::Type SymType;
137 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000138 Check(I->getType(SymType));
139 Check(I->getName(Name));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000140
Jim Grosbach36f025e2014-04-21 19:23:59 +0000141 uint32_t Flags = I->getFlags();
Preston Gurd2138ef62012-04-12 20:13:57 +0000142
Lang Hames937ec542014-02-12 21:30:07 +0000143 bool IsCommon = Flags & SymbolRef::SF_Common;
144 if (IsCommon) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000145 // Add the common symbols to a list. We'll allocate them all below.
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000146 uint32_t Align;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000147 Check(I->getAlignment(Align));
Preston Gurd2138ef62012-04-12 20:13:57 +0000148 uint64_t Size = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000149 Check(I->getSize(Size));
Tim Northover94bc73d2012-10-29 10:47:04 +0000150 CommonSize += Size + Align;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000151 CommonSymbols[*I] = CommonSymbolInfo(Size, Align);
Preston Gurd2138ef62012-04-12 20:13:57 +0000152 } else {
153 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000154 SymType == object::SymbolRef::ST_Data ||
155 SymType == object::SymbolRef::ST_Unknown) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000156 uint64_t SectOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000157 StringRef SectionData;
Tim Northoverd05e6b52012-12-17 17:59:35 +0000158 bool IsCode;
Lang Hames937ec542014-02-12 21:30:07 +0000159 section_iterator SI = Obj->end_sections();
Jim Grosbach36f025e2014-04-21 19:23:59 +0000160 Check(getOffset(*I, SectOffset));
161 Check(I->getSection(SI));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000162 if (SI == Obj->end_sections())
163 continue;
Lang Hames937ec542014-02-12 21:30:07 +0000164 Check(SI->getContents(SectionData));
165 Check(SI->isText(IsCode));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000166 unsigned SectionID =
167 findOrEmitSection(*Obj, *SI, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000168 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000169 DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset)
170 << " flags: " << Flags << " SID: " << SectionID);
Amara Emersonc958bf32012-11-16 11:11:59 +0000171 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000172 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000173 }
174 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
175 }
176
Preston Gurd2138ef62012-04-12 20:13:57 +0000177 // Allocate common symbols
178 if (CommonSize != 0)
Lang Hames937ec542014-02-12 21:30:07 +0000179 emitCommonSymbols(*Obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurd2138ef62012-04-12 20:13:57 +0000180
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000181 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000182 DEBUG(dbgs() << "Parse relocations:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000183 for (section_iterator SI = Obj->begin_sections(), SE = Obj->end_sections();
184 SI != SE; ++SI) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000185 unsigned SectionID = 0;
186 StubMap Stubs;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000187 section_iterator RelocatedSection = SI->getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000188
Jim Grosbach36f025e2014-04-21 19:23:59 +0000189 relocation_iterator I = SI->relocation_begin();
190 relocation_iterator E = SI->relocation_end();
Rafael Espindola77314aa2014-04-03 22:42:22 +0000191
192 if (I == E && !ProcessAllSections)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000193 continue;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000194
Juergen Ributzka046709f2014-03-21 07:26:41 +0000195 bool IsCode = false;
196 Check(RelocatedSection->isText(IsCode));
197 SectionID =
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000198 findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections);
Juergen Ributzka046709f2014-03-21 07:26:41 +0000199 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
200
Rafael Espindola77314aa2014-04-03 22:42:22 +0000201 for (; I != E;)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000202 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
203 Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000204 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000205
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000206 // Give the subclasses a chance to tie-up any loose ends.
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000207 finalizeLoad(LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000208
Ahmed Charles96c9d952014-03-05 10:19:29 +0000209 return Obj.release();
Lang Hames937ec542014-02-12 21:30:07 +0000210}
211
212// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000213// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000214// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000215static uint64_t
216computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
217 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000218 uint64_t TotalSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000219 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
220 uint64_t AlignedSize =
221 (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000222 TotalSize += AlignedSize;
223 }
224 return TotalSize;
225}
226
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000227// Compute an upper bound of the memory size that is required to load all
228// sections
229void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
230 uint64_t &CodeSize,
231 uint64_t &DataSizeRO,
232 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000233 // Compute the size of all sections required for execution
234 std::vector<uint64_t> CodeSectionSizes;
235 std::vector<uint64_t> ROSectionSizes;
236 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000237 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000238
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000239 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000240 // also determine the max alignment of all sections
Jim Grosbach36f025e2014-04-21 19:23:59 +0000241 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
242 SI != SE; ++SI) {
243 const SectionRef &Section = *SI;
244
Lang Hames937ec542014-02-12 21:30:07 +0000245 bool IsRequired;
246 Check(Section.isRequiredForExecution(IsRequired));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000247
Lang Hames937ec542014-02-12 21:30:07 +0000248 // Consider only the sections that are required to be loaded for execution
249 if (IsRequired) {
250 uint64_t DataSize = 0;
251 uint64_t Alignment64 = 0;
252 bool IsCode = false;
253 bool IsReadOnly = false;
254 StringRef Name;
255 Check(Section.getSize(DataSize));
256 Check(Section.getAlignment(Alignment64));
257 Check(Section.isText(IsCode));
258 Check(Section.isReadOnlyData(IsReadOnly));
259 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000260 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
261
Lang Hames937ec542014-02-12 21:30:07 +0000262 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
263 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000264
265 // The .eh_frame section (at least on Linux) needs an extra four bytes
266 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000267 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000268 // slightly different name, so this won't have any effect for MachO
269 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000270 if (Name == ".eh_frame")
271 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000272
Lang Hames937ec542014-02-12 21:30:07 +0000273 if (SectionSize > 0) {
274 // save the total size of the section
275 if (IsCode) {
276 CodeSectionSizes.push_back(SectionSize);
277 } else if (IsReadOnly) {
278 ROSectionSizes.push_back(SectionSize);
279 } else {
280 RWSectionSizes.push_back(SectionSize);
281 }
282 // update the max alignment
283 if (Alignment > MaxAlignment) {
284 MaxAlignment = Alignment;
285 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000286 }
Lang Hames937ec542014-02-12 21:30:07 +0000287 }
288 }
289
290 // Compute the size of all common symbols
291 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000292 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
293 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000294 uint32_t Flags = I->getFlags();
295 if (Flags & SymbolRef::SF_Common) {
296 // Add the common symbols to a list. We'll allocate them all below.
297 uint64_t Size = 0;
298 Check(I->getSize(Size));
299 CommonSize += Size;
300 }
301 }
302 if (CommonSize != 0) {
303 RWSectionSizes.push_back(CommonSize);
304 }
305
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000306 // Compute the required allocation space for each different type of sections
307 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000308 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000309 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000310 // depends on the order, in which the sections are allocated.
311 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
312 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000313 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000314}
315
316// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000317unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000318 const SectionRef &Section) {
319 unsigned StubSize = getMaxStubSize();
320 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000321 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000322 }
323 // FIXME: this is an inefficient way to handle this. We should computed the
324 // necessary section allocation size in loadObject by walking all the sections
325 // once.
326 unsigned StubBufSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000327 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
328 SI != SE; ++SI) {
329 section_iterator RelSecI = SI->getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000330 if (!(RelSecI == Section))
331 continue;
332
Jim Grosbach36f025e2014-04-21 19:23:59 +0000333 for (const RelocationRef &Reloc : SI->relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000334 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000335 StubBufSize += StubSize;
336 }
337 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000338
Lang Hames937ec542014-02-12 21:30:07 +0000339 // Get section data size and alignment
340 uint64_t Alignment64;
341 uint64_t DataSize;
342 Check(Section.getSize(DataSize));
343 Check(Section.getAlignment(Alignment64));
344
345 // Add stubbuf size alignment
346 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
347 unsigned StubAlignment = getStubAlignment();
348 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
349 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000350 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000351 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000352}
353
Eli Bendersky667b8792012-05-01 10:41:12 +0000354void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
355 const CommonSymbolMap &CommonSymbols,
356 uint64_t TotalSize,
357 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000358 // Allocate memory for the section
359 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000360 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
361 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000362 if (!Addr)
363 report_fatal_error("Unable to allocate memory for common symbols!");
364 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000365 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000366 memset(Addr, 0, TotalSize);
367
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000368 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
369 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000370
371 // Assign the address of each symbol
Jim Grosbach36f025e2014-04-21 19:23:59 +0000372 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
373 itEnd = CommonSymbols.end(); it != itEnd; ++it) {
374 uint64_t Size = it->second.first;
375 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000376 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000377 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000378 if (Align) {
379 // This symbol has an alignment requirement.
380 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
381 Addr += AlignOffset;
382 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000383 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
384 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000385 }
Jim Grosbach36f025e2014-04-21 19:23:59 +0000386 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000387 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000388 Offset += Size;
389 Addr += Size;
390 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000391}
392
Preston Gurdcc31af92012-04-16 22:12:58 +0000393unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000394 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000395
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000396 StringRef data;
397 uint64_t Alignment64;
398 Check(Section.getContents(data));
399 Check(Section.getAlignment(Alignment64));
400
401 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000402 bool IsRequired;
403 bool IsVirtual;
404 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000405 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000406 uint64_t DataSize;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000407 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000408 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000409 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000410 Check(Section.isRequiredForExecution(IsRequired));
411 Check(Section.isVirtual(IsVirtual));
412 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000413 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000414 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000415 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000416
417 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000418
Andrew Kaylor877b9312013-10-16 00:32:24 +0000419 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
420 // with zeroes added at the end. For MachO objects, this section has a
421 // slightly different name, so this won't have any effect for MachO objects.
422 if (Name == ".eh_frame")
423 PaddingSize = 4;
424
Lang Hamesd4100172014-02-11 05:28:24 +0000425 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000426 unsigned SectionID = Sections.size();
427 uint8_t *Addr;
428 const char *pData = 0;
429
430 // Some sections, such as debug info, don't need to be loaded for execution.
431 // Leave those where they are.
432 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000433 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000434 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
435 Name)
436 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
437 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000438 if (!Addr)
439 report_fatal_error("Unable to allocate section memory!");
440
441 // Virtual sections have no data in the object image, so leave pData = 0
442 if (!IsVirtual)
443 pData = data.data();
444
445 // Zero-initialize or copy the data from the image
446 if (IsZeroInit || IsVirtual)
447 memset(Addr, 0, DataSize);
448 else
449 memcpy(Addr, pData, DataSize);
450
Andrew Kaylor877b9312013-10-16 00:32:24 +0000451 // Fill in any extra bytes we allocated for padding
452 if (PaddingSize != 0) {
453 memset(Addr + DataSize, 0, PaddingSize);
454 // Update the DataSize variable so that the stub offset is set correctly.
455 DataSize += PaddingSize;
456 }
457
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000458 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000459 << " obj addr: " << format("%p", pData)
460 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000461 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
462 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000463 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000464 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000465 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000466 // to handle later processing (and by 'handle' I mean don't do anything
467 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000468 Allocate = 0;
469 Addr = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000470 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
471 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
472 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
473 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000474 }
475
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000476 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000477 return SectionID;
478}
479
Preston Gurdcc31af92012-04-16 22:12:58 +0000480unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
481 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000482 bool IsCode,
483 ObjSectionToIDMap &LocalSections) {
484
485 unsigned SectionID = 0;
486 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
487 if (i != LocalSections.end())
488 SectionID = i->second;
489 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000490 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000491 LocalSections[Section] = SectionID;
492 }
493 return SectionID;
494}
495
Eli Bendersky667b8792012-05-01 10:41:12 +0000496void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
497 unsigned SectionID) {
498 Relocations[SectionID].push_back(RE);
499}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000500
Eli Bendersky667b8792012-05-01 10:41:12 +0000501void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
502 StringRef SymbolName) {
503 // Relocation by symbol. If the symbol is found in the global symbol table,
504 // create an appropriate section relocation. Otherwise, add it to
505 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000506 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000507 if (Loc == GlobalSymbolTable.end()) {
508 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000509 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000510 // Copy the RE since we want to modify its addend.
511 RelocationEntry RECopy = RE;
512 RECopy.Addend += Loc->second.second;
513 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000514 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000515}
516
517uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
Christian Pirker99974c72014-03-26 14:57:32 +0000518 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000519 // This stub has to be able to access the full address space,
520 // since symbol lookup won't necessarily find a handy, in-range,
521 // PLT stub for functions which could be anywhere.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000522 uint32_t *StubAddr = (uint32_t *)Addr;
Tim Northover37cde972013-05-04 20:14:09 +0000523
524 // Stub can use ip0 (== x16) to calculate address
525 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
526 StubAddr++;
527 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
528 StubAddr++;
529 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
530 StubAddr++;
531 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
532 StubAddr++;
533 *StubAddr = 0xd61f0200; // br ip0
534
535 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000536 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000537 // TODO: There is only ARM far stub now. We should add the Thumb stub,
538 // and stubs for branches Thumb - ARM and ARM - Thumb.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000539 uint32_t *StubAddr = (uint32_t *)Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000540 *StubAddr = 0xe51ff004; // ldr pc,<label>
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000541 return (uint8_t *)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000542 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000543 uint32_t *StubAddr = (uint32_t *)Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000544 // 0: 3c190000 lui t9,%hi(addr).
545 // 4: 27390000 addiu t9,t9,%lo(addr).
546 // 8: 03200008 jr t9.
547 // c: 00000000 nop.
548 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
549 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
550
551 *StubAddr = LuiT9Instr;
552 StubAddr++;
553 *StubAddr = AdduiT9Instr;
554 StubAddr++;
555 *StubAddr = JrT9Instr;
556 StubAddr++;
557 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000558 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000559 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000560 // PowerPC64 stub: the address points to a function descriptor
561 // instead of the function itself. Load the function address
562 // on r11 and sets it to control register. Also loads the function
563 // TOC in r2 and environment pointer to r11.
564 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
565 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
566 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
567 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
568 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
569 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
570 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
571 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
572 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
573 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
574 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000575
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000576 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000577 } else if (Arch == Triple::systemz) {
578 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
579 writeInt16BE(Addr+2, 0x0000);
580 writeInt16BE(Addr+4, 0x0004);
581 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
582 // 8-byte address stored at Addr + 8
583 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000584 } else if (Arch == Triple::x86_64) {
585 *Addr = 0xFF; // jmp
586 *(Addr+1) = 0x25; // rip
587 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Akira Hatanaka111174b2012-08-17 21:28:04 +0000588 }
589 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000590}
591
592// Assign an address to a symbol name and resolve all the relocations
593// associated with it.
594void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
595 uint64_t Addr) {
596 // The address to use for relocation resolution is not
597 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000598 // a remote execution environment of some sort. Relocations can't
599 // be applied until all the sections have been moved. The client must
600 // trigger this with a call to MCJIT::finalize() or
601 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000602 //
603 // Addr is a uint64_t because we can't assume the pointer width
604 // of the target is the same as that of the host. Just use a generic
605 // "big enough" type.
606 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000607}
608
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000609void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
610 uint64_t Value) {
611 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000612 const RelocationEntry &RE = Relocs[i];
613 // Ignore relocations for sections that were not loaded
614 if (Sections[RE.SectionID].Address == 0)
615 continue;
616 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000617 }
618}
619
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000620void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000621 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000622 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
623
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000624 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000625 if (Name.size() == 0) {
626 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000627 DEBUG(dbgs() << "Resolving absolute relocations."
628 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000629 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000630 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000631 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000632 uint64_t Addr = 0;
633 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
634 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000635 // This is an external symbol, try to get its address from
636 // MemoryManager.
637 Addr = MemMgr->getSymbolAddress(Name.data());
638 // The call to getSymbolAddress may have caused additional modules to
639 // be loaded, which may have added new entries to the
640 // ExternalSymbolRelocations map. Consquently, we need to update our
641 // iterator. This is also why retrieval of the relocation list
642 // associated with this symbol is deferred until below this point.
643 // New entries may have been added to the relocation list.
644 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000645 } else {
646 // We found the symbol in our global table. It was probably in a
647 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000648 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000649 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
650 }
651
652 // FIXME: Implement error handling that doesn't kill the host program!
653 if (!Addr)
654 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000655 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000656
657 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000658 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
659 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000660 // This list may have been updated when we called getSymbolAddress, so
661 // don't change this code to get the list earlier.
662 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000663 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000664 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000665
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000666 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000667 }
668}
669
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000670//===----------------------------------------------------------------------===//
671// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000672RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000673 // FIXME: There's a potential issue lurking here if a single instance of
674 // RuntimeDyld is used to load multiple objects. The current implementation
675 // associates a single memory manager with a RuntimeDyld instance. Even
676 // though the public class spawns a new 'impl' instance for each load,
677 // they share a single memory manager. This can become a problem when page
678 // permissions are applied.
Danil Malyshev72510f22011-07-13 07:57:58 +0000679 Dyld = 0;
680 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000681 ProcessAllSections = false;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000682}
683
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000684RuntimeDyld::~RuntimeDyld() { delete Dyld; }
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000685
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000686static std::unique_ptr<RuntimeDyldELF>
687createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000688 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
689 Dyld->setProcessAllSections(ProcessAllSections);
690 return Dyld;
691}
692
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000693static std::unique_ptr<RuntimeDyldMachO>
694createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000695 std::unique_ptr<RuntimeDyldMachO> Dyld(new RuntimeDyldMachO(MM));
696 Dyld->setProcessAllSections(ProcessAllSections);
697 return Dyld;
698}
699
Lang Hames173c69f2014-01-08 04:09:09 +0000700ObjectImage *RuntimeDyld::loadObject(ObjectFile *InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000701 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000702
Lang Hames951b2352014-03-08 18:45:12 +0000703 if (InputObject->isELF()) {
704 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(InputObject));
705 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000706 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000707 } else if (InputObject->isMachO()) {
708 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(InputObject));
709 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000710 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000711 } else
712 report_fatal_error("Incompatible object format!");
713
714 if (!Dyld->isCompatibleFile(InputObject))
715 report_fatal_error("Incompatible object format!");
716
717 Dyld->loadObject(InputImage.get());
718 return InputImage.release();
Lang Hames173c69f2014-01-08 04:09:09 +0000719}
720
Andrew Kayloradc70562012-10-02 21:18:39 +0000721ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000722 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000723 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
Lang Hames951b2352014-03-08 18:45:12 +0000724
725 switch (Type) {
726 case sys::fs::file_magic::elf_relocatable:
727 case sys::fs::file_magic::elf_executable:
728 case sys::fs::file_magic::elf_shared_object:
729 case sys::fs::file_magic::elf_core:
730 InputImage.reset(RuntimeDyldELF::createObjectImage(InputBuffer));
731 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000732 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000733 break;
734 case sys::fs::file_magic::macho_object:
735 case sys::fs::file_magic::macho_executable:
736 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
737 case sys::fs::file_magic::macho_core:
738 case sys::fs::file_magic::macho_preload_executable:
739 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
740 case sys::fs::file_magic::macho_dynamic_linker:
741 case sys::fs::file_magic::macho_bundle:
742 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
743 case sys::fs::file_magic::macho_dsym_companion:
744 InputImage.reset(RuntimeDyldMachO::createObjectImage(InputBuffer));
745 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000746 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000747 break;
748 case sys::fs::file_magic::unknown:
749 case sys::fs::file_magic::bitcode:
750 case sys::fs::file_magic::archive:
751 case sys::fs::file_magic::coff_object:
752 case sys::fs::file_magic::coff_import_library:
753 case sys::fs::file_magic::pecoff_executable:
754 case sys::fs::file_magic::macho_universal_binary:
755 case sys::fs::file_magic::windows_resource:
756 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000757 }
758
Lang Hames951b2352014-03-08 18:45:12 +0000759 if (!Dyld->isCompatibleFormat(InputBuffer))
760 report_fatal_error("Incompatible object format!");
761
762 Dyld->loadObject(InputImage.get());
763 return InputImage.release();
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000764}
765
Jim Grosbach18b81c52011-04-08 17:31:24 +0000766void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000767 if (!Dyld)
768 return NULL;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000769 return Dyld->getSymbolAddress(Name);
770}
771
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000772uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000773 if (!Dyld)
774 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000775 return Dyld->getSymbolLoadAddress(Name);
776}
777
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000778void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000779
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000780void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000781 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000782}
783
Jim Grosbach6d613972012-09-13 21:50:06 +0000784void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000785 uint64_t TargetAddress) {
786 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
787}
788
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000789bool RuntimeDyld::hasError() { return Dyld->hasError(); }
790
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000791StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000792
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000793void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000794 if (Dyld)
795 Dyld->registerEHFrames();
796}
797
798void RuntimeDyld::deregisterEHFrames() {
799 if (Dyld)
800 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000801}
802
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000803} // end namespace llvm