Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h604 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2818 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument
2822 << EndCycle << " II: " << II << "\n"; in insert()
2824 if (StartCycle > EndCycle) in insert()
2828 int termCycle = forward ? EndCycle + 1 : EndCycle - 1; in insert()