[llvm] [RISCV] Enabled masked interleaved access (PR #149981)

Mel Chen via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 23 02:36:15 PDT 2025


================
@@ -1358,7 +1358,9 @@ class LoopVectorizationCostModel {
       return;
     // Override forced styles if needed.
     // FIXME: Investigate opportunity for fixed vector factor.
+    // FIXME: Support interleave accesses.
     bool EVLIsLegal = UserIC <= 1 && IsScalableVF &&
+                      !InterleaveInfo.hasGroups() &&
----------------
Mel-Chen wrote:

https://github.com/llvm/llvm-project/pull/95368
I did the same thing a long time ago for reduction. But later we think it was not necessary.

https://github.com/llvm/llvm-project/pull/149981


More information about the llvm-commits mailing list