[llvm] [X86] Combine FRINT + FP_TO_SINT to LRINT (PR #126477)

Phoebe Wang via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 16 00:23:50 PST 2025


================
@@ -56380,6 +56381,17 @@ static SDValue combineSIntToFP(SDNode *N, SelectionDAG &DAG,
   return SDValue();
 }
 
+static SDValue combineFPToSInt(SDNode *N, SelectionDAG &DAG,
+                               const X86Subtarget &Subtarget) {
+  EVT VT = N->getValueType(0);
+  SDValue Src = N->getOperand(0);
+  if (Src.getOpcode() == ISD::FRINT && VT.getScalarType() == MVT::i32 &&
+      Src.hasOneUse())
+    return DAG.getNode(ISD::LRINT, SDLoc(N), VT, Src.getOperand(0));
----------------
phoebewang wrote:

> I'm assuming this is OK if it fires for vcvtph2dq?

Good question! We need to support LRINT for FP16 first: https://github.com/llvm/llvm-project/pull/127382

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


More information about the llvm-commits mailing list