]> git.lizzy.rs Git - rust.git/blob - src/librustc/infer/lub.rs
Rollup merge of #41249 - GuillaumeGomez:rustdoc-render, r=steveklabnik,frewsxcv
[rust.git] / src / librustc / infer / lub.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 traits::ObligationCause;
17 use ty::{self, Ty, TyCtxt};
18 use ty::relate::{Relate, RelateResult, TypeRelation};
19
20 /// "Least upper bound" (common supertype)
21 pub struct Lub<'combine, 'infcx: 'combine, 'gcx: 'infcx+'tcx, 'tcx: 'infcx> {
22     fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>,
23     a_is_expected: bool,
24 }
25
26 impl<'combine, 'infcx, 'gcx, 'tcx> Lub<'combine, 'infcx, 'gcx, 'tcx> {
27     pub fn new(fields: &'combine mut CombineFields<'infcx, 'gcx, 'tcx>, a_is_expected: bool)
28         -> Lub<'combine, 'infcx, 'gcx, 'tcx>
29     {
30         Lub { fields: fields, a_is_expected: a_is_expected }
31     }
32 }
33
34 impl<'combine, 'infcx, 'gcx, 'tcx> TypeRelation<'infcx, 'gcx, 'tcx>
35     for Lub<'combine, 'infcx, 'gcx, 'tcx>
36 {
37     fn tag(&self) -> &'static str { "Lub" }
38
39     fn tcx(&self) -> TyCtxt<'infcx, 'gcx, 'tcx> { self.fields.tcx() }
40
41     fn a_is_expected(&self) -> bool { self.a_is_expected }
42
43     fn relate_with_variance<T: Relate<'tcx>>(&mut self,
44                                              variance: ty::Variance,
45                                              a: &T,
46                                              b: &T)
47                                              -> RelateResult<'tcx, T>
48     {
49         match variance {
50             ty::Invariant => self.fields.equate(self.a_is_expected).relate(a, b),
51             ty::Covariant => self.relate(a, b),
52             // FIXME(#41044) -- not correct, need test
53             ty::Bivariant => Ok(a.clone()),
54             ty::Contravariant => self.fields.glb(self.a_is_expected).relate(a, b),
55         }
56     }
57
58     fn tys(&mut self, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, Ty<'tcx>> {
59         lattice::super_lattice_tys(self, a, b)
60     }
61
62     fn regions(&mut self, a: &'tcx ty::Region, b: &'tcx ty::Region)
63                -> RelateResult<'tcx, &'tcx ty::Region> {
64         debug!("{}.regions({:?}, {:?})",
65                self.tag(),
66                a,
67                b);
68
69         let origin = Subtype(self.fields.trace.clone());
70         Ok(self.fields.infcx.region_vars.lub_regions(origin, a, b))
71     }
72
73     fn binders<T>(&mut self, a: &ty::Binder<T>, b: &ty::Binder<T>)
74                   -> RelateResult<'tcx, ty::Binder<T>>
75         where T: Relate<'tcx>
76     {
77         self.fields.higher_ranked_lub(a, b, self.a_is_expected)
78     }
79 }
80
81 impl<'combine, 'infcx, 'gcx, 'tcx> LatticeDir<'infcx, 'gcx, 'tcx>
82     for Lub<'combine, 'infcx, 'gcx, 'tcx>
83 {
84     fn infcx(&self) -> &'infcx InferCtxt<'infcx, 'gcx, 'tcx> {
85         self.fields.infcx
86     }
87
88     fn cause(&self) -> &ObligationCause<'tcx> {
89         &self.fields.trace.cause
90     }
91
92     fn relate_bound(&mut self, v: Ty<'tcx>, a: Ty<'tcx>, b: Ty<'tcx>) -> RelateResult<'tcx, ()> {
93         let mut sub = self.fields.sub(self.a_is_expected);
94         sub.relate(&a, &v)?;
95         sub.relate(&b, &v)?;
96         Ok(())
97     }
98 }