2014-07-22 07:46:36 -04:00
|
|
|
// 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.
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
use super::combine::{self, CombineFields};
|
|
|
|
use super::higher_ranked::HigherRankedRelations;
|
|
|
|
use super::{Subtype};
|
|
|
|
use super::type_variable::{EqTo};
|
|
|
|
|
2015-01-03 22:42:21 -05:00
|
|
|
use middle::ty::{self, Ty};
|
2014-07-22 07:46:36 -04:00
|
|
|
use middle::ty::TyVar;
|
2015-09-06 18:32:34 +03:00
|
|
|
use middle::ty::relate::{Relate, RelateResult, TypeRelation};
|
2014-07-22 07:46:36 -04:00
|
|
|
|
2015-09-16 15:07:35 -06:00
|
|
|
/// Ensures `a` is made equal to `b`. Returns `a` on success.
|
2015-03-22 15:11:56 -04:00
|
|
|
pub struct Equate<'a, 'tcx: 'a> {
|
|
|
|
fields: CombineFields<'a, 'tcx>
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
impl<'a, 'tcx> Equate<'a, 'tcx> {
|
|
|
|
pub fn new(fields: CombineFields<'a, 'tcx>) -> Equate<'a, 'tcx> {
|
|
|
|
Equate { fields: fields }
|
|
|
|
}
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
impl<'a, 'tcx> TypeRelation<'a,'tcx> for Equate<'a, 'tcx> {
|
|
|
|
fn tag(&self) -> &'static str { "Equate" }
|
2014-07-22 07:46:36 -04:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn tcx(&self) -> &'a ty::ctxt<'tcx> { self.fields.tcx() }
|
2014-07-22 07:46:36 -04:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn a_is_expected(&self) -> bool { self.fields.a_is_expected }
|
2014-07-22 07:46:36 -04:00
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn relate_with_variance<T:Relate<'a,'tcx>>(&mut self,
|
|
|
|
_: ty::Variance,
|
|
|
|
a: &T,
|
|
|
|
b: &T)
|
|
|
|
-> RelateResult<'tcx, T>
|
|
|
|
{
|
|
|
|
self.relate(a, b)
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|
|
|
|
|
2015-03-22 15:11:56 -04:00
|
|
|
fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
|
2015-06-18 20:25:05 +03:00
|
|
|
debug!("{}.tys({:?}, {:?})", self.tag(),
|
|
|
|
a, b);
|
2014-07-22 07:46:36 -04:00
|
|
|
if a == b { return Ok(a); }
|
|
|
|
|
|
|
|
let infcx = self.fields.infcx;
|
|
|
|
let a = infcx.type_variables.borrow().replace_if_possible(a);
|
|
|
|
let b = infcx.type_variables.borrow().replace_if_possible(b);
|
2014-10-31 10:51:16 +02:00
|
|
|
match (&a.sty, &b.sty) {
|
2015-06-11 16:21:46 -07:00
|
|
|
(&ty::TyInfer(TyVar(a_id)), &ty::TyInfer(TyVar(b_id))) => {
|
2014-07-22 07:46:36 -04:00
|
|
|
infcx.type_variables.borrow_mut().relate_vars(a_id, EqTo, b_id);
|
|
|
|
Ok(a)
|
|
|
|
}
|
|
|
|
|
2015-06-11 16:21:46 -07:00
|
|
|
(&ty::TyInfer(TyVar(a_id)), _) => {
|
2014-07-22 07:46:36 -04:00
|
|
|
try!(self.fields.instantiate(b, EqTo, a_id));
|
|
|
|
Ok(a)
|
|
|
|
}
|
|
|
|
|
2015-06-11 16:21:46 -07:00
|
|
|
(_, &ty::TyInfer(TyVar(b_id))) => {
|
2014-07-22 07:46:36 -04:00
|
|
|
try!(self.fields.instantiate(a, EqTo, b_id));
|
|
|
|
Ok(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
_ => {
|
2015-09-14 15:52:48 -06:00
|
|
|
try!(combine::super_combine_tys(self.fields.infcx, self, a, b));
|
|
|
|
Ok(a)
|
2014-07-22 07:46:36 -04: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({:?}, {:?})",
|
2015-03-22 15:11:56 -04:00
|
|
|
self.tag(),
|
2015-06-18 20:25:05 +03:00
|
|
|
a,
|
|
|
|
b);
|
2015-03-22 15:11:56 -04:00
|
|
|
let origin = Subtype(self.fields.trace.clone());
|
|
|
|
self.fields.infcx.region_vars.make_eqregion(origin, a, b);
|
|
|
|
Ok(a)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
|
|
|
|
-> RelateResult<'tcx, ty::Binder<T>>
|
|
|
|
where T: Relate<'a, 'tcx>
|
2014-12-11 13:37:37 -05:00
|
|
|
{
|
2015-03-22 15:11:56 -04:00
|
|
|
try!(self.fields.higher_ranked_sub(a, b));
|
|
|
|
self.fields.higher_ranked_sub(b, a)
|
2014-11-15 17:09:51 -05:00
|
|
|
}
|
2014-07-22 07:46:36 -04:00
|
|
|
}
|