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

  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.cpp 289 unsigned ReadyCycle) {
290 if (ReadyCycle < MinReadyCycle)
291 MinReadyCycle = ReadyCycle;
295 if (ReadyCycle > CurrCycle || checkHazard(SU))
368 unsigned ReadyCycle = isTop() ? SU->TopReadyCycle : SU->BotReadyCycle;
370 if (ReadyCycle < MinReadyCycle)
371 MinReadyCycle = ReadyCycle;
373 if (ReadyCycle > CurrCycle)
HexagonMachineScheduler.h 177 void releaseNode(SUnit *SU, unsigned ReadyCycle);
  /external/swiftshader/third_party/llvm-7.0/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)
    [all...]
HexagonMachineScheduler.h 198 void releaseNode(SUnit *SU, unsigned ReadyCycle);
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 733 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
734 // runs, it can then use the accurate ReadyCycle time to determine whether
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
MachineScheduler.cpp 811 // This sets the scheduled node's ReadyCycle to CurrCycle. When updateQueues
812 // runs, it can then use the accurate ReadyCycle time to determine whether
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 729 void releaseNode(SUnit *SU, unsigned ReadyCycle);
739 unsigned countResource(unsigned PIdx, unsigned Cycles, unsigned ReadyCycle);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
MachineScheduler.h 760 void releaseNode(SUnit *SU, unsigned ReadyCycle);
766 unsigned countResource(unsigned PIdx, unsigned Cycles, unsigned ReadyCycle);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 583 unsigned ReadyCycle = PendingQueue[i]->getHeight();
584 if (ReadyCycle < MinAvailableCycle)
585 MinAvailableCycle = ReadyCycle;
633 unsigned ReadyCycle = SU->getHeight();
639 AdvanceToCycle(ReadyCycle);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 460 unsigned ReadyCycle =
462 if (ReadyCycle < MinAvailableCycle)
463 MinAvailableCycle = ReadyCycle;
514 unsigned ReadyCycle = isBottomUp ? SU->getHeight() : SU->getDepth();
520 AdvanceToCycle(ReadyCycle);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 607 unsigned ReadyCycle = PendingQueue[i]->getHeight();
608 if (ReadyCycle < MinAvailableCycle)
609 MinAvailableCycle = ReadyCycle;
657 unsigned ReadyCycle = SU->getHeight();
663 AdvanceToCycle(ReadyCycle);
    [all...]

Completed in 246 milliseconds