blob: 38107f6f6945197901ebe7ef8222ff3e25c061ee [file] [log] [blame]
Jim Grosbach6e563312011-03-21 22:15:52 +00001//===-- RuntimeDyld.h - Run-time dynamic linker for MC-JIT ------*- C++ -*-===//
2//
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"
Jim Grosbach6e563312011-03-21 22:15:52 +000015#include "llvm/ADT/OwningPtr.h"
Jim Grosbach8b54dca2011-03-23 19:52:00 +000016#include "llvm/ADT/SmallVector.h"
Jim Grosbach6e563312011-03-21 22:15:52 +000017#include "llvm/ADT/StringMap.h"
18#include "llvm/ADT/StringRef.h"
19#include "llvm/ADT/Twine.h"
20#include "llvm/ExecutionEngine/RuntimeDyld.h"
21#include "llvm/Object/MachOObject.h"
Jim Grosbach8b54dca2011-03-23 19:52:00 +000022#include "llvm/Support/Debug.h"
23#include "llvm/Support/ErrorHandling.h"
24#include "llvm/Support/Format.h"
Jim Grosbach6e563312011-03-21 22:15:52 +000025#include "llvm/Support/Memory.h"
26#include "llvm/Support/MemoryBuffer.h"
27#include "llvm/Support/system_error.h"
Jim Grosbach8b54dca2011-03-23 19:52:00 +000028#include "llvm/Support/raw_ostream.h"
Jim Grosbach6e563312011-03-21 22:15:52 +000029using namespace llvm;
30using namespace llvm::object;
31
32namespace llvm {
33class RuntimeDyldImpl {
Jim Grosbacha8287e32011-03-23 22:06:06 +000034 unsigned CPUType;
35 unsigned CPUSubtype;
36
Jim Grosbach6e563312011-03-21 22:15:52 +000037 // Master symbol table. As modules are loaded and external symbols are
38 // resolved, their addresses are stored here.
39 StringMap<void*> SymbolTable;
40
41 // FIXME: Should have multiple data blocks, one for each loaded chunk of
42 // compiled code.
43 sys::MemoryBlock Data;
44
45 bool HasError;
46 std::string ErrorStr;
47
48 // Set the error state and record an error string.
49 bool Error(const Twine &Msg) {
50 ErrorStr = Msg.str();
51 HasError = true;
52 return true;
53 }
54
Jim Grosbach8b54dca2011-03-23 19:52:00 +000055 bool resolveRelocation(uint32_t BaseSection, macho::RelocationEntry RE,
56 SmallVectorImpl<void *> &SectionBases,
57 SmallVectorImpl<StringRef> &SymbolNames);
Jim Grosbacha8287e32011-03-23 22:06:06 +000058 bool resolveX86_64Relocation(intptr_t Address, intptr_t Value, bool isPCRel,
59 unsigned Type, unsigned Size);
60 bool resolveARMRelocation(intptr_t Address, intptr_t Value, bool isPCRel,
61 unsigned Type, unsigned Size);
Jim Grosbach8b54dca2011-03-23 19:52:00 +000062
Jim Grosbach6e563312011-03-21 22:15:52 +000063 bool loadSegment32(const MachOObject *Obj,
64 const MachOObject::LoadCommandInfo *SegmentLCI,
65 const InMemoryStruct<macho::SymtabLoadCommand> &SymtabLC);
66 bool loadSegment64(const MachOObject *Obj,
67 const MachOObject::LoadCommandInfo *SegmentLCI,
68 const InMemoryStruct<macho::SymtabLoadCommand> &SymtabLC);
69
70public:
Jim Grosbach8371c892011-03-22 00:42:19 +000071 RuntimeDyldImpl() : HasError(false) {}
72
Jim Grosbach6e563312011-03-21 22:15:52 +000073 bool loadObject(MemoryBuffer *InputBuffer);
74
75 void *getSymbolAddress(StringRef Name) {
76 // Use lookup() rather than [] because we don't want to add an entry
77 // if there isn't one already, which the [] operator does.
78 return SymbolTable.lookup(Name);
79 }
80
81 sys::MemoryBlock getMemoryBlock() { return Data; }
82
83 // Is the linker in an error state?
84 bool hasError() { return HasError; }
85
86 // Mark the error condition as handled and continue.
87 void clearError() { HasError = false; }
88
89 // Get the error message.
90 StringRef getErrorString() { return ErrorStr; }
91};
92
Jim Grosbach8b54dca2011-03-23 19:52:00 +000093// FIXME: Relocations for targets other than x86_64.
94bool RuntimeDyldImpl::
95resolveRelocation(uint32_t BaseSection, macho::RelocationEntry RE,
96 SmallVectorImpl<void *> &SectionBases,
97 SmallVectorImpl<StringRef> &SymbolNames) {
98 // struct relocation_info {
99 // int32_t r_address;
100 // uint32_t r_symbolnum:24,
101 // r_pcrel:1,
102 // r_length:2,
103 // r_extern:1,
104 // r_type:4;
105 // };
106 uint32_t SymbolNum = RE.Word1 & 0xffffff; // 24-bit value
107 bool isPCRel = (RE.Word1 >> 24) & 1;
108 unsigned Log2Size = (RE.Word1 >> 25) & 3;
109 bool isExtern = (RE.Word1 >> 27) & 1;
110 unsigned Type = (RE.Word1 >> 28) & 0xf;
111 if (RE.Word0 & macho::RF_Scattered)
112 return Error("NOT YET IMPLEMENTED: scattered relocations.");
Jim Grosbach6e563312011-03-21 22:15:52 +0000113
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000114 // The address requiring a relocation.
115 intptr_t Address = (intptr_t)SectionBases[BaseSection] + RE.Word0;
116
117 // Figure out the target address of the relocation. If isExtern is true,
118 // this relocation references the symbol table, otherwise it references
119 // a section in the same object, numbered from 1 through NumSections
120 // (SectionBases is [0, NumSections-1]).
121 intptr_t Value;
122 if (isExtern) {
123 StringRef Name = SymbolNames[SymbolNum];
124 if (SymbolTable.lookup(Name)) {
125 // The symbol is in our symbol table, so we can resolve it directly.
126 Value = (intptr_t)SymbolTable[Name];
127 } else {
128 return Error("NOT YET IMPLEMENTED: relocations to pre-compiled code.");
129 }
130 DEBUG(dbgs() << "Resolve relocation(" << Type << ") from '" << Name
131 << "' to " << format("0x%x", Address) << ".\n");
132 } else {
133 // For non-external relocations, the SymbolNum is actual a section number
134 // as described above.
135 Value = (intptr_t)SectionBases[SymbolNum - 1];
136 }
137
Jim Grosbacha8287e32011-03-23 22:06:06 +0000138 unsigned Size = 1 << Log2Size;
139 switch (CPUType) {
140 default: assert(0 && "Unsupported CPU type!");
141 case mach::CTM_x86_64:
142 return resolveX86_64Relocation(Address, Value, isPCRel, Type, Size);
143 case mach::CTM_ARM:
144 return resolveARMRelocation(Address, Value, isPCRel, Type, Size);
145 }
146 llvm_unreachable("");
147}
148
149bool RuntimeDyldImpl::resolveX86_64Relocation(intptr_t Address, intptr_t Value,
150 bool isPCRel, unsigned Type,
151 unsigned Size) {
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000152 // If the relocation is PC-relative, the value to be encoded is the
153 // pointer difference.
154 if (isPCRel)
155 // FIXME: It seems this value needs to be adjusted by 4 for an effective PC
156 // address. Is that expected? Only for branches, perhaps?
157 Value -= Address + 4;
158
159 switch(Type) {
160 default:
161 llvm_unreachable("Invalid relocation type!");
162 case macho::RIT_X86_64_Unsigned:
163 case macho::RIT_X86_64_Branch: {
164 // Mask in the target value a byte at a time (we don't have an alignment
165 // guarantee for the target address, so this is safest).
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000166 uint8_t *p = (uint8_t*)Address;
Jim Grosbacha8287e32011-03-23 22:06:06 +0000167 for (unsigned i = 0; i < Size; ++i) {
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000168 *p++ = (uint8_t)Value;
169 Value >>= 8;
170 }
171 return false;
172 }
173 case macho::RIT_X86_64_Signed:
174 case macho::RIT_X86_64_GOTLoad:
175 case macho::RIT_X86_64_GOT:
176 case macho::RIT_X86_64_Subtractor:
177 case macho::RIT_X86_64_Signed1:
178 case macho::RIT_X86_64_Signed2:
179 case macho::RIT_X86_64_Signed4:
180 case macho::RIT_X86_64_TLV:
181 return Error("Relocation type not implemented yet!");
182 }
183 return false;
184}
Jim Grosbach6e563312011-03-21 22:15:52 +0000185
Jim Grosbacha8287e32011-03-23 22:06:06 +0000186bool RuntimeDyldImpl::resolveARMRelocation(intptr_t Address, intptr_t Value,
187 bool isPCRel, unsigned Type,
188 unsigned Size) {
189 // If the relocation is PC-relative, the value to be encoded is the
190 // pointer difference.
191 if (isPCRel) {
192 Value -= Address;
193 // ARM PCRel relocations have an effective-PC offset of two instructions
194 // (four bytes in Thumb mode, 8 bytes in ARM mode).
195 // FIXME: For now, assume ARM mode.
196 Value -= 8;
197 }
198
199 switch(Type) {
200 default:
201 case macho::RIT_Vanilla: {
202 llvm_unreachable("Invalid relocation type!");
203 // Mask in the target value a byte at a time (we don't have an alignment
204 // guarantee for the target address, so this is safest).
205 uint8_t *p = (uint8_t*)Address;
206 for (unsigned i = 0; i < Size; ++i) {
207 *p++ = (uint8_t)Value;
208 Value >>= 8;
209 }
210 return false;
211 }
212 case macho::RIT_Pair:
213 case macho::RIT_Difference:
214 case macho::RIT_ARM_LocalDifference:
215 case macho::RIT_ARM_PreboundLazyPointer:
216 case macho::RIT_ARM_Branch24Bit:
217 case macho::RIT_ARM_ThumbBranch22Bit:
218 case macho::RIT_ARM_ThumbBranch32Bit:
219 case macho::RIT_ARM_Half:
220 case macho::RIT_ARM_HalfDifference:
221 return Error("Relocation type not implemented yet!");
222 }
223 return false;
224}
225
Jim Grosbach6e563312011-03-21 22:15:52 +0000226bool RuntimeDyldImpl::
227loadSegment32(const MachOObject *Obj,
228 const MachOObject::LoadCommandInfo *SegmentLCI,
229 const InMemoryStruct<macho::SymtabLoadCommand> &SymtabLC) {
230 InMemoryStruct<macho::SegmentLoadCommand> Segment32LC;
231 Obj->ReadSegmentLoadCommand(*SegmentLCI, Segment32LC);
232 if (!Segment32LC)
233 return Error("unable to load segment load command");
234
235 // Map the segment into memory.
236 std::string ErrorStr;
237 Data = sys::Memory::AllocateRWX(Segment32LC->VMSize, 0, &ErrorStr);
238 if (!Data.base())
239 return Error("unable to allocate memory block: '" + ErrorStr + "'");
240 memcpy(Data.base(), Obj->getData(Segment32LC->FileOffset,
241 Segment32LC->FileSize).data(),
242 Segment32LC->FileSize);
243 memset((char*)Data.base() + Segment32LC->FileSize, 0,
244 Segment32LC->VMSize - Segment32LC->FileSize);
245
246 // Bind the section indices to address.
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000247 SmallVector<void *, 16> SectionBases;
Jim Grosbach6e563312011-03-21 22:15:52 +0000248 for (unsigned i = 0; i != Segment32LC->NumSections; ++i) {
249 InMemoryStruct<macho::Section> Sect;
250 Obj->ReadSection(*SegmentLCI, i, Sect);
251 if (!Sect)
252 return Error("unable to load section: '" + Twine(i) + "'");
253
254 // FIXME: We don't support relocations yet.
255 if (Sect->NumRelocationTableEntries != 0)
256 return Error("not yet implemented: relocations!");
257
258 // FIXME: Improve check.
259 if (Sect->Flags != 0x80000400)
260 return Error("unsupported section type!");
261
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000262 SectionBases.push_back((char*) Data.base() + Sect->Address);
Jim Grosbach6e563312011-03-21 22:15:52 +0000263 }
264
265 // Bind all the symbols to address.
266 for (unsigned i = 0; i != SymtabLC->NumSymbolTableEntries; ++i) {
267 InMemoryStruct<macho::SymbolTableEntry> STE;
268 Obj->ReadSymbolTableEntry(SymtabLC->SymbolTableOffset, i, STE);
269 if (!STE)
270 return Error("unable to read symbol: '" + Twine(i) + "'");
271 if (STE->SectionIndex == 0)
272 return Error("unexpected undefined symbol!");
273
274 unsigned Index = STE->SectionIndex - 1;
275 if (Index >= Segment32LC->NumSections)
276 return Error("invalid section index for symbol: '" + Twine() + "'");
277
278 // Get the symbol name.
279 StringRef Name = Obj->getStringAtIndex(STE->StringIndex);
280
281 // Get the section base address.
282 void *SectionBase = SectionBases[Index];
283
284 // Get the symbol address.
285 void *Address = (char*) SectionBase + STE->Value;
286
287 // FIXME: Check the symbol type and flags.
288 if (STE->Type != 0xF)
289 return Error("unexpected symbol type!");
290 if (STE->Flags != 0x0)
291 return Error("unexpected symbol type!");
292
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000293 DEBUG(dbgs() << "Symbol: '" << Name << "' @ " << Address << "\n");
294
Jim Grosbach6e563312011-03-21 22:15:52 +0000295 SymbolTable[Name] = Address;
296 }
297
Jim Grosbachf9229102011-03-22 01:06:42 +0000298 // We've loaded the section; now mark the functions in it as executable.
299 // FIXME: We really should use the JITMemoryManager for this.
300 sys::Memory::setRangeExecutable(Data.base(), Data.size());
301
Jim Grosbach6e563312011-03-21 22:15:52 +0000302 return false;
303}
304
305
306bool RuntimeDyldImpl::
307loadSegment64(const MachOObject *Obj,
308 const MachOObject::LoadCommandInfo *SegmentLCI,
309 const InMemoryStruct<macho::SymtabLoadCommand> &SymtabLC) {
310 InMemoryStruct<macho::Segment64LoadCommand> Segment64LC;
311 Obj->ReadSegment64LoadCommand(*SegmentLCI, Segment64LC);
312 if (!Segment64LC)
313 return Error("unable to load segment load command");
314
315 // Map the segment into memory.
316 std::string ErrorStr;
317 Data = sys::Memory::AllocateRWX(Segment64LC->VMSize, 0, &ErrorStr);
318 if (!Data.base())
319 return Error("unable to allocate memory block: '" + ErrorStr + "'");
320 memcpy(Data.base(), Obj->getData(Segment64LC->FileOffset,
321 Segment64LC->FileSize).data(),
322 Segment64LC->FileSize);
323 memset((char*)Data.base() + Segment64LC->FileSize, 0,
324 Segment64LC->VMSize - Segment64LC->FileSize);
325
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000326 // Bind the section indices to addresses and record the relocations we
327 // need to resolve.
328 typedef std::pair<uint32_t, macho::RelocationEntry> RelocationMap;
329 SmallVector<RelocationMap, 64> Relocations;
330
331 SmallVector<void *, 16> SectionBases;
Jim Grosbach6e563312011-03-21 22:15:52 +0000332 for (unsigned i = 0; i != Segment64LC->NumSections; ++i) {
333 InMemoryStruct<macho::Section64> Sect;
334 Obj->ReadSection64(*SegmentLCI, i, Sect);
335 if (!Sect)
336 return Error("unable to load section: '" + Twine(i) + "'");
337
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000338 // Resolve any relocations the section has.
339 for (unsigned j = 0; j != Sect->NumRelocationTableEntries; ++j) {
340 InMemoryStruct<macho::RelocationEntry> RE;
341 Obj->ReadRelocationEntry(Sect->RelocationTableOffset, j, RE);
342 Relocations.push_back(RelocationMap(j, *RE));
343 }
Jim Grosbach6e563312011-03-21 22:15:52 +0000344
345 // FIXME: Improve check.
346 if (Sect->Flags != 0x80000400)
347 return Error("unsupported section type!");
348
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000349 SectionBases.push_back((char*) Data.base() + Sect->Address);
Jim Grosbach6e563312011-03-21 22:15:52 +0000350 }
351
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000352 // Bind all the symbols to address. Keep a record of the names for use
353 // by relocation resolution.
354 SmallVector<StringRef, 64> SymbolNames;
Jim Grosbach6e563312011-03-21 22:15:52 +0000355 for (unsigned i = 0; i != SymtabLC->NumSymbolTableEntries; ++i) {
356 InMemoryStruct<macho::Symbol64TableEntry> STE;
357 Obj->ReadSymbol64TableEntry(SymtabLC->SymbolTableOffset, i, STE);
358 if (!STE)
359 return Error("unable to read symbol: '" + Twine(i) + "'");
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000360 // Get the symbol name.
361 StringRef Name = Obj->getStringAtIndex(STE->StringIndex);
362 SymbolNames.push_back(Name);
363
364 // Just skip undefined symbols. They'll be loaded from whatever
365 // module they come from (or system dylib) when we resolve relocations
366 // involving them.
Jim Grosbach6e563312011-03-21 22:15:52 +0000367 if (STE->SectionIndex == 0)
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000368 continue;
Jim Grosbach6e563312011-03-21 22:15:52 +0000369
370 unsigned Index = STE->SectionIndex - 1;
371 if (Index >= Segment64LC->NumSections)
372 return Error("invalid section index for symbol: '" + Twine() + "'");
373
Jim Grosbach6e563312011-03-21 22:15:52 +0000374 // Get the section base address.
375 void *SectionBase = SectionBases[Index];
376
377 // Get the symbol address.
378 void *Address = (char*) SectionBase + STE->Value;
379
380 // FIXME: Check the symbol type and flags.
381 if (STE->Type != 0xF)
382 return Error("unexpected symbol type!");
383 if (STE->Flags != 0x0)
384 return Error("unexpected symbol type!");
385
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000386 DEBUG(dbgs() << "Symbol: '" << Name << "' @ " << Address << "\n");
Jim Grosbach6e563312011-03-21 22:15:52 +0000387 SymbolTable[Name] = Address;
388 }
389
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000390 // Now resolve any relocations.
391 for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
392 if (resolveRelocation(Relocations[i].first, Relocations[i].second,
393 SectionBases, SymbolNames))
394 return true;
395 }
396
Jim Grosbachf9229102011-03-22 01:06:42 +0000397 // We've loaded the section; now mark the functions in it as executable.
398 // FIXME: We really should use the JITMemoryManager for this.
399 sys::Memory::setRangeExecutable(Data.base(), Data.size());
400
Jim Grosbach6e563312011-03-21 22:15:52 +0000401 return false;
402}
403
Jim Grosbach6e563312011-03-21 22:15:52 +0000404bool RuntimeDyldImpl::loadObject(MemoryBuffer *InputBuffer) {
405 // If the linker is in an error state, don't do anything.
406 if (hasError())
407 return true;
408 // Load the Mach-O wrapper object.
409 std::string ErrorStr;
410 OwningPtr<MachOObject> Obj(
411 MachOObject::LoadFromBuffer(InputBuffer, &ErrorStr));
412 if (!Obj)
413 return Error("unable to load object: '" + ErrorStr + "'");
414
Jim Grosbacha8287e32011-03-23 22:06:06 +0000415 // Get the CPU type information from the header.
416 const macho::Header &Header = Obj->getHeader();
417
418 // FIXME: Error checking that the loaded object is compatible with
419 // the system we're running on.
420 CPUType = Header.CPUType;
421 CPUSubtype = Header.CPUSubtype;
422
Jim Grosbach6e563312011-03-21 22:15:52 +0000423 // Validate that the load commands match what we expect.
424 const MachOObject::LoadCommandInfo *SegmentLCI = 0, *SymtabLCI = 0,
425 *DysymtabLCI = 0;
Jim Grosbacha8287e32011-03-23 22:06:06 +0000426 for (unsigned i = 0; i != Header.NumLoadCommands; ++i) {
Jim Grosbach6e563312011-03-21 22:15:52 +0000427 const MachOObject::LoadCommandInfo &LCI = Obj->getLoadCommandInfo(i);
428 switch (LCI.Command.Type) {
429 case macho::LCT_Segment:
430 case macho::LCT_Segment64:
431 if (SegmentLCI)
432 return Error("unexpected input object (multiple segments)");
433 SegmentLCI = &LCI;
434 break;
435 case macho::LCT_Symtab:
436 if (SymtabLCI)
437 return Error("unexpected input object (multiple symbol tables)");
438 SymtabLCI = &LCI;
439 break;
440 case macho::LCT_Dysymtab:
441 if (DysymtabLCI)
442 return Error("unexpected input object (multiple symbol tables)");
443 DysymtabLCI = &LCI;
444 break;
445 default:
446 return Error("unexpected input object (unexpected load command");
447 }
448 }
449
450 if (!SymtabLCI)
451 return Error("no symbol table found in object");
452 if (!SegmentLCI)
453 return Error("no symbol table found in object");
454
455 // Read and register the symbol table data.
456 InMemoryStruct<macho::SymtabLoadCommand> SymtabLC;
457 Obj->ReadSymtabLoadCommand(*SymtabLCI, SymtabLC);
458 if (!SymtabLC)
459 return Error("unable to load symbol table load command");
460 Obj->RegisterStringTable(*SymtabLC);
461
462 // Read the dynamic link-edit information, if present (not present in static
463 // objects).
464 if (DysymtabLCI) {
465 InMemoryStruct<macho::DysymtabLoadCommand> DysymtabLC;
466 Obj->ReadDysymtabLoadCommand(*DysymtabLCI, DysymtabLC);
467 if (!DysymtabLC)
468 return Error("unable to load dynamic link-exit load command");
469
470 // FIXME: We don't support anything interesting yet.
Jim Grosbach8b54dca2011-03-23 19:52:00 +0000471// if (DysymtabLC->LocalSymbolsIndex != 0)
472// return Error("NOT YET IMPLEMENTED: local symbol entries");
473// if (DysymtabLC->ExternalSymbolsIndex != 0)
474// return Error("NOT YET IMPLEMENTED: non-external symbol entries");
475// if (DysymtabLC->UndefinedSymbolsIndex != SymtabLC->NumSymbolTableEntries)
476// return Error("NOT YET IMPLEMENTED: undefined symbol entries");
Jim Grosbach6e563312011-03-21 22:15:52 +0000477 }
478
479 // Load the segment load command.
480 if (SegmentLCI->Command.Type == macho::LCT_Segment) {
481 if (loadSegment32(Obj.get(), SegmentLCI, SymtabLC))
482 return true;
483 } else {
484 if (loadSegment64(Obj.get(), SegmentLCI, SymtabLC))
485 return true;
486 }
487
488 return false;
489}
490
491
492//===----------------------------------------------------------------------===//
493// RuntimeDyld class implementation
494RuntimeDyld::RuntimeDyld() {
495 Dyld = new RuntimeDyldImpl;
496}
497
498RuntimeDyld::~RuntimeDyld() {
499 delete Dyld;
500}
501
502bool RuntimeDyld::loadObject(MemoryBuffer *InputBuffer) {
503 return Dyld->loadObject(InputBuffer);
504}
505
506void *RuntimeDyld::getSymbolAddress(StringRef Name) {
507 return Dyld->getSymbolAddress(Name);
508}
509
510sys::MemoryBlock RuntimeDyld::getMemoryBlock() {
511 return Dyld->getMemoryBlock();
512}
513
Jim Grosbach91dde152011-03-22 18:22:27 +0000514StringRef RuntimeDyld::getErrorString() {
Jim Grosbachb3eecaf2011-03-22 18:19:42 +0000515 return Dyld->getErrorString();
516}
517
Jim Grosbach6e563312011-03-21 22:15:52 +0000518} // end namespace llvm