/external/llvm-project/llvm/test/Analysis/ScalarEvolution/ |
D | saturating-intrinsics.ll | 67 define i32 @sshl_sat(i32 %x, i32 %y) { 68 ; CHECK-LABEL: 'sshl_sat' 69 ; CHECK-NEXT: Classifying expressions for: @sshl_sat 72 ; CHECK-NEXT: Determining loop execution counts for: @sshl_sat
|
/external/llvm-project/llvm/include/llvm/IR/ |
D | ConstantRange.h | 474 ConstantRange sshl_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 | 449 ConstantRange sshl_sat(const ConstantRange &Other) const;
|
/external/llvm-project/llvm/unittests/ADT/ |
D | APIntTest.cpp | 1244 EXPECT_EQ(APInt(8, 64), APInt(8, 4).sshl_sat(APInt(8, 4))); in TEST() 1245 EXPECT_EQ(APInt(8, 127), APInt(8, 4).sshl_sat(APInt(8, 5))); in TEST() 1246 EXPECT_EQ(APInt(8, 127), APInt(8, 1).sshl_sat(APInt(8, 8))); in TEST() 1247 EXPECT_EQ(APInt(8, -64), APInt(8, -4).sshl_sat(APInt(8, 4))); in TEST() 1248 EXPECT_EQ(APInt(8, -128), APInt(8, -4).sshl_sat(APInt(8, 5))); in TEST() 1249 EXPECT_EQ(APInt(8, -128), APInt(8, -4).sshl_sat(APInt(8, 6))); in TEST() 1250 EXPECT_EQ(APInt(8, -128), APInt(8, -1).sshl_sat(APInt(8, 7))); in TEST() 1251 EXPECT_EQ(APInt(8, -128), APInt(8, -1).sshl_sat(APInt(8, 8))); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 1380 ConstantRange ConstantRange::sshl_sat(const ConstantRange &Other) const { in sshl_sat() function in ConstantRange 1386 APInt NewL = Min.sshl_sat(Min.isNonNegative() ? ShAmtMin : ShAmtMax); in sshl_sat() 1387 APInt NewU = Max.sshl_sat(Max.isNegative() ? ShAmtMin : ShAmtMax) + 1; in sshl_sat()
|
/external/llvm-project/llvm/lib/IR/ |
D | ConstantRange.cpp | 1482 ConstantRange ConstantRange::sshl_sat(const ConstantRange &Other) const { in sshl_sat() function in ConstantRange 1488 APInt NewL = Min.sshl_sat(Min.isNonNegative() ? ShAmtMin : ShAmtMax); in sshl_sat() 1489 APInt NewU = Max.sshl_sat(Max.isNegative() ? ShAmtMin : ShAmtMax) + 1; in sshl_sat()
|
D | Verifier.cpp | 4998 case Intrinsic::sshl_sat: in visitIntrinsicCall()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | APInt.h | 1131 APInt sshl_sat(const APInt &RHS) const;
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APInt.h | 1131 APInt sshl_sat(const APInt &RHS) const;
|
/external/llvm-project/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 2347 return CR1.sshl_sat(CR2); in TEST_F() 2349 [](const APInt &N1, const APInt &N2) { return N1.sshl_sat(N2); }); in TEST_F()
|
/external/llvm-project/llvm/lib/Support/ |
D | APInt.cpp | 2097 APInt APInt::sshl_sat(const APInt &RHS) const { in sshl_sat() function in APInt
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APInt.cpp | 2098 APInt APInt::sshl_sat(const APInt &RHS) const { in sshl_sat() function in APInt
|
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
D | IRTranslator.cpp | 1954 case Intrinsic::sshl_sat: in translateKnownIntrinsic()
|
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 6272 case Intrinsic::sshl_sat: { in visitIntrinsicCall()
|