Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Repl

1002   // where we have a value available in repl, also keep track of whether we see
1454 static void patchReplacementInstruction(Instruction *I, Value *Repl) {
1455 auto *ReplInst = dyn_cast<Instruction>(Repl);
1485 static void patchAndReplaceAllUsesWith(Instruction *I, Value *Repl) {
1486 patchReplacementInstruction(I, Repl);
1487 I->replaceAllUsesWith(Repl);
1993 Value *Repl = findLeader(I->getParent(), Num);
1994 if (!Repl) {
1998 } else if (Repl == I) {
2005 patchAndReplaceAllUsesWith(I, Repl);
2006 if (MD && Repl->getType()->isPtrOrPtrVectorTy())
2007 MD->invalidateCachedPointerInfo(Repl);