|
LLVM
3.7.0
|
#include <DepthFirstIterator.h>
Public Types | |
| typedef super::pointer | pointer |
Public Member Functions | |
| bool | operator== (const df_iterator &x) const |
| bool | operator!= (const df_iterator &x) const |
| pointer | operator* () const |
| NodeType * | operator-> () const |
| df_iterator & | operator++ () |
| df_iterator & | skipChildren () |
| Skips all children of the current node and traverses to next node. More... | |
| df_iterator | operator++ (int) |
| bool | nodeVisited (NodeType *Node) const |
| unsigned | getPathLength () const |
| getPathLength - Return the length of the path from the entry node to the current node, counting both nodes. More... | |
| NodeType * | getPath (unsigned n) const |
| getPath - Return the n'th node in the path from the entry node to the current node. More... | |
Static Public Member Functions | |
| static df_iterator | begin (const GraphT &G) |
| static df_iterator | end (const GraphT &G) |
| static df_iterator | begin (const GraphT &G, SetType &S) |
| static df_iterator | end (const GraphT &G, SetType &S) |
Additional Inherited Members | |
Public Attributes inherited from llvm::df_iterator_storage< SetType, ExtStorage > | |
| SetType | Visited |
Definition at line 66 of file DepthFirstIterator.h.
| typedef super::pointer llvm::df_iterator< GraphT, SetType, ExtStorage, GT >::pointer |
Definition at line 130 of file DepthFirstIterator.h.
|
inlinestatic |
Definition at line 133 of file DepthFirstIterator.h.
Referenced by llvm::df_begin().
|
inlinestatic |
Definition at line 139 of file DepthFirstIterator.h.
|
inlinestatic |
Definition at line 136 of file DepthFirstIterator.h.
Referenced by llvm::df_end().
|
inlinestatic |
Definition at line 142 of file DepthFirstIterator.h.
|
inline |
getPath - Return the n'th node in the path from the entry node to the current node.
Definition at line 193 of file DepthFirstIterator.h.
|
inline |
getPathLength - Return the length of the path from the entry node to the current node, counting both nodes.
Definition at line 189 of file DepthFirstIterator.h.
|
inline |
Definition at line 183 of file DepthFirstIterator.h.
|
inline |
Definition at line 147 of file DepthFirstIterator.h.
|
inline |
Definition at line 149 of file DepthFirstIterator.h.
Referenced by llvm::RegionBase< RegionTr >::block_iterator_wrapper< IsConst >::operator*().
|
inline |
Definition at line 157 of file DepthFirstIterator.h.
|
inline |
Definition at line 173 of file DepthFirstIterator.h.
|
inline |
Definition at line 155 of file DepthFirstIterator.h.
|
inline |
Definition at line 144 of file DepthFirstIterator.h.
|
inline |
Skips all children of the current node and traverses to next node.
Note: This function takes care of incrementing the iterator. If you always increment and call this function, you risk walking off the end.
Definition at line 166 of file DepthFirstIterator.h.
1.8.6