Home | History | Annotate | Download | only in Analysis

Lines Matching defs:Overflow

678         // (&GV+C1) - (&GV+C2) -> C1-C2, pointer arithmetic cannot overflow.
866 bool Overflow;
867 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow);
868 if (Overflow)
1774 bool Overflow;
1778 Res = Op1->getValue().sadd_ov(Op2->getValue(), Overflow);
1781 Res = Op1->getValue().uadd_ov(Op2->getValue(), Overflow);
1784 Res = Op1->getValue().ssub_ov(Op2->getValue(), Overflow);
1787 Res = Op1->getValue().usub_ov(Op2->getValue(), Overflow);
1790 Res = Op1->getValue().smul_ov(Op2->getValue(), Overflow);
1793 Res = Op1->getValue().umul_ov(Op2->getValue(), Overflow);
1798 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow)