#include <exception>
#include "abort_message.h"
#include "cxxabi.h"
#include "cxa_handlers.h"
#include "cxa_exception.h"
#include "private_typeinfo.h"
#include "include/atomic_support.h"
#if !defined(LIBCXXABI_SILENT_TERMINATE)
static constinit const char* cause = "uncaught";
# ifndef _LIBCXXABI_NO_EXCEPTIONS
__attribute__((noreturn))
static void demangling_terminate_handler()
{
using namespace __cxxabiv1;
__cxa_eh_globals* globals = __cxa_get_globals_fast();
if (!globals)
abort_message("terminating");
__cxa_exception* exception_header = globals->caughtExceptions;
if (!exception_header)
abort_message("terminating");
_Unwind_Exception* unwind_exception =
reinterpret_cast<_Unwind_Exception*>(exception_header + 1) - 1;
if (!__isOurExceptionClass(unwind_exception))
abort_message("terminating due to %s foreign exception", cause);
void* thrown_object =
__getExceptionClass(unwind_exception) == kOurDependentExceptionClass ?
((__cxa_dependent_exception*)exception_header)->primaryException :
exception_header + 1;
const __shim_type_info* thrown_type =
static_cast<const __shim_type_info*>(exception_header->exceptionType);
auto name = [str = thrown_type->name()] {
# ifndef LIBCXXABI_NON_DEMANGLING_TERMINATE
if (const char* result = __cxxabiv1::__cxa_demangle(str, nullptr, nullptr, nullptr))
return result;
# endif
return str;
}();
const __shim_type_info* catch_type =
static_cast<const __shim_type_info*>(&typeid(std::exception));
if (catch_type->can_catch(thrown_type, thrown_object))
{
const std::exception* e = static_cast<const std::exception*>(thrown_object);
abort_message("terminating due to %s exception of type %s: %s", cause, name, e->what());
}
else
{
abort_message("terminating due to %s exception of type %s", cause, name);
}
}
#else
__attribute__((noreturn))
static void demangling_terminate_handler()
{
abort_message("terminating");
}
#endif
__attribute__((noreturn))
static void demangling_unexpected_handler()
{
cause = "unexpected";
std::terminate();
}
static constexpr std::terminate_handler default_terminate_handler = demangling_terminate_handler;
static constexpr std::terminate_handler default_unexpected_handler = demangling_unexpected_handler;
#else
static constexpr std::terminate_handler default_terminate_handler = …;
static constexpr std::terminate_handler default_unexpected_handler = …;
#endif
_LIBCXXABI_DATA_VIS
constinit std::terminate_handler __cxa_terminate_handler = …;
_LIBCXXABI_DATA_VIS
constinit std::unexpected_handler __cxa_unexpected_handler = …;
_LIBCXXABI_DATA_VIS
constinit std::new_handler __cxa_new_handler = …;
namespace std
{
unexpected_handler
set_unexpected(unexpected_handler func) noexcept
{ … }
terminate_handler
set_terminate(terminate_handler func) noexcept
{ … }
new_handler
set_new_handler(new_handler handler) noexcept
{ … }
}