Lines Matching refs:maxHeight
2541 SUnit *maxHeight = nullptr; in computeNodeOrder() local
2543 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
2544 maxHeight = I; in computeNodeOrder()
2545 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2546 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight)) in computeNodeOrder()
2547 maxHeight = I; in computeNodeOrder()
2548 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
2550 getZeroLatencyHeight(maxHeight) && in computeNodeOrder()
2551 getMOV(I) < getMOV(maxHeight)) in computeNodeOrder()
2552 maxHeight = I; in computeNodeOrder()
2554 NodeOrder.insert(maxHeight); in computeNodeOrder()
2555 LLVM_DEBUG(dbgs() << maxHeight->NodeNum << " "); in computeNodeOrder()
2556 R.remove(maxHeight); in computeNodeOrder()
2557 for (const auto &OE : DDG->getOutEdges(maxHeight)) { in computeNodeOrder()
2572 for (const auto &IE : DDG->getInEdges(maxHeight)) { in computeNodeOrder()