Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/
H A DInstruction.h395 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 DMachinePipeliner.h598 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2329 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()