Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:MinVal

1737     APInt MinVal, MaxVal;
1740 MinVal = APInt::getSignedMinValue(OperandBitSize);
1743 MinVal = APInt::getMinValue(OperandBitSize);
1749 if (C1 == MinVal) return DAG.getConstant(1, dl, VT); // X >= MIN --> true
1778 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
1780 if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal)
1788 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
1795 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
1797 DAG.getConstant(MinVal, dl, N0.getValueType()),