[llvm] [VPlan] Support early-exit loops in optimizeForVFAndUF. (PR #131539)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 17 04:42:25 PDT 2025
================
@@ -1005,6 +1005,33 @@ void VPlanTransforms::simplifyRecipes(VPlan &Plan, Type &CanonicalIVTy) {
}
}
+/// Return true if \p Cond is known to be true for given \p BestVF and \p
+/// BestUF.
+static bool isConditionKnown(VPValue *Cond, VPlan &Plan, ElementCount BestVF,
----------------
fhahn wrote:
I updated it to `isConditionTrueViaVFAndUF`. I've not included `Branch` for now, as I think the logic is independent of whether the condition is used in a branch or otherwise.
https://github.com/llvm/llvm-project/pull/131539
More information about the llvm-commits
mailing list