Home
last modified time | relevance | path

Searched refs:OtherMin (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
1581 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1594 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1601 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
1602 Min.sgt(SignedMax - OtherMin)) in signedAddMayOverflow()
1611 if (Min.isNegative() && OtherMin.isNegative() && in signedAddMayOverflow()
1612 Min.slt(SignedMin - OtherMin)) in signedAddMayOverflow()
1624 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1627 if (Max.ult(OtherMin)) in unsignedSubMayOverflow()
1640 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]