Searched refs:LHSMax (Results 1 – 1 of 1) sorted by relevance
1698 APInt LHSMax = LHS.getUnsignedMax(); in computeShlNUW() local1701 unsigned MaxShAmt = LHSMax.countLeadingZeros(); in computeShlNUW()1703 MaxShl = LHSMax << std::min(RHSMax, MaxShAmt); in computeShlNUW()1713 const APInt &LHSMax, in computeShlNSWWithNNegLHS() argument1722 unsigned MaxShAmt = LHSMax.countLeadingZeros() - 1; in computeShlNSWWithNNegLHS()1724 MaxShl = LHSMax << std::min(RHSMax, MaxShAmt); in computeShlNSWWithNNegLHS()1734 const APInt &LHSMax, in computeShlNSWWithNegLHS() argument1738 APInt MaxShl = LHSMax.sshl_ov(RHSMin, Overflow); in computeShlNSWWithNegLHS()1746 RHSMax = std::min(RHSMax, LHSMax.countLeadingOnes() - 1); in computeShlNSWWithNegLHS()1758 APInt LHSMax = LHS.getSignedMax(); in computeShlNSW() local[all …]