Searched refs:EndCycle (Results 1 - 3 of 3) sorted by relevance

/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.cpp2373 /// until the node is schedule or the EndCycle is reached. This function
2376 /// the relative values of StartCycle and EndCycle.
2377 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { argument
2381 << EndCycle << " II: " << II << "\n";
2383 if (StartCycle > EndCycle)
2387 int termCycle = forward ? EndCycle + 1 : EndCycle - 1;

Completed in 73 milliseconds