]> git.lizzy.rs Git - rust.git/blob - src/librustc_infer/infer/freshen.rs
636cf42198b0d1c0f7a060781a67e37e0921fc96
[rust.git] / src / librustc_infer / infer / freshen.rs
1 //! Freshening is the process of replacing unknown variables with fresh types. The idea is that
2 //! the type, after freshening, contains no inference variables but instead contains either a
3 //! value for each variable or fresh "arbitrary" types wherever a variable would have been.
4 //!
5 //! Freshening is used primarily to get a good type for inserting into a cache. The result
6 //! summarizes what the type inferencer knows "so far". The primary place it is used right now is
7 //! in the trait matching algorithm, which needs to be able to cache whether an `impl` self type
8 //! matches some other type X -- *without* affecting `X`. That means if that if the type `X` is in
9 //! fact an unbound type variable, we want the match to be regarded as ambiguous, because depending
10 //! on what type that type variable is ultimately assigned, the match may or may not succeed.
11 //!
12 //! To handle closures, freshened types also have to contain the signature and kind of any
13 //! closure in the local inference context, as otherwise the cache key might be invalidated.
14 //! The way this is done is somewhat hacky - the closure signature is appended to the substs,
15 //! as well as the closure kind "encoded" as a type. Also, special handling is needed when
16 //! the closure signature contains a reference to the original closure.
17 //!
18 //! Note that you should be careful not to allow the output of freshening to leak to the user in
19 //! error messages or in any other form. Freshening is only really useful as an internal detail.
20 //!
21 //! Because of the manipulation required to handle closures, doing arbitrary operations on
22 //! freshened types is not recommended. However, in addition to doing equality/hash
23 //! comparisons (for caching), it is possible to do a `ty::_match` operation between
24 //! 2 freshened types - this works even with the closure encoding.
25 //!
26 //! __An important detail concerning regions.__ The freshener also replaces *all* free regions with
27 //! 'erased. The reason behind this is that, in general, we do not take region relationships into
28 //! account when making type-overloaded decisions. This is important because of the design of the
29 //! region inferencer, which is not based on unification but rather on accumulating and then
30 //! solving a set of constraints. In contrast, the type inferencer assigns a value to each type
31 //! variable only once, and it does so as soon as it can, so it is reasonable to ask what the type
32 //! inferencer knows "so far".
33
34 use rustc_middle::ty::fold::TypeFolder;
35 use rustc_middle::ty::{self, Ty, TyCtxt, TypeFoldable};
36
37 use rustc_data_structures::fx::FxHashMap;
38
39 use std::collections::hash_map::Entry;
40
41 use super::unify_key::ToType;
42 use super::InferCtxt;
43
44 pub struct TypeFreshener<'a, 'tcx> {
45     infcx: &'a InferCtxt<'a, 'tcx>,
46     ty_freshen_count: u32,
47     const_freshen_count: u32,
48     ty_freshen_map: FxHashMap<ty::InferTy, Ty<'tcx>>,
49     const_freshen_map: FxHashMap<ty::InferConst<'tcx>, &'tcx ty::Const<'tcx>>,
50 }
51
52 impl<'a, 'tcx> TypeFreshener<'a, 'tcx> {
53     pub fn new(infcx: &'a InferCtxt<'a, 'tcx>) -> TypeFreshener<'a, 'tcx> {
54         TypeFreshener {
55             infcx,
56             ty_freshen_count: 0,
57             const_freshen_count: 0,
58             ty_freshen_map: Default::default(),
59             const_freshen_map: Default::default(),
60         }
61     }
62
63     fn freshen_ty<F>(
64         &mut self,
65         opt_ty: Option<Ty<'tcx>>,
66         key: ty::InferTy,
67         freshener: F,
68     ) -> Ty<'tcx>
69     where
70         F: FnOnce(u32) -> ty::InferTy,
71     {
72         if let Some(ty) = opt_ty {
73             return ty.fold_with(self);
74         }
75
76         match self.ty_freshen_map.entry(key) {
77             Entry::Occupied(entry) => *entry.get(),
78             Entry::Vacant(entry) => {
79                 let index = self.ty_freshen_count;
80                 self.ty_freshen_count += 1;
81                 let t = self.infcx.tcx.mk_ty_infer(freshener(index));
82                 entry.insert(t);
83                 t
84             }
85         }
86     }
87
88     fn freshen_const<F>(
89         &mut self,
90         opt_ct: Option<&'tcx ty::Const<'tcx>>,
91         key: ty::InferConst<'tcx>,
92         freshener: F,
93         ty: Ty<'tcx>,
94     ) -> &'tcx ty::Const<'tcx>
95     where
96         F: FnOnce(u32) -> ty::InferConst<'tcx>,
97     {
98         if let Some(ct) = opt_ct {
99             return ct.fold_with(self);
100         }
101
102         match self.const_freshen_map.entry(key) {
103             Entry::Occupied(entry) => *entry.get(),
104             Entry::Vacant(entry) => {
105                 let index = self.const_freshen_count;
106                 self.const_freshen_count += 1;
107                 let ct = self.infcx.tcx.mk_const_infer(freshener(index), ty);
108                 entry.insert(ct);
109                 ct
110             }
111         }
112     }
113 }
114
115 impl<'a, 'tcx> TypeFolder<'tcx> for TypeFreshener<'a, 'tcx> {
116     fn tcx<'b>(&'b self) -> TyCtxt<'tcx> {
117         self.infcx.tcx
118     }
119
120     fn fold_region(&mut self, r: ty::Region<'tcx>) -> ty::Region<'tcx> {
121         match *r {
122             ty::ReLateBound(..) => {
123                 // leave bound regions alone
124                 r
125             }
126
127             ty::ReStatic
128             | ty::ReEarlyBound(..)
129             | ty::ReFree(_)
130             | ty::ReScope(_)
131             | ty::ReVar(_)
132             | ty::RePlaceholder(..)
133             | ty::ReEmpty(_)
134             | ty::ReErased => {
135                 // replace all free regions with 'erased
136                 self.tcx().lifetimes.re_erased
137             }
138         }
139     }
140
141     fn fold_ty(&mut self, t: Ty<'tcx>) -> Ty<'tcx> {
142         if !t.needs_infer() && !t.has_erasable_regions() {
143             return t;
144         }
145
146         let tcx = self.infcx.tcx;
147
148         match t.kind {
149             ty::Infer(ty::TyVar(v)) => {
150                 let opt_ty = self.infcx.inner.borrow_mut().type_variables.probe(v).known();
151                 self.freshen_ty(opt_ty, ty::TyVar(v), ty::FreshTy)
152             }
153
154             ty::Infer(ty::IntVar(v)) => self.freshen_ty(
155                 self.infcx
156                     .inner
157                     .borrow_mut()
158                     .int_unification_table
159                     .probe_value(v)
160                     .map(|v| v.to_type(tcx)),
161                 ty::IntVar(v),
162                 ty::FreshIntTy,
163             ),
164
165             ty::Infer(ty::FloatVar(v)) => self.freshen_ty(
166                 self.infcx
167                     .inner
168                     .borrow_mut()
169                     .float_unification_table
170                     .probe_value(v)
171                     .map(|v| v.to_type(tcx)),
172                 ty::FloatVar(v),
173                 ty::FreshFloatTy,
174             ),
175
176             ty::Infer(ty::FreshTy(ct) | ty::FreshIntTy(ct) | ty::FreshFloatTy(ct)) => {
177                 if ct >= self.ty_freshen_count {
178                     bug!(
179                         "Encountered a freshend type with id {} \
180                           but our counter is only at {}",
181                         ct,
182                         self.ty_freshen_count
183                     );
184                 }
185                 t
186             }
187
188             ty::Generator(..)
189             | ty::Bool
190             | ty::Char
191             | ty::Int(..)
192             | ty::Uint(..)
193             | ty::Float(..)
194             | ty::Adt(..)
195             | ty::Str
196             | ty::Error
197             | ty::Array(..)
198             | ty::Slice(..)
199             | ty::RawPtr(..)
200             | ty::Ref(..)
201             | ty::FnDef(..)
202             | ty::FnPtr(_)
203             | ty::Dynamic(..)
204             | ty::Never
205             | ty::Tuple(..)
206             | ty::Projection(..)
207             | ty::UnnormalizedProjection(..)
208             | ty::Foreign(..)
209             | ty::Param(..)
210             | ty::Closure(..)
211             | ty::GeneratorWitness(..)
212             | ty::Opaque(..) => t.super_fold_with(self),
213
214             ty::Placeholder(..) | ty::Bound(..) => bug!("unexpected type {:?}", t),
215         }
216     }
217
218     fn fold_const(&mut self, ct: &'tcx ty::Const<'tcx>) -> &'tcx ty::Const<'tcx> {
219         match ct.val {
220             ty::ConstKind::Infer(ty::InferConst::Var(v)) => {
221                 let opt_ct = self
222                     .infcx
223                     .inner
224                     .borrow_mut()
225                     .const_unification_table
226                     .probe_value(v)
227                     .val
228                     .known();
229                 return self.freshen_const(
230                     opt_ct,
231                     ty::InferConst::Var(v),
232                     ty::InferConst::Fresh,
233                     ct.ty,
234                 );
235             }
236             ty::ConstKind::Infer(ty::InferConst::Fresh(i)) => {
237                 if i >= self.const_freshen_count {
238                     bug!(
239                         "Encountered a freshend const with id {} \
240                             but our counter is only at {}",
241                         i,
242                         self.const_freshen_count,
243                     );
244                 }
245                 return ct;
246             }
247
248             ty::ConstKind::Bound(..) | ty::ConstKind::Placeholder(_) => {
249                 bug!("unexpected const {:?}", ct)
250             }
251
252             ty::ConstKind::Param(_)
253             | ty::ConstKind::Value(_)
254             | ty::ConstKind::Unevaluated(..)
255             | ty::ConstKind::Error => {}
256         }
257
258         ct.super_fold_with(self)
259     }
260 }