]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_trait_selection/src/traits/engine.rs
Improve diagnostic when passing arg to closure and missing borrow.
[rust.git] / compiler / rustc_trait_selection / src / traits / engine.rs
1 use std::cell::RefCell;
2 use std::fmt::Debug;
3
4 use super::TraitEngine;
5 use super::{ChalkFulfillmentContext, FulfillmentContext};
6 use crate::traits::NormalizeExt;
7 use rustc_data_structures::fx::FxIndexSet;
8 use rustc_hir::def_id::{DefId, LocalDefId};
9 use rustc_infer::infer::at::ToTrace;
10 use rustc_infer::infer::canonical::{
11     Canonical, CanonicalVarValues, CanonicalizedQueryResponse, QueryResponse,
12 };
13 use rustc_infer::infer::{InferCtxt, InferOk};
14 use rustc_infer::traits::query::Fallible;
15 use rustc_infer::traits::{
16     FulfillmentError, Obligation, ObligationCause, PredicateObligation, TraitEngineExt as _,
17 };
18 use rustc_middle::arena::ArenaAllocatable;
19 use rustc_middle::ty::error::TypeError;
20 use rustc_middle::ty::ToPredicate;
21 use rustc_middle::ty::TypeFoldable;
22 use rustc_middle::ty::{self, Ty, TyCtxt};
23 use rustc_span::Span;
24
25 pub trait TraitEngineExt<'tcx> {
26     fn new(tcx: TyCtxt<'tcx>) -> Box<Self>;
27     fn new_in_snapshot(tcx: TyCtxt<'tcx>) -> Box<Self>;
28 }
29
30 impl<'tcx> TraitEngineExt<'tcx> for dyn TraitEngine<'tcx> {
31     fn new(tcx: TyCtxt<'tcx>) -> Box<Self> {
32         if tcx.sess.opts.unstable_opts.chalk {
33             Box::new(ChalkFulfillmentContext::new())
34         } else {
35             Box::new(FulfillmentContext::new())
36         }
37     }
38
39     fn new_in_snapshot(tcx: TyCtxt<'tcx>) -> Box<Self> {
40         if tcx.sess.opts.unstable_opts.chalk {
41             Box::new(ChalkFulfillmentContext::new_in_snapshot())
42         } else {
43             Box::new(FulfillmentContext::new_in_snapshot())
44         }
45     }
46 }
47
48 /// Used if you want to have pleasant experience when dealing
49 /// with obligations outside of hir or mir typeck.
50 pub struct ObligationCtxt<'a, 'tcx> {
51     pub infcx: &'a InferCtxt<'tcx>,
52     engine: RefCell<Box<dyn TraitEngine<'tcx>>>,
53 }
54
55 impl<'a, 'tcx> ObligationCtxt<'a, 'tcx> {
56     pub fn new(infcx: &'a InferCtxt<'tcx>) -> Self {
57         Self { infcx, engine: RefCell::new(<dyn TraitEngine<'_>>::new(infcx.tcx)) }
58     }
59
60     pub fn new_in_snapshot(infcx: &'a InferCtxt<'tcx>) -> Self {
61         Self { infcx, engine: RefCell::new(<dyn TraitEngine<'_>>::new_in_snapshot(infcx.tcx)) }
62     }
63
64     pub fn register_obligation(&self, obligation: PredicateObligation<'tcx>) {
65         self.engine.borrow_mut().register_predicate_obligation(self.infcx, obligation);
66     }
67
68     pub fn register_obligations(
69         &self,
70         obligations: impl IntoIterator<Item = PredicateObligation<'tcx>>,
71     ) {
72         // Can't use `register_predicate_obligations` because the iterator
73         // may also use this `ObligationCtxt`.
74         for obligation in obligations {
75             self.engine.borrow_mut().register_predicate_obligation(self.infcx, obligation)
76         }
77     }
78
79     pub fn register_infer_ok_obligations<T>(&self, infer_ok: InferOk<'tcx, T>) -> T {
80         let InferOk { value, obligations } = infer_ok;
81         self.engine.borrow_mut().register_predicate_obligations(self.infcx, obligations);
82         value
83     }
84
85     /// Requires that `ty` must implement the trait with `def_id` in
86     /// the given environment. This trait must not have any type
87     /// parameters (except for `Self`).
88     pub fn register_bound(
89         &self,
90         cause: ObligationCause<'tcx>,
91         param_env: ty::ParamEnv<'tcx>,
92         ty: Ty<'tcx>,
93         def_id: DefId,
94     ) {
95         let tcx = self.infcx.tcx;
96         let trait_ref = tcx.mk_trait_ref(def_id, [ty]);
97         self.register_obligation(Obligation {
98             cause,
99             recursion_depth: 0,
100             param_env,
101             predicate: ty::Binder::dummy(trait_ref).without_const().to_predicate(tcx),
102         });
103     }
104
105     pub fn normalize<T: TypeFoldable<'tcx>>(
106         &self,
107         cause: &ObligationCause<'tcx>,
108         param_env: ty::ParamEnv<'tcx>,
109         value: T,
110     ) -> T {
111         let infer_ok = self.infcx.at(&cause, param_env).normalize(value);
112         self.register_infer_ok_obligations(infer_ok)
113     }
114
115     /// Makes `expected <: actual`.
116     pub fn eq_exp<T>(
117         &self,
118         cause: &ObligationCause<'tcx>,
119         param_env: ty::ParamEnv<'tcx>,
120         a_is_expected: bool,
121         a: T,
122         b: T,
123     ) -> Result<(), TypeError<'tcx>>
124     where
125         T: ToTrace<'tcx>,
126     {
127         self.infcx
128             .at(cause, param_env)
129             .eq_exp(a_is_expected, a, b)
130             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
131     }
132
133     pub fn eq<T: ToTrace<'tcx>>(
134         &self,
135         cause: &ObligationCause<'tcx>,
136         param_env: ty::ParamEnv<'tcx>,
137         expected: T,
138         actual: T,
139     ) -> Result<(), TypeError<'tcx>> {
140         self.infcx
141             .at(cause, param_env)
142             .eq(expected, actual)
143             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
144     }
145
146     /// Checks whether `expected` is a subtype of `actual`: `expected <: actual`.
147     pub fn sub<T: ToTrace<'tcx>>(
148         &self,
149         cause: &ObligationCause<'tcx>,
150         param_env: ty::ParamEnv<'tcx>,
151         expected: T,
152         actual: T,
153     ) -> Result<(), TypeError<'tcx>> {
154         self.infcx
155             .at(cause, param_env)
156             .sup(expected, actual)
157             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
158     }
159
160     /// Checks whether `expected` is a supertype of `actual`: `expected :> actual`.
161     pub fn sup<T: ToTrace<'tcx>>(
162         &self,
163         cause: &ObligationCause<'tcx>,
164         param_env: ty::ParamEnv<'tcx>,
165         expected: T,
166         actual: T,
167     ) -> Result<(), TypeError<'tcx>> {
168         self.infcx
169             .at(cause, param_env)
170             .sup(expected, actual)
171             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
172     }
173
174     pub fn select_where_possible(&self) -> Vec<FulfillmentError<'tcx>> {
175         self.engine.borrow_mut().select_where_possible(self.infcx)
176     }
177
178     pub fn select_all_or_error(&self) -> Vec<FulfillmentError<'tcx>> {
179         self.engine.borrow_mut().select_all_or_error(self.infcx)
180     }
181
182     pub fn assumed_wf_types(
183         &self,
184         param_env: ty::ParamEnv<'tcx>,
185         span: Span,
186         def_id: LocalDefId,
187     ) -> FxIndexSet<Ty<'tcx>> {
188         let tcx = self.infcx.tcx;
189         let assumed_wf_types = tcx.assumed_wf_types(def_id);
190         let mut implied_bounds = FxIndexSet::default();
191         let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
192         let cause = ObligationCause::misc(span, hir_id);
193         for ty in assumed_wf_types {
194             // FIXME(@lcnr): rustc currently does not check wf for types
195             // pre-normalization, meaning that implied bounds are sometimes
196             // incorrect. See #100910 for more details.
197             //
198             // Not adding the unnormalized types here mostly fixes that, except
199             // that there are projections which are still ambiguous in the item definition
200             // but do normalize successfully when using the item, see #98543.
201             //
202             // Anyways, I will hopefully soon change implied bounds to make all of this
203             // sound and then uncomment this line again.
204
205             // implied_bounds.insert(ty);
206             let normalized = self.normalize(&cause, param_env, ty);
207             implied_bounds.insert(normalized);
208         }
209         implied_bounds
210     }
211
212     pub fn make_canonicalized_query_response<T>(
213         &self,
214         inference_vars: CanonicalVarValues<'tcx>,
215         answer: T,
216     ) -> Fallible<CanonicalizedQueryResponse<'tcx, T>>
217     where
218         T: Debug + TypeFoldable<'tcx>,
219         Canonical<'tcx, QueryResponse<'tcx, T>>: ArenaAllocatable<'tcx>,
220     {
221         self.infcx.make_canonicalized_query_response(
222             inference_vars,
223             answer,
224             &mut **self.engine.borrow_mut(),
225         )
226     }
227 }