Searched refs:ushl_ov (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | KnownBits.cpp | 291 Known.Zero = LHS.Zero.ushl_ov(ShiftAmt, ShiftedOutZero); in shl() 293 Known.One = LHS.One.ushl_ov(ShiftAmt, ShiftedOutOne); in shl()
|
H A D | APInt.cpp | 1975 APInt APInt::ushl_ov(const APInt &ShAmt, bool &Overflow) const { in ushl_ov() function in APInt 1976 return ushl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in ushl_ov() 1979 APInt APInt::ushl_ov(unsigned ShAmt, bool &Overflow) const { in ushl_ov() function in APInt 2076 APInt Res = ushl_ov(RHS, Overflow); in ushl_sat()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | APInt.h | 999 APInt ushl_ov(const APInt &Amt, bool &Overflow) const; 1000 APInt ushl_ov(unsigned Amt, bool &Overflow) const;
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | PPExpressions.cpp | 737 Res = LHS.Val.ushl_ov(RHS.Val, Overflow); in EvaluateDirectiveSubExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineMulDivRem.cpp | 1532 APInt C2ShlC1 = C2->ushl_ov(*C1, Overflow); in visitUDiv()
|