[llvm] f13d583 - [VPlan] Pass some functions directly to all_of (NFC).

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 11:50:25 PDT 2025


Author: Florian Hahn
Date: 2025-03-13T18:50:11Z
New Revision: f13d58303f8ba07218333570c321c285f27e7496

URL: https://github.com/llvm/llvm-project/commit/f13d58303f8ba07218333570c321c285f27e7496
DIFF: https://github.com/llvm/llvm-project/commit/f13d58303f8ba07218333570c321c285f27e7496.diff

LOG: [VPlan] Pass some functions directly to all_of (NFC).

Remove some unneeded lambdas.

Added: 
    

Modified: 
    llvm/lib/Transforms/Vectorize/VPlanUtils.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp b/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
index 1a7322ec0aff6..475f35f5c40d3 100644
--- a/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
+++ b/llvm/lib/Transforms/Vectorize/VPlanUtils.cpp
@@ -92,8 +92,7 @@ bool vputils::isUniformAcrossVFsAndUFs(VPValue *V) {
               m_VPInstruction<VPInstruction::CanonicalIVIncrementForPart>(
                   m_VPValue())))
       return false;
-    return all_of(R->operands(),
-                  [](VPValue *Op) { return isUniformAcrossVFsAndUFs(Op); });
+    return all_of(R->operands(), isUniformAcrossVFsAndUFs);
   }
 
   auto *CanonicalIV = R->getParent()->getPlan()->getCanonicalIV();
@@ -110,8 +109,7 @@ bool vputils::isUniformAcrossVFsAndUFs(VPValue *V) {
         // TODO: Further relax the restrictions.
         return R->isUniform() &&
                (isa<LoadInst, StoreInst>(R->getUnderlyingValue())) &&
-               all_of(R->operands(),
-                      [](VPValue *Op) { return isUniformAcrossVFsAndUFs(Op); });
+               all_of(R->operands(), isUniformAcrossVFsAndUFs);
       })
       .Case<VPScalarCastRecipe, VPWidenCastRecipe>([](const auto *R) {
         // A cast is uniform according to its operand.


        


More information about the llvm-commits mailing list