Searched refs:RTDyld (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/ |
H A D | RuntimeDyld.h | 75 LoadedObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedObjectInfo() argument 76 : RTDyld(RTDyld), ObjSecToIDMap(std::move(ObjSecToIDMap)) {} in LoadedObjectInfo() 87 RuntimeDyldImpl &RTDyld; variable 182 virtual void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldCOFF.cpp | 35 RuntimeDyldImpl &RTDyld, in LoadedCOFFObjectInfo() argument 37 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedCOFFObjectInfo()
|
H A D | RuntimeDyld.cpp | 1277 return RTDyld.Sections[I->second].getLoadAddress(); in getSectionLoadAddress() 1456 RuntimeDyld RTDyld(MemMgr, Resolver); in jitLinkForORC() local 1457 RTDyld.setProcessAllSections(ProcessAllSections); in jitLinkForORC() 1459 auto Info = RTDyld.loadObject(*O.getBinary()); in jitLinkForORC() 1461 if (RTDyld.hasError()) { in jitLinkForORC() 1463 make_error<StringError>(RTDyld.getErrorString(), in jitLinkForORC() 1468 if (auto Err = OnLoaded(*O.getBinary(), *Info, RTDyld.getSymbolTable())) { in jitLinkForORC() 1473 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted), in jitLinkForORC()
|
H A D | RuntimeDyldMachO.cpp | 32 LoadedMachOObjectInfo(RuntimeDyldImpl &RTDyld, in LoadedMachOObjectInfo() argument 34 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedMachOObjectInfo()
|
H A D | RuntimeDyldELF.cpp | 133 LoadedELFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedELFObjectInfo() argument 134 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedELFObjectInfo()
|
/freebsd/contrib/llvm-project/llvm/tools/lli/ |
H A D | ForwardingMemoryManager.h | 69 void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument 71 MemMgr->notifyObjectLoaded(RTDyld, Obj); in notifyObjectLoaded()
|