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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp203 /// Tries to coalesce all copies in CurrList. Returns true if any progress
205 bool copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList);
3668 copyCoalesceWorkList(MutableArrayRef<MachineInstr*> CurrList) { argument
3670 for (unsigned i = 0, e = CurrList.size(); i != e; ++i) {
3671 if (!CurrList[i])
3675 if (ErasedInstrs.count(CurrList[i])) {
3676 CurrList[i] = nullptr;
3680 bool Success = joinCopy(CurrList[i], Again);
3683 CurrList[i] = nullptr;
3799 CurrList(WorkLis
[all...]

Completed in 178 milliseconds