Lines Matching defs:MaxVal
1396 APInt MinVal, MaxVal;
1400 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
1403 MaxVal = APInt::getMaxValue(OperandBitSize);
1416 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
1427 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
1429 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
1436 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
1445 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
1447 DAG.getConstant(MaxVal, N0.getValueType()),