Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DPostOrderIterator.h96 class po_iterator
107 po_iterator(NodeRef BB) { in po_iterator() function
113 po_iterator() = default; // End is when stack is empty.
115 po_iterator(NodeRef BB, SetType &S) in po_iterator() function
123 po_iterator(SetType &S) in po_iterator() function
141 static po_iterator begin(GraphT G) { in begin()
142 return po_iterator(GT::getEntryNode(G)); in begin()
144 static po_iterator end(GraphT G) { return po_iterator(); } in end()
146 static po_iterator begin(GraphT G, SetType &S) { in begin()
147 return po_iterator(GT::getEntryNode(G), S); in begin()
[all …]
/external/llvm/include/llvm/ADT/
DPostOrderIterator.h93 class po_iterator : public std::iterator<std::forward_iterator_tag,
115 po_iterator(NodeType *BB) { in po_iterator() function
120 po_iterator() {} // End is when stack is empty. in po_iterator() function
122 po_iterator(NodeType *BB, SetType &S) in po_iterator() function
130 po_iterator(SetType &S) in po_iterator() function
137 static po_iterator begin(GraphT G) { in begin()
138 return po_iterator(GT::getEntryNode(G)); in begin()
140 static po_iterator end(GraphT G) { return po_iterator(); } in end()
142 static po_iterator begin(GraphT G, SetType &S) { in begin()
143 return po_iterator(GT::getEntryNode(G), S); in begin()
[all …]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DPostOrderIterator.h52 class po_iterator : public std::iterator<std::forward_iterator_tag,
73 inline po_iterator(NodeType *BB) { in po_iterator() function
78 inline po_iterator() {} // End is when stack is empty. in po_iterator() function
80 inline po_iterator(NodeType *BB, SetType &S) : in po_iterator() function
88 inline po_iterator(SetType &S) : in po_iterator() function
93 typedef po_iterator<GraphT, SetType, ExtStorage, GT> _Self;
136 po_iterator<T> po_begin(T G) { return po_iterator<T>::begin(G); } in po_begin()
138 po_iterator<T> po_end (T G) { return po_iterator<T>::end(G); } in po_end()
142 struct po_ext_iterator : public po_iterator<T, SetType, true> {
143 po_ext_iterator(const po_iterator<T, SetType, true> &V) : in po_ext_iterator()
[all …]
/external/clang/lib/Analysis/
DPostOrderCFGView.cpp24 for (po_iterator I = po_iterator::begin(cfg, BSet), in PostOrderCFGView()
25 E = po_iterator::end(cfg, BSet); I != E; ++I) { in PostOrderCFGView()
/external/clang/include/clang/Analysis/Analyses/
DPostOrderCFGView.h72 typedef llvm::po_iterator<const CFG*, CFGBlockSet, true> po_iterator; typedef
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DLoopIterator.h116 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
/external/llvm/include/llvm/Analysis/
DLoopIterator.h125 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DLoopIterator.h204 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
/external/swiftshader/third_party/LLVM/lib/Analysis/
DRegionInfo.cpp630 for (po_iterator<DomTreeNode*> FI = po_begin(N), FE = po_end(N); FI != FE; in scanForRegions()
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.cpp5482 for (po_iterator<Type*> i = po_begin(T), e = po_end(T); in visitCall()