Home
last modified time | relevance | path

Searched refs:FDRPCChannel (Results 1 – 10 of 10) sorted by relevance

/external/llvm/tools/lli/
DRemoteJITUtils.h28 class FDRPCChannel final : public llvm::orc::remote::RPCChannel {
30 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRPCChannel() function
75 std::unique_ptr<FDRPCChannel> launchRemote();
Dlli.cpp648 std::unique_ptr<FDRPCChannel> C = launchRemote(); in main()
701 std::unique_ptr<FDRPCChannel> launchRemote() { in launchRemote()
751 return llvm::make_unique<FDRPCChannel>(PipeFD[1][0], PipeFD[0][1]); in launchRemote()
/external/llvm/tools/lli/ChildTarget/
DChildTarget.cpp56 FDRPCChannel Channel(InFD, OutFD); in main()
57 typedef remote::OrcRemoteTargetServer<FDRPCChannel, HostOrcArch> JITServer; in main()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DRemoteJITUtils.h28 class FDRPCChannel final : public llvm::orc::remote::RPCChannel {
30 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRPCChannel() function
DKaleidoscopeJIT.h68 typedef remote::OrcRemoteTargetClient<FDRPCChannel> MyRemote;
Dtoy.cpp1222 std::unique_ptr<FDRPCChannel> connect() { in connect()
1242 return llvm::make_unique<FDRPCChannel>(sockfd, sockfd); in connect()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
DRemoteJITUtils.h30 class FDRPCChannel final : public llvm::orc::rpc::RawByteChannel {
32 FDRPCChannel(int InFD, int OutFD) : InFD(InFD), OutFD(OutFD) {} in FDRPCChannel() function
Dtoy.cpp1234 std::unique_ptr<FDRPCChannel> connect() { in connect()
1256 return llvm::make_unique<FDRPCChannel>(sockfd, sockfd); in connect()
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/
Dserver.cpp101 FDRPCChannel TCPChannel(newsockfd, newsockfd); in main()
103 using MyServerT = remote::OrcRemoteTargetServer<FDRPCChannel, OrcX86_64_SysV>; in main()
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/
Dserver.cpp100 FDRPCChannel TCPChannel(newsockfd, newsockfd); in main()
101 typedef remote::OrcRemoteTargetServer<FDRPCChannel, OrcX86_64_SysV> MyServerT; in main()