[llvm] [LV][EVL] Attach a new metadata on EVL vectorized loops (PR #131000)
Pengcheng Wang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 13 05:11:07 PDT 2025
================
@@ -1013,6 +1013,32 @@ void VPlan::execute(VPTransformState *State) {
Value *Val = State->get(PhiR->getBackedgeValue(), NeedsScalar);
cast<PHINode>(Phi)->addIncoming(Val, VectorLatchBB);
}
+
+ // Check if it's EVL-vectorized and mark the corresponding metadata.
+ // Note that we could have done this during the codegen of
+ // ExplictVectorLength, but the enclosing vector loop was not in a good shape
+ // for us to attach the metadata.
+ bool IsEVLVectorized = llvm::any_of(*Header, [](const VPRecipeBase &Recipe) {
----------------
wangpc-pp wrote:
It is just a `mark` of VPlan when building different VPlans, it won't be changed during transforms. This is a suggestion for optimizing compile-time, so I won't insist on it if you think this is not necessary. :-)
https://github.com/llvm/llvm-project/pull/131000
More information about the llvm-commits
mailing list