Lines Matching refs:OverflowResult
3540 OverflowResult llvm::computeOverflowForUnsignedMul(Value *LHS, Value *RHS, in computeOverflowForUnsignedMul()
3567 return OverflowResult::NeverOverflows; in computeOverflowForUnsignedMul()
3578 return OverflowResult::NeverOverflows; in computeOverflowForUnsignedMul()
3585 return OverflowResult::AlwaysOverflows; in computeOverflowForUnsignedMul()
3587 return OverflowResult::MayOverflow; in computeOverflowForUnsignedMul()
3590 OverflowResult llvm::computeOverflowForUnsignedAdd(Value *LHS, Value *RHS, in computeOverflowForUnsignedAdd()
3606 return OverflowResult::AlwaysOverflows; in computeOverflowForUnsignedAdd()
3612 return OverflowResult::NeverOverflows; in computeOverflowForUnsignedAdd()
3616 return OverflowResult::MayOverflow; in computeOverflowForUnsignedAdd()
3619 static OverflowResult computeOverflowForSignedAdd( in computeOverflowForSignedAdd()
3623 return OverflowResult::NeverOverflows; in computeOverflowForSignedAdd()
3636 return OverflowResult::NeverOverflows; in computeOverflowForSignedAdd()
3641 return OverflowResult::MayOverflow; in computeOverflowForSignedAdd()
3656 return OverflowResult::NeverOverflows; in computeOverflowForSignedAdd()
3660 return OverflowResult::MayOverflow; in computeOverflowForSignedAdd()
3663 OverflowResult llvm::computeOverflowForSignedAdd(AddOperator *Add, in computeOverflowForSignedAdd()
3672 OverflowResult llvm::computeOverflowForSignedAdd(Value *LHS, Value *RHS, in computeOverflowForSignedAdd()