Searched defs:CondLHS (Results 1 - 2 of 2) sorted by relevance
/external/llvm/lib/Transforms/Scalar/ |
H A D | JumpThreading.cpp | 1824 PHINode *CondLHS = dyn_cast<PHINode>(CondCmp->getOperand(0)); local 1827 if (!CondBr || !CondBr->isConditional() || !CondLHS || 1828 CondLHS->getParent() != BB) 1831 for (unsigned I = 0, E = CondLHS->getNumIncomingValues(); I != E; ++I) { 1832 BasicBlock *Pred = CondLHS->getIncomingBlock(I); 1833 SelectInst *SI = dyn_cast<SelectInst>(CondLHS->getIncomingValue(I)); 1872 CondLHS->setIncomingValue(I, SI->getFalseValue()); 1873 CondLHS->addIncoming(SI->getTrueValue(), NewBB); 1880 if (Phi != CondLHS)
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | DAGCombiner.cpp | 9464 // Operand List for BR_CC: Chain, CondCC, CondLHS, CondRHS, DestBB. 9468 SDValue CondLHS = N->getOperand(2), CondRHS = N->getOperand(3); local 9477 SDValue Simp = SimplifySetCC(getSetCCResultType(CondLHS.getValueType()), 9478 CondLHS, CondRHS, CC->get(), SDLoc(N), 13920 SDNode *CondLHS = TheSelect->getOperand(0).getNode(); local 13924 (LLD->isPredecessorOf(CondLHS) || LLD->isPredecessorOf(CondRHS))) || 13926 (RLD->isPredecessorOf(CondLHS) || RLD->isPredecessorOf(CondRHS))))
|
Completed in 245 milliseconds