[llvm] [X86][AVX10] Allow AVX10 use VBMI2 instructions (PR #73276)

via llvm-commits llvm-commits at lists.llvm.org
Thu Nov 23 18:47:48 PST 2023


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff 28d91a6e17c58c129eda75c53448c8a81d63b445 de834e5da5506dcf193c82b6536e627d5df1fada -- llvm/lib/Target/X86/X86ISelLowering.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp
index de265660d5..b6325da4a9 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -1970,7 +1970,7 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
     }
 
     if (Subtarget.hasVBMI2()) {
-      for (auto VT : { MVT::v32i16, MVT::v16i32, MVT::v8i64 }) {
+      for (auto VT : {MVT::v32i16, MVT::v16i32, MVT::v8i64}) {
         setOperationAction(ISD::FSHL, VT, Custom);
         setOperationAction(ISD::FSHR, VT, Custom);
       }
@@ -1981,13 +1981,13 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
   }// useAVX512Regs
 
   if (Subtarget.hasVBMI2()) {
-    for (auto VT : { MVT::v8i16, MVT::v4i32, MVT::v2i64,
-                     MVT::v16i16, MVT::v8i32, MVT::v4i64 }) {
+    for (auto VT : {MVT::v8i16, MVT::v4i32, MVT::v2i64, MVT::v16i16, MVT::v8i32,
+                    MVT::v4i64}) {
       setOperationAction(ISD::FSHL, VT, Custom);
       setOperationAction(ISD::FSHR, VT, Custom);
     }
 
-    setOperationAction(ISD::ROTR, MVT::v8i16,  Custom);
+    setOperationAction(ISD::ROTR, MVT::v8i16, Custom);
     setOperationAction(ISD::ROTR, MVT::v16i16, Custom);
   }
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/73276


More information about the llvm-commits mailing list