Struct cranelift_codegen::loop_analysis::LoopAnalysis[][src]

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

impl LoopAnalysis
[src]

Methods for querying the loop analysis.

Allocate a new blank loop analysis struct. Use compute to compute the loop analysis for a function.

Important traits for Keys<K>

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).

impl LoopAnalysis
[src]

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 contanted 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.

Auto Trait Implementations