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

12

/external/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp351 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond); local
352 if (!FCmp)
356 if (FCmp->isEquality()) {
359 isProb = !FCmp->isTrueWhenEqual();
360 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
363 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
H A DInstructionSimplify.cpp464 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse); local
465 if (FCmp == Cond) {
468 FCmp = getFalse(Cond->getType());
469 } else if (!FCmp) {
474 FCmp = getFalse(Cond->getType());
479 if (TCmp == FCmp)
489 if (match(FCmp, m_Zero()))
493 // is equal to "Cond || FCmp".
495 if (Value *V = SimplifyOrInst(Cond, FCmp, Q, MaxRecurse))
499 if (match(FCmp, m_On
[all...]
H A DConstantFolding.cpp906 case Instruction::FCmp: llvm_unreachable("Invalid for compares");
/external/llvm/lib/Transforms/Scalar/
H A DCorrelatedValuePropagation.cpp276 case Instruction::FCmp:
H A DGVN.cpp197 assert((Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) &&
419 case Instruction::FCmp:
H A DSimplifyLibCalls.cpp1008 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf); local
1009 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs);
/external/llvm/lib/VMCore/
H A DInstruction.cpp151 case FCmp: return "fcmp";
H A DConstantsContext.h233 // behind the scenes to implement ICmp and FCmp constant expressions. This is
471 if (V.opcode == Instruction::FCmp)
472 return new CompareConstantExpr(Ty, Instruction::FCmp, V.subclassdata,
H A DConstants.cpp984 return getOpcode() == Instruction::ICmp || getOpcode() == Instruction::FCmp;
1089 case Instruction::FCmp:
1793 assert(pred <= FCmpInst::LAST_FCMP_PREDICATE && "Invalid FCmp Predicate");
1803 const ExprMapKeyType Key(Instruction::FCmp, ArgVec, pred);
H A DConstantFold.cpp1016 case Instruction::FCmp:
1666 default: llvm_unreachable("Invalid FCmp Predicate");
/external/llvm/include/llvm/
H A DInstrTypes.h822 I->getOpcode() == Instruction::FCmp;
H A DInstructions.h1065 Instruction::FCmp, pred, LHS, RHS, NameStr,
1068 "Invalid FCmp predicate value");
1070 "Both operands to FCmp instruction are not of the same type!");
1073 "Invalid operand types for FCmp instruction");
1084 Instruction::FCmp, pred, LHS, RHS, NameStr,
1087 "Invalid FCmp predicate value");
1089 "Both operands to FCmp instruction are not of the same type!");
1092 "Invalid operand types for FCmp instruction");
1102 Instruction::FCmp, pred, LHS, RHS, NameStr) {
1104 "Invalid FCmp predicat
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp408 case Instruction::FCmp:
/external/v8/src/ia32/
H A Dmacro-assembler-ia32.h423 // FCmp is similar to integer cmp, but requires unsigned
425 void FCmp();
/external/v8/test/cctest/
H A Dtest-assembler-ia32.cc353 __ FCmp();
/external/llvm/lib/AsmParser/
H A DLLLexer.cpp607 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
H A DLLParser.cpp2203 if (Opc == Instruction::FCmp) {
3016 if (Opc == Instruction::FCmp) {
3377 if (Opc == Instruction::FCmp) {
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp602 Value *V = CmpInst::Create(fp ? Instruction::FCmp : Instruction::ICmp,
/external/v8/src/x64/
H A Dmacro-assembler-x64.h928 // FCmp compares and pops the two values on top of the FPU stack.
931 void FCmp();
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp981 case Instruction::FCmp:
1120 case Instruction::FCmp:
/external/llvm/lib/Target/CppBackend/
H A DCPPBackend.cpp876 case Instruction::FCmp:
895 default: error("Invalid FCmp Predicate");
1232 case Instruction::FCmp: {
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp295 dbgs() << "Unhandled type for FCmp EQ instruction: " << *Ty << "\n";
309 dbgs() << "Unhandled type for FCmp NE instruction: " << *Ty << "\n";
322 dbgs() << "Unhandled type for FCmp LE instruction: " << *Ty << "\n";
335 dbgs() << "Unhandled type for FCmp GE instruction: " << *Ty << "\n";
348 dbgs() << "Unhandled type for FCmp LT instruction: " << *Ty << "\n";
361 dbgs() << "Unhandled type for FCmp GT instruction: " << *Ty << "\n";
470 dbgs() << "Don't know how to handle this FCmp predicate!\n-->" << I;
1218 case Instruction::FCmp:
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml188 | FCmp Constructor in type:Opcode/t
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp123 STATISTIC(NumFastIselFailFCmp,"Fast isel fails on FCmp");
960 case Instruction::FCmp: NumFastIselFailFCmp++; return;
/external/llvm/lib/Target/X86/
H A DX86FastISel.cpp1976 case Instruction::FCmp:

Completed in 961 milliseconds

12