[llvm] [VPlan] Split out optimizeEVLMasks. NFC (PR #174925)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 9 23:44:24 PST 2026
================
@@ -2995,8 +2979,42 @@ static VPRecipeBase *optimizeMaskToEVL(VPValue *HeaderMask,
return nullptr;
}
-/// Replace recipes with their EVL variants.
-static void transformRecipestoEVLRecipes(VPlan &Plan, VPValue &EVL) {
+/// Optimize away any EVL-based header masks to VP intrinsic based recipes.
+/// The transforms here need to preserve the original semantics.
+void VPlanTransforms::optimizeEVLMasks(VPlan &Plan) {
+ // Find the EVL-based header mask if it exists: icmp ult step-vector, EVL
+ VPInstruction *HeaderMask = nullptr;
+ for (VPRecipeBase &R : *Plan.getVectorLoopRegion()->getEntryBasicBlock()) {
+ if (match(&R, m_ICmp(m_VPInstruction<VPInstruction::StepVector>(),
+ m_EVL(m_VPValue())))) {
----------------
lukel97 wrote:
The operand in EVL is the AVL, not the EVL itself, but I updated it to use pattern matching in e5dbe6694c165b5a4d1a891ca4e66bb87808592b
https://github.com/llvm/llvm-project/pull/174925
More information about the llvm-commits
mailing list