]> git.proxmox.com Git - rustc.git/blame - src/librustc_middle/ty/trait_def.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_middle / ty / trait_def.rs
CommitLineData
9fa01778
XL
1use crate::ich::{self, StableHashingContext};
2use crate::traits::specialization_graph;
3use crate::ty::fast_reject;
4use crate::ty::fold::TypeFoldable;
5use crate::ty::{Ty, TyCtxt};
dfeec247 6use rustc_hir as hir;
ba9703b0
XL
7use rustc_hir::def_id::{CrateNum, DefId};
8use rustc_hir::definitions::DefPathHash;
9use rustc_hir::HirId;
041b39d2
XL
10
11use rustc_data_structures::fx::FxHashMap;
e74abb32 12use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
ba9703b0 13use rustc_errors::ErrorReported;
532ac7d7 14use rustc_macros::HashStable;
ba9703b0 15use std::collections::BTreeMap;
8bb4bdeb 16
476ff2be 17/// A trait's definition with type information.
532ac7d7 18#[derive(HashStable)]
476ff2be 19pub struct TraitDef {
532ac7d7
XL
20 // We already have the def_path_hash below, no need to hash it twice
21 #[stable_hasher(ignore)]
476ff2be 22 pub def_id: DefId,
9cc50fc6 23
9cc50fc6
SL
24 pub unsafety: hir::Unsafety,
25
26 /// If `true`, then this trait had the `#[rustc_paren_sugar]`
27 /// attribute, indicating that it should be used with `Foo()`
32a655c1 28 /// sugar. This is a temporary thing -- eventually any trait will
9cc50fc6
SL
29 /// be usable with the sugar (or without it).
30 pub paren_sugar: bool,
31
abe05a73 32 pub has_auto_impl: bool,
8bb4bdeb 33
0bf4aa26
XL
34 /// If `true`, then this trait has the `#[marker]` attribute, indicating
35 /// that all its associated items have defaults that cannot be overridden,
36 /// and thus `impl`s of it are allowed to overlap.
37 pub is_marker: bool,
38
ba9703b0
XL
39 /// Used to determine whether the standard library is allowed to specialize
40 /// on this trait.
41 pub specialization_kind: TraitSpecializationKind,
42
9e0c209e
SL
43 /// The ICH of this trait's DefPath, cached here so it doesn't have to be
44 /// recomputed all the time.
7cac9316 45 pub def_path_hash: DefPathHash,
9cc50fc6
SL
46}
47
ba9703b0
XL
48/// Whether this trait is treated specially by the standard library
49/// specialization lint.
3dfed10e 50#[derive(HashStable, PartialEq, Clone, Copy, TyEncodable, TyDecodable)]
ba9703b0
XL
51pub enum TraitSpecializationKind {
52 /// The default. Specializing on this trait is not allowed.
53 None,
54 /// Specializing on this trait is allowed because it doesn't have any
55 /// methods. For example `Sized` or `FusedIterator`.
56 /// Applies to traits with the `rustc_unsafe_specialization_marker`
57 /// attribute.
58 Marker,
59 /// Specializing on this trait is allowed because all of the impls of this
60 /// trait are "always applicable". Always applicable means that if
61 /// `X<'x>: T<'y>` for any lifetimes, then `for<'a, 'b> X<'a>: T<'b>`.
62 /// Applies to traits with the `rustc_specialization_trait` attribute.
63 AlwaysApplicable,
64}
65
b7449926 66#[derive(Default)]
7cac9316 67pub struct TraitImpls {
041b39d2 68 blanket_impls: Vec<DefId>,
9fa01778 69 /// Impls indexed by their simplified self type, for fast lookup.
041b39d2 70 non_blanket_impls: FxHashMap<fast_reject::SimplifiedType, Vec<DefId>>,
7cac9316 71}
9cc50fc6 72
dc9dc135 73impl<'tcx> TraitDef {
dfeec247
XL
74 pub fn new(
75 def_id: DefId,
76 unsafety: hir::Unsafety,
77 paren_sugar: bool,
78 has_auto_impl: bool,
79 is_marker: bool,
ba9703b0 80 specialization_kind: TraitSpecializationKind,
dfeec247
XL
81 def_path_hash: DefPathHash,
82 ) -> TraitDef {
ba9703b0
XL
83 TraitDef {
84 def_id,
85 unsafety,
86 paren_sugar,
87 has_auto_impl,
88 is_marker,
89 specialization_kind,
90 def_path_hash,
91 }
54a0048b 92 }
9cc50fc6 93
dc9dc135
XL
94 pub fn ancestors(
95 &self,
96 tcx: TyCtxt<'tcx>,
97 of_impl: DefId,
ba9703b0 98 ) -> Result<specialization_graph::Ancestors<'tcx>, ErrorReported> {
7cac9316 99 specialization_graph::ancestors(tcx, self.def_id, of_impl)
8bb4bdeb 100 }
041b39d2 101}
8bb4bdeb 102
dc9dc135 103impl<'tcx> TyCtxt<'tcx> {
041b39d2
XL
104 pub fn for_each_impl<F: FnMut(DefId)>(self, def_id: DefId, mut f: F) {
105 let impls = self.trait_impls_of(def_id);
106
107 for &impl_def_id in impls.blanket_impls.iter() {
9cc50fc6
SL
108 f(impl_def_id);
109 }
041b39d2
XL
110
111 for v in impls.non_blanket_impls.values() {
112 for &impl_def_id in v {
113 f(impl_def_id);
114 }
115 }
9cc50fc6
SL
116 }
117
118 /// Iterate over every impl that could possibly match the
9fa01778 119 /// self type `self_ty`.
dfeec247
XL
120 pub fn for_each_relevant_impl<F: FnMut(DefId)>(
121 self,
122 def_id: DefId,
123 self_ty: Ty<'tcx>,
124 mut f: F,
125 ) {
041b39d2
XL
126 let impls = self.trait_impls_of(def_id);
127
128 for &impl_def_id in impls.blanket_impls.iter() {
129 f(impl_def_id);
130 }
131
9cc50fc6
SL
132 // simplify_type(.., false) basically replaces type parameters and
133 // projections with infer-variables. This is, of course, done on
134 // the impl trait-ref when it is instantiated, but not on the
135 // predicate trait-ref which is passed here.
136 //
137 // for example, if we match `S: Copy` against an impl like
138 // `impl<T:Copy> Copy for Option<T>`, we replace the type variable
139 // in `Option<T>` with an infer variable, to `Option<_>` (this
140 // doesn't actually change fast_reject output), but we don't
141 // replace `S` with anything - this impl of course can't be
142 // selected, and as there are hundreds of similar impls,
143 // considering them would significantly harm performance.
7cac9316 144
041b39d2
XL
145 // This depends on the set of all impls for the trait. That is
146 // unfortunate. When we get red-green recompilation, we would like
147 // to have a way of knowing whether the set of relevant impls
148 // changed. The most naive
149 // way would be to compute the Vec of relevant impls and see whether
150 // it differs between compilations. That shouldn't be too slow by
151 // itself - we do quite a bit of work for each relevant impl anyway.
152 //
153 // If we want to be faster, we could have separate queries for
154 // blanket and non-blanket impls, and compare them separately.
155 //
156 // I think we'll cross that bridge when we get to it.
157 if let Some(simp) = fast_reject::simplify_type(self, self_ty, true) {
158 if let Some(impls) = impls.non_blanket_impls.get(&simp) {
159 for &impl_def_id in impls {
160 f(impl_def_id);
161 }
162 }
163 } else {
0bf4aa26
XL
164 for &impl_def_id in impls.non_blanket_impls.values().flatten() {
165 f(impl_def_id);
041b39d2 166 }
9cc50fc6
SL
167 }
168 }
0bf4aa26 169
9fa01778 170 /// Returns a vector containing all impls
ba9703b0
XL
171 pub fn all_impls(self, def_id: DefId) -> impl Iterator<Item = DefId> + 'tcx {
172 let TraitImpls { blanket_impls, non_blanket_impls } = self.trait_impls_of(def_id);
0bf4aa26 173
f9f354fc 174 blanket_impls.iter().chain(non_blanket_impls.iter().map(|(_, v)| v).flatten()).cloned()
0bf4aa26 175 }
9cc50fc6
SL
176}
177
ba9703b0
XL
178// Query provider for `all_local_trait_impls`.
179pub(super) fn all_local_trait_impls<'tcx>(
180 tcx: TyCtxt<'tcx>,
181 krate: CrateNum,
182) -> &'tcx BTreeMap<DefId, Vec<HirId>> {
183 &tcx.hir_crate(krate).trait_impls
184}
185
7cac9316 186// Query provider for `trait_impls_of`.
f9f354fc 187pub(super) fn trait_impls_of_provider(tcx: TyCtxt<'_>, trait_id: DefId) -> TraitImpls {
b7449926 188 let mut impls = TraitImpls::default();
7cac9316 189
3dfed10e
XL
190 // Traits defined in the current crate can't have impls in upstream
191 // crates, so we don't bother querying the cstore.
192 if !trait_id.is_local() {
193 for &cnum in tcx.crates().iter() {
194 for &(impl_def_id, simplified_self_ty) in
195 tcx.implementations_of_trait((cnum, trait_id)).iter()
196 {
197 if let Some(simplified_self_ty) = simplified_self_ty {
198 impls
199 .non_blanket_impls
200 .entry(simplified_self_ty)
201 .or_default()
202 .push(impl_def_id);
203 } else {
204 impls.blanket_impls.push(impl_def_id);
b7449926
XL
205 }
206 }
7cac9316 207 }
3dfed10e
XL
208 }
209
210 for &hir_id in tcx.hir().trait_impls(trait_id) {
211 let impl_def_id = tcx.hir().local_def_id(hir_id).to_def_id();
212
213 let impl_self_ty = tcx.type_of(impl_def_id);
214 if impl_self_ty.references_error() {
215 continue;
216 }
7cac9316 217
3dfed10e
XL
218 if let Some(simplified_self_ty) = fast_reject::simplify_type(tcx, impl_self_ty, false) {
219 impls.non_blanket_impls.entry(simplified_self_ty).or_default().push(impl_def_id);
220 } else {
221 impls.blanket_impls.push(impl_def_id);
7cac9316
XL
222 }
223 }
224
f9f354fc 225 impls
9cc50fc6 226}
ea8adc8c 227
0531ce1d 228impl<'a> HashStable<StableHashingContext<'a>> for TraitImpls {
e74abb32 229 fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
dfeec247 230 let TraitImpls { ref blanket_impls, ref non_blanket_impls } = *self;
ea8adc8c
XL
231
232 ich::hash_stable_trait_impls(hcx, hasher, blanket_impls, non_blanket_impls);
233 }
234}