[llvm] [X86] Combine LRINT/LLRINT and TRUNC when nuw/nsw (PR #126217)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 7 08:47:35 PST 2025


================
@@ -53919,6 +53919,11 @@ static SDValue combineTruncate(SDNode *N, SelectionDAG &DAG,
       return DAG.getNode(X86ISD::MMX_MOVD2W, DL, MVT::i32, BCSrc);
   }
 
+  if ((N->getFlags().hasNoUnsignedWrap() || N->getFlags().hasNoSignedWrap()) &&
+      (Src.getOpcode() == ISD::LRINT || Src.getOpcode() == ISD::LLRINT) &&
+      VT.getScalarType() == MVT::i32 && Src.hasOneUse())
----------------
RKSimon wrote:

getScalarType implies we should support vectors - do we have test coverage for that?

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


More information about the llvm-commits mailing list