]> granicus.if.org Git - llvm/commit
[ScalarEvolution] Predicate implication from operations
authorMax Kazantsev <max.kazantsev@azul.com>
Wed, 22 Mar 2017 04:48:46 +0000 (04:48 +0000)
committerMax Kazantsev <max.kazantsev@azul.com>
Wed, 22 Mar 2017 04:48:46 +0000 (04:48 +0000)
commit767f8ddf17f59c0ff3314b6ec9dbd69531a089a2
tree24e7362bb3c5a748f3bfd42b635b726d5f3aa390
parent81e6d00cf5279c0829622dc5e6d867805544873b
[ScalarEvolution] Predicate implication from operations

This patch allows SCEV predicate analysis to prove implication of some expression predicates
from context predicates related to arguments of those expressions.
It introduces three new rules:

For addition:
  (A >X && B >= 0) || (B >= 0 && A > X) ===> (A + B) > X.

For division:
  (A > X) && (0 < B <= X + 1) ===> (A / B > 0).
  (A > X) && (-B <= X < 0) ===> (A / B >= 0).

Using these rules, SCEV is able to prove facts like "if X > 1 then X / 2 > 0".
They can also be combined with the same context, to prove more complex expressions like
"if X > 1 then X/2 + 1 > 1".

Diffirential Revision: https://reviews.llvm.org/D30887

Reviewed by: sanjoy

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298481 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/Analysis/ScalarEvolution.h
lib/Analysis/ScalarEvolution.cpp
test/Analysis/ScalarEvolution/scev-division.ll [new file with mode: 0644]