pub struct MaybeRequiresStorage {
killable_locals: FxHashMap<Location, SmallVec<[Local; 4]>>,
}Expand description
Dataflow analysis that determines whether each local requires storage at a given location; i.e. whether its storage can go away without being observed.
Fields§
§killable_locals: FxHashMap<Location, SmallVec<[Local; 4]>>Used to kill locals that are fully moved and have not been borrowed.
Implementations§
Source§impl MaybeRequiresStorage
impl MaybeRequiresStorage
pub fn new<'tcx>( body: &Body<'tcx>, borrowed_locals: &Results<'tcx, MaybeBorrowedLocals>, ) -> Self
Source§impl MaybeRequiresStorage
impl MaybeRequiresStorage
Sourcefn check_for_move(
&self,
state: &mut <Self as Analysis<'_>>::Domain,
loc: Location,
)
fn check_for_move( &self, state: &mut <Self as Analysis<'_>>::Domain, loc: Location, )
Kill locals that are fully moved and have not been borrowed.
Trait Implementations§
Source§impl<'tcx> Analysis<'tcx> for MaybeRequiresStorage
impl<'tcx> Analysis<'tcx> for MaybeRequiresStorage
Source§const NAME: &'static str = "requires_storage"
const NAME: &'static str = "requires_storage"
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_early_statement_effect(
&self,
state: &mut Self::Domain,
stmt: &Statement<'tcx>,
_loc: Location,
)
fn apply_early_statement_effect( &self, state: &mut Self::Domain, stmt: &Statement<'tcx>, _loc: 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_primary_statement_effect(
&self,
state: &mut Self::Domain,
stmt: &Statement<'tcx>,
loc: Location,
)
fn apply_primary_statement_effect( &self, state: &mut Self::Domain, stmt: &Statement<'tcx>, loc: Location, )
Updates the current dataflow state with the effect of evaluating a statement.
Source§fn apply_early_terminator_effect(
&self,
state: &mut Self::Domain,
terminator: &Terminator<'tcx>,
_loc: Location,
)
fn apply_early_terminator_effect( &self, state: &mut Self::Domain, terminator: &Terminator<'tcx>, _loc: Location, )
Updates the current dataflow state with an effect that occurs immediately before the
given terminator. Read more
Source§fn apply_primary_terminator_effect(
&self,
state: &mut Self::Domain,
terminator: &Terminator<'tcx>,
loc: Location,
)
fn apply_primary_terminator_effect( &self, state: &mut Self::Domain, terminator: &Terminator<'tcx>, loc: Location, )
Updates the current dataflow state with the effect of evaluating a terminator. Read more
Source§fn apply_call_return_effect(
&self,
state: &mut Self::Domain,
_block: BasicBlock,
return_places: CallReturnPlaces<'_, 'tcx>,
)
fn apply_call_return_effect( &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§type SwitchIntData = !
type SwitchIntData = !
Auxiliary data used for analyzing
SwitchInt terminators, if necessary.Source§fn apply_effect<'mir>(
&self,
state: &mut Self::Domain,
block: BasicBlock,
block_data: &'mir BasicBlockData<'tcx>,
idx: EffectIndex,
)
fn apply_effect<'mir>( &self, state: &mut Self::Domain, block: BasicBlock, block_data: &'mir BasicBlockData<'tcx>, idx: EffectIndex, )
Given an
EffectIndex, calls the appropriate apply_* method in the
{early,primary} x {statement,terminator} space. Read moreSource§fn get_terminator_edges<'mir>(
&self,
_state: &Self::Domain,
terminator: &'mir Terminator<'tcx>,
_location: Location,
) -> TerminatorEdges<'mir, 'tcx>
fn get_terminator_edges<'mir>( &self, _state: &Self::Domain, terminator: &'mir Terminator<'tcx>, _location: Location, ) -> TerminatorEdges<'mir, 'tcx>
Gets the terminator edges. Used by forward analyses only. Called before
apply_primary_terminator_effect is applied; this might seem strange but in practice
MaybeInitializedPlaces needs that ordering and other analyses work with either ordering.Source§fn get_switch_int_data(
&self,
_block: BasicBlock,
_targets: &SwitchTargets,
_discr: &Operand<'tcx>,
) -> Option<Self::SwitchIntData>
fn get_switch_int_data( &self, _block: BasicBlock, _targets: &SwitchTargets, _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(
&self,
_state: &mut Self::Domain,
_data: &Self::SwitchIntData,
_target_idx: SwitchTargetIndex,
)
fn apply_switch_int_edge_effect( &self, _state: &mut Self::Domain, _data: &Self::SwitchIntData, _target_idx: SwitchTargetIndex, )
See comments on
get_switch_int_data.Auto Trait Implementations§
impl DynSend for MaybeRequiresStorage
impl DynSync for MaybeRequiresStorage
impl Freeze for MaybeRequiresStorage
impl RefUnwindSafe for MaybeRequiresStorage
impl Send for MaybeRequiresStorage
impl Sync for MaybeRequiresStorage
impl Unpin for MaybeRequiresStorage
impl UnsafeUnpin for MaybeRequiresStorage
impl UnwindSafe for MaybeRequiresStorage
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
impl<T> ErasedDestructor for Twhere
T: 'static,
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<K> IntoQueryKey<K> for K
impl<K> IntoQueryKey<K> for K
Source§fn into_query_key(self) -> K
fn into_query_key(self) -> K
Argument conversion from
Self to K.
This should always be a very cheap conversion, e.g. LocalDefId::to_def_id.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<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> ⓘ
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: 32 bytes