Lines Matching refs:maxHeight
1905 SUnit *maxHeight = nullptr; in computeNodeOrder() local
1907 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
1908 maxHeight = I; in computeNodeOrder()
1909 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
1910 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight)) in computeNodeOrder()
1911 maxHeight = I; in computeNodeOrder()
1912 else if (getHeight(I) == getHeight(maxHeight) && in computeNodeOrder()
1914 getZeroLatencyHeight(maxHeight) && in computeNodeOrder()
1915 getMOV(I) < getMOV(maxHeight)) in computeNodeOrder()
1916 maxHeight = I; in computeNodeOrder()
1918 NodeOrder.insert(maxHeight); in computeNodeOrder()
1919 LLVM_DEBUG(dbgs() << maxHeight->NodeNum << " "); in computeNodeOrder()
1920 R.remove(maxHeight); in computeNodeOrder()
1921 for (const auto &I : maxHeight->Succs) { in computeNodeOrder()
1931 for (const auto &I : maxHeight->Preds) { in computeNodeOrder()