blob: 644b7930c37dc70fc6d7f997d011ecb95a87c344 [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.
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +000042 resolveSymbols();
43
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));
327 } else
328 SymbolRelocations[Value.SymbolName].push_back(RelocationEntry(
329 SectionID,
330 Offset,
331 RelType,
332 Value.Addend));
333}
334
335uint8_t *RuntimeDyldImpl::createStubFunction(uint8_t *Addr) {
336 // TODO: There is only ARM far stub now. We should add the Thumb stub,
337 // and stubs for branches Thumb - ARM and ARM - Thumb.
338 if (Arch == Triple::arm) {
339 uint32_t *StubAddr = (uint32_t*)Addr;
340 *StubAddr = 0xe51ff004; // ldr pc,<label>
341 return (uint8_t*)++StubAddr;
342 }
343 else
344 return Addr;
345}
346
347// Assign an address to a symbol name and resolve all the relocations
348// associated with it.
349void RuntimeDyldImpl::reassignSectionAddress(unsigned SectionID,
350 uint64_t Addr) {
351 // The address to use for relocation resolution is not
352 // the address of the local section buffer. We must be doing
353 // a remote execution environment of some sort. Re-apply any
354 // relocations referencing this section with the given address.
355 //
356 // Addr is a uint64_t because we can't assume the pointer width
357 // of the target is the same as that of the host. Just use a generic
358 // "big enough" type.
359 Sections[SectionID].LoadAddress = Addr;
360 DEBUG(dbgs() << "Resolving relocations Section #" << SectionID
361 << "\t" << format("%p", (uint8_t *)Addr)
362 << "\n");
363 resolveRelocationList(Relocations[SectionID], Addr);
364}
365
366void RuntimeDyldImpl::resolveRelocationEntry(const RelocationEntry &RE,
367 uint64_t Value) {
Preston Gurdc68dda82012-04-12 20:13:57 +0000368 // Ignore relocations for sections that were not loaded
369 if (Sections[RE.SectionID].Address != 0) {
370 uint8_t *Target = Sections[RE.SectionID].Address + RE.Offset;
371 DEBUG(dbgs() << "\tSectionID: " << RE.SectionID
372 << " + " << RE.Offset << " (" << format("%p", Target) << ")"
Eli Bendersky6d15e872012-04-30 10:06:27 +0000373 << " RelType: " << RE.RelType
Preston Gurdc68dda82012-04-12 20:13:57 +0000374 << " Addend: " << RE.Addend
375 << "\n");
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000376
Preston Gurdc68dda82012-04-12 20:13:57 +0000377 resolveRelocation(Target, Sections[RE.SectionID].LoadAddress + RE.Offset,
Eli Bendersky6d15e872012-04-30 10:06:27 +0000378 Value, RE.RelType, RE.Addend);
Preston Gurdc68dda82012-04-12 20:13:57 +0000379 }
Danil Malyshev0e4fa5f2012-03-30 16:45:19 +0000380}
381
382void RuntimeDyldImpl::resolveRelocationList(const RelocationList &Relocs,
383 uint64_t Value) {
384 for (unsigned i = 0, e = Relocs.size(); i != e; ++i) {
385 resolveRelocationEntry(Relocs[i], Value);
386 }
387}
388
389// resolveSymbols - Resolve any relocations to the specified symbols if
390// we know where it lives.
391void RuntimeDyldImpl::resolveSymbols() {
392 StringMap<RelocationList>::iterator i = SymbolRelocations.begin(),
393 e = SymbolRelocations.end();
394 for (; i != e; i++) {
395 StringRef Name = i->first();
396 RelocationList &Relocs = i->second;
397 StringMap<SymbolLoc>::const_iterator Loc = SymbolTable.find(Name);
398 if (Loc == SymbolTable.end()) {
399 // This is an external symbol, try to get it address from
400 // MemoryManager.
401 uint8_t *Addr = (uint8_t*) MemMgr->getPointerToNamedFunction(Name.data(),
402 true);
403 DEBUG(dbgs() << "Resolving relocations Name: " << Name
404 << "\t" << format("%p", Addr)
405 << "\n");
406 resolveRelocationList(Relocs, (uintptr_t)Addr);
407 } else {
408 // Change the relocation to be section relative rather than symbol
409 // relative and move it to the resolved relocation list.
410 DEBUG(dbgs() << "Resolving symbol '" << Name << "'\n");
411 for (int i = 0, e = Relocs.size(); i != e; ++i) {
412 RelocationEntry Entry = Relocs[i];
413 Entry.Addend += Loc->second.second;
414 Relocations[Loc->second.first].push_back(Entry);
415 }
416 Relocs.clear();
417 }
418 }
419}
420
421
Jim Grosbach6e563312011-03-21 22:15:52 +0000422//===----------------------------------------------------------------------===//
423// RuntimeDyld class implementation
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000424RuntimeDyld::RuntimeDyld(RTDyldMemoryManager *mm) {
425 Dyld = 0;
426 MM = mm;
Jim Grosbach6e563312011-03-21 22:15:52 +0000427}
428
429RuntimeDyld::~RuntimeDyld() {
430 delete Dyld;
431}
432
433bool RuntimeDyld::loadObject(MemoryBuffer *InputBuffer) {
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000434 if (!Dyld) {
Eli Benderskya66a1852012-01-16 08:56:09 +0000435 sys::LLVMFileType type = sys::IdentifyFileType(
436 InputBuffer->getBufferStart(),
437 static_cast<unsigned>(InputBuffer->getBufferSize()));
438 switch (type) {
439 case sys::ELF_Relocatable_FileType:
440 case sys::ELF_Executable_FileType:
441 case sys::ELF_SharedObject_FileType:
442 case sys::ELF_Core_FileType:
443 Dyld = new RuntimeDyldELF(MM);
444 break;
445 case sys::Mach_O_Object_FileType:
446 case sys::Mach_O_Executable_FileType:
447 case sys::Mach_O_FixedVirtualMemorySharedLib_FileType:
448 case sys::Mach_O_Core_FileType:
449 case sys::Mach_O_PreloadExecutable_FileType:
450 case sys::Mach_O_DynamicallyLinkedSharedLib_FileType:
451 case sys::Mach_O_DynamicLinker_FileType:
452 case sys::Mach_O_Bundle_FileType:
453 case sys::Mach_O_DynamicallyLinkedSharedLibStub_FileType:
454 case sys::Mach_O_DSYMCompanion_FileType:
455 Dyld = new RuntimeDyldMachO(MM);
456 break;
457 case sys::Unknown_FileType:
458 case sys::Bitcode_FileType:
459 case sys::Archive_FileType:
460 case sys::COFF_FileType:
461 report_fatal_error("Incompatible object format!");
462 }
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000463 } else {
Eli Benderskya66a1852012-01-16 08:56:09 +0000464 if (!Dyld->isCompatibleFormat(InputBuffer))
Danil Malyshevcf852dc2011-07-13 07:57:58 +0000465 report_fatal_error("Incompatible object format!");
466 }
467
Jim Grosbach6e563312011-03-21 22:15:52 +0000468 return Dyld->loadObject(InputBuffer);
469}
470
Jim Grosbachb0271052011-04-08 17:31:24 +0000471void *RuntimeDyld::getSymbolAddress(StringRef Name) {
Jim Grosbach6e563312011-03-21 22:15:52 +0000472 return Dyld->getSymbolAddress(Name);
473}
474
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000475void RuntimeDyld::resolveRelocations() {
476 Dyld->resolveRelocations();
477}
478
Jim Grosbach61425c02012-01-16 22:26:39 +0000479void RuntimeDyld::reassignSectionAddress(unsigned SectionID,
480 uint64_t Addr) {
481 Dyld->reassignSectionAddress(SectionID, Addr);
Jim Grosbachf8c1c842011-04-12 21:20:41 +0000482}
483
Jim Grosbach020f4e82012-01-16 23:50:55 +0000484void RuntimeDyld::mapSectionAddress(void *LocalAddress,
485 uint64_t TargetAddress) {
486 Dyld->mapSectionAddress(LocalAddress, TargetAddress);
487}
488
Jim Grosbach91dde152011-03-22 18:22:27 +0000489StringRef RuntimeDyld::getErrorString() {
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000490 return Dyld->getErrorString();
491}
492
Jim Grosbach6e563312011-03-21 22:15:52 +0000493} // end namespace llvm