2001-03-28 13:04:51 +02:00
|
|
|
// -*- C++ -*- Manage the thread-local exception globals.
|
2017-01-01 13:07:43 +01:00
|
|
|
// Copyright (C) 2001-2017 Free Software Foundation, Inc.
|
2001-03-28 13:04:51 +02:00
|
|
|
//
|
Makefile.am, [...]: Replace "GNU CC" with "GCC".
2003-05-24 Nathanael Nerode <neroden@gcc.gnu.org>
* libsupc++/Makefile.am, libsupc++/cxxabi.h, libsupc++/del_op.cc,
libsupc++/del_opnt.cc, libsupc++/del_opv.cc, libsupc++/del_opvnt.cc,
libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc,
libsupc++/eh_catch.cc, libsupc++/eh_exception.cc,
libsupc++/eh_globals.cc, libsupc++/eh_personality.cc,
libsupc++/eh_term_handler.cc, libsupc++/eh_terminate.cc,
libsupc++/eh_throw.cc, libsupc++/eh_type.cc,
libsupc++/eh_unex_handler.cc, libsupc++/exception,
libsupc++/new, libsupc++/new_handler.cc, libsupc++/new_op.cc,
libsupc++/new_opnt.cc, libsupc++/new_opv.cc, libsupc++/new_opvnt.cc,
libsupc++/pure.cc, libsupc++/tinfo.cc, libsupc++/tinfo2.cc,
libsupc++/typeinfo, libsupc++/unwind-cxx.h, libsupc++/vec.cc:
Replace "GNU CC" with "GCC".
From-SVN: r67155
2003-05-24 18:22:03 +02:00
|
|
|
// This file is part of GCC.
|
2001-03-28 13:04:51 +02:00
|
|
|
//
|
Makefile.am, [...]: Replace "GNU CC" with "GCC".
2003-05-24 Nathanael Nerode <neroden@gcc.gnu.org>
* libsupc++/Makefile.am, libsupc++/cxxabi.h, libsupc++/del_op.cc,
libsupc++/del_opnt.cc, libsupc++/del_opv.cc, libsupc++/del_opvnt.cc,
libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc,
libsupc++/eh_catch.cc, libsupc++/eh_exception.cc,
libsupc++/eh_globals.cc, libsupc++/eh_personality.cc,
libsupc++/eh_term_handler.cc, libsupc++/eh_terminate.cc,
libsupc++/eh_throw.cc, libsupc++/eh_type.cc,
libsupc++/eh_unex_handler.cc, libsupc++/exception,
libsupc++/new, libsupc++/new_handler.cc, libsupc++/new_op.cc,
libsupc++/new_opnt.cc, libsupc++/new_opv.cc, libsupc++/new_opvnt.cc,
libsupc++/pure.cc, libsupc++/tinfo.cc, libsupc++/tinfo2.cc,
libsupc++/typeinfo, libsupc++/unwind-cxx.h, libsupc++/vec.cc:
Replace "GNU CC" with "GCC".
From-SVN: r67155
2003-05-24 18:22:03 +02:00
|
|
|
// GCC is free software; you can redistribute it and/or modify
|
2001-03-28 13:04:51 +02:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
2009-04-09 17:00:19 +02:00
|
|
|
// the Free Software Foundation; either version 3, or (at your option)
|
2001-03-28 13:04:51 +02:00
|
|
|
// any later version.
|
|
|
|
//
|
Makefile.am, [...]: Replace "GNU CC" with "GCC".
2003-05-24 Nathanael Nerode <neroden@gcc.gnu.org>
* libsupc++/Makefile.am, libsupc++/cxxabi.h, libsupc++/del_op.cc,
libsupc++/del_opnt.cc, libsupc++/del_opv.cc, libsupc++/del_opvnt.cc,
libsupc++/eh_alloc.cc, libsupc++/eh_aux_runtime.cc,
libsupc++/eh_catch.cc, libsupc++/eh_exception.cc,
libsupc++/eh_globals.cc, libsupc++/eh_personality.cc,
libsupc++/eh_term_handler.cc, libsupc++/eh_terminate.cc,
libsupc++/eh_throw.cc, libsupc++/eh_type.cc,
libsupc++/eh_unex_handler.cc, libsupc++/exception,
libsupc++/new, libsupc++/new_handler.cc, libsupc++/new_op.cc,
libsupc++/new_opnt.cc, libsupc++/new_opv.cc, libsupc++/new_opvnt.cc,
libsupc++/pure.cc, libsupc++/tinfo.cc, libsupc++/tinfo2.cc,
libsupc++/typeinfo, libsupc++/unwind-cxx.h, libsupc++/vec.cc:
Replace "GNU CC" with "GCC".
From-SVN: r67155
2003-05-24 18:22:03 +02:00
|
|
|
// GCC is distributed in the hope that it will be useful,
|
2001-03-28 13:04:51 +02:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
2009-04-09 17:00:19 +02:00
|
|
|
// Under Section 7 of GPL version 3, you are granted additional
|
|
|
|
// permissions described in the GCC Runtime Library Exception, version
|
|
|
|
// 3.1, as published by the Free Software Foundation.
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2009-04-09 17:00:19 +02:00
|
|
|
// You should have received a copy of the GNU General Public License and
|
|
|
|
// a copy of the GCC Runtime Library Exception along with this program;
|
|
|
|
// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
|
|
|
|
// <http://www.gnu.org/licenses/>.
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
#include <bits/c++config.h>
|
2001-03-28 13:04:51 +02:00
|
|
|
#include <exception>
|
2001-06-08 05:55:43 +02:00
|
|
|
#include <cstdlib>
|
2005-11-22 07:54:08 +01:00
|
|
|
#include "cxxabi.h"
|
2001-03-28 13:04:51 +02:00
|
|
|
#include "unwind-cxx.h"
|
2001-06-08 05:55:43 +02:00
|
|
|
#include "bits/gthr.h"
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2006-01-18 12:22:10 +01:00
|
|
|
#if _GLIBCXX_HOSTED
|
|
|
|
using std::free;
|
|
|
|
using std::malloc;
|
|
|
|
#else
|
|
|
|
// In a freestanding environment, these functions may not be
|
|
|
|
// available -- but for now, we assume that they are.
|
|
|
|
extern "C" void *malloc (std::size_t);
|
|
|
|
extern "C" void free(void *);
|
|
|
|
#endif
|
|
|
|
|
2001-03-28 13:04:51 +02:00
|
|
|
using namespace __cxxabiv1;
|
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
#if _GLIBCXX_HAVE_TLS
|
|
|
|
|
2006-09-12 19:48:45 +02:00
|
|
|
namespace
|
2005-11-22 07:54:08 +01:00
|
|
|
{
|
2006-09-12 19:48:45 +02:00
|
|
|
abi::__cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
get_global() _GLIBCXX_NOTHROW
|
2005-11-22 07:54:08 +01:00
|
|
|
{
|
2006-09-12 19:48:45 +02:00
|
|
|
static __thread abi::__cxa_eh_globals global;
|
2005-11-22 07:54:08 +01:00
|
|
|
return &global;
|
|
|
|
}
|
2006-09-12 19:48:45 +02:00
|
|
|
} // anonymous namespace
|
2005-11-22 07:54:08 +01:00
|
|
|
|
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
|
2006-09-12 19:48:45 +02:00
|
|
|
{ return get_global(); }
|
2005-11-22 07:54:08 +01:00
|
|
|
|
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
|
2006-09-12 19:48:45 +02:00
|
|
|
{ return get_global(); }
|
2005-11-22 07:54:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
#else
|
2001-03-28 13:04:51 +02:00
|
|
|
|
|
|
|
// Single-threaded fallback buffer.
|
2005-11-22 07:54:08 +01:00
|
|
|
static __cxa_eh_globals eh_globals;
|
2001-03-28 13:04:51 +02:00
|
|
|
|
|
|
|
#if __GTHREADS
|
|
|
|
|
|
|
|
static void
|
2005-11-22 07:54:08 +01:00
|
|
|
eh_globals_dtor(void* ptr)
|
2001-03-28 13:04:51 +02:00
|
|
|
{
|
|
|
|
if (ptr)
|
2004-11-01 23:47:33 +01:00
|
|
|
{
|
2005-11-22 07:54:08 +01:00
|
|
|
__cxa_eh_globals* g = reinterpret_cast<__cxa_eh_globals*>(ptr);
|
|
|
|
__cxa_exception* exn = g->caughtExceptions;
|
|
|
|
__cxa_exception* next;
|
2004-11-01 23:47:33 +01:00
|
|
|
while (exn)
|
|
|
|
{
|
|
|
|
next = exn->nextException;
|
2005-11-22 07:54:08 +01:00
|
|
|
_Unwind_DeleteException(&exn->unwindHeader);
|
2004-11-01 23:47:33 +01:00
|
|
|
exn = next;
|
|
|
|
}
|
2006-01-18 12:22:10 +01:00
|
|
|
free(ptr);
|
2004-11-01 23:47:33 +01:00
|
|
|
}
|
2001-03-28 13:04:51 +02:00
|
|
|
}
|
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
struct __eh_globals_init
|
2001-03-28 13:04:51 +02:00
|
|
|
{
|
2005-11-22 07:54:08 +01:00
|
|
|
__gthread_key_t _M_key;
|
|
|
|
bool _M_init;
|
|
|
|
|
|
|
|
__eh_globals_init() : _M_init(false)
|
|
|
|
{
|
|
|
|
if (__gthread_active_p())
|
|
|
|
_M_init = __gthread_key_create(&_M_key, eh_globals_dtor) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
~__eh_globals_init()
|
|
|
|
{
|
|
|
|
if (_M_init)
|
|
|
|
__gthread_key_delete(_M_key);
|
2006-07-10 23:50:34 +02:00
|
|
|
_M_init = false;
|
2005-11-22 07:54:08 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
static __eh_globals_init init;
|
|
|
|
|
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
|
2001-03-28 13:04:51 +02:00
|
|
|
{
|
2005-11-22 07:54:08 +01:00
|
|
|
__cxa_eh_globals* g;
|
|
|
|
if (init._M_init)
|
|
|
|
g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key));
|
|
|
|
else
|
|
|
|
g = &eh_globals;
|
|
|
|
return g;
|
2001-03-28 13:04:51 +02:00
|
|
|
}
|
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
|
2001-03-28 13:04:51 +02:00
|
|
|
{
|
2005-11-22 07:54:08 +01:00
|
|
|
__cxa_eh_globals* g;
|
|
|
|
if (init._M_init)
|
|
|
|
{
|
|
|
|
g = static_cast<__cxa_eh_globals*>(__gthread_getspecific(init._M_key));
|
|
|
|
if (!g)
|
|
|
|
{
|
2006-01-18 12:22:10 +01:00
|
|
|
void* v = malloc(sizeof(__cxa_eh_globals));
|
2005-11-22 07:54:08 +01:00
|
|
|
if (v == 0 || __gthread_setspecific(init._M_key, v) != 0)
|
|
|
|
std::terminate();
|
|
|
|
g = static_cast<__cxa_eh_globals*>(v);
|
|
|
|
g->caughtExceptions = 0;
|
|
|
|
g->uncaughtExceptions = 0;
|
2006-11-13 14:28:28 +01:00
|
|
|
#ifdef __ARM_EABI_UNWINDER__
|
|
|
|
g->propagatingExceptions = 0;
|
|
|
|
#endif
|
2005-11-22 07:54:08 +01:00
|
|
|
}
|
|
|
|
}
|
2001-03-28 13:04:51 +02:00
|
|
|
else
|
2005-11-22 07:54:08 +01:00
|
|
|
g = &eh_globals;
|
|
|
|
return g;
|
2001-03-28 13:04:51 +02:00
|
|
|
}
|
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
#else
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals_fast() _GLIBCXX_NOTHROW
|
2005-11-22 07:54:08 +01:00
|
|
|
{ return &eh_globals; }
|
2001-06-08 05:55:43 +02:00
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
extern "C" __cxa_eh_globals*
|
2011-10-10 21:03:39 +02:00
|
|
|
__cxxabiv1::__cxa_get_globals() _GLIBCXX_NOTHROW
|
2005-11-22 07:54:08 +01:00
|
|
|
{ return &eh_globals; }
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2005-11-22 07:54:08 +01:00
|
|
|
#endif
|
2001-03-28 13:04:51 +02:00
|
|
|
|
|
|
|
#endif
|