Home
last modified time | relevance | path

Searched refs:RTDyldMemoryManager (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRTDyldMemoryManager.cpp32 RTDyldMemoryManager::~RTDyldMemoryManager() = default;
91 void RTDyldMemoryManager::registerEHFramesInProcess(uint8_t *Addr, in registerEHFramesInProcess()
102 void RTDyldMemoryManager::deregisterEHFramesInProcess(uint8_t *Addr, in deregisterEHFramesInProcess()
112 void RTDyldMemoryManager::registerEHFramesInProcess(uint8_t *Addr, in registerEHFramesInProcess()
122 void RTDyldMemoryManager::deregisterEHFramesInProcess(uint8_t *Addr, in deregisterEHFramesInProcess()
129 void RTDyldMemoryManager::registerEHFrames(uint8_t *Addr, uint64_t LoadAddr, in registerEHFrames()
135 void RTDyldMemoryManager::deregisterEHFrames() { in deregisterEHFrames()
221 RTDyldMemoryManager::getSymbolAddressInProcess(const std::string &Name) { in getSymbolAddressInProcess()
282 void *RTDyldMemoryManager::getPointerToNamedFunction(const std::string &Name, in getPointerToNamedFunction()
293 void RTDyldMemoryManager::anchor() {} in anchor()
H A DCMakeLists.txt3 RTDyldMemoryManager.cpp
/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/
H A DRTDyldMemoryManager.h60 class RTDyldMemoryManager : public MCJITMemoryManager,
63 RTDyldMemoryManager() = default;
64 RTDyldMemoryManager(const RTDyldMemoryManager&) = delete;
65 void operator=(const RTDyldMemoryManager&) = delete;
66 ~RTDyldMemoryManager() override;
154 RTDyldMemoryManager, LLVMMCJITMemoryManagerRef)
H A DSectionMemoryManager.h39 class SectionMemoryManager : public RTDyldMemoryManager {
H A DExecutionEngine.h51 class RTDyldMemoryManager; variable
574 EngineBuilder &setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager> mcjmm);
/llvm-project-15.0.7/llvm/tools/lli/
H A DForwardingMemoryManager.h23 class ForwardingMemoryManager : public llvm::RTDyldMemoryManager {
75 using RTDyldMemoryManager::notifyObjectLoaded;
H A Dlli.cpp552 RTDyldMemoryManager *RTDyldMM = nullptr; in main()
562 std::unique_ptr<RTDyldMemoryManager>(RTDyldMM)); in main()
/llvm-project-15.0.7/llvm/tools/llvm-jitlistener/
H A Dllvm-jitlistener.cpp158 RTDyldMemoryManager *MemMgr = new SectionMemoryManager(); in InitEE()
179 .setMCJITMemoryManager(std::unique_ptr<RTDyldMemoryManager>(MemMgr)) in InitEE()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/
H A DExecutionEngineTest.cpp144 RTDyldMemoryManager::getSymbolAddressInProcess("_x")); in TEST_F()
147 RTDyldMemoryManager::getSymbolAddressInProcess("_x")); in TEST_F()
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DBUILD.gn11 "RTDyldMemoryManager.cpp",
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp206 std::unique_ptr<RTDyldMemoryManager>(unwrap(options.MCJMM))); in LLVMCreateMCJITCompilerForModule()
333 class SimpleBindingMemoryManager : public RTDyldMemoryManager {
H A DExecutionEngine.cpp487 std::unique_ptr<RTDyldMemoryManager> mcjmm) { in setMCJITMemoryManager()
488 auto SharedMM = std::shared_ptr<RTDyldMemoryManager>(std::move(mcjmm)); in setMCJITMemoryManager()
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITTestBase.h326 std::unique_ptr<RTDyldMemoryManager> MM;
/llvm-project-15.0.7/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp189 class TrivialMemoryManager : public RTDyldMemoryManager {
234 if (auto Sym = RTDyldMemoryManager::findSymbol(Name)) in findSymbol()
/llvm-project-15.0.7/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1910 std::unique_ptr<llvm::RTDyldMemoryManager> MemMgr(new llvm::SectionMemoryManager()); in main()
/llvm-project-15.0.7/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp858 void *pfn = RTDyldMemoryManager::getPointerToNamedFunction(Name, false); in getPointerToNamedFunction()