Lines Matching defs:Height
401 unsigned Height = SuccTBI->InstrHeight;
402 if (!Best || Height < BestHeight) {
404 BestHeight = Height;
816 unsigned Len = LIR.Height + Cycles[DefMI].Depth;
854 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height);
932 // Height is the issue height computed from virtual register dependencies alone.
933 static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height,
951 // update MI Height to consider the physreg dependencies.
963 Height = std::max(Height, DepHeight);
975 if (LRU.Cycle <= Height && LRU.MI != &MI) {
976 LRU.Cycle = Height;
983 return Height;
1068 unsigned &Height = Heights[MTM.MRI->getVRegDef(LI.Reg)];
1069 if (Height < LI.Height)
1070 Height = LI.Height;
1074 RegUnits[LI.Reg].Cycle = LI.Height;
1118 unsigned Height = TBI.Succ ? Cycles.lookup(&PHI).Height : 0;
1119 LLVM_DEBUG(dbgs() << "pred\t" << Height << '\t' << PHI);
1120 if (pushDepHeight(Deps.front(), PHI, Height, Heights, MTM.SchedModel,
1155 MICycles.Height = Cycle;
1170 LIR.Height = Heights.lookup(DefMI);
1171 LLVM_DEBUG(dbgs() << ' ' << printReg(LIR.Reg) << '@' << LIR.Height);
1210 return getCriticalPath() - (Cyc.Depth + Cyc.Height);