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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrItineraries.h156 unsigned Latency = 0, StartCycle = 0; local
159 Latency = std::max(Latency, StartCycle + IS->getCycles());
160 StartCycle += IS->getNextCycles();
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h296 CycleSegment(unsigned StartCycle, unsigned EndCycle, bool IsReserved = false) argument
297 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {}
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h555 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2372 /// Try to schedule the node at the specified StartCycle and continue
2376 /// the relative values of StartCycle and EndCycle.
2377 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { argument
2380 dbgs() << "Trying to insert node between " << StartCycle << " and "
2383 if (StartCycle > EndCycle)
2388 for (int curCycle = StartCycle; curCycle != termCycle;

Completed in 151 milliseconds