Lines Matching defs:Cycle
598 // need to erase the Cycle entries. They will be overwritten when we
805 unsigned Cycle = 0;
818 Cycle = std::max(Cycle, DepCycle);
822 MICycles.Depth = Cycle;
826 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height);
827 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI);
829 LLVM_DEBUG(dbgs() << Cycle << '\t' << UseMI);
928 unsigned DepHeight = I->Cycle;
947 if (LRU.Cycle <= Height && LRU.MI != &MI) {
948 LRU.Cycle = Height;
1046 RegUnits[LI.Reg].Cycle = LI.Height;
1103 unsigned Cycle = 0;
1106 Cycle = HeightI->second;
1118 Cycle = updatePhysDepsUpwards(MI, Cycle, RegUnits, MTM.SchedModel,
1123 if (pushDepHeight(Dep, MI, Cycle, Heights, MTM.SchedModel, MTM.TII))
1127 MICycles.Height = Cycle;
1129 LLVM_DEBUG(dbgs() << Cycle << '\t' << MI);
1133 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Depth);
1134 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << MI);
1148 TBI.LiveIns.push_back(LiveInReg(RU.RegUnit, RU.Cycle));
1150 << RU.Cycle);