HomeSort by relevance Sort by last modified time
    Searched refs:FCmp (Results 1 - 25 of 34) sorted by null

1 2

  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 343 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
344 if (!FCmp)
348 if (FCmp->isEquality()) {
351 isProb = !FCmp->isTrueWhenEqual();
352 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
355 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
InstructionSimplify.cpp 464 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
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_One()) && match(TCmp, m_Zero())
    [all...]
ConstantFolding.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 276 case Instruction::FCmp:
GVN.cpp 191 assert((Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) &&
413 case Instruction::FCmp:
    [all...]
SimplifyLibCalls.cpp 906 Value *FCmp = B.CreateFCmpOEQ(Op1, NegInf);
907 Value *Sel = B.CreateSelect(FCmp, Inf, FAbs);
    [all...]
  /external/llvm/lib/VMCore/
Instruction.cpp 151 case FCmp: return "fcmp";
ConstantsContext.h 233 // behind the scenes to implement ICmp and FCmp constant expressions. This is
466 if (V.opcode == Instruction::FCmp)
467 return new CompareConstantExpr(Ty, Instruction::FCmp, V.subclassdata,
Constants.cpp     [all...]
  /external/llvm/include/llvm/
InstrTypes.h     [all...]
Instructions.h     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 408 case Instruction::FCmp:
  /external/v8/src/ia32/
macro-assembler-ia32.h 423 // FCmp is similar to integer cmp, but requires unsigned
425 void FCmp();
    [all...]
  /external/v8/test/cctest/
test-assembler-ia32.cc 353 __ FCmp();
  /external/llvm/lib/AsmParser/
LLLexer.cpp 602 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
LLParser.cpp     [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 596 Value *V = CmpInst::Create(fp ? Instruction::FCmp : Instruction::ICmp,
  /external/v8/src/x64/
macro-assembler-x64.h     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 855 case Instruction::FCmp:
874 default: error("Invalid FCmp Predicate");
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 295 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;
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 117 module Fcmp = struct
188 | FCmp
452 external const_fcmp : Fcmp.t -> llvalue -> llvalue -> llvalue
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 123 STATISTIC(NumFastIselFailFCmp,"Fast isel fails on FCmp");
    [all...]

Completed in 895 milliseconds

1 2