public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Jason Merrill <jason@redhat.com>
To: Jakub Jelinek <jakub@redhat.com>
Cc: Marek Polacek <polacek@redhat.com>,
	Jonathan Wakely <jwakely@redhat.com>,
	gcc-patches@gcc.gnu.org
Subject: Re: [PATCH] c++, v4: Implement C++23 P2647R1 - Permitting static constexpr variables in constexpr functions
Date: Fri, 18 Nov 2022 11:52:54 -0500	[thread overview]
Message-ID: <70af3dc3-33e1-e0c3-b9fc-556f86616a6a@redhat.com> (raw)
In-Reply-To: <Y3e0EEFLSQmwIaDS@tucnak>

On 11/18/22 11:34, Jakub Jelinek wrote:
> On Fri, Nov 18, 2022 at 11:24:45AM -0500, Jason Merrill wrote:
>>> Right, that's the C++17 implicit constexpr for lambdas, finish_function:
>>>
>>>     /* Lambda closure members are implicitly constexpr if possible.  */
>>>     if (cxx_dialect >= cxx17
>>>         && LAMBDA_TYPE_P (CP_DECL_CONTEXT (fndecl)))
>>>       DECL_DECLARED_CONSTEXPR_P (fndecl)
>>>         = ((processing_template_decl
>>>             || is_valid_constexpr_fn (fndecl, /*complain*/false))
>>>            && potential_constant_expression (DECL_SAVED_TREE (fndecl)));
>>
>> Yeah, I guess potential_constant_expression needs to be stricter in a
>> lambda. Or perhaps any function that isn't already
>> DECL_DECLARED_CONSTEXPR_P?
> 
> potential_constant_expression can't be relied on that it catches up
> everything if it, even a simple if statement with a condition not yet
> known to be 0 or non-0 results in just a requirement that at least
> one of the substatements is potential constant, etc.
> Similarly switch statements etc.
> If there is a way to distinguish between functions with user
> specified constexpr/consteval and DECL_DECLARED_CONSTEXPR_P set
> through the above if condition, sure, cp_finish_decl ->
> check_static_in_constexpr could be perhaps silent about those, but then
> we want to diagnose it during constexpr evaluation at least.  But in that
> case having it a pedwarn rather than "this is a constant expression"
> vs. "this is not a constant expression, if !ctx->quiet emit an error"
> is something I don't see how to handle.  Because something needs
> to be returned, it is a constant expression or it is not.

True.  Let's go with your option 2, then, thanks.

Jason


  reply	other threads:[~2022-11-18 16:52 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-11 17:07 [PATCH] c++: " Jakub Jelinek
2022-11-13 11:45 ` [PATCH] c++, v2: " Jakub Jelinek
2022-11-15 23:36   ` Jason Merrill
2022-11-15 23:50     ` Jakub Jelinek
2022-11-16  0:27       ` Jonathan Wakely
2022-11-16  6:19         ` Jakub Jelinek
2022-11-16 13:20           ` Jason Merrill
2022-11-16 14:08             ` Jakub Jelinek
2022-11-16 14:33               ` Jason Merrill
2022-11-16 14:46                 ` Jakub Jelinek
2022-11-16 20:26                   ` Jason Merrill
2022-11-17  9:13                     ` [PATCH] c++, v3: " Jakub Jelinek
2022-11-17 14:42                       ` Jason Merrill
2022-11-17 18:42                         ` Jakub Jelinek
2022-11-17 20:42                           ` [PATCH] c++, v4: " Jakub Jelinek
2022-11-18  0:15                             ` Marek Polacek
2022-11-18  7:48                               ` Jakub Jelinek
2022-11-18 15:03                                 ` Marek Polacek
2022-11-18 15:14                                   ` Jakub Jelinek
2022-11-18 16:24                                   ` Jason Merrill
2022-11-18 16:34                                     ` Jakub Jelinek
2022-11-18 16:52                                       ` Jason Merrill [this message]
2022-11-18  0:28                             ` Jason Merrill
2022-11-18  9:10                               ` [PATCH] c++, v5: " Jakub Jelinek
2022-11-16  0:26     ` [PATCH] c++, v2: " Jonathan Wakely

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=70af3dc3-33e1-e0c3-b9fc-556f86616a6a@redhat.com \
    --to=jason@redhat.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=jwakely@redhat.com \
    --cc=polacek@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).