Skip to content

Commit 3345077

Browse files
committed
interpret: add mplace_to_ref helper method
1 parent 34ccd04 commit 3345077

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

compiler/rustc_const_eval/src/interpret/place.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ impl<Prov: Provenance> MemPlace<Prov> {
157157
}
158158

159159
/// Turn a mplace into a (thin or wide) pointer, as a reference, pointing to the same space.
160-
/// This is the inverse of `ref_to_mplace`.
161160
#[inline(always)]
162161
pub fn to_ref(self, cx: &impl HasDataLayout) -> Immediate<Prov> {
163162
match self.meta {
@@ -415,7 +414,7 @@ where
415414
}
416415

417416
/// Take a value, which represents a (thin or wide) reference, and make it a place.
418-
/// Alignment is just based on the type. This is the inverse of `MemPlace::to_ref()`.
417+
/// Alignment is just based on the type. This is the inverse of `mplace_to_ref()`.
419418
///
420419
/// Only call this if you are sure the place is "valid" (aligned and inbounds), or do not
421420
/// want to ever use the place for memory access!
@@ -438,6 +437,18 @@ where
438437
Ok(MPlaceTy::from_aligned_ptr_with_meta(ptr.to_pointer(self)?, layout, meta))
439438
}
440439

440+
/// Turn a mplace into a (thin or wide) mutable raw pointer, pointing to the same space.
441+
/// `align` information is lost!
442+
/// This is the inverse of `ref_to_mplace`.
443+
pub fn mplace_to_ref(
444+
&self,
445+
mplace: &MPlaceTy<'tcx, M::Provenance>,
446+
) -> InterpResult<'tcx, ImmTy<'tcx, M::Provenance>> {
447+
let imm = mplace.to_ref(self);
448+
let layout = self.layout_of(Ty::new_mut_ptr(self.tcx.tcx, mplace.layout.ty))?;
449+
Ok(ImmTy::from_immediate(imm, layout))
450+
}
451+
441452
/// Take an operand, representing a pointer, and dereference it to a place.
442453
/// Corresponds to the `*` operator in Rust.
443454
#[instrument(skip(self), level = "debug")]

compiler/rustc_const_eval/src/interpret/terminator.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -852,10 +852,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
852852
let instance = ty::Instance::resolve_drop_in_place(*self.tcx, place.layout.ty);
853853
let fn_abi = self.fn_abi_of_instance(instance, ty::List::empty())?;
854854

855-
let arg = ImmTy::from_immediate(
856-
place.to_ref(self),
857-
self.layout_of(Ty::new_mut_ptr(self.tcx.tcx, place.layout.ty))?,
858-
);
855+
let arg = self.mplace_to_ref(&place)?;
859856
let ret = MPlaceTy::fake_alloc_zst(self.layout_of(self.tcx.types.unit)?);
860857

861858
self.eval_fn_call(

src/tools/miri/src/borrow_tracker/stacked_borrows/mod.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use rustc_data_structures::fx::FxHashSet;
1515
use rustc_middle::mir::{Mutability, RetagKind};
1616
use rustc_middle::ty::{
1717
self,
18-
layout::{HasParamEnv, LayoutOf},
18+
layout::HasParamEnv,
1919
Ty,
2020
};
2121
use rustc_target::abi::{Abi, Align, Size};
@@ -993,8 +993,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
993993

994994
// We have to turn the place into a pointer to use the usual retagging logic.
995995
// (The pointer type does not matter, so we use a raw pointer.)
996-
let ptr_layout = this.layout_of(Ty::new_mut_ptr(this.tcx.tcx, place.layout.ty))?;
997-
let ptr = ImmTy::from_immediate(place.to_ref(this), ptr_layout);
996+
let ptr = this.mplace_to_ref(place)?;
998997
// Reborrow it. With protection! That is the entire point.
999998
let new_perm = NewPermission::Uniform {
1000999
perm: Permission::Unique,

src/tools/miri/src/borrow_tracker/tree_borrows/mod.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use rustc_middle::{
77
mir::{Mutability, RetagKind},
88
ty::{
99
self,
10-
layout::{HasParamEnv, LayoutOf},
10+
layout::HasParamEnv,
1111
Ty,
1212
},
1313
};
@@ -488,8 +488,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
488488

489489
// We have to turn the place into a pointer to use the usual retagging logic.
490490
// (The pointer type does not matter, so we use a raw pointer.)
491-
let ptr_layout = this.layout_of(Ty::new_mut_ptr(this.tcx.tcx, place.layout.ty))?;
492-
let ptr = ImmTy::from_immediate(place.to_ref(this), ptr_layout);
491+
let ptr = this.mplace_to_ref(place)?;
493492
// Reborrow it. With protection! That is the entire point.
494493
let new_perm = NewPermission {
495494
initial_state: Permission::new_active(),

0 commit comments

Comments
 (0)