Trait miri::borrow_tracker::tree_borrows::EvalContextPrivExt
source · trait EvalContextPrivExt<'mir: 'ecx, 'tcx: 'mir, 'ecx>: MiriInterpCxExt<'mir, 'tcx> {
// Provided methods
fn tb_reborrow(
&mut self,
place: &MPlaceTy<'tcx, Provenance>,
ptr_size: Size,
new_perm: NewPermission,
new_tag: BorTag
) -> InterpResult<'tcx, Option<Provenance>> { ... }
fn tb_retag_reference(
&mut self,
val: &ImmTy<'tcx, Provenance>,
new_perm: NewPermission
) -> InterpResult<'tcx, ImmTy<'tcx, Provenance>> { ... }
}
Provided Methods§
sourcefn tb_reborrow(
&mut self,
place: &MPlaceTy<'tcx, Provenance>,
ptr_size: Size,
new_perm: NewPermission,
new_tag: BorTag
) -> InterpResult<'tcx, Option<Provenance>>
fn tb_reborrow( &mut self, place: &MPlaceTy<'tcx, Provenance>, ptr_size: Size, new_perm: NewPermission, new_tag: BorTag ) -> InterpResult<'tcx, Option<Provenance>>
Returns the provenance that should be used henceforth.
sourcefn tb_retag_reference(
&mut self,
val: &ImmTy<'tcx, Provenance>,
new_perm: NewPermission
) -> InterpResult<'tcx, ImmTy<'tcx, Provenance>>
fn tb_retag_reference( &mut self, val: &ImmTy<'tcx, Provenance>, new_perm: NewPermission ) -> InterpResult<'tcx, ImmTy<'tcx, Provenance>>
Retags an individual pointer, returning the retagged version.
Implementors§
impl<'mir: 'ecx, 'tcx: 'mir, 'ecx> EvalContextPrivExt<'mir, 'tcx, 'ecx> for MiriInterpCx<'mir, 'tcx>
Retagging/reborrowing. Policy on which permission to grant to each pointer should be left to the implementation of NewPermission.