Searched defs:CondInst (Results 1 - 3 of 3) sorted by relevance

/external/llvm/examples/Fibonacci/
H A Dfibonacci.cpp64 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); local
65 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
/external/llvm/examples/ParallelJIT/
H A DParallelJIT.cpp91 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); local
92 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
/external/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp722 Instruction *CondInst = dyn_cast<Instruction>(Condition); local
725 if (CondInst == 0) {
733 if (CmpInst *CondCmp = dyn_cast<CmpInst>(CondInst)) {
777 Value *SimplifyValue = CondInst;
793 if (ProcessThreadableEdges(CondInst, BB, Preference))
798 if (PHINode *PN = dyn_cast<PHINode>(CondInst))
804 if (CondInst->getOpcode() == Instruction::Xor &&
805 CondInst->getParent() == BB && isa<BranchInst>(BB->getTerminator()))
806 return ProcessBranchOnXOR(cast<BinaryOperator>(CondInst));

Completed in 631 milliseconds