[llvm] [LoopVectorize] Perform loop versioning for some early exit loops (PR #120603)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 13 08:36:13 PST 2025
================
@@ -1585,6 +1591,22 @@ class LoopVectorizationCostModel {
ElementCount MaxSafeVF,
bool FoldTailByMasking);
+ bool isSafeForAnyVectorWidth() const {
+ return Legal->isSafeForAnyVectorWidth() &&
+ (!Legal->hasUncountableEarlyExit() ||
+ !Legal->getNumPotentiallyFaultingLoads());
+ }
+
+ uint64_t getMaxSafeVectorWidthInBits() const {
+ uint64_t MaxSafeVectorWidth = Legal->getMaxSafeVectorWidthInBits();
+ // The legalizer bails out if getMinPageSize does not return a value.
+ if (Legal->hasUncountableEarlyExit() &&
+ Legal->getNumPotentiallyFaultingLoads())
+ MaxSafeVectorWidth =
+ std::min(MaxSafeVectorWidth, uint64_t(*TTI.getMinPageSize()) * 8);
+ return MaxSafeVectorWidth;
+ }
----------------
david-arm wrote:
Done
https://github.com/llvm/llvm-project/pull/120603
More information about the llvm-commits
mailing list