public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: Patrick Palka <ppalka@redhat.com>, gcc-patches@gcc.gnu.org
Subject: Re: [PATCH] c++: implicitly_declare_fn and access checks [PR113908]
Date: Tue, 13 Feb 2024 17:57:16 -0500	[thread overview]
Message-ID: <6477dc34-e936-40cc-b3f6-31d1e885a201@redhat.com> (raw)
In-Reply-To: <20240213164907.3648858-1-ppalka@redhat.com>

On 2/13/24 11:49, Patrick Palka wrote:
> Bootstrapped and regtested on x86_64-pc-linux-gnu, are one of
> both of these fixes OK for trunk?
> 
> -- >8 --
> 
> Here during ahead of time checking of the non-dependent new-expr we
> synthesize B's copy constructor, which should be defined as deleted
> due to A's inaccessible copy constructor.  But enforce_access incorrectly
> decides to defer the (silent) access check for A::A(const A&) during
> synthesization since current_template_parms is still set (before r14-557
> it checked processing_template_decl which got cleared from
> implicitly_declare_fn), which leads to the access check leaking out to
> the template context that needed the synthesization.
> 
> This patch narrowly fixes this regression in two sufficient ways:
> 
> 1. Clear current_template_parms alongside processing_template_decl
>     in implicitly_declare_fn so that it's more independent of context.

Hmm, perhaps it or synthesized_method_walk should use 
maybe_push_to_top_level?

> 2. Don't defer a silent access check when in a template context,
>     since such deferred checks will be replayed noisily at instantiation
>     time which may not be what the caller intended.

True, but returning a possibly incorrect 'false' is probably also not 
what the caller intended.  It would be better to see that we never call 
enforce_access with tf_none in a template.  If that's not feasible, I 
think we should still conservatively return true.

Jason


  reply	other threads:[~2024-02-13 22:57 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-13 16:49 Patrick Palka
2024-02-13 22:57 ` Jason Merrill [this message]
2024-02-14 13:46   ` Patrick Palka
2024-02-14 13:53     ` Jason Merrill

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=6477dc34-e936-40cc-b3f6-31d1e885a201@redhat.com \
    --to=jason@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=ppalka@redhat.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).