Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | MachinePipeliner.h | 598 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | MachinePipeliner.cpp | 2329 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument 2332 dbgs() << "Trying to insert node between " << StartCycle << " and " in insert() 2335 if (StartCycle > EndCycle) in insert() 2340 for (int curCycle = StartCycle; curCycle != termCycle; in insert()
|