Home | History | Annotate | Download | only in Scalar

Lines Matching refs:PH

1696     PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0));
1697 if (!PH) continue;
1698 if (PH->getNumIncomingValues() != 2) continue;
1700 Type *SrcTy = PH->getType();
1707 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
1715 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
1722 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
1730 if (Incr->getOperand(0) == PH)
1732 else if (Incr->getOperand(1) == PH)
1744 PHINode *NewPH = PHINode::Create(DestTy, 2, "IV.S.", PH);
1753 NewPH->addIncoming(NewInit, PH->getIncomingBlock(Entry));
1754 NewPH->addIncoming(NewIncr, PH->getIncomingBlock(Latch));