Lines Matching refs:Overflow
1021 bool Overflow; in SymbolicallyEvaluateGEP() local
1022 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow); in SymbolicallyEvaluateGEP()
1023 if (Overflow) in SymbolicallyEvaluateGEP()
2621 bool Overflow; in ConstantFoldScalarCall2() local
2625 Res = C0->sadd_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2628 Res = C0->uadd_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2631 Res = C0->ssub_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2634 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2637 Res = C0->smul_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2640 Res = C0->umul_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2645 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) in ConstantFoldScalarCall2()