2012-12-03 16:48:01 -08:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
use super::combine::CombineFields;
|
2014-11-25 16:59:02 -05:00
|
|
|
use super::higher_ranked::HigherRankedRelations;
|
2015-03-22 15:11:56 -04:00
|
|
|
use super::InferCtxt;
|
|
|
|
use super::lattice::{self, LatticeDir};
|
2015-03-28 02:23:20 -07:00
|
|
|
use super::Subtype;
|
2014-11-25 16:59:02 -05:00
|
|
|
|
2015-01-03 22:42:21 -05:00
|
|
|
use middle::ty::{self, Ty};
|
2015-09-06 18:32:34 +03:00
|
|
|
use middle::ty::relate::{Relate, RelateResult, TypeRelation};
|
2012-08-13 15:06:13 -07:00
|
|
|
|
2014-07-22 07:15:43 -04:00
|
|
|
/// "Least upper bound" (common supertype)
|
2015-03-22 15:11:56 -04:00
|
|
|
pub struct Lub<'a, 'tcx: 'a> {
|
|
|
|
fields: CombineFields<'a, 'tcx>
|
2014-07-22 07:15:43 -04:00
|
|
|
}
|
2012-08-13 15:06:13 -07:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
impl<'a, 'tcx> Lub<'a, 'tcx> {
|
|
|
|
pub fn new(fields: CombineFields<'a, 'tcx>) -> Lub<'a, 'tcx> {
|
|
|
|
Lub { fields: fields }
|
|
|
|
}
|
2012-11-29 18:37:33 -08:00
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
impl<'a, 'tcx> TypeRelation<'a, 'tcx> for Lub<'a, 'tcx> {
|
|
|
|
fn tag(&self) -> &'static str { "Lub" }
|
|
|
|
|
|
|
|
fn tcx(&self) -> &'a ty::ctxt<'tcx> { self.fields.tcx() }
|
|
|
|
|
|
|
|
fn a_is_expected(&self) -> bool { self.fields.a_is_expected }
|
2012-08-13 15:06:13 -07:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn relate_with_variance<T:Relate<'a,'tcx>>(&mut self,
|
|
|
|
variance: ty::Variance,
|
|
|
|
a: &T,
|
|
|
|
b: &T)
|
|
|
|
-> RelateResult<'tcx, T>
|
2015-02-12 05:16:02 -05:00
|
|
|
{
|
2015-03-22 15:11:56 -04:00
|
|
|
match variance {
|
|
|
|
ty::Invariant => self.fields.equate().relate(a, b),
|
|
|
|
ty::Covariant => self.relate(a, b),
|
|
|
|
ty::Bivariant => self.fields.bivariate().relate(a, b),
|
|
|
|
ty::Contravariant => self.fields.glb().relate(a, b),
|
2015-02-12 05:16:02 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
|
|
|
|
lattice::super_lattice_tys(self, a, b)
|
2015-02-12 05:16:02 -05:00
|
|
|
}
|
2012-08-13 15:06:13 -07:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn regions(&mut self, a: ty::Region, b: ty::Region) -> RelateResult<'tcx, ty::Region> {
|
2015-06-18 20:25:05 +03:00
|
|
|
debug!("{}.regions({:?}, {:?})",
|
2012-08-13 15:06:13 -07:00
|
|
|
self.tag(),
|
2015-06-18 20:25:05 +03:00
|
|
|
a,
|
|
|
|
b);
|
2012-08-13 15:06:13 -07:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
let origin = Subtype(self.fields.trace.clone());
|
|
|
|
Ok(self.fields.infcx.region_vars.lub_regions(origin, a, b))
|
2012-08-13 15:06:13 -07:00
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
|
|
|
|
-> RelateResult<'tcx, ty::Binder<T>>
|
|
|
|
where T: Relate<'a, 'tcx>
|
|
|
|
{
|
|
|
|
self.fields.higher_ranked_lub(a, b)
|
2012-08-13 15:06:13 -07:00
|
|
|
}
|
2015-03-22 15:11:56 -04:00
|
|
|
}
|
2014-11-15 17:09:51 -05:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
impl<'a, 'tcx> LatticeDir<'a,'tcx> for Lub<'a, 'tcx> {
|
|
|
|
fn infcx(&self) -> &'a InferCtxt<'a,'tcx> {
|
|
|
|
self.fields.infcx
|
|
|
|
}
|
|
|
|
|
|
|
|
fn relate_bound(&self, v: Ty<'tcx>, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, ()> {
|
|
|
|
let mut sub = self.fields.sub();
|
|
|
|
try!(sub.relate(&a, &v));
|
|
|
|
try!(sub.relate(&b, &v));
|
|
|
|
Ok(())
|
2014-11-15 17:09:51 -05:00
|
|
|
}
|
2012-08-13 15:06:13 -07:00
|
|
|
}
|