Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DDepthFirstIterator.h101 using StackElement = std::pair<NodeRef, Optional<ChildItTy>>; variable
104 std::vector<StackElement> VisitStack;
108 VisitStack.push_back(StackElement(Node, None)); in df_iterator()
116 VisitStack.push_back(StackElement(Node, None)); in df_iterator()
140 VisitStack.push_back(StackElement(Next, None)); in toNext()
H A DSCCIterator.h55 struct StackElement { struct
60 StackElement(NodeRef Node, const ChildItTy &Child, unsigned Min) in StackElement() argument
63 bool operator==(const StackElement &Other) const {
85 std::vector<StackElement> VisitStack;
154 VisitStack.push_back(StackElement(N, GT::child_begin(N), visitNum)); in DFSVisitOne()