summaryrefslogtreecommitdiff
path: root/tools/lli/Windows/RemoteTargetExternal.inc
blob: 0a4dba664d7978d21d68e039a4138f4a8e9ddb6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//= RemoteTargetExternal.inc - LLVM out-of-process JIT execution for Windows =//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// Definition of the Windows-specific parts of the RemoteTargetExternal class
// which is meant to execute JITed code in a separate process from where it was
// built.  To support this functionality on Windows, implement these functions.
//
//===----------------------------------------------------------------------===//

namespace llvm {

bool RemoteTargetExternal::create() {
  return false;
}

bool RemoteTargetExternal::WriteBytes(const void *Data, size_t Size) {
  return false;
}

bool RemoteTargetExternal::ReadBytes(void *Data, size_t Size) {
  return false;
}

void RemoteTargetExternal::Wait() {
}

RemoteTargetExternal::~RemoteTargetExternal() {
}

} // namespace llvm