LLVM 22.0.0git
|
Crash recovery helper object. More...
#include "llvm/Support/CrashRecoveryContext.h"
Public Member Functions | |
LLVM_ABI | CrashRecoveryContext () |
LLVM_ABI | ~CrashRecoveryContext () |
LLVM_ABI void | registerCleanup (CrashRecoveryContextCleanup *cleanup) |
Register cleanup handler, which is used when the recovery context is finished. | |
LLVM_ABI void | unregisterCleanup (CrashRecoveryContextCleanup *cleanup) |
LLVM_ABI bool | RunSafely (function_ref< void()> Fn) |
Execute the provided callback function (with the given arguments) in a protected context. | |
bool | RunSafely (void(*Fn)(void *), void *UserData) |
LLVM_ABI bool | RunSafelyOnThread (function_ref< void()>, unsigned RequestedStackSize=0) |
Execute the provide callback function (with the given arguments) in a protected context which is run in another thread (optionally with a requested stack size). | |
bool | RunSafelyOnThread (void(*Fn)(void *), void *UserData, unsigned RequestedStackSize=0) |
LLVM_ABI bool | RunSafelyOnNewStack (function_ref< void()>, unsigned RequestedStackSize=0) |
LLVM_ABI void | HandleExit (int RetCode) |
Explicitly trigger a crash recovery in the current process, and return failure from RunSafely(). |
Static Public Member Functions | |
static LLVM_ABI void | Enable () |
Enable crash recovery. | |
static LLVM_ABI void | Disable () |
Disable crash recovery. | |
static LLVM_ABI CrashRecoveryContext * | GetCurrent () |
Return the active context, if the code is currently executing in a thread which is in a protected context. | |
static LLVM_ABI bool | isRecoveringFromCrash () |
Return true if the current thread is recovering from a crash. | |
static LLVM_ABI bool | isCrash (int RetCode) |
Return true if RetCode indicates that a signal or an exception occurred. | |
static LLVM_ABI bool | throwIfCrash (int RetCode) |
Throw again a signal or an exception, after it was catched once by a CrashRecoveryContext. |
Public Attributes | |
int | RetCode = 0 |
In case of a crash, this is the crash identifier. | |
bool | DumpStackAndCleanupOnFailure = false |
Selects whether handling of failures should be done in the same way as for regular crashes. |
Crash recovery helper object.
This class implements support for running operations in a safe context so that crashes (memory errors, stack overflow, assertion violations) can be detected and control restored to the crashing thread. Crash detection is purely "best effort", the exact set of failures which can be recovered from is platform dependent.
Clients make use of this code by first calling CrashRecoveryContext::Enable(), and then executing unsafe operations via a CrashRecoveryContext object. For example:
To assist recovery the class allows specifying set of actions that will be executed in any case, whether crash occurs or not. These actions may be used to reclaim resources in the case of crash.
Definition at line 47 of file CrashRecoveryContext.h.
CrashRecoveryContext::CrashRecoveryContext | ( | ) |
Definition at line 100 of file CrashRecoveryContext.cpp.
References llvm::sys::DisableSystemDialogsOnCrash().
Referenced by GetCurrent(), and ~CrashRecoveryContext().
CrashRecoveryContext::~CrashRecoveryContext | ( | ) |
Definition at line 107 of file CrashRecoveryContext.cpp.
References llvm::CrashRecoveryContextCleanup::cleanupFired, CrashRecoveryContext(), and llvm::CrashRecoveryContextCleanup::recoverResources().
|
static |
Disable crash recovery.
Definition at line 149 of file CrashRecoveryContext.cpp.
References uninstallExceptionOrSignalHandlers().
Referenced by CrashRecoverySignalHandler().
|
static |
Enable crash recovery.
Definition at line 140 of file CrashRecoveryContext.cpp.
References installExceptionOrSignalHandlers().
|
static |
Return the active context, if the code is currently executing in a thread which is in a protected context.
Definition at line 129 of file CrashRecoveryContext.cpp.
References CrashRecoveryContext().
Referenced by llvm::CrashRecoveryContextCleanupBase< Derived, T >::create(), and llvm::sys::Process::Exit().
void CrashRecoveryContext::HandleExit | ( | int | RetCode | ) |
Explicitly trigger a crash recovery in the current process, and return failure from RunSafely().
This function does not return.
Definition at line 432 of file CrashRecoveryContext.cpp.
References assert(), llvm_unreachable, and RetCode.
|
static |
Return true if RetCode indicates that a signal or an exception occurred.
Definition at line 449 of file CrashRecoveryContext.cpp.
References RetCode.
Referenced by throwIfCrash().
|
static |
Return true if the current thread is recovering from a crash.
Definition at line 125 of file CrashRecoveryContext.cpp.
void CrashRecoveryContext::registerCleanup | ( | CrashRecoveryContextCleanup * | cleanup | ) |
Register cleanup handler, which is used when the recovery context is finished.
The recovery context owns the handler.
Definition at line 157 of file CrashRecoveryContext.cpp.
References cleanup().
bool CrashRecoveryContext::RunSafely | ( | function_ref< void()> | Fn | ) |
Execute the provided callback function (with the given arguments) in a protected context.
Definition at line 413 of file CrashRecoveryContext.cpp.
References assert().
Referenced by RunSafely(), and RunSafelyOnNewStack().
|
inline |
Definition at line 83 of file CrashRecoveryContext.h.
References RunSafely().
bool CrashRecoveryContext::RunSafelyOnNewStack | ( | function_ref< void()> | Fn, |
unsigned | RequestedStackSize = 0 ) |
Definition at line 527 of file CrashRecoveryContext.cpp.
References llvm::runOnNewStack(), RunSafely(), and RunSafelyOnThread().
bool CrashRecoveryContext::RunSafelyOnThread | ( | function_ref< void()> | Fn, |
unsigned | RequestedStackSize = 0 ) |
Execute the provide callback function (with the given arguments) in a protected context which is run in another thread (optionally with a requested stack size).
See RunSafely().
On Darwin, if PRIO_DARWIN_BG is set on the calling thread, it will be propagated to the new thread as well.
Definition at line 512 of file CrashRecoveryContext.cpp.
References hasThreadBackgroundPriority(), and RunSafelyOnThread_Dispatch().
Referenced by RunSafelyOnNewStack(), and RunSafelyOnThread().
|
inline |
Definition at line 97 of file CrashRecoveryContext.h.
References RunSafelyOnThread().
|
static |
Throw again a signal or an exception, after it was catched once by a CrashRecoveryContext.
Definition at line 467 of file CrashRecoveryContext.cpp.
References isCrash(), RetCode, and llvm::sys::unregisterHandlers().
void CrashRecoveryContext::unregisterCleanup | ( | CrashRecoveryContextCleanup * | cleanup | ) |
Definition at line 168 of file CrashRecoveryContext.cpp.
References cleanup().
bool llvm::CrashRecoveryContext::DumpStackAndCleanupOnFailure = false |
Selects whether handling of failures should be done in the same way as for regular crashes.
When this is active, a crash would print the callstack, clean-up any temporary files and create a coredump/minidump.
Definition at line 122 of file CrashRecoveryContext.h.
int llvm::CrashRecoveryContext::RetCode = 0 |
In case of a crash, this is the crash identifier.
Definition at line 117 of file CrashRecoveryContext.h.
Referenced by HandleExit(), isCrash(), and throwIfCrash().