]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_middle/src/mir/mono.rs
Test drop_tracking_mir before querying generator.
[rust.git] / compiler / rustc_middle / src / mir / mono.rs
1 use crate::dep_graph::{DepNode, WorkProduct, WorkProductId};
2 use crate::ty::{subst::InternalSubsts, Instance, InstanceDef, SymbolName, TyCtxt};
3 use rustc_attr::InlineAttr;
4 use rustc_data_structures::base_n;
5 use rustc_data_structures::fingerprint::Fingerprint;
6 use rustc_data_structures::fx::FxHashMap;
7 use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
8 use rustc_hir::def_id::{CrateNum, DefId, LOCAL_CRATE};
9 use rustc_hir::ItemId;
10 use rustc_index::vec::Idx;
11 use rustc_query_system::ich::StableHashingContext;
12 use rustc_session::config::OptLevel;
13 use rustc_span::source_map::Span;
14 use rustc_span::symbol::Symbol;
15 use std::fmt;
16 use std::hash::Hash;
17
18 /// Describes how a monomorphization will be instantiated in object files.
19 #[derive(PartialEq)]
20 pub enum InstantiationMode {
21     /// There will be exactly one instance of the given MonoItem. It will have
22     /// external linkage so that it can be linked to from other codegen units.
23     GloballyShared {
24         /// In some compilation scenarios we may decide to take functions that
25         /// are typically `LocalCopy` and instead move them to `GloballyShared`
26         /// to avoid codegenning them a bunch of times. In this situation,
27         /// however, our local copy may conflict with other crates also
28         /// inlining the same function.
29         ///
30         /// This flag indicates that this situation is occurring, and informs
31         /// symbol name calculation that some extra mangling is needed to
32         /// avoid conflicts. Note that this may eventually go away entirely if
33         /// ThinLTO enables us to *always* have a globally shared instance of a
34         /// function within one crate's compilation.
35         may_conflict: bool,
36     },
37
38     /// Each codegen unit containing a reference to the given MonoItem will
39     /// have its own private copy of the function (with internal linkage).
40     LocalCopy,
41 }
42
43 #[derive(PartialEq, Eq, Clone, Copy, Debug, Hash, HashStable)]
44 pub enum MonoItem<'tcx> {
45     Fn(Instance<'tcx>),
46     Static(DefId),
47     GlobalAsm(ItemId),
48 }
49
50 impl<'tcx> MonoItem<'tcx> {
51     /// Returns `true` if the mono item is user-defined (i.e. not compiler-generated, like shims).
52     pub fn is_user_defined(&self) -> bool {
53         match *self {
54             MonoItem::Fn(instance) => matches!(instance.def, InstanceDef::Item(..)),
55             MonoItem::Static(..) | MonoItem::GlobalAsm(..) => true,
56         }
57     }
58
59     pub fn size_estimate(&self, tcx: TyCtxt<'tcx>) -> usize {
60         match *self {
61             MonoItem::Fn(instance) => {
62                 // Estimate the size of a function based on how many statements
63                 // it contains.
64                 tcx.instance_def_size_estimate(instance.def)
65             }
66             // Conservatively estimate the size of a static declaration
67             // or assembly to be 1.
68             MonoItem::Static(_) | MonoItem::GlobalAsm(_) => 1,
69         }
70     }
71
72     pub fn is_generic_fn(&self) -> bool {
73         match *self {
74             MonoItem::Fn(ref instance) => instance.substs.non_erasable_generics().next().is_some(),
75             MonoItem::Static(..) | MonoItem::GlobalAsm(..) => false,
76         }
77     }
78
79     pub fn symbol_name(&self, tcx: TyCtxt<'tcx>) -> SymbolName<'tcx> {
80         match *self {
81             MonoItem::Fn(instance) => tcx.symbol_name(instance),
82             MonoItem::Static(def_id) => tcx.symbol_name(Instance::mono(tcx, def_id)),
83             MonoItem::GlobalAsm(item_id) => {
84                 SymbolName::new(tcx, &format!("global_asm_{:?}", item_id.owner_id))
85             }
86         }
87     }
88
89     pub fn instantiation_mode(&self, tcx: TyCtxt<'tcx>) -> InstantiationMode {
90         let generate_cgu_internal_copies = tcx
91             .sess
92             .opts
93             .unstable_opts
94             .inline_in_all_cgus
95             .unwrap_or_else(|| tcx.sess.opts.optimize != OptLevel::No)
96             && !tcx.sess.link_dead_code();
97
98         match *self {
99             MonoItem::Fn(ref instance) => {
100                 let entry_def_id = tcx.entry_fn(()).map(|(id, _)| id);
101                 // If this function isn't inlined or otherwise has an extern
102                 // indicator, then we'll be creating a globally shared version.
103                 if tcx.codegen_fn_attrs(instance.def_id()).contains_extern_indicator()
104                     || !instance.def.generates_cgu_internal_copy(tcx)
105                     || Some(instance.def_id()) == entry_def_id
106                 {
107                     return InstantiationMode::GloballyShared { may_conflict: false };
108                 }
109
110                 // At this point we don't have explicit linkage and we're an
111                 // inlined function. If we're inlining into all CGUs then we'll
112                 // be creating a local copy per CGU.
113                 if generate_cgu_internal_copies {
114                     return InstantiationMode::LocalCopy;
115                 }
116
117                 // Finally, if this is `#[inline(always)]` we're sure to respect
118                 // that with an inline copy per CGU, but otherwise we'll be
119                 // creating one copy of this `#[inline]` function which may
120                 // conflict with upstream crates as it could be an exported
121                 // symbol.
122                 match tcx.codegen_fn_attrs(instance.def_id()).inline {
123                     InlineAttr::Always => InstantiationMode::LocalCopy,
124                     _ => InstantiationMode::GloballyShared { may_conflict: true },
125                 }
126             }
127             MonoItem::Static(..) | MonoItem::GlobalAsm(..) => {
128                 InstantiationMode::GloballyShared { may_conflict: false }
129             }
130         }
131     }
132
133     pub fn explicit_linkage(&self, tcx: TyCtxt<'tcx>) -> Option<Linkage> {
134         let def_id = match *self {
135             MonoItem::Fn(ref instance) => instance.def_id(),
136             MonoItem::Static(def_id) => def_id,
137             MonoItem::GlobalAsm(..) => return None,
138         };
139
140         let codegen_fn_attrs = tcx.codegen_fn_attrs(def_id);
141         codegen_fn_attrs.linkage
142     }
143
144     /// Returns `true` if this instance is instantiable - whether it has no unsatisfied
145     /// predicates.
146     ///
147     /// In order to codegen an item, all of its predicates must hold, because
148     /// otherwise the item does not make sense. Type-checking ensures that
149     /// the predicates of every item that is *used by* a valid item *do*
150     /// hold, so we can rely on that.
151     ///
152     /// However, we codegen collector roots (reachable items) and functions
153     /// in vtables when they are seen, even if they are not used, and so they
154     /// might not be instantiable. For example, a programmer can define this
155     /// public function:
156     ///
157     ///     pub fn foo<'a>(s: &'a mut ()) where &'a mut (): Clone {
158     ///         <&mut () as Clone>::clone(&s);
159     ///     }
160     ///
161     /// That function can't be codegened, because the method `<&mut () as Clone>::clone`
162     /// does not exist. Luckily for us, that function can't ever be used,
163     /// because that would require for `&'a mut (): Clone` to hold, so we
164     /// can just not emit any code, or even a linker reference for it.
165     ///
166     /// Similarly, if a vtable method has such a signature, and therefore can't
167     /// be used, we can just not emit it and have a placeholder (a null pointer,
168     /// which will never be accessed) in its place.
169     pub fn is_instantiable(&self, tcx: TyCtxt<'tcx>) -> bool {
170         debug!("is_instantiable({:?})", self);
171         let (def_id, substs) = match *self {
172             MonoItem::Fn(ref instance) => (instance.def_id(), instance.substs),
173             MonoItem::Static(def_id) => (def_id, InternalSubsts::empty()),
174             // global asm never has predicates
175             MonoItem::GlobalAsm(..) => return true,
176         };
177
178         !tcx.subst_and_check_impossible_predicates((def_id, &substs))
179     }
180
181     pub fn local_span(&self, tcx: TyCtxt<'tcx>) -> Option<Span> {
182         match *self {
183             MonoItem::Fn(Instance { def, .. }) => def.def_id().as_local(),
184             MonoItem::Static(def_id) => def_id.as_local(),
185             MonoItem::GlobalAsm(item_id) => Some(item_id.owner_id.def_id),
186         }
187         .map(|def_id| tcx.def_span(def_id))
188     }
189
190     // Only used by rustc_codegen_cranelift
191     pub fn codegen_dep_node(&self, tcx: TyCtxt<'tcx>) -> DepNode {
192         crate::dep_graph::make_compile_mono_item(tcx, self)
193     }
194
195     /// Returns the item's `CrateNum`
196     pub fn krate(&self) -> CrateNum {
197         match self {
198             MonoItem::Fn(ref instance) => instance.def_id().krate,
199             MonoItem::Static(def_id) => def_id.krate,
200             MonoItem::GlobalAsm(..) => LOCAL_CRATE,
201         }
202     }
203
204     /// Returns the item's `DefId`
205     pub fn def_id(&self) -> DefId {
206         match *self {
207             MonoItem::Fn(Instance { def, .. }) => def.def_id(),
208             MonoItem::Static(def_id) => def_id,
209             MonoItem::GlobalAsm(item_id) => item_id.owner_id.to_def_id(),
210         }
211     }
212 }
213
214 impl<'tcx> fmt::Display for MonoItem<'tcx> {
215     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
216         match *self {
217             MonoItem::Fn(instance) => write!(f, "fn {}", instance),
218             MonoItem::Static(def_id) => {
219                 write!(f, "static {}", Instance::new(def_id, InternalSubsts::empty()))
220             }
221             MonoItem::GlobalAsm(..) => write!(f, "global_asm"),
222         }
223     }
224 }
225
226 #[derive(Debug)]
227 pub struct CodegenUnit<'tcx> {
228     /// A name for this CGU. Incremental compilation requires that
229     /// name be unique amongst **all** crates. Therefore, it should
230     /// contain something unique to this crate (e.g., a module path)
231     /// as well as the crate name and disambiguator.
232     name: Symbol,
233     items: FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)>,
234     size_estimate: Option<usize>,
235     primary: bool,
236     /// True if this is CGU is used to hold code coverage information for dead code,
237     /// false otherwise.
238     is_code_coverage_dead_code_cgu: bool,
239 }
240
241 /// Specifies the linkage type for a `MonoItem`.
242 ///
243 /// See <https://llvm.org/docs/LangRef.html#linkage-types> for more details about these variants.
244 #[derive(Copy, Clone, PartialEq, Debug, TyEncodable, TyDecodable, HashStable)]
245 pub enum Linkage {
246     External,
247     AvailableExternally,
248     LinkOnceAny,
249     LinkOnceODR,
250     WeakAny,
251     WeakODR,
252     Appending,
253     Internal,
254     Private,
255     ExternalWeak,
256     Common,
257 }
258
259 #[derive(Copy, Clone, PartialEq, Debug, HashStable)]
260 pub enum Visibility {
261     Default,
262     Hidden,
263     Protected,
264 }
265
266 impl<'tcx> CodegenUnit<'tcx> {
267     #[inline]
268     pub fn new(name: Symbol) -> CodegenUnit<'tcx> {
269         CodegenUnit {
270             name,
271             items: Default::default(),
272             size_estimate: None,
273             primary: false,
274             is_code_coverage_dead_code_cgu: false,
275         }
276     }
277
278     pub fn name(&self) -> Symbol {
279         self.name
280     }
281
282     pub fn set_name(&mut self, name: Symbol) {
283         self.name = name;
284     }
285
286     pub fn is_primary(&self) -> bool {
287         self.primary
288     }
289
290     pub fn make_primary(&mut self) {
291         self.primary = true;
292     }
293
294     pub fn items(&self) -> &FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)> {
295         &self.items
296     }
297
298     pub fn items_mut(&mut self) -> &mut FxHashMap<MonoItem<'tcx>, (Linkage, Visibility)> {
299         &mut self.items
300     }
301
302     pub fn is_code_coverage_dead_code_cgu(&self) -> bool {
303         self.is_code_coverage_dead_code_cgu
304     }
305
306     /// Marks this CGU as the one used to contain code coverage information for dead code.
307     pub fn make_code_coverage_dead_code_cgu(&mut self) {
308         self.is_code_coverage_dead_code_cgu = true;
309     }
310
311     pub fn mangle_name(human_readable_name: &str) -> String {
312         // We generate a 80 bit hash from the name. This should be enough to
313         // avoid collisions and is still reasonably short for filenames.
314         let mut hasher = StableHasher::new();
315         human_readable_name.hash(&mut hasher);
316         let hash: u128 = hasher.finish();
317         let hash = hash & ((1u128 << 80) - 1);
318         base_n::encode(hash, base_n::CASE_INSENSITIVE)
319     }
320
321     pub fn estimate_size(&mut self, tcx: TyCtxt<'tcx>) {
322         // Estimate the size of a codegen unit as (approximately) the number of MIR
323         // statements it corresponds to.
324         self.size_estimate = Some(self.items.keys().map(|mi| mi.size_estimate(tcx)).sum());
325     }
326
327     #[inline]
328     pub fn size_estimate(&self) -> usize {
329         // Should only be called if `estimate_size` has previously been called.
330         self.size_estimate.expect("estimate_size must be called before getting a size_estimate")
331     }
332
333     pub fn modify_size_estimate(&mut self, delta: usize) {
334         assert!(self.size_estimate.is_some());
335         if let Some(size_estimate) = self.size_estimate {
336             self.size_estimate = Some(size_estimate + delta);
337         }
338     }
339
340     pub fn contains_item(&self, item: &MonoItem<'tcx>) -> bool {
341         self.items().contains_key(item)
342     }
343
344     pub fn work_product_id(&self) -> WorkProductId {
345         WorkProductId::from_cgu_name(self.name().as_str())
346     }
347
348     pub fn previous_work_product(&self, tcx: TyCtxt<'_>) -> WorkProduct {
349         let work_product_id = self.work_product_id();
350         tcx.dep_graph
351             .previous_work_product(&work_product_id)
352             .unwrap_or_else(|| panic!("Could not find work-product for CGU `{}`", self.name()))
353     }
354
355     pub fn items_in_deterministic_order(
356         &self,
357         tcx: TyCtxt<'tcx>,
358     ) -> Vec<(MonoItem<'tcx>, (Linkage, Visibility))> {
359         // The codegen tests rely on items being process in the same order as
360         // they appear in the file, so for local items, we sort by node_id first
361         #[derive(PartialEq, Eq, PartialOrd, Ord)]
362         pub struct ItemSortKey<'tcx>(Option<usize>, SymbolName<'tcx>);
363
364         fn item_sort_key<'tcx>(tcx: TyCtxt<'tcx>, item: MonoItem<'tcx>) -> ItemSortKey<'tcx> {
365             ItemSortKey(
366                 match item {
367                     MonoItem::Fn(ref instance) => {
368                         match instance.def {
369                             // We only want to take HirIds of user-defined
370                             // instances into account. The others don't matter for
371                             // the codegen tests and can even make item order
372                             // unstable.
373                             InstanceDef::Item(def) => def.did.as_local().map(Idx::index),
374                             InstanceDef::VTableShim(..)
375                             | InstanceDef::ReifyShim(..)
376                             | InstanceDef::Intrinsic(..)
377                             | InstanceDef::FnPtrShim(..)
378                             | InstanceDef::Virtual(..)
379                             | InstanceDef::ClosureOnceShim { .. }
380                             | InstanceDef::DropGlue(..)
381                             | InstanceDef::CloneShim(..) => None,
382                         }
383                     }
384                     MonoItem::Static(def_id) => def_id.as_local().map(Idx::index),
385                     MonoItem::GlobalAsm(item_id) => Some(item_id.owner_id.def_id.index()),
386                 },
387                 item.symbol_name(tcx),
388             )
389         }
390
391         let mut items: Vec<_> = self.items().iter().map(|(&i, &l)| (i, l)).collect();
392         items.sort_by_cached_key(|&(i, _)| item_sort_key(tcx, i));
393         items
394     }
395
396     pub fn codegen_dep_node(&self, tcx: TyCtxt<'tcx>) -> DepNode {
397         crate::dep_graph::make_compile_codegen_unit(tcx, self.name())
398     }
399 }
400
401 impl<'a, 'tcx> HashStable<StableHashingContext<'a>> for CodegenUnit<'tcx> {
402     fn hash_stable(&self, hcx: &mut StableHashingContext<'a>, hasher: &mut StableHasher) {
403         let CodegenUnit {
404             ref items,
405             name,
406             // The size estimate is not relevant to the hash
407             size_estimate: _,
408             primary: _,
409             is_code_coverage_dead_code_cgu,
410         } = *self;
411
412         name.hash_stable(hcx, hasher);
413         is_code_coverage_dead_code_cgu.hash_stable(hcx, hasher);
414
415         let mut items: Vec<(Fingerprint, _)> = items
416             .iter()
417             .map(|(mono_item, &attrs)| {
418                 let mut hasher = StableHasher::new();
419                 mono_item.hash_stable(hcx, &mut hasher);
420                 let mono_item_fingerprint = hasher.finish();
421                 (mono_item_fingerprint, attrs)
422             })
423             .collect();
424
425         items.sort_unstable_by_key(|i| i.0);
426         items.hash_stable(hcx, hasher);
427     }
428 }
429
430 pub struct CodegenUnitNameBuilder<'tcx> {
431     tcx: TyCtxt<'tcx>,
432     cache: FxHashMap<CrateNum, String>,
433 }
434
435 impl<'tcx> CodegenUnitNameBuilder<'tcx> {
436     pub fn new(tcx: TyCtxt<'tcx>) -> Self {
437         CodegenUnitNameBuilder { tcx, cache: Default::default() }
438     }
439
440     /// CGU names should fulfill the following requirements:
441     /// - They should be able to act as a file name on any kind of file system
442     /// - They should not collide with other CGU names, even for different versions
443     ///   of the same crate.
444     ///
445     /// Consequently, we don't use special characters except for '.' and '-' and we
446     /// prefix each name with the crate-name and crate-disambiguator.
447     ///
448     /// This function will build CGU names of the form:
449     ///
450     /// ```text
451     /// <crate-name>.<crate-disambiguator>[-in-<local-crate-id>](-<component>)*[.<special-suffix>]
452     /// <local-crate-id> = <local-crate-name>.<local-crate-disambiguator>
453     /// ```
454     ///
455     /// The '.' before `<special-suffix>` makes sure that names with a special
456     /// suffix can never collide with a name built out of regular Rust
457     /// identifiers (e.g., module paths).
458     pub fn build_cgu_name<I, C, S>(
459         &mut self,
460         cnum: CrateNum,
461         components: I,
462         special_suffix: Option<S>,
463     ) -> Symbol
464     where
465         I: IntoIterator<Item = C>,
466         C: fmt::Display,
467         S: fmt::Display,
468     {
469         let cgu_name = self.build_cgu_name_no_mangle(cnum, components, special_suffix);
470
471         if self.tcx.sess.opts.unstable_opts.human_readable_cgu_names {
472             cgu_name
473         } else {
474             Symbol::intern(&CodegenUnit::mangle_name(cgu_name.as_str()))
475         }
476     }
477
478     /// Same as `CodegenUnit::build_cgu_name()` but will never mangle the
479     /// resulting name.
480     pub fn build_cgu_name_no_mangle<I, C, S>(
481         &mut self,
482         cnum: CrateNum,
483         components: I,
484         special_suffix: Option<S>,
485     ) -> Symbol
486     where
487         I: IntoIterator<Item = C>,
488         C: fmt::Display,
489         S: fmt::Display,
490     {
491         use std::fmt::Write;
492
493         let mut cgu_name = String::with_capacity(64);
494
495         // Start out with the crate name and disambiguator
496         let tcx = self.tcx;
497         let crate_prefix = self.cache.entry(cnum).or_insert_with(|| {
498             // Whenever the cnum is not LOCAL_CRATE we also mix in the
499             // local crate's ID. Otherwise there can be collisions between CGUs
500             // instantiating stuff for upstream crates.
501             let local_crate_id = if cnum != LOCAL_CRATE {
502                 let local_stable_crate_id = tcx.sess.local_stable_crate_id();
503                 format!(
504                     "-in-{}.{:08x}",
505                     tcx.crate_name(LOCAL_CRATE),
506                     local_stable_crate_id.to_u64() as u32,
507                 )
508             } else {
509                 String::new()
510             };
511
512             let stable_crate_id = tcx.sess.local_stable_crate_id();
513             format!(
514                 "{}.{:08x}{}",
515                 tcx.crate_name(cnum),
516                 stable_crate_id.to_u64() as u32,
517                 local_crate_id,
518             )
519         });
520
521         write!(cgu_name, "{}", crate_prefix).unwrap();
522
523         // Add the components
524         for component in components {
525             write!(cgu_name, "-{}", component).unwrap();
526         }
527
528         if let Some(special_suffix) = special_suffix {
529             // We add a dot in here so it cannot clash with anything in a regular
530             // Rust identifier
531             write!(cgu_name, ".{}", special_suffix).unwrap();
532         }
533
534         Symbol::intern(&cgu_name)
535     }
536 }