LLVM 19.0.0git
Namespaces | Functions
Error.cpp File Reference
#include "llvm/Support/Error.h"
#include "llvm/ADT/SmallVector.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/ADT/Twine.h"
#include "llvm/Support/ErrorHandling.h"
#include <system_error>
#include "llvm/Testing/Support/Error.h"

Go to the source code of this file.

Namespaces

namespace  llvm
 This is an optimization pass for GlobalISel generic memory operations.
 

Functions

ErrorErrorCategory & getErrorErrorCat ()
 
void llvm::logAllUnhandledErrors (Error E, raw_ostream &OS, Twine ErrorBanner={})
 Log all errors (if any) in E to OS.
 
std::string llvm::toString (Error E)
 Write all error messages (if any) in E to a string.
 
std::error_code llvm::inconvertibleErrorCode ()
 The value returned by this function can be returned from convertToErrorCode for Error values where no sensible translation to std::error_code exists.
 
Error llvm::errorCodeToError (std::error_code EC)
 Helper for converting an std::error_code to a Error.
 
std::error_code llvm::errorToErrorCode (Error Err)
 Helper for converting an ECError to a std::error_code.
 
Error llvm::createStringError (std::error_code EC, char const *Msg)
 
void llvm::report_fatal_error (Error Err, bool gen_crash_diag=true)
 Report a serious error, calling any installed error handler.
 
LLVMErrorTypeId LLVMGetErrorTypeId (LLVMErrorRef Err)
 Returns the type id for the given error instance, which must be a failure value (i.e.
 
void LLVMConsumeError (LLVMErrorRef Err)
 Dispose of the given error without handling it.
 
charLLVMGetErrorMessage (LLVMErrorRef Err)
 Returns the given string's error message.
 
void LLVMDisposeErrorMessage (char *ErrMsg)
 Dispose of the given error message.
 
LLVMErrorTypeId LLVMGetStringErrorTypeId ()
 Returns the type id for llvm StringError.
 
LLVMErrorRef LLVMCreateStringError (const char *ErrMsg)
 Create a StringError.
 

Function Documentation

◆ getErrorErrorCat()

ErrorErrorCategory & getErrorErrorCat ( )

Definition at line 50 of file Error.cpp.