Lines Matching refs:K0
2171 const SDValue K0 = DAG.getConstantFP(K0Val, SL, MVT::f32); in LowerFDIV32() local
2181 SDValue r2 = DAG.getSetCC(SL, SetCCVT, r1, K0, ISD::SETOGT); in LowerFDIV32()
2716 ConstantSDNode *K0 = dyn_cast<ConstantSDNode>(Op0.getOperand(1)); in performIntMed3ImmCombine() local
2717 if (!K0) in performIntMed3ImmCombine()
2721 if (K0->getAPIntValue().sge(K1->getAPIntValue())) in performIntMed3ImmCombine()
2724 if (K0->getAPIntValue().uge(K1->getAPIntValue())) in performIntMed3ImmCombine()
2728 EVT VT = K0->getValueType(0); in performIntMed3ImmCombine()
2730 Op0.getOperand(0), SDValue(K0, 0), SDValue(K1, 0)); in performIntMed3ImmCombine()
2746 ConstantFPSDNode *K0 = dyn_cast<ConstantFPSDNode>(Op0.getOperand(1)); in performFPMed3ImmCombine() local
2747 if (!K0) in performFPMed3ImmCombine()
2751 APFloat::cmpResult Cmp = K0->getValueAPF().compare(K1->getValueAPF()); in performFPMed3ImmCombine()
2762 return DAG.getNode(AMDGPUISD::FMED3, SL, K0->getValueType(0), in performFPMed3ImmCombine()
2763 Var, SDValue(K0, 0), SDValue(K1, 0)); in performFPMed3ImmCombine()