Lines Matching refs:Dyld
1303 Dyld = nullptr; in RuntimeDyld()
1314 std::unique_ptr<RuntimeDyldCOFF> Dyld = in createRuntimeDyldCOFF() local
1316 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldCOFF()
1317 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldCOFF()
1318 return Dyld; in createRuntimeDyldCOFF()
1325 std::unique_ptr<RuntimeDyldELF> Dyld = in createRuntimeDyldELF() local
1327 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldELF()
1328 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldELF()
1329 return Dyld; in createRuntimeDyldELF()
1338 std::unique_ptr<RuntimeDyldMachO> Dyld = in createRuntimeDyldMachO() local
1340 Dyld->setProcessAllSections(ProcessAllSections); in createRuntimeDyldMachO()
1341 Dyld->setNotifyStubEmitted(std::move(NotifyStubEmitted)); in createRuntimeDyldMachO()
1342 return Dyld; in createRuntimeDyldMachO()
1347 if (!Dyld) { in loadObject()
1349 Dyld = in loadObject()
1354 Dyld = createRuntimeDyldMachO( in loadObject()
1358 Dyld = createRuntimeDyldCOFF( in loadObject()
1365 if (!Dyld->isCompatibleFile(Obj)) in loadObject()
1368 auto LoadedObjInfo = Dyld->loadObject(Obj); in loadObject()
1374 if (!Dyld) in getSymbolLocalAddress()
1376 return Dyld->getSymbolLocalAddress(Name); in getSymbolLocalAddress()
1380 assert(Dyld && "No RuntimeDyld instance attached"); in getSymbolSectionID()
1381 return Dyld->getSymbolSectionID(Name); in getSymbolSectionID()
1385 if (!Dyld) in getSymbol()
1387 return Dyld->getSymbol(Name); in getSymbol()
1391 if (!Dyld) in getSymbolTable()
1393 return Dyld->getSymbolTable(); in getSymbolTable()
1396 void RuntimeDyld::resolveRelocations() { Dyld->resolveRelocations(); } in resolveRelocations()
1399 Dyld->reassignSectionAddress(SectionID, Addr); in reassignSectionAddress()
1404 Dyld->mapSectionAddress(LocalAddress, TargetAddress); in mapSectionAddress()
1407 bool RuntimeDyld::hasError() { return Dyld->hasError(); } in hasError()
1409 StringRef RuntimeDyld::getErrorString() { return Dyld->getErrorString(); } in getErrorString()
1423 assert(Dyld && "No Dyld instance attached"); in getSectionContent()
1424 return Dyld->getSectionContent(SectionID); in getSectionContent()
1428 assert(Dyld && "No Dyld instance attached"); in getSectionLoadAddress()
1429 return Dyld->getSectionLoadAddress(SectionID); in getSectionLoadAddress()
1433 if (Dyld) in registerEHFrames()
1434 Dyld->registerEHFrames(); in registerEHFrames()
1438 if (Dyld) in deregisterEHFrames()
1439 Dyld->deregisterEHFrames(); in deregisterEHFrames()
1473 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted), in jitLinkForORC()