Home | History | Annotate | Download | only in Scalar

Lines Matching refs:Repl

1361   // where we have a value available in repl, also keep track of whether we see
1740 static void patchReplacementInstruction(Value *Repl, Instruction *I) {
1744 BinaryOperator *ReplOp = dyn_cast<BinaryOperator>(Repl);
1752 if (Instruction *ReplInst = dyn_cast<Instruction>(Repl)) {
1782 static void patchAndReplaceAllUsesWith(Value *Repl, Instruction *I) {
1783 patchReplacementInstruction(Repl, I);
1784 I->replaceAllUsesWith(Repl);
2278 Value *repl = findLeader(I->getParent(), Num);
2279 if (repl == 0) {
2286 patchAndReplaceAllUsesWith(repl, I);
2287 if (MD && repl->getType()->isPointerTy())
2288 MD->invalidateCachedPointerInfo(repl);