Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCInstrItineraries.h | 156 unsigned Latency = 0, StartCycle = 0; in getStageLatency() local 159 Latency = std::max(Latency, StartCycle + IS->getCycles()); in getStageLatency() 160 StartCycle += IS->getNextCycles(); in getStageLatency()
|
| /llvm-project-15.0.7/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
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachinePipeliner.h | 558 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
| /llvm-project-15.0.7/llvm/lib/CodeGen/ |
| H A D | MachinePipeliner.cpp | 2358 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument 2361 dbgs() << "Trying to insert node between " << StartCycle << " and " in insert() 2364 if (StartCycle > EndCycle) in insert() 2369 for (int curCycle = StartCycle; curCycle != termCycle; in insert()
|