[llvm] WIP:[LV] Support strided memory accesses with a stride of -1 (PR #128718)
Mel Chen via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 7 02:43:13 PST 2025
================
@@ -1308,6 +1309,18 @@ class LoopVectorizationCostModel {
(SI && TTI.isLegalMaskedScatter(Ty, Align));
}
+ /// Returns true if the target machine can represent \p V as a strided load
+ /// or store operation.
+ bool isLegalStridedLoadStore(Value *V, ElementCount VF) {
----------------
Mel-Chen wrote:
I copy the function name from TTI function. Do you have any recommended names?
https://github.com/llvm/llvm-project/pull/128718
More information about the llvm-commits
mailing list