HomeSort by relevance Sort by last modified time
    Searched refs:TopReadyCycle (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 229 unsigned PredReadyCycle = I->getSUnit()->TopReadyCycle;
234 if (SU->TopReadyCycle < PredReadyCycle + MinLatency)
235 SU->TopReadyCycle = PredReadyCycle + MinLatency;
237 Top.releaseNode(SU, SU->TopReadyCycle);
363 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
688 SU->TopReadyCycle = Top.CurrCycle;
  /external/llvm/include/llvm/CodeGen/
ScheduleDAG.h 311 unsigned TopReadyCycle; // Cycle relative to start when node is ready.
330 isHeightCurrent(false), Depth(0), Height(0), TopReadyCycle(0),
346 isHeightCurrent(false), Depth(0), Height(0), TopReadyCycle(0),
361 isHeightCurrent(false), Depth(0), Height(0), TopReadyCycle(0),
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 537 // SU->TopReadyCycle was set to CurrCycle when it was scheduled. However,
539 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
540 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
    [all...]

Completed in 1026 milliseconds