[llvm] [X86] Add vXi64 MULHU/MULHS lowering, keeping full-width products scalar (PR #206983)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Jul 3 03:02:22 PDT 2026
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 origin/main HEAD --extensions cpp -- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp llvm/lib/Target/X86/X86ISelLowering.cpp --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</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 833033825..a51613b2a 100644
--- a/llvm/lib/Target/X86/X86ISelLowering.cpp
+++ b/llvm/lib/Target/X86/X86ISelLowering.cpp
@@ -1754,7 +1754,8 @@ X86TargetLowering::X86TargetLowering(const X86TargetMachine &TM,
// on AVX512DQ+VL; without it the schoolbook loses to scalar (esp. AVX2).
if (Subtarget.hasDQI() && Subtarget.hasVLX())
setOperationAction(ISD::MULHS, MVT::v4i64, Custom);
- // Custom so the combiner keeps full products as [SU]MUL_LOHI, not MULH[SU].
+ // Custom so the combiner keeps full products as [SU]MUL_LOHI, not
+ // MULH[SU].
setOperationAction(ISD::UMUL_LOHI, MVT::v4i64, Custom);
setOperationAction(ISD::SMUL_LOHI, MVT::v4i64, Custom);
setOperationAction(ISD::VSELECT, MVT::v32i8, Legal);
``````````
</details>
https://github.com/llvm/llvm-project/pull/206983
More information about the llvm-commits
mailing list