remove bivariance
There is one fishy part of these changes: when computing the LUB/GLB of
a "bivariant" type parameter, I currently return the `a`
value. Bivariant type parameters are only allowed in a very particular
situation, where the type parameter is only used as an associated type
output, like this:
```rust
pub struct Foo<A, B>
where A: Fn() -> B
{
data: A
}
```
In principle, if one had `T=Foo<A, &'a u32>` and `U=Foo<A, &'b u32>`
and (e.g.) `A: for<'a> Fn() -> &'a u32`, then I think that computing the
LUB of `T` and `U` might do the wrong thing. Probably the right behavior
is just to create a fresh type variable. However, that particular
example would not compile (because the where-clause is illegal; `'a`
does not appear in any input type). I was not able to make an example
that *would* compile and demonstrate this shortcoming, and handling the
LUB/GLB was mildly inconvenient, so I left it as is. I am considering
whether to revisit this.
This commit is contained in:
parent
4a0a0e949a
commit
18ea55fe16
6 changed files with 4 additions and 133 deletions
|
|
@ -1,123 +0,0 @@
|
|||
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
||||
// file at the top-level directory of this distribution and at
|
||||
// http://rust-lang.org/COPYRIGHT.
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||
// option. This file may not be copied, modified, or distributed
|
||||
// except according to those terms.
|
||||
|
||||
//! Applies the "bivariance relationship" to two types and/or regions.
|
||||
//! If (A,B) are bivariant then either A <: B or B <: A. It occurs
|
||||
//! when type/lifetime parameters are unconstrained. Usually this is
|
||||
//! an error, but we permit it in the specific case where a type
|
||||
//! parameter is constrained in a where-clause via an associated type.
|
||||
//!
|
||||
//! There are several ways one could implement bivariance. You could
|
||||
//! just do nothing at all, for example, or you could fully verify
|
||||
//! that one of the two subtyping relationships hold. We choose to
|
||||
//! thread a middle line: we relate types up to regions, but ignore
|
||||
//! all region relationships.
|
||||
//!
|
||||
//! At one point, handling bivariance in this fashion was necessary
|
||||
//! for inference, but I'm actually not sure if that is true anymore.
|
||||
//! In particular, it might be enough to say (A,B) are bivariant for
|
||||
//! all (A,B).
|
||||
|
||||
use super::combine::CombineFields;
|
||||
use super::type_variable::{BiTo};
|
||||
|
||||
use ty::{self, Ty, TyCtxt};
|
||||
use ty::TyVar;
|
||||
use ty::relate::{Relate, RelateResult, TypeRelation};
|
||||
|
||||
pub struct Bivariate<'combine, 'infcx: 'combine, 'gcx: 'infcx+'tcx, 'tcx: 'infcx> {
|
||||
fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>,
|
||||
a_is_expected: bool,
|
||||
}
|
||||
|
||||
impl<'combine, 'infcx, 'gcx, 'tcx> Bivariate<'combine, 'infcx, 'gcx, 'tcx> {
|
||||
pub fn new(fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>, a_is_expected: bool)
|
||||
-> Bivariate<'combine, 'infcx, 'gcx, 'tcx>
|
||||
{
|
||||
Bivariate { fields: fields, a_is_expected: a_is_expected }
|
||||
}
|
||||
}
|
||||
|
||||
impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
|
||||
for Bivariate<'combine, 'infcx, 'gcx, 'tcx>
|
||||
{
|
||||
fn tag(&self) -> &'static str { "Bivariate" }
|
||||
|
||||
fn tcx(&self) -> TyCtxt<'infcx, 'gcx, 'tcx> { self.fields.tcx() }
|
||||
|
||||
fn a_is_expected(&self) -> bool { self.a_is_expected }
|
||||
|
||||
fn relate_with_variance<T: Relate<'tcx>>(&mut self,
|
||||
variance: ty::Variance,
|
||||
a: &T,
|
||||
b: &T)
|
||||
-> RelateResult<'tcx, T>
|
||||
{
|
||||
match variance {
|
||||
// If we have Foo<A> and Foo is invariant w/r/t A,
|
||||
// and we want to assert that
|
||||
//
|
||||
// Foo<A> <: Foo<B> ||
|
||||
// Foo<B> <: Foo<A>
|
||||
//
|
||||
// then still A must equal B.
|
||||
ty::Invariant => self.relate(a, b),
|
||||
|
||||
ty::Covariant => self.relate(a, b),
|
||||
ty::Bivariant => self.relate(a, b),
|
||||
ty::Contravariant => self.relate(a, b),
|
||||
}
|
||||
}
|
||||
|
||||
fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
|
||||
debug!("{}.tys({:?}, {:?})", self.tag(),
|
||||
a, b);
|
||||
if a == b { return Ok(a); }
|
||||
|
||||
let infcx = self.fields.infcx;
|
||||
let a = infcx.type_variables.borrow_mut().replace_if_possible(a);
|
||||
let b = infcx.type_variables.borrow_mut().replace_if_possible(b);
|
||||
match (&a.sty, &b.sty) {
|
||||
(&ty::TyInfer(TyVar(a_id)), &ty::TyInfer(TyVar(b_id))) => {
|
||||
infcx.type_variables.borrow_mut().relate_vars(a_id, BiTo, b_id);
|
||||
Ok(a)
|
||||
}
|
||||
|
||||
(&ty::TyInfer(TyVar(a_id)), _) => {
|
||||
self.fields.instantiate(b, BiTo, a_id, self.a_is_expected)?;
|
||||
Ok(a)
|
||||
}
|
||||
|
||||
(_, &ty::TyInfer(TyVar(b_id))) => {
|
||||
self.fields.instantiate(a, BiTo, b_id, self.a_is_expected)?;
|
||||
Ok(a)
|
||||
}
|
||||
|
||||
_ => {
|
||||
self.fields.infcx.super_combine_tys(self, a, b)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn regions(&mut self, a: &'tcx ty::Region, _: &'tcx ty::Region)
|
||||
-> RelateResult<'tcx, &'tcx ty::Region> {
|
||||
Ok(a)
|
||||
}
|
||||
|
||||
fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
|
||||
-> RelateResult<'tcx, ty::Binder<T>>
|
||||
where T: Relate<'tcx>
|
||||
{
|
||||
let a1 = self.tcx().erase_late_bound_regions(a);
|
||||
let b1 = self.tcx().erase_late_bound_regions(b);
|
||||
let c = self.relate(&a1, &b1)?;
|
||||
Ok(ty::Binder(c))
|
||||
}
|
||||
}
|
||||
|
|
@ -32,7 +32,6 @@
|
|||
// is also useful to track which value is the "expected" value in
|
||||
// terms of error reporting.
|
||||
|
||||
use super::bivariate::Bivariate;
|
||||
use super::equate::Equate;
|
||||
use super::glb::Glb;
|
||||
use super::lub::Lub;
|
||||
|
|
@ -159,10 +158,6 @@ impl<'infcx, 'gcx, 'tcx> CombineFields<'infcx, 'gcx, 'tcx> {
|
|||
Equate::new(self, a_is_expected)
|
||||
}
|
||||
|
||||
pub fn bivariate<'a>(&'a mut self, a_is_expected: bool) -> Bivariate<'a, 'infcx, 'gcx, 'tcx> {
|
||||
Bivariate::new(self, a_is_expected)
|
||||
}
|
||||
|
||||
pub fn sub<'a>(&'a mut self, a_is_expected: bool) -> Sub<'a, 'infcx, 'gcx, 'tcx> {
|
||||
Sub::new(self, a_is_expected)
|
||||
}
|
||||
|
|
@ -251,7 +246,7 @@ impl<'infcx, 'gcx, 'tcx> CombineFields<'infcx, 'gcx, 'tcx> {
|
|||
// to associate causes/spans with each of the relations in
|
||||
// the stack to get this right.
|
||||
match dir {
|
||||
BiTo => self.bivariate(a_is_expected).relate(&a_ty, &b_ty),
|
||||
BiTo => Ok(a_ty),
|
||||
EqTo => self.equate(a_is_expected).relate(&a_ty, &b_ty),
|
||||
SubtypeOf => self.sub(a_is_expected).relate(&a_ty, &b_ty),
|
||||
SupertypeOf => self.sub(a_is_expected).relate_with_variance(
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
|
|||
match variance {
|
||||
ty::Invariant => self.fields.equate(self.a_is_expected).relate(a, b),
|
||||
ty::Covariant => self.relate(a, b),
|
||||
ty::Bivariant => self.fields.bivariate(self.a_is_expected).relate(a, b),
|
||||
ty::Bivariant => Ok(a.clone()),
|
||||
ty::Contravariant => self.fields.lub(self.a_is_expected).relate(a, b),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
|
|||
match variance {
|
||||
ty::Invariant => self.fields.equate(self.a_is_expected).relate(a, b),
|
||||
ty::Covariant => self.relate(a, b),
|
||||
ty::Bivariant => self.fields.bivariate(self.a_is_expected).relate(a, b),
|
||||
ty::Bivariant => Ok(a.clone()),
|
||||
ty::Contravariant => self.fields.glb(self.a_is_expected).relate(a, b),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,6 @@ use self::region_inference::{RegionVarBindings, RegionSnapshot};
|
|||
use self::type_variable::TypeVariableOrigin;
|
||||
use self::unify_key::ToType;
|
||||
|
||||
mod bivariate;
|
||||
mod combine;
|
||||
mod equate;
|
||||
pub mod error_reporting;
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
|
|||
match variance {
|
||||
ty::Invariant => self.fields.equate(self.a_is_expected).relate(a, b),
|
||||
ty::Covariant => self.relate(a, b),
|
||||
ty::Bivariant => self.fields.bivariate(self.a_is_expected).relate(a, b),
|
||||
ty::Bivariant => Ok(a.clone()),
|
||||
ty::Contravariant => self.with_expected_switched(|this| { this.relate(b, a) }),
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue