Lines Matching defs:maxHeight
2286 SUnit *maxHeight = nullptr;
2288 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight))
2289 maxHeight = I;
2290 else if (getHeight(I) == getHeight(maxHeight) &&
2291 getZeroLatencyHeight(I) > getZeroLatencyHeight(maxHeight))
2292 maxHeight = I;
2293 else if (getHeight(I) == getHeight(maxHeight) &&
2295 getZeroLatencyHeight(maxHeight) &&
2296 getMOV(I) < getMOV(maxHeight))
2297 maxHeight = I;
2299 NodeOrder.insert(maxHeight);
2300 LLVM_DEBUG(dbgs() << maxHeight->NodeNum << " ");
2301 R.remove(maxHeight);
2302 for (const auto &OE : DDG->getOutEdges(maxHeight)) {
2317 for (const auto &IE : DDG->getInEdges(maxHeight)) {