Lines Matching refs:Overflow
952 bool Overflow; in SymbolicallyEvaluateGEP() local
953 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow); in SymbolicallyEvaluateGEP()
954 if (Overflow) in SymbolicallyEvaluateGEP()
2157 bool Overflow; in ConstantFoldScalarCall2() local
2161 Res = C0->sadd_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2164 Res = C0->uadd_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2167 Res = C0->ssub_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2170 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2173 Res = C0->smul_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2176 Res = C0->umul_ov(*C1, Overflow); in ConstantFoldScalarCall2()
2181 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) in ConstantFoldScalarCall2()