Struct rustc_mir_transform::elaborate_drops::ElaborateDropsCtxt [−][src]
struct ElaborateDropsCtxt<'a, 'tcx> {
tcx: TyCtxt<'tcx>,
body: &'a Body<'tcx>,
env: &'a MoveDataParamEnv<'tcx>,
init_data: InitializationData<'a, 'tcx>,
drop_flags: FxHashMap<MovePathIndex, Local>,
patch: MirPatch<'tcx>,
}
Fields
tcx: TyCtxt<'tcx>
body: &'a Body<'tcx>
env: &'a MoveDataParamEnv<'tcx>
init_data: InitializationData<'a, 'tcx>
drop_flags: FxHashMap<MovePathIndex, Local>
patch: MirPatch<'tcx>
Implementations
fn elaborate_replace(
&mut self,
loc: Location,
place: Place<'tcx>,
value: &Operand<'tcx>,
target: BasicBlock,
unwind: Option<BasicBlock>
)
fn elaborate_replace(
&mut self,
loc: Location,
place: Place<'tcx>,
value: &Operand<'tcx>,
target: BasicBlock,
unwind: Option<BasicBlock>
)
Elaborate a MIR replace
terminator. This instruction
is not directly handled by codegen, and therefore
must be desugared.
The desugaring drops the location if needed, and then writes the value (including setting the drop flag) over it in both arms.
The replace
terminator can also be called on places that
are not tracked by elaboration (for example,
replace x[i] <- tmp0
). The borrow checker requires that
these locations are initialized before the assignment,
so we just generate an unconditional drop.
Auto Trait Implementations
impl<'a, 'tcx> !RefUnwindSafe for ElaborateDropsCtxt<'a, 'tcx>
impl<'a, 'tcx> !Send for ElaborateDropsCtxt<'a, 'tcx>
impl<'a, 'tcx> !Sync for ElaborateDropsCtxt<'a, 'tcx>
impl<'a, 'tcx> Unpin for ElaborateDropsCtxt<'a, 'tcx> where
'tcx: 'a,
impl<'a, 'tcx> !UnwindSafe for ElaborateDropsCtxt<'a, 'tcx>
Blanket Implementations
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: 416 bytes