LLVM  8.0.1
OrcError.cpp
Go to the documentation of this file.
1 //===---------------- OrcError.cpp - Error codes for ORC ------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Error codes for ORC.
11 //
12 //===----------------------------------------------------------------------===//
13 
17 
18 using namespace llvm;
19 using namespace llvm::orc;
20 
21 namespace {
22 
23 // FIXME: This class is only here to support the transition to llvm::Error. It
24 // will be removed once this transition is complete. Clients should prefer to
25 // deal with the Error value directly, rather than converting to error_code.
26 class OrcErrorCategory : public std::error_category {
27 public:
28  const char *name() const noexcept override { return "orc"; }
29 
30  std::string message(int condition) const override {
31  switch (static_cast<OrcErrorCode>(condition)) {
33  return "Unknown ORC error";
35  return "Duplicate symbol definition";
37  return "JIT symbol not found";
39  return "Remote allocator does not exist";
41  return "Remote allocator Id already in use";
43  return "Remote mprotect call references unallocated memory";
45  return "Remote indirect stubs owner does not exist";
47  return "Remote indirect stubs owner Id already in use";
49  return "RPC connection closed";
51  return "Could not negotiate RPC function";
53  return "RPC response abandoned";
55  return "Unexpected RPC call";
57  return "Unexpected RPC response";
59  return "Unknown error returned from remote RPC function "
60  "(Use StringError to get error message)";
62  return "Unknown resource handle";
63  }
64  llvm_unreachable("Unhandled error code");
65  }
66 };
67 
68 static ManagedStatic<OrcErrorCategory> OrcErrCat;
69 }
70 
71 namespace llvm {
72 namespace orc {
73 
75 char JITSymbolNotFound::ID = 0;
76 
77 std::error_code orcError(OrcErrorCode ErrCode) {
78  typedef std::underlying_type<OrcErrorCode>::type UT;
79  return std::error_code(static_cast<UT>(ErrCode), *OrcErrCat);
80 }
81 
82 
84  : SymbolName(std::move(SymbolName)) {}
85 
86 std::error_code DuplicateDefinition::convertToErrorCode() const {
88 }
89 
91  OS << "Duplicate definition of symbol '" << SymbolName << "'";
92 }
93 
94 const std::string &DuplicateDefinition::getSymbolName() const {
95  return SymbolName;
96 }
97 
98 JITSymbolNotFound::JITSymbolNotFound(std::string SymbolName)
99  : SymbolName(std::move(SymbolName)) {}
100 
101 std::error_code JITSymbolNotFound::convertToErrorCode() const {
102  typedef std::underlying_type<OrcErrorCode>::type UT;
103  return std::error_code(static_cast<UT>(OrcErrorCode::JITSymbolNotFound),
104  *OrcErrCat);
105 }
106 
108  OS << "Could not find symbol '" << SymbolName << "'";
109 }
110 
111 const std::string &JITSymbolNotFound::getSymbolName() const {
112  return SymbolName;
113 }
114 
115 }
116 }
DuplicateDefinition(std::string SymbolName)
Definition: OrcError.cpp:83
This class represents lattice values for constants.
Definition: AllocatorList.h:24
const std::string & getSymbolName() const
Definition: OrcError.cpp:111
void log(raw_ostream &OS) const override
Print an error message to an output stream.
Definition: OrcError.cpp:90
Definition: BitVector.h:938
constexpr char SymbolName[]
Key for Kernel::Metadata::mSymbolName.
std::error_code orcError(OrcErrorCode ErrCode)
Definition: OrcError.cpp:77
const std::string & getSymbolName() const
Definition: OrcError.cpp:94
std::error_code convertToErrorCode() const override
Convert this error to a std::error_code.
Definition: OrcError.cpp:86
void log(raw_ostream &OS) const override
Print an error message to an output stream.
Definition: OrcError.cpp:107
static ManagedStatic< _object_error_category > error_category
Definition: Error.cpp:75
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
OrcErrorCode
Definition: OrcError.h:23
JITSymbolNotFound(std::string SymbolName)
Definition: OrcError.cpp:98
std::error_code convertToErrorCode() const override
Convert this error to a std::error_code.
Definition: OrcError.cpp:101
aarch64 promote const
static const char * name
This class implements an extremely fast bulk output stream that can only output to a stream...
Definition: raw_ostream.h:46
ManagedStatic - This transparently changes the behavior of global statics to be lazily constructed on...
Definition: ManagedStatic.h:61