//! A framework that can express both [gen-kill] and generic dataflow problems. //! //! There is another interface for dataflow in the compiler in `librustc_mir/dataflow/mod.rs`. The //! interface in this module will eventually [replace that one][design-meeting]. //! //! To actually use this framework, you must implement either the `Analysis` or the `GenKillAnalysis` //! trait. If your transfer function can be expressed with only gen/kill operations, prefer //! `GenKillAnalysis` since it will run faster while iterating to fixpoint. Create an `Engine` using //! the appropriate constructor and call `iterate_to_fixpoint`. You can use a `ResultsCursor` to //! inspect the fixpoint solution to your dataflow problem. //! //! ```ignore(cross-crate-imports) //! fn do_my_analysis(tcx: TyCtxt<'tcx>, body: &mir::Body<'tcx>, did: DefId) { //! let analysis = MyAnalysis::new(); //! //! // If `MyAnalysis` implements `GenKillAnalysis`. //! let results = Engine::new_gen_kill(tcx, body, did, analysis).iterate_to_fixpoint(); //! //! // If `MyAnalysis` implements `Analysis`. //! // let results = Engine::new_generic(tcx, body, did, analysis).iterate_to_fixpoint(); //! //! let mut cursor = ResultsCursor::new(body, results); //! //! for (_, statement_index) in body.block_data[START_BLOCK].statements.iter_enumerated() { //! cursor.seek_after(Location { block: START_BLOCK, statement_index }); //! let state = cursor.get(); //! println!("{:?}", state); //! } //! } //! ``` //! //! [gen-kill]: https://en.wikipedia.org/wiki/Data-flow_analysis#Bit_vector_problems //! [design-meeting]https://github.com/rust-lang/compiler-team/issues/202 use std::io; use rustc::mir::{self, BasicBlock, Location}; use rustc_index::bit_set::{BitSet, HybridBitSet}; use rustc_index::vec::{Idx, IndexVec}; use crate::dataflow::BottomValue; mod cursor; mod engine; mod graphviz; pub use self::cursor::{ResultsCursor, ResultsRefCursor}; pub use self::engine::Engine; /// A dataflow analysis that has converged to fixpoint. pub struct Results<'tcx, A> where A: Analysis<'tcx>, { pub analysis: A, entry_sets: IndexVec>, } impl Results<'tcx, A> where A: Analysis<'tcx>, { /// Creates a `ResultsCursor` that can inspect these `Results`. pub fn into_results_cursor(self, body: &'mir mir::Body<'tcx>) -> ResultsCursor<'mir, 'tcx, A> { ResultsCursor::new(body, self) } /// Gets the entry set for the given block. pub fn entry_set_for_block(&self, block: BasicBlock) -> &BitSet { &self.entry_sets[block] } } /// Define the domain of a dataflow problem. /// /// This trait specifies the lattice on which this analysis operates. For now, this must be a /// powerset of values of type `Idx`. The elements of this lattice are represented with a `BitSet` /// and referred to as the state vector. /// /// This trait also defines the initial value for the dataflow state upon entry to the /// `START_BLOCK`, as well as some names used to refer to this analysis when debugging. pub trait AnalysisDomain<'tcx>: BottomValue { /// The type of the elements in the state vector. type Idx: Idx; /// A descriptive name for this analysis. Used only for debugging. /// /// This name should be brief and contain no spaces, periods or other characters that are not /// suitable as part of a filename. const NAME: &'static str; /// The size of the state vector. fn bits_per_block(&self, body: &mir::Body<'tcx>) -> usize; /// Mutates the entry set of the `START_BLOCK` to contain the initial state for dataflow /// analysis. fn initialize_start_block(&self, body: &mir::Body<'tcx>, state: &mut BitSet); /// Prints an element in the state vector for debugging. fn pretty_print_idx(&self, w: &mut impl io::Write, idx: Self::Idx) -> io::Result<()> { write!(w, "{:?}", idx) } } /// A dataflow problem with an arbitrarily complex transfer function. pub trait Analysis<'tcx>: AnalysisDomain<'tcx> { /// Updates the current dataflow state with the effect of evaluating a statement. fn apply_statement_effect( &self, state: &mut BitSet, statement: &mir::Statement<'tcx>, location: Location, ); /// Updates the current dataflow state with an effect that occurs immediately *before* the /// given statement. /// /// This method is useful if the consumer of the results of this analysis needs only to observe /// *part* of the effect of a statement (e.g. for two-phase borrows). As a general rule, /// analyses should not implement this without implementing `apply_statement_effect`. fn apply_before_statement_effect( &self, _state: &mut BitSet, _statement: &mir::Statement<'tcx>, _location: Location, ) { } /// Updates the current dataflow state with the effect of evaluating a terminator. /// /// The effect of a successful return from a `Call` terminator should **not** be accounted for /// in this function. That should go in `apply_call_return_effect`. For example, in the /// `InitializedPlaces` analyses, the return place for a function call is not marked as /// initialized here. fn apply_terminator_effect( &self, state: &mut BitSet, terminator: &mir::Terminator<'tcx>, location: Location, ); /// Updates the current dataflow state with an effect that occurs immediately *before* the /// given terminator. /// /// This method is useful if the consumer of the results of this analysis needs only to observe /// *part* of the effect of a terminator (e.g. for two-phase borrows). As a general rule, /// analyses should not implement this without implementing `apply_terminator_effect`. fn apply_before_terminator_effect( &self, _state: &mut BitSet, _terminator: &mir::Terminator<'tcx>, _location: Location, ) { } /// Updates the current dataflow state with the effect of a successful return from a `Call` /// terminator. /// /// This is separate from `apply_terminator_effect` to properly track state across unwind /// edges. fn apply_call_return_effect( &self, state: &mut BitSet, block: BasicBlock, func: &mir::Operand<'tcx>, args: &[mir::Operand<'tcx>], return_place: &mir::Place<'tcx>, ); } /// A gen/kill dataflow problem. /// /// Each method in this trait has a corresponding one in `Analysis`. However, these methods only /// allow modification of the dataflow state via "gen" and "kill" operations. By defining transfer /// functions for each statement in this way, the transfer function for an entire basic block can /// be computed efficiently. /// /// `Analysis` is automatically implemented for all implementers of `GenKillAnalysis`. pub trait GenKillAnalysis<'tcx>: Analysis<'tcx> { /// See `Analysis::apply_statement_effect`. fn statement_effect( &self, trans: &mut impl GenKill, statement: &mir::Statement<'tcx>, location: Location, ); /// See `Analysis::apply_before_statement_effect`. fn before_statement_effect( &self, _trans: &mut impl GenKill, _statement: &mir::Statement<'tcx>, _location: Location, ) { } /// See `Analysis::apply_terminator_effect`. fn terminator_effect( &self, trans: &mut impl GenKill, terminator: &mir::Terminator<'tcx>, location: Location, ); /// See `Analysis::apply_before_terminator_effect`. fn before_terminator_effect( &self, _trans: &mut impl GenKill, _terminator: &mir::Terminator<'tcx>, _location: Location, ) { } /// See `Analysis::apply_call_return_effect`. fn call_return_effect( &self, trans: &mut impl GenKill, block: BasicBlock, func: &mir::Operand<'tcx>, args: &[mir::Operand<'tcx>], return_place: &mir::Place<'tcx>, ); } impl Analysis<'tcx> for A where A: GenKillAnalysis<'tcx>, { fn apply_statement_effect( &self, state: &mut BitSet, statement: &mir::Statement<'tcx>, location: Location, ) { self.statement_effect(state, statement, location); } fn apply_before_statement_effect( &self, state: &mut BitSet, statement: &mir::Statement<'tcx>, location: Location, ) { self.before_statement_effect(state, statement, location); } fn apply_terminator_effect( &self, state: &mut BitSet, terminator: &mir::Terminator<'tcx>, location: Location, ) { self.terminator_effect(state, terminator, location); } fn apply_before_terminator_effect( &self, state: &mut BitSet, terminator: &mir::Terminator<'tcx>, location: Location, ) { self.before_terminator_effect(state, terminator, location); } fn apply_call_return_effect( &self, state: &mut BitSet, block: BasicBlock, func: &mir::Operand<'tcx>, args: &[mir::Operand<'tcx>], return_place: &mir::Place<'tcx>, ) { self.call_return_effect(state, block, func, args, return_place); } } /// The legal operations for a transfer function in a gen/kill problem. /// /// This abstraction exists because there are two different contexts in which we call the methods in /// `GenKillAnalysis`. Sometimes we need to store a single transfer function that can be efficiently /// applied multiple times, such as when computing the cumulative transfer function for each block. /// These cases require a `GenKillSet`, which in turn requires two `BitSet`s of storage. Oftentimes, /// however, we only need to apply an effect once. In *these* cases, it is more efficient to pass the /// `BitSet` representing the state vector directly into the `*_effect` methods as opposed to /// building up a `GenKillSet` and then throwing it away. pub trait GenKill { /// Inserts `elem` into the state vector. fn gen(&mut self, elem: T); /// Removes `elem` from the state vector. fn kill(&mut self, elem: T); /// Calls `gen` for each element in `elems`. fn gen_all(&mut self, elems: impl IntoIterator) { for elem in elems { self.gen(elem); } } /// Calls `kill` for each element in `elems`. fn kill_all(&mut self, elems: impl IntoIterator) { for elem in elems { self.kill(elem); } } } /// Stores a transfer function for a gen/kill problem. /// /// Calling `gen`/`kill` on a `GenKillSet` will "build up" a transfer function so that it can be /// applied multiple times efficiently. When there are multiple calls to `gen` and/or `kill` for /// the same element, the most recent one takes precedence. #[derive(Clone)] pub struct GenKillSet { gen: HybridBitSet, kill: HybridBitSet, } impl GenKillSet { /// Creates a new transfer function that will leave the dataflow state unchanged. pub fn identity(universe: usize) -> Self { GenKillSet { gen: HybridBitSet::new_empty(universe), kill: HybridBitSet::new_empty(universe), } } /// Applies this transfer function to the given state vector. pub fn apply(&self, state: &mut BitSet) { state.union(&self.gen); state.subtract(&self.kill); } } impl GenKill for GenKillSet { fn gen(&mut self, elem: T) { self.gen.insert(elem); self.kill.remove(elem); } fn kill(&mut self, elem: T) { self.kill.insert(elem); self.gen.remove(elem); } } impl GenKill for BitSet { fn gen(&mut self, elem: T) { self.insert(elem); } fn kill(&mut self, elem: T) { self.remove(elem); } } #[cfg(test)] mod tests;