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