Home
last modified time | relevance | path

Searched refs:SimpleRemoteEPC (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.h31 class SimpleRemoteEPC : public ExecutorProcessControl,
40 SimpleRemoteEPC &);
50 static Expected<std::unique_ptr<SimpleRemoteEPC>>
53 std::unique_ptr<SimpleRemoteEPC> SREPC( in Create()
66 SimpleRemoteEPC(const SimpleRemoteEPC &) = delete;
67 SimpleRemoteEPC &operator=(const SimpleRemoteEPC &) = delete;
68 SimpleRemoteEPC(SimpleRemoteEPC &&) = delete;
69 SimpleRemoteEPC &operator=(SimpleRemoteEPC &&) = delete;
70 ~SimpleRemoteEPC();
98 createDefaultMemoryManager(SimpleRemoteEPC &SREPC);
[all …]
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DSimpleRemoteEPC.cpp20 SimpleRemoteEPC::~SimpleRemoteEPC() { in ~SimpleRemoteEPC()
28 SimpleRemoteEPC::loadDylib(const char *DylibPath) { in loadDylib()
33 SimpleRemoteEPC::lookupSymbols(ArrayRef<LookupRequest> Request) { in lookupSymbols()
48 Expected<int32_t> SimpleRemoteEPC::runAsMain(ExecutorAddr MainFnAddr, in runAsMain()
57 void SimpleRemoteEPC::callWrapperAsync(ExecutorAddr WrapperFnAddr, in callWrapperAsync()
93 Error SimpleRemoteEPC::disconnect() { in disconnect()
159 void SimpleRemoteEPC::handleDisconnect(Error Err) { in handleDisconnect()
183 SimpleRemoteEPC::createDefaultMemoryManager(SimpleRemoteEPC &SREPC) { in createDefaultMemoryManager()
197 SimpleRemoteEPC::createDefaultMemoryAccess(SimpleRemoteEPC &SREPC) { in createDefaultMemoryAccess()
262 Error SimpleRemoteEPC::setup(Setup S) { in setup()
[all …]
H A DCMakeLists.txt39 SimpleRemoteEPC.cpp
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/LLJITWithRemoteDebugging/
H A DRemoteJITUtils.cpp68 Expected<std::pair<std::unique_ptr<SimpleRemoteEPC>, uint64_t>>
76 Expected<std::unique_ptr<SimpleRemoteEPC>>
85 Expected<std::pair<std::unique_ptr<SimpleRemoteEPC>, uint64_t>>
141 auto EPC = SimpleRemoteEPC::Create<FDSimpleRemoteEPCTransport>( in launchLocalExecutor()
143 SimpleRemoteEPC::Setup(), in launchLocalExecutor()
190 Expected<std::unique_ptr<SimpleRemoteEPC>>
213 return SimpleRemoteEPC::Create<FDSimpleRemoteEPCTransport>( in connectTCPSocket()
215 SimpleRemoteEPC::Setup(), *SockFD); in connectTCPSocket()
H A DRemoteJITUtils.h30 llvm::Expected<std::pair<std::unique_ptr<llvm::orc::SimpleRemoteEPC>, uint64_t>>
36 llvm::Expected<std::unique_ptr<llvm::orc::SimpleRemoteEPC>>
H A DLLJITWithRemoteDebugging.cpp147 std::unique_ptr<SimpleRemoteEPC> EPC; in main()
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc/
H A DBUILD.gn50 "SimpleRemoteEPC.cpp",
/llvm-project-15.0.7/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp882 return SimpleRemoteEPC::Create<FDSimpleRemoteEPCTransport>( in launchExecutor()
884 SimpleRemoteEPC::Setup(), FromExecutor[ReadEnd], ToExecutor[WriteEnd]); in launchExecutor()
968 return SimpleRemoteEPC::Create<FDSimpleRemoteEPCTransport>( in connectToExecutor()
970 SimpleRemoteEPC::Setup(), *SockFD, *SockFD); in connectToExecutor()
/llvm-project-15.0.7/llvm/tools/lli/
H A Dlli.cpp1235 return orc::SimpleRemoteEPC::Create<orc::FDSimpleRemoteEPCTransport>( in launchRemote()
1237 llvm::orc::SimpleRemoteEPC::Setup(), PipeFD[1][0], PipeFD[0][1]); in launchRemote()