[PATCH] D77251: [llvm][CodeGen] Addressing modes for SVE ldN.
Sander de Smalen via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Jul 27 07:20:19 PDT 2020
sdesmalen added inline comments.
================
Comment at: llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp:248
void SelectPostLoadLane(SDNode *N, unsigned NumVecs, unsigned Opc);
- void SelectPredicatedLoad(SDNode *N, unsigned NumVecs, const unsigned Opc);
+ template <unsigned Scale>
+ void SelectPredicatedLoad(SDNode *N, unsigned NumVecs, const unsigned Opc_rr,
----------------
Sorry, one more thing, can you make `Scale` a normal argument rather than a template argument?
I see that D77435 also uses a template argument for the stores, rather than a regular argument. I guess you can fix that one separately in an NFC patch.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77251/new/
https://reviews.llvm.org/D77251
More information about the llvm-commits
mailing list