]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/interpret/machine.rs
Remove ord lang item
[rust.git] / src / librustc_mir / interpret / machine.rs
1 //! This module contains everything needed to instantiate an interpreter.
2 //! This separation exists to ensure that no fancy miri features like
3 //! interpreting common C functions leak into CTFE.
4
5 use std::borrow::{Borrow, Cow};
6 use std::hash::Hash;
7
8 use rustc::hir::def_id::DefId;
9 use rustc::mir;
10 use rustc::ty::{self, Ty, TyCtxt};
11 use syntax_pos::Span;
12
13 use super::{
14     Allocation, AllocId, InterpResult, Scalar, AllocationExtra,
15     InterpCx, PlaceTy, OpTy, ImmTy, MemoryKind, Pointer, Memory,
16     Frame, Operand,
17 };
18
19 /// Data returned by Machine::stack_pop,
20 /// to provide further control over the popping of the stack frame
21 #[derive(Eq, PartialEq, Debug, Copy, Clone)]
22 pub enum StackPopInfo {
23     /// Indicates that no special handling should be
24     /// done - we'll either return normally or unwind
25     /// based on the terminator for the function
26     /// we're leaving.
27     Normal,
28
29     /// Indicates that we should stop unwinding,
30     /// as we've reached a catch frame
31     StopUnwinding
32 }
33
34 /// Whether this kind of memory is allowed to leak
35 pub trait MayLeak: Copy {
36     fn may_leak(self) -> bool;
37 }
38
39 /// The functionality needed by memory to manage its allocations
40 pub trait AllocMap<K: Hash + Eq, V> {
41     /// Tests if the map contains the given key.
42     /// Deliberately takes `&mut` because that is sufficient, and some implementations
43     /// can be more efficient then (using `RefCell::get_mut`).
44     fn contains_key<Q: ?Sized + Hash + Eq>(&mut self, k: &Q) -> bool
45         where K: Borrow<Q>;
46
47     /// Inserts a new entry into the map.
48     fn insert(&mut self, k: K, v: V) -> Option<V>;
49
50     /// Removes an entry from the map.
51     fn remove<Q: ?Sized + Hash + Eq>(&mut self, k: &Q) -> Option<V>
52         where K: Borrow<Q>;
53
54     /// Returns data based the keys and values in the map.
55     fn filter_map_collect<T>(&self, f: impl FnMut(&K, &V) -> Option<T>) -> Vec<T>;
56
57     /// Returns a reference to entry `k`. If no such entry exists, call
58     /// `vacant` and either forward its error, or add its result to the map
59     /// and return a reference to *that*.
60     fn get_or<E>(
61         &self,
62         k: K,
63         vacant: impl FnOnce() -> Result<V, E>
64     ) -> Result<&V, E>;
65
66     /// Returns a mutable reference to entry `k`. If no such entry exists, call
67     /// `vacant` and either forward its error, or add its result to the map
68     /// and return a reference to *that*.
69     fn get_mut_or<E>(
70         &mut self,
71         k: K,
72         vacant: impl FnOnce() -> Result<V, E>
73     ) -> Result<&mut V, E>;
74
75     /// Read-only lookup.
76     fn get(&self, k: K) -> Option<&V> {
77         self.get_or(k, || Err(())).ok()
78     }
79
80     /// Mutable lookup.
81     fn get_mut(&mut self, k: K) -> Option<&mut V> {
82         self.get_mut_or(k, || Err(())).ok()
83     }
84 }
85
86 /// Methods of this trait signifies a point where CTFE evaluation would fail
87 /// and some use case dependent behaviour can instead be applied.
88 pub trait Machine<'mir, 'tcx>: Sized {
89     /// Additional memory kinds a machine wishes to distinguish from the builtin ones
90     type MemoryKinds: ::std::fmt::Debug + MayLeak + Eq + 'static;
91
92     /// Tag tracked alongside every pointer. This is used to implement "Stacked Borrows"
93     /// <https://www.ralfj.de/blog/2018/08/07/stacked-borrows.html>.
94     /// The `default()` is used for pointers to consts, statics, vtables and functions.
95     type PointerTag: ::std::fmt::Debug + Copy + Eq + Hash + 'static;
96
97     /// Machines can define extra (non-instance) things that represent values of function pointers.
98     /// For example, Miri uses this to return a function pointer from `dlsym`
99     /// that can later be called to execute the right thing.
100     type ExtraFnVal: ::std::fmt::Debug + Copy;
101
102     /// Extra data stored in every call frame.
103     type FrameExtra;
104
105     /// Extra data stored in memory. A reference to this is available when `AllocExtra`
106     /// gets initialized, so you can e.g., have an `Rc` here if there is global state you
107     /// need access to in the `AllocExtra` hooks.
108     type MemoryExtra;
109
110     /// Extra data stored in every allocation.
111     type AllocExtra: AllocationExtra<Self::PointerTag> + 'static;
112
113     /// Memory's allocation map
114     type MemoryMap:
115         AllocMap<
116             AllocId,
117             (MemoryKind<Self::MemoryKinds>, Allocation<Self::PointerTag, Self::AllocExtra>)
118         > +
119         Default +
120         Clone;
121
122     /// The memory kind to use for copied statics -- or None if statics should not be mutated
123     /// and thus any such attempt will cause a `ModifiedStatic` error to be raised.
124     /// Statics are copied under two circumstances: When they are mutated, and when
125     /// `tag_allocation` or `find_foreign_static` (see below) returns an owned allocation
126     /// that is added to the memory so that the work is not done twice.
127     const STATIC_KIND: Option<Self::MemoryKinds>;
128
129     /// Whether memory accesses should be alignment-checked.
130     const CHECK_ALIGN: bool;
131
132     /// Whether to enforce the validity invariant
133     fn enforce_validity(ecx: &InterpCx<'mir, 'tcx, Self>) -> bool;
134
135     /// Called before a basic block terminator is executed.
136     /// You can use this to detect endlessly running programs.
137     fn before_terminator(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx>;
138
139     /// Entry point to all function calls.
140     ///
141     /// Returns either the mir to use for the call, or `None` if execution should
142     /// just proceed (which usually means this hook did all the work that the
143     /// called function should usually have done). In the latter case, it is
144     /// this hook's responsibility to advance the instruction pointer!
145     /// (This is to support functions like `__rust_maybe_catch_panic` that neither find a MIR
146     /// nor just jump to `ret`, but instead push their own stack frame.)
147     /// Passing `dest`and `ret` in the same `Option` proved very annoying when only one of them
148     /// was used.
149     fn find_fn(
150         ecx: &mut InterpCx<'mir, 'tcx, Self>,
151         instance: ty::Instance<'tcx>,
152         args: &[OpTy<'tcx, Self::PointerTag>],
153         ret: Option<(PlaceTy<'tcx, Self::PointerTag>, mir::BasicBlock)>,
154         unwind: Option<mir::BasicBlock>,
155     ) -> InterpResult<'tcx, Option<&'mir mir::Body<'tcx>>>;
156
157     /// Execute `fn_val`.  It is the hook's responsibility to advance the instruction
158     /// pointer as appropriate.
159     fn call_extra_fn(
160         ecx: &mut InterpCx<'mir, 'tcx, Self>,
161         fn_val: Self::ExtraFnVal,
162         args: &[OpTy<'tcx, Self::PointerTag>],
163         ret: Option<(PlaceTy<'tcx, Self::PointerTag>, mir::BasicBlock)>,
164         unwind: Option<mir::BasicBlock>,
165     ) -> InterpResult<'tcx>;
166
167     /// Directly process an intrinsic without pushing a stack frame. It is the hook's
168     /// responsibility to advance the instruction pointer as appropriate.
169     fn call_intrinsic(
170         ecx: &mut InterpCx<'mir, 'tcx, Self>,
171         span: Span,
172         instance: ty::Instance<'tcx>,
173         args: &[OpTy<'tcx, Self::PointerTag>],
174         ret: Option<(PlaceTy<'tcx, Self::PointerTag>, mir::BasicBlock)>,
175         unwind: Option<mir::BasicBlock>,
176     ) -> InterpResult<'tcx>;
177
178     /// Called for read access to a foreign static item.
179     ///
180     /// This will only be called once per static and machine; the result is cached in
181     /// the machine memory. (This relies on `AllocMap::get_or` being able to add the
182     /// owned allocation to the map even when the map is shared.)
183     ///
184     /// This allocation will then be fed to `tag_allocation` to initialize the "extra" state.
185     fn find_foreign_static(
186         tcx: TyCtxt<'tcx>,
187         def_id: DefId,
188     ) -> InterpResult<'tcx, Cow<'tcx, Allocation>>;
189
190     /// Called for all binary operations where the LHS has pointer type.
191     ///
192     /// Returns a (value, overflowed) pair if the operation succeeded
193     fn binary_ptr_op(
194         ecx: &InterpCx<'mir, 'tcx, Self>,
195         bin_op: mir::BinOp,
196         left: ImmTy<'tcx, Self::PointerTag>,
197         right: ImmTy<'tcx, Self::PointerTag>,
198     ) -> InterpResult<'tcx, (Scalar<Self::PointerTag>, bool, Ty<'tcx>)>;
199
200     /// Heap allocations via the `box` keyword.
201     fn box_alloc(
202         ecx: &mut InterpCx<'mir, 'tcx, Self>,
203         dest: PlaceTy<'tcx, Self::PointerTag>,
204     ) -> InterpResult<'tcx>;
205
206     /// Called to read the specified `local` from the `frame`.
207     fn access_local(
208         _ecx: &InterpCx<'mir, 'tcx, Self>,
209         frame: &Frame<'mir, 'tcx, Self::PointerTag, Self::FrameExtra>,
210         local: mir::Local,
211     ) -> InterpResult<'tcx, Operand<Self::PointerTag>> {
212         frame.locals[local].access()
213     }
214
215     /// Called before a `StaticKind::Static` value is accessed.
216     fn before_access_static(
217         _allocation: &Allocation,
218     ) -> InterpResult<'tcx> {
219         Ok(())
220     }
221
222     /// Called to initialize the "extra" state of an allocation and make the pointers
223     /// it contains (in relocations) tagged.  The way we construct allocations is
224     /// to always first construct it without extra and then add the extra.
225     /// This keeps uniform code paths for handling both allocations created by CTFE
226     /// for statics, and allocations ceated by Miri during evaluation.
227     ///
228     /// `kind` is the kind of the allocation being tagged; it can be `None` when
229     /// it's a static and `STATIC_KIND` is `None`.
230     ///
231     /// This should avoid copying if no work has to be done! If this returns an owned
232     /// allocation (because a copy had to be done to add tags or metadata), machine memory will
233     /// cache the result. (This relies on `AllocMap::get_or` being able to add the
234     /// owned allocation to the map even when the map is shared.)
235     ///
236     /// For static allocations, the tag returned must be the same as the one returned by
237     /// `tag_static_base_pointer`.
238     fn tag_allocation<'b>(
239         memory_extra: &Self::MemoryExtra,
240         id: AllocId,
241         alloc: Cow<'b, Allocation>,
242         kind: Option<MemoryKind<Self::MemoryKinds>>,
243     ) -> (Cow<'b, Allocation<Self::PointerTag, Self::AllocExtra>>, Self::PointerTag);
244
245     /// Return the "base" tag for the given static allocation: the one that is used for direct
246     /// accesses to this static/const/fn allocation.
247     ///
248     /// Be aware that requesting the `Allocation` for that `id` will lead to cycles
249     /// for cyclic statics!
250     fn tag_static_base_pointer(
251         memory_extra: &Self::MemoryExtra,
252         id: AllocId,
253     ) -> Self::PointerTag;
254
255     /// Executes a retagging operation
256     #[inline]
257     fn retag(
258         _ecx: &mut InterpCx<'mir, 'tcx, Self>,
259         _kind: mir::RetagKind,
260         _place: PlaceTy<'tcx, Self::PointerTag>,
261     ) -> InterpResult<'tcx> {
262         Ok(())
263     }
264
265     /// Called immediately before a new stack frame got pushed
266     fn stack_push(ecx: &mut InterpCx<'mir, 'tcx, Self>) -> InterpResult<'tcx, Self::FrameExtra>;
267
268     /// Called immediately after a stack frame gets popped
269     fn stack_pop(
270         _ecx: &mut InterpCx<'mir, 'tcx, Self>,
271         _extra: Self::FrameExtra,
272         _unwinding: bool
273     ) -> InterpResult<'tcx, StackPopInfo> {
274         // By default, we do not support unwinding from panics
275         Ok(StackPopInfo::Normal)
276     }
277
278     fn int_to_ptr(
279         _mem: &Memory<'mir, 'tcx, Self>,
280         int: u64,
281     ) -> InterpResult<'tcx, Pointer<Self::PointerTag>> {
282         Err((if int == 0 {
283             err_unsup!(InvalidNullPointerUsage)
284         } else {
285             err_unsup!(ReadBytesAsPointer)
286         }).into())
287     }
288
289     fn ptr_to_int(
290         _mem: &Memory<'mir, 'tcx, Self>,
291         _ptr: Pointer<Self::PointerTag>,
292     ) -> InterpResult<'tcx, u64>;
293 }