Home | History | Annotate | Download | only in CppBackend

Lines Matching defs:phi

1274   case Instruction::PHI: {
1275 const PHINode* phi = cast<PHINode>(I);
1278 << getCppName(phi->getType()) << ", "
1279 << phi->getNumIncomingValues() << ", \"";
1280 printEscapedString(phi->getName());
1283 for (unsigned i = 0; i < phi->getNumIncomingValues(); ++i) {
1286 << getOpName(phi->getIncomingBlock(i)) << ");";