]> git.lizzy.rs Git - rust.git/blob - src/librustc_typeck/coherence/mod.rs
Remove interior mutability from TraitDef by turning fields into queries.
[rust.git] / src / librustc_typeck / coherence / mod.rs
1 // Copyright 2014 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 // Coherence phase
12 //
13 // The job of the coherence phase of typechecking is to ensure that
14 // each trait has at most one implementation for each type. This is
15 // done by the orphan and overlap modules. Then we build up various
16 // mappings. That mapping code resides here.
17
18 use hir::def_id::{CrateNum, DefId, LOCAL_CRATE};
19 use rustc::ty::{TyCtxt, TypeFoldable};
20 use rustc::ty::maps::Providers;
21
22 use syntax::ast;
23
24 mod builtin;
25 mod inherent_impls;
26 mod inherent_impls_overlap;
27 mod orphan;
28 mod overlap;
29 mod unsafety;
30
31 fn check_impl<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, node_id: ast::NodeId) {
32     let impl_def_id = tcx.hir.local_def_id(node_id);
33
34     // If there are no traits, then this implementation must have a
35     // base type.
36
37     if let Some(trait_ref) = tcx.impl_trait_ref(impl_def_id) {
38         debug!("(checking implementation) adding impl for trait '{:?}', item '{}'",
39                 trait_ref,
40                 tcx.item_path_str(impl_def_id));
41
42         // Skip impls where one of the self type is an error type.
43         // This occurs with e.g. resolve failures (#30589).
44         if trait_ref.references_error() {
45             return;
46         }
47
48         enforce_trait_manually_implementable(tcx, impl_def_id, trait_ref.def_id);
49     }
50 }
51
52 fn enforce_trait_manually_implementable(tcx: TyCtxt, impl_def_id: DefId, trait_def_id: DefId) {
53     let did = Some(trait_def_id);
54     let li = &tcx.lang_items;
55
56     // Disallow *all* explicit impls of `Sized` and `Unsize` for now.
57     if did == li.sized_trait() {
58         let span = tcx.span_of_impl(impl_def_id).unwrap();
59         struct_span_err!(tcx.sess,
60                          span,
61                          E0322,
62                          "explicit impls for the `Sized` trait are not permitted")
63             .span_label(span, "impl of 'Sized' not allowed")
64             .emit();
65         return;
66     }
67
68     if did == li.unsize_trait() {
69         let span = tcx.span_of_impl(impl_def_id).unwrap();
70         span_err!(tcx.sess,
71                   span,
72                   E0328,
73                   "explicit impls for the `Unsize` trait are not permitted");
74         return;
75     }
76
77     if tcx.sess.features.borrow().unboxed_closures {
78         // the feature gate allows all Fn traits
79         return;
80     }
81
82     let trait_name = if did == li.fn_trait() {
83         "Fn"
84     } else if did == li.fn_mut_trait() {
85         "FnMut"
86     } else if did == li.fn_once_trait() {
87         "FnOnce"
88     } else {
89         return; // everything OK
90     };
91     let mut err = struct_span_err!(tcx.sess,
92                                    tcx.span_of_impl(impl_def_id).unwrap(),
93                                    E0183,
94                                    "manual implementations of `{}` are experimental",
95                                    trait_name);
96     help!(&mut err,
97           "add `#![feature(unboxed_closures)]` to the crate attributes to enable");
98     err.emit();
99 }
100
101 pub fn provide(providers: &mut Providers) {
102     use self::builtin::coerce_unsized_info;
103     use self::inherent_impls::{crate_inherent_impls, inherent_impls};
104     use self::inherent_impls_overlap::crate_inherent_impls_overlap_check;
105
106     *providers = Providers {
107         coherent_trait,
108         crate_inherent_impls,
109         inherent_impls,
110         crate_inherent_impls_overlap_check,
111         coerce_unsized_info,
112         ..*providers
113     };
114 }
115
116 fn coherent_trait<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
117                             (_, def_id): (CrateNum, DefId)) {
118     let impls = tcx.hir.trait_impls(def_id);
119     for &impl_id in impls {
120         check_impl(tcx, impl_id);
121     }
122     for &impl_id in impls {
123         overlap::check_impl(tcx, impl_id);
124     }
125     builtin::check_trait(tcx, def_id);
126 }
127
128 pub fn check_coherence<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>) {
129     for &trait_def_id in tcx.hir.krate().trait_impls.keys() {
130         tcx.coherent_trait((LOCAL_CRATE, trait_def_id));
131     }
132
133     unsafety::check(tcx);
134     orphan::check(tcx);
135     overlap::check_default_impls(tcx);
136
137     // these queries are executed for side-effects (error reporting):
138     tcx.crate_inherent_impls(LOCAL_CRATE);
139     tcx.crate_inherent_impls_overlap_check(LOCAL_CRATE);
140 }