[llvm] [LV][EVL] Fix the check for legality of folding with EVL. (PR #125678)
Florian Hahn via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 4 07:58:17 PST 2025
================
@@ -1454,9 +1454,10 @@ class LoopVectorizationCostModel {
// FIXME: Investigate opportunity for fixed vector factor.
// FIXME: support fixed-order recurrences by fixing splice of non VFxUF
// penultimate EVL.
- bool EVLIsLegal =
- UserIC <= 1 && TTI.hasActiveVectorLength(0, nullptr, Align()) &&
- !EnableVPlanNativePath && Legal->getFixedOrderRecurrences().empty();
+ bool EVLIsLegal = UserIC <= 1 && IsScalableVF &&
+ TTI.hasActiveVectorLength(0, nullptr, Align()) &&
----------------
fhahn wrote:
In theory, is there a possible scenario for targets that support EVL for fixed width vectors? If that's the case, eventually it would make sense to ask TTI if the target supports EVL for a specific vector type?
IIUC PPC at least claim to have ActiveVectorLength for fixed vectors, looking at its `hasActiveVectorLength` implementation
https://github.com/llvm/llvm-project/pull/125678
More information about the llvm-commits
mailing list