Home
last modified time | relevance | path

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

/external/llvm-project/llvm/test/Analysis/ScalarEvolution/
Dsaturating-intrinsics.ll56 define i32 @ushl_sat(i32 %x, i32 %y) {
57 ; CHECK-LABEL: 'ushl_sat'
58 ; CHECK-NEXT: Classifying expressions for: @ushl_sat
61 ; CHECK-NEXT: Determining loop execution counts for: @ushl_sat
/external/llvm-project/llvm/include/llvm/IR/
DConstantRange.h470 ConstantRange ushl_sat(const ConstantRange &Other) const;
DFixedPointBuilder.h289 Intrinsic::ID IID = UseSigned ? Intrinsic::sshl_sat : Intrinsic::ushl_sat; in CreateShl()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h445 ConstantRange ushl_sat(const ConstantRange &Other) const;
/external/llvm-project/llvm/unittests/ADT/
DAPIntTest.cpp1236 EXPECT_EQ(APInt(8, 128), APInt(8, 4).ushl_sat(APInt(8, 5))); in TEST()
1237 EXPECT_EQ(APInt(8, 255), APInt(8, 4).ushl_sat(APInt(8, 6))); in TEST()
1238 EXPECT_EQ(APInt(8, 128), APInt(8, 1).ushl_sat(APInt(8, 7))); in TEST()
1239 EXPECT_EQ(APInt(8, 255), APInt(8, 1).ushl_sat(APInt(8, 8))); in TEST()
1240 EXPECT_EQ(APInt(8, 255), APInt(8, -128).ushl_sat(APInt(8, 2))); in TEST()
1241 EXPECT_EQ(APInt(8, 255), APInt(8, 64).ushl_sat(APInt(8, 2))); in TEST()
1242 EXPECT_EQ(APInt(8, 255), APInt(8, 64).ushl_sat(APInt(8, -2))); in TEST()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp1371 ConstantRange ConstantRange::ushl_sat(const ConstantRange &Other) const { in ushl_sat() function in ConstantRange
1375 APInt NewL = getUnsignedMin().ushl_sat(Other.getUnsignedMin()); in ushl_sat()
1376 APInt NewU = getUnsignedMax().ushl_sat(Other.getUnsignedMax()) + 1; in ushl_sat()
/external/llvm-project/llvm/lib/IR/
DConstantRange.cpp1473 ConstantRange ConstantRange::ushl_sat(const ConstantRange &Other) const { in ushl_sat() function in ConstantRange
1477 APInt NewL = getUnsignedMin().ushl_sat(Other.getUnsignedMin()); in ushl_sat()
1478 APInt NewU = getUnsignedMax().ushl_sat(Other.getUnsignedMax()) + 1; in ushl_sat()
DVerifier.cpp4999 case Intrinsic::ushl_sat: { in visitIntrinsicCall()
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h1132 APInt ushl_sat(const APInt &RHS) const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1132 APInt ushl_sat(const APInt &RHS) const;
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp2311 return CR1.ushl_sat(CR2); in TEST_F()
2313 [](const APInt &N1, const APInt &N2) { return N1.ushl_sat(N2); }); in TEST_F()
/external/llvm-project/llvm/lib/Support/
DAPInt.cpp2107 APInt APInt::ushl_sat(const APInt &RHS) const { in ushl_sat() function in APInt
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp2108 APInt APInt::ushl_sat(const APInt &RHS) const { in ushl_sat() function in APInt
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp1952 case Intrinsic::ushl_sat: in translateKnownIntrinsic()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp6278 case Intrinsic::ushl_sat: { in visitIntrinsicCall()