Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:PHI

212   // Build a phi if we needed a null check.
218 llvm::PHINode *PHI = Builder.CreatePHI(BasePtrTy, 2, "cast.result");
219 PHI->addIncoming(Value, notNullBB);
220 PHI->addIncoming(llvm::Constant::getNullValue(BasePtrTy), origBB);
221 Value = PHI;
275 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
276 PHI->addIncoming(Value, CastNotNull);
277 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()),
279 Value = PHI;
1563 // Enter the loop, setting up a phi for the current location to initialize.