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

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
Instruction.cpp 25 assert(CyclesLeft == UNKNOWN_CYCLES);
36 CyclesLeft = TotalCycles;
37 IsReady = !CyclesLeft;
42 assert(CyclesLeft == UNKNOWN_CYCLES);
44 CyclesLeft = getLatency();
50 unsigned ReadCycles = std::max(0, CyclesLeft - User.second);
56 // If CyclesLeft is different than -1, then we don't need to
59 if (CyclesLeft != UNKNOWN_CYCLES) {
60 unsigned ReadCycles = std::max(0, CyclesLeft - ReadAdvance);
70 // Note: CyclesLeft can be a negative number. It is an error t
    [all...]
Instruction.h 92 int CyclesLeft;
111 // reads. A dependent read is added to the set only if CyclesLeft
112 // is "unknown". As soon as CyclesLeft is 'known', each user in the set
113 // gets notified with the actual CyclesLeft.
121 : WD(Desc), CyclesLeft(UNKNOWN_CYCLES), RegisterID(RegID),
126 int getCyclesLeft() const { return CyclesLeft; }
138 // On every cycle, update CyclesLeft and notify dependent users.
161 // It gets set to the value of field TotalCycles only when the 'CyclesLeft' of
163 int CyclesLeft;
166 // propagated to field CyclesLeft
    [all...]

Completed in 158 milliseconds