<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style>
body {
        font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        padding:1em;
        margin:auto;
        background:#fefefe;
}

h1, h2, h3, h4, h5, h6 {
        font-weight: bold;
}

h1 {
        color: #000000;
        font-size: 28pt;
}

h2 {
        border-bottom: 1px solid #CCCCCC;
        color: #000000;
        font-size: 24px;
}

h3 {
        font-size: 18px;
}

h4 {
        font-size: 16px;
}

h5 {
        font-size: 14px;
}

h6 {
        color: #777777;
        background-color: inherit;
        font-size: 14px;
}

hr {
        height: 0.2em;
        border: 0;
        color: #CCCCCC;
        background-color: #CCCCCC;
    display: inherit;
}

p, blockquote, ul, ol, dl, li, table, pre {
        margin: 15px 0;
}

a, a:visited {
        color: #4183C4;
        background-color: inherit;
        text-decoration: none;
}

#message {
        border-radius: 6px;
        border: 1px solid #ccc;
        display:block;
        width:100%;
        height:60px;
        margin:6px 0px;
}

button, #ws {
        font-size: 12 pt;
        padding: 4px 6px;
        border-radius: 5px;
        border: 1px solid #bbb;
        background-color: #eee;
}

code, pre, #ws, #message {
        font-family: Monaco;
        font-size: 10pt;
        border-radius: 3px;
        background-color: #F8F8F8;
        color: inherit;
}

code {
        border: 1px solid #EAEAEA;
        margin: 0 2px;
        padding: 0 5px;
}

pre {
        border: 1px solid #CCCCCC;
        overflow: auto;
        padding: 4px 8px;
}

pre > code {
        border: 0;
        margin: 0;
        padding: 0;
}

#ws { background-color: #f8f8f8; }


.bloop_markdown table {
border-collapse: collapse;  
font-family: Helvetica, arial, freesans, clean, sans-serif;  
color: rgb(51, 51, 51);  
font-size: 15px; line-height: 25px;
padding: 0; }

.bloop_markdown table tr {
border-top: 1px solid #cccccc;
background-color: white;
margin: 0;
padding: 0; }
     
