Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Heights

224   // Compute per-resource heights.
263 /// Get an array of processor resource heights for MBB. Indexed by processor
932 MIHeightMap &Heights,
940 // Update Heights[DefMI] to be the maximum height seen.
943 std::tie(I, New) = Heights.insert(std::make_pair(Dep.DefMI, UseHeight));
975 /// Compute instruction heights in the trace through MBB. This updates MBB and
995 MIHeightMap Heights;
1002 // If the bottom of the trace was already precomputed, initialize heights
1011 unsigned &Height = Heights[MTM.MRI->getVRegDef(LI.Reg)];
1026 DEBUG(dbgs() << "Heights for BB#" << MBB->getNumber() << ":\n");
1060 // Loop header PHI heights are all 0.
1064 Heights, MTM.SchedModel, MTM.TII))
1078 MIHeightMap::iterator HeightI = Heights.find(MI);
1079 if (HeightI != Heights.end()) {
1082 Heights.erase(HeightI);
1097 if (pushDepHeight(Deps[i], MI, Cycle, Heights, MTM.SchedModel, MTM.TII))
1111 // Update virtual live-in heights. They were added by addLiveIns() with a 0
1117 LIR.Height = Heights.lookup(DefMI);