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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp546 SUnit *CurSU = AvailableQueue.pop(); local
547 while (CurSU) {
549 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
552 LRegsMap.insert(std::make_pair(CurSU, LRegs));
554 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
555 NotReady.push_back(CurSU);
556 CurSU = AvailableQueue.pop();
562 if (Delayed && !CurSU) {
563 if (!CurSU) {
606 CurSU
[all...]
H A DScheduleDAGRRList.cpp1464 SUnit *CurSU = AvailableQueue->empty() ? nullptr : AvailableQueue->pop(); local
1466 while (CurSU) {
1468 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
1473 dbgs() << " SU #" << CurSU->NodeNum << '\n');
1475 LRegsMap.insert(std::make_pair(CurSU, LRegs));
1477 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
1478 Interferences.push_back(CurSU);
1481 assert(CurSU->isPending && "Interferences are pending");
1485 CurSU = AvailableQueue->pop();
1489 if (CurSU)
[all...]

Completed in 122 milliseconds