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

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 05:25:17 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));
----------------
RKSimon wrote:

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

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


More information about the llvm-commits mailing list