Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:MaxVal

1620     APInt MinVal, MaxVal;
1624 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
1627 MaxVal = APInt::getMaxValue(OperandBitSize);
1647 if (C1 == MaxVal) return DAG.getConstant(1, dl, VT); // X <= MAX --> true
1665 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
1667 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
1674 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
1683 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
1685 DAG.getConstant(MaxVal, dl, N0.getValueType()),