Struct rustc::middle::dataflow::DataFlowContext [] [src]

pub struct DataFlowContext<'a, 'tcx: 'a, O> {
    // some fields omitted
}
Unstable (rustc_private)

Methods

impl<'a, 'tcx, O: DataFlowOperator> DataFlowContext<'a, 'tcx, O>
[src]

fn new(tcx: TyCtxt<'a, 'tcx, 'tcx>, analysis_name: &'static str, decl: Option<&FnDecl>, cfg: &CFG, oper: O, id_range: IdRange, bits_per_id: usize) -> DataFlowContext<'a, 'tcx, O>

fn add_gen(&mut self, id: NodeId, bit: usize)

Unstable (rustc_private)

Indicates that id generates bit

fn add_kill(&mut self, kind: KillFrom, id: NodeId, bit: usize)

Unstable (rustc_private)

Indicates that id kills bit

fn each_bit_on_entry<F>(&self, id: NodeId, f: F) -> bool where F: FnMut(usize) -> bool

Unstable (rustc_private)

Iterates through each bit that is set on entry to id. Only useful after propagate() has been called.

fn each_bit_for_node<F>(&self, e: EntryOrExit, cfgidx: CFGIndex, f: F) -> bool where F: FnMut(usize) -> bool

Unstable (rustc_private)

Iterates through each bit that is set on entry/exit to cfgidx. Only useful after propagate() has been called.

fn each_gen_bit<F>(&self, id: NodeId, f: F) -> bool where F: FnMut(usize) -> bool

Unstable (rustc_private)

Iterates through each bit in the gen set for id.

fn add_kills_from_flow_exits(&mut self, cfg: &CFG)

Unstable (rustc_private)

Whenever you have a break or continue statement, flow exits through any number of enclosing scopes on its way to the new destination. This function infers the kill bits of those control operators based on the kill bits associated with those scopes.

This is usually called (if it is called at all), after all add_gen and add_kill calls, but before propagate.

impl<'a, 'tcx, O: DataFlowOperator + Clone + 'static> DataFlowContext<'a, 'tcx, O>
[src]

fn propagate(&mut self, cfg: &CFG, blk: &Block)

Unstable (rustc_private)

Performs the data flow analysis.

Trait Implementations

impl<'a, 'tcx, O: DataFlowOperator> PpAnn for DataFlowContext<'a, 'tcx, O>
[src]

fn pre(&self, ps: &mut State, node: AnnNode) -> Result<()>

fn post(&self, _state: &mut State, _node: AnnNode) -> Result<()>

Derived Implementations

impl<'a, 'tcx: 'a, O: Clone> Clone for DataFlowContext<'a, 'tcx, O>
[src]

fn clone(&self) -> DataFlowContext<'a, 'tcx, O>

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more