HomeSort by relevance Sort by last modified time
    Searched full:getlower (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/Support/
ConstantRange.cpp 63 return ConstantRange(CR.getUpper(), CR.getLower());
174 return getLower();
183 if (getLower().sle(getUpper() - 1))
187 if (getLower().isNegative() == getUpper().isNegative())
198 if (getLower().sle(getUpper() - 1))
199 return getLower();
202 if ((getUpper() - 1).slt(getLower())) {
206 return getLower();
232 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
237 Lower.ule(Other.getLower());
    [all...]
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 178 EXPECT_EQ(TOne, ConstantRange(One.getLower().trunc(10),
191 EXPECT_EQ(ZOne, ConstantRange(One.getLower().zext(20),
193 EXPECT_EQ(ZSome, ConstantRange(Some.getLower().zext(20),
211 EXPECT_EQ(SOne, ConstantRange(One.getLower().sext(20),
213 EXPECT_EQ(SSome, ConstantRange(Some.getLower().sext(20),
  /external/llvm/include/llvm/Support/
ConstantRange.h 69 /// getLower - Return the lower value for this range...
71 const APInt &getLower() const { return Lower; }
  /external/llvm/lib/VMCore/
Metadata.cpp 453 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
470 EndPoints[Size - 2] = ConstantInt::get(Ty, Union.getLower());
Verifier.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp     [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 286 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
    [all...]
ScalarEvolution.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 440 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)
    [all...]

Completed in 205 milliseconds