]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_const_eval/src/interpret/memory.rs
rustc_const_eval: adopt let else in more places
[rust.git] / compiler / rustc_const_eval / src / interpret / memory.rs
1 //! The memory subsystem.
2 //!
3 //! Generally, we use `Pointer` to denote memory addresses. However, some operations
4 //! have a "size"-like parameter, and they take `Scalar` for the address because
5 //! if the size is 0, then the pointer can also be a (properly aligned, non-null)
6 //! integer. It is crucial that these operations call `check_align` *before*
7 //! short-circuiting the empty case!
8
9 use std::assert_matches::assert_matches;
10 use std::borrow::Cow;
11 use std::collections::VecDeque;
12 use std::convert::TryFrom;
13 use std::fmt;
14 use std::ptr;
15
16 use rustc_ast::Mutability;
17 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
18 use rustc_middle::mir::display_allocation;
19 use rustc_middle::ty::{Instance, ParamEnv, TyCtxt};
20 use rustc_target::abi::{Align, HasDataLayout, Size, TargetDataLayout};
21
22 use super::{
23     alloc_range, AllocId, AllocMap, AllocRange, Allocation, CheckInAllocMsg, GlobalAlloc,
24     InterpResult, Machine, MayLeak, Pointer, PointerArithmetic, Provenance, Scalar,
25     ScalarMaybeUninit,
26 };
27
28 #[derive(Debug, PartialEq, Copy, Clone)]
29 pub enum MemoryKind<T> {
30     /// Stack memory. Error if deallocated except during a stack pop.
31     Stack,
32     /// Memory allocated by `caller_location` intrinsic. Error if ever deallocated.
33     CallerLocation,
34     /// Additional memory kinds a machine wishes to distinguish from the builtin ones.
35     Machine(T),
36 }
37
38 impl<T: MayLeak> MayLeak for MemoryKind<T> {
39     #[inline]
40     fn may_leak(self) -> bool {
41         match self {
42             MemoryKind::Stack => false,
43             MemoryKind::CallerLocation => true,
44             MemoryKind::Machine(k) => k.may_leak(),
45         }
46     }
47 }
48
49 impl<T: fmt::Display> fmt::Display for MemoryKind<T> {
50     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
51         match self {
52             MemoryKind::Stack => write!(f, "stack variable"),
53             MemoryKind::CallerLocation => write!(f, "caller location"),
54             MemoryKind::Machine(m) => write!(f, "{}", m),
55         }
56     }
57 }
58
59 /// Used by `get_size_and_align` to indicate whether the allocation needs to be live.
60 #[derive(Debug, Copy, Clone)]
61 pub enum AllocCheck {
62     /// Allocation must be live and not a function pointer.
63     Dereferenceable,
64     /// Allocations needs to be live, but may be a function pointer.
65     Live,
66     /// Allocation may be dead.
67     MaybeDead,
68 }
69
70 /// The value of a function pointer.
71 #[derive(Debug, Copy, Clone)]
72 pub enum FnVal<'tcx, Other> {
73     Instance(Instance<'tcx>),
74     Other(Other),
75 }
76
77 impl<'tcx, Other> FnVal<'tcx, Other> {
78     pub fn as_instance(self) -> InterpResult<'tcx, Instance<'tcx>> {
79         match self {
80             FnVal::Instance(instance) => Ok(instance),
81             FnVal::Other(_) => {
82                 throw_unsup_format!("'foreign' function pointers are not supported in this context")
83             }
84         }
85     }
86 }
87
88 // `Memory` has to depend on the `Machine` because some of its operations
89 // (e.g., `get`) call a `Machine` hook.
90 pub struct Memory<'mir, 'tcx, M: Machine<'mir, 'tcx>> {
91     /// Allocations local to this instance of the miri engine. The kind
92     /// helps ensure that the same mechanism is used for allocation and
93     /// deallocation. When an allocation is not found here, it is a
94     /// global and looked up in the `tcx` for read access. Some machines may
95     /// have to mutate this map even on a read-only access to a global (because
96     /// they do pointer provenance tracking and the allocations in `tcx` have
97     /// the wrong type), so we let the machine override this type.
98     /// Either way, if the machine allows writing to a global, doing so will
99     /// create a copy of the global allocation here.
100     // FIXME: this should not be public, but interning currently needs access to it
101     pub(super) alloc_map: M::MemoryMap,
102
103     /// Map for "extra" function pointers.
104     extra_fn_ptr_map: FxHashMap<AllocId, M::ExtraFnVal>,
105
106     /// To be able to compare pointers with null, and to check alignment for accesses
107     /// to ZSTs (where pointers may dangle), we keep track of the size even for allocations
108     /// that do not exist any more.
109     // FIXME: this should not be public, but interning currently needs access to it
110     pub(super) dead_alloc_map: FxHashMap<AllocId, (Size, Align)>,
111
112     /// Extra data added by the machine.
113     pub extra: M::MemoryExtra,
114
115     /// Lets us implement `HasDataLayout`, which is awfully convenient.
116     pub tcx: TyCtxt<'tcx>,
117 }
118
119 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> HasDataLayout for Memory<'mir, 'tcx, M> {
120     #[inline]
121     fn data_layout(&self) -> &TargetDataLayout {
122         &self.tcx.data_layout
123     }
124 }
125
126 /// A reference to some allocation that was already bounds-checked for the given region
127 /// and had the on-access machine hooks run.
128 #[derive(Copy, Clone)]
129 pub struct AllocRef<'a, 'tcx, Tag, Extra> {
130     alloc: &'a Allocation<Tag, Extra>,
131     range: AllocRange,
132     tcx: TyCtxt<'tcx>,
133     alloc_id: AllocId,
134 }
135 /// A reference to some allocation that was already bounds-checked for the given region
136 /// and had the on-access machine hooks run.
137 pub struct AllocRefMut<'a, 'tcx, Tag, Extra> {
138     alloc: &'a mut Allocation<Tag, Extra>,
139     range: AllocRange,
140     tcx: TyCtxt<'tcx>,
141     alloc_id: AllocId,
142 }
143
144 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'mir, 'tcx, M> {
145     pub fn new(tcx: TyCtxt<'tcx>, extra: M::MemoryExtra) -> Self {
146         Memory {
147             alloc_map: M::MemoryMap::default(),
148             extra_fn_ptr_map: FxHashMap::default(),
149             dead_alloc_map: FxHashMap::default(),
150             extra,
151             tcx,
152         }
153     }
154
155     /// Call this to turn untagged "global" pointers (obtained via `tcx`) into
156     /// the machine pointer to the allocation.  Must never be used
157     /// for any other pointers, nor for TLS statics.
158     ///
159     /// Using the resulting pointer represents a *direct* access to that memory
160     /// (e.g. by directly using a `static`),
161     /// as opposed to access through a pointer that was created by the program.
162     ///
163     /// This function can fail only if `ptr` points to an `extern static`.
164     #[inline]
165     pub fn global_base_pointer(
166         &self,
167         ptr: Pointer<AllocId>,
168     ) -> InterpResult<'tcx, Pointer<M::PointerTag>> {
169         // We know `offset` is relative to the allocation, so we can use `into_parts`.
170         let (alloc_id, offset) = ptr.into_parts();
171         // We need to handle `extern static`.
172         match self.tcx.get_global_alloc(alloc_id) {
173             Some(GlobalAlloc::Static(def_id)) if self.tcx.is_thread_local_static(def_id) => {
174                 bug!("global memory cannot point to thread-local static")
175             }
176             Some(GlobalAlloc::Static(def_id)) if self.tcx.is_foreign_item(def_id) => {
177                 return M::extern_static_base_pointer(self, def_id);
178             }
179             _ => {}
180         }
181         // And we need to get the tag.
182         Ok(M::tag_alloc_base_pointer(self, Pointer::new(alloc_id, offset)))
183     }
184
185     pub fn create_fn_alloc(
186         &mut self,
187         fn_val: FnVal<'tcx, M::ExtraFnVal>,
188     ) -> Pointer<M::PointerTag> {
189         let id = match fn_val {
190             FnVal::Instance(instance) => self.tcx.create_fn_alloc(instance),
191             FnVal::Other(extra) => {
192                 // FIXME(RalfJung): Should we have a cache here?
193                 let id = self.tcx.reserve_alloc_id();
194                 let old = self.extra_fn_ptr_map.insert(id, extra);
195                 assert!(old.is_none());
196                 id
197             }
198         };
199         // Functions are global allocations, so make sure we get the right base pointer.
200         // We know this is not an `extern static` so this cannot fail.
201         self.global_base_pointer(Pointer::from(id)).unwrap()
202     }
203
204     pub fn allocate(
205         &mut self,
206         size: Size,
207         align: Align,
208         kind: MemoryKind<M::MemoryKind>,
209     ) -> InterpResult<'static, Pointer<M::PointerTag>> {
210         let alloc = Allocation::uninit(size, align, M::PANIC_ON_ALLOC_FAIL)?;
211         Ok(self.allocate_with(alloc, kind))
212     }
213
214     pub fn allocate_bytes(
215         &mut self,
216         bytes: &[u8],
217         align: Align,
218         kind: MemoryKind<M::MemoryKind>,
219         mutability: Mutability,
220     ) -> Pointer<M::PointerTag> {
221         let alloc = Allocation::from_bytes(bytes, align, mutability);
222         self.allocate_with(alloc, kind)
223     }
224
225     pub fn allocate_with(
226         &mut self,
227         alloc: Allocation,
228         kind: MemoryKind<M::MemoryKind>,
229     ) -> Pointer<M::PointerTag> {
230         let id = self.tcx.reserve_alloc_id();
231         debug_assert_ne!(
232             Some(kind),
233             M::GLOBAL_KIND.map(MemoryKind::Machine),
234             "dynamically allocating global memory"
235         );
236         let alloc = M::init_allocation_extra(self, id, Cow::Owned(alloc), Some(kind));
237         self.alloc_map.insert(id, (kind, alloc.into_owned()));
238         M::tag_alloc_base_pointer(self, Pointer::from(id))
239     }
240
241     pub fn reallocate(
242         &mut self,
243         ptr: Pointer<Option<M::PointerTag>>,
244         old_size_and_align: Option<(Size, Align)>,
245         new_size: Size,
246         new_align: Align,
247         kind: MemoryKind<M::MemoryKind>,
248     ) -> InterpResult<'tcx, Pointer<M::PointerTag>> {
249         let (alloc_id, offset, ptr) = self.ptr_get_alloc(ptr)?;
250         if offset.bytes() != 0 {
251             throw_ub_format!(
252                 "reallocating {:?} which does not point to the beginning of an object",
253                 ptr
254             );
255         }
256
257         // For simplicities' sake, we implement reallocate as "alloc, copy, dealloc".
258         // This happens so rarely, the perf advantage is outweighed by the maintenance cost.
259         let new_ptr = self.allocate(new_size, new_align, kind)?;
260         let old_size = match old_size_and_align {
261             Some((size, _align)) => size,
262             None => self.get_raw(alloc_id)?.size(),
263         };
264         // This will also call the access hooks.
265         self.copy(
266             ptr.into(),
267             Align::ONE,
268             new_ptr.into(),
269             Align::ONE,
270             old_size.min(new_size),
271             /*nonoverlapping*/ true,
272         )?;
273         self.deallocate(ptr.into(), old_size_and_align, kind)?;
274
275         Ok(new_ptr)
276     }
277
278     pub fn deallocate(
279         &mut self,
280         ptr: Pointer<Option<M::PointerTag>>,
281         old_size_and_align: Option<(Size, Align)>,
282         kind: MemoryKind<M::MemoryKind>,
283     ) -> InterpResult<'tcx> {
284         let (alloc_id, offset, ptr) = self.ptr_get_alloc(ptr)?;
285         trace!("deallocating: {}", alloc_id);
286
287         if offset.bytes() != 0 {
288             throw_ub_format!(
289                 "deallocating {:?} which does not point to the beginning of an object",
290                 ptr
291             );
292         }
293
294         let Some((alloc_kind, mut alloc)) = self.alloc_map.remove(&alloc_id) else {
295             // Deallocating global memory -- always an error
296             return Err(match self.tcx.get_global_alloc(alloc_id) {
297                 Some(GlobalAlloc::Function(..)) => {
298                     err_ub_format!("deallocating {}, which is a function", alloc_id)
299                 }
300                 Some(GlobalAlloc::Static(..) | GlobalAlloc::Memory(..)) => {
301                     err_ub_format!("deallocating {}, which is static memory", alloc_id)
302                 }
303                 None => err_ub!(PointerUseAfterFree(alloc_id)),
304             }
305             .into());
306         };
307
308         if alloc.mutability == Mutability::Not {
309             throw_ub_format!("deallocating immutable allocation {}", alloc_id);
310         }
311         if alloc_kind != kind {
312             throw_ub_format!(
313                 "deallocating {}, which is {} memory, using {} deallocation operation",
314                 alloc_id,
315                 alloc_kind,
316                 kind
317             );
318         }
319         if let Some((size, align)) = old_size_and_align {
320             if size != alloc.size() || align != alloc.align {
321                 throw_ub_format!(
322                     "incorrect layout on deallocation: {} has size {} and alignment {}, but gave size {} and alignment {}",
323                     alloc_id,
324                     alloc.size().bytes(),
325                     alloc.align.bytes(),
326                     size.bytes(),
327                     align.bytes(),
328                 )
329             }
330         }
331
332         // Let the machine take some extra action
333         let size = alloc.size();
334         M::memory_deallocated(
335             &mut self.extra,
336             &mut alloc.extra,
337             ptr.provenance,
338             alloc_range(Size::ZERO, size),
339         )?;
340
341         // Don't forget to remember size and align of this now-dead allocation
342         let old = self.dead_alloc_map.insert(alloc_id, (size, alloc.align));
343         if old.is_some() {
344             bug!("Nothing can be deallocated twice");
345         }
346
347         Ok(())
348     }
349
350     /// Internal helper function to determine the allocation and offset of a pointer (if any).
351     #[inline(always)]
352     fn get_ptr_access(
353         &self,
354         ptr: Pointer<Option<M::PointerTag>>,
355         size: Size,
356         align: Align,
357     ) -> InterpResult<'tcx, Option<(AllocId, Size, Pointer<M::PointerTag>)>> {
358         let align = M::enforce_alignment(&self.extra).then_some(align);
359         self.check_and_deref_ptr(
360             ptr,
361             size,
362             align,
363             CheckInAllocMsg::MemoryAccessTest,
364             |alloc_id, offset, ptr| {
365                 let (size, align) =
366                     self.get_size_and_align(alloc_id, AllocCheck::Dereferenceable)?;
367                 Ok((size, align, (alloc_id, offset, ptr)))
368             },
369         )
370     }
371
372     /// Check if the given pointer points to live memory of given `size` and `align`
373     /// (ignoring `M::enforce_alignment`). The caller can control the error message for the
374     /// out-of-bounds case.
375     #[inline(always)]
376     pub fn check_ptr_access_align(
377         &self,
378         ptr: Pointer<Option<M::PointerTag>>,
379         size: Size,
380         align: Align,
381         msg: CheckInAllocMsg,
382     ) -> InterpResult<'tcx> {
383         self.check_and_deref_ptr(ptr, size, Some(align), msg, |alloc_id, _, _| {
384             let check = match msg {
385                 CheckInAllocMsg::DerefTest | CheckInAllocMsg::MemoryAccessTest => {
386                     AllocCheck::Dereferenceable
387                 }
388                 CheckInAllocMsg::PointerArithmeticTest | CheckInAllocMsg::InboundsTest => {
389                     AllocCheck::Live
390                 }
391             };
392             let (size, align) = self.get_size_and_align(alloc_id, check)?;
393             Ok((size, align, ()))
394         })?;
395         Ok(())
396     }
397
398     /// Low-level helper function to check if a ptr is in-bounds and potentially return a reference
399     /// to the allocation it points to. Supports both shared and mutable references, as the actual
400     /// checking is offloaded to a helper closure. `align` defines whether and which alignment check
401     /// is done. Returns `None` for size 0, and otherwise `Some` of what `alloc_size` returned.
402     fn check_and_deref_ptr<T>(
403         &self,
404         ptr: Pointer<Option<M::PointerTag>>,
405         size: Size,
406         align: Option<Align>,
407         msg: CheckInAllocMsg,
408         alloc_size: impl FnOnce(
409             AllocId,
410             Size,
411             Pointer<M::PointerTag>,
412         ) -> InterpResult<'tcx, (Size, Align, T)>,
413     ) -> InterpResult<'tcx, Option<T>> {
414         fn check_offset_align(offset: u64, align: Align) -> InterpResult<'static> {
415             if offset % align.bytes() == 0 {
416                 Ok(())
417             } else {
418                 // The biggest power of two through which `offset` is divisible.
419                 let offset_pow2 = 1 << offset.trailing_zeros();
420                 throw_ub!(AlignmentCheckFailed {
421                     has: Align::from_bytes(offset_pow2).unwrap(),
422                     required: align,
423                 })
424             }
425         }
426
427         // Extract from the pointer an `Option<AllocId>` and an offset, which is relative to the
428         // allocation or (if that is `None`) an absolute address.
429         let ptr_or_addr = if size.bytes() == 0 {
430             // Let's see what we can do, but don't throw errors if there's nothing there.
431             self.ptr_try_get_alloc(ptr)
432         } else {
433             // A "real" access, we insist on getting an `AllocId`.
434             Ok(self.ptr_get_alloc(ptr)?)
435         };
436         Ok(match ptr_or_addr {
437             Err(addr) => {
438                 // No memory is actually being accessed.
439                 debug_assert!(size.bytes() == 0);
440                 // Must be non-null.
441                 if addr == 0 {
442                     throw_ub!(DanglingIntPointer(0, msg))
443                 }
444                 // Must be aligned.
445                 if let Some(align) = align {
446                     check_offset_align(addr, align)?;
447                 }
448                 None
449             }
450             Ok((alloc_id, offset, ptr)) => {
451                 let (alloc_size, alloc_align, ret_val) = alloc_size(alloc_id, offset, ptr)?;
452                 // Test bounds. This also ensures non-null.
453                 // It is sufficient to check this for the end pointer. Also check for overflow!
454                 if offset.checked_add(size, &self.tcx).map_or(true, |end| end > alloc_size) {
455                     throw_ub!(PointerOutOfBounds {
456                         alloc_id,
457                         alloc_size,
458                         ptr_offset: self.machine_usize_to_isize(offset.bytes()),
459                         ptr_size: size,
460                         msg,
461                     })
462                 }
463                 // Test align. Check this last; if both bounds and alignment are violated
464                 // we want the error to be about the bounds.
465                 if let Some(align) = align {
466                     if M::force_int_for_alignment_check(&self.extra) {
467                         let addr = Scalar::from_pointer(ptr, &self.tcx)
468                             .to_machine_usize(&self.tcx)
469                             .expect("ptr-to-int cast for align check should never fail");
470                         check_offset_align(addr, align)?;
471                     } else {
472                         // Check allocation alignment and offset alignment.
473                         if alloc_align.bytes() < align.bytes() {
474                             throw_ub!(AlignmentCheckFailed { has: alloc_align, required: align });
475                         }
476                         check_offset_align(offset.bytes(), align)?;
477                     }
478                 }
479
480                 // We can still be zero-sized in this branch, in which case we have to
481                 // return `None`.
482                 if size.bytes() == 0 { None } else { Some(ret_val) }
483             }
484         })
485     }
486
487     /// Test if the pointer might be null.
488     pub fn ptr_may_be_null(&self, ptr: Pointer<Option<M::PointerTag>>) -> bool {
489         match self.ptr_try_get_alloc(ptr) {
490             Ok((alloc_id, offset, _)) => {
491                 let (size, _align) = self
492                     .get_size_and_align(alloc_id, AllocCheck::MaybeDead)
493                     .expect("alloc info with MaybeDead cannot fail");
494                 // If the pointer is out-of-bounds, it may be null.
495                 // Note that one-past-the-end (offset == size) is still inbounds, and never null.
496                 offset > size
497             }
498             Err(offset) => offset == 0,
499         }
500     }
501 }
502
503 /// Allocation accessors
504 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'mir, 'tcx, M> {
505     /// Helper function to obtain a global (tcx) allocation.
506     /// This attempts to return a reference to an existing allocation if
507     /// one can be found in `tcx`. That, however, is only possible if `tcx` and
508     /// this machine use the same pointer tag, so it is indirected through
509     /// `M::tag_allocation`.
510     fn get_global_alloc(
511         &self,
512         id: AllocId,
513         is_write: bool,
514     ) -> InterpResult<'tcx, Cow<'tcx, Allocation<M::PointerTag, M::AllocExtra>>> {
515         let (alloc, def_id) = match self.tcx.get_global_alloc(id) {
516             Some(GlobalAlloc::Memory(mem)) => {
517                 // Memory of a constant or promoted or anonymous memory referenced by a static.
518                 (mem, None)
519             }
520             Some(GlobalAlloc::Function(..)) => throw_ub!(DerefFunctionPointer(id)),
521             None => throw_ub!(PointerUseAfterFree(id)),
522             Some(GlobalAlloc::Static(def_id)) => {
523                 assert!(self.tcx.is_static(def_id));
524                 assert!(!self.tcx.is_thread_local_static(def_id));
525                 // Notice that every static has two `AllocId` that will resolve to the same
526                 // thing here: one maps to `GlobalAlloc::Static`, this is the "lazy" ID,
527                 // and the other one is maps to `GlobalAlloc::Memory`, this is returned by
528                 // `eval_static_initializer` and it is the "resolved" ID.
529                 // The resolved ID is never used by the interpreted program, it is hidden.
530                 // This is relied upon for soundness of const-patterns; a pointer to the resolved
531                 // ID would "sidestep" the checks that make sure consts do not point to statics!
532                 // The `GlobalAlloc::Memory` branch here is still reachable though; when a static
533                 // contains a reference to memory that was created during its evaluation (i.e., not
534                 // to another static), those inner references only exist in "resolved" form.
535                 if self.tcx.is_foreign_item(def_id) {
536                     throw_unsup!(ReadExternStatic(def_id));
537                 }
538
539                 (self.tcx.eval_static_initializer(def_id)?, Some(def_id))
540             }
541         };
542         M::before_access_global(&self.extra, id, alloc, def_id, is_write)?;
543         let alloc = Cow::Borrowed(alloc);
544         // We got tcx memory. Let the machine initialize its "extra" stuff.
545         let alloc = M::init_allocation_extra(
546             self,
547             id, // always use the ID we got as input, not the "hidden" one.
548             alloc,
549             M::GLOBAL_KIND.map(MemoryKind::Machine),
550         );
551         Ok(alloc)
552     }
553
554     /// Gives raw access to the `Allocation`, without bounds or alignment checks.
555     /// The caller is responsible for calling the access hooks!
556     fn get_raw(
557         &self,
558         id: AllocId,
559     ) -> InterpResult<'tcx, &Allocation<M::PointerTag, M::AllocExtra>> {
560         // The error type of the inner closure here is somewhat funny.  We have two
561         // ways of "erroring": An actual error, or because we got a reference from
562         // `get_global_alloc` that we can actually use directly without inserting anything anywhere.
563         // So the error type is `InterpResult<'tcx, &Allocation<M::PointerTag>>`.
564         let a = self.alloc_map.get_or(id, || {
565             let alloc = self.get_global_alloc(id, /*is_write*/ false).map_err(Err)?;
566             match alloc {
567                 Cow::Borrowed(alloc) => {
568                     // We got a ref, cheaply return that as an "error" so that the
569                     // map does not get mutated.
570                     Err(Ok(alloc))
571                 }
572                 Cow::Owned(alloc) => {
573                     // Need to put it into the map and return a ref to that
574                     let kind = M::GLOBAL_KIND.expect(
575                         "I got a global allocation that I have to copy but the machine does \
576                             not expect that to happen",
577                     );
578                     Ok((MemoryKind::Machine(kind), alloc))
579                 }
580             }
581         });
582         // Now unpack that funny error type
583         match a {
584             Ok(a) => Ok(&a.1),
585             Err(a) => a,
586         }
587     }
588
589     /// "Safe" (bounds and align-checked) allocation access.
590     pub fn get<'a>(
591         &'a self,
592         ptr: Pointer<Option<M::PointerTag>>,
593         size: Size,
594         align: Align,
595     ) -> InterpResult<'tcx, Option<AllocRef<'a, 'tcx, M::PointerTag, M::AllocExtra>>> {
596         let align = M::enforce_alignment(&self.extra).then_some(align);
597         let ptr_and_alloc = self.check_and_deref_ptr(
598             ptr,
599             size,
600             align,
601             CheckInAllocMsg::MemoryAccessTest,
602             |alloc_id, offset, ptr| {
603                 let alloc = self.get_raw(alloc_id)?;
604                 Ok((alloc.size(), alloc.align, (alloc_id, offset, ptr, alloc)))
605             },
606         )?;
607         if let Some((alloc_id, offset, ptr, alloc)) = ptr_and_alloc {
608             let range = alloc_range(offset, size);
609             M::memory_read(&self.extra, &alloc.extra, ptr.provenance, range)?;
610             Ok(Some(AllocRef { alloc, range, tcx: self.tcx, alloc_id }))
611         } else {
612             // Even in this branch we have to be sure that we actually access the allocation, in
613             // order to ensure that `static FOO: Type = FOO;` causes a cycle error instead of
614             // magically pulling *any* ZST value from the ether. However, the `get_raw` above is
615             // always called when `ptr` has an `AllocId`.
616             Ok(None)
617         }
618     }
619
620     /// Return the `extra` field of the given allocation.
621     pub fn get_alloc_extra<'a>(&'a self, id: AllocId) -> InterpResult<'tcx, &'a M::AllocExtra> {
622         Ok(&self.get_raw(id)?.extra)
623     }
624
625     /// Gives raw mutable access to the `Allocation`, without bounds or alignment checks.
626     /// The caller is responsible for calling the access hooks!
627     ///
628     /// Also returns a ptr to `self.extra` so that the caller can use it in parallel with the
629     /// allocation.
630     fn get_raw_mut(
631         &mut self,
632         id: AllocId,
633     ) -> InterpResult<'tcx, (&mut Allocation<M::PointerTag, M::AllocExtra>, &mut M::MemoryExtra)>
634     {
635         // We have "NLL problem case #3" here, which cannot be worked around without loss of
636         // efficiency even for the common case where the key is in the map.
637         // <https://rust-lang.github.io/rfcs/2094-nll.html#problem-case-3-conditional-control-flow-across-functions>
638         // (Cannot use `get_mut_or` since `get_global_alloc` needs `&self`.)
639         if self.alloc_map.get_mut(id).is_none() {
640             // Slow path.
641             // Allocation not found locally, go look global.
642             let alloc = self.get_global_alloc(id, /*is_write*/ true)?;
643             let kind = M::GLOBAL_KIND.expect(
644                 "I got a global allocation that I have to copy but the machine does \
645                     not expect that to happen",
646             );
647             self.alloc_map.insert(id, (MemoryKind::Machine(kind), alloc.into_owned()));
648         }
649
650         let (_kind, alloc) = self.alloc_map.get_mut(id).unwrap();
651         if alloc.mutability == Mutability::Not {
652             throw_ub!(WriteToReadOnly(id))
653         }
654         Ok((alloc, &mut self.extra))
655     }
656
657     /// "Safe" (bounds and align-checked) allocation access.
658     pub fn get_mut<'a>(
659         &'a mut self,
660         ptr: Pointer<Option<M::PointerTag>>,
661         size: Size,
662         align: Align,
663     ) -> InterpResult<'tcx, Option<AllocRefMut<'a, 'tcx, M::PointerTag, M::AllocExtra>>> {
664         let parts = self.get_ptr_access(ptr, size, align)?;
665         if let Some((alloc_id, offset, ptr)) = parts {
666             let tcx = self.tcx;
667             // FIXME: can we somehow avoid looking up the allocation twice here?
668             // We cannot call `get_raw_mut` inside `check_and_deref_ptr` as that would duplicate `&mut self`.
669             let (alloc, extra) = self.get_raw_mut(alloc_id)?;
670             let range = alloc_range(offset, size);
671             M::memory_written(extra, &mut alloc.extra, ptr.provenance, range)?;
672             Ok(Some(AllocRefMut { alloc, range, tcx, alloc_id }))
673         } else {
674             Ok(None)
675         }
676     }
677
678     /// Return the `extra` field of the given allocation.
679     pub fn get_alloc_extra_mut<'a>(
680         &'a mut self,
681         id: AllocId,
682     ) -> InterpResult<'tcx, (&'a mut M::AllocExtra, &'a mut M::MemoryExtra)> {
683         let (alloc, memory_extra) = self.get_raw_mut(id)?;
684         Ok((&mut alloc.extra, memory_extra))
685     }
686
687     /// Obtain the size and alignment of an allocation, even if that allocation has
688     /// been deallocated.
689     ///
690     /// If `liveness` is `AllocCheck::MaybeDead`, this function always returns `Ok`.
691     pub fn get_size_and_align(
692         &self,
693         id: AllocId,
694         liveness: AllocCheck,
695     ) -> InterpResult<'static, (Size, Align)> {
696         // # Regular allocations
697         // Don't use `self.get_raw` here as that will
698         // a) cause cycles in case `id` refers to a static
699         // b) duplicate a global's allocation in miri
700         if let Some((_, alloc)) = self.alloc_map.get(id) {
701             return Ok((alloc.size(), alloc.align));
702         }
703
704         // # Function pointers
705         // (both global from `alloc_map` and local from `extra_fn_ptr_map`)
706         if self.get_fn_alloc(id).is_some() {
707             return if let AllocCheck::Dereferenceable = liveness {
708                 // The caller requested no function pointers.
709                 throw_ub!(DerefFunctionPointer(id))
710             } else {
711                 Ok((Size::ZERO, Align::ONE))
712             };
713         }
714
715         // # Statics
716         // Can't do this in the match argument, we may get cycle errors since the lock would
717         // be held throughout the match.
718         match self.tcx.get_global_alloc(id) {
719             Some(GlobalAlloc::Static(did)) => {
720                 assert!(!self.tcx.is_thread_local_static(did));
721                 // Use size and align of the type.
722                 let ty = self.tcx.type_of(did);
723                 let layout = self.tcx.layout_of(ParamEnv::empty().and(ty)).unwrap();
724                 Ok((layout.size, layout.align.abi))
725             }
726             Some(GlobalAlloc::Memory(alloc)) => {
727                 // Need to duplicate the logic here, because the global allocations have
728                 // different associated types than the interpreter-local ones.
729                 Ok((alloc.size(), alloc.align))
730             }
731             Some(GlobalAlloc::Function(_)) => bug!("We already checked function pointers above"),
732             // The rest must be dead.
733             None => {
734                 if let AllocCheck::MaybeDead = liveness {
735                     // Deallocated pointers are allowed, we should be able to find
736                     // them in the map.
737                     Ok(*self
738                         .dead_alloc_map
739                         .get(&id)
740                         .expect("deallocated pointers should all be recorded in `dead_alloc_map`"))
741                 } else {
742                     throw_ub!(PointerUseAfterFree(id))
743                 }
744             }
745         }
746     }
747
748     fn get_fn_alloc(&self, id: AllocId) -> Option<FnVal<'tcx, M::ExtraFnVal>> {
749         if let Some(extra) = self.extra_fn_ptr_map.get(&id) {
750             Some(FnVal::Other(*extra))
751         } else {
752             match self.tcx.get_global_alloc(id) {
753                 Some(GlobalAlloc::Function(instance)) => Some(FnVal::Instance(instance)),
754                 _ => None,
755             }
756         }
757     }
758
759     pub fn get_fn(
760         &self,
761         ptr: Pointer<Option<M::PointerTag>>,
762     ) -> InterpResult<'tcx, FnVal<'tcx, M::ExtraFnVal>> {
763         trace!("get_fn({:?})", ptr);
764         let (alloc_id, offset, _ptr) = self.ptr_get_alloc(ptr)?;
765         if offset.bytes() != 0 {
766             throw_ub!(InvalidFunctionPointer(Pointer::new(alloc_id, offset)))
767         }
768         self.get_fn_alloc(alloc_id)
769             .ok_or_else(|| err_ub!(InvalidFunctionPointer(Pointer::new(alloc_id, offset))).into())
770     }
771
772     pub fn mark_immutable(&mut self, id: AllocId) -> InterpResult<'tcx> {
773         self.get_raw_mut(id)?.0.mutability = Mutability::Not;
774         Ok(())
775     }
776
777     /// Create a lazy debug printer that prints the given allocation and all allocations it points
778     /// to, recursively.
779     #[must_use]
780     pub fn dump_alloc<'a>(&'a self, id: AllocId) -> DumpAllocs<'a, 'mir, 'tcx, M> {
781         self.dump_allocs(vec![id])
782     }
783
784     /// Create a lazy debug printer for a list of allocations and all allocations they point to,
785     /// recursively.
786     #[must_use]
787     pub fn dump_allocs<'a>(&'a self, mut allocs: Vec<AllocId>) -> DumpAllocs<'a, 'mir, 'tcx, M> {
788         allocs.sort();
789         allocs.dedup();
790         DumpAllocs { mem: self, allocs }
791     }
792
793     /// Print leaked memory. Allocations reachable from `static_roots` or a `Global` allocation
794     /// are not considered leaked. Leaks whose kind `may_leak()` returns true are not reported.
795     pub fn leak_report(&self, static_roots: &[AllocId]) -> usize {
796         // Collect the set of allocations that are *reachable* from `Global` allocations.
797         let reachable = {
798             let mut reachable = FxHashSet::default();
799             let global_kind = M::GLOBAL_KIND.map(MemoryKind::Machine);
800             let mut todo: Vec<_> = self.alloc_map.filter_map_collect(move |&id, &(kind, _)| {
801                 if Some(kind) == global_kind { Some(id) } else { None }
802             });
803             todo.extend(static_roots);
804             while let Some(id) = todo.pop() {
805                 if reachable.insert(id) {
806                     // This is a new allocation, add its relocations to `todo`.
807                     if let Some((_, alloc)) = self.alloc_map.get(id) {
808                         todo.extend(alloc.relocations().values().map(|tag| tag.get_alloc_id()));
809                     }
810                 }
811             }
812             reachable
813         };
814
815         // All allocations that are *not* `reachable` and *not* `may_leak` are considered leaking.
816         let leaks: Vec<_> = self.alloc_map.filter_map_collect(|&id, &(kind, _)| {
817             if kind.may_leak() || reachable.contains(&id) { None } else { Some(id) }
818         });
819         let n = leaks.len();
820         if n > 0 {
821             eprintln!("The following memory was leaked: {:?}", self.dump_allocs(leaks));
822         }
823         n
824     }
825
826     /// This is used by [priroda](https://github.com/oli-obk/priroda)
827     pub fn alloc_map(&self) -> &M::MemoryMap {
828         &self.alloc_map
829     }
830 }
831
832 #[doc(hidden)]
833 /// There's no way to use this directly, it's just a helper struct for the `dump_alloc(s)` methods.
834 pub struct DumpAllocs<'a, 'mir, 'tcx, M: Machine<'mir, 'tcx>> {
835     mem: &'a Memory<'mir, 'tcx, M>,
836     allocs: Vec<AllocId>,
837 }
838
839 impl<'a, 'mir, 'tcx, M: Machine<'mir, 'tcx>> std::fmt::Debug for DumpAllocs<'a, 'mir, 'tcx, M> {
840     fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
841         // Cannot be a closure because it is generic in `Tag`, `Extra`.
842         fn write_allocation_track_relocs<'tcx, Tag: Provenance, Extra>(
843             fmt: &mut std::fmt::Formatter<'_>,
844             tcx: TyCtxt<'tcx>,
845             allocs_to_print: &mut VecDeque<AllocId>,
846             alloc: &Allocation<Tag, Extra>,
847         ) -> std::fmt::Result {
848             for alloc_id in alloc.relocations().values().map(|tag| tag.get_alloc_id()) {
849                 allocs_to_print.push_back(alloc_id);
850             }
851             write!(fmt, "{}", display_allocation(tcx, alloc))
852         }
853
854         let mut allocs_to_print: VecDeque<_> = self.allocs.iter().copied().collect();
855         // `allocs_printed` contains all allocations that we have already printed.
856         let mut allocs_printed = FxHashSet::default();
857
858         while let Some(id) = allocs_to_print.pop_front() {
859             if !allocs_printed.insert(id) {
860                 // Already printed, so skip this.
861                 continue;
862             }
863
864             write!(fmt, "{}", id)?;
865             match self.mem.alloc_map.get(id) {
866                 Some(&(kind, ref alloc)) => {
867                     // normal alloc
868                     write!(fmt, " ({}, ", kind)?;
869                     write_allocation_track_relocs(
870                         &mut *fmt,
871                         self.mem.tcx,
872                         &mut allocs_to_print,
873                         alloc,
874                     )?;
875                 }
876                 None => {
877                     // global alloc
878                     match self.mem.tcx.get_global_alloc(id) {
879                         Some(GlobalAlloc::Memory(alloc)) => {
880                             write!(fmt, " (unchanged global, ")?;
881                             write_allocation_track_relocs(
882                                 &mut *fmt,
883                                 self.mem.tcx,
884                                 &mut allocs_to_print,
885                                 alloc,
886                             )?;
887                         }
888                         Some(GlobalAlloc::Function(func)) => {
889                             write!(fmt, " (fn: {})", func)?;
890                         }
891                         Some(GlobalAlloc::Static(did)) => {
892                             write!(fmt, " (static: {})", self.mem.tcx.def_path_str(did))?;
893                         }
894                         None => {
895                             write!(fmt, " (deallocated)")?;
896                         }
897                     }
898                 }
899             }
900             writeln!(fmt)?;
901         }
902         Ok(())
903     }
904 }
905
906 /// Reading and writing.
907 impl<'tcx, 'a, Tag: Provenance, Extra> AllocRefMut<'a, 'tcx, Tag, Extra> {
908     pub fn write_scalar(
909         &mut self,
910         range: AllocRange,
911         val: ScalarMaybeUninit<Tag>,
912     ) -> InterpResult<'tcx> {
913         Ok(self
914             .alloc
915             .write_scalar(&self.tcx, self.range.subrange(range), val)
916             .map_err(|e| e.to_interp_error(self.alloc_id))?)
917     }
918
919     pub fn write_ptr_sized(
920         &mut self,
921         offset: Size,
922         val: ScalarMaybeUninit<Tag>,
923     ) -> InterpResult<'tcx> {
924         self.write_scalar(alloc_range(offset, self.tcx.data_layout().pointer_size), val)
925     }
926 }
927
928 impl<'tcx, 'a, Tag: Provenance, Extra> AllocRef<'a, 'tcx, Tag, Extra> {
929     pub fn read_scalar(&self, range: AllocRange) -> InterpResult<'tcx, ScalarMaybeUninit<Tag>> {
930         Ok(self
931             .alloc
932             .read_scalar(&self.tcx, self.range.subrange(range))
933             .map_err(|e| e.to_interp_error(self.alloc_id))?)
934     }
935
936     pub fn read_ptr_sized(&self, offset: Size) -> InterpResult<'tcx, ScalarMaybeUninit<Tag>> {
937         self.read_scalar(alloc_range(offset, self.tcx.data_layout().pointer_size))
938     }
939
940     pub fn check_bytes(&self, range: AllocRange, allow_uninit_and_ptr: bool) -> InterpResult<'tcx> {
941         Ok(self
942             .alloc
943             .check_bytes(&self.tcx, self.range.subrange(range), allow_uninit_and_ptr)
944             .map_err(|e| e.to_interp_error(self.alloc_id))?)
945     }
946 }
947
948 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'mir, 'tcx, M> {
949     /// Reads the given number of bytes from memory. Returns them as a slice.
950     ///
951     /// Performs appropriate bounds checks.
952     pub fn read_bytes(
953         &self,
954         ptr: Pointer<Option<M::PointerTag>>,
955         size: Size,
956     ) -> InterpResult<'tcx, &[u8]> {
957         let Some(alloc_ref) = self.get(ptr, size, Align::ONE)? else {
958             // zero-sized access
959             return Ok(&[]);
960         };
961         // Side-step AllocRef and directly access the underlying bytes more efficiently.
962         // (We are staying inside the bounds here so all is good.)
963         Ok(alloc_ref
964             .alloc
965             .get_bytes(&alloc_ref.tcx, alloc_ref.range)
966             .map_err(|e| e.to_interp_error(alloc_ref.alloc_id))?)
967     }
968
969     /// Writes the given stream of bytes into memory.
970     ///
971     /// Performs appropriate bounds checks.
972     pub fn write_bytes(
973         &mut self,
974         ptr: Pointer<Option<M::PointerTag>>,
975         src: impl IntoIterator<Item = u8>,
976     ) -> InterpResult<'tcx> {
977         let mut src = src.into_iter();
978         let (lower, upper) = src.size_hint();
979         let len = upper.expect("can only write bounded iterators");
980         assert_eq!(lower, len, "can only write iterators with a precise length");
981
982         let size = Size::from_bytes(len);
983         let Some(alloc_ref) = self.get_mut(ptr, size, Align::ONE)? else {
984             // zero-sized access
985             assert_matches!(
986                 src.next(),
987                 None,
988                 "iterator said it was empty but returned an element"
989             );
990             return Ok(());
991         };
992
993         // Side-step AllocRef and directly access the underlying bytes more efficiently.
994         // (We are staying inside the bounds here so all is good.)
995         let alloc_id = alloc_ref.alloc_id;
996         let bytes = alloc_ref
997             .alloc
998             .get_bytes_mut(&alloc_ref.tcx, alloc_ref.range)
999             .map_err(move |e| e.to_interp_error(alloc_id))?;
1000         // `zip` would stop when the first iterator ends; we want to definitely
1001         // cover all of `bytes`.
1002         for dest in bytes {
1003             *dest = src.next().expect("iterator was shorter than it said it would be");
1004         }
1005         assert_matches!(src.next(), None, "iterator was longer than it said it would be");
1006         Ok(())
1007     }
1008
1009     pub fn copy(
1010         &mut self,
1011         src: Pointer<Option<M::PointerTag>>,
1012         src_align: Align,
1013         dest: Pointer<Option<M::PointerTag>>,
1014         dest_align: Align,
1015         size: Size,
1016         nonoverlapping: bool,
1017     ) -> InterpResult<'tcx> {
1018         self.copy_repeatedly(src, src_align, dest, dest_align, size, 1, nonoverlapping)
1019     }
1020
1021     pub fn copy_repeatedly(
1022         &mut self,
1023         src: Pointer<Option<M::PointerTag>>,
1024         src_align: Align,
1025         dest: Pointer<Option<M::PointerTag>>,
1026         dest_align: Align,
1027         size: Size,
1028         num_copies: u64,
1029         nonoverlapping: bool,
1030     ) -> InterpResult<'tcx> {
1031         let tcx = self.tcx;
1032         // We need to do our own bounds-checks.
1033         let src_parts = self.get_ptr_access(src, size, src_align)?;
1034         let dest_parts = self.get_ptr_access(dest, size * num_copies, dest_align)?; // `Size` multiplication
1035
1036         // FIXME: we look up both allocations twice here, once ebfore for the `check_ptr_access`
1037         // and once below to get the underlying `&[mut] Allocation`.
1038
1039         // Source alloc preparations and access hooks.
1040         let Some((src_alloc_id, src_offset, src)) = src_parts else {
1041             // Zero-sized *source*, that means dst is also zero-sized and we have nothing to do.
1042             return Ok(());
1043         };
1044         let src_alloc = self.get_raw(src_alloc_id)?;
1045         let src_range = alloc_range(src_offset, size);
1046         M::memory_read(&self.extra, &src_alloc.extra, src.provenance, src_range)?;
1047         // We need the `dest` ptr for the next operation, so we get it now.
1048         // We already did the source checks and called the hooks so we are good to return early.
1049         let Some((dest_alloc_id, dest_offset, dest)) = dest_parts else {
1050             // Zero-sized *destiantion*.
1051             return Ok(());
1052         };
1053
1054         // This checks relocation edges on the src, which needs to happen before
1055         // `prepare_relocation_copy`.
1056         let src_bytes = src_alloc
1057             .get_bytes_with_uninit_and_ptr(&tcx, src_range)
1058             .map_err(|e| e.to_interp_error(src_alloc_id))?
1059             .as_ptr(); // raw ptr, so we can also get a ptr to the destination allocation
1060         // first copy the relocations to a temporary buffer, because
1061         // `get_bytes_mut` will clear the relocations, which is correct,
1062         // since we don't want to keep any relocations at the target.
1063         let relocations =
1064             src_alloc.prepare_relocation_copy(self, src_range, dest_offset, num_copies);
1065         // Prepare a copy of the initialization mask.
1066         let compressed = src_alloc.compress_uninit_range(src_range);
1067
1068         // Destination alloc preparations and access hooks.
1069         let (dest_alloc, extra) = self.get_raw_mut(dest_alloc_id)?;
1070         let dest_range = alloc_range(dest_offset, size * num_copies);
1071         M::memory_written(extra, &mut dest_alloc.extra, dest.provenance, dest_range)?;
1072         let dest_bytes = dest_alloc
1073             .get_bytes_mut_ptr(&tcx, dest_range)
1074             .map_err(|e| e.to_interp_error(dest_alloc_id))?
1075             .as_mut_ptr();
1076
1077         if compressed.no_bytes_init() {
1078             // Fast path: If all bytes are `uninit` then there is nothing to copy. The target range
1079             // is marked as uninitialized but we otherwise omit changing the byte representation which may
1080             // be arbitrary for uninitialized bytes.
1081             // This also avoids writing to the target bytes so that the backing allocation is never
1082             // touched if the bytes stay uninitialized for the whole interpreter execution. On contemporary
1083             // operating system this can avoid physically allocating the page.
1084             dest_alloc.mark_init(dest_range, false); // `Size` multiplication
1085             dest_alloc.mark_relocation_range(relocations);
1086             return Ok(());
1087         }
1088
1089         // SAFE: The above indexing would have panicked if there weren't at least `size` bytes
1090         // behind `src` and `dest`. Also, we use the overlapping-safe `ptr::copy` if `src` and
1091         // `dest` could possibly overlap.
1092         // The pointers above remain valid even if the `HashMap` table is moved around because they
1093         // point into the `Vec` storing the bytes.
1094         unsafe {
1095             if src_alloc_id == dest_alloc_id {
1096                 if nonoverlapping {
1097                     // `Size` additions
1098                     if (src_offset <= dest_offset && src_offset + size > dest_offset)
1099                         || (dest_offset <= src_offset && dest_offset + size > src_offset)
1100                     {
1101                         throw_ub_format!("copy_nonoverlapping called on overlapping ranges")
1102                     }
1103                 }
1104
1105                 for i in 0..num_copies {
1106                     ptr::copy(
1107                         src_bytes,
1108                         dest_bytes.add((size * i).bytes_usize()), // `Size` multiplication
1109                         size.bytes_usize(),
1110                     );
1111                 }
1112             } else {
1113                 for i in 0..num_copies {
1114                     ptr::copy_nonoverlapping(
1115                         src_bytes,
1116                         dest_bytes.add((size * i).bytes_usize()), // `Size` multiplication
1117                         size.bytes_usize(),
1118                     );
1119                 }
1120             }
1121         }
1122
1123         // now fill in all the "init" data
1124         dest_alloc.mark_compressed_init_range(
1125             &compressed,
1126             alloc_range(dest_offset, size), // just a single copy (i.e., not full `dest_range`)
1127             num_copies,
1128         );
1129         // copy the relocations to the destination
1130         dest_alloc.mark_relocation_range(relocations);
1131
1132         Ok(())
1133     }
1134 }
1135
1136 /// Machine pointer introspection.
1137 impl<'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'mir, 'tcx, M> {
1138     pub fn scalar_to_ptr(&self, scalar: Scalar<M::PointerTag>) -> Pointer<Option<M::PointerTag>> {
1139         // We use `to_bits_or_ptr_internal` since we are just implementing the method people need to
1140         // call to force getting out a pointer.
1141         match scalar.to_bits_or_ptr_internal(self.pointer_size()) {
1142             Err(ptr) => ptr.into(),
1143             Ok(bits) => {
1144                 let addr = u64::try_from(bits).unwrap();
1145                 let ptr = M::ptr_from_addr(&self, addr);
1146                 if addr == 0 {
1147                     assert!(ptr.provenance.is_none(), "null pointer can never have an AllocId");
1148                 }
1149                 ptr
1150             }
1151         }
1152     }
1153
1154     /// Turning a "maybe pointer" into a proper pointer (and some information
1155     /// about where it points), or an absolute address.
1156     pub fn ptr_try_get_alloc(
1157         &self,
1158         ptr: Pointer<Option<M::PointerTag>>,
1159     ) -> Result<(AllocId, Size, Pointer<M::PointerTag>), u64> {
1160         match ptr.into_pointer_or_addr() {
1161             Ok(ptr) => {
1162                 let (alloc_id, offset) = M::ptr_get_alloc(self, ptr);
1163                 Ok((alloc_id, offset, ptr))
1164             }
1165             Err(addr) => Err(addr.bytes()),
1166         }
1167     }
1168
1169     /// Turning a "maybe pointer" into a proper pointer (and some information about where it points).
1170     #[inline(always)]
1171     pub fn ptr_get_alloc(
1172         &self,
1173         ptr: Pointer<Option<M::PointerTag>>,
1174     ) -> InterpResult<'tcx, (AllocId, Size, Pointer<M::PointerTag>)> {
1175         self.ptr_try_get_alloc(ptr).map_err(|offset| {
1176             err_ub!(DanglingIntPointer(offset, CheckInAllocMsg::InboundsTest)).into()
1177         })
1178     }
1179 }