pub struct LoopAnalysis { /* fields omitted */ }Loop tree information for a single function.
Loops are referenced by the Loop object, and for each loop you can access its header EBB,
its eventual parent in the loop tree and all the EBB belonging to the loop.
Methods for querying the loop analysis.
Allocate a new blank loop analysis struct. Use compute to compute the loop analysis for
a function.
Returns all the loops contained in a function.
Returns the header EBB of a particular loop.
The characteristic property of a loop header block is that it dominates some of its
predecessors.
Return the eventual parent of a loop in the loop tree.
Determine if an Ebb belongs to a loop by running a finger along the loop tree.
Returns true if ebb is in loop lp.
Determines if a loop is contained in another loop.
is_child_loop(child,parent) returns true if and only if child is a child loop of
parent (or child == parent).
Detects the loops in a function. Needs the control flow graph and the dominator tree.
Check if the loop analysis is in a valid state.
Note that this doesn't perform any kind of validity checks. It simply checks if the
compute() method has been called since the last clear(). It does not check that the
loop analysis is consistent with the CFG.
Clear all the data structures contained in the loop analysis. This will leave the
analysis in a similar state to a context returned by new() except that allocated
memory be retained.
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
🔬 This is a nightly-only experimental API. (try_from)
The type returned in the event of a conversion error.
🔬 This is a nightly-only experimental API. (try_from)
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static