[llvm] [ValueTracking] Refactor `isKnownNonEqualFromContext` (PR #127388)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 16 03:11:19 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-analysis
Author: Yingwei Zheng (dtcxzyw)
<details>
<summary>Changes</summary>
This patch avoids adding RHS for comparisons with two variable operands (https://github.com/llvm/llvm-project/pull/118493#discussion_r1949397482). Instead, we iterate over related dominating conditions of both V1 and V2 in `isKnownNonEqualFromContext`, as suggested by goldsteinn (https://github.com/llvm/llvm-project/pull/117442#discussion_r1944058002).
Compile-time improvement: https://llvm-compile-time-tracker.com/compare.php?from=c6d95c441a29a45782ff72d6cb82839b86fd0e4a&to=88464baedd7b1731281eaa0ce4438122b4d218a7&stat=instructions:u
---
Full diff: https://github.com/llvm/llvm-project/pull/127388.diff
1 Files Affected:
- (modified) llvm/lib/Analysis/ValueTracking.cpp (+61-44)
``````````diff
diff --git a/llvm/lib/Analysis/ValueTracking.cpp b/llvm/lib/Analysis/ValueTracking.cpp
index 2a49a10447e0b..c1d3e9fd7e010 100644
--- a/llvm/lib/Analysis/ValueTracking.cpp
+++ b/llvm/lib/Analysis/ValueTracking.cpp
@@ -3786,6 +3786,63 @@ static bool isNonEqualPointersWithRecursiveGEP(const Value *A, const Value *B,
(StartOffset.sle(OffsetB) && StepOffset.isNegative()));
}
+static bool isKnownNonEqualFromContext(const Value *V1, const Value *V2,
+ unsigned Depth, const SimplifyQuery &Q) {
+ if (!Q.CxtI)
+ return false;
+
+ // Try to infer NonEqual based on information from dominating conditions.
+ if (Q.DC && Q.DT) {
+ auto IsKnownNonEqualFromDominatingCondition = [&](const Value *V) {
+ for (BranchInst *BI : Q.DC->conditionsFor(V)) {
+ Value *Cond = BI->getCondition();
+ BasicBlockEdge Edge0(BI->getParent(), BI->getSuccessor(0));
+ if (Q.DT->dominates(Edge0, Q.CxtI->getParent()) &&
+ isImpliedCondition(Cond, ICmpInst::ICMP_NE, V1, V2, Q.DL,
+ /*LHSIsTrue=*/true, Depth)
+ .value_or(false))
+ return true;
+
+ BasicBlockEdge Edge1(BI->getParent(), BI->getSuccessor(1));
+ if (Q.DT->dominates(Edge1, Q.CxtI->getParent()) &&
+ isImpliedCondition(Cond, ICmpInst::ICMP_NE, V1, V2, Q.DL,
+ /*LHSIsTrue=*/false, Depth)
+ .value_or(false))
+ return true;
+ }
+
+ return false;
+ };
+
+ if (IsKnownNonEqualFromDominatingCondition(V1) ||
+ IsKnownNonEqualFromDominatingCondition(V2))
+ return true;
+ }
+
+ if (!Q.AC)
+ return false;
+
+ // Try to infer NonEqual based on information from assumptions.
+ for (auto &AssumeVH : Q.AC->assumptionsFor(V1)) {
+ if (!AssumeVH)
+ continue;
+ CallInst *I = cast<CallInst>(AssumeVH);
+
+ assert(I->getFunction() == Q.CxtI->getFunction() &&
+ "Got assumption for the wrong function!");
+ assert(I->getIntrinsicID() == Intrinsic::assume &&
+ "must be an assume intrinsic");
+
+ if (isImpliedCondition(I->getArgOperand(0), ICmpInst::ICMP_NE, V1, V2, Q.DL,
+ /*LHSIsTrue=*/true, Depth)
+ .value_or(false) &&
+ isValidAssumeForContext(I, Q.CxtI, Q.DT))
+ return true;
+ }
+
+ return false;
+}
+
/// Return true if it is known that V1 != V2.
static bool isKnownNonEqual(const Value *V1, const Value *V2,
const APInt &DemandedElts, unsigned Depth,
@@ -3857,49 +3914,8 @@ static bool isKnownNonEqual(const Value *V1, const Value *V2,
match(V2, m_PtrToIntSameSize(Q.DL, m_Value(B))))
return isKnownNonEqual(A, B, DemandedElts, Depth + 1, Q);
- if (!Q.CxtI)
- return false;
-
- // Try to infer NonEqual based on information from dominating conditions.
- if (Q.DC && Q.DT) {
- for (BranchInst *BI : Q.DC->conditionsFor(V1)) {
- Value *Cond = BI->getCondition();
- BasicBlockEdge Edge0(BI->getParent(), BI->getSuccessor(0));
- if (Q.DT->dominates(Edge0, Q.CxtI->getParent()) &&
- isImpliedCondition(Cond, ICmpInst::ICMP_NE, V1, V2, Q.DL,
- /*LHSIsTrue=*/true, Depth)
- .value_or(false))
- return true;
-
- BasicBlockEdge Edge1(BI->getParent(), BI->getSuccessor(1));
- if (Q.DT->dominates(Edge1, Q.CxtI->getParent()) &&
- isImpliedCondition(Cond, ICmpInst::ICMP_NE, V1, V2, Q.DL,
- /*LHSIsTrue=*/false, Depth)
- .value_or(false))
- return true;
- }
- }
-
- if (!Q.AC)
- return false;
-
- // Try to infer NonEqual based on information from assumptions.
- for (auto &AssumeVH : Q.AC->assumptionsFor(V1)) {
- if (!AssumeVH)
- continue;
- CallInst *I = cast<CallInst>(AssumeVH);
-
- assert(I->getFunction() == Q.CxtI->getFunction() &&
- "Got assumption for the wrong function!");
- assert(I->getIntrinsicID() == Intrinsic::assume &&
- "must be an assume intrinsic");
-
- if (isImpliedCondition(I->getArgOperand(0), ICmpInst::ICMP_NE, V1, V2, Q.DL,
- /*LHSIsTrue=*/true, Depth)
- .value_or(false) &&
- isValidAssumeForContext(I, Q.CxtI, Q.DT))
- return true;
- }
+ if (isKnownNonEqualFromContext(V1, V2, Depth, Q))
+ return true;
return false;
}
@@ -10278,7 +10294,8 @@ void llvm::findValuesAffectedByCondition(
bool HasRHSC = match(B, m_ConstantInt());
if (ICmpInst::isEquality(Pred)) {
AddAffected(A);
- AddAffected(B);
+ if (IsAssume)
+ AddAffected(B);
if (HasRHSC) {
Value *Y;
// (X & C) or (X | C).
``````````
</details>
https://github.com/llvm/llvm-project/pull/127388
More information about the llvm-commits
mailing list