HomeSort by relevance Sort by last modified time
    Searched refs:ICmpInst (Results 26 - 50 of 73) 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/ExecutionEngine/Interpreter/
Execution.cpp 276 void Interpreter::visitICmpInst(ICmpInst &I) {
284 case ICmpInst::ICMP_EQ: R = executeICMP_EQ(Src1, Src2, Ty); break;
285 case ICmpInst::ICMP_NE: R = executeICMP_NE(Src1, Src2, Ty); break;
286 case ICmpInst::ICMP_ULT: R = executeICMP_ULT(Src1, Src2, Ty); break;
287 case ICmpInst::ICMP_SLT: R = executeICMP_SLT(Src1, Src2, Ty); break;
288 case ICmpInst::ICMP_UGT: R = executeICMP_UGT(Src1, Src2, Ty); break;
289 case ICmpInst::ICMP_SGT: R = executeICMP_SGT(Src1, Src2, Ty); break;
290 case ICmpInst::ICMP_ULE: R = executeICMP_ULE(Src1, Src2, Ty); break;
291 case ICmpInst::ICMP_SLE: R = executeICMP_SLE(Src1, Src2, Ty); break;
292 case ICmpInst::ICMP_UGE: R = executeICMP_UGE(Src1, Src2, Ty); break
    [all...]
Interpreter.h 147 void visitICmpInst(ICmpInst &I);
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 872 Out << "getICmp(ICmpInst::ICMP_";
874 case ICmpInst::ICMP_EQ: Out << "EQ"; break;
875 case ICmpInst::ICMP_NE: Out << "NE"; break;
876 case ICmpInst::ICMP_SLT: Out << "SLT"; break;
877 case ICmpInst::ICMP_ULT: Out << "ULT"; break;
878 case ICmpInst::ICMP_SGT: Out << "SGT"; break;
879 case ICmpInst::ICMP_UGT: Out << "UGT"; break;
880 case ICmpInst::ICMP_SLE: Out << "SLE"; break;
881 case ICmpInst::ICMP_ULE: Out << "ULE"; break;
882 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/Transforms/ObjCARC/
DependencyAnalysis.cpp 80 if (const ICmpInst *ICI = dyn_cast<ICmpInst>(Inst)) {
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 279 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
295 bool isProb = CI->getPredicate() == ICmpInst::ICMP_NE;
366 ICmpInst *CI = dyn_cast<ICmpInst>(Cond);
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
LowerInvoke.cpp 494 Value *IsNormal = new ICmpInst(EntryBB->getTerminator(),
495 ICmpInst::ICMP_EQ, SJRet,
530 Value *NotNull = new ICmpInst(*UnwindHandler, ICmpInst::ICMP_NE, BufPtr,
SimplifyCFG.cpp 347 if (ICmpInst *ICI = dyn_cast<ICmpInst>(I)) {
352 if (ICI->getPredicate() == (isEQ ? ICmpInst::ICMP_EQ:ICmpInst::ICMP_NE)) {
473 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
499 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
500 BasicBlock *Succ = BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_NE);
504 return BI->getSuccessor(ICI->getPredicate() == ICmpInst::ICMP_EQ)
    [all...]
FlattenCFG.cpp 245 CI->setPredicate(ICmpInst::getInversePredicate(Predicate));
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/lib/CodeGen/
StackProtector.cpp 371 ICmpInst *Cmp = new ICmpInst(*BB, CmpInst::ICMP_EQ, LI1, LI2, "");
  /external/llvm/include/llvm/IR/
IRBuilder.h     [all...]
Instructions.h     [all...]
  /external/llvm/lib/IR/
AsmWriter.cpp 699 case ICmpInst::ICMP_EQ: pred = "eq"; break;
700 case ICmpInst::ICMP_NE: pred = "ne"; break;
701 case ICmpInst::ICMP_SGT: pred = "sgt"; break;
702 case ICmpInst::ICMP_SGE: pred = "sge"; break;
703 case ICmpInst::ICMP_SLT: pred = "slt"; break;
704 case ICmpInst::ICMP_SLE: pred = "sle"; break;
705 case ICmpInst::ICMP_UGT: pred = "ugt"; break;
706 case ICmpInst::ICMP_UGE: pred = "uge"; break;
707 case ICmpInst::ICMP_ULT: pred = "ult"; break;
708 case ICmpInst::ICMP_ULE: pred = "ule"; break
    [all...]
  /external/llvm/lib/Analysis/IPA/
GlobalsModRef.cpp 286 } else if (ICmpInst *ICI = dyn_cast<ICmpInst>(U)) {
  /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/llvm/include/llvm/Analysis/
DependenceAnalysis.h 554 bool isKnownPredicate(ICmpInst::Predicate Pred,
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 613 return new ICmpInst(I, cast<ICmpInst>(I)->getPredicate(),
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp     [all...]
  /external/llvm/tools/bugpoint/
Miscompilation.cpp     [all...]

Completed in 722 milliseconds

12 3