Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:PHI

215   // Build a phi if we needed a null check.
221 llvm::PHINode *PHI = Builder.CreatePHI(BasePtrTy, 2, "cast.result");
222 PHI->addIncoming(Value, notNullBB);
223 PHI->addIncoming(llvm::Constant::getNullValue(BasePtrTy), origBB);
224 Value = PHI;
278 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
279 PHI->addIncoming(Value, CastNotNull);
280 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()),
282 Value = PHI;
1576 // Enter the loop, setting up a phi for the current location to initialize.