[llvm] db22e70 - [ConstraintSolver] Add isConditionImplied helper.
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Sep 15 06:10:28 PDT 2020
Author: Florian Hahn
Date: 2020-09-15T13:50:11+01:00
New Revision: db22e70d010744573df19d69ed3de5b84ea60d1c
URL: https://github.com/llvm/llvm-project/commit/db22e70d010744573df19d69ed3de5b84ea60d1c
DIFF: https://github.com/llvm/llvm-project/commit/db22e70d010744573df19d69ed3de5b84ea60d1c.diff
LOG: [ConstraintSolver] Add isConditionImplied helper.
This patch adds a isConditionImplied function that
takes a constraint and returns true if the constraint
is implied by the current constraints in the system.
Reviewed By: spatel
Differential Revision: https://reviews.llvm.org/D84545
Added:
Modified:
llvm/include/llvm/Analysis/ConstraintSystem.h
llvm/lib/Analysis/ConstraintSystem.cpp
llvm/unittests/Analysis/ConstraintSystemTest.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/Analysis/ConstraintSystem.h b/llvm/include/llvm/Analysis/ConstraintSystem.h
index 7de787c1fc39..01f09f3daaaa 100644
--- a/llvm/include/llvm/Analysis/ConstraintSystem.h
+++ b/llvm/include/llvm/Analysis/ConstraintSystem.h
@@ -51,6 +51,17 @@ class ConstraintSystem {
/// Returns true if there may be a solution for the constraints in the system.
bool mayHaveSolution();
+
+ static SmallVector<int64_t, 8> negate(SmallVector<int64_t, 8> R) {
+ // The negated constraint R is obtained by multiplying by -1 and adding 1 to
+ // the constant.
+ R[0] += 1;
+ for (auto &C : R)
+ C *= -1;
+ return R;
+ }
+
+ bool isConditionImplied(SmallVector<int64_t, 8> R);
};
} // namespace llvm
diff --git a/llvm/lib/Analysis/ConstraintSystem.cpp b/llvm/lib/Analysis/ConstraintSystem.cpp
index 21115fc946e9..818cfe0a171e 100644
--- a/llvm/lib/Analysis/ConstraintSystem.cpp
+++ b/llvm/lib/Analysis/ConstraintSystem.cpp
@@ -140,3 +140,13 @@ bool ConstraintSystem::mayHaveSolution() {
LLVM_DEBUG(dbgs() << (HasSolution ? "sat" : "unsat") << "\n");
return HasSolution;
}
+
+bool ConstraintSystem::isConditionImplied(SmallVector<int64_t, 8> R) {
+ // If there is no solution with the negation of R added to the system, the
+ // condition must hold based on the existing constraints.
+ R = ConstraintSystem::negate(R);
+
+ auto NewSystem = *this;
+ NewSystem.addVariableRow(R);
+ return !NewSystem.mayHaveSolution();
+}
diff --git a/llvm/unittests/Analysis/ConstraintSystemTest.cpp b/llvm/unittests/Analysis/ConstraintSystemTest.cpp
index 2301da7ec296..337a11163418 100644
--- a/llvm/unittests/Analysis/ConstraintSystemTest.cpp
+++ b/llvm/unittests/Analysis/ConstraintSystemTest.cpp
@@ -13,7 +13,7 @@ using namespace llvm;
namespace {
-TEST(ConstraintSloverTest, TestSolutionChecks) {
+TEST(ConstraintSolverTest, TestSolutionChecks) {
{
ConstraintSystem CS;
// x + y <= 10, x >= 5, y >= 6, x <= 10, y <= 10
@@ -79,4 +79,75 @@ TEST(ConstraintSloverTest, TestSolutionChecks) {
EXPECT_TRUE(CS.mayHaveSolution());
}
}
+
+TEST(ConstraintSolverTest, IsConditionImplied) {
+ {
+ // For the test below, we assume we know
+ // x <= 5 && y <= 3
+ ConstraintSystem CS;
+ CS.addVariableRow({5, 1, 0});
+ CS.addVariableRow({3, 0, 1});
+
+ // x + y <= 6 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({6, 1, 1}));
+ // x + y <= 7 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({7, 1, 1}));
+ // x + y <= 8 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({8, 1, 1}));
+
+ // 2 * x + y <= 12 does hold.
+ EXPECT_FALSE(CS.isConditionImplied({12, 2, 1}));
+ // 2 * x + y <= 13 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({13, 2, 1}));
+
+ // x + y <= 12 does hold.
+ EXPECT_FALSE(CS.isConditionImplied({12, 2, 1}));
+ // 2 * x + y <= 13 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({13, 2, 1}));
+
+ // x <= y == x - y <= 0 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({0, 1, -1}));
+ // y <= x == -x + y <= 0 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({0, -1, 1}));
+ }
+
+ {
+ // For the test below, we assume we know
+ // x + 1 <= y + 1 == x - y <= 0
+ ConstraintSystem CS;
+ CS.addVariableRow({0, 1, -1});
+
+ // x <= y == x - y <= 0 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({0, 1, -1}));
+ // y <= x == -x + y <= 0 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({0, -1, 1}));
+
+ // x <= y + 10 == x - y <= 10 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({10, 1, -1}));
+ // x + 10 <= y == x - y <= -10 does NOT hold.
+ EXPECT_FALSE(CS.isConditionImplied({-10, 1, -1}));
+ }
+
+ {
+ // For the test below, we assume we know
+ // x <= y == x - y <= 0
+ // y <= z == y - x <= 0
+ ConstraintSystem CS;
+ CS.addVariableRow({0, 1, -1, 0});
+ CS.addVariableRow({0, 0, 1, -1});
+
+ // z <= y == -y + z <= 0 does not hold.
+ EXPECT_FALSE(CS.isConditionImplied({0, 0, -1, 1}));
+ // x <= z == x - z <= 0 does hold.
+ EXPECT_TRUE(CS.isConditionImplied({0, 1, 0, -1}));
+ }
+}
+
+TEST(ConstraintSolverTest, IsConditionImpliedOverflow) {
+ ConstraintSystem CS;
+ // Make sure isConditionImplied returns false when there is an overflow.
+ int64_t Limit = std::numeric_limits<int64_t>::max();
+ CS.addVariableRow({Limit - 1, Limit - 2, Limit - 3});
+ EXPECT_FALSE(CS.isConditionImplied({Limit - 1, Limit - 2, Limit - 3}));
+}
} // namespace
More information about the llvm-commits
mailing list