Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:MinVal

2228     APInt MinVal, MaxVal;
2231 MinVal = APInt::getSignedMinValue(OperandBitSize);
2234 MinVal = APInt::getMinValue(OperandBitSize);
2240 if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true
2255 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
2257 if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal)
2265 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
2272 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
2274 DAG.getConstant(MinVal, N0.getValueType()),