Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:PHI

811   // Set up the current-element phi.
1212 llvm::PHINode *PHI = Builder.CreatePHI(result->getType(), 2);
1213 PHI->addIncoming(result, notNullBB);
1214 PHI->addIncoming(llvm::Constant::getNullValue(result->getType()),
1217 result = PHI;
1756 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1757 PHI->addIncoming(Value, CastNotNull);
1758 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1760 Value = PHI;