Searched refs:EndCycle (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/ |
H A D | Instruction.h | 395 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 D | MachinePipeliner.h | 604 bool insert(SUnit *SU, int StartCycle, int EndCycle, int II);
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachinePipeliner.cpp | 2818 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()
|