blob: 7434c2a06666f35915344d01fe266aec78426d1f [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"
Lang Hamesf7acddd2014-07-22 22:47:39 +000017#include "RuntimeDyldCheckerImpl.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 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 Espindoladb4ed0b2014-06-13 02:24:39 +000077static std::error_code getOffset(const SymbolRef &Sym, uint64_t &Result) {
Rafael Espindola6956b1a2014-04-21 13:45:32 +000078 uint64_t Address;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000079 if (std::error_code EC = Sym.getAddress(Address))
Rafael Espindola6956b1a2014-04-21 13:45:32 +000080 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());
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000089 if (std::error_code EC = Sym.getSection(SecI))
Rafael Espindola6956b1a2014-04-21 13:45:32 +000090 return EC;
91
92 if (SecI == Obj->section_end()) {
93 Result = UnknownAddressOrSize;
94 return object_error::success;
95 }
96
97 uint64_t SectionAddress;
Rafael Espindoladb4ed0b2014-06-13 02:24:39 +000098 if (std::error_code EC = SecI->getAddress(SectionAddress))
Rafael Espindola6956b1a2014-04-21 13:45:32 +000099 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);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000208
209#ifndef NDEBUG
210 // If there is an attached checker, notify it about the stubs for this
211 // section so that they can be verified.
212 if (Checker)
213 Checker->registerStubMap(Obj->getImageName(), SectionID, Stubs);
214#endif
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000215 }
Preston Gurdcc31af92012-04-16 22:12:58 +0000216
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000217 // Give the subclasses a chance to tie-up any loose ends.
Lang Hames36072da2014-05-12 21:39:59 +0000218 finalizeLoad(*Obj, LocalSections);
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000219
Ahmed Charles96c9d952014-03-05 10:19:29 +0000220 return Obj.release();
Lang Hames937ec542014-02-12 21:30:07 +0000221}
222
223// A helper method for computeTotalAllocSize.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000224// Computes the memory size required to allocate sections with the given sizes,
Lang Hames937ec542014-02-12 21:30:07 +0000225// assuming that all sections are allocated with the given alignment
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000226static uint64_t
227computeAllocationSizeForSections(std::vector<uint64_t> &SectionSizes,
228 uint64_t Alignment) {
Lang Hames937ec542014-02-12 21:30:07 +0000229 uint64_t TotalSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000230 for (size_t Idx = 0, Cnt = SectionSizes.size(); Idx < Cnt; Idx++) {
231 uint64_t AlignedSize =
232 (SectionSizes[Idx] + Alignment - 1) / Alignment * Alignment;
Lang Hames937ec542014-02-12 21:30:07 +0000233 TotalSize += AlignedSize;
234 }
235 return TotalSize;
236}
237
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000238// Compute an upper bound of the memory size that is required to load all
239// sections
240void RuntimeDyldImpl::computeTotalAllocSize(ObjectImage &Obj,
241 uint64_t &CodeSize,
242 uint64_t &DataSizeRO,
243 uint64_t &DataSizeRW) {
Lang Hames937ec542014-02-12 21:30:07 +0000244 // Compute the size of all sections required for execution
245 std::vector<uint64_t> CodeSectionSizes;
246 std::vector<uint64_t> ROSectionSizes;
247 std::vector<uint64_t> RWSectionSizes;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000248 uint64_t MaxAlignment = sizeof(void *);
Lang Hames937ec542014-02-12 21:30:07 +0000249
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000250 // Collect sizes of all sections to be loaded;
Lang Hames937ec542014-02-12 21:30:07 +0000251 // also determine the max alignment of all sections
Jim Grosbach36f025e2014-04-21 19:23:59 +0000252 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
253 SI != SE; ++SI) {
254 const SectionRef &Section = *SI;
255
Lang Hames937ec542014-02-12 21:30:07 +0000256 bool IsRequired;
257 Check(Section.isRequiredForExecution(IsRequired));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000258
Lang Hames937ec542014-02-12 21:30:07 +0000259 // Consider only the sections that are required to be loaded for execution
260 if (IsRequired) {
261 uint64_t DataSize = 0;
262 uint64_t Alignment64 = 0;
263 bool IsCode = false;
264 bool IsReadOnly = false;
265 StringRef Name;
266 Check(Section.getSize(DataSize));
267 Check(Section.getAlignment(Alignment64));
268 Check(Section.isText(IsCode));
269 Check(Section.isReadOnlyData(IsReadOnly));
270 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000271 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
272
Lang Hames937ec542014-02-12 21:30:07 +0000273 uint64_t StubBufSize = computeSectionStubBufSize(Obj, Section);
274 uint64_t SectionSize = DataSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000275
276 // The .eh_frame section (at least on Linux) needs an extra four bytes
277 // padded
Lang Hames937ec542014-02-12 21:30:07 +0000278 // with zeroes added at the end. For MachO objects, this section has a
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000279 // slightly different name, so this won't have any effect for MachO
280 // objects.
Lang Hames937ec542014-02-12 21:30:07 +0000281 if (Name == ".eh_frame")
282 SectionSize += 4;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000283
Lang Hames937ec542014-02-12 21:30:07 +0000284 if (SectionSize > 0) {
285 // save the total size of the section
286 if (IsCode) {
287 CodeSectionSizes.push_back(SectionSize);
288 } else if (IsReadOnly) {
289 ROSectionSizes.push_back(SectionSize);
290 } else {
291 RWSectionSizes.push_back(SectionSize);
292 }
293 // update the max alignment
294 if (Alignment > MaxAlignment) {
295 MaxAlignment = Alignment;
296 }
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000297 }
Lang Hames937ec542014-02-12 21:30:07 +0000298 }
299 }
300
301 // Compute the size of all common symbols
302 uint64_t CommonSize = 0;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000303 for (symbol_iterator I = Obj.begin_symbols(), E = Obj.end_symbols(); I != E;
304 ++I) {
Lang Hames937ec542014-02-12 21:30:07 +0000305 uint32_t Flags = I->getFlags();
306 if (Flags & SymbolRef::SF_Common) {
307 // Add the common symbols to a list. We'll allocate them all below.
308 uint64_t Size = 0;
309 Check(I->getSize(Size));
310 CommonSize += Size;
311 }
312 }
313 if (CommonSize != 0) {
314 RWSectionSizes.push_back(CommonSize);
315 }
316
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000317 // Compute the required allocation space for each different type of sections
318 // (code, read-only data, read-write data) assuming that all sections are
Lang Hames937ec542014-02-12 21:30:07 +0000319 // allocated with the max alignment. Note that we cannot compute with the
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000320 // individual alignments of the sections, because then the required size
Lang Hames937ec542014-02-12 21:30:07 +0000321 // depends on the order, in which the sections are allocated.
322 CodeSize = computeAllocationSizeForSections(CodeSectionSizes, MaxAlignment);
323 DataSizeRO = computeAllocationSizeForSections(ROSectionSizes, MaxAlignment);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000324 DataSizeRW = computeAllocationSizeForSections(RWSectionSizes, MaxAlignment);
Lang Hames937ec542014-02-12 21:30:07 +0000325}
326
327// compute stub buffer size for the given section
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000328unsigned RuntimeDyldImpl::computeSectionStubBufSize(ObjectImage &Obj,
Lang Hames937ec542014-02-12 21:30:07 +0000329 const SectionRef &Section) {
330 unsigned StubSize = getMaxStubSize();
331 if (StubSize == 0) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000332 return 0;
Lang Hames937ec542014-02-12 21:30:07 +0000333 }
334 // FIXME: this is an inefficient way to handle this. We should computed the
335 // necessary section allocation size in loadObject by walking all the sections
336 // once.
337 unsigned StubBufSize = 0;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000338 for (section_iterator SI = Obj.begin_sections(), SE = Obj.end_sections();
339 SI != SE; ++SI) {
340 section_iterator RelSecI = SI->getRelocatedSection();
Lang Hames937ec542014-02-12 21:30:07 +0000341 if (!(RelSecI == Section))
342 continue;
343
Jim Grosbach36f025e2014-04-21 19:23:59 +0000344 for (const RelocationRef &Reloc : SI->relocations()) {
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000345 (void)Reloc;
Lang Hames937ec542014-02-12 21:30:07 +0000346 StubBufSize += StubSize;
347 }
348 }
Alexey Samsonovaa4d2952014-03-14 14:22:49 +0000349
Lang Hames937ec542014-02-12 21:30:07 +0000350 // Get section data size and alignment
351 uint64_t Alignment64;
352 uint64_t DataSize;
353 Check(Section.getSize(DataSize));
354 Check(Section.getAlignment(Alignment64));
355
356 // Add stubbuf size alignment
357 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
358 unsigned StubAlignment = getStubAlignment();
359 unsigned EndAlignment = (DataSize | Alignment) & -(DataSize | Alignment);
360 if (StubAlignment > EndAlignment)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000361 StubBufSize += StubAlignment - EndAlignment;
Lang Hames937ec542014-02-12 21:30:07 +0000362 return StubBufSize;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000363}
364
Eli Bendersky667b8792012-05-01 10:41:12 +0000365void RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
366 const CommonSymbolMap &CommonSymbols,
367 uint64_t TotalSize,
368 SymbolTableMap &SymbolTable) {
Preston Gurd2138ef62012-04-12 20:13:57 +0000369 // Allocate memory for the section
370 unsigned SectionID = Sections.size();
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000371 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void *),
372 SectionID, StringRef(), false);
Preston Gurd2138ef62012-04-12 20:13:57 +0000373 if (!Addr)
374 report_fatal_error("Unable to allocate memory for common symbols!");
375 uint64_t Offset = 0;
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000376 Sections.push_back(SectionEntry(StringRef(), Addr, TotalSize, 0));
Preston Gurd2138ef62012-04-12 20:13:57 +0000377 memset(Addr, 0, TotalSize);
378
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000379 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID << " new addr: "
380 << format("%p", Addr) << " DataSize: " << TotalSize << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000381
382 // Assign the address of each symbol
Jim Grosbach36f025e2014-04-21 19:23:59 +0000383 for (CommonSymbolMap::const_iterator it = CommonSymbols.begin(),
384 itEnd = CommonSymbols.end(); it != itEnd; ++it) {
385 uint64_t Size = it->second.first;
386 uint64_t Align = it->second.second;
Preston Gurd2138ef62012-04-12 20:13:57 +0000387 StringRef Name;
Jim Grosbach36f025e2014-04-21 19:23:59 +0000388 it->first.getName(Name);
Tim Northover94bc73d2012-10-29 10:47:04 +0000389 if (Align) {
390 // This symbol has an alignment requirement.
391 uint64_t AlignOffset = OffsetToAlignment((uint64_t)Addr, Align);
392 Addr += AlignOffset;
393 Offset += AlignOffset;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000394 DEBUG(dbgs() << "Allocating common symbol " << Name << " address "
395 << format("%p\n", Addr));
Tim Northover94bc73d2012-10-29 10:47:04 +0000396 }
Jim Grosbach36f025e2014-04-21 19:23:59 +0000397 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Eli Bendersky667b8792012-05-01 10:41:12 +0000398 SymbolTable[Name.data()] = SymbolLoc(SectionID, Offset);
Preston Gurd2138ef62012-04-12 20:13:57 +0000399 Offset += Size;
400 Addr += Size;
401 }
Preston Gurd2138ef62012-04-12 20:13:57 +0000402}
403
Preston Gurdcc31af92012-04-16 22:12:58 +0000404unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000405 const SectionRef &Section, bool IsCode) {
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000406
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000407 StringRef data;
408 uint64_t Alignment64;
409 Check(Section.getContents(data));
410 Check(Section.getAlignment(Alignment64));
411
412 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurd2138ef62012-04-12 20:13:57 +0000413 bool IsRequired;
414 bool IsVirtual;
415 bool IsZeroInit;
Andrew Kaylora342cb92012-11-15 23:50:01 +0000416 bool IsReadOnly;
Preston Gurd2138ef62012-04-12 20:13:57 +0000417 uint64_t DataSize;
Andrew Kaylor877b9312013-10-16 00:32:24 +0000418 unsigned PaddingSize = 0;
Lang Hames937ec542014-02-12 21:30:07 +0000419 unsigned StubBufSize = 0;
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000420 StringRef Name;
Preston Gurd2138ef62012-04-12 20:13:57 +0000421 Check(Section.isRequiredForExecution(IsRequired));
422 Check(Section.isVirtual(IsVirtual));
423 Check(Section.isZeroInit(IsZeroInit));
Andrew Kaylora342cb92012-11-15 23:50:01 +0000424 Check(Section.isReadOnlyData(IsReadOnly));
Preston Gurd2138ef62012-04-12 20:13:57 +0000425 Check(Section.getSize(DataSize));
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000426 Check(Section.getName(Name));
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000427
428 StubBufSize = computeSectionStubBufSize(Obj, Section);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000429
Andrew Kaylor877b9312013-10-16 00:32:24 +0000430 // The .eh_frame section (at least on Linux) needs an extra four bytes padded
431 // with zeroes added at the end. For MachO objects, this section has a
432 // slightly different name, so this won't have any effect for MachO objects.
433 if (Name == ".eh_frame")
434 PaddingSize = 4;
435
Lang Hamesd4100172014-02-11 05:28:24 +0000436 uintptr_t Allocate;
Preston Gurd2138ef62012-04-12 20:13:57 +0000437 unsigned SectionID = Sections.size();
438 uint8_t *Addr;
Craig Topper353eda42014-04-24 06:44:33 +0000439 const char *pData = nullptr;
Preston Gurd2138ef62012-04-12 20:13:57 +0000440
441 // Some sections, such as debug info, don't need to be loaded for execution.
442 // Leave those where they are.
443 if (IsRequired) {
Andrew Kaylor877b9312013-10-16 00:32:24 +0000444 Allocate = DataSize + PaddingSize + StubBufSize;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000445 Addr = IsCode ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID,
446 Name)
447 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID,
448 Name, IsReadOnly);
Preston Gurd2138ef62012-04-12 20:13:57 +0000449 if (!Addr)
450 report_fatal_error("Unable to allocate section memory!");
451
452 // Virtual sections have no data in the object image, so leave pData = 0
453 if (!IsVirtual)
454 pData = data.data();
455
456 // Zero-initialize or copy the data from the image
457 if (IsZeroInit || IsVirtual)
458 memset(Addr, 0, DataSize);
459 else
460 memcpy(Addr, pData, DataSize);
461
Andrew Kaylor877b9312013-10-16 00:32:24 +0000462 // Fill in any extra bytes we allocated for padding
463 if (PaddingSize != 0) {
464 memset(Addr + DataSize, 0, PaddingSize);
465 // Update the DataSize variable so that the stub offset is set correctly.
466 DataSize += PaddingSize;
467 }
468
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000469 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
Preston Gurd2138ef62012-04-12 20:13:57 +0000470 << " obj addr: " << format("%p", pData)
471 << " new addr: " << format("%p", Addr)
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000472 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
473 << " Allocate: " << Allocate << "\n");
Preston Gurdcc31af92012-04-16 22:12:58 +0000474 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000475 } else {
Preston Gurd2138ef62012-04-12 20:13:57 +0000476 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky0e2ac5b2012-04-29 12:40:47 +0000477 // to handle later processing (and by 'handle' I mean don't do anything
478 // with these sections).
Preston Gurd2138ef62012-04-12 20:13:57 +0000479 Allocate = 0;
Craig Topper353eda42014-04-24 06:44:33 +0000480 Addr = nullptr;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000481 DEBUG(dbgs() << "emitSection SectionID: " << SectionID << " Name: " << Name
482 << " obj addr: " << format("%p", data.data()) << " new addr: 0"
483 << " DataSize: " << DataSize << " StubBufSize: " << StubBufSize
484 << " Allocate: " << Allocate << "\n");
Preston Gurd2138ef62012-04-12 20:13:57 +0000485 }
486
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000487 Sections.push_back(SectionEntry(Name, Addr, DataSize, (uintptr_t)pData));
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000488 return SectionID;
489}
490
Preston Gurdcc31af92012-04-16 22:12:58 +0000491unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
492 const SectionRef &Section,
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000493 bool IsCode,
494 ObjSectionToIDMap &LocalSections) {
495
496 unsigned SectionID = 0;
497 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
498 if (i != LocalSections.end())
499 SectionID = i->second;
500 else {
Preston Gurdcc31af92012-04-16 22:12:58 +0000501 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000502 LocalSections[Section] = SectionID;
503 }
504 return SectionID;
505}
506
Eli Bendersky667b8792012-05-01 10:41:12 +0000507void RuntimeDyldImpl::addRelocationForSection(const RelocationEntry &RE,
508 unsigned SectionID) {
509 Relocations[SectionID].push_back(RE);
510}
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000511
Eli Bendersky667b8792012-05-01 10:41:12 +0000512void RuntimeDyldImpl::addRelocationForSymbol(const RelocationEntry &RE,
513 StringRef SymbolName) {
514 // Relocation by symbol. If the symbol is found in the global symbol table,
515 // create an appropriate section relocation. Otherwise, add it to
516 // ExternalSymbolRelocations.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000517 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(SymbolName);
Eli Bendersky667b8792012-05-01 10:41:12 +0000518 if (Loc == GlobalSymbolTable.end()) {
519 ExternalSymbolRelocations[SymbolName].push_back(RE);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000520 } else {
Eli Bendersky667b8792012-05-01 10:41:12 +0000521 // Copy the RE since we want to modify its addend.
522 RelocationEntry RECopy = RE;
523 RECopy.Addend += Loc->second.second;
524 Relocations[Loc->second.first].push_back(RECopy);
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000525 }
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000526}
527
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000528uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr,
529 unsigned AbiVariant) {
James Molloybd2ffa02014-04-30 10:15:41 +0000530 if (Arch == Triple::aarch64 || Arch == Triple::aarch64_be ||
531 Arch == Triple::arm64 || Arch == Triple::arm64_be) {
Tim Northover37cde972013-05-04 20:14:09 +0000532 // This stub has to be able to access the full address space,
533 // since symbol lookup won't necessarily find a handy, in-range,
534 // PLT stub for functions which could be anywhere.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000535 uint32_t *StubAddr = (uint32_t *)Addr;
Tim Northover37cde972013-05-04 20:14:09 +0000536
537 // Stub can use ip0 (== x16) to calculate address
538 *StubAddr = 0xd2e00010; // movz ip0, #:abs_g3:<addr>
539 StubAddr++;
540 *StubAddr = 0xf2c00010; // movk ip0, #:abs_g2_nc:<addr>
541 StubAddr++;
542 *StubAddr = 0xf2a00010; // movk ip0, #:abs_g1_nc:<addr>
543 StubAddr++;
544 *StubAddr = 0xf2800010; // movk ip0, #:abs_g0_nc:<addr>
545 StubAddr++;
546 *StubAddr = 0xd61f0200; // br ip0
547
548 return Addr;
Christian Pirker2a111602014-03-28 14:35:30 +0000549 } else if (Arch == Triple::arm || Arch == Triple::armeb) {
Akira Hatanaka111174b2012-08-17 21:28:04 +0000550 // TODO: There is only ARM far stub now. We should add the Thumb stub,
551 // and stubs for branches Thumb - ARM and ARM - Thumb.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000552 uint32_t *StubAddr = (uint32_t *)Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000553 *StubAddr = 0xe51ff004; // ldr pc,<label>
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000554 return (uint8_t *)++StubAddr;
NAKAMURA Takumif97efd92012-12-04 00:08:14 +0000555 } else if (Arch == Triple::mipsel || Arch == Triple::mips) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000556 uint32_t *StubAddr = (uint32_t *)Addr;
Akira Hatanaka111174b2012-08-17 21:28:04 +0000557 // 0: 3c190000 lui t9,%hi(addr).
558 // 4: 27390000 addiu t9,t9,%lo(addr).
559 // 8: 03200008 jr t9.
560 // c: 00000000 nop.
561 const unsigned LuiT9Instr = 0x3c190000, AdduiT9Instr = 0x27390000;
562 const unsigned JrT9Instr = 0x03200008, NopInstr = 0x0;
563
564 *StubAddr = LuiT9Instr;
565 StubAddr++;
566 *StubAddr = AdduiT9Instr;
567 StubAddr++;
568 *StubAddr = JrT9Instr;
569 StubAddr++;
570 *StubAddr = NopInstr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000571 return Addr;
Bill Schmidt0a9170d2013-07-26 01:35:43 +0000572 } else if (Arch == Triple::ppc64 || Arch == Triple::ppc64le) {
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000573 // Depending on which version of the ELF ABI is in use, we need to
574 // generate one of two variants of the stub. They both start with
575 // the same sequence to load the target address into r12.
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000576 writeInt32BE(Addr, 0x3D800000); // lis r12, highest(addr)
577 writeInt32BE(Addr+4, 0x618C0000); // ori r12, higher(addr)
578 writeInt32BE(Addr+8, 0x798C07C6); // sldi r12, r12, 32
579 writeInt32BE(Addr+12, 0x658C0000); // oris r12, r12, h(addr)
580 writeInt32BE(Addr+16, 0x618C0000); // ori r12, r12, l(addr)
Ulrich Weigand752b5c92014-07-20 23:53:14 +0000581 if (AbiVariant == 2) {
582 // PowerPC64 stub ELFv2 ABI: The address points to the function itself.
583 // The address is already in r12 as required by the ABI. Branch to it.
584 writeInt32BE(Addr+20, 0xF8410018); // std r2, 24(r1)
585 writeInt32BE(Addr+24, 0x7D8903A6); // mtctr r12
586 writeInt32BE(Addr+28, 0x4E800420); // bctr
587 } else {
588 // PowerPC64 stub ELFv1 ABI: The address points to a function descriptor.
589 // Load the function address on r11 and sets it to control register. Also
590 // loads the function TOC in r2 and environment pointer to r11.
591 writeInt32BE(Addr+20, 0xF8410028); // std r2, 40(r1)
592 writeInt32BE(Addr+24, 0xE96C0000); // ld r11, 0(r12)
593 writeInt32BE(Addr+28, 0xE84C0008); // ld r2, 0(r12)
594 writeInt32BE(Addr+32, 0x7D6903A6); // mtctr r11
595 writeInt32BE(Addr+36, 0xE96C0010); // ld r11, 16(r2)
596 writeInt32BE(Addr+40, 0x4E800420); // bctr
597 }
Adhemerval Zanella5fc11b32012-10-25 13:13:48 +0000598 return Addr;
Richard Sandifordca044082013-05-03 14:15:35 +0000599 } else if (Arch == Triple::systemz) {
600 writeInt16BE(Addr, 0xC418); // lgrl %r1,.+8
601 writeInt16BE(Addr+2, 0x0000);
602 writeInt16BE(Addr+4, 0x0004);
603 writeInt16BE(Addr+6, 0x07F1); // brc 15,%r1
604 // 8-byte address stored at Addr + 8
605 return Addr;
Andrew Kaylor4612fed2013-08-19 23:27:43 +0000606 } else if (Arch == Triple::x86_64) {
607 *Addr = 0xFF; // jmp
608 *(Addr+1) = 0x25; // rip
609 // 32-bit PC-relative address of the GOT entry will be stored at Addr+2
Lang Hames36072da2014-05-12 21:39:59 +0000610 } else if (Arch == Triple::x86) {
611 *Addr = 0xE9; // 32-bit pc-relative jump.
Akira Hatanaka111174b2012-08-17 21:28:04 +0000612 }
613 return Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000614}
615
616// Assign an address to a symbol name and resolve all the relocations
617// associated with it.
618void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
619 uint64_t Addr) {
620 // The address to use for relocation resolution is not
621 // the address of the local section buffer. We must be doing
Andrew Kaylora714efc2012-11-05 20:57:16 +0000622 // a remote execution environment of some sort. Relocations can't
623 // be applied until all the sections have been moved. The client must
624 // trigger this with a call to MCJIT::finalize() or
625 // RuntimeDyld::resolveRelocations().
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000626 //
627 // Addr is a uint64_t because we can't assume the pointer width
628 // of the target is the same as that of the host. Just use a generic
629 // "big enough" type.
630 Sections[SectionID].LoadAddress = Addr;
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000631}
632
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000633void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
634 uint64_t Value) {
635 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000636 const RelocationEntry &RE = Relocs[i];
637 // Ignore relocations for sections that were not loaded
Craig Topper353eda42014-04-24 06:44:33 +0000638 if (Sections[RE.SectionID].Address == nullptr)
Rafael Espindolaf1f1c622013-04-29 17:24:34 +0000639 continue;
640 resolveRelocation(RE, Value);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000641 }
642}
643
Eli Benderskyb92e1cf2012-04-30 12:15:58 +0000644void RuntimeDyldImpl::resolveExternalSymbols() {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000645 while (!ExternalSymbolRelocations.empty()) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000646 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin();
647
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000648 StringRef Name = i->first();
Andrew Kaylorea395922013-10-01 01:47:35 +0000649 if (Name.size() == 0) {
650 // This is an absolute symbol, use an address of zero.
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000651 DEBUG(dbgs() << "Resolving absolute relocations."
652 << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000653 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000654 resolveRelocationList(Relocs, 0);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000655 } else {
Andrew Kaylorea395922013-10-01 01:47:35 +0000656 uint64_t Addr = 0;
657 SymbolTableMap::const_iterator Loc = GlobalSymbolTable.find(Name);
658 if (Loc == GlobalSymbolTable.end()) {
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000659 // This is an external symbol, try to get its address from
660 // MemoryManager.
661 Addr = MemMgr->getSymbolAddress(Name.data());
662 // The call to getSymbolAddress may have caused additional modules to
663 // be loaded, which may have added new entries to the
664 // ExternalSymbolRelocations map. Consquently, we need to update our
665 // iterator. This is also why retrieval of the relocation list
666 // associated with this symbol is deferred until below this point.
667 // New entries may have been added to the relocation list.
668 i = ExternalSymbolRelocations.find(Name);
Andrew Kaylorea395922013-10-01 01:47:35 +0000669 } else {
670 // We found the symbol in our global table. It was probably in a
671 // Module that we loaded previously.
Yaron Kerenc9802882013-10-19 09:04:26 +0000672 SymbolLoc SymLoc = Loc->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000673 Addr = getSectionLoadAddress(SymLoc.first) + SymLoc.second;
674 }
675
676 // FIXME: Implement error handling that doesn't kill the host program!
677 if (!Addr)
678 report_fatal_error("Program used external function '" + Name +
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000679 "' which could not be resolved!");
Andrew Kaylorea395922013-10-01 01:47:35 +0000680
681 updateGOTEntries(Name, Addr);
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000682 DEBUG(dbgs() << "Resolving relocations Name: " << Name << "\t"
683 << format("0x%lx", Addr) << "\n");
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000684 // This list may have been updated when we called getSymbolAddress, so
685 // don't change this code to get the list earlier.
686 RelocationList &Relocs = i->second;
Andrew Kaylorea395922013-10-01 01:47:35 +0000687 resolveRelocationList(Relocs, Addr);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000688 }
Andrew Kaylorea395922013-10-01 01:47:35 +0000689
Andrew Kaylorcfb4a992013-11-11 19:55:10 +0000690 ExternalSymbolRelocations.erase(i);
Danil Malyshev70d22cc2012-03-30 16:45:19 +0000691 }
692}
693
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000694//===----------------------------------------------------------------------===//
695// RuntimeDyld class implementation
Danil Malyshev72510f22011-07-13 07:57:58 +0000696RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
Andrew Kaylora342cb92012-11-15 23:50:01 +0000697 // FIXME: There's a potential issue lurking here if a single instance of
698 // RuntimeDyld is used to load multiple objects. The current implementation
699 // associates a single memory manager with a RuntimeDyld instance. Even
700 // though the public class spawns a new 'impl' instance for each load,
701 // they share a single memory manager. This can become a problem when page
702 // permissions are applied.
Craig Topper353eda42014-04-24 06:44:33 +0000703 Dyld = nullptr;
Danil Malyshev72510f22011-07-13 07:57:58 +0000704 MM = mm;
Lang Hames868d4b32014-03-20 21:06:46 +0000705 ProcessAllSections = false;
Lang Hamesf7acddd2014-07-22 22:47:39 +0000706 Checker = nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000707}
708
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000709RuntimeDyld::~RuntimeDyld() { delete Dyld; }
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000710
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000711static std::unique_ptr<RuntimeDyldELF>
Lang Hamesf7acddd2014-07-22 22:47:39 +0000712createRuntimeDyldELF(RTDyldMemoryManager *MM, bool ProcessAllSections,
713 RuntimeDyldCheckerImpl *Checker) {
Lang Hames868d4b32014-03-20 21:06:46 +0000714 std::unique_ptr<RuntimeDyldELF> Dyld(new RuntimeDyldELF(MM));
715 Dyld->setProcessAllSections(ProcessAllSections);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000716 Dyld->setRuntimeDyldChecker(Checker);
Lang Hames868d4b32014-03-20 21:06:46 +0000717 return Dyld;
718}
719
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000720static std::unique_ptr<RuntimeDyldMachO>
Lang Hamesa5216882014-07-17 18:54:50 +0000721createRuntimeDyldMachO(Triple::ArchType Arch, RTDyldMemoryManager *MM,
Lang Hamesf7acddd2014-07-22 22:47:39 +0000722 bool ProcessAllSections, RuntimeDyldCheckerImpl *Checker) {
Lang Hamesa5216882014-07-17 18:54:50 +0000723 std::unique_ptr<RuntimeDyldMachO> Dyld(RuntimeDyldMachO::create(Arch, MM));
Lang Hames868d4b32014-03-20 21:06:46 +0000724 Dyld->setProcessAllSections(ProcessAllSections);
Lang Hamesf7acddd2014-07-22 22:47:39 +0000725 Dyld->setRuntimeDyldChecker(Checker);
Lang Hames868d4b32014-03-20 21:06:46 +0000726 return Dyld;
727}
728
David Blaikie7a1e7752014-04-29 21:52:46 +0000729ObjectImage *RuntimeDyld::loadObject(std::unique_ptr<ObjectFile> InputObject) {
Lang Hames951b2352014-03-08 18:45:12 +0000730 std::unique_ptr<ObjectImage> InputImage;
Lang Hames173c69f2014-01-08 04:09:09 +0000731
David Blaikie7a1e7752014-04-29 21:52:46 +0000732 ObjectFile &Obj = *InputObject;
733
Lang Hames951b2352014-03-08 18:45:12 +0000734 if (InputObject->isELF()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000735 InputImage.reset(RuntimeDyldELF::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000736 if (!Dyld)
Lang Hamesf7acddd2014-07-22 22:47:39 +0000737 Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker).release();
Lang Hames951b2352014-03-08 18:45:12 +0000738 } else if (InputObject->isMachO()) {
David Blaikie7a1e7752014-04-29 21:52:46 +0000739 InputImage.reset(RuntimeDyldMachO::createObjectImageFromFile(std::move(InputObject)));
Lang Hames951b2352014-03-08 18:45:12 +0000740 if (!Dyld)
Lang Hamesa5216882014-07-17 18:54:50 +0000741 Dyld = createRuntimeDyldMachO(
742 static_cast<Triple::ArchType>(InputImage->getArch()),
Lang Hamesf7acddd2014-07-22 22:47:39 +0000743 MM, ProcessAllSections, Checker).release();
Lang Hames951b2352014-03-08 18:45:12 +0000744 } else
745 report_fatal_error("Incompatible object format!");
746
David Blaikie7a1e7752014-04-29 21:52:46 +0000747 if (!Dyld->isCompatibleFile(&Obj))
Lang Hames951b2352014-03-08 18:45:12 +0000748 report_fatal_error("Incompatible object format!");
749
750 Dyld->loadObject(InputImage.get());
751 return InputImage.release();
Lang Hames173c69f2014-01-08 04:09:09 +0000752}
753
Andrew Kayloradc70562012-10-02 21:18:39 +0000754ObjectImage *RuntimeDyld::loadObject(ObjectBuffer *InputBuffer) {
Lang Hames951b2352014-03-08 18:45:12 +0000755 std::unique_ptr<ObjectImage> InputImage;
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000756 sys::fs::file_magic Type = sys::fs::identify_magic(InputBuffer->getBuffer());
Lang Hames951b2352014-03-08 18:45:12 +0000757
758 switch (Type) {
759 case sys::fs::file_magic::elf_relocatable:
760 case sys::fs::file_magic::elf_executable:
761 case sys::fs::file_magic::elf_shared_object:
762 case sys::fs::file_magic::elf_core:
763 InputImage.reset(RuntimeDyldELF::createObjectImage(InputBuffer));
764 if (!Dyld)
Lang Hamesf7acddd2014-07-22 22:47:39 +0000765 Dyld = createRuntimeDyldELF(MM, ProcessAllSections, Checker).release();
Lang Hames951b2352014-03-08 18:45:12 +0000766 break;
767 case sys::fs::file_magic::macho_object:
768 case sys::fs::file_magic::macho_executable:
769 case sys::fs::file_magic::macho_fixed_virtual_memory_shared_lib:
770 case sys::fs::file_magic::macho_core:
771 case sys::fs::file_magic::macho_preload_executable:
772 case sys::fs::file_magic::macho_dynamically_linked_shared_lib:
773 case sys::fs::file_magic::macho_dynamic_linker:
774 case sys::fs::file_magic::macho_bundle:
775 case sys::fs::file_magic::macho_dynamically_linked_shared_lib_stub:
776 case sys::fs::file_magic::macho_dsym_companion:
777 InputImage.reset(RuntimeDyldMachO::createObjectImage(InputBuffer));
778 if (!Dyld)
Lang Hamesa5216882014-07-17 18:54:50 +0000779 Dyld = createRuntimeDyldMachO(
780 static_cast<Triple::ArchType>(InputImage->getArch()),
Lang Hamesf7acddd2014-07-22 22:47:39 +0000781 MM, ProcessAllSections, Checker).release();
Lang Hames951b2352014-03-08 18:45:12 +0000782 break;
783 case sys::fs::file_magic::unknown:
784 case sys::fs::file_magic::bitcode:
785 case sys::fs::file_magic::archive:
786 case sys::fs::file_magic::coff_object:
787 case sys::fs::file_magic::coff_import_library:
788 case sys::fs::file_magic::pecoff_executable:
789 case sys::fs::file_magic::macho_universal_binary:
790 case sys::fs::file_magic::windows_resource:
791 report_fatal_error("Incompatible object format!");
Danil Malyshev72510f22011-07-13 07:57:58 +0000792 }
793
Lang Hames951b2352014-03-08 18:45:12 +0000794 if (!Dyld->isCompatibleFormat(InputBuffer))
795 report_fatal_error("Incompatible object format!");
796
797 Dyld->loadObject(InputImage.get());
798 return InputImage.release();
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000799}
800
Jim Grosbach18b81c52011-04-08 17:31:24 +0000801void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000802 if (!Dyld)
Craig Topper353eda42014-04-24 06:44:33 +0000803 return nullptr;
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000804 return Dyld->getSymbolAddress(Name);
805}
806
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000807uint64_t RuntimeDyld::getSymbolLoadAddress(StringRef Name) {
Andrew Kaylorea395922013-10-01 01:47:35 +0000808 if (!Dyld)
809 return 0;
Jim Grosbachdc1123f2012-09-05 16:50:40 +0000810 return Dyld->getSymbolLoadAddress(Name);
811}
812
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000813void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); }
Jim Grosbach733d3052011-04-12 21:20:41 +0000814
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000815void RuntimeDyld::reassignSectionAddress(unsigned SectionID, uint64_t Addr) {
Jim Grosbacheff0a402012-01-16 22:26:39 +0000816 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbach733d3052011-04-12 21:20:41 +0000817}
818
Jim Grosbach6d613972012-09-13 21:50:06 +0000819void RuntimeDyld::mapSectionAddress(const void *LocalAddress,
Jim Grosbach0ddb3a42012-01-16 23:50:55 +0000820 uint64_t TargetAddress) {
821 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
822}
823
Juergen Ributzka6ff29a72014-03-26 18:19:27 +0000824bool RuntimeDyld::hasError() { return Dyld->hasError(); }
825
Juergen Ributzka7608dc02014-03-21 20:28:42 +0000826StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); }
Jim Grosbach40411cc2011-03-22 18:19:42 +0000827
Andrew Kaylor7bb13442013-10-11 21:25:48 +0000828void RuntimeDyld::registerEHFrames() {
Andrew Kaylorc442a762013-10-16 00:14:21 +0000829 if (Dyld)
830 Dyld->registerEHFrames();
831}
832
833void RuntimeDyld::deregisterEHFrames() {
834 if (Dyld)
835 Dyld->deregisterEHFrames();
Rafael Espindolafa5942b2013-05-05 20:43:10 +0000836}
837
Jim Grosbachf016b0a2011-03-21 22:15:52 +0000838} // end namespace llvm