Lines Matching refs:maxHeight
2280 SUnit *maxHeight = nullptr; in computeNodeOrder() local
2282 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
2283 maxHeight = I; in computeNodeOrder()
2284 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2285 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight)) in computeNodeOrder()
2286 maxHeight = I; in computeNodeOrder()
2287 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2289 getZeroLatencyHeight(maxHeight) && in computeNodeOrder()
2290 getMOV(I) < getMOV(maxHeight)) in computeNodeOrder()
2291 maxHeight = I; in computeNodeOrder()
2293 NodeOrder.insert(maxHeight); in computeNodeOrder()
2294 LLVM_DEBUG(dbgs() << maxHeight->NodeNum << " "); in computeNodeOrder()
2295 R.remove(maxHeight); in computeNodeOrder()
2296 for (const auto &I : maxHeight->Succs) { in computeNodeOrder()
2306 for (const auto &I : maxHeight->Preds) { in computeNodeOrder()