Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp192 Known.Zero = LHS.Zero.ushl_ov(ShiftAmt, ShiftedOutZero); in shl()
194 Known.One = LHS.One.ushl_ov(ShiftAmt, ShiftedOutOne); in shl()
H A DAPInt.cpp2011 APInt APInt::ushl_ov(const APInt &ShAmt, bool &Overflow) const { in ushl_ov() function in APInt
2012 return ushl_ov(ShAmt.getLimitedValue(getBitWidth()), Overflow); in ushl_ov()
2015 APInt APInt::ushl_ov(unsigned ShAmt, bool &Overflow) const { in ushl_ov() function in APInt
2105 APInt Res = ushl_ov(RHS, Overflow); in ushl_sat()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPInt.h997 APInt ushl_ov(const APInt &Amt, bool &Overflow) const;
998 APInt ushl_ov(unsigned Amt, bool &Overflow) const;
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPExpressions.cpp737 Res = LHS.Val.ushl_ov(RHS.Val, Overflow); in EvaluateDirectiveSubExpr()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp1396 APInt C2ShlC1 = C2->ushl_ov(*C1, Overflow); in visitUDiv()