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.h396 CycleSegment(unsigned StartCycle, unsigned EndCycle, bool IsReserved = false)
397 : Begin(StartCycle), End(EndCycle), Reserved(IsReserved) {} in Begin()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachinePipeliner.h794 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp3152 bool SMSchedule::insert(SUnit *SU, int StartCycle, int EndCycle, int II) { in insert() argument
3156 << EndCycle << " II: " << II << "\n"; in insert()
3158 if (StartCycle > EndCycle) in insert()
3162 int termCycle = forward ? EndCycle + 1 : EndCycle - 1; in insert()