Home
last modified time | relevance | path

Searched refs:RTDyld (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DRuntimeDyld.h76 LoadedObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedObjectInfo() argument
77 : RTDyld(RTDyld), ObjSecToIDMap(std::move(ObjSecToIDMap)) {} in LoadedObjectInfo()
88 RuntimeDyldImpl &RTDyld; variable
183 virtual void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp34 RuntimeDyldImpl &RTDyld, in LoadedCOFFObjectInfo() argument
36 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedCOFFObjectInfo()
H A DRuntimeDyld.cpp1292 return RTDyld.Sections[I->second].getLoadAddress(); in getSectionLoadAddress()
1471 RuntimeDyld RTDyld(MemMgr, Resolver); in jitLinkForORC() local
1472 RTDyld.setProcessAllSections(ProcessAllSections); in jitLinkForORC()
1474 auto Info = RTDyld.loadObject(*O.getBinary()); in jitLinkForORC()
1476 if (RTDyld.hasError()) { in jitLinkForORC()
1478 make_error<StringError>(RTDyld.getErrorString(), in jitLinkForORC()
1483 if (auto Err = OnLoaded(*O.getBinary(), *Info, RTDyld.getSymbolTable())) { in jitLinkForORC()
1488 RuntimeDyldImpl::finalizeAsync(std::move(RTDyld.Dyld), std::move(OnEmitted), in jitLinkForORC()
H A DRuntimeDyldMachO.cpp31 LoadedMachOObjectInfo(RuntimeDyldImpl &RTDyld, in LoadedMachOObjectInfo() argument
33 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedMachOObjectInfo()
H A DRuntimeDyldELF.cpp132 LoadedELFObjectInfo(RuntimeDyldImpl &RTDyld, ObjSectionToIDMap ObjSecToIDMap) in LoadedELFObjectInfo() argument
133 : LoadedObjectInfoHelper(RTDyld, std::move(ObjSecToIDMap)) {} in LoadedELFObjectInfo()
/freebsd/contrib/llvm-project/llvm/tools/lli/
H A DForwardingMemoryManager.h69 void notifyObjectLoaded(RuntimeDyld &RTDyld, in notifyObjectLoaded() argument
71 MemMgr->notifyObjectLoaded(RTDyld, Obj); in notifyObjectLoaded()