HomeSort by relevance Sort by last modified time
    Searched refs:CondInst (Results 1 - 3 of 3) sorted by null

  /external/llvm/examples/Fibonacci/
fibonacci.cpp 64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
65 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
92 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
  /external/llvm/lib/Transforms/Scalar/
JumpThreading.cpp 715 Instruction *CondInst = dyn_cast<Instruction>(Condition);
718 if (CondInst == 0) {
726 if (CmpInst *CondCmp = dyn_cast<CmpInst>(CondInst)) {
770 Value *SimplifyValue = CondInst;
786 if (ProcessThreadableEdges(CondInst, BB, Preference))
791 if (PHINode *PN = dyn_cast<PHINode>(CondInst))
797 if (CondInst->getOpcode() == Instruction::Xor &&
798 CondInst->getParent() == BB && isa<BranchInst>(BB->getTerminator()))
799 return ProcessBranchOnXOR(cast<BinaryOperator>(CondInst));
    [all...]

Completed in 140 milliseconds