blob: 0956761187d6064e1daa9965a004d4dcf67503e1 [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;
26
Chandler Carruthf58e3762014-04-22 03:04:17 +000027#define DEBUG_TYPE "dyld"
28
Chandler Carruth086f7082011-04-05 23:54:31 +000029// Empty out-of-line virtual destructor as the key function.
Danil Malyshev72510f22011-07-13 07:57:58 +000030RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth086f7082011-04-05 23:54:31 +000031
Juergen Ributzkad12ccbd2013-11-19 00:57:56 +000032// Pin the JITRegistrar's and ObjectImage*'s vtables to this file.
33void JITRegistrar::anchor() {}
34void ObjectImage::anchor() {}
35void ObjectImageCommon::anchor() {}
36
Jim Grosbachf016b0a2011-03-21 22:15:52 +000037namespace llvm {
Jim Grosbachf016b0a2011-03-21 22:15:52 +000038
Juergen Ributzka7608dc02014-03-21 20:28:42 +000039void RuntimeDyldImpl::registerEHFrames() {}
Rafael Espindolafa5942b2013-05-05 20:43:10 +000040
Juergen Ributzka7608dc02014-03-21 20:28:42 +000041void RuntimeDyldImpl::deregisterEHFrames() {}
Andrew Kaylorc442a762013-10-16 00:14:21 +000042
Jim Grosbach733d3052011-04-12 21:20:41 +000043// Resolve the relocations for all symbols we currently know about.
44void RuntimeDyldImpl::resolveRelocations() {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000045 MutexGuard locked(lock);
46
Preston Gurd2138ef62012-04-12 20:13:57 +000047 // First, resolve relocations associated with external symbols.
Eli Benderskyb92e1cf2012-04-30 12:15:58 +000048 resolveExternalSymbols();
Danil Malyshev70d22cc2012-03-30 16:45:19 +000049
Jim Grosbacheff0a402012-01-16 22:26:39 +000050 // Just iterate over the sections we have and resolve all the relocations
51 // in them. Gross overkill, but it gets the job done.
52 for (int i = 0, e = Sections.size(); i != e; ++i) {
Andrew Kaylor5f3a9982013-08-19 19:38:06 +000053 // The Section here (Sections[i]) refers to the section in which the
54 // symbol for the relocation is located. The SectionID in the relocation
55 // entry provides the section to which the relocation will be applied.
Andrew Kaylora714efc2012-11-05 20:57:16 +000056 uint64_t Addr = Sections[i].LoadAddress;
Jim Grosbach36f025e2014-04-21 19:23:59 +000057 DEBUG(dbgs() << "Resolving relocations Section #" << i << "\t"
Juergen Ributzka7608dc02014-03-21 20:28:42 +000058 << format("%p", (uint8_t *)Addr) << "\n");
Andrew Kaylora714efc2012-11-05 20:57:16 +000059 resolveRelocationList(Relocations[i], Addr);
Andrew Kaylorea395922013-10-01 01:47:35 +000060 Relocations.erase(i);
Jim Grosbacheff0a402012-01-16 22:26:39 +000061 }
Jim Grosbach733d3052011-04-12 21:20:41 +000062}
63
Jim Grosbach6d613972012-09-13 21:50:06 +000064void RuntimeDyldImpl::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000065 uint64_t TargetAddress) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +000066 MutexGuard locked(lock);
Danil Malyshev70d22cc2012-03-30 16:45:19 +000067 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
68 if (Sections[i].Address == LocalAddress) {
69 reassignSectionAddress(i, TargetAddress);
70 return;
71 }
72 }
73 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach0ddb3a42012-01-16 23:50:55 +000074}
75
Rafael Espindola6956b1a2014-04-21 13:45:32 +000076static error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
77 uint64_t Address;
78 if (error_code EC = Sym.getAddress(Address))
79 return EC;
80
81 if (Address == UnknownAddressOrSize) {
82 Result = UnknownAddressOrSize;
83 return object_error::success;
84 }
85
86 const ObjectFile *Obj = Sym.getObject();
87 section_iterator SecI(Obj->section_begin());
88 if (error_code EC = Sym.getSection(SecI))
89 return EC;
90
91 if (SecI == Obj->section_end()) {
92 Result = UnknownAddressOrSize;
93 return object_error::success;
94 }
95
96 uint64_t SectionAddress;
97 if (error_code EC = SecI->getAddress(SectionAddress))
98 return EC;
99
100 Result = Address - SectionAddress;
101 return object_error::success;
102}
103
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000104ObjectImage *RuntimeDyldImpl::loadObject(ObjectImage *InputObject) {
Andrew Kaylor4fba0492013-10-21 17:42:06 +0000105 MutexGuard locked(lock);
106
Ahmed Charles56440fd2014-03-06 05:51:42 +0000107 std::unique_ptr<ObjectImage> Obj(InputObject);
Lang Hames937ec542014-02-12 21:30:07 +0000108 if (!Obj)
Craig Topper353eda42014-04-24 06:44:33 +0000109 return nullptr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000110
Andrew Kaylor33c5b1b2013-10-15 20:44:55 +0000111 // Save information about our target
Lang Hames937ec542014-02-12 21:30:07 +0000112 Arch = (Triple::ArchType)Obj->getArch();
113 IsTargetLittleEndian = Obj->getObjectFile()->isLittleEndian();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000114
Lang Hames937ec542014-02-12 21:30:07 +0000115 // Compute the memory size required to load all sections to be loaded
116 // and pass this information to the memory manager
117 if (MemMgr->needsToReserveAllocationSpace()) {
118 uint64_t CodeSize = 0, DataSizeRO = 0, DataSizeRW = 0;
119 computeTotalAllocSize(*Obj, CodeSize, DataSizeRO, DataSizeRW);
120 MemMgr->reserveAllocationSpace(CodeSize, DataSizeRO, DataSizeRW);
121 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000122
Eli Benderskyfc079082012-05-01 06:58:59 +0000123 // Symbols found in this object
124 StringMap<SymbolLoc> LocalSymbols;
125 // Used sections from the object file
126 ObjSectionToIDMap LocalSections;
127
Tim Northover94bc73d2012-10-29 10:47:04 +0000128 // Common symbols requiring allocation, with their sizes and alignments
Eli Benderskyfc079082012-05-01 06:58:59 +0000129 CommonSymbolMap CommonSymbols;
Tim Northover94bc73d2012-10-29 10:47:04 +0000130 // Maximum required total memory to allocate all common symbols
Eli Benderskyfc079082012-05-01 06:58:59 +0000131 uint64_t CommonSize = 0;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000132
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000133 // Parse symbols
134 DEBUG(dbgs() << "Parse symbols:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000135 for (symbol_iterator I = Obj->begin_symbols(), E = Obj->end_symbols(); I != E;
136 ++I) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000137 object::SymbolRef::Type SymType;
138 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000139 Check(I->getType(SymType));
140 Check(I->getName(Name));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000141
Jim Grosbach36f025e2014-04-21 19:23:59 +0000142 uint32_t Flags = I->getFlags();
Preston Gurd2138ef62012-04-12 20:13:57 +0000143
Lang Hames937ec542014-02-12 21:30:07 +0000144 bool IsCommon = Flags & SymbolRef::SF_Common;
145 if (IsCommon) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000146 // Add the common symbols to a list. We'll allocate them all below.
Rafael Espindolae4dd2e02013-04-29 22:24:22 +0000147 uint32_t Align;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000148 Check(I->getAlignment(Align));
Preston Gurd2138ef62012-04-12 20:13:57 +0000149 uint64_t Size = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000150 Check(I->getSize(Size));
Tim Northover94bc73d2012-10-29 10:47:04 +0000151 CommonSize += Size + Align;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000152 CommonSymbols[*I] = CommonSymbolInfo(Size, Align);
Preston Gurd2138ef62012-04-12 20:13:57 +0000153 } else {
154 if (SymType == object::SymbolRef::ST_Function ||
Akira Hatanaka111174b2012-08-17 21:28:04 +0000155 SymType == object::SymbolRef::ST_Data ||
156 SymType == object::SymbolRef::ST_Unknown) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000157 uint64_t SectOffset;
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000158 StringRef SectionData;
Tim Northoverd05e6b52012-12-17 17:59:35 +0000159 bool IsCode;
Lang Hames937ec542014-02-12 21:30:07 +0000160 section_iterator SI = Obj->end_sections();
Jim Grosbach36f025e2014-04-21 19:23:59 +0000161 Check(getOffset(*I, SectOffset));
162 Check(I->getSection(SI));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000163 if (SI == Obj->end_sections())
164 continue;
Lang Hames937ec542014-02-12 21:30:07 +0000165 Check(SI->getContents(SectionData));
166 Check(SI->isText(IsCode));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000167 unsigned SectionID =
168 findOrEmitSection(*Obj, *SI, IsCode, LocalSections);
Preston Gurd2138ef62012-04-12 20:13:57 +0000169 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
Rafael Espindola6956b1a2014-04-21 13:45:32 +0000170 DEBUG(dbgs() << "\tOffset: " << format("%p", (uintptr_t)SectOffset)
171 << " flags: " << Flags << " SID: " << SectionID);
Amara Emersonc958bf32012-11-16 11:11:59 +0000172 GlobalSymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000173 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000174 }
175 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
176 }
177
Preston Gurd2138ef62012-04-12 20:13:57 +0000178 // Allocate common symbols
179 if (CommonSize != 0)
Lang Hames937ec542014-02-12 21:30:07 +0000180 emitCommonSymbols(*Obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurd2138ef62012-04-12 20:13:57 +0000181
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000182 // Parse and process relocations
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000183 DEBUG(dbgs() << "Parse relocations:\n");
Jim Grosbach36f025e2014-04-21 19:23:59 +0000184 for (section_iterator SI = Obj->begin_sections(), SE = Obj->end_sections();
185 SI != SE; ++SI) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000186 unsigned SectionID = 0;
187 StubMap Stubs;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000188 section_iterator RelocatedSection = SI->getRelocatedSection();
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000189
Jim Grosbach36f025e2014-04-21 19:23:59 +0000190 relocation_iterator I = SI->relocation_begin();
191 relocation_iterator E = SI->relocation_end();
Rafael Espindola77314aa2014-04-03 22:42:22 +0000192
193 if (I == E && !ProcessAllSections)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000194 continue;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000195
Juergen Ributzka046709f2014-03-21 07:26:41 +0000196 bool IsCode = false;
197 Check(RelocatedSection->isText(IsCode));
198 SectionID =
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000199 findOrEmitSection(*Obj, *RelocatedSection, IsCode, LocalSections);
Juergen Ributzka046709f2014-03-21 07:26:41 +0000200 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
201
Rafael Espindola77314aa2014-04-03 22:42:22 +0000202 for (; I != E;)
Juergen Ributzka046709f2014-03-21 07:26:41 +0000203 I = processRelocationRef(SectionID, I, *Obj, LocalSections, LocalSymbols,
204 Stubs);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000205 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000206
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000207 // Give the subclasses a chance to tie-up any loose ends.
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000208 finalizeLoad(LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000209
Ahmed Charles96c9d952014-03-05 10:19:29 +0000210 return Obj.release();
Lang Hames937ec542014-02-12 21:30:07 +0000211}
212
213// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000214// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000215// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000216static uint64_t
217computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
218 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000219 uint64_t TotalSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000220 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
221 uint64_t AlignedSize =
222 (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000223 TotalSize += AlignedSize;
224 }
225 return TotalSize;
226}
227
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000228// Compute an upper bound of the memory size that is required to load all
229// sections
230void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
231 uint64_t &CodeSize,
232 uint64_t &DataSizeRO,
233 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000234 // Compute the size of all sections required for execution
235 std::vector<uint64_t> CodeSectionSizes;
236 std::vector<uint64_t> ROSectionSizes;
237 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000238 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000239
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000240 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000241 // also determine the max alignment of all sections
Jim Grosbach36f025e2014-04-21 19:23:59 +0000242 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
243 SI != SE; ++SI) {
244 const SectionRef &Section = *SI;
245
Lang Hames937ec542014-02-12 21:30:07 +0000246 bool IsRequired;
247 Check(Section.isRequiredForExecution(IsRequired));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000248
Lang Hames937ec542014-02-12 21:30:07 +0000249 // Consider only the sections that are required to be loaded for execution
250 if (IsRequired) {
251 uint64_t DataSize = 0;
252 uint64_t Alignment64 = 0;
253 bool IsCode = false;
254 bool IsReadOnly = false;
255 StringRef Name;
256 Check(Section.getSize(DataSize));
257 Check(Section.getAlignment(Alignment64));
258 Check(Section.isText(IsCode));
259 Check(Section.isReadOnlyData(IsReadOnly));
260 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000261 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
262
Lang Hames937ec542014-02-12 21:30:07 +0000263 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
264 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000265
266 // The .eh_frame section (at least on Linux) needs an extra four bytes
267 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000268 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000269 // slightly different name, so this won't have any effect for MachO
270 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000271 if (Name == ".eh_frame")
272 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000273
Lang Hames937ec542014-02-12 21:30:07 +0000274 if (SectionSize > 0) {
275 // save the total size of the section
276 if (IsCode) {
277 CodeSectionSizes.push_back(SectionSize);
278 } else if (IsReadOnly) {
279 ROSectionSizes.push_back(SectionSize);
280 } else {
281 RWSectionSizes.push_back(SectionSize);
282 }
283 // update the max alignment
284 if (Alignment > MaxAlignment) {
285 MaxAlignment = Alignment;
286 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000287 }
Lang Hames937ec542014-02-12 21:30:07 +0000288 }
289 }
290
291 // Compute the size of all common symbols
292 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000293 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
294 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000295 uint32_t Flags = I->getFlags();
296 if (Flags & SymbolRef::SF_Common) {
297 // Add the common symbols to a list. We'll allocate them all below.
298 uint64_t Size = 0;
299 Check(I->getSize(Size));
300 CommonSize += Size;
301 }
302 }
303 if (CommonSize != 0) {
304 RWSectionSizes.push_back(CommonSize);
305 }
306
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000307 // Compute the required allocation space for each different type of sections
308 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000309 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000310 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000311 // depends on the order, in which the sections are allocated.
312 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
313 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000314 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000315}
316
317// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000318unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000319 const SectionRef &Section) {
320 unsigned StubSize = getMaxStubSize();
321 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000322 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000323 }
324 // FIXME: this is an inefficient way to handle this. We should computed the
325 // necessary section allocation size in loadObject by walking all the sections
326 // once.
327 unsigned StubBufSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000328 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
329 SI != SE; ++SI) {
330 section_iterator RelSecI = SI->getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000331 if (!(RelSecI == Section))
332 continue;
333
Jim Grosbach36f025e2014-04-21 19:23:59 +0000334 for (const RelocationRef &Reloc : SI->relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000335 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000336 StubBufSize += StubSize;
337 }
338 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000339
Lang Hames937ec542014-02-12 21:30:07 +0000340 // Get section data size and alignment
341 uint64_t Alignment64;
342 uint64_t DataSize;
343 Check(Section.getSize(DataSize));
344 Check(Section.getAlignment(Alignment64));
345
346 // Add stubbuf size alignment
347 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
348 unsigned StubAlignment = getStubAlignment();
349 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
350 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000351 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000352 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000353}
354
Eli Bendersky667b8792012-05-01 10:41:12 +0000355void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
356 const CommonSymbolMap &CommonSymbols,
357 uint64_t TotalSize,
358 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000359 // Allocate memory for the section
360 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000361 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
362 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000363 if (!Addr)
364 report_fatal_error("Unable to allocate memory for common symbols!");
365 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000366 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000367 memset(Addr, 0, TotalSize);
368
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000369 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
370 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000371
372 // Assign the address of each symbol
Jim Grosbach36f025e2014-04-21 19:23:59 +0000373 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
374 itEnd = CommonSymbols.end(); it != itEnd; ++it) {
375 uint64_t Size = it->second.first;
376 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000377 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000378 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000379 if (Align) {
380 // This symbol has an alignment requirement.
381 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
382 Addr += AlignOffset;
383 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000384 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
385 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000386 }
Jim Grosbach36f025e2014-04-21 19:23:59 +0000387 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000388 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000389 Offset += Size;
390 Addr += Size;
391 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000392}
393
Preston Gurdcc31af92012-04-16 22:12:58 +0000394unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000395 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000396
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000397 StringRef data;
398 uint64_t Alignment64;
399 Check(Section.getContents(data));
400 Check(Section.getAlignment(Alignment64));
401
402 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000403 bool IsRequired;
404 bool IsVirtual;
405 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000406 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000407 uint64_t DataSize;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000408 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000409 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000410 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000411 Check(Section.isRequiredForExecution(IsRequired));
412 Check(Section.isVirtual(IsVirtual));
413 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000414 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000415 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000416 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000417
418 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000419
Andrew Kaylor877b9312013-10-16 00:32:24 +0000420 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
421 // with zeroes added at the end. For MachO objects, this section has a
422 // slightly different name, so this won't have any effect for MachO objects.
423 if (Name == ".eh_frame")
424 PaddingSize = 4;
425
Lang Hamesd4100172014-02-11 05:28:24 +0000426 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000427 unsigned SectionID = Sections.size();
428 uint8_t *Addr;
Craig Topper353eda42014-04-24 06:44:33 +0000429 const char *pData = nullptr;
Preston Gurd2138ef62012-04-12 20:13:57 +0000430
431 // Some sections, such as debug info, don't need to be loaded for execution.
432 // Leave those where they are.
433 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000434 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000435 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
436 Name)
437 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
438 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000439 if (!Addr)
440 report_fatal_error("Unable to allocate section memory!");
441
442 // Virtual sections have no data in the object image, so leave pData = 0
443 if (!IsVirtual)
444 pData = data.data();
445
446 // Zero-initialize or copy the data from the image
447 if (IsZeroInit || IsVirtual)
448 memset(Addr, 0, DataSize);
449 else
450 memcpy(Addr, pData, DataSize);
451
Andrew Kaylor877b9312013-10-16 00:32:24 +0000452 // Fill in any extra bytes we allocated for padding
453 if (PaddingSize != 0) {
454 memset(Addr + DataSize, 0, PaddingSize);
455 // Update the DataSize variable so that the stub offset is set correctly.
456 DataSize += PaddingSize;
457 }
458
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000459 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000460 << " obj addr: " << format("%p", pData)
461 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000462 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
463 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000464 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000465 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000466 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000467 // to handle later processing (and by 'handle' I mean don't do anything
468 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000469 Allocate = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000470 Addr = nullptr;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000471 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
472 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
473 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
474 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000475 }
476
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000477 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000478 return SectionID;
479}
480
Preston Gurdcc31af92012-04-16 22:12:58 +0000481unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
482 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000483 bool IsCode,
484 ObjSectionToIDMap &LocalSections) {
485
486 unsigned SectionID = 0;
487 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
488 if (i != LocalSections.end())
489 SectionID = i->second;
490 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000491 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000492 LocalSections[Section] = SectionID;
493 }
494 return SectionID;
495}
496
Eli Bendersky667b8792012-05-01 10:41:12 +0000497void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
498 unsigned SectionID) {
499 Relocations[SectionID].push_back(RE);
500}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000501
Eli Bendersky667b8792012-05-01 10:41:12 +0000502void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
503 StringRef SymbolName) {
504 // Relocation by symbol. If the symbol is found in the global symbol table,
505 // create an appropriate section relocation. Otherwise, add it to
506 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000507 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000508 if (Loc == GlobalSymbolTable.end()) {
509 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000510 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000511 // Copy the RE since we want to modify its addend.
512 RelocationEntry RECopy = RE;
513 RECopy.Addend += Loc->second.second;
514 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000515 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000516}
517
518uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
James Molloybd2ffa02014-04-30 10:15:41 +0000519 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be ||
520 Arch == Triple::arm64 || Arch == Triple::arm64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000521 // This stub has to be able to access the full address space,
522 // since symbol lookup won't necessarily find a handy, in-range,
523 // PLT stub for functions which could be anywhere.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000524 uint32_t *StubAddr = (uint32_t *)Addr;
Tim Northover37cde972013-05-04 20:14:09 +0000525
526 // Stub can use ip0 (== x16) to calculate address
527 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
528 StubAddr++;
529 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
530 StubAddr++;
531 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
532 StubAddr++;
533 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
534 StubAddr++;
535 *StubAddr = 0xd61f0200; // br ip0
536
537 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000538 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000539 // TODO: There is only ARM far stub now. We should add the Thumb stub,
540 // and stubs for branches Thumb - ARM and ARM - Thumb.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000541 uint32_t *StubAddr = (uint32_t *)Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000542 *StubAddr = 0xe51ff004; // ldr pc,<label>
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000543 return (uint8_t *)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000544 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000545 uint32_t *StubAddr = (uint32_t *)Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000546 // 0: 3c190000 lui t9,%hi(addr).
547 // 4: 27390000 addiu t9,t9,%lo(addr).
548 // 8: 03200008 jr t9.
549 // c: 00000000 nop.
550 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
551 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
552
553 *StubAddr = LuiT9Instr;
554 StubAddr++;
555 *StubAddr = AdduiT9Instr;
556 StubAddr++;
557 *StubAddr = JrT9Instr;
558 StubAddr++;
559 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000560 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000561 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000562 // PowerPC64 stub: the address points to a function descriptor
563 // instead of the function itself. Load the function address
564 // on r11 and sets it to control register. Also loads the function
565 // TOC in r2 and environment pointer to r11.
566 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
567 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
568 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
569 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
570 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
571 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
572 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
573 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
574 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
575 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
576 writeInt32BE(Addr+40, 0x4E800420); // bctr
Andrew Kaylor0eece8d2012-11-01 19:49:21 +0000577
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000578 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000579 } else if (Arch == Triple::systemz) {
580 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
581 writeInt16BE(Addr+2, 0x0000);
582 writeInt16BE(Addr+4, 0x0004);
583 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
584 // 8-byte address stored at Addr + 8
585 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000586 } else if (Arch == Triple::x86_64) {
587 *Addr = 0xFF; // jmp
588 *(Addr+1) = 0x25; // rip
589 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Akira Hatanaka111174b2012-08-17 21:28:04 +0000590 }
591 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000592}
593
594// Assign an address to a symbol name and resolve all the relocations
595// associated with it.
596void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
597 uint64_t Addr) {
598 // The address to use for relocation resolution is not
599 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000600 // a remote execution environment of some sort. Relocations can't
601 // be applied until all the sections have been moved. The client must
602 // trigger this with a call to MCJIT::finalize() or
603 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000604 //
605 // Addr is a uint64_t because we can't assume the pointer width
606 // of the target is the same as that of the host. Just use a generic
607 // "big enough" type.
608 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000609}
610
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000611void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
612 uint64_t Value) {
613 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000614 const RelocationEntry &RE = Relocs[i];
615 // Ignore relocations for sections that were not loaded
Craig Topper353eda42014-04-24 06:44:33 +0000616 if (Sections[RE.SectionID].Address == nullptr)
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000617 continue;
618 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000619 }
620}
621
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000622void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000623 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000624 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
625
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000626 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000627 if (Name.size() == 0) {
628 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000629 DEBUG(dbgs() << "Resolving absolute relocations."
630 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000631 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000632 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000633 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000634 uint64_t Addr = 0;
635 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
636 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000637 // This is an external symbol, try to get its address from
638 // MemoryManager.
639 Addr = MemMgr->getSymbolAddress(Name.data());
640 // The call to getSymbolAddress may have caused additional modules to
641 // be loaded, which may have added new entries to the
642 // ExternalSymbolRelocations map. Consquently, we need to update our
643 // iterator. This is also why retrieval of the relocation list
644 // associated with this symbol is deferred until below this point.
645 // New entries may have been added to the relocation list.
646 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000647 } else {
648 // We found the symbol in our global table. It was probably in a
649 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000650 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000651 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
652 }
653
654 // FIXME: Implement error handling that doesn't kill the host program!
655 if (!Addr)
656 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000657 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000658
659 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000660 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
661 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000662 // This list may have been updated when we called getSymbolAddress, so
663 // don't change this code to get the list earlier.
664 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000665 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000666 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000667
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000668 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000669 }
670}
671
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000672//===----------------------------------------------------------------------===//
673// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000674RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000675 // FIXME: There's a potential issue lurking here if a single instance of
676 // RuntimeDyld is used to load multiple objects. The current implementation
677 // associates a single memory manager with a RuntimeDyld instance. Even
678 // though the public class spawns a new 'impl' instance for each load,
679 // they share a single memory manager. This can become a problem when page
680 // permissions are applied.
Craig Topper353eda42014-04-24 06:44:33 +0000681 Dyld = nullptr;
Danil Malyshev72510f22011-07-13 07:57:58 +0000682 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000683 ProcessAllSections = false;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000684}
685
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000686RuntimeDyld::~RuntimeDyld() { delete Dyld; }
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000687
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000688static std::unique_ptr<RuntimeDyldELF>
689createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000690 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
691 Dyld->setProcessAllSections(ProcessAllSections);
692 return Dyld;
693}
694
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000695static std::unique_ptr<RuntimeDyldMachO>
696createRuntimeDyldMachO(RTDyldMemoryManager *MM, bool ProcessAllSections) {
Lang Hames868d4b32014-03-20 21:06:46 +0000697 std::unique_ptr<RuntimeDyldMachO> Dyld(new RuntimeDyldMachO(MM));
698 Dyld->setProcessAllSections(ProcessAllSections);
699 return Dyld;
700}
701
David Blaikie7a1e7752014-04-29 21:52:46 +0000702ObjectImage *RuntimeDyld::loadObject(std::unique_ptr<ObjectFile> InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000703 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000704
David Blaikie7a1e7752014-04-29 21:52:46 +0000705 ObjectFile &Obj = *InputObject;
706
Lang Hames951b2352014-03-08 18:45:12 +0000707 if (InputObject->isELF()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000708 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000709 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000710 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000711 } else if (InputObject->isMachO()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000712 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000713 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000714 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000715 } else
716 report_fatal_error("Incompatible object format!");
717
David Blaikie7a1e7752014-04-29 21:52:46 +0000718 if (!Dyld->isCompatibleFile(&Obj))
Lang Hames951b2352014-03-08 18:45:12 +0000719 report_fatal_error("Incompatible object format!");
720
721 Dyld->loadObject(InputImage.get());
722 return InputImage.release();
Lang Hames173c69f2014-01-08 04:09:09 +0000723}
724
Andrew Kayloradc70562012-10-02 21:18:39 +0000725ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000726 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000727 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
Lang Hames951b2352014-03-08 18:45:12 +0000728
729 switch (Type) {
730 case sys::fs::file_magic::elf_relocatable:
731 case sys::fs::file_magic::elf_executable:
732 case sys::fs::file_magic::elf_shared_object:
733 case sys::fs::file_magic::elf_core:
734 InputImage.reset(RuntimeDyldELF::createObjectImage(InputBuffer));
735 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000736 Dyld = createRuntimeDyldELF(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000737 break;
738 case sys::fs::file_magic::macho_object:
739 case sys::fs::file_magic::macho_executable:
740 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
741 case sys::fs::file_magic::macho_core:
742 case sys::fs::file_magic::macho_preload_executable:
743 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
744 case sys::fs::file_magic::macho_dynamic_linker:
745 case sys::fs::file_magic::macho_bundle:
746 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
747 case sys::fs::file_magic::macho_dsym_companion:
748 InputImage.reset(RuntimeDyldMachO::createObjectImage(InputBuffer));
749 if (!Dyld)
Lang Hames868d4b32014-03-20 21:06:46 +0000750 Dyld = createRuntimeDyldMachO(MM, ProcessAllSections).release();
Lang Hames951b2352014-03-08 18:45:12 +0000751 break;
752 case sys::fs::file_magic::unknown:
753 case sys::fs::file_magic::bitcode:
754 case sys::fs::file_magic::archive:
755 case sys::fs::file_magic::coff_object:
756 case sys::fs::file_magic::coff_import_library:
757 case sys::fs::file_magic::pecoff_executable:
758 case sys::fs::file_magic::macho_universal_binary:
759 case sys::fs::file_magic::windows_resource:
760 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000761 }
762
Lang Hames951b2352014-03-08 18:45:12 +0000763 if (!Dyld->isCompatibleFormat(InputBuffer))
764 report_fatal_error("Incompatible object format!");
765
766 Dyld->loadObject(InputImage.get());
767 return InputImage.release();
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000768}
769
Jim Grosbach18b81c52011-04-08 17:31:24 +0000770void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000771 if (!Dyld)
Craig Topper353eda42014-04-24 06:44:33 +0000772 return nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000773 return Dyld->getSymbolAddress(Name);
774}
775
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000776uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000777 if (!Dyld)
778 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000779 return Dyld->getSymbolLoadAddress(Name);
780}
781
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000782void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000783
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000784void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000785 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000786}
787
Jim Grosbach6d613972012-09-13 21:50:06 +0000788void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000789 uint64_t TargetAddress) {
790 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
791}
792
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000793bool RuntimeDyld::hasError() { return Dyld->hasError(); }
794
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000795StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000796
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000797void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000798 if (Dyld)
799 Dyld->registerEHFrames();
800}
801
802void RuntimeDyld::deregisterEHFrames() {
803 if (Dyld)
804 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000805}
806
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000807} // end namespace llvm