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

1 2 3

  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 150 Value *FCmp = Builder.CreateFCmpOEQ(Call, Call);
151 Builder.CreateCondBr(FCmp, JoinBB, LibCallBB);
Float2Int.cpp 39 // float to the int domain: fptoui, fptosi and fcmp. Walk up the def-use
92 // Given a FCmp predicate, return a matching ICmp predicate if one
142 case Instruction::FCmp:
228 case Instruction::FCmp:
296 case Instruction::FCmp:
298 assert(Ops.size() == 2 && "FCmp is a binary operator!");
481 case Instruction::FCmp: {
CorrelatedValuePropagation.cpp 380 case Instruction::FCmp:
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 478 FCmpInst *FCmp = dyn_cast<FCmpInst>(Cond);
479 if (!FCmp)
483 if (FCmp->isEquality()) {
486 isProb = !FCmp->isTrueWhenEqual();
487 } else if (FCmp->getPredicate() == FCmpInst::FCMP_ORD) {
490 } else if (FCmp->getPredicate() == FCmpInst::FCMP_UNO) {
CostModel.cpp 422 case Instruction::FCmp: {
InstructionSimplify.cpp 403 Value *FCmp = SimplifyCmpInst(Pred, FV, RHS, Q, MaxRecurse);
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_One()) && match(TCmp, m_Zero())
    [all...]
ObjCARCInstKind.cpp 289 case Instruction::FCmp:
CFLAliasAnalysis.cpp 721 CE->getOpcode() != Instruction::FCmp;
    [all...]
  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 95 case Instruction::FCmp:
  /external/llvm/unittests/IR/
IRBuilderTest.cpp 134 Instruction *FDiv, *FAdd, *FCmp, *FCall;
195 FCmp = cast<Instruction>(FC);
196 EXPECT_FALSE(FCmp->hasAllowReciprocal());
206 FCmp = cast<Instruction>(FC);
207 EXPECT_TRUE(FCmp->hasAllowReciprocal());
  /external/llvm/lib/IR/
ConstantsContext.h 262 // behind the scenes to implement ICmp and FCmp constant expressions. This is
284 CE->getOpcode() == Instruction::FCmp;
542 case Instruction::FCmp:
543 return new CompareConstantExpr(Ty, Instruction::FCmp, SubclassData,
Instruction.cpp 255 case FCmp: return "fcmp";
  /external/llvm/lib/Transforms/Utils/
LoopUtils.cpp 443 case Instruction::FCmp:
564 return Instruction::FCmp;
  /external/llvm/include/llvm/IR/
Operator.h 309 I->getOpcode() == Instruction::FCmp;
Instructions.h     [all...]
  /external/v8/src/compiler/x87/
code-generator-x87.cc     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 580 case Instruction::FCmp:
662 case Instruction::FCmp:
663 assert(NewOps.size() == 2 && "fcmp with #ops != 2");
743 case Instruction::FCmp:
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXGenericToNVVM.cpp 317 case Instruction::FCmp:
318 // CompareConstantExpr (fcmp)
320 "on float point CompareConstantExpr (fcmp)!");
  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.cc     [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 404 case Instruction::FCmp:
  /external/v8/test/cctest/
test-assembler-x87.cc 194 __ FCmp();
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp     [all...]
SLPVectorizer.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
MergeFunctions.cpp     [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 724 INSTKEYWORD(icmp, ICmp); INSTKEYWORD(fcmp, FCmp);

Completed in 427 milliseconds

1 2 3