]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_trait_selection/src/traits/engine.rs
use `ocx` type relation routines
[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::infer::InferCtxtExt;
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 = ty::TraitRef { def_id, substs: tcx.mk_substs_trait(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.partially_normalize_associated_types_in(cause, param_env, value);
112         self.register_infer_ok_obligations(infer_ok)
113     }
114
115     pub fn eq<T: ToTrace<'tcx>>(
116         &self,
117         cause: &ObligationCause<'tcx>,
118         param_env: ty::ParamEnv<'tcx>,
119         expected: T,
120         actual: T,
121     ) -> Result<(), TypeError<'tcx>> {
122         self.infcx
123             .at(cause, param_env)
124             .eq(expected, actual)
125             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
126     }
127
128     /// Checks whether `expected` is a subtype of `actual`: `expected <: actual`.
129     pub fn sub<T: ToTrace<'tcx>>(
130         &self,
131         cause: &ObligationCause<'tcx>,
132         param_env: ty::ParamEnv<'tcx>,
133         expected: T,
134         actual: T,
135     ) -> Result<(), TypeError<'tcx>> {
136         self.infcx
137             .at(cause, param_env)
138             .sup(expected, actual)
139             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
140     }
141
142     /// Checks whether `expected` is a supertype of `actual`: `expected :> actual`.
143     pub fn sup<T: ToTrace<'tcx>>(
144         &self,
145         cause: &ObligationCause<'tcx>,
146         param_env: ty::ParamEnv<'tcx>,
147         expected: T,
148         actual: T,
149     ) -> Result<(), TypeError<'tcx>> {
150         self.infcx
151             .at(cause, param_env)
152             .sup(expected, actual)
153             .map(|infer_ok| self.register_infer_ok_obligations(infer_ok))
154     }
155
156     pub fn select_where_possible(&self) -> Vec<FulfillmentError<'tcx>> {
157         self.engine.borrow_mut().select_where_possible(self.infcx)
158     }
159
160     pub fn select_all_or_error(&self) -> Vec<FulfillmentError<'tcx>> {
161         self.engine.borrow_mut().select_all_or_error(self.infcx)
162     }
163
164     pub fn assumed_wf_types(
165         &self,
166         param_env: ty::ParamEnv<'tcx>,
167         span: Span,
168         def_id: LocalDefId,
169     ) -> FxIndexSet<Ty<'tcx>> {
170         let tcx = self.infcx.tcx;
171         let assumed_wf_types = tcx.assumed_wf_types(def_id);
172         let mut implied_bounds = FxIndexSet::default();
173         let hir_id = tcx.hir().local_def_id_to_hir_id(def_id);
174         let cause = ObligationCause::misc(span, hir_id);
175         for ty in assumed_wf_types {
176             // FIXME(@lcnr): rustc currently does not check wf for types
177             // pre-normalization, meaning that implied bounds are sometimes
178             // incorrect. See #100910 for more details.
179             //
180             // Not adding the unnormalized types here mostly fixes that, except
181             // that there are projections which are still ambiguous in the item definition
182             // but do normalize successfully when using the item, see #98543.
183             //
184             // Anyways, I will hopefully soon change implied bounds to make all of this
185             // sound and then uncomment this line again.
186
187             // implied_bounds.insert(ty);
188             let normalized = self.normalize(cause.clone(), param_env, ty);
189             implied_bounds.insert(normalized);
190         }
191         implied_bounds
192     }
193
194     pub fn make_canonicalized_query_response<T>(
195         &self,
196         inference_vars: CanonicalVarValues<'tcx>,
197         answer: T,
198     ) -> Fallible<CanonicalizedQueryResponse<'tcx, T>>
199     where
200         T: Debug + TypeFoldable<'tcx>,
201         Canonical<'tcx, QueryResponse<'tcx, T>>: ArenaAllocatable<'tcx>,
202     {
203         self.infcx.make_canonicalized_query_response(
204             inference_vars,
205             answer,
206             &mut **self.engine.borrow_mut(),
207         )
208     }
209 }