Lines Matching refs:Dyld

1286   Dyld = nullptr;  in RuntimeDyld()
1297 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
1299 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
1300 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldCOFF()
1301 return Dyld; in createRuntimeDyldCOFF()
1308 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local
1310 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1311 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldELF()
1312 return Dyld; in createRuntimeDyldELF()
1321 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
1323 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldMachO()
1324 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldMachO()
1325 return Dyld; in createRuntimeDyldMachO()
1330 if (!Dyld) { in loadObject()
1332 Dyld = in loadObject()
1337 Dyld = createRuntimeDyldMachO( in loadObject()
1341 Dyld = createRuntimeDyldCOFF( in loadObject()
1348 if (!Dyld->isCompatibleFile(Obj)) in loadObject()
1351 auto LoadedObjInfo = Dyld->loadObject(Obj); in loadObject()
1357 if (!Dyld) in getSymbolLocalAddress()
1359 return Dyld->getSymbolLocalAddress(Name); in getSymbolLocalAddress()
1363 assert(Dyld && "No RuntimeDyld instance attached"); in getSymbolSectionID()
1364 return Dyld->getSymbolSectionID(Name); in getSymbolSectionID()
1368 if (!Dyld) in getSymbol()
1370 return Dyld->getSymbol(Name); in getSymbol()
1374 if (!Dyld) in getSymbolTable()
1376 return Dyld->getSymbolTable(); in getSymbolTable()
1379 void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); } in resolveRelocations()
1382 Dyld->reassignSectionAddress(SectionID, Addr); in reassignSectionAddress()
1387 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
1390 bool RuntimeDyld::hasError() { return Dyld->hasError(); } in hasError()
1392 StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); } in getErrorString()
1406 assert(Dyld && "No Dyld instance attached"); in getSectionContent()
1407 return Dyld->getSectionContent(SectionID); in getSectionContent()
1411 assert(Dyld && "No Dyld instance attached"); in getSectionLoadAddress()
1412 return Dyld->getSectionLoadAddress(SectionID); in getSectionLoadAddress()
1416 if (Dyld) in registerEHFrames()
1417 Dyld->registerEHFrames(); in registerEHFrames()
1421 if (Dyld) in deregisterEHFrames()
1422 Dyld->deregisterEHFrames(); in deregisterEHFrames()
1454 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted), in jitLinkForORC()