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

  /external/llvm/lib/Target/Hexagon/
HexagonMachineScheduler.h 147 /// MinReadyCycle - Cycle of the soonest available instruction.
148 unsigned MinReadyCycle;
160 MinReadyCycle(UINT_MAX), MaxMinLatency(0) {}
HexagonMachineScheduler.cpp 285 if (ReadyCycle < MinReadyCycle)
286 MinReadyCycle = ReadyCycle;
302 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
303 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle);
355 // If the available queue is empty, it is safe to reset MinReadyCycle.
357 MinReadyCycle = UINT_MAX;
365 if (ReadyCycle < MinReadyCycle)
366 MinReadyCycle = ReadyCycle;
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 589 /// MinReadyCycle - Cycle of the soonest available instruction.
590 unsigned MinReadyCycle;

Completed in 421 milliseconds