[PATCH] D133433: [AArch64-SVE]: lower masked load/store of 128-bit fixed-width vectors
Paul Walker via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 8 03:18:08 PDT 2022
paulwalker-arm added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64Subtarget.cpp:436
+bool AArch64Subtarget::useSVEForFixedLengthVectors() const {
+ if (ForceSVEFor128bitVectors)
+ return hasSVE();
----------------
This is going to enable a lot more code paths than it currently tested. Can you explain the rational for the new flag? Does it relate to SME's streaming-compatible mode? or it is wanted for other reasons?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D133433/new/
https://reviews.llvm.org/D133433
More information about the llvm-commits
mailing list