Searched defs:CondLHS (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/Scalar/
H A DJumpThreading.cpp1655 PHINode *CondLHS = dyn_cast<PHINode>(CondCmp->getOperand(0)); local
1658 if (!CondBr || !CondBr->isConditional() || !CondLHS ||
1659 CondLHS->getParent() != BB)
1662 for (unsigned I = 0, E = CondLHS->getNumIncomingValues(); I != E; ++I) {
1663 BasicBlock *Pred = CondLHS->getIncomingBlock(I);
1664 SelectInst *SI = dyn_cast<SelectInst>(CondLHS->getIncomingValue(I));
1703 CondLHS->setIncomingValue(I, SI->getFalseValue());
1704 CondLHS->addIncoming(SI->getTrueValue(), NewBB);
1711 if (Phi != CondLHS)
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7510 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB.
7514 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); local
7523 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()),
7524 CondLHS, CondRHS, CC->get(), SDLoc(N),
11056 SDNode *CondLHS = TheSelect->getOperand(0).getNode(); local
11060 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) ||
11062 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))

Completed in 182 milliseconds