Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MCA/ |
H A D | Instruction.h | 296 CycleSegment(unsigned StartCycle, unsigned EndCycle, bool IsReserved = false) 297 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in Begin() argument
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
H A D | MachinePipeliner.h | 549 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
H A D | MachinePipeliner.cpp | 2364 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument 2367 dbgs() << "Trying to insert node between " << StartCycle << " and " in insert() 2370 if (StartCycle > EndCycle) in insert() 2375 for (int curCycle = StartCycle; curCycle != termCycle; in insert()
|