[llvm] [LV][EVL] Support fixed-order recurrence idiom with EVL tail folding. (PR #124093)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 18 03:26:53 PST 2025
================
@@ -1635,18 +1635,62 @@ void VPlanTransforms::addActiveLaneMask(
HeaderMask->replaceAllUsesWith(LaneMask);
}
+/// Adjust the way the resume value is obtained when using tail folding by EVL.
+/// Expanding ExtractFromEnd since the penultimate EVL could not equals to
+/// VFxUF. Expand
+/// %resume = ExtractFromEnd %vec, 1
+/// to
+/// %last.active.idx = sub %EVL, 1
+/// %resume = extractelement %vec, %last.active.idx
+static void adjustResumePhisForEVL(VPlan &Plan, VPValue &EVL) {
----------------
lukel97 wrote:
Thanks for the explanation, that makes sense to me. From the sounds of things if the ExtractFromEnd is going to be binned anyway I don't see the need to include this transform. Archiving it in another branch sounds good to me, in case we ever do want to return to it!
https://github.com/llvm/llvm-project/pull/124093
More information about the llvm-commits
mailing list