[llvm] [LV] Use original trip-count as the vector-trip-count if use predicated EVL instructions for tail-folding. (PR #132675)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 25 02:39:25 PDT 2025
================
@@ -2428,6 +2428,15 @@ InnerLoopVectorizer::getOrCreateVectorTripCount(BasicBlock *InsertBlock) {
Value *TC = getTripCount();
IRBuilder<> Builder(InsertBlock->getTerminator());
+ // Use original trip count as the vector trip count if use predicated EVL
+ // instructions for tail-folding.
+ if (VF.isVector() && Cost->foldTailWithEVL()) {
+ assert(!Cost->requiresScalarEpilogue(true) &&
+ "Use predicated EVL instructions for tail-folding does not allow "
+ "scalar epilogue");
+ return VectorTripCount = TC;
+ }
+
----------------
fhahn wrote:
This doesn't look like it is the right place to update. The vector trip count is guaranteed to be a multiple of VF.
The caller would need updating to not use it/request when folding the tail with EVL
https://github.com/llvm/llvm-project/pull/132675
More information about the llvm-commits
mailing list