Lines Matching refs:Overflow
900 bool Overflow = false; in SymbolicallyEvaluateGEP() local
928 Overflow); in SymbolicallyEvaluateGEP()
933 if (NW.hasNoUnsignedSignedWrap() && !NW.isInBounds() && Overflow) in SymbolicallyEvaluateGEP()
2852 bool Overflow; in ConstantFoldIntrinsicCall2() local
2856 Res = C0->sadd_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2859 Res = C0->uadd_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2862 Res = C0->ssub_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2865 Res = C0->usub_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2868 Res = C0->smul_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2871 Res = C0->umul_ov(*C1, Overflow); in ConstantFoldIntrinsicCall2()
2876 ConstantInt::get(Type::getInt1Ty(Ty->getContext()), Overflow) in ConstantFoldIntrinsicCall2()