Searched refs:po_iterator (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | PostOrderIterator.h | 96 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/ |
D | PostOrderIterator.h | 93 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/ |
D | PostOrderIterator.h | 52 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/ |
D | PostOrderCFGView.cpp | 24 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/ |
D | PostOrderCFGView.h | 72 typedef llvm::po_iterator<const CFG*, CFGBlockSet, true> po_iterator; typedef
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | LoopIterator.h | 116 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
|
/external/llvm/include/llvm/Analysis/ |
D | LoopIterator.h | 125 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | LoopIterator.h | 204 typedef po_iterator<BasicBlock*, LoopBlocksTraversal, true> POTIterator;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | RegionInfo.cpp | 630 for (po_iterator<DomTreeNode*> FI = po_begin(N), FE = po_end(N); FI != FE; in scanForRegions()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGBuilder.cpp | 5482 for (po_iterator<Type*> i = po_begin(T), e = po_end(T); in visitCall()
|