<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">On Mon, Aug 31, 2015 at 11:49 AM David Blaikie <<a href="mailto:dblaikie@gmail.com">dblaikie@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Mon, Aug 31, 2015 at 11:44 AM, Duncan P. N. Exon Smith via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span><br>
> On 2015-Aug-31, at 11:41, Eric Christopher <<a href="mailto:echristo@gmail.com" target="_blank">echristo@gmail.com</a>> wrote:<br>
><br>
><br>
><br>
> On Mon, Aug 31, 2015 at 11:40 AM Duncan P. N. Exon Smith via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
><br>
> > On 2015-Aug-31, at 10:42, Reid Kleckner <<a href="mailto:rnk@google.com" target="_blank">rnk@google.com</a>> wrote:<br>
> ><br>
> > On Mon, Aug 31, 2015 at 10:12 AM, Rafael Espíndola <<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>> wrote:<br>
> ><br>
> > > Not sure I follow? Generally LTO inputs are going to be "user provided" (in the sense that they're not produced immediately prior by the same process - or you'd have just produced a single Module in the first place, I would imagine) so changing the default still seems problematic in the sense of allowing 'unbounded' input without verification...<br>
> ><br>
> > The common case is for the bitcode to be generated by a paired clang. Even when it is an old bitcode compiled module, the Module itself is created by the bitcode reader.<br>
> ><br>
> > Sure, but it is not uncommon to LTO with old bitcode. We all know it's pretty easy to crash LLVM with bad bitcode or bad IR. These interfaces are not thoroughly tested.<br>
> ><br>
> > I think verifying the result of the bitcode reader by default during LTO is probably the right thing for the foreseeable future. It's the only thing that has any hope of telling the user something useful when things go wrong.<br>
> ><br>
> > I'd like it if we spent a little effort understanding why it's slow before flipping it off. Maybe the verifier is running multiple times, instead of after deserialization. We shouldn't need that in release builds.<br>
><br>
> LTO runs the verifier three times:<br>
><br>
>  1. On each input module after it's parsed from bitcode.<br>
>  2. At the beginning of the optimization pipeline (post lib/Linker).<br>
>  3. At the end of the optimization pipeline.<br>
><br>
> If we're worried about user input, then I agree we should still run it<br>
> at (1).  But I don't think we need to run it at (2) and (3).  Maybe we<br>
> agree on this?<br>
><br>
><br>
> I agree. The last two in debug mode perhaps?<br>
<br>
</span>I figure it'd still be nice to be able to control it explicitly, so have<br>
the clang driver pass -disable-llvm-verifier in no-asserts, but *always*<br>
verify (1) regardless of that option.  IOW, that makes sense to me :).<br></blockquote><div><br></div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Sure, something like that could be reasonable.<br><br>(essentially anything that parallels clang's behavior when given bitcode/IR as direct input I think is the right model (they should be consistent, and perhaps there's stuff we need to discuss about what set of things will be the consistent behavior, but something like "sanitize inputs, assume intermediate results are valid (if they aren't, it's bugs) and verify intermediate results in +Asserts builds", maybe.. *shrug*))</div></div></div></div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div> </div></div></div></div></blockquote><div><br></div><div>Yep. This is where I was going :)</div><div><br></div><div>-eric</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div><div><br>
> -eric<br>
><br>
> Someone asked elsewhere in the thread about numbers: I had a look at a<br>
> CPU profile (for linking verify-uselistorder with debug info).  For<br>
> this (not-necessarily-representative) sample, (1) takes 1.6% of ld64<br>
> runtime, and (2) and (3) combined take 3.2% of ld64 runtime.  Total of<br>
> 4.8%.<br>
> _______________________________________________<br>
> LLVM Developers mailing list<br>
> <a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div></div></div></blockquote></div></div>