Searched refs:getSignedMin (Results 1 - 8 of 8) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h140 /// getSignedMin - Return the smallest signed value contained in the
143 APInt getSignedMin() const;
/external/llvm/lib/IR/
H A DConstantRange.cpp100 APInt SMin(CR.getSignedMin());
112 APInt SMin(CR.getSignedMin());
209 APInt SignedMin = Other.getSignedMin();
300 /// getSignedMin - Return the smallest signed value contained in the
303 APInt ConstantRange::getSignedMin() const { function in class:ConstantRange
729 this_min = getSignedMin().sext(getBitWidth() * 2);
731 Other_min = Other.getSignedMin().sext(getBitWidth() * 2);
749 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin());
775 APInt NewL = APIntOps::smin(getSignedMin(), Othe
[all...]
/external/llvm/include/llvm/IR/
H A DConstantRange.h191 APInt getSignedMin() const;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DConstantRange.cpp96 APInt SMin(CR.getSignedMin());
108 APInt SMin(CR.getSignedMin());
196 /// getSignedMin - Return the smallest signed value contained in the
199 APInt ConstantRange::getSignedMin() const { function in class:ConstantRange
572 APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin());
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DConstantRangeTest.cpp140 EXPECT_EQ(Full.getSignedMin(), APInt(16, (uint64_t)INT16_MIN));
141 EXPECT_EQ(One.getSignedMin(), APInt(16, 0xa));
142 EXPECT_EQ(Some.getSignedMin(), APInt(16, 0xa));
143 EXPECT_EQ(Wrap.getSignedMin(), APInt(16, (uint64_t)INT16_MIN));
/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp144 EXPECT_EQ(Full.getSignedMin(), APInt(16, (uint64_t)INT16_MIN));
145 EXPECT_EQ(One.getSignedMin(), APInt(16, 0xa));
146 EXPECT_EQ(Some.getSignedMin(), APInt(16, 0xa));
147 EXPECT_EQ(Wrap.getSignedMin(), APInt(16, (uint64_t)INT16_MIN));
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DScalarEvolution.cpp1012 getSignedRange(Step).getSignedMin());
1053 SE->getSignedRange(Step).getSignedMin());
3521 APInt Min = APIntOps::smin(StartRange.getSignedMin(),
3522 EndRange.getSignedMin());
5625 } else if (!getSignedRange(LHS).getSignedMin().isMinSignedValue()) {
5633 if (!getSignedRange(RHS).getSignedMin().isMinSignedValue()) {
5697 return getSignedRange(S).getSignedMin().isStrictlyPositive();
5701 return !getSignedRange(S).getSignedMin().isNegative();
5754 if (LHSRange.getSignedMax().slt(RHSRange.getSignedMin()))
5756 if (LHSRange.getSignedMin()
[all...]
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp1163 SE->getSignedRange(Step).getSignedMin());
1554 getSignedRange(Step).getSignedMin());
3482 !getSignedRange(RHS).getSignedMin().isMinSignedValue();
4652 APIntOps::smin(StartSRange.getSignedMin(), EndSRange.getSignedMin());
7485 } else if (!getSignedRange(LHS).getSignedMin().isMinSignedValue()) {
7493 if (!getSignedRange(RHS).getSignedMin().isMinSignedValue()) {
7560 return getSignedRange(S).getSignedMin().isStrictlyPositive();
7564 return !getSignedRange(S).getSignedMin().isNegative();
8170 getSignedRange(V).getSignedMin()
[all...]

Completed in 245 milliseconds