summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms
diff options
context:
space:
mode:
authorHal Finkel <hfinkel@anl.gov>2015-08-19 01:51:51 +0000
committerHal Finkel <hfinkel@anl.gov>2015-08-19 01:51:51 +0000
commita8d205f14504b13448892081cc19a9accb0d566c (patch)
treed1a9ae6a95ea2c4bd08a121fcc0914ec616da093 /llvm/lib/Transforms
parentfdcf541871a1ae1ed56575f4ca3c59a6d6423483 (diff)
downloadbcm5719-llvm-a8d205f14504b13448892081cc19a9accb0d566c.tar.gz
bcm5719-llvm-a8d205f14504b13448892081cc19a9accb0d566c.zip
Make ScalarEvolution::isKnownPredicate a little smarter
Here we make ScalarEvolution::isKnownPredicate, indirectly, a little smarter. Given some relational comparison operator OP, and two AddRec SCEVs, {I,+,S} OP {J,+,T}, we can reduce this to the comparison I OP J when S == T, both AddRecs are for the same loop, and both are known not to wrap. As it turns out, because of the way that backedge-guard expressions can be leveraged when computing known predicates, this allows indvars to simplify the if-statement comparison in this loop: void foo (int *a, int *b, int n) { for (int i = 0; i < n; ++i) { if (i > n) a[i] = b[i] + 1; } } which, somewhat surprisingly, we were not previously optimizing away. llvm-svn: 245400
Diffstat (limited to 'llvm/lib/Transforms')
0 files changed, 0 insertions, 0 deletions
OpenPOWER on IntegriCloud