<div dir="ltr"><div>I don't think you can easily substitute constexpr evaluation with simply calling a compiled counterpart. Unfortunately, they differ in semantics.</div><div>During constexpr evaluation AFAIK we should diagnose undefined behavior. Simply substituting the constexpr evaluation with calling the binary version would not diagnose that - assuming that we don't want to pessimize the runtime version of the function with eg. sanitizers. The issue is the same for optimizations. The only way you could safely do this if you could prove that for the given input this function will not exhibit undefined behavior. For a given value, interpretation is a way of checking this, but for **all** possible values, it seems really tough.<br><br></div><div>How does constexpr evaluation differ from javascript evaluation in browsers?<br></div><div>They are doing just-in-time compilation. Maybe that is the future of constexpr evaluation. Hal Finkel experimented with similar stuff in C++ if I'm correct.<br></div><div>He might have some thoughts about this.<br></div><div>Could someone CC him?<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">David Rector via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>> ezt írta (időpont: 2021. márc. 4., Cs, 17:15):<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 style="overflow-wrap: break-word;"><div style="margin:0px;font-stretch:normal;line-height:normal">One more vein of thought re constexpr evaluation speed, the new constexpr interpreter, and in particular how the C++ standard could be tweaked to allow us to use existing LLVM optimizations to really turbocharge code with heavy constexpr usage.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Caveat: my knowledge is mostly about the AST; I know very little about the ABI/calling conventions/LLVM etc, which are implicated here.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Motivation: it seems to me that constexpr evaluations will get very complex in the future, and we should plan for it.  In particular, I have been fighting a bit of a battle on the SG7 list to ensure the reflection + injection facilities will be sufficiently general to allow most design patterns to be rendered obsolete via metafunctions, and I think we came to a rough agreement that this is indeed a worthy and viable goal.  </div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">But this will involve some very complex metaprogramming.  Indeed, constexpr programming may well become more complex than non-constexpr programming once reflection + injection get involved, and in fact *that would be the ideal*.  Let the user automate the tasks which make C++ programming complex, but via customizable libraries from which they can pick and choose and modify, rather than endless fixed appendages to the language.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">But as users constexpr all the things, so must compilers consider how best to constexpr all their optimizations.  Why rewrite optimizations specific to constexpr functions which have already been written into LLVM?</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">The RFC for the new constexpr intepreter has some good discussion, and seems to present an opportunity.  In particular I’m looking at the comments here: </div><div style="margin:0px;font-stretch:normal;line-height:normal"><a href="https://lists.llvm.org/pipermail/cfe-dev/2019-July/062807.html" target="_blank">https://lists.llvm.org/pipermail/cfe-dev/2019-July/062807.html</a>, and in particular this response to Richard from Nandor:</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;font-size:13px;line-height:normal;font-family:Courier"><span style="font-kerning:none">> ><i>  * The current APValue representation is extremely bloated. Each instance is 72 bytes, and every subobject of an object is stored as a distinct APValue, so for instance a single char[128] variable will often occupy 9288 bytes of storage and incurs 128 distinct memory allocations.</i></span></div><div style="margin:0px;font-stretch:normal;font-size:13px;line-height:normal;font-family:Courier"><span style="font-stretch:normal;font-size:12px;line-height:normal;font-family:Helvetica">>  </span><span style="font-kerning:none">Arrays and structures will be stored in a compact, contiguous form in memory, so we can save a lot of space here.</span></div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Suppose we go a short step further and store that data in compliance with the ABI just like it were run-time data (with the proper alignment, offsets etc of subobjects).  </div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Then, suppose this were permissible code:</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">```</div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">// foo.h</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">struct A { constexpr A() {} … };</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">constexpr int foo(A a);</font></div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><font face="Menlo"><br></font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">// foo.cpp</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">constexpr int foo(A a) { </font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">  // Complicated functions, lots of loops etc. which</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">  // can be well-optimized by LLVM…</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">}</font></div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><font face="Menlo"><br></font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">// main.cpp (must be compiled AFTER foo.cpp, or error)</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">#include "foo.h"</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">template<int N> class Dummy {};</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">int main() {</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">  constexpr A a{};</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">  Dummy<foo(a)> d;</font></div><div style="margin:0px;font-stretch:normal;line-height:normal"><font face="Menlo">}</font></div><div style="margin:0px;font-stretch:normal;line-height:normal">```</div><div style="margin:0px;font-stretch:normal;line-height:normal"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Upon being called to evaluate `foo(a)`, the interpreter would determine that this function has already been fully compiled into binary, *and* was marked constexpr (so we know there is no funny business in the definition), and therefore it can simply call that function directly, in whatever manner LLVM would call such a function, i.e. passing the raw data in accordance with the ABI.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">This would seemingly allow us to benefit from optimizations written only for lowered versions of that code, for particularly-complicated constexpr code that warrant it — the user need only a) put the definitions in separate cpps/libraries, and b) ensure they are built before any translation units which depend on them.  For trivial constexpr evaluation, nothing need change.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Thoughts?  Is this remotely viable/sensible?</div><div style="margin:0px;font-stretch:normal;line-height:normal"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Dave</div><div><br><blockquote type="cite"><div>On Mar 2, 2021, at 11:28 PM, David Rector <<a href="mailto:davrecthreads@gmail.com" target="_blank">davrecthreads@gmail.com</a>> wrote:</div><br><div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br><br><blockquote type="cite"><div>On Mar 2, 2021, at 10:03 PM, Richard Smith <<a href="mailto:richard@metafoo.co.uk" target="_blank">richard@metafoo.co.uk</a>> wrote:</div><br><div><div dir="ltr" style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><div dir="ltr">On Tue, 2 Mar 2021 at 16:46, David Rector via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</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><div style="margin:0px;font-stretch:normal;line-height:normal">I was reading <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1240r1.pdf" target="_blank">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2019/p1240r1.pdf</a>, which describes proposed reflection features currently under advanced consideration.  </div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">On page 5, the authors give their rationale for defining `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">reflexpr(x)</span>` to return an object of an opaque builtin type called `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">meta::info</span>`, which is useful only when passed to other builtin functions able to access its various properties for different reflected entities.  This design is favored over the alternative of defining it to return an AST-class-like object specific to each reflected entity (ReflectedDeclaration, ReflectedStatement etc.).  </div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">In other words given this design the user must write e.g. `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">meta::parameters_of(reflexpr(somefunc))</span>` instead of e.g. `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">reflexpr(somefunc)->parameters()</span>`.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">One rationale the authors give for this choice is that they found that accessing subobjects of a constexpr class object is significantly slower than accessing values which are not subobjects, all else being equal.  The authors present an example on pp 5-6.  </div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">I tried to reproduce this example and their results in CompilerExplorer, and was mostly just shocked at the apparent orders-of-magnitude-differences between GCC (by far the fastest), Clang, and MSVC (by far the slowest) at both constant-evaluation tasks.</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Example A (NB `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">f()</span>` deals only with complete objects):</div><div style="margin:0px;font-stretch:normal;line-height:normal"><a href="https://godbolt.org/z/TM5Wb6" target="_blank">https://godbolt.org/z/TM5Wb6</a></div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Example B (same as A, except `<span style="font-stretch:normal;line-height:normal;font-family:Menlo">f()</span>` now defined to dig through subobjects to get the data it needs):</div><div style="margin:0px;font-stretch:normal;line-height:normal"><a href="https://godbolt.org/z/5dPq3W" target="_blank">https://godbolt.org/z/5dPq3W</a></div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Results of 5 trials:</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">                   <span> </span>__Compilation_times__</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">A</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">GCC  (1793B):   337,   408,   325,   435,   242 ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">Clang (218B):  9361,  5173,  4066,  5698,  4263 ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">MSVC  (306B): 21850, 24616, 24957, 24925, 32323 ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">B</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">GCC  (2295B):   471,   319,   403,   309,   323 ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">Clang (218B): 17073, 15540, 17281, 13385, 18540 ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo">MSVC   (n/a): always >60k ms</div><div style="margin:0px;font-stretch:normal;line-height:normal;font-family:Menlo;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Takeaways:</div><div style="margin:0px;font-stretch:normal;line-height:normal">1. Clang performs constant evaluation 10-50 times slower than GCC.</div><div style="margin:0px;font-stretch:normal;line-height:normal">2. While Clang performs B ~3 times slower than it performs A, it is not clear that GCC is likewise affected by having to dig through subobjects (if it is, the effect is slight).</div><div style="margin:0px;font-stretch:normal;line-height:normal;min-height:14px"><br></div><div style="margin:0px;font-stretch:normal;line-height:normal">Questions:</div><div style="margin:0px;font-stretch:normal;line-height:normal">1. What am I missing?  Are there flags which might improve clang’s performance?  Is GCC somehow gaining an unfair advantage?  (Potential clue: note that the executable is the same small size, 218 bytes, for each of clang’s results, but it is larger and differs for GCC’s results…meaningful?)  </div></div></blockquote><div><br></div><div>Yes, GCC is "cheating" (you're not testing what you think you are). GCC memoizes constant evaluations (at least when it's correct to do so). Here's a slightly modified version of your A that doesn't permit memoization: <a href="https://godbolt.org/z/3q3TYr" target="_blank">https://godbolt.org/z/3q3TYr</a></div><div><br></div><div>5 trials with that and GCC (1793B):  12340, 11106, 10204, 9983, 10771ms</div><div><br></div><div>(Times for Clang and MSVC seem similar to your measurements.) I don't know if compiler explorer uses the same machines for all compiles, or if all compilers are built in fully-optimized mode, but if so, that suggests that Clang is about 2x faster than GCC for this particular testcase.</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><div style="margin:0px;font-stretch:normal;line-height:normal">2. Given the "constexpr all the things" zeitgeist, and the constant evaluation speeds GCC has apparently realized, should the design of ExprConstant.cpp/APValue/etc. be reconsidered?</div></div></blockquote><div><br></div><div>Ignoring the part about GCC, yes. We have a -fexperimental-new-constant-interpreter flag that enables a new interpreter, which was built to be substantially faster. Unfortunately it's not complete yet (the version in trunk doesn't support any looping constructs yet) but the early indications are very promising.</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><div style="margin:0px;font-stretch:normal;line-height:normal">3. If ExprConstant.cpp etc were overhauled for optimal speed, will it still ultimately be true that programs which dig through subobjects of compile time objects are necessarily slower than equivalent programs which deal only with complete compile-time objects?</div></div></blockquote><div><br></div><div>I don't think that would necessarily be the case. I've also mentioned that in committee, but "one compiler can do X" doesn't necessarily translate into "everyone will do X", and folks representing other compilers have indicated they expect the more "bare-bones" approach will remain faster for their implementations.</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div><div><br></div></div></blockquote></div></div></div></blockquote><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">Thanks Richard, very thorough answer; that adjustment does indeed turn the tables on GCC.  Clang takes the gold, and that’s before even the fancy new interpreter is deployed.  Looking forward to it.</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">Assuming like machines are running the various compilers on CompilerExplorer, I think we can all hazard a pretty good guess at this point which particular compiler really benefits from keeping things as bare bones as possible ;)</div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none"><br></div><div style="font-family:Helvetica;font-size:12px;font-style:normal;font-variant-caps:normal;font-weight:normal;letter-spacing:normal;text-align:start;text-indent:0px;text-transform:none;white-space:normal;word-spacing:0px;text-decoration:none">Dave</div></div></blockquote></div><br></div>_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank">cfe-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div>