Home
last modified time | relevance | path

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

/freebsd-14-stable/contrib/llvm-project/llvm/lib/IR/
HDConstantRange.cpp1254 APInt OtherMin = Other.getSignedMin(); in smul_fast() local
1258 auto Muls = {Min.smul_ov(OtherMin, O1), Min.smul_ov(OtherMax, O2), in smul_fast()
1259 Max.smul_ov(OtherMin, O3), Max.smul_ov(OtherMax, O4)}; in smul_fast()
1725 APInt OtherMin = Other.getSignedMin(); in smul_sat() local
1728 auto L = {Min.smul_sat(OtherMin), Min.smul_sat(OtherMax), in smul_sat()
1729 Max.smul_sat(OtherMin), Max.smul_sat(OtherMax)}; in smul_sat()
1962 APInt OtherMin = Other.getUnsignedMin(), OtherMax = Other.getUnsignedMax(); in unsignedAddMayOverflow() local
1965 if (Min.ugt(~OtherMin)) in unsignedAddMayOverflow()
1978 APInt OtherMin = Other.getSignedMin(), OtherMax = Other.getSignedMax(); in signedAddMayOverflow() local
1985 if (Min.isNonNegative() && OtherMin.isNonNegative() && in signedAddMayOverflow()
[all …]