Lines Matching defs:Cycle
627 // need to erase the Cycle entries. They will be overwritten when we
833 unsigned Cycle = 0;
846 Cycle = std::max(Cycle, DepCycle);
850 MICycles.Depth = Cycle;
854 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height);
855 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI);
857 LLVM_DEBUG(dbgs() << Cycle << '\t' << UseMI);
956 unsigned DepHeight = I->Cycle;
975 if (LRU.Cycle <= Height && LRU.MI != &MI) {
976 LRU.Cycle = Height;
1074 RegUnits[LI.Reg].Cycle = LI.Height;
1131 unsigned Cycle = 0;
1134 Cycle = HeightI->second;
1146 Cycle = updatePhysDepsUpwards(MI, Cycle, RegUnits, MTM.SchedModel,
1151 if (pushDepHeight(Dep, MI, Cycle, Heights, MTM.SchedModel, MTM.TII))
1155 MICycles.Height = Cycle;
1157 LLVM_DEBUG(dbgs() << Cycle << '\t' << MI);
1161 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth);
1162 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI);
1176 TBI.LiveIns.push_back(LiveInReg(RU.RegUnit, RU.Cycle));
1178 << RU.Cycle);