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 733 Instruction *CondInst = dyn_cast<Instruction>(Condition);
736 if (CondInst == 0) {
744 if (CmpInst *CondCmp = dyn_cast<CmpInst>(CondInst)) {
792 Value *SimplifyValue = CondInst;
808 if (ProcessThreadableEdges(CondInst, BB, Preference))
813 if (PHINode *PN = dyn_cast<PHINode>(CondInst))
819 if (CondInst->getOpcode() == Instruction::Xor &&
820 CondInst->getParent() == BB && isa<BranchInst>(BB->getTerminator()))
821 return ProcessBranchOnXOR(cast<BinaryOperator>(CondInst));
    [all...]

Completed in 134 milliseconds