]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/interpret/place.rs
79411d872a959ab4bd73da7dbca37a9b631d9067
[rust.git] / src / librustc_mir / interpret / place.rs
1 //! Computations on places -- field projections, going from mir::Place, and writing
2 //! into a place.
3 //! All high-level functions to write to memory work on places as destinations.
4
5 use std::convert::TryFrom;
6 use std::hash::Hash;
7
8 use rustc::mir;
9 use rustc::mir::interpret::truncate;
10 use rustc::ty::layout::{
11     self, Align, HasDataLayout, LayoutOf, PrimitiveExt, Size, TyLayout, VariantIdx,
12 };
13 use rustc::ty::TypeFoldable;
14 use rustc::ty::{self, Ty};
15 use rustc_macros::HashStable;
16
17 use super::{
18     AllocId, AllocMap, Allocation, AllocationExtra, ImmTy, Immediate, InterpCx, InterpResult,
19     LocalValue, Machine, MemoryKind, OpTy, Operand, Pointer, PointerArithmetic, RawConst, Scalar,
20     ScalarMaybeUndef,
21 };
22
23 #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, HashStable)]
24 /// Information required for the sound usage of a `MemPlace`.
25 pub enum MemPlaceMeta<Tag = (), Id = AllocId> {
26     /// The unsized payload (e.g. length for slices or vtable pointer for trait objects).
27     Meta(Scalar<Tag, Id>),
28     /// `Sized` types or unsized `extern type`
29     None,
30     /// The address of this place may not be taken. This protects the `MemPlace` from coming from
31     /// a ZST Operand with a backing allocation and being converted to an integer address. This
32     /// should be impossible, because you can't take the address of an operand, but this is a second
33     /// protection layer ensuring that we don't mess up.
34     Poison,
35 }
36
37 impl<Tag, Id> MemPlaceMeta<Tag, Id> {
38     pub fn unwrap_meta(self) -> Scalar<Tag, Id> {
39         match self {
40             Self::Meta(s) => s,
41             Self::None | Self::Poison => {
42                 bug!("expected wide pointer extra data (e.g. slice length or trait object vtable)")
43             }
44         }
45     }
46     fn has_meta(self) -> bool {
47         match self {
48             Self::Meta(_) => true,
49             Self::None | Self::Poison => false,
50         }
51     }
52 }
53
54 impl<Tag> MemPlaceMeta<Tag> {
55     pub fn erase_tag(self) -> MemPlaceMeta<()> {
56         match self {
57             Self::Meta(s) => MemPlaceMeta::Meta(s.erase_tag()),
58             Self::None => MemPlaceMeta::None,
59             Self::Poison => MemPlaceMeta::Poison,
60         }
61     }
62 }
63
64 #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, HashStable)]
65 pub struct MemPlace<Tag = (), Id = AllocId> {
66     /// A place may have an integral pointer for ZSTs, and since it might
67     /// be turned back into a reference before ever being dereferenced.
68     /// However, it may never be undef.
69     pub ptr: Scalar<Tag, Id>,
70     pub align: Align,
71     /// Metadata for unsized places. Interpretation is up to the type.
72     /// Must not be present for sized types, but can be missing for unsized types
73     /// (e.g., `extern type`).
74     pub meta: MemPlaceMeta<Tag, Id>,
75 }
76
77 #[derive(Copy, Clone, Debug, Hash, PartialEq, Eq, HashStable)]
78 pub enum Place<Tag = (), Id = AllocId> {
79     /// A place referring to a value allocated in the `Memory` system.
80     Ptr(MemPlace<Tag, Id>),
81
82     /// To support alloc-free locals, we are able to write directly to a local.
83     /// (Without that optimization, we'd just always be a `MemPlace`.)
84     Local { frame: usize, local: mir::Local },
85 }
86
87 #[derive(Copy, Clone, Debug)]
88 pub struct PlaceTy<'tcx, Tag = ()> {
89     place: Place<Tag>, // Keep this private; it helps enforce invariants.
90     pub layout: TyLayout<'tcx>,
91 }
92
93 impl<'tcx, Tag> ::std::ops::Deref for PlaceTy<'tcx, Tag> {
94     type Target = Place<Tag>;
95     #[inline(always)]
96     fn deref(&self) -> &Place<Tag> {
97         &self.place
98     }
99 }
100
101 /// A MemPlace with its layout. Constructing it is only possible in this module.
102 #[derive(Copy, Clone, Debug, Hash, Eq, PartialEq)]
103 pub struct MPlaceTy<'tcx, Tag = ()> {
104     mplace: MemPlace<Tag>,
105     pub layout: TyLayout<'tcx>,
106 }
107
108 impl<'tcx, Tag> ::std::ops::Deref for MPlaceTy<'tcx, Tag> {
109     type Target = MemPlace<Tag>;
110     #[inline(always)]
111     fn deref(&self) -> &MemPlace<Tag> {
112         &self.mplace
113     }
114 }
115
116 impl<'tcx, Tag> From<MPlaceTy<'tcx, Tag>> for PlaceTy<'tcx, Tag> {
117     #[inline(always)]
118     fn from(mplace: MPlaceTy<'tcx, Tag>) -> Self {
119         PlaceTy { place: Place::Ptr(mplace.mplace), layout: mplace.layout }
120     }
121 }
122
123 impl<Tag> MemPlace<Tag> {
124     /// Replace ptr tag, maintain vtable tag (if any)
125     #[inline]
126     pub fn replace_tag(self, new_tag: Tag) -> Self {
127         MemPlace { ptr: self.ptr.erase_tag().with_tag(new_tag), align: self.align, meta: self.meta }
128     }
129
130     #[inline]
131     pub fn erase_tag(self) -> MemPlace {
132         MemPlace { ptr: self.ptr.erase_tag(), align: self.align, meta: self.meta.erase_tag() }
133     }
134
135     #[inline(always)]
136     fn from_scalar_ptr(ptr: Scalar<Tag>, align: Align) -> Self {
137         MemPlace { ptr, align, meta: MemPlaceMeta::None }
138     }
139
140     /// Produces a Place that will error if attempted to be read from or written to
141     #[inline(always)]
142     fn null(cx: &impl HasDataLayout) -> Self {
143         Self::from_scalar_ptr(Scalar::ptr_null(cx), Align::from_bytes(1).unwrap())
144     }
145
146     #[inline(always)]
147     pub fn from_ptr(ptr: Pointer<Tag>, align: Align) -> Self {
148         Self::from_scalar_ptr(ptr.into(), align)
149     }
150
151     /// Turn a mplace into a (thin or wide) pointer, as a reference, pointing to the same space.
152     /// This is the inverse of `ref_to_mplace`.
153     #[inline(always)]
154     pub fn to_ref(self) -> Immediate<Tag> {
155         match self.meta {
156             MemPlaceMeta::None => Immediate::Scalar(self.ptr.into()),
157             MemPlaceMeta::Meta(meta) => Immediate::ScalarPair(self.ptr.into(), meta.into()),
158             MemPlaceMeta::Poison => bug!(
159                 "MPlaceTy::dangling may never be used to produce a \
160                 place that will have the address of its pointee taken"
161             ),
162         }
163     }
164
165     pub fn offset(
166         self,
167         offset: Size,
168         meta: MemPlaceMeta<Tag>,
169         cx: &impl HasDataLayout,
170     ) -> InterpResult<'tcx, Self> {
171         Ok(MemPlace {
172             ptr: self.ptr.ptr_offset(offset, cx)?,
173             align: self.align.restrict_for_offset(offset),
174             meta,
175         })
176     }
177 }
178
179 impl<'tcx, Tag> MPlaceTy<'tcx, Tag> {
180     /// Produces a MemPlace that works for ZST but nothing else
181     #[inline]
182     pub fn dangling(layout: TyLayout<'tcx>, cx: &impl HasDataLayout) -> Self {
183         let align = layout.align.abi;
184         let ptr = Scalar::from_uint(align.bytes(), cx.pointer_size());
185         // `Poison` this to make sure that the pointer value `ptr` is never observable by the program.
186         MPlaceTy { mplace: MemPlace { ptr, align, meta: MemPlaceMeta::Poison }, layout }
187     }
188
189     /// Replace ptr tag, maintain vtable tag (if any)
190     #[inline]
191     pub fn replace_tag(self, new_tag: Tag) -> Self {
192         MPlaceTy { mplace: self.mplace.replace_tag(new_tag), layout: self.layout }
193     }
194
195     #[inline]
196     pub fn offset(
197         self,
198         offset: Size,
199         meta: MemPlaceMeta<Tag>,
200         layout: TyLayout<'tcx>,
201         cx: &impl HasDataLayout,
202     ) -> InterpResult<'tcx, Self> {
203         Ok(MPlaceTy { mplace: self.mplace.offset(offset, meta, cx)?, layout })
204     }
205
206     #[inline]
207     fn from_aligned_ptr(ptr: Pointer<Tag>, layout: TyLayout<'tcx>) -> Self {
208         MPlaceTy { mplace: MemPlace::from_ptr(ptr, layout.align.abi), layout }
209     }
210
211     #[inline]
212     pub(super) fn len(self, cx: &impl HasDataLayout) -> InterpResult<'tcx, u64> {
213         if self.layout.is_unsized() {
214             // We need to consult `meta` metadata
215             match self.layout.ty.kind {
216                 ty::Slice(..) | ty::Str => {
217                     return self.mplace.meta.unwrap_meta().to_machine_usize(cx);
218                 }
219                 _ => bug!("len not supported on unsized type {:?}", self.layout.ty),
220             }
221         } else {
222             // Go through the layout.  There are lots of types that support a length,
223             // e.g., SIMD types.
224             match self.layout.fields {
225                 layout::FieldPlacement::Array { count, .. } => Ok(count),
226                 _ => bug!("len not supported on sized type {:?}", self.layout.ty),
227             }
228         }
229     }
230
231     #[inline]
232     pub(super) fn vtable(self) -> Scalar<Tag> {
233         match self.layout.ty.kind {
234             ty::Dynamic(..) => self.mplace.meta.unwrap_meta(),
235             _ => bug!("vtable not supported on type {:?}", self.layout.ty),
236         }
237     }
238 }
239
240 // These are defined here because they produce a place.
241 impl<'tcx, Tag: ::std::fmt::Debug + Copy> OpTy<'tcx, Tag> {
242     #[inline(always)]
243     /// Note: do not call `as_ref` on the resulting place. This function should only be used to
244     /// read from the resulting mplace, not to get its address back.
245     pub fn try_as_mplace(
246         self,
247         cx: &impl HasDataLayout,
248     ) -> Result<MPlaceTy<'tcx, Tag>, ImmTy<'tcx, Tag>> {
249         match *self {
250             Operand::Indirect(mplace) => Ok(MPlaceTy { mplace, layout: self.layout }),
251             Operand::Immediate(_) if self.layout.is_zst() => {
252                 Ok(MPlaceTy::dangling(self.layout, cx))
253             }
254             Operand::Immediate(imm) => Err(ImmTy { imm, layout: self.layout }),
255         }
256     }
257
258     #[inline(always)]
259     /// Note: do not call `as_ref` on the resulting place. This function should only be used to
260     /// read from the resulting mplace, not to get its address back.
261     pub fn assert_mem_place(self, cx: &impl HasDataLayout) -> MPlaceTy<'tcx, Tag> {
262         self.try_as_mplace(cx).unwrap()
263     }
264 }
265
266 impl<Tag: ::std::fmt::Debug> Place<Tag> {
267     /// Produces a Place that will error if attempted to be read from or written to
268     #[inline(always)]
269     fn null(cx: &impl HasDataLayout) -> Self {
270         Place::Ptr(MemPlace::null(cx))
271     }
272
273     #[inline]
274     pub fn assert_mem_place(self) -> MemPlace<Tag> {
275         match self {
276             Place::Ptr(mplace) => mplace,
277             _ => bug!("assert_mem_place: expected Place::Ptr, got {:?}", self),
278         }
279     }
280 }
281
282 impl<'tcx, Tag: ::std::fmt::Debug> PlaceTy<'tcx, Tag> {
283     #[inline]
284     pub fn assert_mem_place(self) -> MPlaceTy<'tcx, Tag> {
285         MPlaceTy { mplace: self.place.assert_mem_place(), layout: self.layout }
286     }
287 }
288
289 // separating the pointer tag for `impl Trait`, see https://github.com/rust-lang/rust/issues/54385
290 impl<'mir, 'tcx, Tag, M> InterpCx<'mir, 'tcx, M>
291 where
292     // FIXME: Working around https://github.com/rust-lang/rust/issues/54385
293     Tag: ::std::fmt::Debug + Copy + Eq + Hash + 'static,
294     M: Machine<'mir, 'tcx, PointerTag = Tag>,
295     // FIXME: Working around https://github.com/rust-lang/rust/issues/24159
296     M::MemoryMap: AllocMap<AllocId, (MemoryKind<M::MemoryKinds>, Allocation<Tag, M::AllocExtra>)>,
297     M::AllocExtra: AllocationExtra<Tag>,
298 {
299     /// Take a value, which represents a (thin or wide) reference, and make it a place.
300     /// Alignment is just based on the type.  This is the inverse of `MemPlace::to_ref()`.
301     ///
302     /// Only call this if you are sure the place is "valid" (aligned and inbounds), or do not
303     /// want to ever use the place for memory access!
304     /// Generally prefer `deref_operand`.
305     pub fn ref_to_mplace(
306         &self,
307         val: ImmTy<'tcx, M::PointerTag>,
308     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
309         let pointee_type =
310             val.layout.ty.builtin_deref(true).expect("`ref_to_mplace` called on non-ptr type").ty;
311         let layout = self.layout_of(pointee_type)?;
312         let (ptr, meta) = match *val {
313             Immediate::Scalar(ptr) => (ptr.not_undef()?, MemPlaceMeta::None),
314             Immediate::ScalarPair(ptr, meta) => {
315                 (ptr.not_undef()?, MemPlaceMeta::Meta(meta.not_undef()?))
316             }
317         };
318
319         let mplace = MemPlace {
320             ptr,
321             // We could use the run-time alignment here. For now, we do not, because
322             // the point of tracking the alignment here is to make sure that the *static*
323             // alignment information emitted with the loads is correct. The run-time
324             // alignment can only be more restrictive.
325             align: layout.align.abi,
326             meta,
327         };
328         Ok(MPlaceTy { mplace, layout })
329     }
330
331     /// Take an operand, representing a pointer, and dereference it to a place -- that
332     /// will always be a MemPlace.  Lives in `place.rs` because it creates a place.
333     pub fn deref_operand(
334         &self,
335         src: OpTy<'tcx, M::PointerTag>,
336     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
337         let val = self.read_immediate(src)?;
338         trace!("deref to {} on {:?}", val.layout.ty, *val);
339         let place = self.ref_to_mplace(val)?;
340         self.mplace_access_checked(place)
341     }
342
343     /// Check if the given place is good for memory access with the given
344     /// size, falling back to the layout's size if `None` (in the latter case,
345     /// this must be a statically sized type).
346     ///
347     /// On success, returns `None` for zero-sized accesses (where nothing else is
348     /// left to do) and a `Pointer` to use for the actual access otherwise.
349     #[inline]
350     pub(super) fn check_mplace_access(
351         &self,
352         place: MPlaceTy<'tcx, M::PointerTag>,
353         size: Option<Size>,
354     ) -> InterpResult<'tcx, Option<Pointer<M::PointerTag>>> {
355         let size = size.unwrap_or_else(|| {
356             assert!(!place.layout.is_unsized());
357             assert!(!place.meta.has_meta());
358             place.layout.size
359         });
360         self.memory.check_ptr_access(place.ptr, size, place.align)
361     }
362
363     /// Return the "access-checked" version of this `MPlace`, where for non-ZST
364     /// this is definitely a `Pointer`.
365     pub fn mplace_access_checked(
366         &self,
367         mut place: MPlaceTy<'tcx, M::PointerTag>,
368     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
369         let (size, align) = self
370             .size_and_align_of_mplace(place)?
371             .unwrap_or((place.layout.size, place.layout.align.abi));
372         assert!(place.mplace.align <= align, "dynamic alignment less strict than static one?");
373         place.mplace.align = align; // maximally strict checking
374         // When dereferencing a pointer, it must be non-NULL, aligned, and live.
375         if let Some(ptr) = self.check_mplace_access(place, Some(size))? {
376             place.mplace.ptr = ptr.into();
377         }
378         Ok(place)
379     }
380
381     /// Force `place.ptr` to a `Pointer`.
382     /// Can be helpful to avoid lots of `force_ptr` calls later, if this place is used a lot.
383     pub(super) fn force_mplace_ptr(
384         &self,
385         mut place: MPlaceTy<'tcx, M::PointerTag>,
386     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
387         place.mplace.ptr = self.force_ptr(place.mplace.ptr)?.into();
388         Ok(place)
389     }
390
391     /// Offset a pointer to project to a field. Unlike `place_field`, this is always
392     /// possible without allocating, so it can take `&self`. Also return the field's layout.
393     /// This supports both struct and array fields.
394     #[inline(always)]
395     pub fn mplace_field(
396         &self,
397         base: MPlaceTy<'tcx, M::PointerTag>,
398         field: u64,
399     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
400         // Not using the layout method because we want to compute on u64
401         let offset = match base.layout.fields {
402             layout::FieldPlacement::Arbitrary { ref offsets, .. } => {
403                 offsets[usize::try_from(field).unwrap()]
404             }
405             layout::FieldPlacement::Array { stride, .. } => {
406                 let len = base.len(self)?;
407                 if field >= len {
408                     // This can only be reached in ConstProp and non-rustc-MIR.
409                     throw_ub!(BoundsCheckFailed { len, index: field });
410                 }
411                 stride * field
412             }
413             layout::FieldPlacement::Union(count) => {
414                 assert!(
415                     field < count as u64,
416                     "Tried to access field {} of union {:#?} with {} fields",
417                     field,
418                     base.layout,
419                     count
420                 );
421                 // Offset is always 0
422                 Size::from_bytes(0)
423             }
424         };
425         // the only way conversion can fail if is this is an array (otherwise we already panicked
426         // above). In that case, all fields are equal.
427         let field_layout = base.layout.field(self, usize::try_from(field).unwrap_or(0))?;
428
429         // Offset may need adjustment for unsized fields.
430         let (meta, offset) = if field_layout.is_unsized() {
431             // Re-use parent metadata to determine dynamic field layout.
432             // With custom DSTS, this *will* execute user-defined code, but the same
433             // happens at run-time so that's okay.
434             let align = match self.size_and_align_of(base.meta, field_layout)? {
435                 Some((_, align)) => align,
436                 None if offset == Size::ZERO =>
437                 // An extern type at offset 0, we fall back to its static alignment.
438                 // FIXME: Once we have made decisions for how to handle size and alignment
439                 // of `extern type`, this should be adapted.  It is just a temporary hack
440                 // to get some code to work that probably ought to work.
441                 {
442                     field_layout.align.abi
443                 }
444                 None => bug!("Cannot compute offset for extern type field at non-0 offset"),
445             };
446             (base.meta, offset.align_to(align))
447         } else {
448             // base.meta could be present; we might be accessing a sized field of an unsized
449             // struct.
450             (MemPlaceMeta::None, offset)
451         };
452
453         // We do not look at `base.layout.align` nor `field_layout.align`, unlike
454         // codegen -- mostly to see if we can get away with that
455         base.offset(offset, meta, field_layout, self)
456     }
457
458     // Iterates over all fields of an array. Much more efficient than doing the
459     // same by repeatedly calling `mplace_array`.
460     pub(super) fn mplace_array_fields(
461         &self,
462         base: MPlaceTy<'tcx, Tag>,
463     ) -> InterpResult<'tcx, impl Iterator<Item = InterpResult<'tcx, MPlaceTy<'tcx, Tag>>> + 'tcx>
464     {
465         let len = base.len(self)?; // also asserts that we have a type where this makes sense
466         let stride = match base.layout.fields {
467             layout::FieldPlacement::Array { stride, .. } => stride,
468             _ => bug!("mplace_array_fields: expected an array layout"),
469         };
470         let layout = base.layout.field(self, 0)?;
471         let dl = &self.tcx.data_layout;
472         Ok((0..len).map(move |i| base.offset(i * stride, MemPlaceMeta::None, layout, dl)))
473     }
474
475     fn mplace_subslice(
476         &self,
477         base: MPlaceTy<'tcx, M::PointerTag>,
478         from: u64,
479         to: u64,
480         from_end: bool,
481     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
482         let len = base.len(self)?; // also asserts that we have a type where this makes sense
483         let actual_to = if from_end {
484             if from + to > len {
485                 // This can only be reached in ConstProp and non-rustc-MIR.
486                 throw_ub!(BoundsCheckFailed { len: len as u64, index: from as u64 + to as u64 });
487             }
488             len - to
489         } else {
490             to
491         };
492
493         // Not using layout method because that works with usize, and does not work with slices
494         // (that have count 0 in their layout).
495         let from_offset = match base.layout.fields {
496             layout::FieldPlacement::Array { stride, .. } => stride * from,
497             _ => bug!("Unexpected layout of index access: {:#?}", base.layout),
498         };
499
500         // Compute meta and new layout
501         let inner_len = actual_to - from;
502         let (meta, ty) = match base.layout.ty.kind {
503             // It is not nice to match on the type, but that seems to be the only way to
504             // implement this.
505             ty::Array(inner, _) => (MemPlaceMeta::None, self.tcx.mk_array(inner, inner_len)),
506             ty::Slice(..) => {
507                 let len = Scalar::from_uint(inner_len, self.pointer_size());
508                 (MemPlaceMeta::Meta(len), base.layout.ty)
509             }
510             _ => bug!("cannot subslice non-array type: `{:?}`", base.layout.ty),
511         };
512         let layout = self.layout_of(ty)?;
513         base.offset(from_offset, meta, layout, self)
514     }
515
516     pub(super) fn mplace_downcast(
517         &self,
518         base: MPlaceTy<'tcx, M::PointerTag>,
519         variant: VariantIdx,
520     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
521         // Downcasts only change the layout
522         assert!(!base.meta.has_meta());
523         Ok(MPlaceTy { layout: base.layout.for_variant(self, variant), ..base })
524     }
525
526     /// Project into an mplace
527     pub(super) fn mplace_projection(
528         &self,
529         base: MPlaceTy<'tcx, M::PointerTag>,
530         proj_elem: &mir::PlaceElem<'tcx>,
531     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
532         use rustc::mir::ProjectionElem::*;
533         Ok(match *proj_elem {
534             Field(field, _) => self.mplace_field(base, field.index() as u64)?,
535             Downcast(_, variant) => self.mplace_downcast(base, variant)?,
536             Deref => self.deref_operand(base.into())?,
537
538             Index(local) => {
539                 let layout = self.layout_of(self.tcx.types.usize)?;
540                 let n = self.access_local(self.frame(), local, Some(layout))?;
541                 let n = self.read_scalar(n)?;
542                 let n = self.force_bits(n.not_undef()?, self.tcx.data_layout.pointer_size)?;
543                 self.mplace_field(base, u64::try_from(n).unwrap())?
544             }
545
546             ConstantIndex { offset, min_length, from_end } => {
547                 let n = base.len(self)?;
548                 if n < min_length as u64 {
549                     // This can only be reached in ConstProp and non-rustc-MIR.
550                     throw_ub!(BoundsCheckFailed { len: min_length as u64, index: n as u64 });
551                 }
552
553                 let index = if from_end {
554                     assert!(0 < offset && offset - 1 < min_length);
555                     n - u64::from(offset)
556                 } else {
557                     assert!(offset < min_length);
558                     u64::from(offset)
559                 };
560
561                 self.mplace_field(base, index)?
562             }
563
564             Subslice { from, to, from_end } => {
565                 self.mplace_subslice(base, u64::from(from), u64::from(to), from_end)?
566             }
567         })
568     }
569
570     /// Gets the place of a field inside the place, and also the field's type.
571     /// Just a convenience function, but used quite a bit.
572     /// This is the only projection that might have a side-effect: We cannot project
573     /// into the field of a local `ScalarPair`, we have to first allocate it.
574     pub fn place_field(
575         &mut self,
576         base: PlaceTy<'tcx, M::PointerTag>,
577         field: u64,
578     ) -> InterpResult<'tcx, PlaceTy<'tcx, M::PointerTag>> {
579         // FIXME: We could try to be smarter and avoid allocation for fields that span the
580         // entire place.
581         let mplace = self.force_allocation(base)?;
582         Ok(self.mplace_field(mplace, field)?.into())
583     }
584
585     pub fn place_downcast(
586         &self,
587         base: PlaceTy<'tcx, M::PointerTag>,
588         variant: VariantIdx,
589     ) -> InterpResult<'tcx, PlaceTy<'tcx, M::PointerTag>> {
590         // Downcast just changes the layout
591         Ok(match base.place {
592             Place::Ptr(mplace) => {
593                 self.mplace_downcast(MPlaceTy { mplace, layout: base.layout }, variant)?.into()
594             }
595             Place::Local { .. } => {
596                 let layout = base.layout.for_variant(self, variant);
597                 PlaceTy { layout, ..base }
598             }
599         })
600     }
601
602     /// Projects into a place.
603     pub fn place_projection(
604         &mut self,
605         base: PlaceTy<'tcx, M::PointerTag>,
606         proj_elem: &mir::ProjectionElem<mir::Local, Ty<'tcx>>,
607     ) -> InterpResult<'tcx, PlaceTy<'tcx, M::PointerTag>> {
608         use rustc::mir::ProjectionElem::*;
609         Ok(match *proj_elem {
610             Field(field, _) => self.place_field(base, field.index() as u64)?,
611             Downcast(_, variant) => self.place_downcast(base, variant)?,
612             Deref => self.deref_operand(self.place_to_op(base)?)?.into(),
613             // For the other variants, we have to force an allocation.
614             // This matches `operand_projection`.
615             Subslice { .. } | ConstantIndex { .. } | Index(_) => {
616                 let mplace = self.force_allocation(base)?;
617                 self.mplace_projection(mplace, proj_elem)?.into()
618             }
619         })
620     }
621
622     /// Evaluate statics and promoteds to an `MPlace`. Used to share some code between
623     /// `eval_place` and `eval_place_to_op`.
624     pub(super) fn eval_static_to_mplace(
625         &self,
626         place_static: &mir::Static<'tcx>,
627     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
628         use rustc::mir::StaticKind;
629
630         Ok(match place_static.kind {
631             StaticKind::Static => {
632                 let ty = place_static.ty;
633                 assert!(!ty.needs_subst());
634                 let layout = self.layout_of(ty)?;
635                 // Just create a lazy reference, so we can support recursive statics.
636                 // tcx takes care of assigning every static one and only one unique AllocId.
637                 // When the data here is ever actually used, memory will notice,
638                 // and it knows how to deal with alloc_id that are present in the
639                 // global table but not in its local memory: It calls back into tcx through
640                 // a query, triggering the CTFE machinery to actually turn this lazy reference
641                 // into a bunch of bytes.  IOW, statics are evaluated with CTFE even when
642                 // this InterpCx uses another Machine (e.g., in miri).  This is what we
643                 // want!  This way, computing statics works consistently between codegen
644                 // and miri: They use the same query to eventually obtain a `ty::Const`
645                 // and use that for further computation.
646                 //
647                 // Notice that statics have *two* AllocIds: the lazy one, and the resolved
648                 // one.  Here we make sure that the interpreted program never sees the
649                 // resolved ID.  Also see the doc comment of `Memory::get_static_alloc`.
650                 let alloc_id = self.tcx.alloc_map.lock().create_static_alloc(place_static.def_id);
651                 let ptr = self.tag_static_base_pointer(Pointer::from(alloc_id));
652                 MPlaceTy::from_aligned_ptr(ptr, layout)
653             }
654         })
655     }
656
657     /// Computes a place. You should only use this if you intend to write into this
658     /// place; for reading, a more efficient alternative is `eval_place_for_read`.
659     pub fn eval_place(
660         &mut self,
661         place: &mir::Place<'tcx>,
662     ) -> InterpResult<'tcx, PlaceTy<'tcx, M::PointerTag>> {
663         use rustc::mir::PlaceBase;
664
665         let mut place_ty = match &place.base {
666             PlaceBase::Local(mir::RETURN_PLACE) => {
667                 // `return_place` has the *caller* layout, but we want to use our
668                 // `layout to verify our assumption. The caller will validate
669                 // their layout on return.
670                 PlaceTy {
671                     place: match self.frame().return_place {
672                         Some(p) => *p,
673                         // Even if we don't have a return place, we sometimes need to
674                         // create this place, but any attempt to read from / write to it
675                         // (even a ZST read/write) needs to error, so let us make this
676                         // a NULL place.
677                         //
678                         // FIXME: Ideally we'd make sure that the place projections also
679                         // bail out.
680                         None => Place::null(&*self),
681                     },
682                     layout: self.layout_of(self.subst_from_frame_and_normalize_erasing_regions(
683                         self.frame().body.return_ty(),
684                     ))?,
685                 }
686             }
687             PlaceBase::Local(local) => PlaceTy {
688                 // This works even for dead/uninitialized locals; we check further when writing
689                 place: Place::Local { frame: self.cur_frame(), local: *local },
690                 layout: self.layout_of_local(self.frame(), *local, None)?,
691             },
692             PlaceBase::Static(place_static) => self.eval_static_to_mplace(&place_static)?.into(),
693         };
694
695         for elem in place.projection.iter() {
696             place_ty = self.place_projection(place_ty, elem)?
697         }
698
699         self.dump_place(place_ty.place);
700         Ok(place_ty)
701     }
702
703     /// Write a scalar to a place
704     #[inline(always)]
705     pub fn write_scalar(
706         &mut self,
707         val: impl Into<ScalarMaybeUndef<M::PointerTag>>,
708         dest: PlaceTy<'tcx, M::PointerTag>,
709     ) -> InterpResult<'tcx> {
710         self.write_immediate(Immediate::Scalar(val.into()), dest)
711     }
712
713     /// Write an immediate to a place
714     #[inline(always)]
715     pub fn write_immediate(
716         &mut self,
717         src: Immediate<M::PointerTag>,
718         dest: PlaceTy<'tcx, M::PointerTag>,
719     ) -> InterpResult<'tcx> {
720         self.write_immediate_no_validate(src, dest)?;
721
722         if M::enforce_validity(self) {
723             // Data got changed, better make sure it matches the type!
724             self.validate_operand(self.place_to_op(dest)?, vec![], None)?;
725         }
726
727         Ok(())
728     }
729
730     /// Write an `Immediate` to memory.
731     #[inline(always)]
732     pub fn write_immediate_to_mplace(
733         &mut self,
734         src: Immediate<M::PointerTag>,
735         dest: MPlaceTy<'tcx, M::PointerTag>,
736     ) -> InterpResult<'tcx> {
737         self.write_immediate_to_mplace_no_validate(src, dest)?;
738
739         if M::enforce_validity(self) {
740             // Data got changed, better make sure it matches the type!
741             self.validate_operand(dest.into(), vec![], None)?;
742         }
743
744         Ok(())
745     }
746
747     /// Write an immediate to a place.
748     /// If you use this you are responsible for validating that things got copied at the
749     /// right type.
750     fn write_immediate_no_validate(
751         &mut self,
752         src: Immediate<M::PointerTag>,
753         dest: PlaceTy<'tcx, M::PointerTag>,
754     ) -> InterpResult<'tcx> {
755         if cfg!(debug_assertions) {
756             // This is a very common path, avoid some checks in release mode
757             assert!(!dest.layout.is_unsized(), "Cannot write unsized data");
758             match src {
759                 Immediate::Scalar(ScalarMaybeUndef::Scalar(Scalar::Ptr(_))) => assert_eq!(
760                     self.pointer_size(),
761                     dest.layout.size,
762                     "Size mismatch when writing pointer"
763                 ),
764                 Immediate::Scalar(ScalarMaybeUndef::Scalar(Scalar::Raw { size, .. })) => {
765                     assert_eq!(
766                         Size::from_bytes(size.into()),
767                         dest.layout.size,
768                         "Size mismatch when writing bits"
769                     )
770                 }
771                 Immediate::Scalar(ScalarMaybeUndef::Undef) => {} // undef can have any size
772                 Immediate::ScalarPair(_, _) => {
773                     // FIXME: Can we check anything here?
774                 }
775             }
776         }
777         trace!("write_immediate: {:?} <- {:?}: {}", *dest, src, dest.layout.ty);
778
779         // See if we can avoid an allocation. This is the counterpart to `try_read_immediate`,
780         // but not factored as a separate function.
781         let mplace = match dest.place {
782             Place::Local { frame, local } => {
783                 match self.stack[frame].locals[local].access_mut()? {
784                     Ok(local) => {
785                         // Local can be updated in-place.
786                         *local = LocalValue::Live(Operand::Immediate(src));
787                         return Ok(());
788                     }
789                     Err(mplace) => {
790                         // The local is in memory, go on below.
791                         mplace
792                     }
793                 }
794             }
795             Place::Ptr(mplace) => mplace, // already referring to memory
796         };
797         let dest = MPlaceTy { mplace, layout: dest.layout };
798
799         // This is already in memory, write there.
800         self.write_immediate_to_mplace_no_validate(src, dest)
801     }
802
803     /// Write an immediate to memory.
804     /// If you use this you are responsible for validating that things got copied at the
805     /// right type.
806     fn write_immediate_to_mplace_no_validate(
807         &mut self,
808         value: Immediate<M::PointerTag>,
809         dest: MPlaceTy<'tcx, M::PointerTag>,
810     ) -> InterpResult<'tcx> {
811         // Note that it is really important that the type here is the right one, and matches the
812         // type things are read at. In case `src_val` is a `ScalarPair`, we don't do any magic here
813         // to handle padding properly, which is only correct if we never look at this data with the
814         // wrong type.
815
816         // Invalid places are a thing: the return place of a diverging function
817         let ptr = match self.check_mplace_access(dest, None)? {
818             Some(ptr) => ptr,
819             None => return Ok(()), // zero-sized access
820         };
821
822         let tcx = &*self.tcx;
823         // FIXME: We should check that there are dest.layout.size many bytes available in
824         // memory.  The code below is not sufficient, with enough padding it might not
825         // cover all the bytes!
826         match value {
827             Immediate::Scalar(scalar) => {
828                 match dest.layout.abi {
829                     layout::Abi::Scalar(_) => {} // fine
830                     _ => {
831                         bug!("write_immediate_to_mplace: invalid Scalar layout: {:#?}", dest.layout)
832                     }
833                 }
834                 self.memory.get_raw_mut(ptr.alloc_id)?.write_scalar(
835                     tcx,
836                     ptr,
837                     scalar,
838                     dest.layout.size,
839                 )
840             }
841             Immediate::ScalarPair(a_val, b_val) => {
842                 // We checked `ptr_align` above, so all fields will have the alignment they need.
843                 // We would anyway check against `ptr_align.restrict_for_offset(b_offset)`,
844                 // which `ptr.offset(b_offset)` cannot possibly fail to satisfy.
845                 let (a, b) = match dest.layout.abi {
846                     layout::Abi::ScalarPair(ref a, ref b) => (&a.value, &b.value),
847                     _ => bug!(
848                         "write_immediate_to_mplace: invalid ScalarPair layout: {:#?}",
849                         dest.layout
850                     ),
851                 };
852                 let (a_size, b_size) = (a.size(self), b.size(self));
853                 let b_offset = a_size.align_to(b.align(self).abi);
854                 let b_ptr = ptr.offset(b_offset, self)?;
855
856                 // It is tempting to verify `b_offset` against `layout.fields.offset(1)`,
857                 // but that does not work: We could be a newtype around a pair, then the
858                 // fields do not match the `ScalarPair` components.
859
860                 self.memory.get_raw_mut(ptr.alloc_id)?.write_scalar(tcx, ptr, a_val, a_size)?;
861                 self.memory.get_raw_mut(b_ptr.alloc_id)?.write_scalar(tcx, b_ptr, b_val, b_size)
862             }
863         }
864     }
865
866     /// Copies the data from an operand to a place. This does not support transmuting!
867     /// Use `copy_op_transmute` if the layouts could disagree.
868     #[inline(always)]
869     pub fn copy_op(
870         &mut self,
871         src: OpTy<'tcx, M::PointerTag>,
872         dest: PlaceTy<'tcx, M::PointerTag>,
873     ) -> InterpResult<'tcx> {
874         self.copy_op_no_validate(src, dest)?;
875
876         if M::enforce_validity(self) {
877             // Data got changed, better make sure it matches the type!
878             self.validate_operand(self.place_to_op(dest)?, vec![], None)?;
879         }
880
881         Ok(())
882     }
883
884     /// Copies the data from an operand to a place. This does not support transmuting!
885     /// Use `copy_op_transmute` if the layouts could disagree.
886     /// Also, if you use this you are responsible for validating that things get copied at the
887     /// right type.
888     fn copy_op_no_validate(
889         &mut self,
890         src: OpTy<'tcx, M::PointerTag>,
891         dest: PlaceTy<'tcx, M::PointerTag>,
892     ) -> InterpResult<'tcx> {
893         // We do NOT compare the types for equality, because well-typed code can
894         // actually "transmute" `&mut T` to `&T` in an assignment without a cast.
895         assert!(
896             src.layout.details == dest.layout.details,
897             "Layout mismatch when copying!\nsrc: {:#?}\ndest: {:#?}",
898             src,
899             dest
900         );
901
902         // Let us see if the layout is simple so we take a shortcut, avoid force_allocation.
903         let src = match self.try_read_immediate(src)? {
904             Ok(src_val) => {
905                 assert!(!src.layout.is_unsized(), "cannot have unsized immediates");
906                 // Yay, we got a value that we can write directly.
907                 // FIXME: Add a check to make sure that if `src` is indirect,
908                 // it does not overlap with `dest`.
909                 return self.write_immediate_no_validate(*src_val, dest);
910             }
911             Err(mplace) => mplace,
912         };
913         // Slow path, this does not fit into an immediate. Just memcpy.
914         trace!("copy_op: {:?} <- {:?}: {}", *dest, src, dest.layout.ty);
915
916         // This interprets `src.meta` with the `dest` local's layout, if an unsized local
917         // is being initialized!
918         let (dest, size) = self.force_allocation_maybe_sized(dest, src.meta)?;
919         let size = size.unwrap_or_else(|| {
920             assert!(
921                 !dest.layout.is_unsized(),
922                 "Cannot copy into already initialized unsized place"
923             );
924             dest.layout.size
925         });
926         assert_eq!(src.meta, dest.meta, "Can only copy between equally-sized instances");
927
928         let src = self
929             .check_mplace_access(src, Some(size))
930             .expect("places should be checked on creation");
931         let dest = self
932             .check_mplace_access(dest, Some(size))
933             .expect("places should be checked on creation");
934         let (src_ptr, dest_ptr) = match (src, dest) {
935             (Some(src_ptr), Some(dest_ptr)) => (src_ptr, dest_ptr),
936             (None, None) => return Ok(()), // zero-sized copy
937             _ => bug!("The pointers should both be Some or both None"),
938         };
939
940         self.memory.copy(src_ptr, dest_ptr, size, /*nonoverlapping*/ true)
941     }
942
943     /// Copies the data from an operand to a place. The layouts may disagree, but they must
944     /// have the same size.
945     pub fn copy_op_transmute(
946         &mut self,
947         src: OpTy<'tcx, M::PointerTag>,
948         dest: PlaceTy<'tcx, M::PointerTag>,
949     ) -> InterpResult<'tcx> {
950         if src.layout.details == dest.layout.details {
951             // Fast path: Just use normal `copy_op`
952             return self.copy_op(src, dest);
953         }
954         // We still require the sizes to match.
955         if src.layout.size != dest.layout.size {
956             // FIXME: This should be an assert instead of an error, but if we transmute within an
957             // array length computation, `typeck` may not have yet been run and errored out. In fact
958             // most likey we *are* running `typeck` right now. Investigate whether we can bail out
959             // on `typeck_tables().has_errors` at all const eval entry points.
960             debug!("Size mismatch when transmuting!\nsrc: {:#?}\ndest: {:#?}", src, dest);
961             throw_unsup!(TransmuteSizeDiff(src.layout.ty, dest.layout.ty));
962         }
963         // Unsized copies rely on interpreting `src.meta` with `dest.layout`, we want
964         // to avoid that here.
965         assert!(
966             !src.layout.is_unsized() && !dest.layout.is_unsized(),
967             "Cannot transmute unsized data"
968         );
969
970         // The hard case is `ScalarPair`.  `src` is already read from memory in this case,
971         // using `src.layout` to figure out which bytes to use for the 1st and 2nd field.
972         // We have to write them to `dest` at the offsets they were *read at*, which is
973         // not necessarily the same as the offsets in `dest.layout`!
974         // Hence we do the copy with the source layout on both sides.  We also make sure to write
975         // into memory, because if `dest` is a local we would not even have a way to write
976         // at the `src` offsets; the fact that we came from a different layout would
977         // just be lost.
978         let dest = self.force_allocation(dest)?;
979         self.copy_op_no_validate(
980             src,
981             PlaceTy::from(MPlaceTy { mplace: *dest, layout: src.layout }),
982         )?;
983
984         if M::enforce_validity(self) {
985             // Data got changed, better make sure it matches the type!
986             self.validate_operand(dest.into(), vec![], None)?;
987         }
988
989         Ok(())
990     }
991
992     /// Ensures that a place is in memory, and returns where it is.
993     /// If the place currently refers to a local that doesn't yet have a matching allocation,
994     /// create such an allocation.
995     /// This is essentially `force_to_memplace`.
996     ///
997     /// This supports unsized types and returns the computed size to avoid some
998     /// redundant computation when copying; use `force_allocation` for a simpler, sized-only
999     /// version.
1000     pub fn force_allocation_maybe_sized(
1001         &mut self,
1002         place: PlaceTy<'tcx, M::PointerTag>,
1003         meta: MemPlaceMeta<M::PointerTag>,
1004     ) -> InterpResult<'tcx, (MPlaceTy<'tcx, M::PointerTag>, Option<Size>)> {
1005         let (mplace, size) = match place.place {
1006             Place::Local { frame, local } => {
1007                 match self.stack[frame].locals[local].access_mut()? {
1008                     Ok(&mut local_val) => {
1009                         // We need to make an allocation.
1010
1011                         // We need the layout of the local.  We can NOT use the layout we got,
1012                         // that might e.g., be an inner field of a struct with `Scalar` layout,
1013                         // that has different alignment than the outer field.
1014                         let local_layout = self.layout_of_local(&self.stack[frame], local, None)?;
1015                         // We also need to support unsized types, and hence cannot use `allocate`.
1016                         let (size, align) = self
1017                             .size_and_align_of(meta, local_layout)?
1018                             .expect("Cannot allocate for non-dyn-sized type");
1019                         let ptr = self.memory.allocate(size, align, MemoryKind::Stack);
1020                         let mplace = MemPlace { ptr: ptr.into(), align, meta };
1021                         if let LocalValue::Live(Operand::Immediate(value)) = local_val {
1022                             // Preserve old value.
1023                             // We don't have to validate as we can assume the local
1024                             // was already valid for its type.
1025                             let mplace = MPlaceTy { mplace, layout: local_layout };
1026                             self.write_immediate_to_mplace_no_validate(value, mplace)?;
1027                         }
1028                         // Now we can call `access_mut` again, asserting it goes well,
1029                         // and actually overwrite things.
1030                         *self.stack[frame].locals[local].access_mut().unwrap().unwrap() =
1031                             LocalValue::Live(Operand::Indirect(mplace));
1032                         (mplace, Some(size))
1033                     }
1034                     Err(mplace) => (mplace, None), // this already was an indirect local
1035                 }
1036             }
1037             Place::Ptr(mplace) => (mplace, None),
1038         };
1039         // Return with the original layout, so that the caller can go on
1040         Ok((MPlaceTy { mplace, layout: place.layout }, size))
1041     }
1042
1043     #[inline(always)]
1044     pub fn force_allocation(
1045         &mut self,
1046         place: PlaceTy<'tcx, M::PointerTag>,
1047     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
1048         Ok(self.force_allocation_maybe_sized(place, MemPlaceMeta::None)?.0)
1049     }
1050
1051     pub fn allocate(
1052         &mut self,
1053         layout: TyLayout<'tcx>,
1054         kind: MemoryKind<M::MemoryKinds>,
1055     ) -> MPlaceTy<'tcx, M::PointerTag> {
1056         let ptr = self.memory.allocate(layout.size, layout.align.abi, kind);
1057         MPlaceTy::from_aligned_ptr(ptr, layout)
1058     }
1059
1060     /// Returns a wide MPlace.
1061     pub fn allocate_str(
1062         &mut self,
1063         str: &str,
1064         kind: MemoryKind<M::MemoryKinds>,
1065     ) -> MPlaceTy<'tcx, M::PointerTag> {
1066         let ptr = self.memory.allocate_static_bytes(str.as_bytes(), kind);
1067         let meta = Scalar::from_uint(str.len() as u128, self.pointer_size());
1068         let mplace = MemPlace {
1069             ptr: ptr.into(),
1070             align: Align::from_bytes(1).unwrap(),
1071             meta: MemPlaceMeta::Meta(meta),
1072         };
1073
1074         let layout = self.layout_of(self.tcx.mk_static_str()).unwrap();
1075         MPlaceTy { mplace, layout }
1076     }
1077
1078     pub fn write_discriminant_index(
1079         &mut self,
1080         variant_index: VariantIdx,
1081         dest: PlaceTy<'tcx, M::PointerTag>,
1082     ) -> InterpResult<'tcx> {
1083         // Layout computation excludes uninhabited variants from consideration
1084         // therefore there's no way to represent those variants in the given layout.
1085         if dest.layout.for_variant(self, variant_index).abi.is_uninhabited() {
1086             throw_ub!(Unreachable);
1087         }
1088
1089         match dest.layout.variants {
1090             layout::Variants::Single { index } => {
1091                 assert_eq!(index, variant_index);
1092             }
1093             layout::Variants::Multiple {
1094                 discr_kind: layout::DiscriminantKind::Tag,
1095                 discr: ref discr_layout,
1096                 discr_index,
1097                 ..
1098             } => {
1099                 // No need to validate that the discriminant here because the
1100                 // `TyLayout::for_variant()` call earlier already checks the variant is valid.
1101
1102                 let discr_val =
1103                     dest.layout.ty.discriminant_for_variant(*self.tcx, variant_index).unwrap().val;
1104
1105                 // raw discriminants for enums are isize or bigger during
1106                 // their computation, but the in-memory tag is the smallest possible
1107                 // representation
1108                 let size = discr_layout.value.size(self);
1109                 let discr_val = truncate(discr_val, size);
1110
1111                 let discr_dest = self.place_field(dest, discr_index as u64)?;
1112                 self.write_scalar(Scalar::from_uint(discr_val, size), discr_dest)?;
1113             }
1114             layout::Variants::Multiple {
1115                 discr_kind:
1116                     layout::DiscriminantKind::Niche { dataful_variant, ref niche_variants, niche_start },
1117                 discr: ref discr_layout,
1118                 discr_index,
1119                 ..
1120             } => {
1121                 // No need to validate that the discriminant here because the
1122                 // `TyLayout::for_variant()` call earlier already checks the variant is valid.
1123
1124                 if variant_index != dataful_variant {
1125                     let variants_start = niche_variants.start().as_u32();
1126                     let variant_index_relative = variant_index
1127                         .as_u32()
1128                         .checked_sub(variants_start)
1129                         .expect("overflow computing relative variant idx");
1130                     // We need to use machine arithmetic when taking into account `niche_start`:
1131                     // discr_val = variant_index_relative + niche_start_val
1132                     let discr_layout = self.layout_of(discr_layout.value.to_int_ty(*self.tcx))?;
1133                     let niche_start_val = ImmTy::from_uint(niche_start, discr_layout);
1134                     let variant_index_relative_val =
1135                         ImmTy::from_uint(variant_index_relative, discr_layout);
1136                     let discr_val = self.binary_op(
1137                         mir::BinOp::Add,
1138                         variant_index_relative_val,
1139                         niche_start_val,
1140                     )?;
1141                     // Write result.
1142                     let niche_dest = self.place_field(dest, discr_index as u64)?;
1143                     self.write_immediate(*discr_val, niche_dest)?;
1144                 }
1145             }
1146         }
1147
1148         Ok(())
1149     }
1150
1151     pub fn raw_const_to_mplace(
1152         &self,
1153         raw: RawConst<'tcx>,
1154     ) -> InterpResult<'tcx, MPlaceTy<'tcx, M::PointerTag>> {
1155         // This must be an allocation in `tcx`
1156         assert!(self.tcx.alloc_map.lock().get(raw.alloc_id).is_some());
1157         let ptr = self.tag_static_base_pointer(Pointer::from(raw.alloc_id));
1158         let layout = self.layout_of(raw.ty)?;
1159         Ok(MPlaceTy::from_aligned_ptr(ptr, layout))
1160     }
1161
1162     /// Turn a place with a `dyn Trait` type into a place with the actual dynamic type.
1163     /// Also return some more information so drop doesn't have to run the same code twice.
1164     pub(super) fn unpack_dyn_trait(
1165         &self,
1166         mplace: MPlaceTy<'tcx, M::PointerTag>,
1167     ) -> InterpResult<'tcx, (ty::Instance<'tcx>, MPlaceTy<'tcx, M::PointerTag>)> {
1168         let vtable = mplace.vtable(); // also sanity checks the type
1169         let (instance, ty) = self.read_drop_type_from_vtable(vtable)?;
1170         let layout = self.layout_of(ty)?;
1171
1172         // More sanity checks
1173         if cfg!(debug_assertions) {
1174             let (size, align) = self.read_size_and_align_from_vtable(vtable)?;
1175             assert_eq!(size, layout.size);
1176             // only ABI alignment is preserved
1177             assert_eq!(align, layout.align.abi);
1178         }
1179
1180         let mplace = MPlaceTy { mplace: MemPlace { meta: MemPlaceMeta::None, ..*mplace }, layout };
1181         Ok((instance, mplace))
1182     }
1183 }