Home
last modified time | relevance | path

Searched refs:maxHeight (Results 1 – 1 of 1) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp2280 SUnit *maxHeight = nullptr; in computeNodeOrder() local
2282 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
2283 maxHeight = I; in computeNodeOrder()
2286 maxHeight = I; 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()
[all …]