mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
This replaces use of std::error_code and ErrorOr in the ORC RPC support library with Error and Expected. This required updating the OrcRemoteTarget API, Client, and server code, as well as updating the Orc C API. This patch also fixes several instances where Errors were dropped. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@267457 91177308-0d34-0410-b5e6-96231b3b80d8
40 lines
1.1 KiB
C++
40 lines
1.1 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
|
|
RemoteAllocatorDoesNotExist = 1,
|
|
RemoteAllocatorIdAlreadyInUse,
|
|
RemoteMProtectAddrUnrecognized,
|
|
RemoteIndirectStubsOwnerDoesNotExist,
|
|
RemoteIndirectStubsOwnerIdAlreadyInUse,
|
|
UnexpectedRPCCall,
|
|
UnexpectedRPCResponse,
|
|
};
|
|
|
|
Error orcError(OrcErrorCode ErrCode);
|
|
|
|
} // End namespace orc.
|
|
} // End namespace llvm.
|
|
|
|
#endif // LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
|