[PATCH] D141595: [AArch64][SME]: Add missing Ops that need custom-lowering in streaming mode.

hassnaaHamdi via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 2 04:32:44 PST 2023


hassnaa-arm added inline comments.


================
Comment at: llvm/lib/Target/AArch64/AArch64ISelLowering.cpp:1718
   setOperationAction(ISD::ANY_EXTEND, VT, Custom);
+  setOperationAction(ISD::BITREVERSE, VT, Custom);
+  setOperationAction(ISD::BSWAP, VT, Custom);
----------------
sdesmalen wrote:
> There are tests missing for bitreverse.
about this comment and other similar comments, do you mean that some test cases are missing ?
I want to clarify that, some operations are already custom-lowered in other places, so it's expected that custom-lowering them in this function won't affect their related testing files.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D141595



More information about the llvm-commits mailing list