blob: ce45404051f32a961ec893fb2b1f570392ade840 [file] [log] [blame]
Jim Grosbache0934be2012-01-16 23:50:58 +00001//===-- RuntimeDyld.cpp - Run-time dynamic linker for MC-JIT ----*- C++ -*-===//
Jim Grosbach6e563312011-03-21 22:15:52 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Implementation of the MC-JIT runtime dynamic linker.
11//
12//===----------------------------------------------------------------------===//
13
Jim Grosbach8b54dca2011-03-23 19:52:00 +000014#define DEBUG_TYPE "dyld"
Danil Malyshevcf852dc2011-07-13 07:57:58 +000015#include "RuntimeDyldImpl.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000016#include "RuntimeDyldELF.h"
17#include "RuntimeDyldMachO.h"
Eli Benderskya66a1852012-01-16 08:56:09 +000018#include "llvm/Support/Path.h"
Eli Bendersky76463fd2012-01-22 07:05:02 +000019
Jim Grosbach6e563312011-03-21 22:15:52 +000020using namespace llvm;
21using namespace llvm::object;
22
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000023// Empty out-of-line virtual destructor as the key function.
24RTDyldMemoryManager::~RTDyldMemoryManager() {}
Danil Malyshevcf852dc2011-07-13 07:57:58 +000025RuntimeDyldImpl::~RuntimeDyldImpl() {}
Chandler Carruth53c5e7b2011-04-05 23:54:31 +000026
Jim Grosbach6e563312011-03-21 22:15:52 +000027namespace llvm {
Jim Grosbach6e563312011-03-21 22:15:52 +000028
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000029namespace {
30 // Helper for extensive error checking in debug builds.
31 error_code Check(error_code Err) {
32 if (Err) {
33 report_fatal_error(Err.message());
34 }
35 return Err;
36 }
37} // end anonymous namespace
Jim Grosbach61425c02012-01-16 22:26:39 +000038
Jim Grosbachf8c1c842011-04-12 21:20:41 +000039// Resolve the relocations for all symbols we currently know about.
40void RuntimeDyldImpl::resolveRelocations() {
Preston Gurdc68dda82012-04-12 20:13:57 +000041 // First, resolve relocations associated with external symbols.
Eli Bendersky37bc5a22012-04-30 12:15:58 +000042 resolveExternalSymbols();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000043
Jim Grosbach61425c02012-01-16 22:26:39 +000044 // Just iterate over the sections we have and resolve all the relocations
45 // in them. Gross overkill, but it gets the job done.
46 for (int i = 0, e = Sections.size(); i != e; ++i) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000047 reassignSectionAddress(i, Sections[i].LoadAddress);
Jim Grosbach61425c02012-01-16 22:26:39 +000048 }
Jim Grosbachf8c1c842011-04-12 21:20:41 +000049}
50
Jim Grosbach020f4e82012-01-16 23:50:55 +000051void RuntimeDyldImpl::mapSectionAddress(void *LocalAddress,
52 uint64_t TargetAddress) {
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000053 for (unsigned i = 0, e = Sections.size(); i != e; ++i) {
54 if (Sections[i].Address == LocalAddress) {
55 reassignSectionAddress(i, TargetAddress);
56 return;
57 }
58 }
59 llvm_unreachable("Attempting to remap address of unknown section!");
Jim Grosbach020f4e82012-01-16 23:50:55 +000060}
61
Eli Bendersky5fe01982012-04-29 12:40:47 +000062// Subclasses can implement this method to create specialized image instances.
Preston Gurd689ff9c2012-04-16 22:12:58 +000063// The caller owns the the pointer that is returned.
64ObjectImage *RuntimeDyldImpl::createObjectImage(const MemoryBuffer *InputBuffer) {
65 ObjectFile *ObjFile = ObjectFile::createObjectFile(const_cast<MemoryBuffer*>
66 (InputBuffer));
67 ObjectImage *Obj = new ObjectImage(ObjFile);
68 return Obj;
69}
70
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000071bool RuntimeDyldImpl::loadObject(const MemoryBuffer *InputBuffer) {
Preston Gurd689ff9c2012-04-16 22:12:58 +000072 OwningPtr<ObjectImage> obj(createObjectImage(InputBuffer));
Preston Gurdc68dda82012-04-12 20:13:57 +000073 if (!obj)
74 report_fatal_error("Unable to create object image from memory buffer!");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000075
76 Arch = (Triple::ArchType)obj->getArch();
77
Eli Bendersky5fe01982012-04-29 12:40:47 +000078 LocalSymbolMap LocalSymbols; // Functions and data symbols from the
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000079 // object file.
80 ObjSectionToIDMap LocalSections; // Used sections from the object file
Preston Gurdc68dda82012-04-12 20:13:57 +000081 CommonSymbolMap CommonSymbols; // Common symbols requiring allocation
82 uint64_t CommonSize = 0;
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000083
84 error_code err;
85 // Parse symbols
86 DEBUG(dbgs() << "Parse symbols:\n");
87 for (symbol_iterator i = obj->begin_symbols(), e = obj->end_symbols();
88 i != e; i.increment(err)) {
89 Check(err);
90 object::SymbolRef::Type SymType;
91 StringRef Name;
92 Check(i->getType(SymType));
93 Check(i->getName(Name));
94
Preston Gurdc68dda82012-04-12 20:13:57 +000095 uint32_t flags;
96 Check(i->getFlags(flags));
97
98 bool isCommon = flags & SymbolRef::SF_Common;
99 if (isCommon) {
100 // Add the common symbols to a list. We'll allocate them all below.
101 uint64_t Size = 0;
102 Check(i->getSize(Size));
103 CommonSize += Size;
104 CommonSymbols[*i] = Size;
105 } else {
106 if (SymType == object::SymbolRef::ST_Function ||
107 SymType == object::SymbolRef::ST_Data) {
108 uint64_t FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000109 StringRef SectionData;
Preston Gurdc68dda82012-04-12 20:13:57 +0000110 section_iterator si = obj->end_sections();
111 Check(i->getFileOffset(FileOffset));
112 Check(i->getSection(si));
113 if (si == obj->end_sections()) continue;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000114 Check(si->getContents(SectionData));
Preston Gurdc68dda82012-04-12 20:13:57 +0000115 const uint8_t* SymPtr = (const uint8_t*)InputBuffer->getBufferStart() +
116 (uintptr_t)FileOffset;
Eli Bendersky5fe01982012-04-29 12:40:47 +0000117 uintptr_t SectOffset = (uintptr_t)(SymPtr -
118 (const uint8_t*)SectionData.begin());
Preston Gurdc68dda82012-04-12 20:13:57 +0000119 unsigned SectionID =
Preston Gurd689ff9c2012-04-16 22:12:58 +0000120 findOrEmitSection(*obj,
121 *si,
Preston Gurdc68dda82012-04-12 20:13:57 +0000122 SymType == object::SymbolRef::ST_Function,
123 LocalSections);
Preston Gurdc68dda82012-04-12 20:13:57 +0000124 LocalSymbols[Name.data()] = SymbolLoc(SectionID, SectOffset);
125 DEBUG(dbgs() << "\tFileOffset: " << format("%p", (uintptr_t)FileOffset)
126 << " flags: " << flags
127 << " SID: " << SectionID
128 << " Offset: " << format("%p", SectOffset));
Eli Bendersky5fe01982012-04-29 12:40:47 +0000129 bool isGlobal = flags & SymbolRef::SF_Global;
Preston Gurdc68dda82012-04-12 20:13:57 +0000130 if (isGlobal)
131 SymbolTable[Name] = SymbolLoc(SectionID, SectOffset);
132 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000133 }
134 DEBUG(dbgs() << "\tType: " << SymType << " Name: " << Name << "\n");
135 }
136
Preston Gurdc68dda82012-04-12 20:13:57 +0000137 // Allocate common symbols
138 if (CommonSize != 0)
Preston Gurd689ff9c2012-04-16 22:12:58 +0000139 emitCommonSymbols(*obj, CommonSymbols, CommonSize, LocalSymbols);
Preston Gurdc68dda82012-04-12 20:13:57 +0000140
Eli Bendersky5fe01982012-04-29 12:40:47 +0000141 // Parse and process relocations
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000142 DEBUG(dbgs() << "Parse relocations:\n");
143 for (section_iterator si = obj->begin_sections(),
144 se = obj->end_sections(); si != se; si.increment(err)) {
145 Check(err);
146 bool isFirstRelocation = true;
147 unsigned SectionID = 0;
148 StubMap Stubs;
149
150 for (relocation_iterator i = si->begin_relocations(),
151 e = si->end_relocations(); i != e; i.increment(err)) {
152 Check(err);
153
Eli Bendersky5fe01982012-04-29 12:40:47 +0000154 // If it's the first relocation in this section, find its SectionID
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000155 if (isFirstRelocation) {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000156 SectionID = findOrEmitSection(*obj, *si, true, LocalSections);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000157 DEBUG(dbgs() << "\tSectionID: " << SectionID << "\n");
158 isFirstRelocation = false;
159 }
160
161 ObjRelocationInfo RI;
162 RI.SectionID = SectionID;
163 Check(i->getAdditionalInfo(RI.AdditionalInfo));
164 Check(i->getOffset(RI.Offset));
165 Check(i->getSymbol(RI.Symbol));
166 Check(i->getType(RI.Type));
167
168 DEBUG(dbgs() << "\t\tAddend: " << RI.AdditionalInfo
169 << " Offset: " << format("%p", (uintptr_t)RI.Offset)
170 << " Type: " << (uint32_t)(RI.Type & 0xffffffffL)
171 << "\n");
172 processRelocationRef(RI, *obj, LocalSections, LocalSymbols, Stubs);
173 }
174 }
Preston Gurd689ff9c2012-04-16 22:12:58 +0000175
176 handleObjectLoaded(obj.take());
177
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000178 return false;
179}
180
Preston Gurd689ff9c2012-04-16 22:12:58 +0000181unsigned RuntimeDyldImpl::emitCommonSymbols(ObjectImage &Obj,
182 const CommonSymbolMap &Map,
Preston Gurdc68dda82012-04-12 20:13:57 +0000183 uint64_t TotalSize,
184 LocalSymbolMap &LocalSymbols) {
185 // Allocate memory for the section
186 unsigned SectionID = Sections.size();
187 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void*),
188 SectionID);
189 if (!Addr)
190 report_fatal_error("Unable to allocate memory for common symbols!");
191 uint64_t Offset = 0;
192 Sections.push_back(SectionEntry(Addr, TotalSize, TotalSize, 0));
193 memset(Addr, 0, TotalSize);
194
195 DEBUG(dbgs() << "emitCommonSection SectionID: " << SectionID
196 << " new addr: " << format("%p", Addr)
197 << " DataSize: " << TotalSize
198 << "\n");
199
200 // Assign the address of each symbol
201 for (CommonSymbolMap::const_iterator it = Map.begin(), itEnd = Map.end();
202 it != itEnd; it++) {
203 uint64_t Size = it->second;
204 StringRef Name;
205 it->first.getName(Name);
Preston Gurd689ff9c2012-04-16 22:12:58 +0000206 Obj.updateSymbolAddress(it->first, (uint64_t)Addr);
Preston Gurdc68dda82012-04-12 20:13:57 +0000207 LocalSymbols[Name.data()] = SymbolLoc(SectionID, Offset);
208 Offset += Size;
209 Addr += Size;
210 }
211
212 return SectionID;
213}
214
Preston Gurd689ff9c2012-04-16 22:12:58 +0000215unsigned RuntimeDyldImpl::emitSection(ObjectImage &Obj,
216 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000217 bool IsCode) {
218
219 unsigned StubBufSize = 0,
220 StubSize = getMaxStubSize();
221 error_code err;
222 if (StubSize > 0) {
223 for (relocation_iterator i = Section.begin_relocations(),
Preston Gurdc68dda82012-04-12 20:13:57 +0000224 e = Section.end_relocations(); i != e; i.increment(err), Check(err))
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000225 StubBufSize += StubSize;
226 }
227 StringRef data;
228 uint64_t Alignment64;
229 Check(Section.getContents(data));
230 Check(Section.getAlignment(Alignment64));
231
232 unsigned Alignment = (unsigned)Alignment64 & 0xffffffffL;
Preston Gurdc68dda82012-04-12 20:13:57 +0000233 bool IsRequired;
234 bool IsVirtual;
235 bool IsZeroInit;
236 uint64_t DataSize;
237 Check(Section.isRequiredForExecution(IsRequired));
238 Check(Section.isVirtual(IsVirtual));
239 Check(Section.isZeroInit(IsZeroInit));
240 Check(Section.getSize(DataSize));
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000241
Preston Gurdc68dda82012-04-12 20:13:57 +0000242 unsigned Allocate;
243 unsigned SectionID = Sections.size();
244 uint8_t *Addr;
245 const char *pData = 0;
246
247 // Some sections, such as debug info, don't need to be loaded for execution.
248 // Leave those where they are.
249 if (IsRequired) {
250 Allocate = DataSize + StubBufSize;
251 Addr = IsCode
252 ? MemMgr->allocateCodeSection(Allocate, Alignment, SectionID)
253 : MemMgr->allocateDataSection(Allocate, Alignment, SectionID);
254 if (!Addr)
255 report_fatal_error("Unable to allocate section memory!");
256
257 // Virtual sections have no data in the object image, so leave pData = 0
258 if (!IsVirtual)
259 pData = data.data();
260
261 // Zero-initialize or copy the data from the image
262 if (IsZeroInit || IsVirtual)
263 memset(Addr, 0, DataSize);
264 else
265 memcpy(Addr, pData, DataSize);
266
267 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
268 << " obj addr: " << format("%p", pData)
269 << " new addr: " << format("%p", Addr)
270 << " DataSize: " << DataSize
271 << " StubBufSize: " << StubBufSize
272 << " Allocate: " << Allocate
273 << "\n");
Preston Gurd689ff9c2012-04-16 22:12:58 +0000274 Obj.updateSectionAddress(Section, (uint64_t)Addr);
Preston Gurdc68dda82012-04-12 20:13:57 +0000275 }
276 else {
277 // Even if we didn't load the section, we need to record an entry for it
Eli Bendersky5fe01982012-04-29 12:40:47 +0000278 // to handle later processing (and by 'handle' I mean don't do anything
279 // with these sections).
Preston Gurdc68dda82012-04-12 20:13:57 +0000280 Allocate = 0;
281 Addr = 0;
282 DEBUG(dbgs() << "emitSection SectionID: " << SectionID
283 << " obj addr: " << format("%p", data.data())
284 << " new addr: 0"
285 << " DataSize: " << DataSize
286 << " StubBufSize: " << StubBufSize
287 << " Allocate: " << Allocate
288 << "\n");
289 }
290
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000291 Sections.push_back(SectionEntry(Addr, Allocate, DataSize,(uintptr_t)pData));
292 return SectionID;
293}
294
Preston Gurd689ff9c2012-04-16 22:12:58 +0000295unsigned RuntimeDyldImpl::findOrEmitSection(ObjectImage &Obj,
296 const SectionRef &Section,
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000297 bool IsCode,
298 ObjSectionToIDMap &LocalSections) {
299
300 unsigned SectionID = 0;
301 ObjSectionToIDMap::iterator i = LocalSections.find(Section);
302 if (i != LocalSections.end())
303 SectionID = i->second;
304 else {
Preston Gurd689ff9c2012-04-16 22:12:58 +0000305 SectionID = emitSection(Obj, Section, IsCode);
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000306 LocalSections[Section] = SectionID;
307 }
308 return SectionID;
309}
310
Eli Bendersky6d15e872012-04-30 10:06:27 +0000311void RuntimeDyldImpl::addRelocation(const RelocationValueRef &Value,
Eli Bendersky5fe01982012-04-29 12:40:47 +0000312 unsigned SectionID, uintptr_t Offset,
313 uint32_t RelType) {
Eli Bendersky6d15e872012-04-30 10:06:27 +0000314 DEBUG(dbgs() << "addRelocation SymNamePtr: " << format("%p", Value.SymbolName)
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000315 << " SID: " << Value.SectionID
316 << " Addend: " << format("%p", Value.Addend)
317 << " Offset: " << format("%p", Offset)
318 << " RelType: " << format("%x", RelType)
319 << "\n");
320
321 if (Value.SymbolName == 0) {
322 Relocations[Value.SectionID].push_back(RelocationEntry(
323 SectionID,
324 Offset,
325 RelType,
326 Value.Addend));
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000327 } else {
328 // Relocation by symbol. If the symbol is found in the global symbol table,
329 // create an appropriate section relocation. Otherwise, add it to
330 // ExternalSymbolRelocations.
331 RelocationEntry RE(SectionID, Offset, RelType, Value.Addend);
332
333 StringMap<SymbolLoc>::const_iterator Loc = SymbolTable.find(Value.SymbolName);
334 if (Loc == SymbolTable.end()) {
335 ExternalSymbolRelocations[Value.SymbolName].push_back(RE);
336 } else {
337 RE.Addend += Loc->second.second;
338 Relocations[Loc->second.first].push_back(RE);
339 }
340 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000341}
342
343uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
344 // TODO: There is only ARM far stub now. We should add the Thumb stub,
345 // and stubs for branches Thumb - ARM and ARM - Thumb.
346 if (Arch == Triple::arm) {
347 uint32_t *StubAddr = (uint32_t*)Addr;
348 *StubAddr = 0xe51ff004; // ldr pc,<label>
349 return (uint8_t*)++StubAddr;
350 }
351 else
352 return Addr;
353}
354
355// Assign an address to a symbol name and resolve all the relocations
356// associated with it.
357void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
358 uint64_t Addr) {
359 // The address to use for relocation resolution is not
360 // the address of the local section buffer. We must be doing
361 // a remote execution environment of some sort. Re-apply any
362 // relocations referencing this section with the given address.
363 //
364 // Addr is a uint64_t because we can't assume the pointer width
365 // of the target is the same as that of the host. Just use a generic
366 // "big enough" type.
367 Sections[SectionID].LoadAddress = Addr;
368 DEBUG(dbgs() << "Resolving relocations Section #" << SectionID
369 << "\t" << format("%p", (uint8_t *)Addr)
370 << "\n");
371 resolveRelocationList(Relocations[SectionID], Addr);
372}
373
374void RuntimeDyldImpl::resolveRelocationEntry(const RelocationEntry &RE,
375 uint64_t Value) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000376 // Ignore relocations for sections that were not loaded
377 if (Sections[RE.SectionID].Address != 0) {
378 uint8_t *Target = Sections[RE.SectionID].Address + RE.Offset;
379 DEBUG(dbgs() << "\tSectionID: " << RE.SectionID
380 << " + " << RE.Offset << " (" << format("%p", Target) << ")"
Eli Bendersky6d15e872012-04-30 10:06:27 +0000381 << " RelType: " << RE.RelType
Preston Gurdc68dda82012-04-12 20:13:57 +0000382 << " Addend: " << RE.Addend
383 << "\n");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000384
Preston Gurdc68dda82012-04-12 20:13:57 +0000385 resolveRelocation(Target, Sections[RE.SectionID].LoadAddress + RE.Offset,
Eli Bendersky6d15e872012-04-30 10:06:27 +0000386 Value, RE.RelType, RE.Addend);
Preston Gurdc68dda82012-04-12 20:13:57 +0000387 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000388}
389
390void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
391 uint64_t Value) {
392 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
393 resolveRelocationEntry(Relocs[i], Value);
394 }
395}
396
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000397void RuntimeDyldImpl::resolveExternalSymbols() {
398 StringMap<RelocationList>::iterator i = ExternalSymbolRelocations.begin(),
399 e = ExternalSymbolRelocations.end();
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000400 for (; i != e; i++) {
401 StringRef Name = i->first();
402 RelocationList &Relocs = i->second;
403 StringMap<SymbolLoc>::const_iterator Loc = SymbolTable.find(Name);
404 if (Loc == SymbolTable.end()) {
405 // This is an external symbol, try to get it address from
406 // MemoryManager.
407 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
408 true);
409 DEBUG(dbgs() << "Resolving relocations Name: " << Name
410 << "\t" << format("%p", Addr)
411 << "\n");
412 resolveRelocationList(Relocs, (uintptr_t)Addr);
413 } else {
Eli Bendersky37bc5a22012-04-30 12:15:58 +0000414 report_fatal_error("Expected external symbol");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000415 }
416 }
417}
418
419
Jim Grosbach6e563312011-03-21 22:15:52 +0000420//===----------------------------------------------------------------------===//
421// RuntimeDyld class implementation
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000422RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
423 Dyld = 0;
424 MM = mm;
Jim Grosbach6e563312011-03-21 22:15:52 +0000425}
426
427RuntimeDyld::~RuntimeDyld() {
428 delete Dyld;
429}
430
431bool RuntimeDyld::loadObject(MemoryBuffer *InputBuffer) {
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000432 if (!Dyld) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000433 sys::LLVMFileType type = sys::IdentifyFileType(
434 InputBuffer->getBufferStart(),
435 static_cast<unsigned>(InputBuffer->getBufferSize()));
436 switch (type) {
437 case sys::ELF_Relocatable_FileType:
438 case sys::ELF_Executable_FileType:
439 case sys::ELF_SharedObject_FileType:
440 case sys::ELF_Core_FileType:
441 Dyld = new RuntimeDyldELF(MM);
442 break;
443 case sys::Mach_O_Object_FileType:
444 case sys::Mach_O_Executable_FileType:
445 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
446 case sys::Mach_O_Core_FileType:
447 case sys::Mach_O_PreloadExecutable_FileType:
448 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
449 case sys::Mach_O_DynamicLinker_FileType:
450 case sys::Mach_O_Bundle_FileType:
451 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
452 case sys::Mach_O_DSYMCompanion_FileType:
453 Dyld = new RuntimeDyldMachO(MM);
454 break;
455 case sys::Unknown_FileType:
456 case sys::Bitcode_FileType:
457 case sys::Archive_FileType:
458 case sys::COFF_FileType:
459 report_fatal_error("Incompatible object format!");
460 }
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000461 } else {
Eli Benderskya66a1852012-01-16 08:56:09 +0000462 if (!Dyld->isCompatibleFormat(InputBuffer))
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000463 report_fatal_error("Incompatible object format!");
464 }
465
Jim Grosbach6e563312011-03-21 22:15:52 +0000466 return Dyld->loadObject(InputBuffer);
467}
468
Jim Grosbachb0271052011-04-08 17:31:24 +0000469void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Jim Grosbach6e563312011-03-21 22:15:52 +0000470 return Dyld->getSymbolAddress(Name);
471}
472
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000473void RuntimeDyld::resolveRelocations() {
474 Dyld->resolveRelocations();
475}
476
Jim Grosbach61425c02012-01-16 22:26:39 +0000477void RuntimeDyld::reassignSectionAddress(unsigned SectionID,
478 uint64_t Addr) {
479 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000480}
481
Jim Grosbach020f4e82012-01-16 23:50:55 +0000482void RuntimeDyld::mapSectionAddress(void *LocalAddress,
483 uint64_t TargetAddress) {
484 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
485}
486
Jim Grosbach91dde152011-03-22 18:22:27 +0000487StringRef RuntimeDyld::getErrorString() {
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000488 return Dyld->getErrorString();
489}
490
Jim Grosbach6e563312011-03-21 22:15:52 +0000491} // end namespace llvm