Searched refs:sshl_ov (Results 1 – 4 of 4) sorted by relevance
997 APInt sshl_ov(const APInt &Amt, bool &Overflow) const;998 APInt sshl_ov(unsigned Amt, bool &Overflow) const;
1958 APInt APInt::sshl_ov(const APInt &ShAmt, bool &Overflow) const { in sshl_ov() function in APInt1959 return sshl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in sshl_ov()1962 APInt APInt::sshl_ov(unsigned ShAmt, bool &Overflow) const { in sshl_ov() function in APInt2062 APInt Res = sshl_ov(RHS, Overflow); in sshl_sat()
739 Res = llvm::APSInt(LHS.Val.sshl_ov(RHS.Val, Overflow), false); in EvaluateDirectiveSubExpr()
12775 llvm::APInt PowValue = One.sshl_ov(RightSideValue, Overflow); in diagnoseXorMisusedAsPow()