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

/external/llvm/unittests/IR/
H A DConstantsTest.cpp241 CHECK(ConstantExpr::getFCmp(CmpInst::FCMP_ULT, P1, P5), "fcmp ult float "
/external/llvm/lib/IR/
H A DConstantFold.cpp1673 case FCmpInst::FCMP_ULT:
1720 case FCmpInst::FCMP_ULT:
1735 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT ||
1747 else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
1752 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
H A DInstructions.cpp3040 case FCMP_OGE: return FCMP_ULT;
3045 case FCMP_ULT: return FCMP_OGE;
3167 case FCMP_UGT: return FCMP_ULT;
3168 case FCMP_ULT: return FCMP_UGT;
3203 case FCmpInst::FCMP_ULT: case FCmpInst::FCMP_UGE: case FCmpInst::FCMP_ULE:
H A DAsmWriter.cpp695 case FCmpInst::FCMP_ULT: pred = "ult"; break;
H A DConstants.cpp1794 case CmpInst::FCMP_ULT: case CmpInst::FCMP_ULE: case CmpInst::FCMP_UNE:
/external/llvm/include/llvm/IR/
H A DInstrTypes.h665 FCMP_ULT = 12, ///< 1 1 0 0 True if unordered or less than enumerator in enum:llvm::CmpInst::Predicate
H A DIRBuilder.h1225 return CreateFCmp(FCmpInst::FCMP_ULT, LHS, RHS, Name);
/external/llvm/lib/CodeGen/
H A DAnalysis.cpp164 case FCmpInst::FCMP_ULT: return ISD::SETULT;
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp630 case FCmpInst::FCMP_ULT: R = executeFCMP_ULT(Src1, Src2, Ty); break;
664 case FCmpInst::FCMP_ULT: return executeFCMP_ULT(Src1, Src2, Ty);
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp898 case FCmpInst::FCMP_ULT: Out << "ULT"; break;
1258 case FCmpInst::FCMP_ULT : Out << "FCmpInst::FCMP_ULT"; break;
/external/llvm/include/llvm/Support/
H A DPatternMatch.h934 return Pred == CmpInst::FCMP_ULT || Pred == CmpInst::FCMP_ULE;
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp318 case CmpInst::FCMP_ULT: NewPred = CmpInst::ICMP_SLT; break;
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp989 case CmpInst::FCMP_ULT: SwapArgs = false; SetCCOpc = X86::SETBr; break;
1110 case CmpInst::FCMP_ULT: SwapArgs = false; BranchOpc = X86::JB_4; break;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp81 case FCmpInst::FCMP_ULT: return 4; // 100
118 case 4: Pred = isordered ? FCmpInst::FCMP_OLT : FCmpInst::FCMP_ULT; break;
H A DInstCombineCompares.cpp2994 case FCmpInst::FCMP_ULT:
3171 case FCmpInst::FCMP_ULT: // True if unordered or less than
/external/llvm/lib/Target/ARM/
H A DARMFastISel.cpp1279 case CmpInst::FCMP_ULT:
/external/llvm/lib/AsmParser/
H A DLLParser.cpp3346 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;

Completed in 1219 milliseconds