HomeSort by: relevance | last modified time | path
    Searched refs:ReadyCycle (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 348 unsigned ReadyCycle) {
349 if (ReadyCycle < MinReadyCycle)
350 MinReadyCycle = ReadyCycle;
354 if (ReadyCycle > CurrCycle || checkHazard(SU))
428 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
430 if (ReadyCycle < MinReadyCycle)
431 MinReadyCycle = ReadyCycle;
433 if (ReadyCycle > CurrCycle)
HexagonMachineScheduler.h 197 void releaseNode(SUnit *SU, unsigned ReadyCycle);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineScheduler.cpp 820 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
821 // runs, it can then use the accurate ReadyCycle time to determine whether
2078 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2079 if (ReadyCycle > CurrCycle)
2080 return ReadyCycle - CurrCycle;
2259 void SchedBoundary::releaseNode(SUnit *SU, unsigned ReadyCycle, bool InPQueue,
2264 // ReadyCycle was been bumped up to the CurrCycle when this node was
2266 // scheduling, so may now be greater than ReadyCycle.
2267 if (ReadyCycle > CurrCycle)
2268 MaxObservedStall = std::max(ReadyCycle - CurrCycle, MaxObservedStall)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineScheduler.h 778 /// @param ReadyCycle Until which cycle the unit is ready.
781 void releaseNode(SUnit *SU, unsigned ReadyCycle, bool InPQueue,
789 unsigned Cycles, unsigned ReadyCycle);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 612 unsigned ReadyCycle = PendingQueue[i]->getHeight();
613 if (ReadyCycle < MinAvailableCycle)
614 MinAvailableCycle = ReadyCycle;
662 unsigned ReadyCycle = SU->getHeight();
668 AdvanceToCycle(ReadyCycle);

Completed in 32 milliseconds