]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_infer/src/infer/outlives/components.rs
New upstream version 1.57.0+dfsg1
[rustc.git] / compiler / rustc_infer / src / infer / outlives / components.rs
CommitLineData
e9174d1e
SL
1// The outlines relation `T: 'a` or `'a: 'b`. This code frequently
2// refers to rules defined in RFC 1214 (`OutlivesFooBar`), so see that
3// RFC for reference.
4
29967ef6 5use rustc_data_structures::sso::SsoHashSet;
c295e0f8
XL
6use rustc_middle::ty::subst::{GenericArg, GenericArgKind};
7use rustc_middle::ty::{self, Ty, TyCtxt, TypeFoldable};
8use smallvec::{smallvec, SmallVec};
e9174d1e
SL
9
10#[derive(Debug)]
11pub enum Component<'tcx> {
7cac9316 12 Region(ty::Region<'tcx>),
e9174d1e
SL
13 Param(ty::ParamTy),
14 UnresolvedInferenceVariable(ty::InferTy),
15
16 // Projections like `T::Foo` are tricky because a constraint like
17 // `T::Foo: 'a` can be satisfied in so many ways. There may be a
18 // where-clause that says `T::Foo: 'a`, or the defining trait may
19 // include a bound like `type Foo: 'static`, or -- in the most
20 // conservative way -- we can prove that `T: 'a` (more generally,
21 // that all components in the projection outlive `'a`). This code
22 // is not in a position to judge which is the best technique, so
23 // we just product the projection as a component and leave it to
24 // the consumer to decide (but see `EscapingProjection` below).
25 Projection(ty::ProjectionTy<'tcx>),
26
27 // In the case where a projection has escaping regions -- meaning
28 // regions bound within the type itself -- we always use
29 // the most conservative rule, which requires that all components
30 // outlive the bound. So for example if we had a type like this:
31 //
32 // for<'a> Trait1< <T as Trait2<'a,'b>>::Foo >
33 // ~~~~~~~~~~~~~~~~~~~~~~~~~
34 //
35 // then the inner projection (underlined) has an escaping region
36 // `'a`. We consider that outer trait `'c` to meet a bound if `'b`
37 // outlives `'b: 'c`, and we don't consider whether the trait
38 // declares that `Foo: 'static` etc. Therefore, we just return the
39 // free components of such a projection (in this case, `'b`).
40 //
41 // However, in the future, we may want to get smarter, and
42 // actually return a "higher-ranked projection" here. Therefore,
43 // we mark that these components are part of an escaping
44 // projection, so that implied bounds code can avoid relying on
45 // them. This gives us room to improve the regionck reasoning in
46 // the future without breaking backwards compat.
47 EscapingProjection(Vec<Component<'tcx>>),
e9174d1e
SL
48}
49
c295e0f8
XL
50/// Push onto `out` all the things that must outlive `'a` for the condition
51/// `ty0: 'a` to hold. Note that `ty0` must be a **fully resolved type**.
52pub fn push_outlives_components(
53 tcx: TyCtxt<'tcx>,
54 ty0: Ty<'tcx>,
55 out: &mut SmallVec<[Component<'tcx>; 4]>,
56) {
57 let mut visited = SsoHashSet::new();
58 compute_components(tcx, ty0, out, &mut visited);
59 debug!("components({:?}) = {:?}", ty0, out);
dfeec247 60}
e9174d1e 61
6c58768f
XL
62fn compute_components(
63 tcx: TyCtxt<'tcx>,
64 ty: Ty<'tcx>,
65 out: &mut SmallVec<[Component<'tcx>; 4]>,
29967ef6 66 visited: &mut SsoHashSet<GenericArg<'tcx>>,
6c58768f 67) {
dfeec247
XL
68 // Descend through the types, looking for the various "base"
69 // components and collecting them into `out`. This is not written
70 // with `collect()` because of the need to sometimes skip subtrees
71 // in the `subtys` iterator (e.g., when encountering a
72 // projection).
1b1a35ee 73 match *ty.kind() {
ba9703b0
XL
74 ty::FnDef(_, substs) => {
75 // HACK(eddyb) ignore lifetimes found shallowly in `substs`.
76 // This is inconsistent with `ty::Adt` (including all substs)
77 // and with `ty::Closure` (ignoring all substs other than
78 // upvars, of which a `ty::FnDef` doesn't have any), but
79 // consistent with previous (accidental) behavior.
80 // See https://github.com/rust-lang/rust/issues/70917
81 // for further background and discussion.
f9f354fc 82 for child in substs {
ba9703b0
XL
83 match child.unpack() {
84 GenericArgKind::Type(ty) => {
6c58768f 85 compute_components(tcx, ty, out, visited);
ba9703b0
XL
86 }
87 GenericArgKind::Lifetime(_) => {}
88 GenericArgKind::Const(_) => {
6c58768f 89 compute_components_recursive(tcx, child, out, visited);
ba9703b0
XL
90 }
91 }
92 }
93 }
94
f9f354fc
XL
95 ty::Array(element, _) => {
96 // Don't look into the len const as it doesn't affect regions
6c58768f 97 compute_components(tcx, element, out, visited);
f9f354fc
XL
98 }
99
ba9703b0 100 ty::Closure(_, ref substs) => {
29967ef6
XL
101 let tupled_ty = substs.as_closure().tupled_upvars_ty();
102 compute_components(tcx, tupled_ty, out, visited);
e9174d1e 103 }
e9174d1e 104
ba9703b0 105 ty::Generator(_, ref substs, _) => {
ea8adc8c 106 // Same as the closure case
29967ef6
XL
107 let tupled_ty = substs.as_generator().tupled_upvars_ty();
108 compute_components(tcx, tupled_ty, out, visited);
ea8adc8c 109
2c00a5a8
XL
110 // We ignore regions in the generator interior as we don't
111 // want these to affect region inference
ea8adc8c
XL
112 }
113
2c00a5a8 114 // All regions are bound inside a witness
b7449926 115 ty::GeneratorWitness(..) => (),
2c00a5a8 116
a7813a04
XL
117 // OutlivesTypeParameterEnv -- the actual checking that `X:'a`
118 // is implied by the environment is done in regionck.
b7449926 119 ty::Param(p) => {
a7813a04
XL
120 out.push(Component::Param(p));
121 }
e9174d1e 122
a7813a04
XL
123 // For projections, we prefer to generate an obligation like
124 // `<P0 as Trait<P1...Pn>>::Foo: 'a`, because this gives the
125 // regionck more ways to prove that it holds. However,
126 // regionck is not (at least currently) prepared to deal with
127 // higher-ranked regions that may appear in the
128 // trait-ref. Therefore, if we see any higher-ranke regions,
129 // we simply fallback to the most restrictive rule, which
130 // requires that `Pi: 'a` for all `i`.
b7449926 131 ty::Projection(ref data) => {
a1dfa0c6 132 if !data.has_escaping_bound_vars() {
a7813a04
XL
133 // best case: no escaping regions, so push the
134 // projection and skip the subtree (thus generating no
135 // constraints for Pi). This defers the choice between
136 // the rules OutlivesProjectionEnv,
137 // OutlivesProjectionTraitDef, and
138 // OutlivesProjectionComponents to regionck.
139 out.push(Component::Projection(*data));
140 } else {
141 // fallback case: hard code
142 // OutlivesProjectionComponents. Continue walking
143 // through and constrain Pi.
ba9703b0 144 let mut subcomponents = smallvec![];
29967ef6 145 let mut subvisited = SsoHashSet::new();
6c58768f 146 compute_components_recursive(tcx, ty.into(), &mut subcomponents, &mut subvisited);
ba9703b0 147 out.push(Component::EscapingProjection(subcomponents.into_iter().collect()));
a7813a04 148 }
e9174d1e 149 }
e9174d1e 150
c30ab7b3
SL
151 // We assume that inference variables are fully resolved.
152 // So, if we encounter an inference variable, just record
153 // the unresolved variable as a component.
b7449926 154 ty::Infer(infer_ty) => {
c30ab7b3 155 out.push(Component::UnresolvedInferenceVariable(infer_ty));
e9174d1e 156 }
e9174d1e 157
a7813a04
XL
158 // Most types do not introduce any region binders, nor
159 // involve any other subtle cases, and so the WF relation
160 // simply constraints any regions referenced directly by
161 // the type and then visits the types that are lexically
162 // contained within. (The comments refer to relevant rules
163 // from RFC1214.)
b7449926
XL
164 ty::Bool | // OutlivesScalar
165 ty::Char | // OutlivesScalar
166 ty::Int(..) | // OutlivesScalar
167 ty::Uint(..) | // OutlivesScalar
168 ty::Float(..) | // OutlivesScalar
169 ty::Never | // ...
170 ty::Adt(..) | // OutlivesNominalType
ba9703b0 171 ty::Opaque(..) | // OutlivesNominalType (ish)
b7449926
XL
172 ty::Foreign(..) | // OutlivesNominalType
173 ty::Str | // OutlivesScalar (ish)
b7449926
XL
174 ty::Slice(..) | // ...
175 ty::RawPtr(..) | // ...
176 ty::Ref(..) | // OutlivesReference
177 ty::Tuple(..) | // ...
b7449926 178 ty::FnPtr(_) | // OutlivesFunction (*)
ba9703b0 179 ty::Dynamic(..) | // OutlivesObject, OutlivesFragment (*)
a1dfa0c6
XL
180 ty::Placeholder(..) |
181 ty::Bound(..) |
f035d41b 182 ty::Error(_) => {
ba9703b0
XL
183 // (*) Function pointers and trait objects are both binders.
184 // In the RFC, this means we would add the bound regions to
185 // the "bound regions list". In our representation, no such
a7813a04
XL
186 // list is maintained explicitly, because bound regions
187 // themselves can be readily identified.
6c58768f 188 compute_components_recursive(tcx, ty.into(), out, visited);
e9174d1e
SL
189 }
190 }
dfeec247 191}
e9174d1e 192
ba9703b0
XL
193fn compute_components_recursive(
194 tcx: TyCtxt<'tcx>,
195 parent: GenericArg<'tcx>,
196 out: &mut SmallVec<[Component<'tcx>; 4]>,
29967ef6 197 visited: &mut SsoHashSet<GenericArg<'tcx>>,
ba9703b0 198) {
94222f64 199 for child in parent.walk_shallow(tcx, visited) {
ba9703b0
XL
200 match child.unpack() {
201 GenericArgKind::Type(ty) => {
6c58768f 202 compute_components(tcx, ty, out, visited);
ba9703b0
XL
203 }
204 GenericArgKind::Lifetime(lt) => {
205 // Ignore late-bound regions.
206 if !lt.is_late_bound() {
207 out.push(Component::Region(lt));
208 }
209 }
210 GenericArgKind::Const(_) => {
6c58768f 211 compute_components_recursive(tcx, child, out, visited);
ba9703b0
XL
212 }
213 }
e9174d1e 214 }
e9174d1e 215}