Struct rustc_mir_dataflow::framework::graphviz::StateDiffCollector
source · struct StateDiffCollector<D> {
prev_state: D,
before: Option<Vec<String>>,
after: Vec<String>,
}
Fields§
§prev_state: D
§before: Option<Vec<String>>
§after: Vec<String>
Implementations§
source§impl<D> StateDiffCollector<D>
impl<D> StateDiffCollector<D>
fn run<'tcx, A>( body: &Body<'tcx>, block: BasicBlock, results: &mut Results<'tcx, A>, style: OutputStyle ) -> Selfwhere A: Analysis<'tcx, Domain = D>, D: DebugWithContext<A>,
Trait Implementations§
source§impl<'tcx, A> ResultsVisitor<'_, 'tcx, Results<'tcx, A, IndexVec<BasicBlock, <A as AnalysisDomain<'tcx>>::Domain>>> for StateDiffCollector<A::Domain>where
A: Analysis<'tcx>,
A::Domain: DebugWithContext<A>,
impl<'tcx, A> ResultsVisitor<'_, 'tcx, Results<'tcx, A, IndexVec<BasicBlock, <A as AnalysisDomain<'tcx>>::Domain>>> for StateDiffCollector<A::Domain>where A: Analysis<'tcx>, A::Domain: DebugWithContext<A>,
type FlowState = <A as AnalysisDomain<'tcx>>::Domain
fn visit_block_start( &mut self, _results: &mut Results<'tcx, A>, state: &Self::FlowState, _block_data: &BasicBlockData<'tcx>, _block: BasicBlock )
fn visit_block_end( &mut self, _results: &mut Results<'tcx, A>, state: &Self::FlowState, _block_data: &BasicBlockData<'tcx>, _block: BasicBlock )
source§fn visit_statement_before_primary_effect(
&mut self,
results: &mut Results<'tcx, A>,
state: &Self::FlowState,
_statement: &Statement<'tcx>,
_location: Location
)
fn visit_statement_before_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _statement: &Statement<'tcx>, _location: Location )
Called with the
before_statement_effect
of the given statement applied to state
but not
its statement_effect
.source§fn visit_statement_after_primary_effect(
&mut self,
results: &mut Results<'tcx, A>,
state: &Self::FlowState,
_statement: &Statement<'tcx>,
_location: Location
)
fn visit_statement_after_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _statement: &Statement<'tcx>, _location: Location )
Called with both the
before_statement_effect
and the statement_effect
of the given
statement applied to state
.source§fn visit_terminator_before_primary_effect(
&mut self,
results: &mut Results<'tcx, A>,
state: &Self::FlowState,
_terminator: &Terminator<'tcx>,
_location: Location
)
fn visit_terminator_before_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _terminator: &Terminator<'tcx>, _location: Location )
Called with the
before_terminator_effect
of the given terminator applied to state
but not
its terminator_effect
.source§fn visit_terminator_after_primary_effect(
&mut self,
results: &mut Results<'tcx, A>,
state: &Self::FlowState,
_terminator: &Terminator<'tcx>,
_location: Location
)
fn visit_terminator_after_primary_effect( &mut self, results: &mut Results<'tcx, A>, state: &Self::FlowState, _terminator: &Terminator<'tcx>, _location: Location )
Called with both the
before_terminator_effect
and the terminator_effect
of the given
terminator applied to state
. Read moreAuto Trait Implementations§
impl<D> RefUnwindSafe for StateDiffCollector<D>where D: RefUnwindSafe,
impl<D> Send for StateDiffCollector<D>where D: Send,
impl<D> Sync for StateDiffCollector<D>where D: Sync,
impl<D> Unpin for StateDiffCollector<D>where D: Unpin,
impl<D> UnwindSafe for StateDiffCollector<D>where D: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.