Searched refs:Dyld (Results 1 – 5 of 5) sorted by relevance
96 RuntimeDyld Dyld(MemMgr); in executeInput() local109 if (Dyld.loadObject(InputBuffer.take())) { in executeInput()110 return Error(Dyld.getErrorString()); in executeInput()115 Dyld.resolveRelocations(); in executeInput()120 void *MainAddress = Dyld.getSymbolAddress(EntryPoint); in executeInput()
424 Dyld = 0; in RuntimeDyld()429 delete Dyld; in ~RuntimeDyld()433 if (!Dyld) { in loadObject()442 Dyld = new RuntimeDyldELF(MM); in loadObject()454 Dyld = new RuntimeDyldMachO(MM); in loadObject()463 if (!Dyld->isCompatibleFormat(InputBuffer)) in loadObject()467 return Dyld->loadObject(InputBuffer); in loadObject()471 return Dyld->getSymbolAddress(Name); in getSymbolAddress()475 Dyld->resolveRelocations(); in resolveRelocations()480 Dyld->reassignSectionAddress(SectionID, Addr); in reassignSectionAddress()[all …]
57 : ExecutionEngine(m), TM(tm), MemMgr(MM), M(m), OS(Buffer), Dyld(MM) { in MCJIT()80 if (Dyld.loadObject(MB)) in MCJIT()81 report_fatal_error(Dyld.getErrorString()); in MCJIT()83 Dyld.resolveRelocations(); in MCJIT()106 return (void*)Dyld.getSymbolAddress(BaseName.substr(1)); in getPointerToFunction()107 return (void*)Dyld.getSymbolAddress((TM->getMCAsmInfo()->getGlobalPrefix() in getPointerToFunction()
41 RuntimeDyld Dyld; variable76 Dyld.mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
58 RuntimeDyldImpl *Dyld; variable