.bloop_markdown table tr:nth-child(2n) {
background-color: #f8f8f8; }

.bloop_markdown table tr th {
font-weight: bold;
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr td {
border: 1px solid #cccccc;
margin: 0;
padding: 6px 13px; }

.bloop_markdown table tr th :first-child, table tr td :first-child {
margin-top: 0; }

.bloop_markdown table tr th :last-child, table tr td :last-child {
margin-bottom: 0; }

.bloop_markdown blockquote{
  border-left: 4px solid #dddddd;
  padding: 0 15px;
  color: #777777; }
  blockquote > :first-child {
    margin-top: 0; }
  blockquote > :last-child {
    margin-bottom: 0; }

code, pre, #ws, #message {
    word-break: normal;
    word-wrap: normal;
}

hr {
    display: inherit;
}

.bloop_markdown :first-child {
    -webkit-margin-before: 0;
}

code, pre, #ws, #message {
    font-family: Menlo, Consolas, Liberation Mono, Courier, monospace;
}


.send { color:#77bb77; }
.server { color:#7799bb; }
.error { color:#AA0000; }</style>
</head>
<body>
<div class="bloop_markdown">
<p>Yeah, but if you’re explicit about the <code>constexpr</code> it works fine in both compilers:
<a href="https://godbolt.org/z/xdad8v">https://godbolt.org/z/xdad8v</a>. Here’s a summary of frontend divergence on this issue:
<a href="https://godbolt.org/z/KfdKcT">https://godbolt.org/z/KfdKcT</a>. I think basically this is one of those areas where implementation divergence is so significant that no one can write portable code dependent on it, so we should consider simplifying. I
 understand the desire to make <code>[]{ return x; }</code>, <code>[=]{ return x; }</code>, and
<code>[x]{ return x; }</code> all do the same thing (though that doesn’t save us from the fact that
<code>[x=x]{ return x; }</code> does something different), but the reality is that anyone who is writing code that’s dependent on this behavior is either only using Clang or—worse—depending on the wrong behavior and avoiding Clang. And that doesn’t even always
 work; consider this example: <a href="https://godbolt.org/z/ETMGEq">https://godbolt.org/z/ETMGEq</a> where adding a default capture causes Clang to treat the reference to a global as a reference to
<code>const</code>.</p>
<blockquote>
<p>I’m not sure where the references-are-implicitly-constexpr part came from</p>
</blockquote>
<p>I think this is part of the problem. I think most people would find this at least slightly less confusing:</p>
<pre><code>int foo = 1;
int main() {
  constexpr auto& myfoo = foo;
  auto x = [=]{ return myfoo; };
  std::cout << x() << std::endl;
  foo = 2;
  std::cout << x() << std::endl;
}
</code></pre>
<p>But I think probably the best solution would be to consider deprecating the use of constexpr references in capture-by-value lambdas. The argument in many cases is pretty similar to the problems with implicit
<code>this</code> capture. Very few people would be surprised by the behavior of this program, for instance:</p>
<pre><code>int foo = 1;
int main() {
  constexpr auto& myfoo = foo;
  auto x = [=, &myfoo]{ return myfoo; };
  std::cout << x() << std::endl;
  foo = 2;
  std::cout << x() << std::endl;
}
</code></pre>
<p>The fact that this works the same way currently on all of the major implementations is another bonus.</p>
<blockquote>
<p>But this is really the wrong place to have such discussions :)</p>
</blockquote>
<p>Yeah, I agree that whatever happens, I think this should probably be a Core issue that we should switch this discussion over to the ISO mailing list.
</p>
<p></p>
</div>
<div class="bloop_original_html"><style>body{font-family:Helvetica,Arial;font-size:13px}</style>
<div style="font-family:Helvetica,Arial;font-size:13px; "><br>
</div>
<br>
<div class="gmail_signature">Thanks,
<div><br>
</div>
<div>Daisy 🌼</div>
</div>
<br>
<p class="airmail_on">On October 27, 2020 at 1:00:31 PM, Richard Smith (<a href="mailto:richard@metafoo.co.uk">richard@metafoo.co.uk</a>) wrote:</p>
<blockquote type="cite" class="clean_bq"><span>
<div>
<div></div>
<div>
<div dir="ltr">
<div dir="ltr">On Tue, 27 Oct 2020 at 12:11, Arthur O'Dwyer <<a href="mailto:arthur.j.odwyer@gmail.com">arthur.j.odwyer@gmail.com</a>> wrote:<br>
</div>
<div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">On Mon, Oct 26, 2020 at 8:14 PM Richard Smith via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
> On Mon, 26 Oct 2020 at 16:57, Lewis, Cannada via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a>> wrote:<br>
>><br>
>> I’m not a standards reading expert but does<br>
>><br>
>> Note 7:<br>
>> An id-expression that is not an odr-use refers to the original entity, never to a member of the closure type.<br>
>> However, such an id-expression can still cause the implicit capture of the entity.<br>
>> — end note<br>
>><br>
>> From the text imply that the program <a href="https://godbolt.org/z/feKxdK" target="_blank">
https://godbolt.org/z/feKxdK</a> is actually implementation defined? Or does gcc have a bug here?<br>
><br>
> GCC has a bug, according to the standard wording. The mention of myfoo does not constitute an odr-use, so is not rewritten to use the capture. Clang's behavior is correct per the standard wording.<br>
><br>
> The standard rule is certainly surprising in this particular case. I think the rule in question is driven by the desire for adding a capture-default to a valid lambda to not change its meaning. For example:
<a href="https://godbolt.org/z/nrWsvj" target="_blank">https://godbolt.org/z/nrWsvj</a><br>
<br>
Hmm. It's insane that you can use local variable `x` inside a lambda that doesn't capture anything; I wasn't aware of that.</div>
</blockquote>
<div><br>
</div>
<div>Aside: "insane" (here) and "crazy" (below) are somewhat more charged language than we'd prefer here.</div>
<div> </div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">If the formal wording really says you can do that, then that seems like a formal-wording bug to me.</div>
</blockquote>
<div><br>
</div>
<div>It's entirely intentional, though the case that was being thought about at the time was primarily local constant non-references, not local references (though the same rules apply to both).</div>
<div><br>
</div>
<div>void f() {</div>
<div>  constexpr int k = 5;</div>
<div>  [] { int arr[k]; };</div>
<div>}</div>
<div><br>
</div>
<div>... should obviously be valid. And more broadly, the rule is that anything that you can name without an odr-use is valid. And this isn't at all special to lambdas; the same thing happens with all nested constructs:</div>
<div><br>
</div>
<div>int n;</div>
<div>void g() {</div>
<div>  const int q = 6;</div>
<div>  int &r = n;</div>
<div>  constexpr int *p = &n;</div>
<div>  struct A {</div>
<div>    void f() {</div>
<div>      int arr[q]; // ok</div>
<div>      r = *p + 1; // ok</div>
<div>    }</div>
<div>  };</div>
<div>}</div>
<div><br>
</div>
<div><a href="https://godbolt.org/z/avG7qx">https://godbolt.org/z/avG7qx</a><br>
</div>
<div><br>
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">
<div>GCC and Clang disagree in a different way about whether it's okay to dereference a
<i>pointer</i> inside a lambda without capturing it; here it's GCC that is doing the crazy thing, and Clang that is reasonably refusing to compile a reference to `x` when `x` hasn't been captured.</div>
<div><a href="https://godbolt.org/z/bjbr3f" target="_blank">https://godbolt.org/z/bjbr3f</a></div>
</div>
</blockquote>
<div><br>
</div>
<div>Yeah, GCC's behavior is not in line with the language rules in the pointer case. I'd guess they're using a more-liberal evaluation mode when evaluating the initializer of the reference, rather than using the strict constant initializer rules, and that
 more-liberal mode permits them to read the initializer values of all const-qualified variables, not only the ones that are usable in constant expressions. (Clang has a more-liberal mode too, and I'd expect we also have bugs where a conforming program can tell
 the difference.)</div>
<div><br>
</div>
<div>The rules in question are approximately equivalent to: if a variable of const integral or enumeration type, or of reference type, can be constexpr, then it is implicitly constexpr. And constexpr variables can be used from anywhere, without triggering an
 odr-use, if only their value, not their address, is used. (We don't actually say such things are implicitly constexpr, and there are corner cases where the outcome is different -- in particular, for static data members, where constexpr implies inline but const
 does not. But "implicitly constexpr" is how they behave.)</div>
<div><br>
</div>
<div>If you change your example to declare the pointer to be constexpr then the two compilers agree again.</div>
<div><br>
</div>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<div dir="ltr">The rules about when compilers are able to "constant-fold" away variables that otherwise would need to be captured, strikes me as similar in spirit to the rules about when compilers are able to "constant-fold" away complicated expressions in
 constant expressions. Some compilers seem to be trying to be "helpful" by letting the optimizer's knowledge leak into the front-end, and some are following the same rules as one's "head compiler" would.<br>
</div>
</blockquote>
<div><br>
</div>
<div>I think this is at least not the proximal cause in the standard-conforming case -- correctly implementing the odr-use rules in the Clang frontend was a non-trivial effort and wasn't related to constant folding / optimizer knowledge leaking through. But
 I do think the standard rules here probably originally came from looking at what implementations at the time happened to do and writing that down (eg, use of a const static data member with no definition is OK, because implementations happen to not emit a
 reference to the symbol), and complexity has built up from that point. I'm not sure where the references-are-implicitly-constexpr part came from, but the const-ints-are-implicitly-constexpr part is a backwards-compatibility concern inherited from C++98.</div>
<div><br>
</div>
<div>From a language design perspective, I think it would have made a lot more sense if we'd said that constexpr variables are implicitly static (so the question of capture or of use from other scopes can be answered trivially), and deprecated the "implicit
 constexpr" behavior for const integral/enumeration variables and references. Where we've ended up isn't a great compromise. But this is really the wrong place to have such discussions :)</div>
</div>
</div>
</div>
</div>
</span></blockquote>
</div>
<div class="bloop_markdown">
<p></p>
</div>
</body>
</html>