Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:LocalMIs

153                           SmallPtrSetImpl<MachineInstr*> &LocalMIs);
155 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
159 SmallPtrSetImpl<MachineInstr *> &LocalMIs);
413 SmallPtrSetImpl<MachineInstr*> &LocalMIs) {
491 if (!LocalMIs.count(UseMI))
583 SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
592 if (!TII->optimizeSelect(*MI, LocalMIs))
1244 /// All COPY instructions created, are inserted in \p LocalMIs.
1246 MachineInstr *MI, SmallPtrSetImpl<MachineInstr *> &LocalMIs) {
1283 LocalMIs.insert(NewCopy);
1499 SmallPtrSet<MachineInstr*, 16> LocalMIs;
1520 LocalMIs.insert(MI);
1578 optimizeUncoalescableCopy(MI, LocalMIs)) ||
1580 (MI->isSelect() && optimizeSelect(MI, LocalMIs))) {
1582 LocalMIs.erase(MI);
1601 LocalMIs.erase(MI);
1610 Changed |= optimizeExtInstr(MI, &MBB, LocalMIs);
1641 // Update LocalMIs since we replaced MI with FoldMI and deleted
1645 LocalMIs.erase(MI);
1646 LocalMIs.erase(DefMI);
1647 LocalMIs.insert(FoldMI);