[llvm] [LoopVectorize] Allow Early-Exit Loop Vectorization with EVL (PR #130918)
Shih-Po Hung via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 14 02:54:33 PDT 2025
================
@@ -4038,10 +4038,12 @@ LoopVectorizationCostModel::computeMaxVF(ElementCount UserVF, unsigned UserIC) {
}
// The only loops we can vectorize without a scalar epilogue, are loops with
- // a bottom-test and a single exiting block. We'd have to handle the fact
- // that not every instruction executes on the last iteration. This will
- // require a lane mask which varies through the vector loop body. (TODO)
- if (TheLoop->getExitingBlock() != TheLoop->getLoopLatch()) {
+ // a bottom-test and a single exiting block or those with early exits. We'd
+ // have to handle the fact that not every instruction executes on the last
+ // iteration. This will require a lane mask which varies through the vector
+ // loop body. (TODO)
+ if ((TheLoop->getExitingBlock() != TheLoop->getLoopLatch()) &&
+ !Legal->hasUncountableEarlyExit()) {
----------------
arcbbb wrote:
I appreciate the tip! I'll apply the modification and run the LLVM test suite locally to check for potential issues and follow up once I have results.
https://github.com/llvm/llvm-project/pull/130918
More information about the llvm-commits
mailing list