mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
8b33204f37
* third_party: Add libcxxabi Added libcxxabi from LLVM 17.0.6 The library implements the Itanium C++ exception handling ABI. * third_party/libcxxabi: Enable __cxa_thread_atexit Enable `__cxa_thread_atexit` from libcxxabi. `__cxa_thread_atexit_impl` is still implemented by the cosmo libc. The original `__cxa_thread_atexit` has been removed. * third_party/libcxx: Build with exceptions Build libcxx with exceptions enabled. - Removed `_LIBCPP_NO_EXCEPTIONS` from `__config`. - Switched the exception implementation to `libcxxabi`. These two files are taken from the same `libcxx` version as mentioned in `README.cosmo`. - Removed `new_handler_fallback` in favor of `libcxxabi` implementation. - Enable `-fexceptions` and `-frtti` for `libcxx`. - Removed `THIRD_PARTY_LIBCXX` dependency from `libcxxabi` and `libunwind`. These libraries do not use any runtime `libcxx` functions, just headers. * libc: Remove remaining redundant cxa functions - `__cxa_pure_virtual` in `libcxxabi` is also a stub similar to the existing one. - `__cxa_guard_*` from `libcxxabi` is used instead of the ones from Android. Now there should be no more duplicate implementations. `__cxa_thread_atexit_impl`, `__cxa_atexit`, and related supporting functions, are still left to other libraries as in `libcxxabi`. `libcxxabi` is also now added to `cosmopolitan.a` to make up for the removed functions. Affected in-tree libraries (`third_party/double-conversion`) have been updated.
141 lines
4.9 KiB
C++
141 lines
4.9 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//
|
|
// This file implements the default terminate_handler, unexpected_handler and
|
|
// new_handler.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "third_party/libcxx/exception"
|
|
#include "third_party/libcxx/memory"
|
|
#include "third_party/libcxx/stdlib.h"
|
|
#include "third_party/libcxxabi/abort_message.h"
|
|
#include "third_party/libcxxabi/include/cxxabi.h"
|
|
#include "third_party/libcxxabi/cxa_handlers.h"
|
|
#include "third_party/libcxxabi/cxa_exception.h"
|
|
#include "third_party/libcxxabi/private_typeinfo.h"
|
|
#include "third_party/libcxx/include/atomic_support.hh" // from libc++
|
|
|
|
#if !defined(LIBCXXABI_SILENT_TERMINATE)
|
|
|
|
static constinit const char* cause = "uncaught";
|
|
|
|
#ifndef _LIBCXXABI_NO_EXCEPTIONS
|
|
// Demangle the given string, or return the string as-is in case of an error.
|
|
static std::unique_ptr<char const, void (*)(char const*)> demangle(char const* str)
|
|
{
|
|
#if !defined(LIBCXXABI_NON_DEMANGLING_TERMINATE)
|
|
if (const char* result = __cxxabiv1::__cxa_demangle(str, nullptr, nullptr, nullptr))
|
|
return {result, [](char const* p) { std::free(const_cast<char*>(p)); }};
|
|
#endif
|
|
return {str, [](char const*) { /* nothing to free */ }};
|
|
}
|
|
|
|
__attribute__((noreturn))
|
|
static void demangling_terminate_handler()
|
|
{
|
|
using namespace __cxxabiv1;
|
|
__cxa_eh_globals* globals = __cxa_get_globals_fast();
|
|
|
|
// If there is no uncaught exception, just note that we're terminating
|
|
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 we're terminating due to a foreign exception
|
|
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 = demangle(thrown_type->name());
|
|
// If the uncaught exception can be caught with std::exception&
|
|
const __shim_type_info* catch_type =
|
|
static_cast<const __shim_type_info*>(&typeid(std::exception));
|
|
if (catch_type->can_catch(thrown_type, thrown_object))
|
|
{
|
|
// Include the what() message from the exception
|
|
const std::exception* e = static_cast<const std::exception*>(thrown_object);
|
|
abort_message("terminating due to %s exception of type %s: %s", cause, name.get(), e->what());
|
|
}
|
|
else
|
|
{
|
|
// Else just note that we're terminating due to an exception
|
|
abort_message("terminating due to %s exception of type %s", cause, name.get());
|
|
}
|
|
}
|
|
#else // !_LIBCXXABI_NO_EXCEPTIONS
|
|
__attribute__((noreturn))
|
|
static void demangling_terminate_handler()
|
|
{
|
|
abort_message("terminating");
|
|
}
|
|
#endif // !_LIBCXXABI_NO_EXCEPTIONS
|
|
|
|
__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 // !LIBCXXABI_SILENT_TERMINATE
|
|
static constexpr std::terminate_handler default_terminate_handler = ::abort;
|
|
static constexpr std::terminate_handler default_unexpected_handler = std::terminate;
|
|
#endif // !LIBCXXABI_SILENT_TERMINATE
|
|
|
|
//
|
|
// Global variables that hold the pointers to the current handler
|
|
//
|
|
_LIBCXXABI_DATA_VIS
|
|
constinit std::terminate_handler __cxa_terminate_handler = default_terminate_handler;
|
|
|
|
_LIBCXXABI_DATA_VIS
|
|
constinit std::unexpected_handler __cxa_unexpected_handler = default_unexpected_handler;
|
|
|
|
_LIBCXXABI_DATA_VIS
|
|
constinit std::new_handler __cxa_new_handler = nullptr;
|
|
|
|
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);
|
|
}
|
|
|
|
new_handler
|
|
set_new_handler(new_handler handler) noexcept
|
|
{
|
|
return __libcpp_atomic_exchange(&__cxa_new_handler, handler, _AO_Acq_Rel);
|
|
}
|
|
|
|
}
|