blob: b1558c029fef913c3b1b15db17079adf98a92a3b [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
Chandler Carruthed0881b2012-12-03 16:50:05 +000014#include "llvm/ExecutionEngine/RuntimeDyld.h"
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000015#include "JITRegistrar.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"
Chandler Carruth8a8cd2b2014-01-07 11:48:04 +000020#include "llvm/Object/ELF.h"
Tim Northover94bc73d2012-10-29 10:47:04 +000021#include "llvm/Support/MathExtras.h"
Andrew Kaylor4fba0492013-10-21 17:42:06 +000022#include "llvm/Support/MutexGuard.h"
Eli Bendersky058d6472012-01-22 07:05:02 +000023
Jim Grosbachf016b0a2011-03-21 22:15:52 +000024using namespace llvm;
25using namespace llvm::object;
Rafael Espindolabff5d0d2014-06-13 01:25:41 +000026using std::error_code;
Jim Grosbachf016b0a2011-03-21 22:15:52 +000027
Chandler Carruthf58e3762014-04-22 03:04:17 +000028#define DEBUG_TYPE "dyld"
29
Chandler Carruth086f7082011-04-05 23:54:31 +000030// Empty out-of-line virtual destructor as the key function.
Danil Malyshev72510f22011-07-13 07:57:58 +000031RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth086f7082011-04-05 23:54:31 +000032
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000033// Pin the JITRegistrar's and ObjectImage*'s vtables to this file.
34void JITRegistrar::anchor() {}
35void ObjectImage::anchor() {}
36void ObjectImageCommon::anchor() {}
37
Jim Grosbachf016b0a2011-03-21 22:15:52 +000038namespace llvm {
Jim Grosbachf016b0a2011-03-21 22:15:52 +000039
Juergen Ributzka7608dc02014-03-21 20:28:42 +000040void RuntimeDyldImpl::registerEHFrames() {}
Rafael Espindolafa5942b2013-05-05 20:43:10 +000041
Juergen Ributzka7608dc02014-03-21 20:28:42 +000042void RuntimeDyldImpl::deregisterEHFrames() {}
Andrew Kaylorc442a762013-10-16 00:14:21 +000043
Jim Grosbach733d3052011-04-12 21:20:41 +000044// Resolve the relocations for all symbols we currently know about.
45void RuntimeDyldImpl::resolveRelocations() {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000046 MutexGuard locked(lock);
47
Preston Gurd2138ef62012-04-12 20:13:57 +000048 // First, resolve relocations associated with external symbols.
Eli Benderskyb92e1cf2012-04-30 12:15:58 +000049 resolveExternalSymbols();
Danil Malyshev70d22cc2012-03-30 16:45:19 +000050
Jim Grosbacheff0a402012-01-16 22:26:39 +000051 // Just iterate over the sections we have and resolve all the relocations
52 // in them. Gross overkill, but it gets the job done.
53 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor5f3a9982013-08-19 19:38:06 +000054 // The Section here (Sections[i]) refers to the section in which the
55 // symbol for the relocation is located. The SectionID in the relocation
56 // entry provides the section to which the relocation will be applied.
Andrew Kaylora714efc2012-11-05 20:57:16 +000057 uint64_t Addr = Sections[i].LoadAddress;
Jim Grosbach36f025e2014-04-21 19:23:59 +000058 DEBUG(dbgs() << "Resolving relocations Section #" << i << "\t"
Juergen Ributzka7608dc02014-03-21 20:28:42 +000059 << format("%p", (uint8_t *)Addr) << "\n");
Andrew Kaylora714efc2012-11-05 20:57:16 +000060 resolveRelocationList(Relocations[i], Addr);
Andrew Kaylorea395922013-10-01 01:47:35 +000061 Relocations.erase(i);
Jim Grosbacheff0a402012-01-16 22:26:39 +000062 }
Jim Grosbach733d3052011-04-12 21:20:41 +000063}
64
Jim Grosbach6d613972012-09-13 21:50:06 +000065void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000066 uint64_t TargetAddress) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000067 MutexGuard locked(lock);
Danil Malyshev70d22cc2012-03-30 16:45:19 +000068 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
69 if (Sections[i].Address == LocalAddress) {
70 reassignSectionAddress(i, TargetAddress);
71 return;
72 }
73 }
74 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000075}
76
Rafael Espindola6956b1a2014-04-21 13:45:32 +000077static error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
78 uint64_t Address;
79 if (error_code EC = Sym.getAddress(Address))
80 return EC;
81
82 if (Address == UnknownAddressOrSize) {
83 Result = UnknownAddressOrSize;
84 return object_error::success;
85 }
86
87 const ObjectFile *Obj = Sym.getObject();
88 section_iterator SecI(Obj->section_begin());
89 if (error_code EC = Sym.getSection(SecI))
90 return EC;
91
92 if (SecI == Obj->section_end()) {
93 Result = UnknownAddressOrSize;
94 return object_error::success;
95 }
96
97 uint64_t SectionAddress;
98 if (error_code EC = SecI->getAddress(SectionAddress))
99 return EC;
100
101 Result = Address - SectionAddress;
102 return object_error::success;
103}
104
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000105ObjectImage *RuntimeDyldImpl::loadObject(ObjectImage *InputObject) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000106 MutexGuard locked(lock);
107
Ahmed Charles56440fd2014-03-06 05:51:42 +0000108 std::unique_ptr<ObjectImage> Obj(InputObject);
Lang Hames937ec542014-02-12 21:30:07 +0000109 if (!Obj)
Craig Topper353eda42014-04-24 06:44:33 +0000110 return nullptr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000111
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000112 // Save information about our target
Lang Hames937ec542014-02-12 21:30:07 +0000113 Arch = (Triple::ArchType)Obj->getArch();
114 IsTargetLittleEndian = Obj->getObjectFile()->isLittleEndian();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000115
Lang Hames937ec542014-02-12 21:30:07 +0000116 // Compute the memory size required to load all sections to be loaded
117 // and pass this information to the memory manager
118 if (MemMgr->needsToReserveAllocationSpace()) {
119 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0;
120 computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW);
121 MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
122 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000123
Eli Benderskyfc079082012-05-01 06:58:59 +0000124 // Symbols found in this object
125 StringMap<SymbolLoc> LocalSymbols;
126 // Used sections from the object file
127 ObjSectionToIDMap LocalSections;
128
Tim Northover94bc73d2012-10-29 10:47:04 +0000129 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyfc079082012-05-01 06:58:59 +0000130 CommonSymbolMap CommonSymbols;
Tim Northover94bc73d2012-10-29 10:47:04 +0000131 // Maximum required total memory to allocate all common symbols
Eli Benderskyfc079082012-05-01 06:58:59 +0000132 uint64_t CommonSize = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000133
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000134 // Parse symbols
135 DEBUG(dbgs() << "Parse symbols:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000136 for (symbol_iterator I = Obj->begin_symbols(), E = Obj->end_symbols(); I != E;
137 ++I) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000138 object::SymbolRef::Type SymType;
139 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000140 Check(I->getType(SymType));
141 Check(I->getName(Name));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000142
Jim Grosbach36f025e2014-04-21 19:23:59 +0000143 uint32_t Flags = I->getFlags();
Preston Gurd2138ef62012-04-12 20:13:57 +0000144
Lang Hames937ec542014-02-12 21:30:07 +0000145 bool IsCommon = Flags & SymbolRef::SF_Common;
146 if (IsCommon) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000147 // Add the common symbols to a list. We'll allocate them all below.
Lang Hames36072da2014-05-12 21:39:59 +0000148 if (!GlobalSymbolTable.count(Name)) {
149 uint32_t Align;
150 Check(I->getAlignment(Align));
151 uint64_t Size = 0;
152 Check(I->getSize(Size));
153 CommonSize += Size + Align;
154 CommonSymbols[*I] = CommonSymbolInfo(Size, Align);
155 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000156 } else {
157 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000158 SymType == object::SymbolRef::ST_Data ||
159 SymType == object::SymbolRef::ST_Unknown) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000160 uint64_t SectOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000161 StringRef SectionData;
Tim Northoverd05e6b52012-12-17 17:59:35 +0000162 bool IsCode;
Lang Hames937ec542014-02-12 21:30:07 +0000163 section_iterator SI = Obj->end_sections();
Jim Grosbach36f025e2014-04-21 19:23:59 +0000164 Check(getOffset(*I, SectOffset));
165 Check(I->getSection(SI));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000166 if (SI == Obj->end_sections())
167 continue;
Lang Hames937ec542014-02-12 21:30:07 +0000168 Check(SI->getContents(SectionData));
169 Check(SI->isText(IsCode));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000170 unsigned SectionID =
171 findOrEmitSection(*Obj, *SI, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000172 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000173 DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset)
174 << " flags: " << Flags << " SID: " << SectionID);
Amara Emersonc958bf32012-11-16 11:11:59 +0000175 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000176 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000177 }
178 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
179 }
180
Preston Gurd2138ef62012-04-12 20:13:57 +0000181 // Allocate common symbols
182 if (CommonSize != 0)
Lang Hames36072da2014-05-12 21:39:59 +0000183 emitCommonSymbols(*Obj, CommonSymbols, CommonSize, GlobalSymbolTable);
Preston Gurd2138ef62012-04-12 20:13:57 +0000184
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000185 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000186 DEBUG(dbgs() << "Parse relocations:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000187 for (section_iterator SI = Obj->begin_sections(), SE = Obj->end_sections();
188 SI != SE; ++SI) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000189 unsigned SectionID = 0;
190 StubMap Stubs;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000191 section_iterator RelocatedSection = SI->getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000192
Jim Grosbach36f025e2014-04-21 19:23:59 +0000193 relocation_iterator I = SI->relocation_begin();
194 relocation_iterator E = SI->relocation_end();
Rafael Espindola77314aa2014-04-03 22:42:22 +0000195
196 if (I == E && !ProcessAllSections)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000197 continue;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000198
Juergen Ributzka046709f2014-03-21 07:26:41 +0000199 bool IsCode = false;
200 Check(RelocatedSection->isText(IsCode));
201 SectionID =
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000202 findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections);
Juergen Ributzka046709f2014-03-21 07:26:41 +0000203 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
204
Rafael Espindola77314aa2014-04-03 22:42:22 +0000205 for (; I != E;)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000206 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
207 Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000208 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000209
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000210 // Give the subclasses a chance to tie-up any loose ends.
Lang Hames36072da2014-05-12 21:39:59 +0000211 finalizeLoad(*Obj, LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000212
Ahmed Charles96c9d952014-03-05 10:19:29 +0000213 return Obj.release();
Lang Hames937ec542014-02-12 21:30:07 +0000214}
215
216// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000217// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000218// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000219static uint64_t
220computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
221 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000222 uint64_t TotalSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000223 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
224 uint64_t AlignedSize =
225 (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000226 TotalSize += AlignedSize;
227 }
228 return TotalSize;
229}
230
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000231// Compute an upper bound of the memory size that is required to load all
232// sections
233void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
234 uint64_t &CodeSize,
235 uint64_t &DataSizeRO,
236 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000237 // Compute the size of all sections required for execution
238 std::vector<uint64_t> CodeSectionSizes;
239 std::vector<uint64_t> ROSectionSizes;
240 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000241 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000242
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000243 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000244 // also determine the max alignment of all sections
Jim Grosbach36f025e2014-04-21 19:23:59 +0000245 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
246 SI != SE; ++SI) {
247 const SectionRef &Section = *SI;
248
Lang Hames937ec542014-02-12 21:30:07 +0000249 bool IsRequired;
250 Check(Section.isRequiredForExecution(IsRequired));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000251
Lang Hames937ec542014-02-12 21:30:07 +0000252 // Consider only the sections that are required to be loaded for execution
253 if (IsRequired) {
254 uint64_t DataSize = 0;
255 uint64_t Alignment64 = 0;
256 bool IsCode = false;
257 bool IsReadOnly = false;
258 StringRef Name;
259 Check(Section.getSize(DataSize));
260 Check(Section.getAlignment(Alignment64));
261 Check(Section.isText(IsCode));
262 Check(Section.isReadOnlyData(IsReadOnly));
263 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000264 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
265
Lang Hames937ec542014-02-12 21:30:07 +0000266 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
267 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000268
269 // The .eh_frame section (at least on Linux) needs an extra four bytes
270 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000271 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000272 // slightly different name, so this won't have any effect for MachO
273 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000274 if (Name == ".eh_frame")
275 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000276
Lang Hames937ec542014-02-12 21:30:07 +0000277 if (SectionSize > 0) {
278 // save the total size of the section
279 if (IsCode) {
280 CodeSectionSizes.push_back(SectionSize);
281 } else if (IsReadOnly) {
282 ROSectionSizes.push_back(SectionSize);
283 } else {
284 RWSectionSizes.push_back(SectionSize);
285 }
286 // update the max alignment
287 if (Alignment > MaxAlignment) {
288 MaxAlignment = Alignment;
289 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000290 }
Lang Hames937ec542014-02-12 21:30:07 +0000291 }
292 }
293
294 // Compute the size of all common symbols
295 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000296 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
297 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000298 uint32_t Flags = I->getFlags();
299 if (Flags & SymbolRef::SF_Common) {
300 // Add the common symbols to a list. We'll allocate them all below.
301 uint64_t Size = 0;
302 Check(I->getSize(Size));
303 CommonSize += Size;
304 }
305 }
306 if (CommonSize != 0) {
307 RWSectionSizes.push_back(CommonSize);
308 }
309
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000310 // Compute the required allocation space for each different type of sections
311 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000312 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000313 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000314 // depends on the order, in which the sections are allocated.
315 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
316 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000317 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000318}
319
320// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000321unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000322 const SectionRef &Section) {
323 unsigned StubSize = getMaxStubSize();
324 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000325 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000326 }
327 // FIXME: this is an inefficient way to handle this. We should computed the
328 // necessary section allocation size in loadObject by walking all the sections
329 // once.
330 unsigned StubBufSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000331 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
332 SI != SE; ++SI) {
333 section_iterator RelSecI = SI->getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000334 if (!(RelSecI == Section))
335 continue;
336
Jim Grosbach36f025e2014-04-21 19:23:59 +0000337 for (const RelocationRef &Reloc : SI->relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000338 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000339 StubBufSize += StubSize;
340 }
341 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000342
Lang Hames937ec542014-02-12 21:30:07 +0000343 // Get section data size and alignment
344 uint64_t Alignment64;
345 uint64_t DataSize;
346 Check(Section.getSize(DataSize));
347 Check(Section.getAlignment(Alignment64));
348
349 // Add stubbuf size alignment
350 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
351 unsigned StubAlignment = getStubAlignment();
352 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
353 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000354 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000355 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000356}
357
Eli Bendersky667b8792012-05-01 10:41:12 +0000358void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
359 const CommonSymbolMap &CommonSymbols,
360 uint64_t TotalSize,
361 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000362 // Allocate memory for the section
363 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000364 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
365 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000366 if (!Addr)
367 report_fatal_error("Unable to allocate memory for common symbols!");
368 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000369 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000370 memset(Addr, 0, TotalSize);
371
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000372 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
373 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000374
375 // Assign the address of each symbol
Jim Grosbach36f025e2014-04-21 19:23:59 +0000376 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
377 itEnd = CommonSymbols.end(); it != itEnd; ++it) {
378 uint64_t Size = it->second.first;
379 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000380 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000381 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000382 if (Align) {
383 // This symbol has an alignment requirement.
384 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
385 Addr += AlignOffset;
386 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000387 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
388 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000389 }
Jim Grosbach36f025e2014-04-21 19:23:59 +0000390 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000391 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000392 Offset += Size;
393 Addr += Size;
394 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000395}
396
Preston Gurdcc31af92012-04-16 22:12:58 +0000397unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000398 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000399
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000400 StringRef data;
401 uint64_t Alignment64;
402 Check(Section.getContents(data));
403 Check(Section.getAlignment(Alignment64));
404
405 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000406 bool IsRequired;
407 bool IsVirtual;
408 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000409 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000410 uint64_t DataSize;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000411 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000412 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000413 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000414 Check(Section.isRequiredForExecution(IsRequired));
415 Check(Section.isVirtual(IsVirtual));
416 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000417 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000418 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000419 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000420
421 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000422
Andrew Kaylor877b9312013-10-16 00:32:24 +0000423 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
424 // with zeroes added at the end. For MachO objects, this section has a
425 // slightly different name, so this won't have any effect for MachO objects.
426 if (Name == ".eh_frame")
427 PaddingSize = 4;
428
Lang Hamesd4100172014-02-11 05:28:24 +0000429 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000430 unsigned SectionID = Sections.size();
431 uint8_t *Addr;
Craig Topper353eda42014-04-24 06:44:33 +0000432 const char *pData = nullptr;
Preston Gurd2138ef62012-04-12 20:13:57 +0000433
434 // Some sections, such as debug info, don't need to be loaded for execution.
435 // Leave those where they are.
436 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000437 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000438 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
439 Name)
440 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
441 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000442 if (!Addr)
443 report_fatal_error("Unable to allocate section memory!");
444
445 // Virtual sections have no data in the object image, so leave pData = 0
446 if (!IsVirtual)
447 pData = data.data();
448
449 // Zero-initialize or copy the data from the image
450 if (IsZeroInit || IsVirtual)
451 memset(Addr, 0, DataSize);
452 else
453 memcpy(Addr, pData, DataSize);
454
Andrew Kaylor877b9312013-10-16 00:32:24 +0000455 // Fill in any extra bytes we allocated for padding
456 if (PaddingSize != 0) {
457 memset(Addr + DataSize, 0, PaddingSize);
458 // Update the DataSize variable so that the stub offset is set correctly.
459 DataSize += PaddingSize;
460 }
461
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000462 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000463 << " obj addr: " << format("%p", pData)
464 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000465 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
466 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000467 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000468 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000469 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000470 // to handle later processing (and by 'handle' I mean don't do anything
471 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000472 Allocate = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000473 Addr = nullptr;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000474 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
475 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
476 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
477 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000478 }
479
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000480 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000481 return SectionID;
482}
483
Preston Gurdcc31af92012-04-16 22:12:58 +0000484unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
485 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000486 bool IsCode,
487 ObjSectionToIDMap &LocalSections) {
488
489 unsigned SectionID = 0;
490 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
491 if (i != LocalSections.end())
492 SectionID = i->second;
493 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000494 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000495 LocalSections[Section] = SectionID;
496 }
497 return SectionID;
498}
499
Eli Bendersky667b8792012-05-01 10:41:12 +0000500void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
501 unsigned SectionID) {
502 Relocations[SectionID].push_back(RE);
503}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000504
Eli Bendersky667b8792012-05-01 10:41:12 +0000505void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
506 StringRef SymbolName) {
507 // Relocation by symbol. If the symbol is found in the global symbol table,
508 // create an appropriate section relocation. Otherwise, add it to
509 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000510 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000511 if (Loc == GlobalSymbolTable.end()) {
512 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000513 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000514 // Copy the RE since we want to modify its addend.
515 RelocationEntry RECopy = RE;
516 RECopy.Addend += Loc->second.second;
517 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000518 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000519}
520
521uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
James Molloybd2ffa02014-04-30 10:15:41 +0000522 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be ||
523 Arch == Triple::arm64 || Arch == Triple::arm64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000524 // This stub has to be able to access the full address space,
525 // since symbol lookup won't necessarily find a handy, in-range,
526 // PLT stub for functions which could be anywhere.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000527 uint32_t *StubAddr = (uint32_t *)Addr;
Tim Northover37cde972013-05-04 20:14:09 +0000528
529 // Stub can use ip0 (== x16) to calculate address
530 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
531 StubAddr++;
532 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
533 StubAddr++;
534 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
535 StubAddr++;
536 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
537 StubAddr++;
538 *StubAddr = 0xd61f0200; // br ip0
539
540 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000541 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000542 // TODO: There is only ARM far stub now. We should add the Thumb stub,
543 // and stubs for branches Thumb - ARM and ARM - Thumb.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000544 uint32_t *StubAddr = (uint32_t *)Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000545 *StubAddr = 0xe51ff004; // ldr pc,<label>
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000546 return (uint8_t *)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000547 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000548 uint32_t *StubAddr = (uint32_t *)Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000549 // 0: 3c190000 lui t9,%hi(addr).
550 // 4: 27390000 addiu t9,t9,%lo(addr).
551 // 8: 03200008 jr t9.
552 // c: 00000000 nop.
553 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
554 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
555
556 *StubAddr = LuiT9Instr;
557 StubAddr++;
558 *StubAddr = AdduiT9Instr;
559 StubAddr++;
560 *StubAddr = JrT9Instr;
561 StubAddr++;
562 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000563 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000564 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000565 // PowerPC64 stub: the address points to a function descriptor
566 // instead of the function itself. Load the function address
567 // on r11 and sets it to control register. Also loads the function
568 // TOC in r2 and environment pointer to r11.
569 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
570 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
571 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
572 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
573 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
574 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
575 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
576 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
577 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
578 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
579 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000580
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000581 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000582 } else if (Arch == Triple::systemz) {
583 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
584 writeInt16BE(Addr+2, 0x0000);
585 writeInt16BE(Addr+4, 0x0004);
586 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
587 // 8-byte address stored at Addr + 8
588 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000589 } else if (Arch == Triple::x86_64) {
590 *Addr = 0xFF; // jmp
591 *(Addr+1) = 0x25; // rip
592 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Lang Hames36072da2014-05-12 21:39:59 +0000593 } else if (Arch == Triple::x86) {
594 *Addr = 0xE9; // 32-bit pc-relative jump.
Akira Hatanaka111174b2012-08-17 21:28:04 +0000595 }
596 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000597}
598
599// Assign an address to a symbol name and resolve all the relocations
600// associated with it.
601void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
602 uint64_t Addr) {
603 // The address to use for relocation resolution is not
604 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000605 // a remote execution environment of some sort. Relocations can't
606 // be applied until all the sections have been moved. The client must
607 // trigger this with a call to MCJIT::finalize() or
608 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000609 //
610 // Addr is a uint64_t because we can't assume the pointer width
611 // of the target is the same as that of the host. Just use a generic
612 // "big enough" type.
613 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000614}
615
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000616void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
617 uint64_t Value) {
618 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000619 const RelocationEntry &RE = Relocs[i];
620 // Ignore relocations for sections that were not loaded
Craig Topper353eda42014-04-24 06:44:33 +0000621 if (Sections[RE.SectionID].Address == nullptr)
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000622 continue;
623 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000624 }
625}
626
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000627void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000628 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000629 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
630
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000631 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000632 if (Name.size() == 0) {
633 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000634 DEBUG(dbgs() << "Resolving absolute relocations."
635 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000636 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000637 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000638 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000639 uint64_t Addr = 0;
640 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
641 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000642 // This is an external symbol, try to get its address from
643 // MemoryManager.
644 Addr = MemMgr->getSymbolAddress(Name.data());
645 // The call to getSymbolAddress may have caused additional modules to
646 // be loaded, which may have added new entries to the
647 // ExternalSymbolRelocations map. Consquently, we need to update our
648 // iterator. This is also why retrieval of the relocation list
649 // associated with this symbol is deferred until below this point.
650 // New entries may have been added to the relocation list.
651 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000652 } else {
653 // We found the symbol in our global table. It was probably in a
654 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000655 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000656 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
657 }
658
659 // FIXME: Implement error handling that doesn't kill the host program!
660 if (!Addr)
661 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000662 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000663
664 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000665 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
666 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000667 // This list may have been updated when we called getSymbolAddress, so
668 // don't change this code to get the list earlier.
669 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000670 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000671 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000672
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000673 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000674 }
675}
676
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000677//===----------------------------------------------------------------------===//
678// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000679RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000680 // FIXME: There's a potential issue lurking here if a single instance of
681 // RuntimeDyld is used to load multiple objects. The current implementation
682 // associates a single memory manager with a RuntimeDyld instance. Even
683 // though the public class spawns a new 'impl' instance for each load,
684 // they share a single memory manager. This can become a problem when page
685 // permissions are applied.
Craig Topper353eda42014-04-24 06:44:33 +0000686 Dyld = nullptr;
Danil Malyshev72510f22011-07-13 07:57:58 +0000687 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000688 ProcessAllSections = false;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000689}
690
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000691RuntimeDyld::~RuntimeDyld() { delete Dyld; }
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000692
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000693static std::unique_ptr<RuntimeDyldELF>
694createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000695 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
696 Dyld->setProcessAllSections(ProcessAllSections);
697 return Dyld;
698}
699
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000700static std::unique_ptr<RuntimeDyldMachO>
701createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000702 std::unique_ptr<RuntimeDyldMachO> Dyld(new RuntimeDyldMachO(MM));
703 Dyld->setProcessAllSections(ProcessAllSections);
704 return Dyld;
705}
706
David Blaikie7a1e7752014-04-29 21:52:46 +0000707ObjectImage *RuntimeDyld::loadObject(std::unique_ptr<ObjectFile> InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000708 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000709
David Blaikie7a1e7752014-04-29 21:52:46 +0000710 ObjectFile &Obj = *InputObject;
711
Lang Hames951b2352014-03-08 18:45:12 +0000712 if (InputObject->isELF()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000713 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000714 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000715 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000716 } else if (InputObject->isMachO()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000717 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000718 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000719 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000720 } else
721 report_fatal_error("Incompatible object format!");
722
David Blaikie7a1e7752014-04-29 21:52:46 +0000723 if (!Dyld->isCompatibleFile(&Obj))
Lang Hames951b2352014-03-08 18:45:12 +0000724 report_fatal_error("Incompatible object format!");
725
726 Dyld->loadObject(InputImage.get());
727 return InputImage.release();
Lang Hames173c69f2014-01-08 04:09:09 +0000728}
729
Andrew Kayloradc70562012-10-02 21:18:39 +0000730ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000731 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000732 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
Lang Hames951b2352014-03-08 18:45:12 +0000733
734 switch (Type) {
735 case sys::fs::file_magic::elf_relocatable:
736 case sys::fs::file_magic::elf_executable:
737 case sys::fs::file_magic::elf_shared_object:
738 case sys::fs::file_magic::elf_core:
739 InputImage.reset(RuntimeDyldELF::createObjectImage(InputBuffer));
740 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000741 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000742 break;
743 case sys::fs::file_magic::macho_object:
744 case sys::fs::file_magic::macho_executable:
745 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
746 case sys::fs::file_magic::macho_core:
747 case sys::fs::file_magic::macho_preload_executable:
748 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
749 case sys::fs::file_magic::macho_dynamic_linker:
750 case sys::fs::file_magic::macho_bundle:
751 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
752 case sys::fs::file_magic::macho_dsym_companion:
753 InputImage.reset(RuntimeDyldMachO::createObjectImage(InputBuffer));
754 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000755 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000756 break;
757 case sys::fs::file_magic::unknown:
758 case sys::fs::file_magic::bitcode:
759 case sys::fs::file_magic::archive:
760 case sys::fs::file_magic::coff_object:
761 case sys::fs::file_magic::coff_import_library:
762 case sys::fs::file_magic::pecoff_executable:
763 case sys::fs::file_magic::macho_universal_binary:
764 case sys::fs::file_magic::windows_resource:
765 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000766 }
767
Lang Hames951b2352014-03-08 18:45:12 +0000768 if (!Dyld->isCompatibleFormat(InputBuffer))
769 report_fatal_error("Incompatible object format!");
770
771 Dyld->loadObject(InputImage.get());
772 return InputImage.release();
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000773}
774
Jim Grosbach18b81c52011-04-08 17:31:24 +0000775void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000776 if (!Dyld)
Craig Topper353eda42014-04-24 06:44:33 +0000777 return nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000778 return Dyld->getSymbolAddress(Name);
779}
780
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000781uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000782 if (!Dyld)
783 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000784 return Dyld->getSymbolLoadAddress(Name);
785}
786
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000787void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000788
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000789void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000790 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000791}
792
Jim Grosbach6d613972012-09-13 21:50:06 +0000793void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000794 uint64_t TargetAddress) {
795 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
796}
797
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000798bool RuntimeDyld::hasError() { return Dyld->hasError(); }
799
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000800StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000801
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000802void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000803 if (Dyld)
804 Dyld->registerEHFrames();
805}
806
807void RuntimeDyld::deregisterEHFrames() {
808 if (Dyld)
809 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000810}
811
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000812} // end namespace llvm