]> git.lizzy.rs Git - rust.git/blob - src/librustc_mir/interpret/machine.rs
Grammar nit
[rust.git] / src / librustc_mir / interpret / machine.rs
1 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! This module contains everything needed to instantiate an interpreter.
12 //! This separation exists to ensure that no fancy miri features like
13 //! interpreting common C functions leak into CTFE.
14
15 use std::borrow::{Borrow, Cow};
16 use std::hash::Hash;
17
18 use rustc::hir::{self, def_id::DefId};
19 use rustc::mir;
20 use rustc::ty::{self, layout::TyLayout, query::TyCtxtAt};
21
22 use super::{
23     Allocation, AllocId, EvalResult, Scalar, AllocationExtra,
24     EvalContext, PlaceTy, MPlaceTy, OpTy, Pointer, MemoryKind,
25 };
26
27 /// Whether this kind of memory is allowed to leak
28 pub trait MayLeak: Copy {
29     fn may_leak(self) -> bool;
30 }
31
32 /// The functionality needed by memory to manage its allocations
33 pub trait AllocMap<K: Hash + Eq, V> {
34     /// Test if the map contains the given key.
35     /// Deliberately takes `&mut` because that is sufficient, and some implementations
36     /// can be more efficient then (using `RefCell::get_mut`).
37     fn contains_key<Q: ?Sized + Hash + Eq>(&mut self, k: &Q) -> bool
38         where K: Borrow<Q>;
39
40     /// Insert new entry into the map.
41     fn insert(&mut self, k: K, v: V) -> Option<V>;
42
43     /// Remove entry from the map.
44     fn remove<Q: ?Sized + Hash + Eq>(&mut self, k: &Q) -> Option<V>
45         where K: Borrow<Q>;
46
47     /// Return data based the keys and values in the map.
48     fn filter_map_collect<T>(&self, f: impl FnMut(&K, &V) -> Option<T>) -> Vec<T>;
49
50     /// Return a reference to entry `k`.  If no such entry exists, call
51     /// `vacant` and either forward its error, or add its result to the map
52     /// and return a reference to *that*.
53     fn get_or<E>(
54         &self,
55         k: K,
56         vacant: impl FnOnce() -> Result<V, E>
57     ) -> Result<&V, E>;
58
59     /// Return a mutable reference to entry `k`.  If no such entry exists, call
60     /// `vacant` and either forward its error, or add its result to the map
61     /// and return a reference to *that*.
62     fn get_mut_or<E>(
63         &mut self,
64         k: K,
65         vacant: impl FnOnce() -> Result<V, E>
66     ) -> Result<&mut V, E>;
67 }
68
69 /// Methods of this trait signifies a point where CTFE evaluation would fail
70 /// and some use case dependent behaviour can instead be applied.
71 pub trait Machine<'a, 'mir, 'tcx>: Sized {
72     /// Additional memory kinds a machine wishes to distinguish from the builtin ones
73     type MemoryKinds: ::std::fmt::Debug + MayLeak + Eq + 'static;
74
75     /// Tag tracked alongside every pointer.  This is used to implement "Stacked Borrows"
76     /// <https://www.ralfj.de/blog/2018/08/07/stacked-borrows.html>.
77     /// The `default()` is used for pointers to consts, statics, vtables and functions.
78     type PointerTag: ::std::fmt::Debug + Default + Copy + Eq + Hash + 'static;
79
80     /// Extra data stored in every allocation.
81     type AllocExtra: AllocationExtra<Self::PointerTag>;
82
83     /// Memory's allocation map
84     type MemoryMap:
85         AllocMap<
86             AllocId,
87             (MemoryKind<Self::MemoryKinds>, Allocation<Self::PointerTag, Self::AllocExtra>)
88         > +
89         Default +
90         Clone;
91
92     /// The memory kind to use for copied statics -- or None if statics should not be mutated
93     /// and thus any such attempt will cause a `ModifiedStatic` error to be raised.
94     /// Statics are copied under two circumstances: When they are mutated, and when
95     /// `static_with_default_tag` or `find_foreign_static` (see below) returns an owned allocation
96     /// that is added to the memory so that the work is not done twice.
97     const STATIC_KIND: Option<Self::MemoryKinds>;
98
99     /// Whether to enforce the validity invariant
100     fn enforce_validity(ecx: &EvalContext<'a, 'mir, 'tcx, Self>) -> bool;
101
102     /// Called before a basic block terminator is executed.
103     /// You can use this to detect endlessly running programs.
104     fn before_terminator(ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>) -> EvalResult<'tcx>;
105
106     /// Entry point to all function calls.
107     ///
108     /// Returns either the mir to use for the call, or `None` if execution should
109     /// just proceed (which usually means this hook did all the work that the
110     /// called function should usually have done).  In the latter case, it is
111     /// this hook's responsibility to call `goto_block(ret)` to advance the instruction pointer!
112     /// (This is to support functions like `__rust_maybe_catch_panic` that neither find a MIR
113     /// nor just jump to `ret`, but instead push their own stack frame.)
114     /// Passing `dest`and `ret` in the same `Option` proved very annoying when only one of them
115     /// was used.
116     fn find_fn(
117         ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
118         instance: ty::Instance<'tcx>,
119         args: &[OpTy<'tcx, Self::PointerTag>],
120         dest: Option<PlaceTy<'tcx, Self::PointerTag>>,
121         ret: Option<mir::BasicBlock>,
122     ) -> EvalResult<'tcx, Option<&'mir mir::Mir<'tcx>>>;
123
124     /// Directly process an intrinsic without pushing a stack frame.
125     /// If this returns successfully, the engine will take care of jumping to the next block.
126     fn call_intrinsic(
127         ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
128         instance: ty::Instance<'tcx>,
129         args: &[OpTy<'tcx, Self::PointerTag>],
130         dest: PlaceTy<'tcx, Self::PointerTag>,
131     ) -> EvalResult<'tcx>;
132
133     /// Called for read access to a foreign static item.
134     ///
135     /// This will only be called once per static and machine; the result is cached in
136     /// the machine memory. (This relies on `AllocMap::get_or` being able to add the
137     /// owned allocation to the map even when the map is shared.)
138     fn find_foreign_static(
139         tcx: TyCtxtAt<'a, 'tcx, 'tcx>,
140         def_id: DefId,
141     ) -> EvalResult<'tcx, Cow<'tcx, Allocation<Self::PointerTag, Self::AllocExtra>>>;
142
143     /// Called to turn an allocation obtained from the `tcx` into one that has
144     /// the right type for this machine.
145     ///
146     /// This should avoid copying if no work has to be done! If this returns an owned
147     /// allocation (because a copy had to be done to add tags or metadata), machine memory will
148     /// cache the result. (This relies on `AllocMap::get_or` being able to add the
149     /// owned allocation to the map even when the map is shared.)
150     fn adjust_static_allocation(
151         alloc: &'_ Allocation
152     ) -> Cow<'_, Allocation<Self::PointerTag, Self::AllocExtra>>;
153
154     /// Called for all binary operations on integer(-like) types when one operand is a pointer
155     /// value, and for the `Offset` operation that is inherently about pointers.
156     ///
157     /// Returns a (value, overflowed) pair if the operation succeeded
158     fn ptr_op(
159         ecx: &EvalContext<'a, 'mir, 'tcx, Self>,
160         bin_op: mir::BinOp,
161         left: Scalar<Self::PointerTag>,
162         left_layout: TyLayout<'tcx>,
163         right: Scalar<Self::PointerTag>,
164         right_layout: TyLayout<'tcx>,
165     ) -> EvalResult<'tcx, (Scalar<Self::PointerTag>, bool)>;
166
167     /// Heap allocations via the `box` keyword.
168     fn box_alloc(
169         ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
170         dest: PlaceTy<'tcx, Self::PointerTag>,
171     ) -> EvalResult<'tcx>;
172
173     /// Add the tag for a newly allocated pointer.
174     fn tag_new_allocation(
175         ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
176         ptr: Pointer,
177         kind: MemoryKind<Self::MemoryKinds>,
178     ) -> EvalResult<'tcx, Pointer<Self::PointerTag>>;
179
180     /// Executed when evaluating the `*` operator: Following a reference.
181     /// This has the chance to adjust the tag.  It should not change anything else!
182     /// `mutability` can be `None` in case a raw ptr is being dereferenced.
183     #[inline]
184     fn tag_dereference(
185         _ecx: &EvalContext<'a, 'mir, 'tcx, Self>,
186         place: MPlaceTy<'tcx, Self::PointerTag>,
187         _mutability: Option<hir::Mutability>,
188     ) -> EvalResult<'tcx, Scalar<Self::PointerTag>> {
189         Ok(place.ptr)
190     }
191
192     /// Execute a retagging operation
193     #[inline]
194     fn retag(
195         _ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
196         _fn_entry: bool,
197         _place: PlaceTy<'tcx, Self::PointerTag>,
198     ) -> EvalResult<'tcx> {
199         Ok(())
200     }
201
202     /// Execute an escape-to-raw operation
203     #[inline]
204     fn escape_to_raw(
205         _ecx: &mut EvalContext<'a, 'mir, 'tcx, Self>,
206         _ptr: OpTy<'tcx, Self::PointerTag>,
207     ) -> EvalResult<'tcx> {
208         Ok(())
209     }
210 }