[llvm] 8eba128 - ConstRange: exhaustively test makeExactICmpRegion (#127058)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 17 04:30:11 PST 2025
Author: Ramkumar Ramachandra
Date: 2025-02-17T12:30:07Z
New Revision: 8eba128b2dac8e405b663ef602f85469c3d6edb8
URL: https://github.com/llvm/llvm-project/commit/8eba128b2dac8e405b663ef602f85469c3d6edb8
DIFF: https://github.com/llvm/llvm-project/commit/8eba128b2dac8e405b663ef602f85469c3d6edb8.diff
LOG: ConstRange: exhaustively test makeExactICmpRegion (#127058)
Exhaustively test makeExactICmpRegion by comparing makeAllowedICmpRegion
against makeSatisfyingICmpRegion for all APInts.
Added:
Modified:
llvm/lib/IR/ConstantRange.cpp
llvm/unittests/IR/ConstantRangeTest.cpp
Removed:
################################################################################
diff --git a/llvm/lib/IR/ConstantRange.cpp b/llvm/lib/IR/ConstantRange.cpp
index 41e40cdf365d2..e09c139db39c8 100644
--- a/llvm/lib/IR/ConstantRange.cpp
+++ b/llvm/lib/IR/ConstantRange.cpp
@@ -170,11 +170,10 @@ ConstantRange ConstantRange::makeExactICmpRegion(CmpInst::Predicate Pred,
const APInt &C) {
// Computes the exact range that is equal to both the constant ranges returned
// by makeAllowedICmpRegion and makeSatisfyingICmpRegion. This is always true
- // when RHS is a singleton such as an APInt and so the assert is valid.
- // However for non-singleton RHS, for example ult [2,5) makeAllowedICmpRegion
- // returns [0,4) but makeSatisfyICmpRegion returns [0,2).
+ // when RHS is a singleton such as an APInt. However for non-singleton RHS,
+ // for example ult [2,5) makeAllowedICmpRegion returns [0,4) but
+ // makeSatisfyICmpRegion returns [0,2).
//
- assert(makeAllowedICmpRegion(Pred, C) == makeSatisfyingICmpRegion(Pred, C));
return makeAllowedICmpRegion(Pred, C);
}
diff --git a/llvm/unittests/IR/ConstantRangeTest.cpp b/llvm/unittests/IR/ConstantRangeTest.cpp
index 1bafb52d357fa..bcb5d498c8cb9 100644
--- a/llvm/unittests/IR/ConstantRangeTest.cpp
+++ b/llvm/unittests/IR/ConstantRangeTest.cpp
@@ -1662,6 +1662,17 @@ TEST(ConstantRange, MakeAllowedICmpRegionEdgeCases) {
.isFullSet());
}
+TEST(ConstantRange, MakeExactICmpRegion) {
+ for (unsigned Bits : {1, 4}) {
+ EnumerateAPInts(Bits, [](const APInt &N) {
+ for (auto Pred : ICmpInst::predicates()) {
+ EXPECT_EQ(ConstantRange::makeAllowedICmpRegion(Pred, N),
+ ConstantRange::makeSatisfyingICmpRegion(Pred, N));
+ };
+ });
+ }
+}
+
TEST(ConstantRange, MakeSatisfyingICmpRegion) {
ConstantRange LowHalf(APInt(8, 0), APInt(8, 128));
ConstantRange HighHalf(APInt(8, 128), APInt(8, 0));
More information about the llvm-commits
mailing list