]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/interpret/operand.rs
Rollup merge of #67491 - lzutao:res-map-or, r=Mark-Simulacrum
[rust.git] / src / librustc_mir / interpret / operand.rs
1 //! Functions concerning immediate values and operands, and reading from operands.
2 //! All high-level functions to read from memory work on operands as sources.
3
4 use std::convert::{TryInto, TryFrom};
5
6 use rustc::{mir, ty};
7 use rustc::ty::layout::{
8     self, Size, LayoutOf, TyLayout, HasDataLayout, IntegerExt, PrimitiveExt, VariantIdx,
9 };
10
11 use rustc::mir::interpret::{
12     GlobalId, AllocId,
13     ConstValue, Pointer, Scalar,
14     InterpResult, sign_extend, truncate,
15 };
16 use super::{
17     InterpCx, Machine,
18     MemPlace, MPlaceTy, PlaceTy, Place,
19 };
20 pub use rustc::mir::interpret::ScalarMaybeUndef;
21 use rustc_macros::HashStable;
22 use syntax::ast;
23
24 /// An `Immediate` represents a single immediate self-contained Rust value.
25 ///
26 /// For optimization of a few very common cases, there is also a representation for a pair of
27 /// primitive values (`ScalarPair`). It allows Miri to avoid making allocations for checked binary
28 /// operations and wide pointers. This idea was taken from rustc's codegen.
29 /// In particular, thanks to `ScalarPair`, arithmetic operations and casts can be entirely
30 /// defined on `Immediate`, and do not have to work with a `Place`.
31 #[derive(Copy, Clone, Debug, PartialEq, Eq, HashStable, Hash)]
32 pub enum Immediate<Tag=(), Id=AllocId> {
33     Scalar(ScalarMaybeUndef<Tag, Id>),
34     ScalarPair(ScalarMaybeUndef<Tag, Id>, ScalarMaybeUndef<Tag, Id>),
35 }
36
37 impl<Tag> From<ScalarMaybeUndef<Tag>> for Immediate<Tag> {
38     #[inline(always)]
39     fn from(val: ScalarMaybeUndef<Tag>) -> Self {
40         Immediate::Scalar(val)
41     }
42 }
43
44 impl<Tag> From<Scalar<Tag>> for Immediate<Tag> {
45     #[inline(always)]
46     fn from(val: Scalar<Tag>) -> Self {
47         Immediate::Scalar(val.into())
48     }
49 }
50
51 impl<Tag> From<Pointer<Tag>> for Immediate<Tag> {
52     #[inline(always)]
53     fn from(val: Pointer<Tag>) -> Self {
54         Immediate::Scalar(Scalar::from(val).into())
55     }
56 }
57
58 impl<'tcx, Tag> Immediate<Tag> {
59     pub fn new_slice(
60         val: Scalar<Tag>,
61         len: u64,
62         cx: &impl HasDataLayout
63     ) -> Self {
64         Immediate::ScalarPair(
65             val.into(),
66             Scalar::from_uint(len, cx.data_layout().pointer_size).into(),
67         )
68     }
69
70     pub fn new_dyn_trait(val: Scalar<Tag>, vtable: Pointer<Tag>) -> Self {
71         Immediate::ScalarPair(val.into(), vtable.into())
72     }
73
74     #[inline]
75     pub fn to_scalar_or_undef(self) -> ScalarMaybeUndef<Tag> {
76         match self {
77             Immediate::Scalar(val) => val,
78             Immediate::ScalarPair(..) => bug!("Got a wide pointer where a scalar was expected"),
79         }
80     }
81
82     #[inline]
83     pub fn to_scalar(self) -> InterpResult<'tcx, Scalar<Tag>> {
84         self.to_scalar_or_undef().not_undef()
85     }
86
87     #[inline]
88     pub fn to_scalar_pair(self) -> InterpResult<'tcx, (Scalar<Tag>, Scalar<Tag>)> {
89         match self {
90             Immediate::Scalar(..) => bug!("Got a thin pointer where a scalar pair was expected"),
91             Immediate::ScalarPair(a, b) => Ok((a.not_undef()?, b.not_undef()?))
92         }
93     }
94 }
95
96 // ScalarPair needs a type to interpret, so we often have an immediate and a type together
97 // as input for binary and cast operations.
98 #[derive(Copy, Clone, Debug)]
99 pub struct ImmTy<'tcx, Tag=()> {
100     pub(crate) imm: Immediate<Tag>,
101     pub layout: TyLayout<'tcx>,
102 }
103
104 // `Tag: Copy` because some methods on `Scalar` consume them by value
105 impl<Tag: Copy> std::fmt::Display for ImmTy<'tcx, Tag> {
106     fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
107         match &self.imm {
108             Immediate::Scalar(ScalarMaybeUndef::Scalar(s)) => match s.to_bits(self.layout.size) {
109                 Ok(s) => {
110                     match self.layout.ty.kind {
111                         ty::Int(_) => return write!(
112                             fmt, "{}",
113                             super::sign_extend(s, self.layout.size) as i128,
114                         ),
115                         ty::Uint(_) => return write!(fmt, "{}", s),
116                         ty::Bool if s == 0 => return fmt.write_str("false"),
117                         ty::Bool if s == 1 => return fmt.write_str("true"),
118                         ty::Char => if let Some(c) =
119                             u32::try_from(s).ok().and_then(std::char::from_u32) {
120                             return write!(fmt, "{}", c);
121                         },
122                         ty::Float(ast::FloatTy::F32) => if let Ok(u) = u32::try_from(s) {
123                             return write!(fmt, "{}", f32::from_bits(u));
124                         },
125                         ty::Float(ast::FloatTy::F64) => if let Ok(u) = u64::try_from(s) {
126                             return write!(fmt, "{}", f64::from_bits(u));
127                         },
128                         _ => {},
129                     }
130                     write!(fmt, "{:x}", s)
131                 },
132                 Err(_) => fmt.write_str("{pointer}"),
133             },
134             Immediate::Scalar(ScalarMaybeUndef::Undef) => fmt.write_str("{undef}"),
135             Immediate::ScalarPair(..) => fmt.write_str("{wide pointer or tuple}"),
136         }
137     }
138 }
139
140 impl<'tcx, Tag> ::std::ops::Deref for ImmTy<'tcx, Tag> {
141     type Target = Immediate<Tag>;
142     #[inline(always)]
143     fn deref(&self) -> &Immediate<Tag> {
144         &self.imm
145     }
146 }
147
148 /// An `Operand` is the result of computing a `mir::Operand`. It can be immediate,
149 /// or still in memory. The latter is an optimization, to delay reading that chunk of
150 /// memory and to avoid having to store arbitrary-sized data here.
151 #[derive(Copy, Clone, Debug, PartialEq, Eq, HashStable, Hash)]
152 pub enum Operand<Tag=(), Id=AllocId> {
153     Immediate(Immediate<Tag, Id>),
154     Indirect(MemPlace<Tag, Id>),
155 }
156
157 impl<Tag> Operand<Tag> {
158     #[inline]
159     pub fn assert_mem_place(self) -> MemPlace<Tag>
160         where Tag: ::std::fmt::Debug
161     {
162         match self {
163             Operand::Indirect(mplace) => mplace,
164             _ => bug!("assert_mem_place: expected Operand::Indirect, got {:?}", self),
165
166         }
167     }
168
169     #[inline]
170     pub fn assert_immediate(self) -> Immediate<Tag>
171         where Tag: ::std::fmt::Debug
172     {
173         match self {
174             Operand::Immediate(imm) => imm,
175             _ => bug!("assert_immediate: expected Operand::Immediate, got {:?}", self),
176
177         }
178     }
179 }
180
181 #[derive(Copy, Clone, Debug, PartialEq, Eq, Hash)]
182 pub struct OpTy<'tcx, Tag=()> {
183     op: Operand<Tag>, // Keep this private; it helps enforce invariants.
184     pub layout: TyLayout<'tcx>,
185 }
186
187 impl<'tcx, Tag> ::std::ops::Deref for OpTy<'tcx, Tag> {
188     type Target = Operand<Tag>;
189     #[inline(always)]
190     fn deref(&self) -> &Operand<Tag> {
191         &self.op
192     }
193 }
194
195 impl<'tcx, Tag: Copy> From<MPlaceTy<'tcx, Tag>> for OpTy<'tcx, Tag> {
196     #[inline(always)]
197     fn from(mplace: MPlaceTy<'tcx, Tag>) -> Self {
198         OpTy {
199             op: Operand::Indirect(*mplace),
200             layout: mplace.layout
201         }
202     }
203 }
204
205 impl<'tcx, Tag> From<ImmTy<'tcx, Tag>> for OpTy<'tcx, Tag> {
206     #[inline(always)]
207     fn from(val: ImmTy<'tcx, Tag>) -> Self {
208         OpTy {
209             op: Operand::Immediate(val.imm),
210             layout: val.layout
211         }
212     }
213 }
214
215 impl<'tcx, Tag: Copy> ImmTy<'tcx, Tag> {
216     #[inline]
217     pub fn from_scalar(val: Scalar<Tag>, layout: TyLayout<'tcx>) -> Self {
218         ImmTy { imm: val.into(), layout }
219     }
220
221     #[inline]
222     pub fn from_uint(i: impl Into<u128>, layout: TyLayout<'tcx>) -> Self {
223         Self::from_scalar(Scalar::from_uint(i, layout.size), layout)
224     }
225
226     #[inline]
227     pub fn from_int(i: impl Into<i128>, layout: TyLayout<'tcx>) -> Self {
228         Self::from_scalar(Scalar::from_int(i, layout.size), layout)
229     }
230
231     #[inline]
232     pub fn to_bits(self) -> InterpResult<'tcx, u128> {
233         self.to_scalar()?.to_bits(self.layout.size)
234     }
235 }
236
237 // Use the existing layout if given (but sanity check in debug mode),
238 // or compute the layout.
239 #[inline(always)]
240 pub(super) fn from_known_layout<'tcx>(
241     layout: Option<TyLayout<'tcx>>,
242     compute: impl FnOnce() -> InterpResult<'tcx, TyLayout<'tcx>>
243 ) -> InterpResult<'tcx, TyLayout<'tcx>> {
244     match layout {
245         None => compute(),
246         Some(layout) => {
247             if cfg!(debug_assertions) {
248                 let layout2 = compute()?;
249                 assert_eq!(layout.details, layout2.details,
250                     "mismatch in layout of supposedly equal-layout types {:?} and {:?}",
251                     layout.ty, layout2.ty);
252             }
253             Ok(layout)
254         }
255     }
256 }
257
258 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
259     /// Normalice `place.ptr` to a `Pointer` if this is a place and not a ZST.
260     /// Can be helpful to avoid lots of `force_ptr` calls later, if this place is used a lot.
261     #[inline]
262     pub fn force_op_ptr(
263         &self,
264         op: OpTy<'tcx, M::PointerTag>,
265     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
266         match op.try_as_mplace() {
267             Ok(mplace) => Ok(self.force_mplace_ptr(mplace)?.into()),
268             Err(imm) => Ok(imm.into()), // Nothing to cast/force
269         }
270     }
271
272     /// Try reading an immediate in memory; this is interesting particularly for `ScalarPair`.
273     /// Returns `None` if the layout does not permit loading this as a value.
274     fn try_read_immediate_from_mplace(
275         &self,
276         mplace: MPlaceTy<'tcx, M::PointerTag>,
277     ) -> InterpResult<'tcx, Option<ImmTy<'tcx, M::PointerTag>>> {
278         if mplace.layout.is_unsized() {
279             // Don't touch unsized
280             return Ok(None);
281         }
282
283         let ptr = match self.check_mplace_access(mplace, None)
284             .expect("places should be checked on creation")
285         {
286             Some(ptr) => ptr,
287             None => return Ok(Some(ImmTy { // zero-sized type
288                 imm: Scalar::zst().into(),
289                 layout: mplace.layout,
290             })),
291         };
292
293         match mplace.layout.abi {
294             layout::Abi::Scalar(..) => {
295                 let scalar = self.memory
296                     .get_raw(ptr.alloc_id)?
297                     .read_scalar(self, ptr, mplace.layout.size)?;
298                 Ok(Some(ImmTy {
299                     imm: scalar.into(),
300                     layout: mplace.layout,
301                 }))
302             }
303             layout::Abi::ScalarPair(ref a, ref b) => {
304                 // We checked `ptr_align` above, so all fields will have the alignment they need.
305                 // We would anyway check against `ptr_align.restrict_for_offset(b_offset)`,
306                 // which `ptr.offset(b_offset)` cannot possibly fail to satisfy.
307                 let (a, b) = (&a.value, &b.value);
308                 let (a_size, b_size) = (a.size(self), b.size(self));
309                 let a_ptr = ptr;
310                 let b_offset = a_size.align_to(b.align(self).abi);
311                 assert!(b_offset.bytes() > 0); // we later use the offset to tell apart the fields
312                 let b_ptr = ptr.offset(b_offset, self)?;
313                 let a_val = self.memory
314                     .get_raw(ptr.alloc_id)?
315                     .read_scalar(self, a_ptr, a_size)?;
316                 let b_val = self.memory
317                     .get_raw(ptr.alloc_id)?
318                     .read_scalar(self, b_ptr, b_size)?;
319                 Ok(Some(ImmTy {
320                     imm: Immediate::ScalarPair(a_val, b_val),
321                     layout: mplace.layout,
322                 }))
323             }
324             _ => Ok(None),
325         }
326     }
327
328     /// Try returning an immediate for the operand.
329     /// If the layout does not permit loading this as an immediate, return where in memory
330     /// we can find the data.
331     /// Note that for a given layout, this operation will either always fail or always
332     /// succeed!  Whether it succeeds depends on whether the layout can be represented
333     /// in a `Immediate`, not on which data is stored there currently.
334     pub(crate) fn try_read_immediate(
335         &self,
336         src: OpTy<'tcx, M::PointerTag>,
337     ) -> InterpResult<'tcx, Result<ImmTy<'tcx, M::PointerTag>, MPlaceTy<'tcx, M::PointerTag>>> {
338         Ok(match src.try_as_mplace() {
339             Ok(mplace) => {
340                 if let Some(val) = self.try_read_immediate_from_mplace(mplace)? {
341                     Ok(val)
342                 } else {
343                     Err(mplace)
344                 }
345             },
346             Err(val) => Ok(val),
347         })
348     }
349
350     /// Read an immediate from a place, asserting that that is possible with the given layout.
351     #[inline(always)]
352     pub fn read_immediate(
353         &self,
354         op: OpTy<'tcx, M::PointerTag>
355     ) -> InterpResult<'tcx, ImmTy<'tcx, M::PointerTag>> {
356         if let Ok(imm) = self.try_read_immediate(op)? {
357             Ok(imm)
358         } else {
359             bug!("primitive read failed for type: {:?}", op.layout.ty);
360         }
361     }
362
363     /// Read a scalar from a place
364     pub fn read_scalar(
365         &self,
366         op: OpTy<'tcx, M::PointerTag>
367     ) -> InterpResult<'tcx, ScalarMaybeUndef<M::PointerTag>> {
368         Ok(self.read_immediate(op)?.to_scalar_or_undef())
369     }
370
371     // Turn the wide MPlace into a string (must already be dereferenced!)
372     pub fn read_str(
373         &self,
374         mplace: MPlaceTy<'tcx, M::PointerTag>,
375     ) -> InterpResult<'tcx, &str> {
376         let len = mplace.len(self)?;
377         let bytes = self.memory.read_bytes(mplace.ptr, Size::from_bytes(len as u64))?;
378         let str = ::std::str::from_utf8(bytes).map_err(|err| {
379             err_unsup!(ValidationFailure(err.to_string()))
380         })?;
381         Ok(str)
382     }
383
384     /// Projection functions
385     pub fn operand_field(
386         &self,
387         op: OpTy<'tcx, M::PointerTag>,
388         field: u64,
389     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
390         let base = match op.try_as_mplace() {
391             Ok(mplace) => {
392                 // The easy case
393                 let field = self.mplace_field(mplace, field)?;
394                 return Ok(field.into());
395             },
396             Err(value) => value
397         };
398
399         let field = field.try_into().unwrap();
400         let field_layout = op.layout.field(self, field)?;
401         if field_layout.is_zst() {
402             let immediate = Scalar::zst().into();
403             return Ok(OpTy { op: Operand::Immediate(immediate), layout: field_layout });
404         }
405         let offset = op.layout.fields.offset(field);
406         let immediate = match *base {
407             // the field covers the entire type
408             _ if offset.bytes() == 0 && field_layout.size == op.layout.size => *base,
409             // extract fields from types with `ScalarPair` ABI
410             Immediate::ScalarPair(a, b) => {
411                 let val = if offset.bytes() == 0 { a } else { b };
412                 Immediate::from(val)
413             },
414             Immediate::Scalar(val) =>
415                 bug!("field access on non aggregate {:#?}, {:#?}", val, op.layout),
416         };
417         Ok(OpTy { op: Operand::Immediate(immediate), layout: field_layout })
418     }
419
420     pub fn operand_downcast(
421         &self,
422         op: OpTy<'tcx, M::PointerTag>,
423         variant: VariantIdx,
424     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
425         // Downcasts only change the layout
426         Ok(match op.try_as_mplace() {
427             Ok(mplace) => {
428                 self.mplace_downcast(mplace, variant)?.into()
429             },
430             Err(..) => {
431                 let layout = op.layout.for_variant(self, variant);
432                 OpTy { layout, ..op }
433             }
434         })
435     }
436
437     pub fn operand_projection(
438         &self,
439         base: OpTy<'tcx, M::PointerTag>,
440         proj_elem: &mir::PlaceElem<'tcx>,
441     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
442         use rustc::mir::ProjectionElem::*;
443         Ok(match *proj_elem {
444             Field(field, _) => self.operand_field(base, field.index() as u64)?,
445             Downcast(_, variant) => self.operand_downcast(base, variant)?,
446             Deref => self.deref_operand(base)?.into(),
447             ConstantIndex { .. } | Index(_) if base.layout.is_zst() => {
448                 OpTy {
449                     op: Operand::Immediate(Scalar::zst().into()),
450                     // the actual index doesn't matter, so we just pick a convenient one like 0
451                     layout: base.layout.field(self, 0)?,
452                 }
453             }
454             Subslice { from, to, from_end } if base.layout.is_zst() => {
455                 let elem_ty = if let ty::Array(elem_ty, _) = base.layout.ty.kind {
456                     elem_ty
457                 } else {
458                     bug!("slices shouldn't be zero-sized");
459                 };
460                 assert!(!from_end, "arrays shouldn't be subsliced from the end");
461
462                 OpTy {
463                     op: Operand::Immediate(Scalar::zst().into()),
464                     layout: self.layout_of(self.tcx.mk_array(elem_ty, (to - from) as u64))?,
465                 }
466             }
467             Subslice { .. } | ConstantIndex { .. }  | Index(_) => {
468                 // The rest should only occur as mplace, we do not use Immediates for types
469                 // allowing such operations.  This matches place_projection forcing an allocation.
470                 let mplace = base.assert_mem_place();
471                 self.mplace_projection(mplace, proj_elem)?.into()
472             }
473         })
474     }
475
476     /// This is used by [priroda](https://github.com/oli-obk/priroda) to get an OpTy from a local
477     pub fn access_local(
478         &self,
479         frame: &super::Frame<'mir, 'tcx, M::PointerTag, M::FrameExtra>,
480         local: mir::Local,
481         layout: Option<TyLayout<'tcx>>,
482     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
483         assert_ne!(local, mir::RETURN_PLACE);
484         let layout = self.layout_of_local(frame, local, layout)?;
485         let op = if layout.is_zst() {
486             // Do not read from ZST, they might not be initialized
487             Operand::Immediate(Scalar::zst().into())
488         } else {
489             M::access_local(&self, frame, local)?
490         };
491         Ok(OpTy { op, layout })
492     }
493
494     /// Every place can be read from, so we can turn them into an operand
495     #[inline(always)]
496     pub fn place_to_op(
497         &self,
498         place: PlaceTy<'tcx, M::PointerTag>
499     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
500         let op = match *place {
501             Place::Ptr(mplace) => {
502                 Operand::Indirect(mplace)
503             }
504             Place::Local { frame, local } =>
505                 *self.access_local(&self.stack[frame], local, None)?
506         };
507         Ok(OpTy { op, layout: place.layout })
508     }
509
510     // Evaluate a place with the goal of reading from it.  This lets us sometimes
511     // avoid allocations.
512     pub fn eval_place_to_op(
513         &self,
514         place: &mir::Place<'tcx>,
515         layout: Option<TyLayout<'tcx>>,
516     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
517         use rustc::mir::PlaceBase;
518
519         let base_op = match &place.base {
520             PlaceBase::Local(mir::RETURN_PLACE) =>
521                 throw_unsup!(ReadFromReturnPointer),
522             PlaceBase::Local(local) => {
523                 // Do not use the layout passed in as argument if the base we are looking at
524                 // here is not the entire place.
525                 // FIXME use place_projection.is_empty() when is available
526                 let layout = if place.projection.is_empty() {
527                     layout
528                 } else {
529                     None
530                 };
531
532                 self.access_local(self.frame(), *local, layout)?
533             }
534             PlaceBase::Static(place_static) => {
535                 self.eval_static_to_mplace(&place_static)?.into()
536             }
537         };
538
539         let op = place.projection.iter().try_fold(
540             base_op,
541             |op, elem| self.operand_projection(op, elem)
542         )?;
543
544         trace!("eval_place_to_op: got {:?}", *op);
545         Ok(op)
546     }
547
548     /// Evaluate the operand, returning a place where you can then find the data.
549     /// If you already know the layout, you can save two table lookups
550     /// by passing it in here.
551     pub fn eval_operand(
552         &self,
553         mir_op: &mir::Operand<'tcx>,
554         layout: Option<TyLayout<'tcx>>,
555     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
556         use rustc::mir::Operand::*;
557         let op = match *mir_op {
558             // FIXME: do some more logic on `move` to invalidate the old location
559             Copy(ref place) |
560             Move(ref place) =>
561                 self.eval_place_to_op(place, layout)?,
562
563             Constant(ref constant) => {
564                 let val = self.subst_from_frame_and_normalize_erasing_regions(constant.literal);
565                 self.eval_const_to_op(val, layout)?
566             }
567         };
568         trace!("{:?}: {:?}", mir_op, *op);
569         Ok(op)
570     }
571
572     /// Evaluate a bunch of operands at once
573     pub(super) fn eval_operands(
574         &self,
575         ops: &[mir::Operand<'tcx>],
576     ) -> InterpResult<'tcx, Vec<OpTy<'tcx, M::PointerTag>>> {
577         ops.into_iter()
578             .map(|op| self.eval_operand(op, None))
579             .collect()
580     }
581
582     // Used when the miri-engine runs into a constant and for extracting information from constants
583     // in patterns via the `const_eval` module
584     /// The `val` and `layout` are assumed to already be in our interpreter
585     /// "universe" (param_env).
586     crate fn eval_const_to_op(
587         &self,
588         val: &'tcx ty::Const<'tcx>,
589         layout: Option<TyLayout<'tcx>>,
590     ) -> InterpResult<'tcx, OpTy<'tcx, M::PointerTag>> {
591         let tag_scalar = |scalar| match scalar {
592             Scalar::Ptr(ptr) => Scalar::Ptr(self.tag_static_base_pointer(ptr)),
593             Scalar::Raw { data, size } => Scalar::Raw { data, size },
594         };
595         // Early-return cases.
596         let val_val = match val.val {
597             ty::ConstKind::Param(_) =>
598                 throw_inval!(TooGeneric),
599             ty::ConstKind::Unevaluated(def_id, substs) => {
600                 let instance = self.resolve(def_id, substs)?;
601                 return Ok(OpTy::from(self.const_eval_raw(GlobalId {
602                     instance,
603                     promoted: None,
604                 })?));
605             }
606             ty::ConstKind::Infer(..) |
607             ty::ConstKind::Bound(..) |
608             ty::ConstKind::Placeholder(..) =>
609                 bug!("eval_const_to_op: Unexpected ConstKind {:?}", val),
610             ty::ConstKind::Value(val_val) => val_val,
611         };
612         // Other cases need layout.
613         let layout = from_known_layout(layout, || {
614             self.layout_of(val.ty)
615         })?;
616         let op = match val_val {
617             ConstValue::ByRef { alloc, offset } => {
618                 let id = self.tcx.alloc_map.lock().create_memory_alloc(alloc);
619                 // We rely on mutability being set correctly in that allocation to prevent writes
620                 // where none should happen.
621                 let ptr = self.tag_static_base_pointer(Pointer::new(id, offset));
622                 Operand::Indirect(MemPlace::from_ptr(ptr, layout.align.abi))
623             },
624             ConstValue::Scalar(x) => Operand::Immediate(tag_scalar(x).into()),
625             ConstValue::Slice { data, start, end } => {
626                 // We rely on mutability being set correctly in `data` to prevent writes
627                 // where none should happen.
628                 let ptr = Pointer::new(
629                     self.tcx.alloc_map.lock().create_memory_alloc(data),
630                     Size::from_bytes(start as u64), // offset: `start`
631                 );
632                 Operand::Immediate(Immediate::new_slice(
633                     self.tag_static_base_pointer(ptr).into(),
634                     (end - start) as u64, // len: `end - start`
635                     self,
636                 ))
637             }
638         };
639         Ok(OpTy { op, layout })
640     }
641
642     /// Read discriminant, return the runtime value as well as the variant index.
643     pub fn read_discriminant(
644         &self,
645         rval: OpTy<'tcx, M::PointerTag>,
646     ) -> InterpResult<'tcx, (u128, VariantIdx)> {
647         trace!("read_discriminant_value {:#?}", rval.layout);
648
649         let (discr_layout, discr_kind, discr_index) = match rval.layout.variants {
650             layout::Variants::Single { index } => {
651                 let discr_val = rval.layout.ty.discriminant_for_variant(*self.tcx, index).map_or(
652                     index.as_u32() as u128,
653                     |discr| discr.val);
654                 return Ok((discr_val, index));
655             }
656             layout::Variants::Multiple {
657                 discr: ref discr_layout,
658                 ref discr_kind,
659                 discr_index,
660                 ..
661             } =>
662                 (discr_layout, discr_kind, discr_index),
663         };
664
665         // read raw discriminant value
666         let discr_op = self.operand_field(rval, discr_index as u64)?;
667         let discr_val = self.read_immediate(discr_op)?;
668         let raw_discr = discr_val.to_scalar_or_undef();
669         trace!("discr value: {:?}", raw_discr);
670         // post-process
671         Ok(match *discr_kind {
672             layout::DiscriminantKind::Tag => {
673                 let bits_discr = raw_discr
674                     .not_undef()
675                     .and_then(|raw_discr| self.force_bits(raw_discr, discr_val.layout.size))
676                     .map_err(|_| err_ub!(InvalidDiscriminant(raw_discr.erase_tag())))?;
677                 let real_discr = if discr_val.layout.ty.is_signed() {
678                     // going from layout tag type to typeck discriminant type
679                     // requires first sign extending with the discriminant layout
680                     let sexted = sign_extend(bits_discr, discr_val.layout.size) as i128;
681                     // and then zeroing with the typeck discriminant type
682                     let discr_ty = rval.layout.ty
683                         .ty_adt_def().expect("tagged layout corresponds to adt")
684                         .repr
685                         .discr_type();
686                     let size = layout::Integer::from_attr(self, discr_ty).size();
687                     let truncatee = sexted as u128;
688                     truncate(truncatee, size)
689                 } else {
690                     bits_discr
691                 };
692                 // Make sure we catch invalid discriminants
693                 let index = match rval.layout.ty.kind {
694                     ty::Adt(adt, _) => adt
695                         .discriminants(self.tcx.tcx)
696                         .find(|(_, var)| var.val == real_discr),
697                     ty::Generator(def_id, substs, _) => {
698                         let substs = substs.as_generator();
699                         substs
700                             .discriminants(def_id, self.tcx.tcx)
701                             .find(|(_, var)| var.val == real_discr)
702                     }
703                     _ => bug!("tagged layout for non-adt non-generator"),
704
705                 }.ok_or_else(
706                     || err_ub!(InvalidDiscriminant(raw_discr.erase_tag()))
707                 )?;
708                 (real_discr, index.0)
709             },
710             layout::DiscriminantKind::Niche {
711                 dataful_variant,
712                 ref niche_variants,
713                 niche_start,
714             } => {
715                 let variants_start = niche_variants.start().as_u32();
716                 let variants_end = niche_variants.end().as_u32();
717                 let raw_discr = raw_discr.not_undef().map_err(|_| {
718                     err_ub!(InvalidDiscriminant(ScalarMaybeUndef::Undef))
719                 })?;
720                 match raw_discr.to_bits_or_ptr(discr_val.layout.size, self) {
721                     Err(ptr) => {
722                         // The niche must be just 0 (which an inbounds pointer value never is)
723                         let ptr_valid = niche_start == 0 && variants_start == variants_end &&
724                             !self.memory.ptr_may_be_null(ptr);
725                         if !ptr_valid {
726                             throw_ub!(InvalidDiscriminant(raw_discr.erase_tag().into()))
727                         }
728                         (dataful_variant.as_u32() as u128, dataful_variant)
729                     },
730                     Ok(raw_discr) => {
731                         // We need to use machine arithmetic to get the relative variant idx:
732                         // variant_index_relative = discr_val - niche_start_val
733                         let discr_layout = self.layout_of(discr_layout.value.to_int_ty(*self.tcx))?;
734                         let discr_val = ImmTy::from_uint(raw_discr, discr_layout);
735                         let niche_start_val = ImmTy::from_uint(niche_start, discr_layout);
736                         let variant_index_relative_val = self.binary_op(
737                             mir::BinOp::Sub,
738                             discr_val,
739                             niche_start_val,
740                         )?;
741                         let variant_index_relative = variant_index_relative_val
742                             .to_scalar()?
743                             .assert_bits(discr_val.layout.size);
744                         // Check if this is in the range that indicates an actual discriminant.
745                         if variant_index_relative <= u128::from(variants_end - variants_start) {
746                             let variant_index_relative = u32::try_from(variant_index_relative)
747                                 .expect("we checked that this fits into a u32");
748                             // Then computing the absolute variant idx should not overflow any more.
749                             let variant_index = variants_start
750                                 .checked_add(variant_index_relative)
751                                 .expect("oveflow computing absolute variant idx");
752                             assert!((variant_index as usize) < rval.layout.ty
753                                 .ty_adt_def()
754                                 .expect("tagged layout for non adt")
755                                 .variants.len());
756                             (u128::from(variant_index), VariantIdx::from_u32(variant_index))
757                         } else {
758                             (u128::from(dataful_variant.as_u32()), dataful_variant)
759                         }
760                     },
761                 }
762             }
763         })
764     }
765 }