30a333ceeb
2008-08-23 Paolo Carlini <paolo.carlini@oracle.com> * testsuite/lib/libstdc++.exp (check_v3_target_atomic_builtins): Add. * testsuite/lib/dg-options.exp (dg-require-atomic-builtins): Likewise. * testsuite/18_support/exception_ptr/current_exception.cc: Use it. * testsuite/18_support/exception_ptr/rethrow_exception.cc: Likewise. * testsuite/18_support/exception_ptr/lifespan.cc: Likewise. 2008-08-23 Sebastian Redl <sebastian.redl@getdesigned.at> Add (again) exception propagation support as per N2179. Feature is available only when _GLIBCXX_ATOMIC_BUILTINS_4 is defined. * libsupc++/exception_ptr.h (exception_ptr, current_exception, copy_exception, rethrow_exception): New file, implement exception propagation. * libsupc++/eh_ptr.cc (exception_ptr, current_exception, rethrow_exception, __gxx_dependent_exception_cleanup): Likewise. * libsupc++/unwind-cxx.h (__cxa_exception): Add reference count. (__cxa_dependent_exception, __cxa_allocate_dependent_exception, __cxa_free_dependent_exception, __get_dependent_exception_from_ue, __GXX_INIT_DEPENDENT_EXCEPTION_CLASS, __is_dependent_exception, __gxx_dependent_exception_class, __get_object_from_ue, __get_object_from_ambiguous_exception): Add. (__GXX_INIT_EXCEPTION_CLASS, __gxx_exception_class): Rename. (__is_gxx_exception_class): Handle dependent exceptions. * libsupc++/eh_arm.cc (__cxa_type_match): Likewise. * libsupc++/eh_call.cc (__cxa_call_unexpected): Likewise. * libsupc++/eh_personality.cc (__gxx_personality_*): Likewise. * libsupc++/eh_type.cc (__cxa_current_exception_type): Likewise. * libsupc++/eh_alloc.cc (__cxa_allocate_dependent_exception, __cxa_free_dependent_exception): Add. * libsupc++/eh_throw.cc (__gxx_exception_cleanup): Handle reference counting. * libsupc++/exception: Conditionally include exception_ptr.h. * libsupc++/Makefile.am: Register new files. * libsupc++/Makefile.in: Regenerate. * config/abi/pre/gnu.ver: Add new symbols. * testsuite/18_support/exception_ptr/current_exception.cc: Test the core functionality of current_exception(). * testsuite/18_support/exception_ptr/rethrow_exception.cc: Test the core functionality of rethrow_exception(). * testsuite/18_support/exception_ptr/lifespan.cc: Test the life span of exception objects during exception propagation. From-SVN: r139509
226 lines
6.1 KiB
C++
226 lines
6.1 KiB
C++
// -*- C++ -*- Allocate exception objects.
|
|
// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2008
|
|
// Free Software Foundation, Inc.
|
|
//
|
|
// This file is part of GCC.
|
|
//
|
|
// GCC is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; either version 2, or (at your option)
|
|
// any later version.
|
|
//
|
|
// GCC is distributed in the hope that it will be useful,
|
|
// 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.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with GCC; see the file COPYING. If not, write to
|
|
// the Free Software Foundation, 51 Franklin Street, Fifth Floor,
|
|
// Boston, MA 02110-1301, USA.
|
|
|
|
// As a special exception, you may use this file as part of a free software
|
|
// library without restriction. Specifically, if other files instantiate
|
|
// templates or use macros or inline functions from this file, or you compile
|
|
// this file and link it with other files to produce an executable, this
|
|
// file does not by itself cause the resulting executable to be covered by
|
|
// the GNU General Public License. This exception does not however
|
|
// invalidate any other reasons why the executable file might be covered by
|
|
// the GNU General Public License.
|
|
|
|
// This is derived from the C++ ABI for IA-64. Where we diverge
|
|
// for cross-architecture compatibility are noted with "@@@".
|
|
|
|
#include <bits/c++config.h>
|
|
#include <cstdlib>
|
|
#if _GLIBCXX_HOSTED
|
|
#include <cstring>
|
|
#endif
|
|
#include <climits>
|
|
#include <exception>
|
|
#include "unwind-cxx.h"
|
|
#include <ext/concurrence.h>
|
|
|
|
#if _GLIBCXX_HOSTED
|
|
using std::free;
|
|
using std::malloc;
|
|
using std::memset;
|
|
#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 *);
|
|
extern "C" void *memset (void *, int, std::size_t);
|
|
#endif
|
|
|
|
using namespace __cxxabiv1;
|
|
|
|
// ??? How to control these parameters.
|
|
|
|
// Guess from the size of basic types how large a buffer is reasonable.
|
|
// Note that the basic c++ exception header has 13 pointers and 2 ints,
|
|
// so on a system with PSImode pointers we're talking about 56 bytes
|
|
// just for overhead.
|
|
|
|
#if INT_MAX == 32767
|
|
# define EMERGENCY_OBJ_SIZE 128
|
|
# define EMERGENCY_OBJ_COUNT 16
|
|
#elif LONG_MAX == 2147483647
|
|
# define EMERGENCY_OBJ_SIZE 512
|
|
# define EMERGENCY_OBJ_COUNT 32
|
|
#else
|
|
# define EMERGENCY_OBJ_SIZE 1024
|
|
# define EMERGENCY_OBJ_COUNT 64
|
|
#endif
|
|
|
|
#ifndef __GTHREADS
|
|
# undef EMERGENCY_OBJ_COUNT
|
|
# define EMERGENCY_OBJ_COUNT 4
|
|
#endif
|
|
|
|
#if INT_MAX == 32767 || EMERGENCY_OBJ_COUNT <= 32
|
|
typedef unsigned int bitmask_type;
|
|
#else
|
|
typedef unsigned long bitmask_type;
|
|
#endif
|
|
|
|
|
|
typedef char one_buffer[EMERGENCY_OBJ_SIZE] __attribute__((aligned));
|
|
static one_buffer emergency_buffer[EMERGENCY_OBJ_COUNT];
|
|
static bitmask_type emergency_used;
|
|
|
|
static __cxa_dependent_exception dependents_buffer[EMERGENCY_OBJ_COUNT];
|
|
static bitmask_type dependents_used;
|
|
|
|
namespace
|
|
{
|
|
// A single mutex controlling emergency allocations.
|
|
__gnu_cxx::__mutex emergency_mutex;
|
|
}
|
|
|
|
extern "C" void *
|
|
__cxxabiv1::__cxa_allocate_exception(std::size_t thrown_size) throw()
|
|
{
|
|
void *ret;
|
|
|
|
thrown_size += sizeof (__cxa_exception);
|
|
ret = malloc (thrown_size);
|
|
|
|
if (! ret)
|
|
{
|
|
__gnu_cxx::__scoped_lock sentry(emergency_mutex);
|
|
|
|
bitmask_type used = emergency_used;
|
|
unsigned int which = 0;
|
|
|
|
if (thrown_size > EMERGENCY_OBJ_SIZE)
|
|
goto failed;
|
|
while (used & 1)
|
|
{
|
|
used >>= 1;
|
|
if (++which >= EMERGENCY_OBJ_COUNT)
|
|
goto failed;
|
|
}
|
|
|
|
emergency_used |= (bitmask_type)1 << which;
|
|
ret = &emergency_buffer[which][0];
|
|
|
|
failed:;
|
|
|
|
if (!ret)
|
|
std::terminate ();
|
|
}
|
|
|
|
// We have an uncaught exception as soon as we allocate memory. This
|
|
// yields uncaught_exception() true during the copy-constructor that
|
|
// initializes the exception object. See Issue 475.
|
|
__cxa_eh_globals *globals = __cxa_get_globals ();
|
|
globals->uncaughtExceptions += 1;
|
|
|
|
memset (ret, 0, sizeof (__cxa_exception));
|
|
|
|
return (void *)((char *)ret + sizeof (__cxa_exception));
|
|
}
|
|
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_free_exception(void *vptr) throw()
|
|
{
|
|
char *base = (char *) emergency_buffer;
|
|
char *ptr = (char *) vptr;
|
|
if (ptr >= base
|
|
&& ptr < base + sizeof (emergency_buffer))
|
|
{
|
|
const unsigned int which
|
|
= (unsigned) (ptr - base) / EMERGENCY_OBJ_SIZE;
|
|
|
|
__gnu_cxx::__scoped_lock sentry(emergency_mutex);
|
|
emergency_used &= ~((bitmask_type)1 << which);
|
|
}
|
|
else
|
|
free (ptr - sizeof (__cxa_exception));
|
|
}
|
|
|
|
|
|
extern "C" __cxa_dependent_exception*
|
|
__cxxabiv1::__cxa_allocate_dependent_exception() throw()
|
|
{
|
|
__cxa_dependent_exception *ret;
|
|
|
|
ret = static_cast<__cxa_dependent_exception*>
|
|
(malloc (sizeof (__cxa_dependent_exception)));
|
|
|
|
if (!ret)
|
|
{
|
|
__gnu_cxx::__scoped_lock sentry(emergency_mutex);
|
|
|
|
bitmask_type used = dependents_used;
|
|
unsigned int which = 0;
|
|
|
|
while (used & 1)
|
|
{
|
|
used >>= 1;
|
|
if (++which >= EMERGENCY_OBJ_COUNT)
|
|
goto failed;
|
|
}
|
|
|
|
dependents_used |= (bitmask_type)1 << which;
|
|
ret = &dependents_buffer[which];
|
|
|
|
failed:;
|
|
|
|
if (!ret)
|
|
std::terminate ();
|
|
}
|
|
|
|
// We have an uncaught exception as soon as we allocate memory. This
|
|
// yields uncaught_exception() true during the copy-constructor that
|
|
// initializes the exception object. See Issue 475.
|
|
__cxa_eh_globals *globals = __cxa_get_globals ();
|
|
globals->uncaughtExceptions += 1;
|
|
|
|
memset (ret, 0, sizeof (__cxa_dependent_exception));
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
extern "C" void
|
|
__cxxabiv1::__cxa_free_dependent_exception
|
|
(__cxa_dependent_exception *vptr) throw()
|
|
{
|
|
char *base = (char *) dependents_buffer;
|
|
char *ptr = (char *) vptr;
|
|
if (ptr >= base
|
|
&& ptr < base + sizeof (dependents_buffer))
|
|
{
|
|
const unsigned int which
|
|
= (unsigned) (ptr - base) / sizeof (__cxa_dependent_exception);
|
|
|
|
__gnu_cxx::__scoped_lock sentry(emergency_mutex);
|
|
dependents_used &= ~((bitmask_type)1 << which);
|
|
}
|
|
else
|
|
free (vptr);
|
|
}
|