Home
last modified time | relevance | path

Searched refs:MaxInt (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFixedPoint.cpp138 APSInt MaxInt = APFixedPoint::getMax(*this).getValue(); in fitsInFloatSemantics() local
140 APFloat::opStatus Status = F.convertFromAPInt(MaxInt, MaxInt.isSigned(), in fitsInFloatSemantics()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp9545 APInt MinInt, MaxInt; in expandFP_TO_INT_SAT() local
9548 MaxInt = APInt::getSignedMaxValue(SatWidth).sext(DstWidth); in expandFP_TO_INT_SAT()
9551 MaxInt = APInt::getMaxValue(SatWidth).zext(DstWidth); in expandFP_TO_INT_SAT()
9567 MaxFloat.convertFromAPInt(MaxInt, IsSigned, APFloat::rmTowardZero); in expandFP_TO_INT_SAT()
9602 SDValue MaxIntNode = DAG.getConstant(MaxInt, dl, DstVT); in expandFP_TO_INT_SAT()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp10234 APInt MaxInt = getUnsignedRangeMax(applyLoopGuards(Exact, L)); in howFarToZero() local
10235 Max = getConstant(APIntOps::umin(MaxInt, getUnsignedRangeMax(Exact))); in howFarToZero()
/llvm-project-15.0.7/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22781 APInt MinInt, MaxInt; in LowerFP_TO_INT_SAT() local
22784 MaxInt = APInt::getSignedMaxValue(SatWidth).sext(DstWidth); in LowerFP_TO_INT_SAT()
22787 MaxInt = APInt::getMaxValue(SatWidth).zext(DstWidth); in LowerFP_TO_INT_SAT()
22796 MaxInt, IsSigned, APFloat::rmTowardZero); in LowerFP_TO_INT_SAT()
22843 SDValue MaxIntNode = DAG.getConstant(MaxInt, dl, DstVT); in LowerFP_TO_INT_SAT()