Home | History | Annotate | Download | only in Instrumentation

Lines Matching defs:phi

936   PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context),
939 node->setPathPHI(phi);
940 node->setStartingPathNumber(phi);
941 node->setEndingPathNumber(phi);
947 phi->addIncoming(createIncrementConstant((long)-1, 32), pred);
970 DEBUG(dbgs() << " Initializing PHI node for block '"
975 DEBUG(dbgs() << " Passing number value into PHI for block '"
984 PHINode* phi = target->getPathPHI();
985 assert(phi != NULL && " Tried to push value into node with PHI, but node"
986 " actually had no PHI.");
987 phi->removeIncomingValue(source->getBlock(), false);
988 phi->addIncoming(source->getEndingPathNumber(), source->getBlock());