Lines Matching refs:Overflow
932 bool Overflow; in SymbolicallyEvaluateGEP() local
933 APInt NewIdx = Offset.sdiv_ov(ElemSize, Overflow); in SymbolicallyEvaluateGEP()
934 if (Overflow) in SymbolicallyEvaluateGEP()
2037 bool Overflow; in ConstantFoldScalarCall() local
2041 Res = C0->sadd_ov(*C1, Overflow); in ConstantFoldScalarCall()
2044 Res = C0->uadd_ov(*C1, Overflow); in ConstantFoldScalarCall()
2047 Res = C0->ssub_ov(*C1, Overflow); in ConstantFoldScalarCall()
2050 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldScalarCall()
2053 Res = C0->smul_ov(*C1, Overflow); in ConstantFoldScalarCall()
2056 Res = C0->umul_ov(*C1, Overflow); in ConstantFoldScalarCall()
2061 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) in ConstantFoldScalarCall()