Lines Matching refs:TheVT
21646 EVT TheVT = Value.getValueType(); in FP_TO_INTHelper() local
21649 if (TheVT != MVT::f32 && TheVT != MVT::f64 && TheVT != MVT::f80) { in FP_TO_INTHelper()
21706 if (TheVT == MVT::f64) in FP_TO_INTHelper()
21710 else if (TheVT == MVT::f80) in FP_TO_INTHelper()
21717 SDValue ThreshVal = DAG.getConstantFP(Thresh, DL, TheVT); in FP_TO_INTHelper()
21720 *DAG.getContext(), TheVT); in FP_TO_INTHelper()
21745 SDValue FltOfs = DAG.getSelect(DL, TheVT, Cmp, ThreshVal, in FP_TO_INTHelper()
21746 DAG.getConstantFP(0.0, DL, TheVT)); in FP_TO_INTHelper()
21749 Value = DAG.getNode(ISD::STRICT_FSUB, DL, { TheVT, MVT::Other}, in FP_TO_INTHelper()
21753 Value = DAG.getNode(ISD::FSUB, DL, TheVT, Value, FltOfs); in FP_TO_INTHelper()
21760 if (isScalarFPTypeInSSEReg(TheVT)) { in FP_TO_INTHelper()
21766 unsigned FLDSize = TheVT.getStoreSize(); in FP_TO_INTHelper()
21770 Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, TheVT, MMO); in FP_TO_INTHelper()