/external/llvm-project/llvm/test/Analysis/ScalarEvolution/ |
D | saturating-intrinsics.ll | 56 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/ |
D | ConstantRange.h | 470 ConstantRange ushl_sat(const ConstantRange &Other) const;
|
D | FixedPointBuilder.h | 289 Intrinsic::ID IID = UseSigned ? Intrinsic::sshl_sat : Intrinsic::ushl_sat; in CreateShl()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | ConstantRange.h | 445 ConstantRange ushl_sat(const ConstantRange &Other) const;
|
/external/llvm-project/llvm/unittests/ADT/ |
D | APIntTest.cpp | 1236 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/ |
D | ConstantRange.cpp | 1371 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/ |
D | ConstantRange.cpp | 1473 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()
|
D | Verifier.cpp | 4999 case Intrinsic::ushl_sat: { in visitIntrinsicCall()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 1132 APInt ushl_sat(const APInt &RHS) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1132 APInt ushl_sat(const APInt &RHS) const;
|
/external/llvm-project/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 2311 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/ |
D | APInt.cpp | 2107 APInt APInt::ushl_sat(const APInt &RHS) const { in ushl_sat() function in APInt
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 2108 APInt APInt::ushl_sat(const APInt &RHS) const { in ushl_sat() function in APInt
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | IRTranslator.cpp | 1952 case Intrinsic::ushl_sat: in translateKnownIntrinsic()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 6278 case Intrinsic::ushl_sat: { in visitIntrinsicCall()
|