]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_trait_selection/src/autoderef.rs
Auto merge of #104696 - matthiaskrgr:rollup-gi1pdb0, r=matthiaskrgr
[rust.git] / compiler / rustc_trait_selection / src / autoderef.rs
1 use crate::errors::AutoDerefReachedRecursionLimit;
2 use crate::traits::query::evaluate_obligation::InferCtxtExt;
3 use crate::traits::{self, TraitEngine, TraitEngineExt};
4 use rustc_hir as hir;
5 use rustc_infer::infer::InferCtxt;
6 use rustc_middle::ty::TypeVisitable;
7 use rustc_middle::ty::{self, Ty, TyCtxt};
8 use rustc_session::Limit;
9 use rustc_span::def_id::LOCAL_CRATE;
10 use rustc_span::Span;
11
12 #[derive(Copy, Clone, Debug)]
13 pub enum AutoderefKind {
14     Builtin,
15     Overloaded,
16 }
17
18 struct AutoderefSnapshot<'tcx> {
19     at_start: bool,
20     reached_recursion_limit: bool,
21     steps: Vec<(Ty<'tcx>, AutoderefKind)>,
22     cur_ty: Ty<'tcx>,
23     obligations: Vec<traits::PredicateObligation<'tcx>>,
24 }
25
26 pub struct Autoderef<'a, 'tcx> {
27     // Meta infos:
28     infcx: &'a InferCtxt<'tcx>,
29     span: Span,
30     body_id: hir::HirId,
31     param_env: ty::ParamEnv<'tcx>,
32
33     // Current state:
34     state: AutoderefSnapshot<'tcx>,
35
36     // Configurations:
37     include_raw_pointers: bool,
38     silence_errors: bool,
39 }
40
41 impl<'a, 'tcx> Iterator for Autoderef<'a, 'tcx> {
42     type Item = (Ty<'tcx>, usize);
43
44     fn next(&mut self) -> Option<Self::Item> {
45         let tcx = self.infcx.tcx;
46
47         debug!("autoderef: steps={:?}, cur_ty={:?}", self.state.steps, self.state.cur_ty);
48         if self.state.at_start {
49             self.state.at_start = false;
50             debug!("autoderef stage #0 is {:?}", self.state.cur_ty);
51             return Some((self.state.cur_ty, 0));
52         }
53
54         // If we have reached the recursion limit, error gracefully.
55         if !tcx.recursion_limit().value_within_limit(self.state.steps.len()) {
56             if !self.silence_errors {
57                 report_autoderef_recursion_limit_error(tcx, self.span, self.state.cur_ty);
58             }
59             self.state.reached_recursion_limit = true;
60             return None;
61         }
62
63         if self.state.cur_ty.is_ty_var() {
64             return None;
65         }
66
67         // Otherwise, deref if type is derefable:
68         let (kind, new_ty) =
69             if let Some(mt) = self.state.cur_ty.builtin_deref(self.include_raw_pointers) {
70                 (AutoderefKind::Builtin, mt.ty)
71             } else if let Some(ty) = self.overloaded_deref_ty(self.state.cur_ty) {
72                 (AutoderefKind::Overloaded, ty)
73             } else {
74                 return None;
75             };
76
77         if new_ty.references_error() {
78             return None;
79         }
80
81         self.state.steps.push((self.state.cur_ty, kind));
82         debug!(
83             "autoderef stage #{:?} is {:?} from {:?}",
84             self.step_count(),
85             new_ty,
86             (self.state.cur_ty, kind)
87         );
88         self.state.cur_ty = new_ty;
89
90         Some((self.state.cur_ty, self.step_count()))
91     }
92 }
93
94 impl<'a, 'tcx> Autoderef<'a, 'tcx> {
95     pub fn new(
96         infcx: &'a InferCtxt<'tcx>,
97         param_env: ty::ParamEnv<'tcx>,
98         body_id: hir::HirId,
99         span: Span,
100         base_ty: Ty<'tcx>,
101     ) -> Autoderef<'a, 'tcx> {
102         Autoderef {
103             infcx,
104             span,
105             body_id,
106             param_env,
107             state: AutoderefSnapshot {
108                 steps: vec![],
109                 cur_ty: infcx.resolve_vars_if_possible(base_ty),
110                 obligations: vec![],
111                 at_start: true,
112                 reached_recursion_limit: false,
113             },
114             include_raw_pointers: false,
115             silence_errors: false,
116         }
117     }
118
119     fn overloaded_deref_ty(&mut self, ty: Ty<'tcx>) -> Option<Ty<'tcx>> {
120         debug!("overloaded_deref_ty({:?})", ty);
121
122         let tcx = self.infcx.tcx;
123
124         // <ty as Deref>
125         let trait_ref = tcx.mk_trait_ref(tcx.lang_items().deref_trait()?, [ty]);
126
127         let cause = traits::ObligationCause::misc(self.span, self.body_id);
128
129         let obligation = traits::Obligation::new(
130             tcx,
131             cause.clone(),
132             self.param_env,
133             ty::Binder::dummy(trait_ref).without_const(),
134         );
135         if !self.infcx.predicate_may_hold(&obligation) {
136             debug!("overloaded_deref_ty: cannot match obligation");
137             return None;
138         }
139
140         let mut fulfillcx = <dyn TraitEngine<'tcx>>::new_in_snapshot(tcx);
141         let normalized_ty = fulfillcx.normalize_projection_type(
142             &self.infcx,
143             self.param_env,
144             ty::ProjectionTy {
145                 item_def_id: tcx.lang_items().deref_target()?,
146                 substs: trait_ref.substs,
147             },
148             cause,
149         );
150         let errors = fulfillcx.select_where_possible(&self.infcx);
151         if !errors.is_empty() {
152             // This shouldn't happen, except for evaluate/fulfill mismatches,
153             // but that's not a reason for an ICE (`predicate_may_hold` is conservative
154             // by design).
155             debug!("overloaded_deref_ty: encountered errors {:?} while fulfilling", errors);
156             return None;
157         }
158         let obligations = fulfillcx.pending_obligations();
159         debug!("overloaded_deref_ty({:?}) = ({:?}, {:?})", ty, normalized_ty, obligations);
160         self.state.obligations.extend(obligations);
161
162         Some(self.infcx.resolve_vars_if_possible(normalized_ty))
163     }
164
165     /// Returns the final type we ended up with, which may be an inference
166     /// variable (we will resolve it first, if we want).
167     pub fn final_ty(&self, resolve: bool) -> Ty<'tcx> {
168         if resolve {
169             self.infcx.resolve_vars_if_possible(self.state.cur_ty)
170         } else {
171             self.state.cur_ty
172         }
173     }
174
175     pub fn step_count(&self) -> usize {
176         self.state.steps.len()
177     }
178
179     pub fn into_obligations(self) -> Vec<traits::PredicateObligation<'tcx>> {
180         self.state.obligations
181     }
182
183     pub fn steps(&self) -> &[(Ty<'tcx>, AutoderefKind)] {
184         &self.state.steps
185     }
186
187     pub fn span(&self) -> Span {
188         self.span
189     }
190
191     pub fn reached_recursion_limit(&self) -> bool {
192         self.state.reached_recursion_limit
193     }
194
195     /// also dereference through raw pointer types
196     /// e.g., assuming ptr_to_Foo is the type `*const Foo`
197     /// fcx.autoderef(span, ptr_to_Foo)  => [*const Foo]
198     /// fcx.autoderef(span, ptr_to_Foo).include_raw_ptrs() => [*const Foo, Foo]
199     pub fn include_raw_pointers(mut self) -> Self {
200         self.include_raw_pointers = true;
201         self
202     }
203
204     pub fn silence_errors(mut self) -> Self {
205         self.silence_errors = true;
206         self
207     }
208 }
209
210 pub fn report_autoderef_recursion_limit_error<'tcx>(tcx: TyCtxt<'tcx>, span: Span, ty: Ty<'tcx>) {
211     // We've reached the recursion limit, error gracefully.
212     let suggested_limit = match tcx.recursion_limit() {
213         Limit(0) => Limit(2),
214         limit => limit * 2,
215     };
216     tcx.sess.emit_err(AutoDerefReachedRecursionLimit {
217         span,
218         ty,
219         suggested_limit,
220         crate_name: tcx.crate_name(LOCAL_CRATE),
221     });
222 }