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

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 312 unsigned SuccReadyCycle = I->getSUnit()->BotReadyCycle;
317 if (SU->BotReadyCycle < SuccReadyCycle + MinLatency)
318 SU->BotReadyCycle = SuccReadyCycle + MinLatency;
320 Bot.releaseNode(SU, SU->BotReadyCycle);
428 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
1000 SU->BotReadyCycle = Bot.CurrCycle;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineScheduler.cpp 691 // SU->BotReadyCycle was set to CurrCycle when it was scheduled. However,
693 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
694 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
2078 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2398 unsigned ReadyCycle = (isTop() ? SU->TopReadyCycle : SU->BotReadyCycle);
2532 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
3476 SU->BotReadyCycle = std::max(SU->BotReadyCycle, Bot.getCurrCycle())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineScheduler.h 989 Bot.releaseNode(SU, SU->BotReadyCycle, false);
ScheduleDAG.h 300 unsigned BotReadyCycle = 0; ///< Cycle relative to end when node is ready.

Completed in 17 milliseconds