<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: arial,helvetica,sans-serif; font-size: 10pt; color: #000000'><br><hr id="zwchr"><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px; color: rgb(0, 0, 0); font-weight: normal; font-style: normal; text-decoration: none; font-family: Helvetica,Arial,sans-serif; font-size: 12pt;"><b>From: </b>"Chandler Carruth" <chandlerc@google.com><br><b>To: </b>"Hal Finkel" <hfinkel@anl.gov><br><b>Cc: </b>"llvm-dev" <llvm-dev@lists.llvm.org>, "Philip Reames" <listmail@philipreames.com>, "Duncan P. N. Exon Smith" <dexonsmith@apple.com>, "Sanjoy Das" <sanjoy@playingwithpointers.com><br><b>Sent: </b>Thursday, February 25, 2016 1:36:52 AM<br><b>Subject: </b>Re: [llvm-dev] Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")<br><br><div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Wed, Feb 24, 2016 at 11:18 PM Hal Finkel <<a href="mailto:hfinkel@anl.gov" target="_blank">hfinkel@anl.gov</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;"><hr id="zwchr">
> From: "Chandler Carruth" <<a href="mailto:chandlerc@google.com" target="_blank">chandlerc@google.com</a>><br>
> To: "Sanjoy Das" <<a href="mailto:sanjoy@playingwithpointers.com" target="_blank">sanjoy@playingwithpointers.com</a>>, "Hal Finkel" <<a href="mailto:hfinkel@anl.gov" target="_blank">hfinkel@anl.gov</a>><br>
> Cc: "llvm-dev" <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>>, "Philip Reames" <<a href="mailto:listmail@philipreames.com" target="_blank">listmail@philipreames.com</a>>, "Duncan P. N. Exon Smith"<br>
> <<a href="mailto:dexonsmith@apple.com" target="_blank">dexonsmith@apple.com</a>><br>
> Sent: Thursday, February 25, 2016 12:40:53 AM<br>
> Subject: Re: [llvm-dev] Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")<br>
><br>
><br>
><br>
><br>
> On Wed, Feb 24, 2016 at 10:25 PM Sanjoy Das <<br>
> <a href="mailto:sanjoy@playingwithpointers.com" target="_blank">sanjoy@playingwithpointers.com</a> > wrote:<br>
><br>
><br>
><br>
> Hal Finkel wrote:<br>
><br>
> > But it is not all optimizations that are the problem. Rather, it<br>
> > seems like a select few (e.g. things involving collapsing allowed<br>
> > non-determinism in atomics), and losing those optimizations seems<br>
> > better than generally losing function-attribute deduction.<br>
><br>
> If we go by the langref, then optimizations that fold undef are also<br>
> problematic (though most C/C++ programs resulting in such IR would<br>
> have UB in practice).<br>
><br>
><br>
><br>
> I'm also concerned about undef. It isn't clear that we can reasonably<br>
> ensure that all things involving undef suitably stem from UB in the<br>
> face of speculation to preclude all "impossible" results coming from<br>
> interposition.<br>
><br>
><br>
> I think trying to enumerate the function-local optimizations which<br>
> are unsafe is *much* more challenging than identifying the<br>
> interprocedural optimizations which are unsafe, which is essentially<br>
> what disabling function attribute deduction is doing.<br>
><br>
<br>
It might be much more challenging, but let's try. This is not an issue we need to fix by the end of the month, and the potential optimization regressions are significant. Our deductions of readonly/readnone/nocapture/etc. are really important for enabling other optimizations. Given that all of our C++ constructors, inline functions, etc. end up in comdat sections, this is really important.<br></blockquote><div><br></div><div id="DWT43786">Well, no one has really commented on my ideas to mitigate the issue.. I'm actually much less concerned in the face of those ideas.</div></div></div></blockquote><br>I think that, should we need to go down that path, your plan is a good base. I'm still not convinced that is necessary.<br><br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px; color: rgb(0, 0, 0); font-weight: normal; font-style: normal; text-decoration: none; font-family: Helvetica,Arial,sans-serif; font-size: 12pt;"><div dir="ltr"><div class="gmail_quote"><div></div><div><br></div><div id="DWT43784">But given that we can't even formulate a good statement of what transforms would necessarily have to be forbidden, I think we should get to a sound state first, and then work on more aggressive models to use.</div></div></div></blockquote>Right, we've not done so in the last half day; I think the discussions on this issue have been very productive, and the examples being discussed are helping to frame what such a statement might contain. We should exhaust this line of reasoning before making a decision.<br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px; color: rgb(0, 0, 0); font-weight: normal; font-style: normal; text-decoration: none; font-family: Helvetica,Arial,sans-serif; font-size: 12pt;"><div dir="ltr"><div class="gmail_quote"><div></div><div><br></div><div id="DWT43785">I think that coming up with something that is really sound is going to be incredibly hard here because I think it will be tantamount to removing the concept of undef entirely and the entire optimizer's reliance on it. And most of the obvious ideas to replace it I think will have the same challenges as undef.</div></div></div></blockquote>I'll await an example here that does not rely on a safe-to-speculate attribute that we don't yet have before drawing any conclusions.<br><br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px; color: rgb(0, 0, 0); font-weight: normal; font-style: normal; text-decoration: none; font-family: Helvetica,Arial,sans-serif; font-size: 12pt;"><div dir="ltr"><div class="gmail_quote"><div></div><div><br></div><div>We're also, meanwhile, going to have to dramatically curtail our investigation of more exciting IPO opportunities because all of them bust be carefully examined to not trigger these issues more directly.</div><div><br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">> All of this makes me think we're just seeing the tip of the iceberg<br>
> of ways in which local optimizations can combine with attributes to<br>
> break this. =/ I really think the problem is as Richard describes<br>
> the interprocedural movement of information across a comdat-like<br>
> boundary where replacements may occur with differently transformed<br>
> code.<br>
<br>
Yes, but it is not *all* information that is relevant here.<br></blockquote><div><br></div><div>True. It is any information which is not necessarily the same in all (possibly transformed or untransformed) variants of the function.<br></div><div><br></div><div id="DWT43787">My only confident summary of that is: "the information we can deduce prior to any transformations". It sounds like you think we can effectively preclude any such transformations on functions with ODR. I think that this will end up being extraordinarily limiting if we can do it at all. It certainly isn't the optimizer we have today, and would require changes all over...</div></div></div></blockquote><br>That summary needs unnecessarily broad. So far we've learned that: a) There are issues with atomics b) there are issues with a safe-to-speculate attribute we don't yet have c) there might be issues with folding undefs independent of the previous two items, but we thus-far lack a concrete example. We don't yet have enough information.<br><br> -Hal<br><br><blockquote style="border-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px; color: rgb(0, 0, 0); font-weight: normal; font-style: normal; text-decoration: none; font-family: Helvetica,Arial,sans-serif; font-size: 12pt;"><div dir="ltr"><div class="gmail_quote"><div></div><div><br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<br>
 -Hal<br>
<br>
--<br>
Hal Finkel<br>
Assistant Computational Scientist<br>
Leadership Computing Facility<br>
Argonne National Laboratory<br>
</blockquote></div></div>
</blockquote><br><br><br>-- <br><div><span name="x"></span>Hal Finkel<br>Assistant Computational Scientist<br>Leadership Computing Facility<br>Argonne National Laboratory<span name="x"></span><br></div></div></body></html>