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

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 13 00:33:07 PDT 2025


================
@@ -1571,12 +1571,15 @@ class VPVectorPointerRecipe : public VPRecipeWithIRFlags,
                               public VPUnrollPartAccessor<1> {
   Type *IndexedTy;
 
+  /// Indicate whether to compute the pointer for strided memory accesses.
+  bool Strided;
+
 public:
-  VPVectorPointerRecipe(VPValue *Ptr, Type *IndexedTy, GEPNoWrapFlags GEPFlags,
-                        DebugLoc DL)
+  VPVectorPointerRecipe(VPValue *Ptr, Type *IndexedTy, bool Strided,
----------------
lukel97 wrote:

I've opened https://github.com/llvm/llvm-project/pull/131086 for this

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


More information about the llvm-commits mailing list