Home
last modified time | relevance | path

Searched refs:OrcErrorCode (Results 1 – 14 of 14) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Orc/
DOrcError.cpp31 switch (static_cast<OrcErrorCode>(condition)) { in message()
32 case OrcErrorCode::UnknownORCError: in message()
34 case OrcErrorCode::DuplicateDefinition: in message()
36 case OrcErrorCode::JITSymbolNotFound: in message()
38 case OrcErrorCode::RemoteAllocatorDoesNotExist: in message()
40 case OrcErrorCode::RemoteAllocatorIdAlreadyInUse: in message()
42 case OrcErrorCode::RemoteMProtectAddrUnrecognized: in message()
44 case OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist: in message()
46 case OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse: in message()
48 case OrcErrorCode::RPCConnectionClosed: in message()
[all …]
DRPCUtils.cpp26 return orcError(OrcErrorCode::RPCConnectionClosed); in convertToErrorCode()
34 return orcError(OrcErrorCode::RPCResponseAbandoned); in convertToErrorCode()
45 return orcError(OrcErrorCode::RPCCouldNotNegotiateFunction); in convertToErrorCode()
DCore.cpp125 return orcError(OrcErrorCode::UnknownORCError); in convertToErrorCode()
138 return orcError(OrcErrorCode::UnknownORCError); in convertToErrorCode()
/external/llvm/lib/ExecutionEngine/Orc/
DOrcError.cpp31 switch (static_cast<OrcErrorCode>(condition)) { in message()
32 case OrcErrorCode::RemoteAllocatorDoesNotExist: in message()
34 case OrcErrorCode::RemoteAllocatorIdAlreadyInUse: in message()
36 case OrcErrorCode::RemoteMProtectAddrUnrecognized: in message()
38 case OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist: in message()
40 case OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse: in message()
42 case OrcErrorCode::UnexpectedRPCCall: in message()
44 case OrcErrorCode::UnexpectedRPCResponse: in message()
57 Error orcError(OrcErrorCode ErrCode) { in orcError()
58 typedef std::underlying_type<OrcErrorCode>::type UT; in orcError()
/external/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h115 return orcError(OrcErrorCode::UnexpectedRPCCall); in handleKnownFunction()
163 return orcError(OrcErrorCode::RemoteMProtectAddrUnrecognized); in setProtections()
229 return orcError(OrcErrorCode::RemoteAllocatorIdAlreadyInUse); in handleCreateRemoteAllocator()
238 return orcError(OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse); in handleCreateIndirectStubsOwner()
255 return orcError(OrcErrorCode::RemoteAllocatorDoesNotExist); in handleDestroyRemoteAllocator()
264 return orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist); in handleDestroyIndirectStubsOwner()
277 return orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist); in handleEmitIndirectStubs()
391 return orcError(OrcErrorCode::RemoteAllocatorDoesNotExist); in handleReserveMem()
410 return orcError(OrcErrorCode::RemoteAllocatorDoesNotExist); in handleSetProtections()
DOrcError.h23 enum class OrcErrorCode : int { enum
34 Error orcError(OrcErrorCode ErrCode);
DRPCUtils.h512 return orcError(OrcErrorCode::UnexpectedRPCCall); in expect()
557 return orcError(OrcErrorCode::UnexpectedRPCResponse);
598 return orcError(OrcErrorCode::UnexpectedRPCCall); in handleNone()
DOrcRemoteTargetClient.h760 return orcError(OrcErrorCode::UnexpectedRPCCall); in listenForCompileRequests()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ExecutionEngine/Orc/
DOrcRemoteTargetServer.h138 return errorCodeToError(orcError(OrcErrorCode::RemoteMProtectAddrUnrecognized)); in setProtections()
211 orcError(OrcErrorCode::RemoteAllocatorIdAlreadyInUse)); in handleCreateRemoteAllocator()
221 orcError(OrcErrorCode::RemoteIndirectStubsOwnerIdAlreadyInUse)); in handleCreateIndirectStubsOwner()
240 orcError(OrcErrorCode::RemoteAllocatorDoesNotExist)); in handleDestroyRemoteAllocator()
250 orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist)); in handleDestroyIndirectStubsOwner()
264 orcError(OrcErrorCode::RemoteIndirectStubsOwnerDoesNotExist)); in handleEmitIndirectStubs()
382 orcError(OrcErrorCode::RemoteAllocatorDoesNotExist)); in handleReserveMem()
403 orcError(OrcErrorCode::RemoteAllocatorDoesNotExist)); in handleSetProtections()
DOrcError.h23 enum class OrcErrorCode : int { enum
42 std::error_code orcError(OrcErrorCode ErrCode);
DRPCSerialization.h510 OrcErrorCode::UnknownErrorCodeFromRemote)); in registerStringError()
683 orcError(OrcErrorCode::UnknownORCError)); in deserialize()
731 orcError(OrcErrorCode::UnknownORCError)); in deserialize()
DOrcRemoteTargetRPCAPI.h41 return orcError(OrcErrorCode::UnknownResourceHandle); in convertToErrorCode()
DRPCUtils.h67 return orcError(OrcErrorCode::UnexpectedRPCCall); in convertToErrorCode()
100 return orcError(OrcErrorCode::UnexpectedRPCCall); in convertToErrorCode()
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ExecutionEngine/Orc/
DRPCUtilsTest.cpp61 return orcError(OrcErrorCode::RemoteAllocatorDoesNotExist); in convertToErrorCode()