]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_typeck/src/check/inherited.rs
Rollup merge of #98916 - ChrisDenton:hiberfil.sys, r=thomcc
[rust.git] / compiler / rustc_typeck / src / check / inherited.rs
1 use super::callee::DeferredCallResolution;
2 use super::MaybeInProgressTables;
3
4 use rustc_data_structures::fx::FxHashSet;
5 use rustc_hir as hir;
6 use rustc_hir::def_id::{DefIdMap, LocalDefId};
7 use rustc_hir::HirIdMap;
8 use rustc_infer::infer;
9 use rustc_infer::infer::{InferCtxt, InferOk, TyCtxtInferExt};
10 use rustc_middle::ty::fold::TypeFoldable;
11 use rustc_middle::ty::visit::TypeVisitable;
12 use rustc_middle::ty::{self, Ty, TyCtxt};
13 use rustc_span::{self, Span};
14 use rustc_trait_selection::infer::InferCtxtExt as _;
15 use rustc_trait_selection::traits::{self, ObligationCause, TraitEngine, TraitEngineExt};
16
17 use std::cell::RefCell;
18 use std::ops::Deref;
19
20 /// Closures defined within the function. For example:
21 /// ```ignore (illustrative)
22 /// fn foo() {
23 ///     bar(move|| { ... })
24 /// }
25 /// ```
26 /// Here, the function `foo()` and the closure passed to
27 /// `bar()` will each have their own `FnCtxt`, but they will
28 /// share the inherited fields.
29 pub struct Inherited<'a, 'tcx> {
30     pub(super) infcx: InferCtxt<'a, 'tcx>,
31
32     pub(super) typeck_results: super::MaybeInProgressTables<'a, 'tcx>,
33
34     pub(super) locals: RefCell<HirIdMap<super::LocalTy<'tcx>>>,
35
36     pub(super) fulfillment_cx: RefCell<Box<dyn TraitEngine<'tcx>>>,
37
38     // Some additional `Sized` obligations badly affect type inference.
39     // These obligations are added in a later stage of typeck.
40     pub(super) deferred_sized_obligations:
41         RefCell<Vec<(Ty<'tcx>, Span, traits::ObligationCauseCode<'tcx>)>>,
42
43     // When we process a call like `c()` where `c` is a closure type,
44     // we may not have decided yet whether `c` is a `Fn`, `FnMut`, or
45     // `FnOnce` closure. In that case, we defer full resolution of the
46     // call until upvar inference can kick in and make the
47     // decision. We keep these deferred resolutions grouped by the
48     // def-id of the closure, so that once we decide, we can easily go
49     // back and process them.
50     pub(super) deferred_call_resolutions: RefCell<DefIdMap<Vec<DeferredCallResolution<'tcx>>>>,
51
52     pub(super) deferred_cast_checks: RefCell<Vec<super::cast::CastCheck<'tcx>>>,
53
54     pub(super) deferred_transmute_checks: RefCell<Vec<(Ty<'tcx>, Ty<'tcx>, Span)>>,
55
56     pub(super) deferred_asm_checks: RefCell<Vec<(&'tcx hir::InlineAsm<'tcx>, hir::HirId)>>,
57
58     pub(super) deferred_generator_interiors:
59         RefCell<Vec<(hir::BodyId, Ty<'tcx>, hir::GeneratorKind)>>,
60
61     pub(super) body_id: Option<hir::BodyId>,
62
63     /// Whenever we introduce an adjustment from `!` into a type variable,
64     /// we record that type variable here. This is later used to inform
65     /// fallback. See the `fallback` module for details.
66     pub(super) diverging_type_vars: RefCell<FxHashSet<Ty<'tcx>>>,
67 }
68
69 impl<'a, 'tcx> Deref for Inherited<'a, 'tcx> {
70     type Target = InferCtxt<'a, 'tcx>;
71     fn deref(&self) -> &Self::Target {
72         &self.infcx
73     }
74 }
75
76 /// A temporary returned by `Inherited::build(...)`. This is necessary
77 /// for multiple `InferCtxt` to share the same `in_progress_typeck_results`
78 /// without using `Rc` or something similar.
79 pub struct InheritedBuilder<'tcx> {
80     infcx: infer::InferCtxtBuilder<'tcx>,
81     def_id: LocalDefId,
82 }
83
84 impl<'tcx> Inherited<'_, 'tcx> {
85     pub fn build(tcx: TyCtxt<'tcx>, def_id: LocalDefId) -> InheritedBuilder<'tcx> {
86         let hir_owner = tcx.hir().local_def_id_to_hir_id(def_id).owner;
87
88         InheritedBuilder {
89             infcx: tcx.infer_ctxt().with_fresh_in_progress_typeck_results(hir_owner),
90             def_id,
91         }
92     }
93 }
94
95 impl<'tcx> InheritedBuilder<'tcx> {
96     pub fn enter<F, R>(&mut self, f: F) -> R
97     where
98         F: for<'a> FnOnce(Inherited<'a, 'tcx>) -> R,
99     {
100         let def_id = self.def_id;
101         self.infcx.enter(|infcx| f(Inherited::new(infcx, def_id)))
102     }
103 }
104
105 impl<'a, 'tcx> Inherited<'a, 'tcx> {
106     fn new(infcx: InferCtxt<'a, 'tcx>, def_id: LocalDefId) -> Self {
107         let tcx = infcx.tcx;
108         let item_id = tcx.hir().local_def_id_to_hir_id(def_id);
109         let body_id = tcx.hir().maybe_body_owned_by(item_id);
110
111         Inherited {
112             typeck_results: MaybeInProgressTables {
113                 maybe_typeck_results: infcx.in_progress_typeck_results,
114             },
115             infcx,
116             fulfillment_cx: RefCell::new(<dyn TraitEngine<'_>>::new_ignoring_regions(tcx)),
117             locals: RefCell::new(Default::default()),
118             deferred_sized_obligations: RefCell::new(Vec::new()),
119             deferred_call_resolutions: RefCell::new(Default::default()),
120             deferred_cast_checks: RefCell::new(Vec::new()),
121             deferred_transmute_checks: RefCell::new(Vec::new()),
122             deferred_asm_checks: RefCell::new(Vec::new()),
123             deferred_generator_interiors: RefCell::new(Vec::new()),
124             diverging_type_vars: RefCell::new(Default::default()),
125             body_id,
126         }
127     }
128
129     #[instrument(level = "debug", skip(self))]
130     pub(super) fn register_predicate(&self, obligation: traits::PredicateObligation<'tcx>) {
131         if obligation.has_escaping_bound_vars() {
132             span_bug!(obligation.cause.span, "escaping bound vars in predicate {:?}", obligation);
133         }
134         self.fulfillment_cx.borrow_mut().register_predicate_obligation(self, obligation);
135     }
136
137     pub(super) fn register_predicates<I>(&self, obligations: I)
138     where
139         I: IntoIterator<Item = traits::PredicateObligation<'tcx>>,
140     {
141         for obligation in obligations {
142             self.register_predicate(obligation);
143         }
144     }
145
146     pub(super) fn register_infer_ok_obligations<T>(&self, infer_ok: InferOk<'tcx, T>) -> T {
147         self.register_predicates(infer_ok.obligations);
148         infer_ok.value
149     }
150
151     pub(super) fn normalize_associated_types_in<T>(
152         &self,
153         span: Span,
154         body_id: hir::HirId,
155         param_env: ty::ParamEnv<'tcx>,
156         value: T,
157     ) -> T
158     where
159         T: TypeFoldable<'tcx>,
160     {
161         self.normalize_associated_types_in_with_cause(
162             ObligationCause::misc(span, body_id),
163             param_env,
164             value,
165         )
166     }
167
168     pub(super) fn normalize_associated_types_in_with_cause<T>(
169         &self,
170         cause: ObligationCause<'tcx>,
171         param_env: ty::ParamEnv<'tcx>,
172         value: T,
173     ) -> T
174     where
175         T: TypeFoldable<'tcx>,
176     {
177         let ok = self.partially_normalize_associated_types_in(cause, param_env, value);
178         debug!(?ok);
179         self.register_infer_ok_obligations(ok)
180     }
181 }