1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 #ifndef _LIBCPP___NEW_EXCEPTIONS_H
10 #define _LIBCPP___NEW_EXCEPTIONS_H
13 #include <__exception/exception.h>
14 #include <__verbose_abort>
16 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
17 # pragma GCC system_header
20 // purposefully not using versioning namespace
22 #if !defined(_LIBCPP_ABI_VCRUNTIME)
24 class _LIBCPP_EXPORTED_FROM_ABI bad_alloc
: public exception
{
26 bad_alloc() _NOEXCEPT
;
27 _LIBCPP_HIDE_FROM_ABI
bad_alloc(const bad_alloc
&) _NOEXCEPT
= default;
28 _LIBCPP_HIDE_FROM_ABI bad_alloc
& operator=(const bad_alloc
&) _NOEXCEPT
= default;
29 ~bad_alloc() _NOEXCEPT override
;
30 const char* what() const _NOEXCEPT override
;
33 class _LIBCPP_EXPORTED_FROM_ABI bad_array_new_length
: public bad_alloc
{
35 bad_array_new_length() _NOEXCEPT
;
36 _LIBCPP_HIDE_FROM_ABI
bad_array_new_length(const bad_array_new_length
&) _NOEXCEPT
= default;
37 _LIBCPP_HIDE_FROM_ABI bad_array_new_length
& operator=(const bad_array_new_length
&) _NOEXCEPT
= default;
38 ~bad_array_new_length() _NOEXCEPT override
;
39 const char* what() const _NOEXCEPT override
;
42 #elif defined(_HAS_EXCEPTIONS) && _HAS_EXCEPTIONS == 0 // !_LIBCPP_ABI_VCRUNTIME
44 // When _HAS_EXCEPTIONS == 0, these complete definitions are needed,
45 // since they would normally be provided in vcruntime_exception.h
46 class bad_alloc
: public exception
{
48 bad_alloc() noexcept
: exception("bad allocation") {}
51 friend class bad_array_new_length
;
53 bad_alloc(char const* const __message
) noexcept
: exception(__message
) {}
56 class bad_array_new_length
: public bad_alloc
{
58 bad_array_new_length() noexcept
: bad_alloc("bad array new length") {}
61 #endif // defined(_LIBCPP_ABI_VCRUNTIME) && defined(_HAS_EXCEPTIONS) && _HAS_EXCEPTIONS == 0
63 [[__noreturn__
]] _LIBCPP_EXPORTED_FROM_ABI
void __throw_bad_alloc(); // not in C++ spec
65 [[__noreturn__
]] inline _LIBCPP_HIDE_FROM_ABI
void __throw_bad_array_new_length() {
66 #if _LIBCPP_HAS_EXCEPTIONS
67 throw bad_array_new_length();
69 _LIBCPP_VERBOSE_ABORT("bad_array_new_length was thrown in -fno-exceptions mode");
74 #endif // _LIBCPP___NEW_EXCEPTIONS_H