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 290 if (ReadyCycle < MinReadyCycle)
291 MinReadyCycle = ReadyCycle;
307 assert(MinReadyCycle < UINT_MAX && "MinReadyCycle uninitialized");
308 unsigned NextCycle = std::max(CurrCycle + 1, MinReadyCycle);
360 // If the available queue is empty, it is safe to reset MinReadyCycle.
362 MinReadyCycle = UINT_MAX;
370 if (ReadyCycle < MinReadyCycle)
371 MinReadyCycle = ReadyCycle;
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
MachineScheduler.h 598 /// MinReadyCycle - Cycle of the soonest available instruction.
599 unsigned MinReadyCycle;

Completed in 52 milliseconds