[llvm] goldsteinn/kb both sides (PR #82818)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 23 11:32:31 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-analysis
Author: None (goldsteinn)
<details>
<summary>Changes</summary>
- **[ValueTracking] Add tests for tracking `(and/or cond0**
- **[ValueTracking] Compute knownbits for `(and/or cond0**
---
Full diff: https://github.com/llvm/llvm-project/pull/82818.diff
2 Files Affected:
- (modified) llvm/lib/Analysis/ValueTracking.cpp (+11-4)
- (modified) llvm/test/Transforms/InstCombine/known-bits.ll (+59)
``````````diff
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp
index 653b3d4ffd9883..562b1e574aea4d 100644
--- a/llvm/lib/Analysis/ValueTracking.cpp
+++ b/llvm/lib/Analysis/ValueTracking.cpp
@@ -711,10 +711,17 @@ static void computeKnownBitsFromCond(const Value *V, Value *Cond,
const SimplifyQuery &SQ, bool Invert) {
Value *A, *B;
if (Depth < MaxAnalysisRecursionDepth &&
- (Invert ? match(Cond, m_LogicalOr(m_Value(A), m_Value(B)))
- : match(Cond, m_LogicalAnd(m_Value(A), m_Value(B))))) {
- computeKnownBitsFromCond(V, A, Known, Depth + 1, SQ, Invert);
- computeKnownBitsFromCond(V, B, Known, Depth + 1, SQ, Invert);
+ match(Cond, m_LogicalOp(m_Value(A), m_Value(B)))) {
+ KnownBits Known2(Known.getBitWidth());
+ KnownBits Known3(Known.getBitWidth());
+ computeKnownBitsFromCond(V, A, Known2, Depth + 1, SQ, Invert);
+ computeKnownBitsFromCond(V, B, Known3, Depth + 1, SQ, Invert);
+ if (Invert ? match(Cond, m_LogicalOr(m_Value(A), m_Value(B)))
+ : match(Cond, m_LogicalAnd(m_Value(A), m_Value(B))))
+ Known = Known2.unionWith(Known3);
+ else
+ Known2 = Known2.intersectWith(Known3);
+ Known = Known.unionWith(Known2);
}
if (auto *Cmp = dyn_cast<ICmpInst>(Cond))
diff --git a/llvm/test/Transforms/InstCombine/known-bits.ll b/llvm/test/Transforms/InstCombine/known-bits.ll
index 246579cc4cd0c0..b658ee0d2ef4e2 100644
--- a/llvm/test/Transforms/InstCombine/known-bits.ll
+++ b/llvm/test/Transforms/InstCombine/known-bits.ll
@@ -124,6 +124,65 @@ exit:
ret i8 %or2
}
+
+define i8 @test_cond_and_bothways(i8 %x) {
+; CHECK-LABEL: @test_cond_and_bothways(
+; CHECK-NEXT: [[AND:%.*]] = and i8 [[X:%.*]], 91
+; CHECK-NEXT: [[CMP0:%.*]] = icmp ne i8 [[AND]], 24
+; CHECK-NEXT: [[CMP1:%.*]] = icmp ne i8 [[X]], 0
+; CHECK-NEXT: [[COND:%.*]] = and i1 [[CMP0]], [[CMP1]]
+; CHECK-NEXT: br i1 [[COND]], label [[IF:%.*]], label [[EXIT:%.*]]
+; CHECK: if:
+; CHECK-NEXT: [[OR1:%.*]] = or i8 [[X]], -4
+; CHECK-NEXT: ret i8 [[OR1]]
+; CHECK: exit:
+; CHECK-NEXT: ret i8 -4
+;
+ %and = and i8 %x, 91
+ %cmp0 = icmp ne i8 %and, 24
+ %cmp1 = icmp ne i8 %x, 0
+ %cond = and i1 %cmp0, %cmp1
+ br i1 %cond, label %if, label %exit
+
+if:
+ %or1 = or i8 %x, -4
+ ret i8 %or1
+
+exit:
+ %or2 = or i8 %x, -4
+ ret i8 %or2
+}
+
+define i8 @test_cond_or_bothways(i8 %x) {
+; CHECK-LABEL: @test_cond_or_bothways(
+; CHECK-NEXT: [[AND:%.*]] = and i8 [[X:%.*]], 91
+; CHECK-NEXT: [[CMP0:%.*]] = icmp eq i8 [[AND]], 24
+; CHECK-NEXT: [[CMP1:%.*]] = icmp eq i8 [[X]], 0
+; CHECK-NEXT: [[COND:%.*]] = or i1 [[CMP0]], [[CMP1]]
+; CHECK-NEXT: br i1 [[COND]], label [[IF:%.*]], label [[EXIT:%.*]]
+; CHECK: if:
+; CHECK-NEXT: ret i8 -4
+; CHECK: exit:
+; CHECK-NEXT: [[OR2:%.*]] = or i8 [[X]], -4
+; CHECK-NEXT: ret i8 [[OR2]]
+;
+ %and = and i8 %x, 91
+ %cmp0 = icmp eq i8 %and, 24
+ %cmp1 = icmp eq i8 %x, 0
+ %cond = or i1 %cmp0, %cmp1
+ br i1 %cond, label %if, label %exit
+
+if:
+ %or1 = or i8 %x, -4
+ ret i8 %or1
+
+exit:
+ %or2 = or i8 %x, -4
+ ret i8 %or2
+}
+
+
+
define i8 @test_cond_and_commuted(i8 %x, i1 %c1, i1 %c2) {
; CHECK-LABEL: @test_cond_and_commuted(
; CHECK-NEXT: [[AND:%.*]] = and i8 [[X:%.*]], 3
``````````
</details>
https://github.com/llvm/llvm-project/pull/82818
More information about the llvm-commits
mailing list