public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: iain@sandoe.co.uk, gcc-patches@gcc.gnu.org
Subject: Re: [PATCH] c++, coroutines: Improve check for throwing final await [PR104051].
Date: Tue, 19 Apr 2022 22:20:05 -0400	[thread overview]
Message-ID: <03365bcd-f12c-c39a-c95f-16370e96824c@redhat.com> (raw)
In-Reply-To: <20220418153404.71282-1-iain@sandoe.co.uk>

On 4/18/22 11:34, Iain Sandoe wrote:
> We check that the final_suspend () method returns a sane type (i.e. a class
> or structure) but, unfortunately, that check has to be later than the one
> for a throwing case.  If the user returns some nonsensical type from the
> method, we need to handle that in the checking for noexcept.
> 
> tested on x86_64-darwin, OK for mainline? (when?),

OK.

> thanks
> Iain
> 
> Signed-off-by: Iain Sandoe <iain@sandoe.co.uk>
> 
> 	PR c++/104051
> 
> gcc/cp/ChangeLog:
> 
> 	* coroutines.cc (coro_diagnose_throwing_final_aw_expr): Handle
> 	non-target expression inputs.
> 
> gcc/testsuite/ChangeLog:
> 
> 	* g++.dg/coroutines/pr104051.C: New test.
> ---
>   gcc/cp/coroutines.cc                       | 13 +++++-----
>   gcc/testsuite/g++.dg/coroutines/pr104051.C | 29 ++++++++++++++++++++++
>   2 files changed, 36 insertions(+), 6 deletions(-)
>   create mode 100644 gcc/testsuite/g++.dg/coroutines/pr104051.C
> 
> diff --git a/gcc/cp/coroutines.cc b/gcc/cp/coroutines.cc
> index d2a765cac11..cb9bbed51e6 100644
> --- a/gcc/cp/coroutines.cc
> +++ b/gcc/cp/coroutines.cc
> @@ -883,13 +883,14 @@ coro_diagnose_throwing_fn (tree fndecl)
>   static bool
>   coro_diagnose_throwing_final_aw_expr (tree expr)
>   {
> -  tree t = TARGET_EXPR_INITIAL (expr);
> +  if (TREE_CODE (expr) == TARGET_EXPR)
> +    expr = TARGET_EXPR_INITIAL (expr);
>     tree fn = NULL_TREE;
> -  if (TREE_CODE (t) == CALL_EXPR)
> -    fn = CALL_EXPR_FN(t);
> -  else if (TREE_CODE (t) == AGGR_INIT_EXPR)
> -    fn = AGGR_INIT_EXPR_FN (t);
> -  else if (TREE_CODE (t) == CONSTRUCTOR)
> +  if (TREE_CODE (expr) == CALL_EXPR)
> +    fn = CALL_EXPR_FN (expr);
> +  else if (TREE_CODE (expr) == AGGR_INIT_EXPR)
> +    fn = AGGR_INIT_EXPR_FN (expr);
> +  else if (TREE_CODE (expr) == CONSTRUCTOR)
>       return false;
>     else
>       {
> diff --git a/gcc/testsuite/g++.dg/coroutines/pr104051.C b/gcc/testsuite/g++.dg/coroutines/pr104051.C
> new file mode 100644
> index 00000000000..ce7ae55405a
> --- /dev/null
> +++ b/gcc/testsuite/g++.dg/coroutines/pr104051.C
> @@ -0,0 +1,29 @@
> +// { dg-additional-options "-fsyntax-only" }
> +#include <coroutine>
> +#include <vector>
> +template <typename> struct promise {
> +  struct final_awaitable {
> +    bool await_ready() noexcept;
> +    template <typename Promise>
> +    std::coroutine_handle<>
> +        await_suspend(std::coroutine_handle<Promise>) noexcept;
> +    void await_resume() noexcept;
> +  };
> +  auto get_return_object() {
> +    return std::coroutine_handle<promise>::from_promise(*this);
> +  }
> +  auto initial_suspend() { return std::suspend_always(); }
> +  auto final_suspend() noexcept { return true; }
> +  void unhandled_exception();
> +};
> +template <typename T> struct task {
> +  using promise_type = promise<T>;
> +  task(std::coroutine_handle<promise<T>>);
> +  bool await_ready();
> +  std::coroutine_handle<> await_suspend(std::coroutine_handle<>);
> +  T await_resume();
> +};
> +task<std::vector<int>> foo() { // { dg-error {awaitable type 'bool' is not a structure} }
> +  while ((co_await foo()).empty())
> +    ;
> +}


      reply	other threads:[~2022-04-20  2:20 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-18 15:34 Iain Sandoe
2022-04-20  2:20 ` Jason Merrill [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=03365bcd-f12c-c39a-c95f-16370e96824c@redhat.com \
    --to=jason@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=iain@sandoe.co.uk \
    /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).