Lines Matching defs:SatMax
10419 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
10420 return DAG.getSelect(dl, VT, Overflow, SatMax, SumDiff);
10504 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(BW), dl, VT);
10507 SatVal = DAG.getSelect(dl, VT, Cond, SatMin, SatMax);
10666 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
10671 Result = DAG.getSelect(dl, VT, ProdNeg, SatMin, SatMax);
10680 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
10681 return DAG.getSelect(dl, VT, Overflow, SatMax, Product);
10754 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT);
10760 // Saturated to SatMin if wide product is negative, and SatMax if wide
10763 SDValue ResultIfOverflow = DAG.getSelectCC(dl, Hi, Zero, SatMin, SatMax,
10775 Result = DAG.getSelectCC(dl, Hi, LowMask, SatMax, Result, ISD::SETGT);