Searched refs:cmpLessThan (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Support/ |
D | APFloat.cpp | 1106 return cmpLessThan; in compareAbsoluteValue() 1360 reverse = compareAbsoluteValue(temp_rhs) == cmpLessThan; in addOrSubtractSignificand() 1791 return cmpLessThan; in compare() 1801 return cmpLessThan; in compare() 1807 return cmpLessThan; in compare() 1821 result = cmpLessThan; in compare() 1829 if (result == cmpLessThan) in compare() 1832 result = cmpLessThan; in compare()
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 143 cmpLessThan, enumerator
|
/external/llvm/lib/VMCore/ |
D | ConstantFold.cpp | 1938 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1942 R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1944 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan); in ConstantFoldCompareInstruction() 1953 return ConstantInt::get(ResultTy, R==APFloat::cmpLessThan || in ConstantFoldCompareInstruction() 1956 return ConstantInt::get(ResultTy, R!=APFloat::cmpLessThan); in ConstantFoldCompareInstruction()
|
/external/clang/lib/AST/ |
D | ExprConstant.cpp | 1389 CR_r == APFloat::cmpLessThan || in VisitBinaryOperator() 1392 CR_i == APFloat::cmpLessThan || in VisitBinaryOperator() 1424 return Success(CR == APFloat::cmpLessThan, E); in VisitBinaryOperator() 1428 return Success(CR == APFloat::cmpLessThan || CR == APFloat::cmpEqual, E); in VisitBinaryOperator() 1436 || CR == APFloat::cmpLessThan in VisitBinaryOperator()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2654 if (SMax.compare(RHS) == APFloat::cmpLessThan) { // smax < 13123.0 in FoldFCmp_IntToFP_Cst() 2666 if (UMax.compare(RHS) == APFloat::cmpLessThan) { // umax < 13123.0 in FoldFCmp_IntToFP_Cst() 2842 APFloat::cmpLessThan) in visitFCmpInst()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 1520 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1524 case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT); in FoldSetCC() 1532 case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan || in FoldSetCC() 1545 R==APFloat::cmpLessThan, VT); in FoldSetCC() 1549 case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT); in FoldSetCC()
|