| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <stdexcept> |
| | #include <new> |
| | #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" |
| |
|
| | namespace std |
| | { |
| |
|
| | unexpected_handler |
| | get_unexpected() _NOEXCEPT |
| | { |
| | return __libcpp_atomic_load(&__cxa_unexpected_handler, _AO_Acquire); |
| | } |
| |
|
| | void |
| | __unexpected(unexpected_handler func) |
| | { |
| | func(); |
| | |
| | abort_message("unexpected_handler unexpectedly returned"); |
| | } |
| |
|
| | __attribute__((noreturn)) |
| | void |
| | unexpected() |
| | { |
| | __unexpected(get_unexpected()); |
| | } |
| |
|
| | terminate_handler |
| | get_terminate() _NOEXCEPT |
| | { |
| | return __libcpp_atomic_load(&__cxa_terminate_handler, _AO_Acquire); |
| | } |
| |
|
| | void |
| | __terminate(terminate_handler func) _NOEXCEPT |
| | { |
| | #ifndef _LIBCXXABI_NO_EXCEPTIONS |
| | try |
| | { |
| | #endif |
| | func(); |
| | |
| | abort_message("terminate_handler unexpectedly returned"); |
| | #ifndef _LIBCXXABI_NO_EXCEPTIONS |
| | } |
| | catch (...) |
| | { |
| | |
| | abort_message("terminate_handler unexpectedly threw an exception"); |
| | } |
| | #endif |
| | } |
| |
|
| | __attribute__((noreturn)) |
| | void |
| | terminate() _NOEXCEPT |
| | { |
| | #ifndef _LIBCXXABI_NO_EXCEPTIONS |
| | |
| | using namespace __cxxabiv1; |
| | __cxa_eh_globals* globals = __cxa_get_globals_fast(); |
| | if (globals) |
| | { |
| | __cxa_exception* exception_header = globals->caughtExceptions; |
| | if (exception_header) |
| | { |
| | _Unwind_Exception* unwind_exception = |
| | reinterpret_cast<_Unwind_Exception*>(exception_header + 1) - 1; |
| | if (__isOurExceptionClass(unwind_exception)) |
| | __terminate(exception_header->terminateHandler); |
| | } |
| | } |
| | #endif |
| | __terminate(get_terminate()); |
| | } |
| |
|
| | extern "C" { |
| | new_handler __cxa_new_handler = 0; |
| | } |
| |
|
| | new_handler |
| | set_new_handler(new_handler handler) _NOEXCEPT |
| | { |
| | return __libcpp_atomic_exchange(&__cxa_new_handler, handler, _AO_Acq_Rel); |
| | } |
| |
|
| | new_handler |
| | get_new_handler() _NOEXCEPT |
| | { |
| | return __libcpp_atomic_load(&__cxa_new_handler, _AO_Acquire); |
| | } |
| |
|
| | } |
| |
|