Searched defs:scc_iterator (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSCCIterator.h18 /// To visit S1 *before* S2, use the scc_iterator on the Inverse graph. (NOTE:
40 class scc_iterator class in namespace:llvm
42 scc_iterator<GraphT, GT>, std::forward_iterator_tag,
47 typedef typename scc_iterator::reference reference;
91 scc_iterator(NodeType *entryN) : visitNum(0) { function in class:llvm::scc_iterator
97 scc_iterator() {} function in class:llvm::scc_iterator
100 static scc_iterator begin(const GraphT &G) {
101 return scc_iterator(GT::getEntryNode(G));
103 static scc_iterator end(const GraphT &) { return scc_iterator(); }
[all...]

Completed in 97 milliseconds