Home | History | Annotate | Download | only in AMDGPU

Lines Matching refs:K0

2171     const SDValue K0 = DAG.getConstantFP(K0Val, SL, MVT::f32);
2181 SDValue r2 = DAG.getSetCC(SL, SetCCVT, r1, K0, ISD::SETOGT);
2716 ConstantSDNode *K0 = dyn_cast<ConstantSDNode>(Op0.getOperand(1));
2717 if (!K0)
2721 if (K0->getAPIntValue().sge(K1->getAPIntValue()))
2724 if (K0->getAPIntValue().uge(K1->getAPIntValue()))
2728 EVT VT = K0->getValueType(0);
2730 Op0.getOperand(0), SDValue(K0, 0), SDValue(K1, 0));
2746 ConstantFPSDNode *K0 = dyn_cast<ConstantFPSDNode>(Op0.getOperand(1));
2747 if (!K0)
2751 APFloat::cmpResult Cmp = K0->getValueAPF().compare(K1->getValueAPF());
2762 return DAG.getNode(AMDGPUISD::FMED3, SL, K0->getValueType(0),
2763 Var, SDValue(K0, 0), SDValue(K1, 0));
2804 // min(max(x, K0), K1), K0 < K1 -> med3(x, K0, K1)
2815 // fminnum(fmaxnum(x, K0), K1), K0 < K1 && !is_snan(x) -> fmed3(x, K0, K1)