Home
last modified time | relevance | path

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

/llvm-project-15.0.7/flang/runtime/
H A Dformat.h87 std::size_t formatLength, int maxHeight = maxMaxHeight);
90 static std::size_t GetNeededSize(int maxHeight) { in GetNeededSize() argument
92 sizeof(Iteration) * (maxMaxHeight - maxHeight); in GetNeededSize()
H A Dformat-implementation.h26 const CharType *format, std::size_t formatLength, int maxHeight) in FormatControl() argument
27 : maxHeight_{static_cast<std::uint8_t>(maxHeight)}, format_{format}, in FormatControl()
29 RUNTIME_CHECK(terminator, maxHeight == maxHeight_);
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DMachinePipeliner.cpp1905 SUnit *maxHeight = nullptr; in computeNodeOrder() local
1907 if (maxHeight == nullptr || getHeight(I) > getHeight(maxHeight)) in computeNodeOrder()
1908 maxHeight = I; in computeNodeOrder()
1911 maxHeight = I; 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()
[all …]