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

Luke Lau via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 09:25:53 PDT 2025


================
@@ -2126,8 +2126,13 @@ void VPVectorPointerRecipe::execute(VPTransformState &State) {
   Value *Ptr = State.get(getOperand(0), VPLane(0));
 
   Value *Increment = createStepForVF(Builder, IndexTy, State.VF, CurrentPart);
+  // TODO: Support non-unit-reverse strided accesses.
+  Value *Index =
+      Strided
+          ? Builder.CreateMul(Increment, ConstantInt::getSigned(IndexTy, -1))
----------------
lukel97 wrote:

@Mel-Chen yes, that's a good idea. Since it will generate a vp intrinsic either way. 

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


More information about the llvm-commits mailing list