LLVM
8.0.1
|
Crash recovery helper object. More...
#include "llvm/Support/CrashRecoveryContext.h"
Public Member Functions | |
CrashRecoveryContext () | |
~CrashRecoveryContext () | |
void | registerCleanup (CrashRecoveryContextCleanup *cleanup) |
Register cleanup handler, which is used when the recovery context is finished. More... | |
void | unregisterCleanup (CrashRecoveryContextCleanup *cleanup) |
bool | RunSafely (function_ref< void()> Fn) |
Execute the provided callback function (with the given arguments) in a protected context. More... | |
bool | RunSafely (void(*Fn)(void *), void *UserData) |
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). More... | |
bool | RunSafelyOnThread (void(*Fn)(void *), void *UserData, unsigned RequestedStackSize=0) |
void | HandleCrash () |
Explicitly trigger a crash recovery in the current process, and return failure from RunSafely(). More... | |
Static Public Member Functions | |
static void | Enable () |
Enable crash recovery. More... | |
static void | Disable () |
Disable crash recovery. More... | |
static CrashRecoveryContext * | GetCurrent () |
Return the active context, if the code is currently executing in a thread which is in a protected context. More... | |
static bool | isRecoveringFromCrash () |
Return true if the current thread is recovering from a crash. More... | |
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.
|
inline |
Definition at line 52 of file CrashRecoveryContext.h.
References cleanup(), Disable(), Enable(), GetCurrent(), isRecoveringFromCrash(), registerCleanup(), RunSafely(), unregisterCleanup(), and ~CrashRecoveryContext().
CrashRecoveryContext::~CrashRecoveryContext | ( | ) |
Definition at line 86 of file CrashRecoveryContext.cpp.
References llvm::CrashRecoveryContextCleanup::cleanupFired, llvm::CrashRecoveryContextCleanup::recoverResources(), and tlIsRecoveringFromCrash.
Referenced by CrashRecoveryContext().
|
static |
Disable crash recovery.
Definition at line 128 of file CrashRecoveryContext.cpp.
References uninstallExceptionOrSignalHandlers().
Referenced by CrashRecoveryContext(), CrashRecoverySignalHandler(), and unregisterCleanup().
|
static |
Enable crash recovery.
Definition at line 119 of file CrashRecoveryContext.cpp.
References installExceptionOrSignalHandlers().
Referenced by CrashRecoveryContext().
|
static |
Return the active context, if the code is currently executing in a thread which is in a protected context.
Definition at line 108 of file CrashRecoveryContext.cpp.
Referenced by CrashRecoveryContext(), and llvm::CrashRecoveryContextCleanupBase< CrashRecoveryContextDestructorCleanup< T >, T >::create().
void CrashRecoveryContext::HandleCrash | ( | ) |
Explicitly trigger a crash recovery in the current process, and return failure from RunSafely().
This function does not return.
Definition at line 365 of file CrashRecoveryContext.cpp.
References assert().
Referenced by RunSafelyOnThread().
|
static |
Return true if the current thread is recovering from a crash.
Definition at line 104 of file CrashRecoveryContext.cpp.
References tlIsRecoveringFromCrash.
Referenced by CrashRecoveryContext().
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 136 of file CrashRecoveryContext.cpp.
References cleanup().
Referenced by CrashRecoveryContext(), and llvm::CrashRecoveryContextCleanupRegistrar< T, Cleanup >::CrashRecoveryContextCleanupRegistrar().
bool CrashRecoveryContext::RunSafely | ( | function_ref< void()> | Fn | ) |
Execute the provided callback function (with the given arguments) in a protected context.
Definition at line 347 of file CrashRecoveryContext.cpp.
References assert(), and llvm::Intrinsic::setjmp.
Referenced by CrashRecoveryContext(), RunSafely(), and unregisterCleanup().
|
inline |
Definition at line 83 of file CrashRecoveryContext.h.
References 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() and llvm_execute_on_thread().
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 404 of file CrashRecoveryContext.cpp.
References hasThreadBackgroundPriority(), Info, llvm::llvm_execute_on_thread(), and RunSafelyOnThread_Dispatch().
Referenced by RunSafely(), and RunSafelyOnThread().
|
inline |
Definition at line 96 of file CrashRecoveryContext.h.
References HandleCrash(), and RunSafelyOnThread().
void CrashRecoveryContext::unregisterCleanup | ( | CrashRecoveryContextCleanup * | cleanup | ) |
Definition at line 147 of file CrashRecoveryContext.cpp.
References cleanup(), Disable(), llvm::sys::ThreadLocal< T >::get(), installExceptionOrSignalHandlers(), llvm_unreachable, RunSafely(), llvm::sys::ThreadLocal< T >::set(), and uninstallExceptionOrSignalHandlers().
Referenced by CrashRecoveryContext(), and llvm::CrashRecoveryContextCleanupRegistrar< T, Cleanup >::unregister().