Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Coalesced

44 STATISTIC(NumCopies, "Number of copies coalesced");
801 SmallVector<MachineInstr*, 32> Coalesced;
1047 Coalesced.push_back(MI);
1057 // Erase all the coalesced copies. We are delaying it until now because
1059 for (unsigned i = 0, e = Coalesced.size(); i != e; ++i)
1060 MBB->erase(Coalesced[i]);
1061 NumCopies += Coalesced.size();