1 //===------ OrcError.h - Reject symbol lookup requests ------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Define an error category, error codes, and helper utilities for Orc.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
14 #define LLVM_EXECUTIONENGINE_ORC_ORCERROR_H
16 #include "llvm/Support/Error.h"
17 #include <system_error>
22 enum class OrcErrorCode
: int {
27 RemoteAllocatorDoesNotExist
,
28 RemoteAllocatorIdAlreadyInUse
,
29 RemoteMProtectAddrUnrecognized
,
30 RemoteIndirectStubsOwnerDoesNotExist
,
31 RemoteIndirectStubsOwnerIdAlreadyInUse
,
33 RPCCouldNotNegotiateFunction
,
36 UnexpectedRPCResponse
,
37 UnknownErrorCodeFromRemote
,
41 std::error_code
orcError(OrcErrorCode ErrCode
);
43 class DuplicateDefinition
: public ErrorInfo
<DuplicateDefinition
> {
47 DuplicateDefinition(std::string SymbolName
);
48 std::error_code
convertToErrorCode() const override
;
49 void log(raw_ostream
&OS
) const override
;
50 const std::string
&getSymbolName() const;
52 std::string SymbolName
;
55 class JITSymbolNotFound
: public ErrorInfo
<JITSymbolNotFound
> {
59 JITSymbolNotFound(std::string SymbolName
);
60 std::error_code
convertToErrorCode() const override
;
61 void log(raw_ostream
&OS
) const override
;
62 const std::string
&getSymbolName() const;
64 std::string SymbolName
;
67 } // End namespace orc.
68 } // End namespace llvm.
70 #endif // LLVM_EXECUTIONENGINE_ORC_ORCERROR_H