pub struct MaybeStorageLive<'a> {
    always_live_locals: Cow<'a, DenseBitSet<Local>>,
}Fields§
§always_live_locals: Cow<'a, DenseBitSet<Local>>Implementations§
Source§impl<'a> MaybeStorageLive<'a>
 
impl<'a> MaybeStorageLive<'a>
pub fn new(always_live_locals: Cow<'a, DenseBitSet<Local>>) -> Self
Trait Implementations§
Source§impl<'a, 'tcx> Analysis<'tcx> for MaybeStorageLive<'a>
 
impl<'a, 'tcx> Analysis<'tcx> for MaybeStorageLive<'a>
Source§const NAME: &'static str = "maybe_storage_live"
 
const NAME: &'static str = "maybe_storage_live"
A descriptive name for this analysis. Used only for debugging. Read more
Source§type Domain = DenseBitSet<Local>
 
type Domain = DenseBitSet<Local>
The type that holds the dataflow state at any given point in the program.
Source§fn bottom_value(&self, body: &Body<'tcx>) -> Self::Domain
 
fn bottom_value(&self, body: &Body<'tcx>) -> Self::Domain
Returns the initial value of the dataflow state upon entry to each basic block.
Source§fn initialize_start_block(&self, body: &Body<'tcx>, state: &mut Self::Domain)
 
fn initialize_start_block(&self, body: &Body<'tcx>, state: &mut Self::Domain)
Mutates the initial value of the dataflow state upon entry to the 
START_BLOCK. Read moreSource§fn apply_primary_statement_effect(
    &mut self,
    state: &mut Self::Domain,
    stmt: &Statement<'tcx>,
    _: Location,
)
 
fn apply_primary_statement_effect( &mut self, state: &mut Self::Domain, stmt: &Statement<'tcx>, _: Location, )
Updates the current dataflow state with the effect of evaluating a statement.
Source§type SwitchIntData = !
 
type SwitchIntData = !
Auxiliary data used for analyzing 
SwitchInt terminators, if necessary.Source§fn apply_early_statement_effect(
    &mut self,
    _state: &mut Self::Domain,
    _statement: &Statement<'tcx>,
    _location: Location,
)
 
fn apply_early_statement_effect( &mut self, _state: &mut Self::Domain, _statement: &Statement<'tcx>, _location: Location, )
Updates the current dataflow state with an “early” effect, i.e. one
that occurs immediately before the given statement. Read more
Source§fn apply_early_terminator_effect(
    &mut self,
    _state: &mut Self::Domain,
    _terminator: &Terminator<'tcx>,
    _location: Location,
)
 
fn apply_early_terminator_effect( &mut self, _state: &mut Self::Domain, _terminator: &Terminator<'tcx>, _location: Location, )
Updates the current dataflow state with an effect that occurs immediately before the
given terminator. Read more
Source§fn apply_primary_terminator_effect<'mir>(
    &mut self,
    _state: &mut Self::Domain,
    terminator: &'mir Terminator<'tcx>,
    _location: Location,
) -> TerminatorEdges<'mir, 'tcx>
 
fn apply_primary_terminator_effect<'mir>( &mut self, _state: &mut Self::Domain, terminator: &'mir Terminator<'tcx>, _location: Location, ) -> TerminatorEdges<'mir, 'tcx>
Updates the current dataflow state with the effect of evaluating a terminator. Read more
Source§fn apply_call_return_effect(
    &mut self,
    _state: &mut Self::Domain,
    _block: BasicBlock,
    _return_places: CallReturnPlaces<'_, 'tcx>,
)
 
fn apply_call_return_effect( &mut self, _state: &mut Self::Domain, _block: BasicBlock, _return_places: CallReturnPlaces<'_, 'tcx>, )
Updates the current dataflow state with the effect of a successful return from a 
Call
terminator. Read moreSource§fn get_switch_int_data(
    &mut self,
    _block: BasicBlock,
    _discr: &Operand<'tcx>,
) -> Option<Self::SwitchIntData>
 
fn get_switch_int_data( &mut self, _block: BasicBlock, _discr: &Operand<'tcx>, ) -> Option<Self::SwitchIntData>
Used to update the current dataflow state with the effect of taking a particular branch in
a 
SwitchInt terminator. Read moreSource§fn apply_switch_int_edge_effect(
    &mut self,
    _data: &mut Self::SwitchIntData,
    _state: &mut Self::Domain,
    _value: SwitchTargetValue,
    _targets: &SwitchTargets,
)
 
fn apply_switch_int_edge_effect( &mut self, _data: &mut Self::SwitchIntData, _state: &mut Self::Domain, _value: SwitchTargetValue, _targets: &SwitchTargets, )
See comments on 
get_switch_int_data.Source§fn iterate_to_fixpoint<'mir>(
    self,
    tcx: TyCtxt<'tcx>,
    body: &'mir Body<'tcx>,
    pass_name: Option<&'static str>,
) -> AnalysisAndResults<'tcx, Self>
 
fn iterate_to_fixpoint<'mir>( self, tcx: TyCtxt<'tcx>, body: &'mir Body<'tcx>, pass_name: Option<&'static str>, ) -> AnalysisAndResults<'tcx, Self>
Finds the fixpoint for this dataflow problem. Read more
Auto Trait Implementations§
impl<'a> DynSend for MaybeStorageLive<'a>
impl<'a> DynSync for MaybeStorageLive<'a>
impl<'a> Freeze for MaybeStorageLive<'a>
impl<'a> RefUnwindSafe for MaybeStorageLive<'a>
impl<'a> Send for MaybeStorageLive<'a>
impl<'a> Sync for MaybeStorageLive<'a>
impl<'a> Unpin for MaybeStorageLive<'a>
impl<'a> UnwindSafe for MaybeStorageLive<'a>
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
Source§impl<T, R> CollectAndApply<T, R> for T
 
impl<T, R> CollectAndApply<T, R> for T
Source§impl<T> Filterable for T
 
impl<T> Filterable for T
Source§fn filterable(
    self,
    filter_name: &'static str,
) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
 
fn filterable( self, filter_name: &'static str, ) -> RequestFilterDataProvider<T, fn(DataRequest<'_>) -> bool>
Creates a filterable data provider with the given name for debugging. Read more
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<P> IntoQueryParam<P> for P
 
impl<P> IntoQueryParam<P> for P
fn into_query_param(self) -> P
Source§impl<T> MaybeResult<T> for T
 
impl<T> MaybeResult<T> for T
Source§impl<T> Pointable for T
 
impl<T> Pointable for T
Source§impl<I, T, U> Upcast<I, U> for Twhere
    U: UpcastFrom<I, T>,
 
impl<I, T, U> Upcast<I, U> for Twhere
    U: UpcastFrom<I, T>,
Source§impl<I, T> UpcastFrom<I, T> for T
 
impl<I, T> UpcastFrom<I, T> for T
fn upcast_from(from: T, _tcx: I) -> T
Source§impl<Tcx, T> Value<Tcx> for Twhere
    Tcx: DepContext,
 
impl<Tcx, T> Value<Tcx> for Twhere
    Tcx: DepContext,
default fn from_cycle_error( tcx: Tcx, cycle_error: &CycleError, _guar: ErrorGuaranteed, ) -> T
Source§impl<T> WithSubscriber for T
 
impl<T> WithSubscriber for T
Source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
 
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
Source§fn with_current_subscriber(self) -> WithDispatch<Self>
 
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
    T: 'static,
impl<T> MaybeSendSync for T
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 40 bytes