public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Patrick Palka <ppalka@redhat.com>
To: Nathaniel Shead <nathanieloshead@gmail.com>
Cc: gcc-patches@gcc.gnu.org, Jason Merrill <jason@redhat.com>,
	 Nathan Sidwell <nathan@acm.org>,
	Patrick Palka <ppalka@redhat.com>
Subject: Re: [PATCH] c++: Clear uninstantiated friend flag when instantiating [PR104234]
Date: Thu, 23 Nov 2023 12:13:12 -0500 (EST)	[thread overview]
Message-ID: <4c5e4a70-0373-85d4-31c7-a364c9fe4137@idea> (raw)
In-Reply-To: <655f4b9d.170a0220.5d81b.3377@mx.google.com>

On Thu, 23 Nov 2023, Nathaniel Shead wrote:

> Bootstrapped and regtested on x86_64-pc-linux-gnu. I don't have write
> access.
> 
> -- >8 --
> 
> Otherwise attempting to get the originating module declaration ICEs
> because the DECL_CHAIN of an instantiated friend template is no longer
> its context.

Thanks for the patch!  I arrived at a similar fix back in January[1],
which Nathan reviewed[2], which then fell through the cracks...  My
patch was perhaps too ambitious as it tried to fix the ICE as well
as a follow-up module attachment issue.  But just clearing
DECL_UNINSTANTIATED_TEMPLATE_FRIEND_P (either in tsubst_template_decl or
more narrowly in tsubst_friend_class) seems pretty clearly correct and
fixes the reported ICEs so LGTM :) Thanks again!

[1]: https://gcc.gnu.org/pipermail/gcc-patches/2023-January/610593.html
[2]: https://gcc.gnu.org/pipermail/gcc-patches/2023-February/611215.html

> 
> 	PR c++/104234
>         PR c++/112580
> 
> gcc/cp/ChangeLog:
> 
> 	* pt.cc (tsubst_template_decl):
> 
> gcc/testsuite/ChangeLog:
> 
> 	* g++.dg/modules/pr104234.C: New test.
> 
> Signed-off-by: Nathaniel Shead <nathanieloshead@gmail.com>
> ---
>  gcc/cp/pt.cc                            |  2 ++
>  gcc/testsuite/g++.dg/modules/pr104234.C | 16 ++++++++++++++++
>  2 files changed, 18 insertions(+)
>  create mode 100644 gcc/testsuite/g++.dg/modules/pr104234.C
> 
> diff --git a/gcc/cp/pt.cc b/gcc/cp/pt.cc
> index ed681afb5d4..5e10a523e1a 100644
> --- a/gcc/cp/pt.cc
> +++ b/gcc/cp/pt.cc
> @@ -14789,6 +14789,8 @@ tsubst_template_decl (tree t, tree args, tsubst_flags_t complain,
>    if (PRIMARY_TEMPLATE_P (t))
>      DECL_PRIMARY_TEMPLATE (r) = r;
>  
> +  DECL_UNINSTANTIATED_TEMPLATE_FRIEND_P (r) = false;
> +
>    if (!lambda_fntype && !class_p)
>      {
>        /* Record this non-type partial instantiation.  */
> diff --git a/gcc/testsuite/g++.dg/modules/pr104234.C b/gcc/testsuite/g++.dg/modules/pr104234.C
> new file mode 100644
> index 00000000000..d81f0d435bc
> --- /dev/null
> +++ b/gcc/testsuite/g++.dg/modules/pr104234.C
> @@ -0,0 +1,16 @@
> +// PR c++/104234
> +// { dg-additional-options "-fmodules-ts" }
> +
> +template <typename> struct _Node_handle_common {
> +  template <typename> friend class _Rb_tree;
> +};
> +struct _Hashtable {
> +  using node_type = _Node_handle_common<int>;
> +  node_type __trans_tmp_1;
> +};
> +template <typename> class _Rb_tree {
> +  struct _Rb_tree_impl {
> +    _Rb_tree_impl();
> +  } _M_impl;
> +};
> +_Rb_tree<int> _M_tmap_;
> -- 
> 2.42.0
> 
> 


  parent reply	other threads:[~2023-11-23 17:13 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-23 12:54 Nathaniel Shead
2023-11-23 13:40 ` Nathaniel Shead
2023-12-10 18:35   ` Jason Merrill
2023-11-23 17:13 ` Patrick Palka [this message]
2023-11-23 17:47 ` Marek Polacek

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=4c5e4a70-0373-85d4-31c7-a364c9fe4137@idea \
    --to=ppalka@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jason@redhat.com \
    --cc=nathan@acm.org \
    --cc=nathanieloshead@gmail.com \
    /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).