Home
last modified time | relevance | path

Searched refs:ushl_sat (Results 1 – 9 of 9) sorted by relevance

/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DConstantRange.h515 ConstantRange ushl_sat(const ConstantRange &Other) const;
H A DFixedPointBuilder.h350 Intrinsic::ID IID = UseSigned ? Intrinsic::sshl_sat : Intrinsic::ushl_sat; in CreateShl()
/openbsd/gnu/llvm/llvm/lib/IR/
H A DConstantRange.cpp1600 ConstantRange ConstantRange::ushl_sat(const ConstantRange &Other) const { in ushl_sat() function in ConstantRange
1604 APInt NewL = getUnsignedMin().ushl_sat(Other.getUnsignedMin()); in ushl_sat()
1605 APInt NewU = getUnsignedMax().ushl_sat(Other.getUnsignedMax()) + 1; in ushl_sat()
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DAPInt.h1016 APInt ushl_sat(const APInt &RHS) const;
/openbsd/gnu/llvm/llvm/lib/Support/
H A DAPInt.cpp2079 APInt APInt::ushl_sat(const APInt &RHS) const { in ushl_sat() function in APInt
/openbsd/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DIRTranslator.cpp2027 case Intrinsic::ushl_sat: in translateKnownIntrinsic()
/openbsd/gnu/llvm/llvm/lib/Analysis/
H A DValueTracking.cpp5285 case Intrinsic::ushl_sat: in canCreateUndefOrPoison()
/openbsd/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp5660 case ISD::USHLSAT: return C1.ushl_sat(C2); in FoldValue()
H A DSelectionDAGBuilder.cpp6631 case Intrinsic::ushl_sat: { in visitIntrinsicCall()