Searched refs:RTDyld (Results 1 – 7 of 7) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
D | RTDyldObjectLinkingLayer.h | 239 PFC->RTDyld = std::make_unique<RuntimeDyld>(*MemMgr, ResolverAdapter); in finalize() 240 PFC->RTDyld->setProcessAllSections(PFC->ProcessAllSections); in finalize() 245 PFC->RTDyld->loadObject(*PFC->Obj.getBinary()); in finalize() 249 auto SymTab = PFC->RTDyld->getSymbolTable(); in finalize() 257 PFC->RTDyld->finalizeWithMemoryManagerLocking(); in finalize() 259 if (PFC->RTDyld->hasError()) in finalize() 260 return make_error<StringError>(PFC->RTDyld->getErrorString(), in finalize() 287 assert(PFC->RTDyld && "mapSectionAddress called on raw LinkedObject"); in mapSectionAddress() 288 PFC->RTDyld->mapSectionAddress(LocalAddress, TargetAddr); in mapSectionAddress() 326 std::unique_ptr<RuntimeDyld> RTDyld; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/ |
D | RuntimeDyld.h | 76 LoadedObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedObjectInfo() argument 77 : RTDyld(RTDyld), ObjSecToIDMap(std::move(ObjSecToIDMap)) {} in LoadedObjectInfo() 88 RuntimeDyldImpl &RTDyld; variable 165 virtual void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldCOFF.cpp | 34 RuntimeDyldImpl &RTDyld, in LoadedCOFFObjectInfo() argument 36 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedCOFFObjectInfo()
|
D | RuntimeDyld.cpp | 1247 return RTDyld.Sections[I->second].getLoadAddress(); in getSectionLoadAddress() 1416 RuntimeDyld RTDyld(MemMgr, Resolver); in jitLinkForORC() local 1417 RTDyld.setProcessAllSections(ProcessAllSections); in jitLinkForORC() 1419 auto Info = RTDyld.loadObject(Obj); in jitLinkForORC() 1421 if (RTDyld.hasError()) { in jitLinkForORC() 1422 OnEmitted(make_error<StringError>(RTDyld.getErrorString(), in jitLinkForORC() 1427 if (auto Err = OnLoaded(std::move(Info), RTDyld.getSymbolTable())) in jitLinkForORC() 1430 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted), in jitLinkForORC()
|
D | RuntimeDyldMachO.cpp | 32 LoadedMachOObjectInfo(RuntimeDyldImpl &RTDyld, in LoadedMachOObjectInfo() argument 34 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedMachOObjectInfo()
|
D | RuntimeDyldELF.cpp | 139 LoadedELFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedELFObjectInfo() argument 140 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedELFObjectInfo()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/ |
D | OrcMCJITReplacement.h | 108 void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument 110 return ClientMM->notifyObjectLoaded(RTDyld, O); in notifyObjectLoaded()
|