[llvm] [LV] Support strided load with a stride of -1 (PR #128718)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 03:16:15 PDT 2025
================
@@ -2702,12 +2709,60 @@ struct VPWidenLoadEVLRecipe final : public VPWidenMemoryRecipe, public VPValue {
bool onlyFirstLaneUsed(const VPValue *Op) const override {
assert(is_contained(operands(), Op) &&
"Op must be an operand of the recipe");
- // Widened loads only demand the first lane of EVL and consecutive loads
- // only demand the first lane of their address.
+ // Widened loads only demand the first lane of EVL and consecutive/strided
+ // loads only demand the first lane of their address.
----------------
lukel97 wrote:
I think this comment can be changed back now that strided loads have their own recipe?
https://github.com/llvm/llvm-project/pull/128718
More information about the llvm-commits
mailing list