]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_infer/src/infer/combine.rs
New upstream version 1.64.0+dfsg1
[rustc.git] / compiler / rustc_infer / src / infer / combine.rs
CommitLineData
923072b8
FG
1//! There are four type combiners: [Equate], [Sub], [Lub], and [Glb].
2//! Each implements the trait [TypeRelation] and contains methods for
3//! combining two instances of various things and yielding a new instance.
4//! These combiner methods always yield a `Result<T>`. To relate two
5//! types, you can use `infcx.at(cause, param_env)` which then allows
6//! you to use the relevant methods of [At](super::at::At).
7//!
8//! Combiners mostly do their specific behavior and then hand off the
9//! bulk of the work to [InferCtxt::super_combine_tys] and
10//! [InferCtxt::super_combine_consts].
11//!
12//! Combining two types may have side-effects on the inference contexts
13//! which can be undone by using snapshots. You probably want to use
14//! either [InferCtxt::commit_if_ok] or [InferCtxt::probe].
15//!
16//! On success, the LUB/GLB operations return the appropriate bound. The
17//! return value of `Equate` or `Sub` shouldn't really be used.
18//!
19//! ## Contravariance
20//!
21//! We explicitly track which argument is expected using
22//! [TypeRelation::a_is_expected], so when dealing with contravariance
23//! this should be correctly updated.
1a4d82fc 24
c295e0f8 25use super::equate::Equate;
1a4d82fc
JJ
26use super::glb::Glb;
27use super::lub::Lub;
28use super::sub::Sub;
0531ce1d 29use super::type_variable::TypeVariableValue;
dfeec247 30use super::{InferCtxt, MiscVariable, TypeTrace};
dfeec247 31use crate::traits::{Obligation, PredicateObligations};
29967ef6 32use rustc_data_structures::sso::SsoHashMap;
dfeec247 33use rustc_hir::def_id::DefId;
5e7ed085
FG
34use rustc_middle::infer::unify_key::{ConstVarValue, ConstVariableValue};
35use rustc_middle::infer::unify_key::{ConstVariableOrigin, ConstVariableOriginKind};
3dfed10e 36use rustc_middle::traits::ObligationCause;
a2a8927a 37use rustc_middle::ty::error::{ExpectedFound, TypeError};
ba9703b0
XL
38use rustc_middle::ty::relate::{self, Relate, RelateResult, TypeRelation};
39use rustc_middle::ty::subst::SubstsRef;
064997fb 40use rustc_middle::ty::{self, InferConst, ToPredicate, Ty, TyCtxt, TypeVisitable};
ba9703b0 41use rustc_middle::ty::{IntType, UintType};
1b1a35ee 42use rustc_span::{Span, DUMMY_SP};
1a4d82fc 43
1a4d82fc 44#[derive(Clone)]
dc9dc135
XL
45pub struct CombineFields<'infcx, 'tcx> {
46 pub infcx: &'infcx InferCtxt<'infcx, 'tcx>,
1a4d82fc 47 pub trace: TypeTrace<'tcx>,
e9174d1e 48 pub cause: Option<ty::relate::Cause>,
7cac9316 49 pub param_env: ty::ParamEnv<'tcx>,
54a0048b 50 pub obligations: PredicateObligations<'tcx>,
5e7ed085
FG
51 /// Whether we should define opaque types
52 /// or just treat them opaquely.
53 /// Currently only used to prevent predicate
54 /// matching from matching anything against opaque
55 /// types.
56 pub define_opaque_types: bool,
1a4d82fc
JJ
57}
58
e74abb32 59#[derive(Copy, Clone, Debug)]
cc61c64b 60pub enum RelationDir {
dfeec247
XL
61 SubtypeOf,
62 SupertypeOf,
63 EqTo,
cc61c64b
XL
64}
65
dc9dc135
XL
66impl<'infcx, 'tcx> InferCtxt<'infcx, 'tcx> {
67 pub fn super_combine_tys<R>(
68 &self,
69 relation: &mut R,
70 a: Ty<'tcx>,
71 b: Ty<'tcx>,
72 ) -> RelateResult<'tcx, Ty<'tcx>>
73 where
74 R: TypeRelation<'tcx>,
a7813a04
XL
75 {
76 let a_is_expected = relation.a_is_expected();
1a4d82fc 77
1b1a35ee 78 match (a.kind(), b.kind()) {
a7813a04 79 // Relate integral variables to other types
b7449926 80 (&ty::Infer(ty::IntVar(a_id)), &ty::Infer(ty::IntVar(b_id))) => {
74b04a01 81 self.inner
a7813a04 82 .borrow_mut()
f9f354fc 83 .int_unification_table()
a7813a04
XL
84 .unify_var_var(a_id, b_id)
85 .map_err(|e| int_unification_error(a_is_expected, e))?;
86 Ok(a)
87 }
b7449926 88 (&ty::Infer(ty::IntVar(v_id)), &ty::Int(v)) => {
a7813a04
XL
89 self.unify_integral_variable(a_is_expected, v_id, IntType(v))
90 }
b7449926 91 (&ty::Int(v), &ty::Infer(ty::IntVar(v_id))) => {
a7813a04
XL
92 self.unify_integral_variable(!a_is_expected, v_id, IntType(v))
93 }
b7449926 94 (&ty::Infer(ty::IntVar(v_id)), &ty::Uint(v)) => {
a7813a04
XL
95 self.unify_integral_variable(a_is_expected, v_id, UintType(v))
96 }
b7449926 97 (&ty::Uint(v), &ty::Infer(ty::IntVar(v_id))) => {
a7813a04
XL
98 self.unify_integral_variable(!a_is_expected, v_id, UintType(v))
99 }
1a4d82fc 100
a7813a04 101 // Relate floating-point variables to other types
b7449926 102 (&ty::Infer(ty::FloatVar(a_id)), &ty::Infer(ty::FloatVar(b_id))) => {
74b04a01 103 self.inner
a7813a04 104 .borrow_mut()
f9f354fc 105 .float_unification_table()
a7813a04
XL
106 .unify_var_var(a_id, b_id)
107 .map_err(|e| float_unification_error(relation.a_is_expected(), e))?;
108 Ok(a)
109 }
b7449926 110 (&ty::Infer(ty::FloatVar(v_id)), &ty::Float(v)) => {
a7813a04
XL
111 self.unify_float_variable(a_is_expected, v_id, v)
112 }
b7449926 113 (&ty::Float(v), &ty::Infer(ty::FloatVar(v_id))) => {
a7813a04
XL
114 self.unify_float_variable(!a_is_expected, v_id, v)
115 }
1a4d82fc 116
a7813a04 117 // All other cases of inference are errors
dfeec247 118 (&ty::Infer(_), _) | (_, &ty::Infer(_)) => {
f035d41b 119 Err(TypeError::Sorts(ty::relate::expected_found(relation, a, b)))
a7813a04 120 }
1a4d82fc 121
dfeec247 122 _ => ty::relate::super_relate_tys(relation, a, b),
1a4d82fc
JJ
123 }
124 }
125
48663c56
XL
126 pub fn super_combine_consts<R>(
127 &self,
128 relation: &mut R,
5099ac24
FG
129 a: ty::Const<'tcx>,
130 b: ty::Const<'tcx>,
131 ) -> RelateResult<'tcx, ty::Const<'tcx>>
48663c56 132 where
f9f354fc 133 R: ConstEquateRelation<'tcx>,
48663c56 134 {
e1599b0c 135 debug!("{}.consts({:?}, {:?})", relation.tag(), a, b);
dfeec247
XL
136 if a == b {
137 return Ok(a);
138 }
e1599b0c 139
5e7ed085
FG
140 let a = self.shallow_resolve(a);
141 let b = self.shallow_resolve(b);
e1599b0c 142
48663c56
XL
143 let a_is_expected = relation.a_is_expected();
144
923072b8 145 match (a.kind(), b.kind()) {
dfeec247
XL
146 (
147 ty::ConstKind::Infer(InferConst::Var(a_vid)),
148 ty::ConstKind::Infer(InferConst::Var(b_vid)),
149 ) => {
74b04a01 150 self.inner
48663c56 151 .borrow_mut()
f9f354fc 152 .const_unification_table()
48663c56
XL
153 .unify_var_var(a_vid, b_vid)
154 .map_err(|e| const_unification_error(a_is_expected, e))?;
155 return Ok(a);
156 }
157
158 // All other cases of inference with other variables are errors.
dfeec247
XL
159 (ty::ConstKind::Infer(InferConst::Var(_)), ty::ConstKind::Infer(_))
160 | (ty::ConstKind::Infer(_), ty::ConstKind::Infer(InferConst::Var(_))) => {
60c5eb7d 161 bug!("tried to combine ConstKind::Infer/ConstKind::Infer(InferConst::Var)")
48663c56
XL
162 }
163
60c5eb7d 164 (ty::ConstKind::Infer(InferConst::Var(vid)), _) => {
1b1a35ee 165 return self.unify_const_variable(relation.param_env(), vid, b, a_is_expected);
48663c56
XL
166 }
167
60c5eb7d 168 (_, ty::ConstKind::Infer(InferConst::Var(vid))) => {
1b1a35ee 169 return self.unify_const_variable(relation.param_env(), vid, a, !a_is_expected);
48663c56 170 }
f9f354fc 171 (ty::ConstKind::Unevaluated(..), _) if self.tcx.lazy_normalization() => {
3dfed10e 172 // FIXME(#59490): Need to remove the leak check to accommodate
f9f354fc
XL
173 // escaping bound variables here.
174 if !a.has_escaping_bound_vars() && !b.has_escaping_bound_vars() {
175 relation.const_equate_obligation(a, b);
176 }
177 return Ok(b);
178 }
179 (_, ty::ConstKind::Unevaluated(..)) if self.tcx.lazy_normalization() => {
3dfed10e 180 // FIXME(#59490): Need to remove the leak check to accommodate
f9f354fc
XL
181 // escaping bound variables here.
182 if !a.has_escaping_bound_vars() && !b.has_escaping_bound_vars() {
183 relation.const_equate_obligation(a, b);
184 }
185 return Ok(a);
186 }
48663c56
XL
187 _ => {}
188 }
189
190 ty::relate::super_relate_consts(relation, a, b)
191 }
192
1b1a35ee
XL
193 /// Unifies the const variable `target_vid` with the given constant.
194 ///
195 /// This also tests if the given const `ct` contains an inference variable which was previously
196 /// unioned with `target_vid`. If this is the case, inferring `target_vid` to `ct`
cdc7bbd5 197 /// would result in an infinite type as we continuously replace an inference variable
1b1a35ee
XL
198 /// in `ct` with `ct` itself.
199 ///
200 /// This is especially important as unevaluated consts use their parents generics.
201 /// They therefore often contain unused substs, making these errors far more likely.
202 ///
203 /// A good example of this is the following:
204 ///
04454e1e 205 /// ```compile_fail,E0308
94222f64 206 /// #![feature(generic_const_exprs)]
1b1a35ee
XL
207 ///
208 /// fn bind<const N: usize>(value: [u8; N]) -> [u8; 3 + 4] {
209 /// todo!()
210 /// }
211 ///
212 /// fn main() {
213 /// let mut arr = Default::default();
214 /// arr = bind(arr);
215 /// }
216 /// ```
217 ///
218 /// Here `3 + 4` ends up as `ConstKind::Unevaluated` which uses the generics
219 /// of `fn bind` (meaning that its substs contain `N`).
220 ///
221 /// `bind(arr)` now infers that the type of `arr` must be `[u8; N]`.
222 /// The assignment `arr = bind(arr)` now tries to equate `N` with `3 + 4`.
223 ///
224 /// As `3 + 4` contains `N` in its substs, this must not succeed.
225 ///
226 /// See `src/test/ui/const-generics/occurs-check/` for more examples where this is relevant.
6a06907d 227 #[instrument(level = "debug", skip(self))]
1b1a35ee 228 fn unify_const_variable(
48663c56 229 &self,
1b1a35ee
XL
230 param_env: ty::ParamEnv<'tcx>,
231 target_vid: ty::ConstVid<'tcx>,
5099ac24 232 ct: ty::Const<'tcx>,
48663c56 233 vid_is_expected: bool,
5099ac24 234 ) -> RelateResult<'tcx, ty::Const<'tcx>> {
1b1a35ee
XL
235 let (for_universe, span) = {
236 let mut inner = self.inner.borrow_mut();
237 let variable_table = &mut inner.const_unification_table();
238 let var_value = variable_table.probe_value(target_vid);
239 match var_value.val {
240 ConstVariableValue::Known { value } => {
241 bug!("instantiating {:?} which has a known value {:?}", target_vid, value)
242 }
243 ConstVariableValue::Unknown { universe } => (universe, var_value.origin.span),
244 }
245 };
246 let value = ConstInferUnifier { infcx: self, span, param_env, for_universe, target_vid }
247 .relate(ct, ct)?;
248
74b04a01 249 self.inner
48663c56 250 .borrow_mut()
f9f354fc 251 .const_unification_table()
dfeec247 252 .unify_var_value(
1b1a35ee 253 target_vid,
dfeec247
XL
254 ConstVarValue {
255 origin: ConstVariableOrigin {
256 kind: ConstVariableOriginKind::ConstInference,
257 span: DUMMY_SP,
258 },
259 val: ConstVariableValue::Known { value },
dc9dc135 260 },
dfeec247 261 )
1b1a35ee
XL
262 .map(|()| value)
263 .map_err(|e| const_unification_error(vid_is_expected, e))
48663c56
XL
264 }
265
dfeec247
XL
266 fn unify_integral_variable(
267 &self,
268 vid_is_expected: bool,
269 vid: ty::IntVid,
270 val: ty::IntVarValue,
271 ) -> RelateResult<'tcx, Ty<'tcx>> {
74b04a01 272 self.inner
a7813a04 273 .borrow_mut()
f9f354fc 274 .int_unification_table()
0531ce1d 275 .unify_var_value(vid, Some(val))
a7813a04
XL
276 .map_err(|e| int_unification_error(vid_is_expected, e))?;
277 match val {
278 IntType(v) => Ok(self.tcx.mk_mach_int(v)),
279 UintType(v) => Ok(self.tcx.mk_mach_uint(v)),
280 }
1a4d82fc 281 }
1a4d82fc 282
dfeec247
XL
283 fn unify_float_variable(
284 &self,
285 vid_is_expected: bool,
286 vid: ty::FloatVid,
5869c6ff 287 val: ty::FloatTy,
dfeec247 288 ) -> RelateResult<'tcx, Ty<'tcx>> {
74b04a01 289 self.inner
a7813a04 290 .borrow_mut()
f9f354fc 291 .float_unification_table()
0531ce1d 292 .unify_var_value(vid, Some(ty::FloatVarValue(val)))
a7813a04
XL
293 .map_err(|e| float_unification_error(vid_is_expected, e))?;
294 Ok(self.tcx.mk_mach_float(val))
295 }
c34b1796
AL
296}
297
dc9dc135
XL
298impl<'infcx, 'tcx> CombineFields<'infcx, 'tcx> {
299 pub fn tcx(&self) -> TyCtxt<'tcx> {
c34b1796
AL
300 self.infcx.tcx
301 }
302
dc9dc135 303 pub fn equate<'a>(&'a mut self, a_is_expected: bool) -> Equate<'a, 'infcx, 'tcx> {
5bcae85e 304 Equate::new(self, a_is_expected)
1a4d82fc
JJ
305 }
306
dc9dc135 307 pub fn sub<'a>(&'a mut self, a_is_expected: bool) -> Sub<'a, 'infcx, 'tcx> {
5bcae85e 308 Sub::new(self, a_is_expected)
c34b1796
AL
309 }
310
dc9dc135 311 pub fn lub<'a>(&'a mut self, a_is_expected: bool) -> Lub<'a, 'infcx, 'tcx> {
5bcae85e 312 Lub::new(self, a_is_expected)
c34b1796
AL
313 }
314
dc9dc135 315 pub fn glb<'a>(&'a mut self, a_is_expected: bool) -> Glb<'a, 'infcx, 'tcx> {
5bcae85e 316 Glb::new(self, a_is_expected)
1a4d82fc
JJ
317 }
318
9fa01778
XL
319 /// Here, `dir` is either `EqTo`, `SubtypeOf`, or `SupertypeOf`.
320 /// The idea is that we should ensure that the type `a_ty` is equal
cc61c64b
XL
321 /// to, a subtype of, or a supertype of (respectively) the type
322 /// to which `b_vid` is bound.
323 ///
324 /// Since `b_vid` has not yet been instantiated with a type, we
325 /// will first instantiate `b_vid` with a *generalized* version
326 /// of `a_ty`. Generalization introduces other inference
327 /// variables wherever subtyping could occur.
5e7ed085 328 #[instrument(skip(self), level = "debug")]
dfeec247
XL
329 pub fn instantiate(
330 &mut self,
331 a_ty: Ty<'tcx>,
332 dir: RelationDir,
333 b_vid: ty::TyVid,
334 a_is_expected: bool,
335 ) -> RelateResult<'tcx, ()> {
cc61c64b 336 use self::RelationDir::*;
1a4d82fc 337
cc61c64b 338 // Get the actual variable that b_vid has been inferred to
f9f354fc 339 debug_assert!(self.infcx.inner.borrow_mut().type_variables().probe(b_vid).is_unknown());
1a4d82fc 340
cc61c64b
XL
341 // Generalize type of `a_ty` appropriately depending on the
342 // direction. As an example, assume:
343 //
344 // - `a_ty == &'x ?1`, where `'x` is some free region and `?1` is an
345 // inference variable,
346 // - and `dir` == `SubtypeOf`.
347 //
348 // Then the generalized form `b_ty` would be `&'?2 ?3`, where
349 // `'?2` and `?3` are fresh region/type inference
350 // variables. (Down below, we will relate `a_ty <: b_ty`,
351 // adding constraints like `'x: '?2` and `?1 <: ?3`.)
352 let Generalization { ty: b_ty, needs_wf } = self.generalize(a_ty, b_vid, dir)?;
5e7ed085 353 debug!(?b_ty);
f9f354fc 354 self.infcx.inner.borrow_mut().type_variables().instantiate(b_vid, b_ty);
cc61c64b
XL
355
356 if needs_wf {
dfeec247
XL
357 self.obligations.push(Obligation::new(
358 self.trace.cause.clone(),
359 self.param_env,
c295e0f8
XL
360 ty::Binder::dummy(ty::PredicateKind::WellFormed(b_ty.into()))
361 .to_predicate(self.infcx.tcx),
dfeec247 362 ));
1a4d82fc
JJ
363 }
364
cc61c64b
XL
365 // Finally, relate `b_ty` to `a_ty`, as described in previous comment.
366 //
367 // FIXME(#16847): This code is non-ideal because all these subtype
368 // relations wind up attributed to the same spans. We need
369 // to associate causes/spans with each of the relations in
370 // the stack to get this right.
371 match dir {
f035d41b
XL
372 EqTo => self.equate(a_is_expected).relate(a_ty, b_ty),
373 SubtypeOf => self.sub(a_is_expected).relate(a_ty, b_ty),
17df50a5
XL
374 SupertypeOf => self.sub(a_is_expected).relate_with_variance(
375 ty::Contravariant,
376 ty::VarianceDiagInfo::default(),
377 a_ty,
378 b_ty,
379 ),
cc61c64b
XL
380 }?;
381
1a4d82fc
JJ
382 Ok(())
383 }
384
cc61c64b
XL
385 /// Attempts to generalize `ty` for the type variable `for_vid`.
386 /// This checks for cycle -- that is, whether the type `ty`
387 /// references `for_vid`. The `dir` is the "direction" for which we
388 /// a performing the generalization (i.e., are we producing a type
389 /// that can be used as a supertype etc).
390 ///
391 /// Preconditions:
392 ///
393 /// - `for_vid` is a "root vid"
5e7ed085 394 #[instrument(skip(self), level = "trace")]
dfeec247
XL
395 fn generalize(
396 &self,
397 ty: Ty<'tcx>,
398 for_vid: ty::TyVid,
399 dir: RelationDir,
400 ) -> RelateResult<'tcx, Generalization<'tcx>> {
cc61c64b
XL
401 // Determine the ambient variance within which `ty` appears.
402 // The surrounding equation is:
403 //
404 // ty [op] ty2
405 //
406 // where `op` is either `==`, `<:`, or `:>`. This maps quite
407 // naturally.
408 let ambient_variance = match dir {
409 RelationDir::EqTo => ty::Invariant,
410 RelationDir::SubtypeOf => ty::Covariant,
411 RelationDir::SupertypeOf => ty::Contravariant,
412 };
413
5e7ed085 414 trace!(?ambient_variance);
0731742a 415
f9f354fc 416 let for_universe = match self.infcx.inner.borrow_mut().type_variables().probe(for_vid) {
dfeec247 417 v @ TypeVariableValue::Known { .. } => {
1b1a35ee 418 bug!("instantiating {:?} which has a known value {:?}", for_vid, v,)
dfeec247 419 }
0731742a
XL
420 TypeVariableValue::Unknown { universe } => universe,
421 };
422
5e7ed085
FG
423 trace!(?for_universe);
424 trace!(?self.trace);
0731742a 425
c34b1796
AL
426 let mut generalize = Generalizer {
427 infcx: self.infcx,
3dfed10e 428 cause: &self.trace.cause,
f9f354fc 429 for_vid_sub_root: self.infcx.inner.borrow_mut().type_variables().sub_root_var(for_vid),
0731742a 430 for_universe,
041b39d2 431 ambient_variance,
cc61c64b 432 needs_wf: false,
ff7c6d11 433 root_ty: ty,
416331ca 434 param_env: self.param_env,
29967ef6 435 cache: SsoHashMap::new(),
c34b1796 436 };
cc61c64b 437
f035d41b 438 let ty = match generalize.relate(ty, ty) {
13cf67c4
XL
439 Ok(ty) => ty,
440 Err(e) => {
5e7ed085 441 debug!(?e, "failure");
13cf67c4
XL
442 return Err(e);
443 }
444 };
cc61c64b 445 let needs_wf = generalize.needs_wf;
5e7ed085 446 trace!(?ty, ?needs_wf, "success");
cc61c64b 447 Ok(Generalization { ty, needs_wf })
1a4d82fc 448 }
f9f354fc
XL
449
450 pub fn add_const_equate_obligation(
451 &mut self,
452 a_is_expected: bool,
5099ac24
FG
453 a: ty::Const<'tcx>,
454 b: ty::Const<'tcx>,
f9f354fc
XL
455 ) {
456 let predicate = if a_is_expected {
5869c6ff 457 ty::PredicateKind::ConstEquate(a, b)
f9f354fc 458 } else {
5869c6ff 459 ty::PredicateKind::ConstEquate(b, a)
f9f354fc
XL
460 };
461 self.obligations.push(Obligation::new(
462 self.trace.cause.clone(),
463 self.param_env,
c295e0f8 464 ty::Binder::dummy(predicate).to_predicate(self.tcx()),
f9f354fc
XL
465 ));
466 }
1a4d82fc
JJ
467}
468
dc9dc135
XL
469struct Generalizer<'cx, 'tcx> {
470 infcx: &'cx InferCtxt<'cx, 'tcx>,
ff7c6d11 471
9fa01778 472 /// The span, used when creating new type variables and things.
3dfed10e 473 cause: &'cx ObligationCause<'tcx>,
ff7c6d11
XL
474
475 /// The vid of the type variable that is in the process of being
476 /// instantiated; if we find this within the type we are folding,
477 /// that means we would have created a cyclic type.
cc61c64b 478 for_vid_sub_root: ty::TyVid,
ff7c6d11 479
0731742a
XL
480 /// The universe of the type variable that is in the process of
481 /// being instantiated. Any fresh variables that we create in this
482 /// process should be in that same universe.
483 for_universe: ty::UniverseIndex,
484
ff7c6d11 485 /// Track the variance as we descend into the type.
cc61c64b 486 ambient_variance: ty::Variance,
ff7c6d11
XL
487
488 /// See the field `needs_wf` in `Generalization`.
489 needs_wf: bool,
490
491 /// The root type that we are generalizing. Used when reporting cycles.
492 root_ty: Ty<'tcx>,
416331ca
XL
493
494 param_env: ty::ParamEnv<'tcx>,
6c58768f 495
29967ef6 496 cache: SsoHashMap<Ty<'tcx>, RelateResult<'tcx, Ty<'tcx>>>,
cc61c64b
XL
497}
498
499/// Result from a generalization operation. This includes
500/// not only the generalized type, but also a bool flag
83c7162d 501/// indicating whether further WF checks are needed.
cc61c64b
XL
502struct Generalization<'tcx> {
503 ty: Ty<'tcx>,
504
505 /// If true, then the generalized type may not be well-formed,
506 /// even if the source type is well-formed, so we should add an
507 /// additional check to enforce that it is. This arises in
508 /// particular around 'bivariant' type parameters that are only
509 /// constrained by a where-clause. As an example, imagine a type:
510 ///
9fa01778 511 /// struct Foo<A, B> where A: Iterator<Item = B> {
cc61c64b
XL
512 /// data: A
513 /// }
514 ///
515 /// here, `A` will be covariant, but `B` is
516 /// unconstrained. However, whatever it is, for `Foo` to be WF, it
517 /// must be equal to `A::Item`. If we have an input `Foo<?A, ?B>`,
518 /// then after generalization we will wind up with a type like
519 /// `Foo<?C, ?D>`. When we enforce that `Foo<?A, ?B> <: Foo<?C,
520 /// ?D>` (or `>:`), we will wind up with the requirement that `?A
521 /// <: ?C`, but no particular relationship between `?B` and `?D`
522 /// (after all, we do not know the variance of the normalized form
523 /// of `A::Item` with respect to `A`). If we do nothing else, this
9fa01778 524 /// may mean that `?D` goes unconstrained (as in #41677). So, in
cc61c64b
XL
525 /// this scenario where we create a new type variable in a
526 /// bivariant context, we set the `needs_wf` flag to true. This
527 /// will force the calling code to check that `WF(Foo<?C, ?D>)`
528 /// holds, which in turn implies that `?C::Item == ?D`. So once
529 /// `?C` is constrained, that should suffice to restrict `?D`.
530 needs_wf: bool,
1a4d82fc
JJ
531}
532
a2a8927a 533impl<'tcx> TypeRelation<'tcx> for Generalizer<'_, 'tcx> {
dc9dc135 534 fn tcx(&self) -> TyCtxt<'tcx> {
1a4d82fc
JJ
535 self.infcx.tcx
536 }
dfeec247
XL
537 fn param_env(&self) -> ty::ParamEnv<'tcx> {
538 self.param_env
539 }
1a4d82fc 540
cc61c64b
XL
541 fn tag(&self) -> &'static str {
542 "Generalizer"
543 }
544
545 fn a_is_expected(&self) -> bool {
546 true
547 }
548
dfeec247
XL
549 fn binders<T>(
550 &mut self,
cdc7bbd5
XL
551 a: ty::Binder<'tcx, T>,
552 b: ty::Binder<'tcx, T>,
553 ) -> RelateResult<'tcx, ty::Binder<'tcx, T>>
dfeec247
XL
554 where
555 T: Relate<'tcx>,
cc61c64b 556 {
fc512014 557 Ok(a.rebind(self.relate(a.skip_binder(), b.skip_binder())?))
cc61c64b
XL
558 }
559
dfeec247
XL
560 fn relate_item_substs(
561 &mut self,
562 item_def_id: DefId,
563 a_subst: SubstsRef<'tcx>,
564 b_subst: SubstsRef<'tcx>,
565 ) -> RelateResult<'tcx, SubstsRef<'tcx>> {
cc61c64b
XL
566 if self.ambient_variance == ty::Variance::Invariant {
567 // Avoid fetching the variance if we are in an invariant
568 // context; no need, and it can induce dependency cycles
0731742a 569 // (e.g., #41849).
04454e1e 570 relate::relate_substs(self, a_subst, b_subst)
cc61c64b 571 } else {
a2a8927a
XL
572 let tcx = self.tcx();
573 let opt_variances = tcx.variances_of(item_def_id);
04454e1e
FG
574 relate::relate_substs_with_variances(
575 self,
576 item_def_id,
577 &opt_variances,
578 a_subst,
579 b_subst,
580 )
cc61c64b
XL
581 }
582 }
583
dfeec247
XL
584 fn relate_with_variance<T: Relate<'tcx>>(
585 &mut self,
586 variance: ty::Variance,
17df50a5 587 _info: ty::VarianceDiagInfo<'tcx>,
f035d41b
XL
588 a: T,
589 b: T,
dfeec247 590 ) -> RelateResult<'tcx, T> {
cc61c64b
XL
591 let old_ambient_variance = self.ambient_variance;
592 self.ambient_variance = self.ambient_variance.xform(variance);
593
594 let result = self.relate(a, b);
595 self.ambient_variance = old_ambient_variance;
596 result
597 }
598
599 fn tys(&mut self, t: Ty<'tcx>, t2: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
600 assert_eq!(t, t2); // we are abusing TypeRelation here; both LHS and RHS ought to be ==
601
6c58768f
XL
602 if let Some(result) = self.cache.get(&t) {
603 return result.clone();
604 }
0731742a
XL
605 debug!("generalize: t={:?}", t);
606
48663c56 607 // Check to see whether the type we are generalizing references
cc61c64b
XL
608 // any other type variable related to `vid` via
609 // subtyping. This is basically our "occurs check", preventing
610 // us from creating infinitely sized types.
1b1a35ee 611 let result = match *t.kind() {
b7449926 612 ty::Infer(ty::TyVar(vid)) => {
f9f354fc
XL
613 let vid = self.infcx.inner.borrow_mut().type_variables().root_var(vid);
614 let sub_vid = self.infcx.inner.borrow_mut().type_variables().sub_root_var(vid);
cc61c64b
XL
615 if sub_vid == self.for_vid_sub_root {
616 // If sub-roots are equal, then `for_vid` and
617 // `vid` are related via subtyping.
e74abb32 618 Err(TypeError::CyclicTy(self.root_ty))
1a4d82fc 619 } else {
f9f354fc 620 let probe = self.infcx.inner.borrow_mut().type_variables().probe(vid);
74b04a01 621 match probe {
0531ce1d 622 TypeVariableValue::Known { value: u } => {
0731742a 623 debug!("generalize: known value {:?}", u);
f035d41b 624 self.relate(u, u)
cc61c64b 625 }
83c7162d 626 TypeVariableValue::Unknown { universe } => {
cc61c64b
XL
627 match self.ambient_variance {
628 // Invariant: no need to make a fresh type variable.
0731742a
XL
629 ty::Invariant => {
630 if self.for_universe.can_name(universe) {
631 return Ok(t);
632 }
633 }
cc61c64b
XL
634
635 // Bivariant: make a fresh var, but we
636 // may need a WF predicate. See
637 // comment on `needs_wf` field for
638 // more info.
639 ty::Bivariant => self.needs_wf = true,
640
641 // Co/contravariant: this will be
642 // sufficiently constrained later on.
643 ty::Covariant | ty::Contravariant => (),
644 }
645
74b04a01 646 let origin =
f9f354fc
XL
647 *self.infcx.inner.borrow_mut().type_variables().var_origin(vid);
648 let new_var_id = self
649 .infcx
650 .inner
651 .borrow_mut()
652 .type_variables()
c295e0f8 653 .new_var(self.for_universe, origin);
532ac7d7 654 let u = self.tcx().mk_ty_var(new_var_id);
94222f64
XL
655
656 // Record that we replaced `vid` with `new_var_id` as part of a generalization
657 // operation. This is needed to detect cyclic types. To see why, see the
658 // docs in the `type_variables` module.
659 self.infcx.inner.borrow_mut().type_variables().sub(vid, new_var_id);
dfeec247 660 debug!("generalize: replacing original vid={:?} with new={:?}", vid, u);
e74abb32 661 Ok(u)
54a0048b 662 }
1a4d82fc
JJ
663 }
664 }
665 }
ba9703b0 666 ty::Infer(ty::IntVar(_) | ty::FloatVar(_)) => {
cc61c64b
XL
667 // No matter what mode we are in,
668 // integer/floating-point types must be equal to be
669 // relatable.
670 Ok(t)
671 }
dfeec247 672 _ => relate::super_relate_tys(self, t, t),
6c58768f
XL
673 };
674
675 self.cache.insert(t, result.clone());
676 return result;
1a4d82fc
JJ
677 }
678
dfeec247
XL
679 fn regions(
680 &mut self,
681 r: ty::Region<'tcx>,
682 r2: ty::Region<'tcx>,
683 ) -> RelateResult<'tcx, ty::Region<'tcx>> {
cc61c64b
XL
684 assert_eq!(r, r2); // we are abusing TypeRelation here; both LHS and RHS ought to be ==
685
0731742a
XL
686 debug!("generalize: regions r={:?}", r);
687
9e0c209e 688 match *r {
3157f602
XL
689 // Never make variables for regions bound within the type itself,
690 // nor for erased regions.
dfeec247 691 ty::ReLateBound(..) | ty::ReErased => {
cc61c64b
XL
692 return Ok(r);
693 }
1a4d82fc 694
dfeec247
XL
695 ty::RePlaceholder(..)
696 | ty::ReVar(..)
74b04a01 697 | ty::ReEmpty(_)
dfeec247 698 | ty::ReStatic
dfeec247
XL
699 | ty::ReEarlyBound(..)
700 | ty::ReFree(..) => {
0731742a 701 // see common code below
1a4d82fc 702 }
0731742a 703 }
ff7c6d11 704
0731742a
XL
705 // If we are in an invariant context, we can re-use the region
706 // as is, unless it happens to be in some universe that we
707 // can't name. (In the case of a region *variable*, we could
708 // use it if we promoted it into our universe, but we don't
709 // bother.)
710 if let ty::Invariant = self.ambient_variance {
711 let r_universe = self.infcx.universe_of_region(r);
712 if self.for_universe.can_name(r_universe) {
713 return Ok(r);
ff7c6d11 714 }
1a4d82fc
JJ
715 }
716
717 // FIXME: This is non-ideal because we don't give a
718 // very descriptive origin for this region variable.
3dfed10e 719 Ok(self.infcx.next_region_var_in_universe(MiscVariable(self.cause.span), self.for_universe))
1a4d82fc 720 }
48663c56
XL
721
722 fn consts(
723 &mut self,
5099ac24
FG
724 c: ty::Const<'tcx>,
725 c2: ty::Const<'tcx>,
726 ) -> RelateResult<'tcx, ty::Const<'tcx>> {
48663c56
XL
727 assert_eq!(c, c2); // we are abusing TypeRelation here; both LHS and RHS ought to be ==
728
923072b8 729 match c.kind() {
60c5eb7d 730 ty::ConstKind::Infer(InferConst::Var(vid)) => {
f9f354fc
XL
731 let mut inner = self.infcx.inner.borrow_mut();
732 let variable_table = &mut inner.const_unification_table();
e74abb32
XL
733 let var_value = variable_table.probe_value(vid);
734 match var_value.val {
fc512014
XL
735 ConstVariableValue::Known { value: u } => {
736 drop(inner);
737 self.relate(u, u)
738 }
e74abb32
XL
739 ConstVariableValue::Unknown { universe } => {
740 if self.for_universe.can_name(universe) {
741 Ok(c)
742 } else {
743 let new_var_id = variable_table.new_key(ConstVarValue {
744 origin: var_value.origin,
745 val: ConstVariableValue::Unknown { universe: self.for_universe },
746 });
5099ac24 747 Ok(self.tcx().mk_const_var(new_var_id, c.ty()))
e74abb32 748 }
48663c56 749 }
48663c56
XL
750 }
751 }
5099ac24
FG
752 ty::ConstKind::Unevaluated(ty::Unevaluated { def, substs, promoted })
753 if self.tcx().lazy_normalization() =>
754 {
755 assert_eq!(promoted, None);
17df50a5
XL
756 let substs = self.relate_with_variance(
757 ty::Variance::Invariant,
758 ty::VarianceDiagInfo::default(),
759 substs,
760 substs,
761 )?;
5099ac24
FG
762 Ok(self.tcx().mk_const(ty::ConstS {
763 ty: c.ty(),
923072b8 764 kind: ty::ConstKind::Unevaluated(ty::Unevaluated { def, substs, promoted }),
cdc7bbd5
XL
765 }))
766 }
e74abb32 767 _ => relate::super_relate_consts(self, c, c),
48663c56
XL
768 }
769 }
1a4d82fc 770}
c34b1796 771
f9f354fc
XL
772pub trait ConstEquateRelation<'tcx>: TypeRelation<'tcx> {
773 /// Register an obligation that both constants must be equal to each other.
774 ///
775 /// If they aren't equal then the relation doesn't hold.
5099ac24 776 fn const_equate_obligation(&mut self, a: ty::Const<'tcx>, b: ty::Const<'tcx>);
f9f354fc
XL
777}
778
48663c56
XL
779pub fn const_unification_error<'tcx>(
780 a_is_expected: bool,
5099ac24 781 (a, b): (ty::Const<'tcx>, ty::Const<'tcx>),
48663c56 782) -> TypeError<'tcx> {
a2a8927a 783 TypeError::ConstMismatch(ExpectedFound::new(a_is_expected, a, b))
48663c56
XL
784}
785
dfeec247
XL
786fn int_unification_error<'tcx>(
787 a_is_expected: bool,
788 v: (ty::IntVarValue, ty::IntVarValue),
789) -> TypeError<'tcx> {
c34b1796 790 let (a, b) = v;
a2a8927a 791 TypeError::IntMismatch(ExpectedFound::new(a_is_expected, a, b))
c34b1796
AL
792}
793
dfeec247
XL
794fn float_unification_error<'tcx>(
795 a_is_expected: bool,
796 v: (ty::FloatVarValue, ty::FloatVarValue),
797) -> TypeError<'tcx> {
0531ce1d 798 let (ty::FloatVarValue(a), ty::FloatVarValue(b)) = v;
a2a8927a 799 TypeError::FloatMismatch(ExpectedFound::new(a_is_expected, a, b))
c34b1796 800}
1b1a35ee
XL
801
802struct ConstInferUnifier<'cx, 'tcx> {
803 infcx: &'cx InferCtxt<'cx, 'tcx>,
804
805 span: Span,
806
807 param_env: ty::ParamEnv<'tcx>,
808
809 for_universe: ty::UniverseIndex,
810
811 /// The vid of the const variable that is in the process of being
812 /// instantiated; if we find this within the const we are folding,
813 /// that means we would have created a cyclic const.
814 target_vid: ty::ConstVid<'tcx>,
815}
816
817// We use `TypeRelation` here to propagate `RelateResult` upwards.
818//
819// Both inputs are expected to be the same.
a2a8927a 820impl<'tcx> TypeRelation<'tcx> for ConstInferUnifier<'_, 'tcx> {
1b1a35ee
XL
821 fn tcx(&self) -> TyCtxt<'tcx> {
822 self.infcx.tcx
823 }
824
825 fn param_env(&self) -> ty::ParamEnv<'tcx> {
826 self.param_env
827 }
828
829 fn tag(&self) -> &'static str {
830 "ConstInferUnifier"
831 }
832
833 fn a_is_expected(&self) -> bool {
834 true
835 }
836
837 fn relate_with_variance<T: Relate<'tcx>>(
838 &mut self,
839 _variance: ty::Variance,
17df50a5 840 _info: ty::VarianceDiagInfo<'tcx>,
1b1a35ee
XL
841 a: T,
842 b: T,
843 ) -> RelateResult<'tcx, T> {
844 // We don't care about variance here.
845 self.relate(a, b)
846 }
847
848 fn binders<T>(
849 &mut self,
cdc7bbd5
XL
850 a: ty::Binder<'tcx, T>,
851 b: ty::Binder<'tcx, T>,
852 ) -> RelateResult<'tcx, ty::Binder<'tcx, T>>
1b1a35ee
XL
853 where
854 T: Relate<'tcx>,
855 {
fc512014 856 Ok(a.rebind(self.relate(a.skip_binder(), b.skip_binder())?))
1b1a35ee
XL
857 }
858
3c0e092e 859 #[tracing::instrument(level = "debug", skip(self))]
1b1a35ee
XL
860 fn tys(&mut self, t: Ty<'tcx>, _t: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
861 debug_assert_eq!(t, _t);
862 debug!("ConstInferUnifier: t={:?}", t);
863
864 match t.kind() {
865 &ty::Infer(ty::TyVar(vid)) => {
866 let vid = self.infcx.inner.borrow_mut().type_variables().root_var(vid);
867 let probe = self.infcx.inner.borrow_mut().type_variables().probe(vid);
868 match probe {
869 TypeVariableValue::Known { value: u } => {
870 debug!("ConstOccursChecker: known value {:?}", u);
871 self.tys(u, u)
872 }
873 TypeVariableValue::Unknown { universe } => {
874 if self.for_universe.can_name(universe) {
875 return Ok(t);
876 }
877
878 let origin =
879 *self.infcx.inner.borrow_mut().type_variables().var_origin(vid);
c295e0f8
XL
880 let new_var_id = self
881 .infcx
882 .inner
883 .borrow_mut()
884 .type_variables()
885 .new_var(self.for_universe, origin);
1b1a35ee
XL
886 let u = self.tcx().mk_ty_var(new_var_id);
887 debug!(
888 "ConstInferUnifier: replacing original vid={:?} with new={:?}",
889 vid, u
890 );
891 Ok(u)
892 }
893 }
894 }
fc512014 895 ty::Infer(ty::IntVar(_) | ty::FloatVar(_)) => Ok(t),
1b1a35ee
XL
896 _ => relate::super_relate_tys(self, t, t),
897 }
898 }
899
900 fn regions(
901 &mut self,
902 r: ty::Region<'tcx>,
903 _r: ty::Region<'tcx>,
904 ) -> RelateResult<'tcx, ty::Region<'tcx>> {
905 debug_assert_eq!(r, _r);
906 debug!("ConstInferUnifier: r={:?}", r);
907
5099ac24 908 match *r {
1b1a35ee
XL
909 // Never make variables for regions bound within the type itself,
910 // nor for erased regions.
911 ty::ReLateBound(..) | ty::ReErased => {
912 return Ok(r);
913 }
914
915 ty::RePlaceholder(..)
916 | ty::ReVar(..)
917 | ty::ReEmpty(_)
918 | ty::ReStatic
919 | ty::ReEarlyBound(..)
920 | ty::ReFree(..) => {
921 // see common code below
922 }
923 }
924
925 let r_universe = self.infcx.universe_of_region(r);
926 if self.for_universe.can_name(r_universe) {
927 return Ok(r);
928 } else {
929 // FIXME: This is non-ideal because we don't give a
930 // very descriptive origin for this region variable.
931 Ok(self.infcx.next_region_var_in_universe(MiscVariable(self.span), self.for_universe))
932 }
933 }
934
3c0e092e 935 #[tracing::instrument(level = "debug", skip(self))]
1b1a35ee
XL
936 fn consts(
937 &mut self,
5099ac24
FG
938 c: ty::Const<'tcx>,
939 _c: ty::Const<'tcx>,
940 ) -> RelateResult<'tcx, ty::Const<'tcx>> {
1b1a35ee
XL
941 debug_assert_eq!(c, _c);
942 debug!("ConstInferUnifier: c={:?}", c);
943
923072b8 944 match c.kind() {
1b1a35ee 945 ty::ConstKind::Infer(InferConst::Var(vid)) => {
1b1a35ee
XL
946 // Check if the current unification would end up
947 // unifying `target_vid` with a const which contains
948 // an inference variable which is unioned with `target_vid`.
949 //
950 // Not doing so can easily result in stack overflows.
3c0e092e
XL
951 if self
952 .infcx
953 .inner
954 .borrow_mut()
955 .const_unification_table()
956 .unioned(self.target_vid, vid)
957 {
1b1a35ee
XL
958 return Err(TypeError::CyclicConst(c));
959 }
960
3c0e092e
XL
961 let var_value =
962 self.infcx.inner.borrow_mut().const_unification_table().probe_value(vid);
1b1a35ee
XL
963 match var_value.val {
964 ConstVariableValue::Known { value: u } => self.consts(u, u),
965 ConstVariableValue::Unknown { universe } => {
966 if self.for_universe.can_name(universe) {
967 Ok(c)
968 } else {
3c0e092e
XL
969 let new_var_id =
970 self.infcx.inner.borrow_mut().const_unification_table().new_key(
971 ConstVarValue {
972 origin: var_value.origin,
973 val: ConstVariableValue::Unknown {
974 universe: self.for_universe,
975 },
976 },
977 );
5099ac24 978 Ok(self.tcx().mk_const_var(new_var_id, c.ty()))
1b1a35ee
XL
979 }
980 }
981 }
982 }
5099ac24
FG
983 ty::ConstKind::Unevaluated(ty::Unevaluated { def, substs, promoted })
984 if self.tcx().lazy_normalization() =>
985 {
986 assert_eq!(promoted, None);
17df50a5
XL
987 let substs = self.relate_with_variance(
988 ty::Variance::Invariant,
989 ty::VarianceDiagInfo::default(),
990 substs,
991 substs,
992 )?;
5099ac24
FG
993 Ok(self.tcx().mk_const(ty::ConstS {
994 ty: c.ty(),
923072b8 995 kind: ty::ConstKind::Unevaluated(ty::Unevaluated { def, substs, promoted }),
cdc7bbd5
XL
996 }))
997 }
1b1a35ee
XL
998 _ => relate::super_relate_consts(self, c, c),
999 }
1000 }
1001}