Home
last modified time | relevance | path

Searched defs:DefStack (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h702 struct DefStack { struct
705 bool empty() const { return Stack.empty() || top() == bottom(); } in empty()
709 struct Iterator {
746 iterator top() const { return Iterator(*this, true); } in top()
747 iterator bottom() const { return Iterator(*this, false); } in bottom()
750 void push(Def DA) { Stack.push_back(DA); } in push()
758 using StorageType = std::vector<value_type>;
767 StorageType Stack;