reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/ExecutionEngine/Orc/OrcError.h
   41 std::error_code orcError(OrcErrorCode ErrCode);
include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
   40     return orcError(OrcErrorCode::UnknownResourceHandle);
include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
  137         return errorCodeToError(orcError(OrcErrorCode::RemoteMProtectAddrUnrecognized));
  210                orcError(OrcErrorCode::RemoteAllocatorIdAlreadyInUse));
  220                orcError(OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse));
  239                orcError(OrcErrorCode::RemoteAllocatorDoesNotExist));
  249                orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist));
  263                orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist));
  381                orcError(OrcErrorCode::RemoteAllocatorDoesNotExist));
  402                orcError(OrcErrorCode::RemoteAllocatorDoesNotExist));
include/llvm/ExecutionEngine/Orc/RPCSerialization.h
  471                                     OrcErrorCode::UnknownErrorCodeFromRemote));
  644                                        orcError(OrcErrorCode::UnknownORCError));
  692                                        orcError(OrcErrorCode::UnknownORCError));
include/llvm/ExecutionEngine/Orc/RPCUtils.h
   67     return orcError(OrcErrorCode::UnexpectedRPCCall);
  100     return orcError(OrcErrorCode::UnexpectedRPCCall);
lib/ExecutionEngine/Orc/Core.cpp
  258   return orcError(OrcErrorCode::UnknownORCError);
  271   return orcError(OrcErrorCode::UnknownORCError);
  284   return orcError(OrcErrorCode::UnknownORCError);
lib/ExecutionEngine/Orc/OrcError.cpp
   31     case OrcErrorCode::UnknownORCError:
   33     case OrcErrorCode::DuplicateDefinition:
   35     case OrcErrorCode::JITSymbolNotFound:
   37     case OrcErrorCode::RemoteAllocatorDoesNotExist:
   39     case OrcErrorCode::RemoteAllocatorIdAlreadyInUse:
   41     case OrcErrorCode::RemoteMProtectAddrUnrecognized:
   43     case OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist:
   45     case OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse:
   47     case OrcErrorCode::RPCConnectionClosed:
   49     case OrcErrorCode::RPCCouldNotNegotiateFunction:
   51     case OrcErrorCode::RPCResponseAbandoned:
   53     case OrcErrorCode::UnexpectedRPCCall:
   55     case OrcErrorCode::UnexpectedRPCResponse:
   57     case OrcErrorCode::UnknownErrorCodeFromRemote:
   60     case OrcErrorCode::UnknownResourceHandle:
   76 std::error_code orcError(OrcErrorCode ErrCode) {
   77   typedef std::underlying_type<OrcErrorCode>::type UT;
   86   return orcError(OrcErrorCode::DuplicateDefinition);
  101   typedef std::underlying_type<OrcErrorCode>::type UT;
  102   return std::error_code(static_cast<UT>(OrcErrorCode::JITSymbolNotFound),
lib/ExecutionEngine/Orc/RPCUtils.cpp
   25   return orcError(OrcErrorCode::RPCConnectionClosed);
   33   return orcError(OrcErrorCode::RPCResponseAbandoned);
   44   return orcError(OrcErrorCode::RPCCouldNotNegotiateFunction);
unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
   60     return orcError(OrcErrorCode::RemoteAllocatorDoesNotExist);