<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Feb 26, 2016 at 7:26 PM, Hal Finkel <span dir="ltr"><<a href="mailto:hfinkel@anl.gov" target="_blank">hfinkel@anl.gov</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">----- Original Message -----<br>
> From: "Chandler Carruth" <<a href="mailto:chandlerc@google.com">chandlerc@google.com</a>><br>
</span><span class="">> To: "Hal Finkel" <<a href="mailto:hfinkel@anl.gov">hfinkel@anl.gov</a>>, "Sanjoy Das" <<a href="mailto:sanjoy@playingwithpointers.com">sanjoy@playingwithpointers.com</a>><br>
</span><span class="">> Cc: "llvm-dev" <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>>, "Philip Reames" <<a href="mailto:listmail@philipreames.com">listmail@philipreames.com</a>>, "Duncan P. N. Exon Smith"<br>
> <<a href="mailto:dexonsmith@apple.com">dexonsmith@apple.com</a>>, "Xinliang David Li" <<a href="mailto:xinliangli@gmail.com">xinliangli@gmail.com</a>><br>
> Sent: Friday, February 26, 2016 9:01:48 PM<br>
> Subject: Re: [llvm-dev] Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")<br>
><br>
><br>
</span><span class="">> I think this will have a much higher cost than my proposal to<br>
> constrain how we deduce function attributes (which still fixes<br>
> Sanjoy's latest example).<br>
><br>
> Specifically, I think this will force us to constrain far too many<br>
> transformations for the sake of code size in functions that we won't<br>
> inline. Even if we were never going to deduce function attributes<br>
> for anything in the function (because its big and reads and writes<br>
> everything), we'll still have to constrain our transformations just<br>
> because we *might* later deduce a function attribute that triggers<br>
> these kinds of bugs.<br>
><br>
> Essentially, you're proposing to limit intraprocedural optimization<br>
> to when we can successfully to interprocedural optimization<br>
> ("privatization"), where I'm suggesting we limit interprocedural<br>
> optimization to leave intraprocedural optimization unconstrained.<br>
> Given the ratio of our optimizations (almost all are intra, very few<br>
> are inter), I'm much more comfortable with the latter.<br>
<br>
</span>This is a good point; we can certainly (easily) delay the privatization decision until we modify any IPA-level function information (at which point we can either reject the attribute change (when optimizing for code size), or keep it locally (when optimizing for speed). Ideally, you'd want to delay this even further (until you knew the attribute information was used), but I'm not sure that's practical.<br>
<br>
Actually, what if instead of actually privatizing, we moved the function into a different comdat section named after some hash of the function body? That way, if all versions are actually optimized identically, we'll still only end up with one copy in the final executable. If this is technically possible, it seems like the best kind of solution.<br></blockquote><div><br></div><div>Funny that you  mention this approach. We are thinking doing this kind of trick in IR based PGO context -- in order to improve profile matching for COMDAT functions (when pre-inlining is enabled, the comdat counters are not guaranteed to match due to possible different inlining ).</div><div><br></div><div>David</div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class="HOEnZb"><font color="#888888"><br>
 -Hal<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
><br>
> On Fri, Feb 26, 2016 at 6:10 PM Hal Finkel < <a href="mailto:hfinkel@anl.gov">hfinkel@anl.gov</a> > wrote:<br>
><br>
><br>
> Hi Sanjoy,<br>
><br>
> These are both very interesting examples, and demonstrate that the<br>
> problems extends beyond function attributes (encompassing<br>
> dead-argument elimination, etc.).<br>
><br>
> I'm beginning to think that the best solution, at least when<br>
> optimizing for speed, is the one that David Li suggested: we need to<br>
> internalize functions that have been optimized in certain ways (e.g.<br>
> instructions with potential side effects are removed). The trick<br>
> here may be to be as intelligent about this as possible to minimize<br>
> the effect on code size. Maybe this is as easy as checking whether<br>
> isSafeToSpeculativelyExecute returns false on the deleted<br>
> instruction? Perhaps when optimizing for size, we need to forbid<br>
> such deletions.<br>
><br>
> Thanks again,<br>
> Hal<br>
><br>
> ----- Original Message -----<br>
> > From: "Sanjoy Das" < <a href="mailto:sanjoy@playingwithpointers.com">sanjoy@playingwithpointers.com</a> ><br>
> > To: "Hal Finkel" < <a href="mailto:hfinkel@anl.gov">hfinkel@anl.gov</a> ><br>
> > Cc: "Chandler Carruth" < <a href="mailto:chandlerc@google.com">chandlerc@google.com</a> >, "llvm-dev" <<br>
> > <a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a> >, "Philip Reames"<br>
> > < <a href="mailto:listmail@philipreames.com">listmail@philipreames.com</a> >, "Duncan P. N. Exon Smith" <<br>
> > <a href="mailto:dexonsmith@apple.com">dexonsmith@apple.com</a> ><br>
> > Sent: Thursday, February 25, 2016 11:59:27 AM<br>
> > Subject: Re: [llvm-dev] Possible soundness issue with<br>
> > available_externally (split from "RFC: Add guard intrinsics")<br>
> ><br>
> > Couple of other examples:<br>
> ><br>
> > void @foo(i32* %ptr) available_externally {<br>
> > %discard = load i32, i32* %ptr<br>
> > }<br>
> > void bar() {<br>
> > call @foo(i32* %x)<br>
> > }<br>
> ><br>
> > ==><br>
> ><br>
> > void @foo(i32* %ptr) available_externally {<br>
> > }<br>
> > void bar() {<br>
> > call @foo(i32* %x)<br>
> > }<br>
> ><br>
> > ==><br>
> ><br>
> > void @foo(i32* %ptr) available_externally {<br>
> > }<br>
> > void bar() {<br>
> > call @foo(i32* undef) ;; non optimized @foo will crash<br>
> > }<br>
> ><br>
> > ;; Similar example if @foo was dividing something by an integer<br>
> > ;; argument<br>
> ><br>
> > We've actually seen the above in our VM (though back then we<br>
> > didn't realize that the problem was more general than the one<br>
> > case above).<br>
> ><br>
> > Another one involving `undef` (semantically same as "folding<br>
> > undef",<br>
> > but different enough to state separately):<br>
> ><br>
> > void @foo(i32* %ptr) available_externally {<br>
> > store i32 undef, i32* %ptr<br>
> > }<br>
> > void bar() {<br>
> > %val = load i32, i32* %x<br>
> > call @foo(i32* %x)<br>
> > }<br>
> ><br>
> > ==><br>
> ><br>
> > void @foo(i32* %ptr) readonly available_externally {<br>
> > }<br>
> > void bar() {<br>
> > %val = load i32, i32* %x<br>
> > call @foo(i32* %x)<br>
> > }<br>
> ><br>
> > ==><br>
> ><br>
> > void @foo(i32* %ptr) readonly available_externally {<br>
> > }<br>
> > void bar() {<br>
> > call @foo(i32* %x)<br>
> > %val = load i32, i32* %x<br>
> > }<br>
> ><br>
> > With a non-optimized @foo, %val can be garbage.<br>
> ><br>
> ><br>
> > I'll also note we've not really had bug reports (that I'm aware of)<br>
> > around this issue. Given that, it is possible that this is a purely<br>
> > theoretical problem.<br>
> ><br>
> > -- Sanjoy<br>
> ><br>
><br>
> --<br>
> Hal Finkel<br>
> Assistant Computational Scientist<br>
> Leadership Computing Facility<br>
> Argonne National Laboratory<br>
><br>
<br>
--<br>
Hal Finkel<br>
Assistant Computational Scientist<br>
Leadership Computing Facility<br>
Argonne National Laboratory<br>
</div></div></blockquote></div><br></div></div>