[PATCH] D141068: [AArch64][SME]: Make 'Expand' the default action for all Ops.

Sander de Smalen via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jan 6 05:22:23 PST 2023


sdesmalen accepted this revision.
sdesmalen added inline comments.
This revision is now accepted and ready to land.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:1668
+    setOperationAction(Op, VT, Expand);
+  // STORE, LOAD, SCALAR_TO_VECTOR and BITCAST are natively supported,
+  // so no need to Custom/Expand them.
----------------
Please add newline above.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:1674
+  setOperationAction(ISD::BITCAST, VT, Legal);
+  setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
+  setOperationAction(ISD::MLOAD, VT, Custom);
----------------
Please add newline above.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D141068/new/

https://reviews.llvm.org/D141068



More information about the llvm-commits mailing list