[PATCH] D155520: [LV] Complete load groups and release store groups in presence of dependency
Ayal Zaks via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Sat Aug 5 14:39:29 PDT 2023
Ayal added inline comments.
================
Comment at: llvm/lib/Analysis/VectorUtils.cpp:1195
+ Instruction *MemberOfGroupB = Group->getMember(Index);
+ if (MemberOfGroupB && !canReorderMemAccessesForInterleavedGroups(
+ A, &*AccessStrideInfo.find(MemberOfGroupB)))
----------------
BTW, unrelated to this patch: would be good to move the definition of canReorderMemAccessesForInterleavedGroups() from (being inlined in) VectorUtils.h to VectorUtils.cpp.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D155520/new/
https://reviews.llvm.org/D155520
More information about the llvm-commits
mailing list