Lines Matching defs:NAPhysToVirtMIs
228 /// register copy, track it in the \p NAPhysToVirtMIs map. If this
233 MachineInstr &MI, DenseMap<Register, MachineInstr *> &NAPhysToVirtMIs);
1507 MachineInstr &MI, DenseMap<Register, MachineInstr *> &NAPhysToVirtMIs) {
1519 NAPhysToVirtMIs.insert({SrcReg, &MI});
1527 auto PrevCopy = NAPhysToVirtMIs.find(DstReg);
1528 if (PrevCopy == NAPhysToVirtMIs.end()) {
1550 NAPhysToVirtMIs.erase(PrevCopy);
1698 DenseMap<Register, MachineInstr *> NAPhysToVirtMIs;
1732 const auto &Def = NAPhysToVirtMIs.find(Reg);
1733 if (Def != NAPhysToVirtMIs.end()) {
1738 NAPhysToVirtMIs.erase(Def);
1743 for (auto &RegMI : NAPhysToVirtMIs) {
1748 NAPhysToVirtMIs.erase(Def);
1765 NAPhysToVirtMIs.clear();
1790 foldRedundantNAPhysCopy(*MI, NAPhysToVirtMIs))) {