Home
last modified time | relevance | path

Searched refs:SMin (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Support/
DConstantRange.cpp97 APInt SMin(CR.getSignedMin()); in makeICmpRegion() local
98 if (SMin.isMaxSignedValue()) in makeICmpRegion()
100 return ConstantRange(SMin + 1, APInt::getSignedMinValue(W)); in makeICmpRegion()
109 APInt SMin(CR.getSignedMin()); in makeICmpRegion() local
110 if (SMin.isMinSignedValue()) in makeICmpRegion()
112 return ConstantRange(SMin, APInt::getSignedMinValue(W)); in makeICmpRegion()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3048 APFloat SMin(RHS.getSemantics()); in FoldFCmp_IntToFP_Cst() local
3049 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true, in FoldFCmp_IntToFP_Cst()
3051 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // smin > 12312.0 in FoldFCmp_IntToFP_Cst()
3059 APFloat SMin(RHS.getSemantics()); in FoldFCmp_IntToFP_Cst() local
3060 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true, in FoldFCmp_IntToFP_Cst()
3062 if (SMin.compare(RHS) == APFloat::cmpGreaterThan) { // umin > 12312.0 in FoldFCmp_IntToFP_Cst()