Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DSCCIterator.h52 struct StackElement { struct
57 StackElement(NodeRef Node, const ChildItTy &Child, unsigned Min) in StackElement() function
60 bool operator==(const StackElement &Other) const {
82 std::vector<StackElement> VisitStack;
148 VisitStack.push_back(StackElement(N, GT::child_begin(N), visitNum)); in DFSVisitOne()
H A DDepthFirstIterator.h96 using StackElement = std::pair<NodeRef, Optional<ChildItTy>>; variable
99 std::vector<StackElement> VisitStack;
104 VisitStack.push_back(StackElement(Node, None)); in df_iterator()
112 VisitStack.push_back(StackElement(Node, None)); in df_iterator()
136 VisitStack.push_back(StackElement(Next, None)); in toNext()