Lines Matching refs:CompareVT
959 EVT CompareVT = LHS.getValueType(); in LowerSELECT_CC() local
975 ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); in LowerSELECT_CC()
977 if (isCondCodeLegal(InverseCC, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
982 if (isCondCodeLegal(SwapInvCC, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
991 (CompareVT == VT || VT == MVT::i32)) { in LowerSELECT_CC()
1011 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1016 ISD::CondCode CCInv = ISD::getSetCCInverse(CCOpcode, CompareVT.isInteger()); in LowerSELECT_CC()
1018 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1029 if (CompareVT != VT) { in LowerSELECT_CC()
1034 True = DAG.getNode(ISD::BITCAST, DL, CompareVT, True); in LowerSELECT_CC()
1035 False = DAG.getNode(ISD::BITCAST, DL, CompareVT, False); in LowerSELECT_CC()
1042 CCOpcode = ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); in LowerSELECT_CC()
1050 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, in LowerSELECT_CC()
1061 if (CompareVT == MVT::f32) { in LowerSELECT_CC()
1062 HWTrue = DAG.getConstantFP(1.0f, DL, CompareVT); in LowerSELECT_CC()
1063 HWFalse = DAG.getConstantFP(0.0f, DL, CompareVT); in LowerSELECT_CC()
1064 } else if (CompareVT == MVT::i32) { in LowerSELECT_CC()
1065 HWTrue = DAG.getConstant(-1, DL, CompareVT); in LowerSELECT_CC()
1066 HWFalse = DAG.getConstant(0, DL, CompareVT); in LowerSELECT_CC()
1074 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, LHS, RHS, HWTrue, HWFalse, CC); in LowerSELECT_CC()