Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCInstrItineraries.h | 157 unsigned Latency = 0, StartCycle = 0; in getStageLatency() local 160 Latency = std::max(Latency, StartCycle + IS->getCycles()); in getStageLatency() 161 StartCycle += IS->getNextCycles(); in getStageLatency()
|
| /src/contrib/llvm-project/llvm/include/llvm/MCA/ |
| H A D | Instruction.h | 395 CycleSegment(unsigned StartCycle, unsigned EndCycle, bool IsReserved = false) 396 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in Begin() argument
|
| /src/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | MachinePipeliner.h | 604 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
| /src/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachinePipeliner.cpp | 2818 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument 2821 dbgs() << "Trying to insert node between " << StartCycle << " and " in insert() 2824 if (StartCycle > EndCycle) in insert() 2829 for (int curCycle = StartCycle; curCycle != termCycle; in insert()
|