2014-01-23 22:19:45 +00:00
|
|
|
//===---------- RPCChannel.h - LLVM out-of-process JIT execution ----------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Definition of the RemoteTargetExternal class which executes JITed code in a
|
|
|
|
// separate process from where it was built.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_TOOLS_LLI_RPCCHANNEL_H
|
|
|
|
#define LLVM_TOOLS_LLI_RPCCHANNEL_H
|
2014-01-23 22:19:45 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class RPCChannel {
|
|
|
|
public:
|
|
|
|
std::string ChildName;
|
|
|
|
|
|
|
|
RPCChannel() {}
|
|
|
|
~RPCChannel();
|
|
|
|
|
|
|
|
/// Start the remote process.
|
|
|
|
///
|
|
|
|
/// @returns True on success. On failure, ErrorMsg is updated with
|
|
|
|
/// descriptive text of the encountered error.
|
|
|
|
bool createServer();
|
|
|
|
|
|
|
|
bool createClient();
|
|
|
|
|
|
|
|
// This will get filled in as a point to an OS-specific structure.
|
|
|
|
void *ConnectionData;
|
|
|
|
|
2014-01-24 17:18:52 +00:00
|
|
|
bool WriteBytes(const void *Data, size_t Size);
|
|
|
|
bool ReadBytes(void *Data, size_t Size);
|
2014-01-23 22:19:45 +00:00
|
|
|
|
|
|
|
void Wait();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|