Structs§
- Mono
Reachable - Postorder
- Postorder traversal of a graph.
- Preorder
- Preorder traversal of a graph.
Traits§
- Customization
- Lets us plug in some additional logic and data into a Postorder traversal. Or not.
Functions§
- mono_
reachable - Traversal of a
Body
that tries to avoid unreachable blocks in a monomorphizedInstance
. - mono_
reachable_ as_ bitset MonoReachable
internally accumulates aDenseBitSet
of visited blocks. This is just a convenience function to run that traversal then extract its set of reached blocks.- mono_
reachable_ reverse_ postorder - postorder
- Postorder traversal of a graph.
- preorder
- Preorder traversal of a graph.
- reachable
- Returns an iterator over all basic blocks reachable from the
START_BLOCK
in no particular order. - reachable_
as_ bitset - Returns a
DenseBitSet
containing all basic blocks reachable from theSTART_BLOCK
. - reverse_
postorder - Reverse postorder traversal of a graph.