Lines Matching refs:CompareVT

1127   EVT CompareVT = LHS.getValueType();  in LowerSELECT_CC()  local
1143 ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); in LowerSELECT_CC()
1145 if (isCondCodeLegal(InverseCC, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1150 if (isCondCodeLegal(SwapInvCC, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1159 (CompareVT == VT || VT == MVT::i32)) { in LowerSELECT_CC()
1179 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1184 ISD::CondCode CCInv = ISD::getSetCCInverse(CCOpcode, CompareVT.isInteger()); in LowerSELECT_CC()
1186 if (isCondCodeLegal(CCSwapped, CompareVT.getSimpleVT())) { in LowerSELECT_CC()
1197 if (CompareVT != VT) { in LowerSELECT_CC()
1202 True = DAG.getNode(ISD::BITCAST, DL, CompareVT, True); in LowerSELECT_CC()
1203 False = DAG.getNode(ISD::BITCAST, DL, CompareVT, False); in LowerSELECT_CC()
1210 CCOpcode = ISD::getSetCCInverse(CCOpcode, CompareVT == MVT::i32); in LowerSELECT_CC()
1218 SDValue SelectNode = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, in LowerSELECT_CC()
1229 if (CompareVT == MVT::f32) { in LowerSELECT_CC()
1230 HWTrue = DAG.getConstantFP(1.0f, DL, CompareVT); in LowerSELECT_CC()
1231 HWFalse = DAG.getConstantFP(0.0f, DL, CompareVT); in LowerSELECT_CC()
1232 } else if (CompareVT == MVT::i32) { in LowerSELECT_CC()
1233 HWTrue = DAG.getConstant(-1, DL, CompareVT); in LowerSELECT_CC()
1234 HWFalse = DAG.getConstant(0, DL, CompareVT); in LowerSELECT_CC()
1242 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, CompareVT, LHS, RHS, HWTrue, HWFalse, CC); in LowerSELECT_CC()