Lines Matching defs:Overflow
157 const APInt &RightOperand, bool &Overflow) {
158 return LeftOperand.sadd_ov(RightOperand, Overflow);
162 const APInt &RightOperand, bool &Overflow) {
163 return LeftOperand.ssub_ov(RightOperand, Overflow);
167 const APInt &RightOperand, bool &Overflow) {
168 return LeftOperand.smul_ov(RightOperand, Overflow);
172 const APInt &RightOperand, bool &Overflow) {
177 return LeftOperand.sdiv_ov(RightOperand, Overflow);
181 const APInt &RightOperand, bool &Overflow) {
182 Overflow = false;
187 const APInt &RightOperand, bool &Overflow) {
188 Overflow = false;
189 if (cantFail(exprMax(LeftOperand, RightOperand, Overflow)) == LeftOperand)
220 bool Overflow;
228 Expected<APInt> MaybeResult = EvalBinop(LeftOp, RightOp, Overflow);
232 if (!Overflow)