HomeSort by relevance Sort by last modified time
    Searched refs:ICmpInst (Results 26 - 50 of 70) sorted by null

12 3

  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 405 ICmpInst *NewCompare = new ICmpInst(TheBr, NewPred, NewAdd,
    [all...]
LoopStrengthReduce.cpp     [all...]
CorrelatedValuePropagation.cpp 115 if (LVI->getPredicateOnEdge(ICmpInst::ICMP_EQ, SI, C,
  /external/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 572 if (ICmpInst *CI = dyn_cast<ICmpInst>(&I))
715 else if (isa<ICmpInst>(CI))
    [all...]
  /external/llvm/lib/IR/
Instructions.cpp     [all...]
AsmWriter.cpp 725 case ICmpInst::ICMP_EQ: pred = "eq"; break;
726 case ICmpInst::ICMP_NE: pred = "ne"; break;
727 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
728 case ICmpInst::ICMP_SGE: pred = "sge"; break;
729 case ICmpInst::ICMP_SLT: pred = "slt"; break;
730 case ICmpInst::ICMP_SLE: pred = "sle"; break;
731 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
732 case ICmpInst::ICMP_UGE: pred = "uge"; break;
733 case ICmpInst::ICMP_ULT: pred = "ult"; break;
734 case ICmpInst::ICMP_ULE: pred = "ule"; break
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 873 Out << "getICmp(ICmpInst::ICMP_";
875 case ICmpInst::ICMP_EQ: Out << "EQ"; break;
876 case ICmpInst::ICMP_NE: Out << "NE"; break;
877 case ICmpInst::ICMP_SLT: Out << "SLT"; break;
878 case ICmpInst::ICMP_ULT: Out << "ULT"; break;
879 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
880 case ICmpInst::ICMP_UGT: Out << "UGT"; break;
881 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
882 case ICmpInst::ICMP_ULE: Out << "ULE"; break;
883 case ICmpInst::ICMP_SGE: Out << "SGE"; break
    [all...]
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
  /external/llvm/lib/CodeGen/
StackProtector.cpp 345 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
  /external/llvm/lib/Transforms/ObjCARC/
DependencyAnalysis.cpp 79 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(Inst)) {
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 496 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
497 ICmpInst::ICMP_EQ, SJRet,
532 Value *NotNull = new ICmpInst(*UnwindHandler, ICmpInst::ICMP_NE, BufPtr,
SimplifyCFG.cpp 429 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
431 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ:ICmpInst::ICMP_NE)) {
531 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
532 if ((ICI->getPredicate() == ICmpInst::ICMP_EQ ||
533 ICI->getPredicate() == ICmpInst::ICMP_NE) &&
559 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition())
    [all...]
SimplifyLibCalls.cpp 87 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
103 if (ICmpInst *IC = dyn_cast<ICmpInst>(*UI))
895 ICmpInst *Old = cast<ICmpInst>(*UI++);
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
Instructions.h     [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
Interpreter.h 147 void visitICmpInst(ICmpInst &I);
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 286 } else if (ICmpInst *ICI = dyn_cast<ICmpInst>(U)) {
InlineCost.cpp 127 bool visitICmp(ICmpInst &I);
493 bool CallAnalyzer::visitICmp(ICmpInst &I) {
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 520 bool isKnownPredicate(ICmpInst::Predicate Pred,
    [all...]
  /external/llvm/include/llvm/
InstVisitor.h 172 RetTy visitICmpInst(ICmpInst &I) { DELEGATE(CmpInst);}
  /external/llvm/include/llvm/Support/
NoFolder.h 255 return new ICmpInst(P, LHS, RHS);
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 607 llvm::ICmpInst::Predicate Eq;
610 Eq = llvm::ICmpInst::ICMP_NE;
614 Eq = llvm::ICmpInst::ICMP_EQ;
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp     [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp     [all...]

Completed in 1083 milliseconds

12 3