1 // -*- C++ -*- Manage the thread-local exception globals.
2 // Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
3 // Free Software Foundation, Inc.
5 // This file is part of GCC.
7 // GCC is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 2, or (at your option)
12 // GCC is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with GCC; see the file COPYING. If not, write to
19 // the Free Software Foundation, 51 Franklin Street, Fifth Floor,
20 // Boston, MA 02110-1301, USA.
22 // As a special exception, you may use this file as part of a free software
23 // library without restriction. Specifically, if other files instantiate
24 // templates or use macros or inline functions from this file, or you compile
25 // this file and link it with other files to produce an executable, this
26 // file does not by itself cause the resulting executable to be covered by
27 // the GNU General Public License. This exception does not however
28 // invalidate any other reasons why the executable file might be covered by
29 // the GNU General Public License.
31 #include <bits/c++config.h>
35 #include "unwind-cxx.h"
36 #include "bits/gthr.h"
42 // In a freestanding environment, these functions may not be
43 // available -- but for now, we assume that they are.
44 extern "C" void *malloc (std::size_t);
45 extern "C" void free(void *);
48 using namespace __cxxabiv1
;
52 namespace __gnu_internal
60 static __thread __cxa_eh_globals global
;
65 extern "C" __cxa_eh_globals
*
66 __cxxabiv1::__cxa_get_globals_fast() throw()
67 { return __gnu_internal::get_global(); }
69 extern "C" __cxa_eh_globals
*
70 __cxxabiv1::__cxa_get_globals() throw()
71 { return __gnu_internal::get_global(); }
76 // Single-threaded fallback buffer.
77 static __cxa_eh_globals eh_globals
;
82 eh_globals_dtor(void* ptr
)
86 __cxa_eh_globals
* g
= reinterpret_cast<__cxa_eh_globals
*>(ptr
);
87 __cxa_exception
* exn
= g
->caughtExceptions
;
88 __cxa_exception
* next
;
91 next
= exn
->nextException
;
92 _Unwind_DeleteException(&exn
->unwindHeader
);
99 struct __eh_globals_init
101 __gthread_key_t _M_key
;
104 __eh_globals_init() : _M_init(false)
106 if (__gthread_active_p())
107 _M_init
= __gthread_key_create(&_M_key
, eh_globals_dtor
) == 0;
113 __gthread_key_delete(_M_key
);
117 static __eh_globals_init init
;
119 extern "C" __cxa_eh_globals
*
120 __cxxabiv1::__cxa_get_globals_fast() throw()
124 g
= static_cast<__cxa_eh_globals
*>(__gthread_getspecific(init
._M_key
));
130 extern "C" __cxa_eh_globals
*
131 __cxxabiv1::__cxa_get_globals() throw()
136 g
= static_cast<__cxa_eh_globals
*>(__gthread_getspecific(init
._M_key
));
139 void* v
= malloc(sizeof(__cxa_eh_globals
));
140 if (v
== 0 || __gthread_setspecific(init
._M_key
, v
) != 0)
142 g
= static_cast<__cxa_eh_globals
*>(v
);
143 g
->caughtExceptions
= 0;
144 g
->uncaughtExceptions
= 0;
154 extern "C" __cxa_eh_globals
*
155 __cxxabiv1::__cxa_get_globals_fast() throw()
156 { return &eh_globals
; }
158 extern "C" __cxa_eh_globals
*
159 __cxxabiv1::__cxa_get_globals() throw()
160 { return &eh_globals
; }