[PATCH] D115180: [X86] Enable v16i8/v32i8/v64i8 rotation on AVX512 targets

LuoYuanke via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 9 00:29:26 PST 2021


LuoYuanke added inline comments.


================
Comment at: llvm/lib/Target/X86/X86ISelLowering.cpp:29896
+      // See if we can perform this by widening to vXi16.
+      R = DAG.getNode(ISD::ZERO_EXTEND, DL, WideVT, R);
+      R = DAG.getNode(
----------------
I notice in line 29981, it is aext(x). Is it SIGN_EXTEND?


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D115180



More information about the llvm-commits mailing list