| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <exception> |
| | #include <stdlib.h> |
| | #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) |
| |
|
| | _LIBCUDACXX_SAFE_STATIC |
| | static const char* cause = "uncaught"; |
| |
|
| | __attribute__((noreturn)) |
| | static void demangling_terminate_handler() |
| | { |
| | #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)) |
| | { |
| | 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); |
| | |
| | int status; |
| | char buf[1024]; |
| | size_t len = sizeof(buf); |
| | const char* name = __cxa_demangle(thrown_type->name(), buf, &len, &status); |
| | if (status != 0) |
| | name = thrown_type->name(); |
| | |
| | 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 with %s exception of type %s: %s", |
| | cause, name, e->what()); |
| | } |
| | else |
| | |
| | abort_message("terminating with %s exception of type %s", |
| | cause, name); |
| | } |
| | else |
| | |
| | abort_message("terminating with %s foreign exception", cause); |
| | } |
| | } |
| | #endif |
| | |
| | abort_message("terminating"); |
| | } |
| |
|
| | __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 = ::abort; |
| | static constexpr std::terminate_handler default_unexpected_handler = std::terminate; |
| | #endif |
| |
|
| | |
| | |
| | |
| | _LIBCXXABI_DATA_VIS |
| | _LIBCUDACXX_SAFE_STATIC std::terminate_handler __cxa_terminate_handler = default_terminate_handler; |
| |
|
| | _LIBCXXABI_DATA_VIS |
| | _LIBCUDACXX_SAFE_STATIC std::unexpected_handler __cxa_unexpected_handler = default_unexpected_handler; |
| |
|
| | namespace std |
| | { |
| |
|
| | unexpected_handler |
| | set_unexpected(unexpected_handler func) _NOEXCEPT |
| | { |
| | if (func == 0) |
| | func = default_unexpected_handler; |
| | return __libcpp_atomic_exchange(&__cxa_unexpected_handler, func, |
| | _AO_Acq_Rel); |
| | } |
| |
|
| | terminate_handler |
| | set_terminate(terminate_handler func) _NOEXCEPT |
| | { |
| | if (func == 0) |
| | func = default_terminate_handler; |
| | return __libcpp_atomic_exchange(&__cxa_terminate_handler, func, |
| | _AO_Acq_Rel); |
| | } |
| |
|
| | } |
| |
|