Searched refs:CurrList (Results 1 - 1 of 1) sorted by relevance

/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp127 /// copyCoalesceWorkList - Try to coalesce all copies in CurrList. Return
129 bool copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList);
2089 copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList) { argument
2091 for (unsigned i = 0, e = CurrList.size(); i != e; ++i) {
2092 if (!CurrList[i])
2096 if (ErasedInstrs.erase(CurrList[i])) {
2097 CurrList[i] = 0;
2101 bool Success = joinCopy(CurrList[i], Again);
2104 CurrList[i] = 0;
2141 CurrList(WorkLis
[all...]

Completed in 57 milliseconds