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

/freebsd-10.2-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp64 return ConstantRange(CR.getUpper(), CR.getLower());
172 return getLower();
181 if (getLower().sle(getUpper() - 1))
185 if (getLower().isNegative() == getUpper().isNegative())
196 if (getLower().sle(getUpper() - 1))
197 return getLower();
200 if ((getUpper() - 1).slt(getLower())) {
204 return getLower();
230 return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
235 Lower.ule(Other.getLower());
[all...]
/freebsd-10.2-release/contrib/llvm/include/llvm/Support/
H A DConstantRange.h77 /// getLower - Return the lower value for this range...
79 const APInt &getLower() const { return Lower; } function in class:llvm::ConstantRange
/freebsd-10.2-release/contrib/llvm/lib/IR/
H A DMetadata.cpp420 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
437 EndPoints[Size - 2] = ConstantInt::get(Ty, Union.getLower());
H A DVerifier.cpp1758 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
1810 Assert1(LowV.sgt(LastRange.getLower()), "Intervals are not in order",
/freebsd-10.2-release/contrib/llvm/lib/Analysis/
H A DLazyValueInfo.cpp286 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
H A DScalarEvolution.cpp6605 APInt End = A.sge(One) ? (Range.getUpper() - One) : Range.getLower();
/freebsd-10.2-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1583 if (CR.getLower().isSignBit()) {
1588 Builder->getInt(CR.getLower()));
1591 if (CR.getLower().isMinValue()) {
1596 Builder->getInt(CR.getLower()));
/freebsd-10.2-release/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp394 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)

Completed in 229 milliseconds