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