Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:MinVal

1620     APInt MinVal, MaxVal;
1623 MinVal = APInt::getSignedMinValue(OperandBitSize);
1626 MinVal = APInt::getMinValue(OperandBitSize);
1632 if (C1 == MinVal) return DAG.getConstant(1, dl, VT); // X >= MIN --> true
1661 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal)
1663 if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal)
1671 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal)
1678 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1)
1680 DAG.getConstant(MinVal, dl, N0.getValueType()),