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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGFast.cpp549 SUnit *CurSU = AvailableQueue.pop(); local
550 while (CurSU) {
552 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
555 LRegsMap.insert(std::make_pair(CurSU, LRegs));
557 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
558 NotReady.push_back(CurSU);
559 CurSU = AvailableQueue.pop();
565 if (Delayed && !CurSU) {
566 if (!CurSU) {
609 CurSU
[all...]
H A DScheduleDAGRRList.cpp1360 SUnit *CurSU = AvailableQueue->empty() ? nullptr : AvailableQueue->pop(); local
1361 while (CurSU) {
1363 if (!DelayForLiveRegsBottomUp(CurSU, LRegs))
1368 << " SU #" << CurSU->NodeNum << '\n');
1370 LRegsMap.insert(std::make_pair(CurSU, LRegs));
1372 CurSU->isPending = true; // This SU is not in AvailableQueue right now.
1373 Interferences.push_back(CurSU);
1376 assert(CurSU->isPending && "Intereferences are pending");
1380 CurSU = AvailableQueue->pop();
1382 if (CurSU)
[all...]

Completed in 52 milliseconds