blob: de84260ae2b1502ed2ef58eebf29ee8018934089 [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 Grosbachde577e32014-04-21 18:10:31 +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 Grosbachde577e32014-04-21 18:10:31 +0000134 for (const SymbolRef &Sym : Obj->symbols()) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000135 object::SymbolRef::Type SymType;
136 StringRef Name;
Jim Grosbachde577e32014-04-21 18:10:31 +0000137 Check(Sym.getType(SymType));
138 Check(Sym.getName(Name));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000139
Jim Grosbachde577e32014-04-21 18:10:31 +0000140 uint32_t Flags = Sym.getFlags();
Preston Gurd2138ef62012-04-12 20:13:57 +0000141
Lang Hames937ec542014-02-12 21:30:07 +0000142 bool IsCommon = Flags & SymbolRef::SF_Common;
143 if (IsCommon) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000144 // Add the common symbols to a list. We'll allocate them all below.
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000145 uint32_t Align;
Jim Grosbachde577e32014-04-21 18:10:31 +0000146 Check(Sym.getAlignment(Align));
Preston Gurd2138ef62012-04-12 20:13:57 +0000147 uint64_t Size = 0;
Jim Grosbachde577e32014-04-21 18:10:31 +0000148 Check(Sym.getSize(Size));
Tim Northover94bc73d2012-10-29 10:47:04 +0000149 CommonSize += Size + Align;
Jim Grosbachde577e32014-04-21 18:10:31 +0000150 CommonSymbols[Sym] = CommonSymbolInfo(Size, Align);
Preston Gurd2138ef62012-04-12 20:13:57 +0000151 } else {
152 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000153 SymType == object::SymbolRef::ST_Data ||
154 SymType == object::SymbolRef::ST_Unknown) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000155 uint64_t SectOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000156 StringRef SectionData;
Tim Northoverd05e6b52012-12-17 17:59:35 +0000157 bool IsCode;
Lang Hames937ec542014-02-12 21:30:07 +0000158 section_iterator SI = Obj->end_sections();
Jim Grosbachde577e32014-04-21 18:10:31 +0000159 Check(getOffset(Sym, SectOffset));
160 Check(Sym.getSection(SI));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000161 if (SI == Obj->end_sections())
162 continue;
Lang Hames937ec542014-02-12 21:30:07 +0000163 Check(SI->getContents(SectionData));
164 Check(SI->isText(IsCode));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000165 unsigned SectionID =
166 findOrEmitSection(*Obj, *SI, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000167 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000168 DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset)
169 << " flags: " << Flags << " SID: " << SectionID);
Amara Emersonc958bf32012-11-16 11:11:59 +0000170 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000171 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000172 }
173 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
174 }
175
Preston Gurd2138ef62012-04-12 20:13:57 +0000176 // Allocate common symbols
177 if (CommonSize != 0)
Lang Hames937ec542014-02-12 21:30:07 +0000178 emitCommonSymbols(*Obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurd2138ef62012-04-12 20:13:57 +0000179
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000180 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000181 DEBUG(dbgs() << "Parse relocations:\n");
Jim Grosbachde577e32014-04-21 18:10:31 +0000182 for (const SectionRef &Section : Obj->sections()) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000183 unsigned SectionID = 0;
184 StubMap Stubs;
Jim Grosbachde577e32014-04-21 18:10:31 +0000185 section_iterator RelocatedSection = Section.getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000186
Jim Grosbachde577e32014-04-21 18:10:31 +0000187 relocation_iterator I = Section.relocation_begin();
188 relocation_iterator E = Section.relocation_end();
Rafael Espindola77314aa2014-04-03 22:42:22 +0000189
190 if (I == E && !ProcessAllSections)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000191 continue;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000192
Juergen Ributzka046709f2014-03-21 07:26:41 +0000193 bool IsCode = false;
194 Check(RelocatedSection->isText(IsCode));
195 SectionID =
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000196 findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections);
Juergen Ributzka046709f2014-03-21 07:26:41 +0000197 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
198
Rafael Espindola77314aa2014-04-03 22:42:22 +0000199 for (; I != E;)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000200 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
201 Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000202 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000203
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000204 // Give the subclasses a chance to tie-up any loose ends.
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000205 finalizeLoad(LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000206
Ahmed Charles96c9d952014-03-05 10:19:29 +0000207 return Obj.release();
Lang Hames937ec542014-02-12 21:30:07 +0000208}
209
210// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000211// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000212// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000213static uint64_t
214computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
215 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000216 uint64_t TotalSize = 0;
Jim Grosbachde577e32014-04-21 18:10:31 +0000217 for (uint64_t Size : SectionSizes) {
218 uint64_t AlignedSize = (Size + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000219 TotalSize += AlignedSize;
220 }
221 return TotalSize;
222}
223
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000224// Compute an upper bound of the memory size that is required to load all
225// sections
226void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
227 uint64_t &CodeSize,
228 uint64_t &DataSizeRO,
229 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000230 // Compute the size of all sections required for execution
231 std::vector<uint64_t> CodeSectionSizes;
232 std::vector<uint64_t> ROSectionSizes;
233 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000234 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000235
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000236 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000237 // also determine the max alignment of all sections
Jim Grosbachde577e32014-04-21 18:10:31 +0000238 for (const SectionRef &Section : Obj.sections()) {
Lang Hames937ec542014-02-12 21:30:07 +0000239 bool IsRequired;
240 Check(Section.isRequiredForExecution(IsRequired));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000241
Lang Hames937ec542014-02-12 21:30:07 +0000242 // Consider only the sections that are required to be loaded for execution
243 if (IsRequired) {
244 uint64_t DataSize = 0;
245 uint64_t Alignment64 = 0;
246 bool IsCode = false;
247 bool IsReadOnly = false;
248 StringRef Name;
249 Check(Section.getSize(DataSize));
250 Check(Section.getAlignment(Alignment64));
251 Check(Section.isText(IsCode));
252 Check(Section.isReadOnlyData(IsReadOnly));
253 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000254 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
255
Lang Hames937ec542014-02-12 21:30:07 +0000256 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
257 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000258
259 // The .eh_frame section (at least on Linux) needs an extra four bytes
260 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000261 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000262 // slightly different name, so this won't have any effect for MachO
263 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000264 if (Name == ".eh_frame")
265 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000266
Lang Hames937ec542014-02-12 21:30:07 +0000267 if (SectionSize > 0) {
268 // save the total size of the section
269 if (IsCode) {
270 CodeSectionSizes.push_back(SectionSize);
271 } else if (IsReadOnly) {
272 ROSectionSizes.push_back(SectionSize);
273 } else {
274 RWSectionSizes.push_back(SectionSize);
275 }
276 // update the max alignment
277 if (Alignment > MaxAlignment) {
278 MaxAlignment = Alignment;
279 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000280 }
Lang Hames937ec542014-02-12 21:30:07 +0000281 }
282 }
283
284 // Compute the size of all common symbols
285 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000286 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
287 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000288 uint32_t Flags = I->getFlags();
289 if (Flags & SymbolRef::SF_Common) {
290 // Add the common symbols to a list. We'll allocate them all below.
291 uint64_t Size = 0;
292 Check(I->getSize(Size));
293 CommonSize += Size;
294 }
295 }
296 if (CommonSize != 0) {
297 RWSectionSizes.push_back(CommonSize);
298 }
299
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000300 // Compute the required allocation space for each different type of sections
301 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000302 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000303 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000304 // depends on the order, in which the sections are allocated.
305 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
306 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000307 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000308}
309
310// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000311unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000312 const SectionRef &Section) {
313 unsigned StubSize = getMaxStubSize();
314 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000315 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000316 }
317 // FIXME: this is an inefficient way to handle this. We should computed the
318 // necessary section allocation size in loadObject by walking all the sections
319 // once.
320 unsigned StubBufSize = 0;
Jim Grosbachde577e32014-04-21 18:10:31 +0000321 for (const SectionRef &Section : Obj.sections()) {
322 section_iterator RelSecI = Section.getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000323 if (!(RelSecI == Section))
324 continue;
325
Jim Grosbachde577e32014-04-21 18:10:31 +0000326 for (const RelocationRef &Reloc : Section.relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000327 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000328 StubBufSize += StubSize;
329 }
330 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000331
Lang Hames937ec542014-02-12 21:30:07 +0000332 // Get section data size and alignment
333 uint64_t Alignment64;
334 uint64_t DataSize;
335 Check(Section.getSize(DataSize));
336 Check(Section.getAlignment(Alignment64));
337
338 // Add stubbuf size alignment
339 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
340 unsigned StubAlignment = getStubAlignment();
341 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
342 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000343 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000344 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000345}
346
Eli Bendersky667b8792012-05-01 10:41:12 +0000347void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
348 const CommonSymbolMap &CommonSymbols,
349 uint64_t TotalSize,
350 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000351 // Allocate memory for the section
352 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000353 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
354 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000355 if (!Addr)
356 report_fatal_error("Unable to allocate memory for common symbols!");
357 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000358 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000359 memset(Addr, 0, TotalSize);
360
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000361 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
362 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000363
364 // Assign the address of each symbol
Jim Grosbachde577e32014-04-21 18:10:31 +0000365 for (const auto &Entry : CommonSymbols) {
366 uint64_t Size = Entry.second.first;
367 uint64_t Align = Entry.second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000368 StringRef Name;
Jim Grosbachde577e32014-04-21 18:10:31 +0000369 Entry.first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000370 if (Align) {
371 // This symbol has an alignment requirement.
372 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
373 Addr += AlignOffset;
374 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000375 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
376 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000377 }
Jim Grosbachde577e32014-04-21 18:10:31 +0000378 Obj.updateSymbolAddress(Entry.first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000379 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000380 Offset += Size;
381 Addr += Size;
382 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000383}
384
Preston Gurdcc31af92012-04-16 22:12:58 +0000385unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000386 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000387
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000388 StringRef data;
389 uint64_t Alignment64;
390 Check(Section.getContents(data));
391 Check(Section.getAlignment(Alignment64));
392
393 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000394 bool IsRequired;
395 bool IsVirtual;
396 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000397 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000398 uint64_t DataSize;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000399 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000400 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000401 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000402 Check(Section.isRequiredForExecution(IsRequired));
403 Check(Section.isVirtual(IsVirtual));
404 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000405 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000406 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000407 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000408
409 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000410
Andrew Kaylor877b9312013-10-16 00:32:24 +0000411 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
412 // with zeroes added at the end. For MachO objects, this section has a
413 // slightly different name, so this won't have any effect for MachO objects.
414 if (Name == ".eh_frame")
415 PaddingSize = 4;
416
Lang Hamesd4100172014-02-11 05:28:24 +0000417 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000418 unsigned SectionID = Sections.size();
419 uint8_t *Addr;
420 const char *pData = 0;
421
422 // Some sections, such as debug info, don't need to be loaded for execution.
423 // Leave those where they are.
424 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000425 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000426 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
427 Name)
428 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
429 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000430 if (!Addr)
431 report_fatal_error("Unable to allocate section memory!");
432
433 // Virtual sections have no data in the object image, so leave pData = 0
434 if (!IsVirtual)
435 pData = data.data();
436
437 // Zero-initialize or copy the data from the image
438 if (IsZeroInit || IsVirtual)
439 memset(Addr, 0, DataSize);
440 else
441 memcpy(Addr, pData, DataSize);
442
Andrew Kaylor877b9312013-10-16 00:32:24 +0000443 // Fill in any extra bytes we allocated for padding
444 if (PaddingSize != 0) {
445 memset(Addr + DataSize, 0, PaddingSize);
446 // Update the DataSize variable so that the stub offset is set correctly.
447 DataSize += PaddingSize;
448 }
449
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000450 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000451 << " obj addr: " << format("%p", pData)
452 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000453 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
454 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000455 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000456 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000457 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000458 // to handle later processing (and by 'handle' I mean don't do anything
459 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000460 Allocate = 0;
461 Addr = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000462 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
463 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
464 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
465 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000466 }
467
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000468 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000469 return SectionID;
470}
471
Preston Gurdcc31af92012-04-16 22:12:58 +0000472unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
473 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000474 bool IsCode,
475 ObjSectionToIDMap &LocalSections) {
476
477 unsigned SectionID = 0;
478 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
479 if (i != LocalSections.end())
480 SectionID = i->second;
481 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000482 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000483 LocalSections[Section] = SectionID;
484 }
485 return SectionID;
486}
487
Eli Bendersky667b8792012-05-01 10:41:12 +0000488void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
489 unsigned SectionID) {
490 Relocations[SectionID].push_back(RE);
491}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000492
Eli Bendersky667b8792012-05-01 10:41:12 +0000493void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
494 StringRef SymbolName) {
495 // Relocation by symbol. If the symbol is found in the global symbol table,
496 // create an appropriate section relocation. Otherwise, add it to
497 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000498 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000499 if (Loc == GlobalSymbolTable.end()) {
500 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000501 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000502 // Copy the RE since we want to modify its addend.
503 RelocationEntry RECopy = RE;
504 RECopy.Addend += Loc->second.second;
505 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000506 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000507}
508
509uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
Christian Pirker99974c72014-03-26 14:57:32 +0000510 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000511 // This stub has to be able to access the full address space,
512 // since symbol lookup won't necessarily find a handy, in-range,
513 // PLT stub for functions which could be anywhere.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000514 uint32_t *StubAddr = (uint32_t *)Addr;
Tim Northover37cde972013-05-04 20:14:09 +0000515
516 // Stub can use ip0 (== x16) to calculate address
517 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
518 StubAddr++;
519 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
520 StubAddr++;
521 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
522 StubAddr++;
523 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
524 StubAddr++;
525 *StubAddr = 0xd61f0200; // br ip0
526
527 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000528 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000529 // TODO: There is only ARM far stub now. We should add the Thumb stub,
530 // and stubs for branches Thumb - ARM and ARM - Thumb.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000531 uint32_t *StubAddr = (uint32_t *)Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000532 *StubAddr = 0xe51ff004; // ldr pc,<label>
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000533 return (uint8_t *)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000534 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000535 uint32_t *StubAddr = (uint32_t *)Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000536 // 0: 3c190000 lui t9,%hi(addr).
537 // 4: 27390000 addiu t9,t9,%lo(addr).
538 // 8: 03200008 jr t9.
539 // c: 00000000 nop.
540 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
541 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
542
543 *StubAddr = LuiT9Instr;
544 StubAddr++;
545 *StubAddr = AdduiT9Instr;
546 StubAddr++;
547 *StubAddr = JrT9Instr;
548 StubAddr++;
549 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000550 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000551 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000552 // PowerPC64 stub: the address points to a function descriptor
553 // instead of the function itself. Load the function address
554 // on r11 and sets it to control register. Also loads the function
555 // TOC in r2 and environment pointer to r11.
556 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
557 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
558 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
559 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
560 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
561 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
562 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
563 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
564 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
565 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
566 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000567
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000568 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000569 } else if (Arch == Triple::systemz) {
570 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
571 writeInt16BE(Addr+2, 0x0000);
572 writeInt16BE(Addr+4, 0x0004);
573 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
574 // 8-byte address stored at Addr + 8
575 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000576 } else if (Arch == Triple::x86_64) {
577 *Addr = 0xFF; // jmp
578 *(Addr+1) = 0x25; // rip
579 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Akira Hatanaka111174b2012-08-17 21:28:04 +0000580 }
581 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000582}
583
584// Assign an address to a symbol name and resolve all the relocations
585// associated with it.
586void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
587 uint64_t Addr) {
588 // The address to use for relocation resolution is not
589 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000590 // a remote execution environment of some sort. Relocations can't
591 // be applied until all the sections have been moved. The client must
592 // trigger this with a call to MCJIT::finalize() or
593 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000594 //
595 // Addr is a uint64_t because we can't assume the pointer width
596 // of the target is the same as that of the host. Just use a generic
597 // "big enough" type.
598 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000599}
600
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000601void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
602 uint64_t Value) {
603 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000604 const RelocationEntry &RE = Relocs[i];
605 // Ignore relocations for sections that were not loaded
606 if (Sections[RE.SectionID].Address == 0)
607 continue;
608 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000609 }
610}
611
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000612void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000613 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000614 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
615
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000616 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000617 if (Name.size() == 0) {
618 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000619 DEBUG(dbgs() << "Resolving absolute relocations."
620 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000621 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000622 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000623 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000624 uint64_t Addr = 0;
625 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
626 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000627 // This is an external symbol, try to get its address from
628 // MemoryManager.
629 Addr = MemMgr->getSymbolAddress(Name.data());
630 // The call to getSymbolAddress may have caused additional modules to
631 // be loaded, which may have added new entries to the
632 // ExternalSymbolRelocations map. Consquently, we need to update our
633 // iterator. This is also why retrieval of the relocation list
634 // associated with this symbol is deferred until below this point.
635 // New entries may have been added to the relocation list.
636 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000637 } else {
638 // We found the symbol in our global table. It was probably in a
639 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000640 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000641 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
642 }
643
644 // FIXME: Implement error handling that doesn't kill the host program!
645 if (!Addr)
646 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000647 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000648
649 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000650 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
651 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000652 // This list may have been updated when we called getSymbolAddress, so
653 // don't change this code to get the list earlier.
654 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000655 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000656 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000657
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000658 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000659 }
660}
661
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000662//===----------------------------------------------------------------------===//
663// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000664RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000665 // FIXME: There's a potential issue lurking here if a single instance of
666 // RuntimeDyld is used to load multiple objects. The current implementation
667 // associates a single memory manager with a RuntimeDyld instance. Even
668 // though the public class spawns a new 'impl' instance for each load,
669 // they share a single memory manager. This can become a problem when page
670 // permissions are applied.
Danil Malyshev72510f22011-07-13 07:57:58 +0000671 Dyld = 0;
672 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000673 ProcessAllSections = false;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000674}
675
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000676RuntimeDyld::~RuntimeDyld() { delete Dyld; }
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000677
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000678static std::unique_ptr<RuntimeDyldELF>
679createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000680 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
681 Dyld->setProcessAllSections(ProcessAllSections);
682 return Dyld;
683}
684
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000685static std::unique_ptr<RuntimeDyldMachO>
686createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000687 std::unique_ptr<RuntimeDyldMachO> Dyld(new RuntimeDyldMachO(MM));
688 Dyld->setProcessAllSections(ProcessAllSections);
689 return Dyld;
690}
691
Lang Hames173c69f2014-01-08 04:09:09 +0000692ObjectImage *RuntimeDyld::loadObject(ObjectFile *InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000693 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000694
Lang Hames951b2352014-03-08 18:45:12 +0000695 if (InputObject->isELF()) {
696 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(InputObject));
697 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000698 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000699 } else if (InputObject->isMachO()) {
700 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(InputObject));
701 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000702 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000703 } else
704 report_fatal_error("Incompatible object format!");
705
706 if (!Dyld->isCompatibleFile(InputObject))
707 report_fatal_error("Incompatible object format!");
708
709 Dyld->loadObject(InputImage.get());
710 return InputImage.release();
Lang Hames173c69f2014-01-08 04:09:09 +0000711}
712
Andrew Kayloradc70562012-10-02 21:18:39 +0000713ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000714 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000715 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
Lang Hames951b2352014-03-08 18:45:12 +0000716
717 switch (Type) {
718 case sys::fs::file_magic::elf_relocatable:
719 case sys::fs::file_magic::elf_executable:
720 case sys::fs::file_magic::elf_shared_object:
721 case sys::fs::file_magic::elf_core:
722 InputImage.reset(RuntimeDyldELF::createObjectImage(InputBuffer));
723 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000724 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000725 break;
726 case sys::fs::file_magic::macho_object:
727 case sys::fs::file_magic::macho_executable:
728 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
729 case sys::fs::file_magic::macho_core:
730 case sys::fs::file_magic::macho_preload_executable:
731 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
732 case sys::fs::file_magic::macho_dynamic_linker:
733 case sys::fs::file_magic::macho_bundle:
734 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
735 case sys::fs::file_magic::macho_dsym_companion:
736 InputImage.reset(RuntimeDyldMachO::createObjectImage(InputBuffer));
737 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000738 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000739 break;
740 case sys::fs::file_magic::unknown:
741 case sys::fs::file_magic::bitcode:
742 case sys::fs::file_magic::archive:
743 case sys::fs::file_magic::coff_object:
744 case sys::fs::file_magic::coff_import_library:
745 case sys::fs::file_magic::pecoff_executable:
746 case sys::fs::file_magic::macho_universal_binary:
747 case sys::fs::file_magic::windows_resource:
748 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000749 }
750
Lang Hames951b2352014-03-08 18:45:12 +0000751 if (!Dyld->isCompatibleFormat(InputBuffer))
752 report_fatal_error("Incompatible object format!");
753
754 Dyld->loadObject(InputImage.get());
755 return InputImage.release();
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000756}
757
Jim Grosbach18b81c52011-04-08 17:31:24 +0000758void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000759 if (!Dyld)
760 return NULL;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000761 return Dyld->getSymbolAddress(Name);
762}
763
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000764uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000765 if (!Dyld)
766 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000767 return Dyld->getSymbolLoadAddress(Name);
768}
769
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000770void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000771
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000772void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000773 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000774}
775
Jim Grosbach6d613972012-09-13 21:50:06 +0000776void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000777 uint64_t TargetAddress) {
778 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
779}
780
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000781bool RuntimeDyld::hasError() { return Dyld->hasError(); }
782
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000783StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000784
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000785void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000786 if (Dyld)
787 Dyld->registerEHFrames();
788}
789
790void RuntimeDyld::deregisterEHFrames() {
791 if (Dyld)
792 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000793}
794
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000795} // end namespace llvm