Lines Matching defs:Old
957 void MachineFunction::copyAdditionalCallInfo(const MachineInstr *Old,
959 assert(Old->shouldUpdateAdditionalCallInfo() &&
964 return eraseAdditionalCallInfo(Old);
966 const MachineInstr *OldCallMI = getCallInstr(Old);
980 void MachineFunction::moveAdditionalCallInfo(const MachineInstr *Old,
982 assert(Old->shouldUpdateAdditionalCallInfo() &&
987 return eraseAdditionalCallInfo(Old);
989 const MachineInstr *OldCallMI = getCallInstr(Old);
1020 void MachineFunction::substituteDebugValuesForInst(const MachineInstr &Old,
1023 // If the Old instruction wasn't tracked at all, there is no work to do.
1024 unsigned OldInstrNum = Old.peekDebugInstrNum();
1033 MaxOperand = std::min(MaxOperand, Old.getNumOperands());
1035 const auto &OldMO = Old.getOperand(I);
1379 /// If Old is the target of any jump tables, update the jump tables to branch
1381 bool MachineJumpTableInfo::ReplaceMBBInJumpTables(MachineBasicBlock *Old,
1383 assert(Old != New && "Not making a change?");
1386 ReplaceMBBInJumpTable(i, Old, New);
1401 /// If Old is a target of the jump tables, update the jump table to branch to
1404 MachineBasicBlock *Old,
1406 assert(Old != New && "Not making a change?");
1410 if (MBB == Old) {