Lines Matching defs:Height
387 unsigned Height = SuccTBI->InstrHeight;
388 if (!Best || Height < BestHeight) {
390 BestHeight = Height;
788 unsigned Len = LIR.Height + Cycles[DefMI].Depth;
826 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height);
904 // Height is the issue height computed from virtual register dependencies alone.
905 static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height,
923 // update MI Height to consider the physreg dependencies.
935 Height = std::max(Height, DepHeight);
947 if (LRU.Cycle <= Height && LRU.MI != &MI) {
948 LRU.Cycle = Height;
955 return Height;
1040 unsigned &Height = Heights[MTM.MRI->getVRegDef(LI.Reg)];
1041 if (Height < LI.Height)
1042 Height = LI.Height;
1046 RegUnits[LI.Reg].Cycle = LI.Height;
1090 unsigned Height = TBI.Succ ? Cycles.lookup(&PHI).Height : 0;
1091 LLVM_DEBUG(dbgs() << "pred\t" << Height << '\t' << PHI);
1092 if (pushDepHeight(Deps.front(), PHI, Height, Heights, MTM.SchedModel,
1127 MICycles.Height = Cycle;
1142 LIR.Height = Heights.lookup(DefMI);
1143 LLVM_DEBUG(dbgs() << ' ' << printReg(LIR.Reg) << '@' << LIR.Height);
1182 return getCriticalPath() - (Cyc.Depth + Cyc.Height);