Lines Matching defs:SatMax
10764 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
10765 return DAG.getSelect(dl, VT, Overflow, SatMax, SumDiff);
10849 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(BW), dl, VT);
10852 SatVal = DAG.getSelect(dl, VT, Cond, SatMin, SatMax);
11018 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
11023 Result = DAG.getSelect(dl, VT, ProdNeg, SatMin, SatMax);
11032 SDValue SatMax = DAG.getConstant(MaxVal, dl, VT);
11033 return DAG.getSelect(dl, VT, Overflow, SatMax, Product);
11109 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT);
11115 // Saturated to SatMin if wide product is negative, and SatMax if wide
11118 SDValue ResultIfOverflow = DAG.getSelectCC(dl, Hi, Zero, SatMin, SatMax,
11130 Result = DAG.getSelectCC(dl, Hi, LowMask, SatMax, Result, ISD::SETGT);