[llvm] [LV][EVL] Support fixed-order recurrence idiom with EVL tail folding. (PR #124093)
Mel Chen via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 02:04:14 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) {
----------------
Mel-Chen wrote:
Archive ExtractFromEnd transformation to [another branch](https://github.com/Mel-Chen/llvm-project/tree/evl-extract-for-resumephi).
https://github.com/llvm/llvm-project/pull/124093
More information about the llvm-commits
mailing list