2001-03-28 13:04:51 +02:00
|
|
|
// -*- C++ -*- std::exception implementation.
|
2018-01-03 11:03:58 +01:00
|
|
|
// Copyright (C) 1994-2018 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.
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
#include "typeinfo"
|
|
|
|
#include "exception"
|
2007-05-07 23:27:54 +02:00
|
|
|
#include <cxxabi.h>
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2016-01-15 23:42:41 +01:00
|
|
|
std::exception::~exception() _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT { }
|
2001-03-28 13:04:51 +02:00
|
|
|
|
2016-01-15 23:42:41 +01:00
|
|
|
std::bad_exception::~bad_exception() _GLIBCXX_TXN_SAFE_DYN
|
|
|
|
_GLIBCXX_USE_NOEXCEPT
|
|
|
|
{ }
|
2002-01-09 21:39:27 +01:00
|
|
|
|
2007-05-07 23:27:54 +02:00
|
|
|
abi::__forced_unwind::~__forced_unwind() throw() { }
|
|
|
|
|
|
|
|
abi::__foreign_exception::~__foreign_exception() throw() { }
|
|
|
|
|
2001-03-28 13:04:51 +02:00
|
|
|
const char*
|
2016-01-15 23:42:41 +01:00
|
|
|
std::exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT
|
2001-03-28 13:04:51 +02:00
|
|
|
{
|
2007-02-01 14:36:51 +01:00
|
|
|
// NB: Another elegant option would be returning typeid(*this).name()
|
|
|
|
// and not overriding what() in bad_exception, bad_alloc, etc. In
|
|
|
|
// that case, however, mangled names would be returned, PR 14493.
|
|
|
|
return "std::exception";
|
|
|
|
}
|
|
|
|
|
|
|
|
const char*
|
2016-01-15 23:42:41 +01:00
|
|
|
std::bad_exception::what() const _GLIBCXX_TXN_SAFE_DYN _GLIBCXX_USE_NOEXCEPT
|
2007-02-01 14:36:51 +01:00
|
|
|
{
|
|
|
|
return "std::bad_exception";
|
2001-03-28 13:04:51 +02:00
|
|
|
}
|
2016-01-15 23:42:41 +01:00
|
|
|
|
|
|
|
// Transactional clones for the destructors and what().
|
|
|
|
// what() is effectively transaction_pure, but we do not want to annotate it
|
|
|
|
// as such; thus, we call exactly the respective nontransactional function.
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
void
|
|
|
|
_ZGTtNKSt9exceptionD1Ev(const std::exception*)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
const char*
|
|
|
|
_ZGTtNKSt9exception4whatEv(const std::exception* that)
|
|
|
|
{
|
|
|
|
// We really want the non-virtual call here. We already executed the
|
|
|
|
// indirect call representing the virtual call, and the TM runtime or the
|
|
|
|
// compiler resolved it to this transactional clone. In the clone, we want
|
|
|
|
// to do the same as for the nontransactional original, so we just call it.
|
|
|
|
return that->std::exception::what();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_ZGTtNKSt13bad_exceptionD1Ev(
|
|
|
|
const std::bad_exception*)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
const char*
|
|
|
|
_ZGTtNKSt13bad_exception4whatEv(
|
|
|
|
const std::bad_exception* that)
|
|
|
|
{
|
|
|
|
// Also see _ZGTtNKSt9exception4whatEv.
|
|
|
|
return that->std::bad_exception::what();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|