Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp1560 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1565 if (Max.ugt(~OtherMax)) in unsignedAddMayOverflow()
1576 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1586 if (Max.isNegative() && OtherMax.isNegative() && in signedAddMayOverflow()
1587 Max.slt(SignedMin - OtherMax)) in signedAddMayOverflow()
1590 if (Max.isNonNegative() && OtherMax.isNonNegative() && in signedAddMayOverflow()
1591 Max.sgt(SignedMax - OtherMax)) in signedAddMayOverflow()
1606 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedSubMayOverflow() local
1611 if (Min.ult(OtherMax)) in unsignedSubMayOverflow()
1622 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedSubMayOverflow() local
[all …]