Home
last modified time | relevance | path

Searched refs:StartCycle (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCInstrItineraries.h156 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 DInstruction.h296 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 DMachinePipeliner.h549 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2364 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()