Lines Matching refs:Overflow
822 Constant *Overflow) { in createOverflowTuple() argument
823 Constant *V[] = {PoisonValue::get(Result->getType()), Overflow}; in createOverflowTuple()
1120 bool Overflow; in moveAddAfterMinMax() local
1122 IsSigned ? C1->ssub_ov(*C0, Overflow) : C1->usub_ov(*C0, Overflow); in moveAddAfterMinMax()
1123 assert(!Overflow && "Expected simplify of min/max"); in moveAddAfterMinMax()
2084 bool Overflow; in visitCallInst() local
2086 IsSigned ? C1->sadd_ov(*C0, Overflow) : C1->uadd_ov(*C0, Overflow); in visitCallInst()
2087 if (!Overflow) in visitCallInst()
2183 bool Overflow; in visitCallInst() local
2184 NewVal = Val->sadd_ov(*Val2, Overflow); in visitCallInst()
2185 if (Overflow) { in visitCallInst()