Home
last modified time | relevance | path

Searched refs:Dyld (Results 1 – 5 of 5) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp432 Dyld = 0; in RuntimeDyld()
437 delete Dyld; in ~RuntimeDyld()
441 if (!Dyld) { in loadObject()
450 Dyld = new RuntimeDyldELF(MM); in loadObject()
462 Dyld = new RuntimeDyldMachO(MM); in loadObject()
471 if (!Dyld->isCompatibleFormat(InputBuffer)) in loadObject()
475 return Dyld->loadObject(InputBuffer); in loadObject()
479 return Dyld->getSymbolAddress(Name); in getSymbolAddress()
483 return Dyld->getSymbolLoadAddress(Name); in getSymbolLoadAddress()
487 Dyld->resolveRelocations(); in resolveRelocations()
[all …]
/external/llvm/tools/llvm-rtdyld/
Dllvm-rtdyld.cpp115 RuntimeDyld Dyld(MemMgr); in executeInput() local
128 if (Dyld.loadObject(InputBuffer.take())) { in executeInput()
129 return Error(Dyld.getErrorString()); in executeInput()
134 Dyld.resolveRelocations(); in executeInput()
141 void *MainAddress = Dyld.getSymbolAddress(EntryPoint); in executeInput()
/external/llvm/lib/ExecutionEngine/MCJIT/
DMCJIT.cpp52 : ExecutionEngine(m), TM(tm), Ctx(0), MemMgr(MM), Dyld(MM), in MCJIT()
101 if (Dyld.loadObject(MB)) in emitObject()
102 report_fatal_error(Dyld.getErrorString()); in emitObject()
105 Dyld.resolveRelocations(); in emitObject()
139 return (void*)Dyld.getSymbolLoadAddress(BaseName.substr(1)); in getPointerToFunction()
140 return (void*)Dyld.getSymbolLoadAddress((TM->getMCAsmInfo()->getGlobalPrefix() in getPointerToFunction()
DMCJIT.h32 RuntimeDyld Dyld; variable
75 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
/external/llvm/include/llvm/ExecutionEngine/
DRuntimeDyld.h58 RuntimeDyldImpl *Dyld; variable