]> git.proxmox.com Git - rustc.git/blame - src/librustc/infer/bivariate.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / librustc / infer / bivariate.rs
CommitLineData
85aaf69f
SL
1// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11//! Applies the "bivariance relationship" to two types and/or regions.
12//! If (A,B) are bivariant then either A <: B or B <: A. It occurs
13//! when type/lifetime parameters are unconstrained. Usually this is
14//! an error, but we permit it in the specific case where a type
15//! parameter is constrained in a where-clause via an associated type.
16//!
17//! There are several ways one could implement bivariance. You could
18//! just do nothing at all, for example, or you could fully verify
19//! that one of the two subtyping relationships hold. We choose to
20//! thread a middle line: we relate types up to regions, but ignore
21//! all region relationships.
22//!
23//! At one point, handling bivariance in this fashion was necessary
24//! for inference, but I'm actually not sure if that is true anymore.
25//! In particular, it might be enough to say (A,B) are bivariant for
26//! all (A,B).
27
a7813a04 28use super::combine::CombineFields;
c34b1796
AL
29use super::type_variable::{BiTo};
30
54a0048b
SL
31use ty::{self, Ty, TyCtxt};
32use ty::TyVar;
33use ty::relate::{Relate, RelateResult, TypeRelation};
85aaf69f 34
5bcae85e
SL
35pub struct Bivariate<'combine, 'infcx: 'combine, 'gcx: 'infcx+'tcx, 'tcx: 'infcx> {
36 fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>,
37 a_is_expected: bool,
85aaf69f
SL
38}
39
5bcae85e
SL
40impl<'combine, 'infcx, 'gcx, 'tcx> Bivariate<'combine, 'infcx, 'gcx, 'tcx> {
41 pub fn new(fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>, a_is_expected: bool)
42 -> Bivariate<'combine, 'infcx, 'gcx, 'tcx>
43 {
44 Bivariate { fields: fields, a_is_expected: a_is_expected }
85aaf69f 45 }
c34b1796 46}
85aaf69f 47
5bcae85e
SL
48impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
49 for Bivariate<'combine, 'infcx, 'gcx, 'tcx>
50{
c34b1796 51 fn tag(&self) -> &'static str { "Bivariate" }
85aaf69f 52
5bcae85e 53 fn tcx(&self) -> TyCtxt<'infcx, 'gcx, 'tcx> { self.fields.tcx() }
85aaf69f 54
5bcae85e 55 fn a_is_expected(&self) -> bool { self.a_is_expected }
85aaf69f 56
a7813a04
XL
57 fn relate_with_variance<T: Relate<'tcx>>(&mut self,
58 variance: ty::Variance,
59 a: &T,
60 b: &T)
61 -> RelateResult<'tcx, T>
85aaf69f 62 {
c34b1796
AL
63 match variance {
64 // If we have Foo<A> and Foo is invariant w/r/t A,
65 // and we want to assert that
66 //
67 // Foo<A> <: Foo<B> ||
68 // Foo<B> <: Foo<A>
69 //
70 // then still A must equal B.
71 ty::Invariant => self.relate(a, b),
72
73 ty::Covariant => self.relate(a, b),
74 ty::Bivariant => self.relate(a, b),
75 ty::Contravariant => self.relate(a, b),
85aaf69f
SL
76 }
77 }
78
c34b1796 79 fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
62682a34
SL
80 debug!("{}.tys({:?}, {:?})", self.tag(),
81 a, b);
85aaf69f
SL
82 if a == b { return Ok(a); }
83
84 let infcx = self.fields.infcx;
54a0048b
SL
85 let a = infcx.type_variables.borrow_mut().replace_if_possible(a);
86 let b = infcx.type_variables.borrow_mut().replace_if_possible(b);
85aaf69f 87 match (&a.sty, &b.sty) {
62682a34 88 (&ty::TyInfer(TyVar(a_id)), &ty::TyInfer(TyVar(b_id))) => {
85aaf69f
SL
89 infcx.type_variables.borrow_mut().relate_vars(a_id, BiTo, b_id);
90 Ok(a)
91 }
92
62682a34 93 (&ty::TyInfer(TyVar(a_id)), _) => {
5bcae85e 94 self.fields.instantiate(b, BiTo, a_id, self.a_is_expected)?;
85aaf69f
SL
95 Ok(a)
96 }
97
62682a34 98 (_, &ty::TyInfer(TyVar(b_id))) => {
5bcae85e 99 self.fields.instantiate(a, BiTo, b_id, self.a_is_expected)?;
85aaf69f
SL
100 Ok(a)
101 }
102
103 _ => {
a7813a04 104 self.fields.infcx.super_combine_tys(self, a, b)
85aaf69f
SL
105 }
106 }
107 }
108
c34b1796
AL
109 fn regions(&mut self, a: ty::Region, _: ty::Region) -> RelateResult<'tcx, ty::Region> {
110 Ok(a)
111 }
112
113 fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
114 -> RelateResult<'tcx, ty::Binder<T>>
a7813a04 115 where T: Relate<'tcx>
85aaf69f 116 {
c1a9b12d
SL
117 let a1 = self.tcx().erase_late_bound_regions(a);
118 let b1 = self.tcx().erase_late_bound_regions(b);
54a0048b 119 let c = self.relate(&a1, &b1)?;
85aaf69f
SL
120 Ok(ty::Binder(c))
121 }
122}