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

/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp158 /// MinAvailableCycle - Cycle of the soonest available instruction.
159 unsigned MinAvailableCycle; member in class:__anon3581::ScheduleDAGRRList
360 MinAvailableCycle =
423 if (Height < MinAvailableCycle)
424 MinAvailableCycle = Height;
605 // If the available queue is empty, it is safe to reset MinAvailableCycle.
607 MinAvailableCycle = std::numeric_limits<unsigned>::max();
613 if (ReadyCycle < MinAvailableCycle)
614 MinAvailableCycle = ReadyCycle;
908 if (SU->getHeight() < MinAvailableCycle)
[all...]

Completed in 101 milliseconds