Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:MaxVal

2228     APInt MinVal, MaxVal;
2232 MaxVal = APInt::getSignedMaxValue(OperandBitSize);
2235 MaxVal = APInt::getMaxValue(OperandBitSize);
2248 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true
2259 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal)
2261 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal)
2268 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal)
2277 else if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1)
2279 DAG.getConstant(MaxVal, N0.getValueType()),