Lines Matching refs:Overflow
817 Constant *Overflow) { in createOverflowTuple() argument
818 Constant *V[] = {PoisonValue::get(Result->getType()), Overflow}; in createOverflowTuple()
1110 bool Overflow; in moveAddAfterMinMax() local
1112 IsSigned ? C1->ssub_ov(*C0, Overflow) : C1->usub_ov(*C0, Overflow); in moveAddAfterMinMax()
1113 assert(!Overflow && "Expected simplify of min/max"); in moveAddAfterMinMax()
2177 bool Overflow; in visitCallInst() local
2179 IsSigned ? C1->sadd_ov(*C0, Overflow) : C1->uadd_ov(*C0, Overflow); in visitCallInst()
2180 if (!Overflow) in visitCallInst()
2290 bool Overflow; in visitCallInst() local
2291 NewVal = Val->sadd_ov(*Val2, Overflow); in visitCallInst()
2292 if (Overflow) { in visitCallInst()