[llvm] ConstRange: exhaustively test makeExactICmpRegion (PR #127058)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 13 05:09:23 PST 2025
https://github.com/artagnon created https://github.com/llvm/llvm-project/pull/127058
Exhaustively test makeExactICmpRegion by comparing makeAllowedICmpRegion against makeSatisfyingICmpRegion for all APInts.
>From 17bdd904db70705e86275382556c5c812e286a19 Mon Sep 17 00:00:00 2001
From: Ramkumar Ramachandra <ramkumar.ramachandra at codasip.com>
Date: Thu, 13 Feb 2025 13:04:24 +0000
Subject: [PATCH] ConstRange: exhaustively test makeExactICmpRegion
Exhaustively test makeExactICmpRegion by comparing makeAllowedICmpRegion
against makeSatisfyingICmpRegion for all APInts.
---
llvm/unittests/IR/ConstantRangeTest.cpp | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/llvm/unittests/IR/ConstantRangeTest.cpp b/llvm/unittests/IR/ConstantRangeTest.cpp
index c390ffea1c352..a85e111146c01 100644
--- a/llvm/unittests/IR/ConstantRangeTest.cpp
+++ b/llvm/unittests/IR/ConstantRangeTest.cpp
@@ -1638,6 +1638,17 @@ TEST(ConstantRange, MakeAllowedICmpRegion) {
.isEmptySet());
}
+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