Home
last modified time | relevance | path

Searched refs:OtherMax (Results 1 – 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstantRange.cpp1578 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1583 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()
1594 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1604 if (Max.isNegative() && OtherMax.isNegative() && in signedAddMayOverflow()
1605 Max.slt(SignedMin - OtherMax)) in signedAddMayOverflow()
1608 if (Max.isNonNegative() && OtherMax.isNonNegative() && in signedAddMayOverflow()
1609 Max.sgt(SignedMax - OtherMax)) in signedAddMayOverflow()
1624 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1629 if (Min.ult(OtherMax)) in unsignedSubMayOverflow()
1640 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]