Lines Matching refs:Height

360     unsigned Height = SuccTBI->InstrHeight;  in pickTraceSucc()  local
361 if (!Best || Height < BestHeight) { in pickTraceSucc()
363 BestHeight = Height; in pickTraceSucc()
770 unsigned Len = LIR.Height + Cycles[DefMI].Depth; in computeCrossBlockCriticalPath()
859 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in computeInstrDepths()
868 static unsigned updatePhysDepsUpwards(const MachineInstr &MI, unsigned Height, in updatePhysDepsUpwards() argument
901 Height = std::max(Height, DepHeight); in updatePhysDepsUpwards()
913 if (LRU.Cycle <= Height && LRU.MI != &MI) { in updatePhysDepsUpwards()
914 LRU.Cycle = Height; in updatePhysDepsUpwards()
921 return Height; in updatePhysDepsUpwards()
1008 unsigned &Height = Heights[MTM.MRI->getVRegDef(LI.Reg)]; in computeInstrHeights() local
1009 if (Height < LI.Height) in computeInstrHeights()
1010 Height = LI.Height; in computeInstrHeights()
1014 RegUnits[LI.Reg].Cycle = LI.Height; in computeInstrHeights()
1058 unsigned Height = TBI.Succ ? Cycles.lookup(&PHI).Height : 0; in computeInstrHeights() local
1059 DEBUG(dbgs() << "pred\t" << Height << '\t' << PHI); in computeInstrHeights()
1060 if (pushDepHeight(Deps.front(), PHI, Height, Heights, MTM.SchedModel, in computeInstrHeights()
1098 MICycles.Height = Cycle; in computeInstrHeights()
1113 LIR.Height = Heights.lookup(DefMI); in computeInstrHeights()
1114 DEBUG(dbgs() << ' ' << PrintReg(LIR.Reg) << '@' << LIR.Height); in computeInstrHeights()
1154 return getCriticalPath() - (Cyc.Depth + Cyc.Height); in getInstrSlack()