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

/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DValueLattice.cpp68 << Val.getConstantRange(true).getLower() << ", "
72 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
H A DStackSafetyAnalysis.cpp382 const SCEV *Min = ToDiffTy(SE.getConstant(Size.getLower()));
H A DScalarEvolution.cpp6984 APInt StartLower = StartRange.getLower();
10318 APInt Lower = Range.getLower().sext(A.getBitWidth()) - 1;
13271 APInt End = A.sge(1) ? (Range.getUpper() - 1) : Range.getLower();
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVRange.h71 LVAddress getLower() const { return Lower; } function in class:llvm::logicalview::final
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DConstantRange.cpp110 return ConstantRange(CR.getUpper(), CR.getLower());
217 } else if (getLower().isMinSignedValue() || getLower().isMinValue()) {
219 getLower().isMinSignedValue() ? CmpInst::ICMP_SLT : CmpInst::ICMP_ULT;
224 RHS = getLower();
227 RHS = getUpper() - getLower();
228 Offset = -getLower();
435 return getLower();
447 return getLower();
467 return Lower.ule(Other.getLower())
[all...]
H A DMetadata.cpp1234 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
1252 cast<ConstantInt>(ConstantInt::get(Ty, Union.getLower()));
H A DVerifier.cpp3991 return A.getUpper() == B.getLower() || A.getLower() == B.getUpper();
4029 Check(LowV.sgt(LastRange.getLower()), "Intervals are not in order",
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUAttributor.cpp733 if (getAssumed().getLower() == Min && getAssumed().getUpper() - 1 == Max)
740 OS << getAssumed().getLower() << ',' << getAssumed().getUpper() - 1;
750 OS << getAssumed().getLower() << ',' << getAssumed().getUpper() - 1;
836 *F, {AssumedGroupSize->getAssumed().getLower().getZExtValue(),
867 {CallerInfo->getAssumed().getLower().getZExtValue(),
869 {AssumedGroupSize->getAssumed().getLower().getZExtValue(),
/freebsd-current/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstantRange.h198 const APInt &getLower() const { return Lower; } function in class:llvm::ConstantRange
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DFloat2Int.cpp362 unsigned MinBW = std::max(R.getLower().getSignificantBits(),
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSCCP.cpp307 ConstantAsMetadata::get(ConstantInt::get(Context, CR.getLower())),
H A DAttributorAttributes.cpp9094 Ty, AssumedConstantRange.getLower())),
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp1270 APInt LowerDiff = CR1.getLower() ^ CR2.getLower();
1272 APInt CR1Size = CR1.getUpper() - CR1.getLower();
1274 CR1Size != CR2.getUpper() - CR2.getLower())
1277 CR = CR1.getLower().ult(CR2.getLower()) ? CR1 : CR2;
H A DInstCombineCompares.cpp2990 const APInt &Lower = CR.getLower();
/freebsd-current/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewReader.cpp1136 CompileUnit->addObject(ScopesWithRanges->getLower(),
/freebsd-current/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp3875 assert(Range.getLower().getNumWords() == 1);
3877 emitSignedInt64(Record, *Range.getLower().getRawData());
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp694 for (APInt Tmp = Span.getLower(); Tmp != Span.getUpper(); ++Tmp)

Completed in 506 milliseconds