[llvm] [VPlan] Use m_Isa to improve code (NFC) (PR #190149)
Ramkumar Ramachandra via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 2 06:55:07 PDT 2026
https://github.com/artagnon updated https://github.com/llvm/llvm-project/pull/190149
>From 4db411aa67df235cb06781c74ee860ceefa0144f Mon Sep 17 00:00:00 2001
From: Ramkumar Ramachandra <artagnon at tenstorrent.com>
Date: Thu, 2 Apr 2026 11:56:01 +0100
Subject: [PATCH] [VPlan] Use m_Isa to improve code (NFC)
---
llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)
diff --git a/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp b/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
index 9944df4778774..a33743edb1332 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanTransforms.cpp
@@ -3236,12 +3236,10 @@ static void fixupVFUsersForEVL(VPlan &Plan, VPValue &EVL) {
});
assert(all_of(Plan.getVFxUF().users(),
- [&LoopRegion, &Plan](VPUser *U) {
- return match(U,
- m_c_Add(m_Specific(LoopRegion->getCanonicalIV()),
- m_Specific(&Plan.getVFxUF()))) ||
- isa<VPWidenPointerInductionRecipe>(U);
- }) &&
+ match_fn(m_CombineOr(
+ m_c_Add(m_Specific(LoopRegion->getCanonicalIV()),
+ m_Specific(&Plan.getVFxUF())),
+ m_Isa<VPWidenPointerInductionRecipe>()))) &&
"Only users of VFxUF should be VPWidenPointerInductionRecipe and the "
"increment of the canonical induction.");
Plan.getVFxUF().replaceUsesWithIf(&EVL, [](VPUser &U, unsigned Idx) {
@@ -4432,9 +4430,8 @@ tryToMatchAndCreateExtendedReduction(VPReductionRecipe *Red, VPCostContext &Ctx,
VPValue *A;
// Match reduce(ext)).
- if (isa<VPWidenCastRecipe>(VecOp) &&
- (match(VecOp, m_ZExtOrSExt(m_VPValue(A))) ||
- match(VecOp, m_FPExt(m_VPValue(A)))) &&
+ if (match(VecOp, m_Isa<VPWidenCastRecipe>(m_CombineOr(
+ m_ZExtOrSExt(m_VPValue(A)), m_FPExt(m_VPValue(A))))) &&
IsExtendedRedValidAndClampRange(
RecurrenceDescriptor::getOpcode(Red->getRecurrenceKind()),
cast<VPWidenCastRecipe>(VecOp)->getOpcode(),
More information about the llvm-commits
mailing list