public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jonathan Wakely <jwakely@redhat.com>
To: libstdc++@gcc.gnu.org, gcc-patches@gcc.gnu.org
Subject: Re: [committed] libstdc++: Break header cycle between <new> and <exception>
Date: Wed, 2 Sep 2020 16:43:41 +0100	[thread overview]
Message-ID: <20200902154341.GL3400@redhat.com> (raw)
In-Reply-To: <20200902131527.GA1800857@redhat.com>

[-- Attachment #1: Type: text/plain, Size: 2829 bytes --]

On 02/09/20 14:15 +0100, Jonathan Wakely wrote:
>The <new> and <exception> headers each include each other, which makes
>building them as header-units "exciting". The <new> header only needs
>the definition of std::exception (in order to derive from it) which is
>already in its own header, so just include that.
>
>libstdc++-v3/ChangeLog:
>
>	* include/bits/stl_iterator.h: Include <bits/exception_defines.h>
>	for definitions of __try, __catch and __throw_exception_again.
>	(counted_iterator::operator++(int)): Use __throw_exception_again
>	instead of throw.
>	* libsupc++/new: Include <bits/exception.h> not <exception>.
>	* libsupc++/new_opvnt.cc: Include <bits/exception_defines.h>.
>	* testsuite/18_support/destroying_delete.cc: Include
>	<type_traits> for std::is_same_v definition.
>	* testsuite/20_util/variant/index_type.cc: Qualify size_t.
>
>Tested powerpc64le-linux. Committed to trunk.
>

>commit 6bdbf0f37bda2587a4e82cbb956de7a159a397ae
>Author: Jonathan Wakely <jwakely@redhat.com>
>Date:   Wed Sep 2 13:27:57 2020
>
>    libstdc++: Break header cycle between <new> and <exception>
>
>    The <new> and <exception> headers each include each other, which makes
>    building them as header-units "exciting". The <new> header only needs
>    the definition of std::exception (in order to derive from it) which is
>    already in its own header, so just include that.
>
>    libstdc++-v3/ChangeLog:
>
>            * include/bits/stl_iterator.h: Include <bits/exception_defines.h>
>            for definitions of __try, __catch and __throw_exception_again.
>            (counted_iterator::operator++(int)): Use __throw_exception_again
>            instead of throw.
>            * libsupc++/new: Include <bits/exception.h> not <exception>.
>            * libsupc++/new_opvnt.cc: Include <bits/exception_defines.h>.
>            * testsuite/18_support/destroying_delete.cc: Include
>            <type_traits> for std::is_same_v definition.
>            * testsuite/20_util/variant/index_type.cc: Qualify size_t.
>
>diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h
>index f0cf4c55c09..da740e3732e 100644
>--- a/libstdc++-v3/include/bits/stl_iterator.h
>+++ b/libstdc++-v3/include/bits/stl_iterator.h
>@@ -79,6 +79,7 @@
> #if __cplusplus > 201703L
> # include <compare>
> # include <new>
>+# include <bits/exception_defines.h>
> # include <bits/iterator_concepts.h>
> #endif
>
>@@ -2062,7 +2063,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
> 	    return _M_current++;
> 	  } __catch(...) {
> 	    ++_M_length;
>-	    throw;
>+	    __throw_exception_again;
> 	  }
>
>       }

I've also changed the line above on the gcc-10 branch. Even though
both GCC and Clang accept it with -fno-exceptions (rather
mysteriously) it should be using the __throw_exception_again macro
instead.


[-- Attachment #2: patch.txt --]
[-- Type: text/x-patch, Size: 772 bytes --]

commit 7eb76b3b1721247bc2c9ab6a41c1655158ed3411
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Wed Sep 2 14:50:34 2020

    libstdc++: Use __throw_exception_again macro for -fno-exceptions
    
    libstdc++-v3/ChangeLog:
    
            * include/bits/stl_iterator.h (counted_iterator::operator++(int)):
            Use __throw_exception_again macro.

diff --git a/libstdc++-v3/include/bits/stl_iterator.h b/libstdc++-v3/include/bits/stl_iterator.h
index 19b1d53f781..d6bb085b3c6 100644
--- a/libstdc++-v3/include/bits/stl_iterator.h
+++ b/libstdc++-v3/include/bits/stl_iterator.h
@@ -2013,7 +2013,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 	    return _M_current++;
 	  } __catch(...) {
 	    ++_M_length;
-	    throw;
+	    __throw_exception_again;
 	  }
 
       }

      reply	other threads:[~2020-09-02 15:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-02 13:15 Jonathan Wakely
2020-09-02 15:43 ` Jonathan Wakely [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20200902154341.GL3400@redhat.com \
    --to=jwakely@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=libstdc++@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).