]> git.lizzy.rs Git - rust.git/blob - src/librustc/infer/glb.rs
Changed issue number to 36105
[rust.git] / src / librustc / infer / glb.rs
1 // Copyright 2012 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 use super::combine::CombineFields;
12 use super::InferCtxt;
13 use super::lattice::{self, LatticeDir};
14 use super::Subtype;
15
16 use ty::{self, Ty, TyCtxt};
17 use ty::relate::{Relate, RelateResult, TypeRelation};
18
19 /// "Greatest lower bound" (common subtype)
20 pub struct Glb<'combine, 'infcx: 'combine, 'gcx: 'infcx+'tcx, 'tcx: 'infcx> {
21     fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>,
22     a_is_expected: bool,
23 }
24
25 impl<'combine, 'infcx, 'gcx, 'tcx> Glb<'combine, 'infcx, 'gcx, 'tcx> {
26     pub fn new(fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>, a_is_expected: bool)
27         -> Glb<'combine, 'infcx, 'gcx, 'tcx>
28     {
29         Glb { fields: fields, a_is_expected: a_is_expected }
30     }
31 }
32
33 impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
34     for Glb<'combine, 'infcx, 'gcx, 'tcx>
35 {
36     fn tag(&self) -> &'static str { "Glb" }
37
38     fn tcx(&self) -> TyCtxt<'infcx, 'gcx, 'tcx> { self.fields.tcx() }
39
40     fn a_is_expected(&self) -> bool { self.a_is_expected }
41
42     fn relate_with_variance<T: Relate<'tcx>>(&mut self,
43                                              variance: ty::Variance,
44                                              a: &T,
45                                              b: &T)
46                                              -> RelateResult<'tcx, T>
47     {
48         match variance {
49             ty::Invariant => self.fields.equate(self.a_is_expected).relate(a, b),
50             ty::Covariant => self.relate(a, b),
51             ty::Bivariant => self.fields.bivariate(self.a_is_expected).relate(a, b),
52             ty::Contravariant => self.fields.lub(self.a_is_expected).relate(a, b),
53         }
54     }
55
56     fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
57         lattice::super_lattice_tys(self, a, b)
58     }
59
60     fn regions(&mut self, a: ty::Region, b: ty::Region) -> RelateResult<'tcx, ty::Region> {
61         debug!("{}.regions({:?}, {:?})",
62                self.tag(),
63                a,
64                b);
65
66         let origin = Subtype(self.fields.trace.clone());
67         Ok(self.fields.infcx.region_vars.glb_regions(origin, a, b))
68     }
69
70     fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
71                   -> RelateResult<'tcx, ty::Binder<T>>
72         where T: Relate<'tcx>
73     {
74         self.fields.higher_ranked_glb(a, b, self.a_is_expected)
75     }
76 }
77
78 impl<'combine, 'infcx, 'gcx, 'tcx> LatticeDir<'infcx, 'gcx, 'tcx>
79     for Glb<'combine, 'infcx, 'gcx, 'tcx>
80 {
81     fn infcx(&self) -> &'infcx InferCtxt<'infcx, 'gcx, 'tcx> {
82         self.fields.infcx
83     }
84
85     fn relate_bound(&mut self, v: Ty<'tcx>, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, ()> {
86         let mut sub = self.fields.sub(self.a_is_expected);
87         sub.relate(&v, &a)?;
88         sub.relate(&v, &b)?;
89         Ok(())
90     }
91 }