<div dir="ltr"><div><div><div><div>Is "VRP" (value range propagation) in LLVM-speak "CVP" (correlated value propagation)?<br><br></div>If so, we have this comment regarding compares:<br>  // As a policy choice, we choose not to waste compile time on anything where<br>  // the comparison is testing local values.<br><br>Or this for div/rem:<br>  // As a policy choice, we choose not<br>  // to waste compile time on anything where the operands are local defs.<br></div><br>"Local" means in the same basic block from what I can tell by the code here. <br><br>I think this means that this pass explicitly defers handling simple cases like:<br><a href="https://reviews.llvm.org/D33342">https://reviews.llvm.org/D33342</a><br></div>...to another pass, and currently that pass is InstCombine (because the patterns really can't be any simpler than the tests in that patch, right?).<br><br></div><div><div>I think that improving compile-time should not preclude improving InstCombine. We should do both.<br></div><div><div><br></div></div></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, May 18, 2017 at 5:25 PM, Davide Italiano <span dir="ltr"><<a href="mailto:davide@freebsd.org" target="_blank">davide@freebsd.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Thu, May 18, 2017 at 4:20 PM, Sanjay Patel <<a href="mailto:spatel@rotateright.com">spatel@rotateright.com</a>> wrote:<br>
> No, I haven't looked at VRP yet, so I don't know why it's not handled there.<br>
> I was assuming that since InstSimplify/InstCombine already have a large<br>
> chunk of folds for the and/or variants, it would make sense to also handle<br>
> xor there.<br>
><br>
<br>
</span>It depends. I think InstCombine should always try to get the<br>
"easy/cheap" cases (and in general make local decisions) and then<br>
leave more complex transformations to other passes. I think auditing<br>
what's good and what's not to do in InstCombine will be a major<br>
undertaken in LLVM, but at some point we should just bite the bullet<br>
and do it :) (side effect, reduced number of matchers would improve<br>
compile time).<br>
<span class=""><br>
> I have a patch in progress that would handle these cases using the existing<br>
> code (truth tables!). Let me post that for review and see what you think<br>
> about it.<br>
><br>
<br>
</span>Thanks. Feel free to always post mock-ups for review.<br>
<br>
--<br>
Davide<br>
</blockquote></div><br></div>