Lines Matching refs:maxHeight
2340 SUnit *maxHeight = nullptr; in computeNodeOrder() local
2342 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
2343 maxHeight = I; in computeNodeOrder()
2344 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2345 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight)) in computeNodeOrder()
2346 maxHeight = I; in computeNodeOrder()
2347 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2349 getZeroLatencyHeight(maxHeight) && in computeNodeOrder()
2350 getMOV(I) < getMOV(maxHeight)) in computeNodeOrder()
2351 maxHeight = I; in computeNodeOrder()
2353 NodeOrder.insert(maxHeight); in computeNodeOrder()
2354 LLVM_DEBUG(dbgs() << maxHeight->NodeNum << " "); in computeNodeOrder()
2355 R.remove(maxHeight); in computeNodeOrder()
2356 for (const auto &I : maxHeight->Succs) { in computeNodeOrder()
2366 for (const auto &I : maxHeight->Preds) { in computeNodeOrder()