Searched refs:OtherMin (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 1278 APInt OtherMin = Other.getSignedMin(); in smul_fast() local 1282 auto Muls = {Min.smul_ov(OtherMin, O1), Min.smul_ov(OtherMax, O2), in smul_fast() 1283 Max.smul_ov(OtherMin, O3), Max.smul_ov(OtherMax, O4)}; in smul_fast() 1910 APInt OtherMin = Other.getSignedMin(); in smul_sat() local 1913 auto L = {Min.smul_sat(OtherMin), Min.smul_sat(OtherMax), in smul_sat() 1914 Max.smul_sat(OtherMin), Max.smul_sat(OtherMax)}; in smul_sat() 2147 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local 2150 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow() 2163 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local 2170 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow() [all …]
|