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

1 2

  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 351 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
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) {
CostModel.cpp 132 case Instruction::FCmp: {
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...]
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARCUtil.cpp 211 case Instruction::IntToPtr: case Instruction::FCmp:
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 300 case Instruction::FCmp:
GVN.cpp 197 assert((Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) &&
419 case Instruction::FCmp:
    [all...]
  /external/llvm/lib/IR/
ConstantsContext.h 233 // 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,
Instruction.cpp 241 case FCmp: return "fcmp";
Constants.cpp     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
Instructions.h     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 406 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/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 645 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);
LLParser.cpp     [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 604 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 888 case Instruction::FCmp:
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp     [all...]

Completed in 339 milliseconds

1 2