Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/MC/ |
| H A D | MCInstrItineraries.h | 154 unsigned Latency = 0, StartCycle = 0; in getStageLatency() local 157 Latency = std::max(Latency, StartCycle + IS->getCycles()); in getStageLatency() 158 StartCycle += IS->getNextCycles(); in getStageLatency()
|
| /freebsd-12.1/contrib/llvm/include/llvm/MCA/ |
| H A D | Instruction.h | 270 CycleSegment(unsigned StartCycle, unsigned EndCycle, bool IsReserved = false) 271 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in Begin() argument
|
| /freebsd-12.1/contrib/llvm/include/llvm/CodeGen/ |
| H A D | MachinePipeliner.h | 534 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | MachinePipeliner.cpp | 3118 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument 3120 if (StartCycle > EndCycle) in insert() 3125 for (int curCycle = StartCycle; curCycle != termCycle; in insert()
|