Home
last modified time | relevance | path

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

/external/llvm-project/llvm/test/Analysis/ScalarEvolution/
Dsaturating-intrinsics.ll67 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/
DConstantRange.h474 ConstantRange sshl_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.h449 ConstantRange sshl_sat(const ConstantRange &Other) const;
/external/llvm-project/llvm/unittests/ADT/
DAPIntTest.cpp1244 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/
DConstantRange.cpp1380 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/
DConstantRange.cpp1482 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()
DVerifier.cpp4998 case Intrinsic::sshl_sat: in visitIntrinsicCall()
/external/llvm-project/llvm/include/llvm/ADT/
DAPInt.h1131 APInt sshl_sat(const APInt &RHS) const;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPInt.h1131 APInt sshl_sat(const APInt &RHS) const;
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp2347 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/
DAPInt.cpp2097 APInt APInt::sshl_sat(const APInt &RHS) const { in sshl_sat() function in APInt
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp2098 APInt APInt::sshl_sat(const APInt &RHS) const { in sshl_sat() function in APInt
/external/llvm-project/llvm/lib/CodeGen/GlobalISel/
DIRTranslator.cpp1954 case Intrinsic::sshl_sat: in translateKnownIntrinsic()
/external/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp6272 case Intrinsic::sshl_sat: { in visitIntrinsicCall()