[llvm] WIP:[LV] Support strided memory accesses with a stride of -1 (PR #128718)

Alexey Bataev via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 27 08:57:45 PST 2025


================
@@ -2560,6 +2563,9 @@ class VPWidenMemoryRecipe : public VPRecipeBase {
   /// Whether the consecutive accessed addresses are in reverse order.
   bool Reverse;
 
+  /// Whether the accessed addresses are evenly spaced apart by a fixed stride.
+  bool Strided;
----------------
alexey-bataev wrote:

```suggestion
  bool Strided = false;
```


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


More information about the llvm-commits mailing list