Lines Matching refs:Repl
1350 // where we have a value available in repl, also keep track of whether we see
1728 static void patchReplacementInstruction(Instruction *I, Value *Repl) {
1732 BinaryOperator *ReplOp = dyn_cast<BinaryOperator>(Repl);
1740 if (Instruction *ReplInst = dyn_cast<Instruction>(Repl)) {
1770 static void patchAndReplaceAllUsesWith(Instruction *I, Value *Repl) {
1771 patchReplacementInstruction(I, Repl);
1772 I->replaceAllUsesWith(Repl);
2266 Value *repl = findLeader(I->getParent(), Num);
2267 if (repl == 0) {
2274 patchAndReplaceAllUsesWith(I, repl);
2275 if (MD && repl->getType()->getScalarType()->isPointerTy())
2276 MD->invalidateCachedPointerInfo(repl);