[llvm] [X86] `combinePMULH` - combine `mulhu` + `srl` (PR #132548)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 24 04:01:25 PDT 2025


================
@@ -54046,10 +54046,16 @@ static SDValue combinePMULH(SDValue Src, EVT VT, const SDLoc &DL,
 
   // First instruction should be a right shift by 16 of a multiply.
   SDValue LHS, RHS;
+  APInt ShiftAmt;
   if (!sd_match(Src,
-                m_Srl(m_Mul(m_Value(LHS), m_Value(RHS)), m_SpecificInt(16))))
+                m_Srl(m_Mul(m_Value(LHS), m_Value(RHS)), m_ConstInt(ShiftAmt))))
+    return SDValue();
+
+  if (ShiftAmt.ult(16))
     return SDValue();
 
+  APInt AdditionalShift = (ShiftAmt - 16).trunc(16);
+
----------------
RKSimon wrote:

You need to do some testing to see what happens with MULHS - probably limit AdditionalShift != 0 to just the IsUnsigned case for starters? 

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


More information about the llvm-commits mailing list