Fix compilation of server.cc on hpux.
[official-gcc.git] / libstdc++-v3 / libsupc++ / eh_globals.cc
blob74e8a454ecc35d013079e8f032173d374789a8db
1 // -*- C++ -*- Manage the thread-local exception globals.
2 // Copyright (C) 2001-2022 Free Software Foundation, Inc.
3 //
4 // This file is part of GCC.
5 //
6 // GCC is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // GCC is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 #include <bits/c++config.h>
26 #include <exception>
27 #include <cstdlib>
28 #include "cxxabi.h"
29 #include "unwind-cxx.h"
30 #include "bits/gthr.h"
32 #if _GLIBCXX_HOSTED
33 using std::free;
34 using std::malloc;
35 #else
36 // In a freestanding environment, these functions may not be
37 // available -- but for now, we assume that they are.
38 extern "C" void *malloc (std::size_t);
39 extern "C" void free(void *);
40 #endif
42 using namespace __cxxabiv1;
44 #if _GLIBCXX_HAVE_TLS
46 namespace
48 abi::__cxa_eh_globals*
49 get_global() _GLIBCXX_NOTHROW
51 static __thread abi::__cxa_eh_globals global;
52 return &global;
54 } // anonymous namespace
56 extern "C" __cxa_eh_globals*
57 __cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
58 { return get_global(); }
60 extern "C" __cxa_eh_globals*
61 __cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
62 { return get_global(); }
65 #else
67 #if __has_cpp_attribute(clang::require_constant_initialization)
68 # define __constinit [[clang::require_constant_initialization]]
69 #endif
71 namespace
73 // Single-threaded fallback buffer.
74 __constinit __cxa_eh_globals eh_globals;
77 #if __GTHREADS
79 static void
80 eh_globals_dtor(void* ptr)
82 if (ptr)
84 __cxa_eh_globals* g = reinterpret_cast<__cxa_eh_globals*>(ptr);
85 __cxa_exception* exn = g->caughtExceptions;
86 __cxa_exception* next;
87 while (exn)
89 next = exn->nextException;
90 _Unwind_DeleteException(&exn->unwindHeader);
91 exn = next;
93 free(ptr);
97 struct __eh_globals_init
99 __gthread_key_t _M_key;
100 static bool _S_init;
102 __eh_globals_init()
104 if (__gthread_active_p())
105 _S_init = __gthread_key_create(&_M_key, eh_globals_dtor) == 0;
108 ~__eh_globals_init()
110 if (_S_init)
112 /* Set it before the call, so that, should
113 __gthread_key_delete throw an exception, it won't rely on
114 the key being deleted. */
115 _S_init = false;
116 __gthread_key_delete(_M_key);
120 __eh_globals_init(const __eh_globals_init&) = delete;
121 __eh_globals_init& operator=(const __eh_globals_init&) = delete;
124 bool __eh_globals_init::_S_init = false;
126 static __eh_globals_init init;
128 extern "C" __cxa_eh_globals*
129 __cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
131 __cxa_eh_globals* g;
132 if (init._S_init)
133 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key));
134 else
135 g = &eh_globals;
136 return g;
139 extern "C" __cxa_eh_globals*
140 __cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
142 __cxa_eh_globals* g;
143 if (init._S_init)
145 g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key));
146 if (!g)
148 void* v = malloc(sizeof(__cxa_eh_globals));
149 if (v == 0 || __gthread_setspecific(init._M_key, v) != 0)
150 std::terminate();
151 g = static_cast<__cxa_eh_globals*>(v);
152 g->caughtExceptions = 0;
153 g->uncaughtExceptions = 0;
154 #ifdef __ARM_EABI_UNWINDER__
155 g->propagatingExceptions = 0;
156 #endif
159 else
160 g = &eh_globals;
161 return g;
164 #else
166 extern "C" __cxa_eh_globals*
167 __cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
168 { return &eh_globals; }
170 extern "C" __cxa_eh_globals*
171 __cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
172 { return &eh_globals; }
174 #endif
176 #endif