Searched refs:FCmp (Results 1 - 25 of 82) sorted by relevance

1234

/external/llvm/lib/Transforms/Scalar/
H A DPartiallyInlineLibCalls.cpp72 Value *FCmp = Builder.CreateFCmpOEQ(Call, Call); local
73 Builder.CreateCondBr(FCmp, JoinBB, LibCallBB);
H A DFloat2Int.cpp80 // Given a FCmp predicate, return a matching ICmp predicate if one
130 case Instruction::FCmp:
216 case Instruction::FCmp:
284 case Instruction::FCmp:
286 assert(Ops.size() == 2 && "FCmp is a binary operator!");
469 case Instruction::FCmp: {
H A DCorrelatedValuePropagation.cpp422 case Instruction::FCmp:
/external/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp492 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond); local
493 if (!FCmp)
497 if (FCmp->isEquality()) {
500 isProb = !FCmp->isTrueWhenEqual();
501 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
504 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
H A DCFLGraph.h161 CE->getOpcode() != Instruction::FCmp;
H A DCostModel.cpp422 case Instruction::FCmp: {
H A DInstructionSimplify.cpp403 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse); local
404 if (FCmp == Cond) {
407 FCmp = getFalse(Cond->getType());
408 } else if (!FCmp) {
413 FCmp = getFalse(Cond->getType());
418 if (TCmp == FCmp)
428 if (match(FCmp, m_Zero()))
432 // is equal to "Cond || FCmp".
434 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
438 if (match(FCmp, m_On
[all...]
H A DObjCARCInstKind.cpp293 case Instruction::FCmp:
/external/llvm/lib/Target/Mips/
H A DMipsOs16.cpp95 case Instruction::FCmp:
/external/llvm/unittests/IR/
H A DIRBuilderTest.cpp134 Instruction *FDiv, *FAdd, *FCmp, *FCall; local
195 FCmp = cast<Instruction>(FC);
196 EXPECT_FALSE(FCmp->hasAllowReciprocal());
206 FCmp = cast<Instruction>(FC);
207 EXPECT_TRUE(FCmp->hasAllowReciprocal());
/external/llvm/lib/Target/WebAssembly/
H A DWebAssemblyFastISel.cpp879 const FCmpInst *FCmp = cast<FCmpInst>(I); local
881 unsigned LHS = getRegForValue(FCmp->getOperand(0));
885 unsigned RHS = getRegForValue(FCmp->getOperand(1));
889 bool F32 = getSimpleType(FCmp->getOperand(0)->getType()) != MVT::f64;
892 switch (FCmp->getPredicate()) {
939 updateValueMap(FCmp, ResultReg);
1166 case Instruction::FCmp: return selectFCmp(I);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp193 case Instruction::FCmp:
/external/llvm/include/llvm/IR/
H A DOperator.h309 I->getOpcode() == Instruction::FCmp;
/external/llvm/lib/Target/SystemZ/
H A DSystemZTDC.cpp319 if (I.getOpcode() == Instruction::FCmp)
/external/llvm/lib/IR/
H A DConstantsContext.h254 // behind the scenes to implement ICmp and FCmp constant expressions. This is
276 CE->getOpcode() == Instruction::FCmp;
534 case Instruction::FCmp:
535 return new CompareConstantExpr(Ty, Instruction::FCmp, SubclassData,
H A DInstruction.cpp318 case FCmp: return "fcmp";
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineVectorOps.cpp669 case Instruction::FCmp:
751 case Instruction::FCmp:
832 case Instruction::FCmp:
/external/llvm/lib/Target/NVPTX/
H A DNVPTXGenericToNVVM.cpp313 case Instruction::FCmp:
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DInstruction.cpp152 case FCmp: return "fcmp";
H A DConstantsContext.h222 // behind the scenes to implement ICmp and FCmp constant expressions. This is
446 if (V.opcode == Instruction::FCmp)
447 return new CompareConstantExpr(Ty, Instruction::FCmp, V.subclassdata,
/external/v8/src/crankshaft/x87/
H A Dlithium-codegen-x87.cc1950 __ FCmp();
1959 __ FCmp();
1985 __ FCmp(); // NaN check.
2107 __ FCmp();
2209 __ FCmp();
2293 __ FCmp();
2342 __ FCmp();
3365 __ FCmp();
3409 __ FCmp();
3435 __ FCmp();
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp450 case Instruction::FCmp:
606 return Instruction::FCmp;
/external/llvm/lib/Target/PowerPC/
H A DPPCCTRLoops.cpp451 case Instruction::FCmp:
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp404 case Instruction::FCmp:
/external/swiftshader/third_party/LLVM/include/llvm/
H A DInstrTypes.h821 I->getOpcode() == Instruction::FCmp;

Completed in 536 milliseconds

1234