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 747 Instruction *CondInst = dyn_cast<Instruction>(Condition);
750 if (!CondInst) {
758 if (CmpInst *CondCmp = dyn_cast<CmpInst>(CondInst)) {
806 Value *SimplifyValue = CondInst;
822 if (ProcessThreadableEdges(CondInst, BB, Preference))
    [all...]

Completed in 550 milliseconds