Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp1279 APInt OtherMax = Other.getSignedMax(); 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()
1668 APInt OtherMax = Other.getUnsignedMax(); in shl() local
1669 if (isAllNegative() && OtherMax.ule(Min.countl_one())) { in shl()
1673 Min <<= OtherMax; in shl()
1678 if (OtherMax.ugt(Max.countl_zero())) in shl()
1684 Max <<= OtherMax; in shl()
1911 APInt OtherMax = Other.getSignedMax(); in smul_sat() local
1913 auto L = {Min.smul_sat(OtherMin), Min.smul_sat(OtherMax), in smul_sat()
[all …]