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.cpp1255 APInt OtherMax = Other.getSignedMax(); 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()
1586 APInt OtherMax = Other.getUnsignedMax(); in shl() local
1587 if (isAllNegative() && OtherMax.ule(Min.countl_one())) { in shl()
1591 Min <<= OtherMax; in shl()
1596 if (OtherMax.ugt(Max.countl_zero())) in shl()
1602 Max <<= OtherMax; in shl()
1726 APInt OtherMax = Other.getSignedMax(); in smul_sat() local
1728 auto L = {Min.smul_sat(OtherMin), Min.smul_sat(OtherMax), in smul_sat()
[all …]