mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This patch introduces RemoteObjectClientLayer and RemoteObjectServerLayer, which can be used to forward ORC object-layer operations from a JIT stack in the client to a JIT stack (consisting only of object-layers) in the server. This is a new way to support remote-JITing in LLVM. The previous approach (supported by OrcRemoteTargetClient and OrcRemoteTargetServer) used a remote-mapping memory manager that sat "beneath" the JIT stack and sent fully-relocated binary blobs to the server. The main advantage of the new approach is that relocatable objects can be cached on the server and re-used (if the code that they represent hasn't changed), whereas fully-relocated blobs can not (since the addresses they have been permanently bound to will change from run to run). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@312511 91177308-0d34-0410-b5e6-96231b3b80d8
58 lines
1.5 KiB
C++
58 lines
1.5 KiB
C++
//===------ OrcError.h - Reject symbol lookup requests ------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Define an error category, error codes, and helper utilities for Orc.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
|
|
#define LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
|
|
|
|
#include "llvm/Support/Error.h"
|
|
#include <system_error>
|
|
|
|
namespace llvm {
|
|
namespace orc {
|
|
|
|
enum class OrcErrorCode : int {
|
|
// RPC Errors
|
|
JITSymbolNotFound = 1,
|
|
RemoteAllocatorDoesNotExist,
|
|
RemoteAllocatorIdAlreadyInUse,
|
|
RemoteMProtectAddrUnrecognized,
|
|
RemoteIndirectStubsOwnerDoesNotExist,
|
|
RemoteIndirectStubsOwnerIdAlreadyInUse,
|
|
RPCConnectionClosed,
|
|
RPCCouldNotNegotiateFunction,
|
|
RPCResponseAbandoned,
|
|
UnexpectedRPCCall,
|
|
UnexpectedRPCResponse,
|
|
UnknownErrorCodeFromRemote,
|
|
UnknownResourceHandle
|
|
};
|
|
|
|
std::error_code orcError(OrcErrorCode ErrCode);
|
|
|
|
class JITSymbolNotFound : public ErrorInfo<JITSymbolNotFound> {
|
|
public:
|
|
static char ID;
|
|
|
|
JITSymbolNotFound(std::string SymbolName);
|
|
std::error_code convertToErrorCode() const override;
|
|
void log(raw_ostream &OS) const override;
|
|
const std::string &getSymbolName() const;
|
|
private:
|
|
std::string SymbolName;
|
|
};
|
|
|
|
} // End namespace orc.
|
|
} // End namespace llvm.
|
|
|
|
#endif // LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
|