]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_codegen_ssa/src/back/symbol_export.rs
b2ecc3b0f3242e33738c6255ca35e4365ff87f14
[rust.git] / compiler / rustc_codegen_ssa / src / back / symbol_export.rs
1 use std::collections::hash_map::Entry::*;
2
3 use rustc_ast::expand::allocator::ALLOCATOR_METHODS;
4 use rustc_data_structures::fingerprint::Fingerprint;
5 use rustc_data_structures::fx::FxHashMap;
6 use rustc_hir as hir;
7 use rustc_hir::def_id::{CrateNum, DefId, DefIdMap, LocalDefId, CRATE_DEF_INDEX, LOCAL_CRATE};
8 use rustc_hir::Node;
9 use rustc_index::vec::IndexVec;
10 use rustc_middle::middle::codegen_fn_attrs::CodegenFnAttrFlags;
11 use rustc_middle::middle::exported_symbols::{
12     metadata_symbol_name, ExportedSymbol, SymbolExportLevel,
13 };
14 use rustc_middle::ty::query::Providers;
15 use rustc_middle::ty::subst::{GenericArgKind, SubstsRef};
16 use rustc_middle::ty::Instance;
17 use rustc_middle::ty::{SymbolName, TyCtxt};
18 use rustc_session::config::CrateType;
19 use rustc_target::spec::SanitizerSet;
20
21 pub fn threshold(tcx: TyCtxt<'_>) -> SymbolExportLevel {
22     crates_export_threshold(&tcx.sess.crate_types())
23 }
24
25 fn crate_export_threshold(crate_type: CrateType) -> SymbolExportLevel {
26     match crate_type {
27         CrateType::Executable | CrateType::Staticlib | CrateType::ProcMacro | CrateType::Cdylib => {
28             SymbolExportLevel::C
29         }
30         CrateType::Rlib | CrateType::Dylib => SymbolExportLevel::Rust,
31     }
32 }
33
34 pub fn crates_export_threshold(crate_types: &[CrateType]) -> SymbolExportLevel {
35     if crate_types
36         .iter()
37         .any(|&crate_type| crate_export_threshold(crate_type) == SymbolExportLevel::Rust)
38     {
39         SymbolExportLevel::Rust
40     } else {
41         SymbolExportLevel::C
42     }
43 }
44
45 fn reachable_non_generics_provider(tcx: TyCtxt<'_>, cnum: CrateNum) -> DefIdMap<SymbolExportLevel> {
46     assert_eq!(cnum, LOCAL_CRATE);
47
48     if !tcx.sess.opts.output_types.should_codegen() {
49         return Default::default();
50     }
51
52     // Check to see if this crate is a "special runtime crate". These
53     // crates, implementation details of the standard library, typically
54     // have a bunch of `pub extern` and `#[no_mangle]` functions as the
55     // ABI between them. We don't want their symbols to have a `C`
56     // export level, however, as they're just implementation details.
57     // Down below we'll hardwire all of the symbols to the `Rust` export
58     // level instead.
59     let special_runtime_crate =
60         tcx.is_panic_runtime(LOCAL_CRATE) || tcx.is_compiler_builtins(LOCAL_CRATE);
61
62     let mut reachable_non_generics: DefIdMap<_> = tcx
63         .reachable_set(())
64         .iter()
65         .filter_map(|&def_id| {
66             // We want to ignore some FFI functions that are not exposed from
67             // this crate. Reachable FFI functions can be lumped into two
68             // categories:
69             //
70             // 1. Those that are included statically via a static library
71             // 2. Those included otherwise (e.g., dynamically or via a framework)
72             //
73             // Although our LLVM module is not literally emitting code for the
74             // statically included symbols, it's an export of our library which
75             // needs to be passed on to the linker and encoded in the metadata.
76             //
77             // As a result, if this id is an FFI item (foreign item) then we only
78             // let it through if it's included statically.
79             match tcx.hir().get(tcx.hir().local_def_id_to_hir_id(def_id)) {
80                 Node::ForeignItem(..) => {
81                     tcx.is_statically_included_foreign_item(def_id).then_some(def_id)
82                 }
83
84                 // Only consider nodes that actually have exported symbols.
85                 Node::Item(&hir::Item {
86                     kind: hir::ItemKind::Static(..) | hir::ItemKind::Fn(..),
87                     ..
88                 })
89                 | Node::ImplItem(&hir::ImplItem { kind: hir::ImplItemKind::Fn(..), .. }) => {
90                     let generics = tcx.generics_of(def_id);
91                     if !generics.requires_monomorphization(tcx)
92                         // Functions marked with #[inline] are codegened with "internal"
93                         // linkage and are not exported unless marked with an extern
94                         // inidicator
95                         && (!Instance::mono(tcx, def_id.to_def_id()).def.generates_cgu_internal_copy(tcx)
96                             || tcx.codegen_fn_attrs(def_id.to_def_id()).contains_extern_indicator())
97                     {
98                         Some(def_id)
99                     } else {
100                         None
101                     }
102                 }
103
104                 _ => None,
105             }
106         })
107         .map(|def_id| {
108             let export_level = if special_runtime_crate {
109                 let name = tcx.symbol_name(Instance::mono(tcx, def_id.to_def_id())).name;
110                 // We can probably do better here by just ensuring that
111                 // it has hidden visibility rather than public
112                 // visibility, as this is primarily here to ensure it's
113                 // not stripped during LTO.
114                 //
115                 // In general though we won't link right if these
116                 // symbols are stripped, and LTO currently strips them.
117                 match name {
118                     "rust_eh_personality"
119                     | "rust_eh_register_frames"
120                     | "rust_eh_unregister_frames" =>
121                         SymbolExportLevel::C,
122                     _ => SymbolExportLevel::Rust,
123                 }
124             } else {
125                 symbol_export_level(tcx, def_id.to_def_id())
126             };
127             debug!(
128                 "EXPORTED SYMBOL (local): {} ({:?})",
129                 tcx.symbol_name(Instance::mono(tcx, def_id.to_def_id())),
130                 export_level
131             );
132             (def_id.to_def_id(), export_level)
133         })
134         .collect();
135
136     if let Some(id) = tcx.proc_macro_decls_static(()) {
137         reachable_non_generics.insert(id.to_def_id(), SymbolExportLevel::C);
138     }
139
140     if let Some(id) = tcx.plugin_registrar_fn(()) {
141         reachable_non_generics.insert(id.to_def_id(), SymbolExportLevel::C);
142     }
143
144     reachable_non_generics
145 }
146
147 fn is_reachable_non_generic_provider_local(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
148     let export_threshold = threshold(tcx);
149
150     if let Some(&level) = tcx.reachable_non_generics(def_id.krate).get(&def_id) {
151         level.is_below_threshold(export_threshold)
152     } else {
153         false
154     }
155 }
156
157 fn is_reachable_non_generic_provider_extern(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
158     tcx.reachable_non_generics(def_id.krate).contains_key(&def_id)
159 }
160
161 fn exported_symbols_provider_local(
162     tcx: TyCtxt<'tcx>,
163     cnum: CrateNum,
164 ) -> &'tcx [(ExportedSymbol<'tcx>, SymbolExportLevel)] {
165     assert_eq!(cnum, LOCAL_CRATE);
166
167     if !tcx.sess.opts.output_types.should_codegen() {
168         return &[];
169     }
170
171     let mut symbols: Vec<_> = tcx
172         .reachable_non_generics(LOCAL_CRATE)
173         .iter()
174         .map(|(&def_id, &level)| (ExportedSymbol::NonGeneric(def_id), level))
175         .collect();
176
177     if tcx.entry_fn(()).is_some() {
178         let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(tcx, "main"));
179
180         symbols.push((exported_symbol, SymbolExportLevel::C));
181     }
182
183     if tcx.allocator_kind().is_some() {
184         for method in ALLOCATOR_METHODS {
185             let symbol_name = format!("__rust_{}", method.name);
186             let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(tcx, &symbol_name));
187
188             symbols.push((exported_symbol, SymbolExportLevel::Rust));
189         }
190     }
191
192     if tcx.sess.instrument_coverage() || tcx.sess.opts.cg.profile_generate.enabled() {
193         // These are weak symbols that point to the profile version and the
194         // profile name, which need to be treated as exported so LTO doesn't nix
195         // them.
196         const PROFILER_WEAK_SYMBOLS: [&str; 2] =
197             ["__llvm_profile_raw_version", "__llvm_profile_filename"];
198
199         symbols.extend(PROFILER_WEAK_SYMBOLS.iter().map(|sym| {
200             let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(tcx, sym));
201             (exported_symbol, SymbolExportLevel::C)
202         }));
203     }
204
205     if tcx.sess.opts.debugging_opts.sanitizer.contains(SanitizerSet::MEMORY) {
206         // Similar to profiling, preserve weak msan symbol during LTO.
207         const MSAN_WEAK_SYMBOLS: [&str; 2] = ["__msan_track_origins", "__msan_keep_going"];
208
209         symbols.extend(MSAN_WEAK_SYMBOLS.iter().map(|sym| {
210             let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(tcx, sym));
211             (exported_symbol, SymbolExportLevel::C)
212         }));
213     }
214
215     if tcx.sess.crate_types().contains(&CrateType::Dylib) {
216         let symbol_name = metadata_symbol_name(tcx);
217         let exported_symbol = ExportedSymbol::NoDefId(SymbolName::new(tcx, &symbol_name));
218
219         symbols.push((exported_symbol, SymbolExportLevel::Rust));
220     }
221
222     if tcx.sess.opts.share_generics() && tcx.local_crate_exports_generics() {
223         use rustc_middle::mir::mono::{Linkage, MonoItem, Visibility};
224         use rustc_middle::ty::InstanceDef;
225
226         // Normally, we require that shared monomorphizations are not hidden,
227         // because if we want to re-use a monomorphization from a Rust dylib, it
228         // needs to be exported.
229         // However, on platforms that don't allow for Rust dylibs, having
230         // external linkage is enough for monomorphization to be linked to.
231         let need_visibility = tcx.sess.target.dynamic_linking && !tcx.sess.target.only_cdylib;
232
233         let (_, cgus) = tcx.collect_and_partition_mono_items(());
234
235         for (mono_item, &(linkage, visibility)) in cgus.iter().flat_map(|cgu| cgu.items().iter()) {
236             if linkage != Linkage::External {
237                 // We can only re-use things with external linkage, otherwise
238                 // we'll get a linker error
239                 continue;
240             }
241
242             if need_visibility && visibility == Visibility::Hidden {
243                 // If we potentially share things from Rust dylibs, they must
244                 // not be hidden
245                 continue;
246             }
247
248             match *mono_item {
249                 MonoItem::Fn(Instance { def: InstanceDef::Item(def), substs }) => {
250                     if substs.non_erasable_generics().next().is_some() {
251                         let symbol = ExportedSymbol::Generic(def.did, substs);
252                         symbols.push((symbol, SymbolExportLevel::Rust));
253                     }
254                 }
255                 MonoItem::Fn(Instance { def: InstanceDef::DropGlue(_, Some(ty)), substs }) => {
256                     // A little sanity-check
257                     debug_assert_eq!(
258                         substs.non_erasable_generics().next(),
259                         Some(GenericArgKind::Type(ty))
260                     );
261                     symbols.push((ExportedSymbol::DropGlue(ty), SymbolExportLevel::Rust));
262                 }
263                 _ => {
264                     // Any other symbols don't qualify for sharing
265                 }
266             }
267         }
268     }
269
270     // Sort so we get a stable incr. comp. hash.
271     symbols.sort_by_cached_key(|s| s.0.symbol_name_for_local_instance(tcx));
272
273     tcx.arena.alloc_from_iter(symbols)
274 }
275
276 fn upstream_monomorphizations_provider(
277     tcx: TyCtxt<'_>,
278     (): (),
279 ) -> DefIdMap<FxHashMap<SubstsRef<'_>, CrateNum>> {
280     let cnums = tcx.all_crate_nums(());
281
282     let mut instances: DefIdMap<FxHashMap<_, _>> = Default::default();
283
284     let cnum_stable_ids: IndexVec<CrateNum, Fingerprint> = {
285         let mut cnum_stable_ids = IndexVec::from_elem_n(Fingerprint::ZERO, cnums.len() + 1);
286
287         for &cnum in cnums.iter() {
288             cnum_stable_ids[cnum] =
289                 tcx.def_path_hash(DefId { krate: cnum, index: CRATE_DEF_INDEX }).0;
290         }
291
292         cnum_stable_ids
293     };
294
295     let drop_in_place_fn_def_id = tcx.lang_items().drop_in_place_fn();
296
297     for &cnum in cnums.iter() {
298         for (exported_symbol, _) in tcx.exported_symbols(cnum).iter() {
299             let (def_id, substs) = match *exported_symbol {
300                 ExportedSymbol::Generic(def_id, substs) => (def_id, substs),
301                 ExportedSymbol::DropGlue(ty) => {
302                     if let Some(drop_in_place_fn_def_id) = drop_in_place_fn_def_id {
303                         (drop_in_place_fn_def_id, tcx.intern_substs(&[ty.into()]))
304                     } else {
305                         // `drop_in_place` in place does not exist, don't try
306                         // to use it.
307                         continue;
308                     }
309                 }
310                 ExportedSymbol::NonGeneric(..) | ExportedSymbol::NoDefId(..) => {
311                     // These are no monomorphizations
312                     continue;
313                 }
314             };
315
316             let substs_map = instances.entry(def_id).or_default();
317
318             match substs_map.entry(substs) {
319                 Occupied(mut e) => {
320                     // If there are multiple monomorphizations available,
321                     // we select one deterministically.
322                     let other_cnum = *e.get();
323                     if cnum_stable_ids[other_cnum] > cnum_stable_ids[cnum] {
324                         e.insert(cnum);
325                     }
326                 }
327                 Vacant(e) => {
328                     e.insert(cnum);
329                 }
330             }
331         }
332     }
333
334     instances
335 }
336
337 fn upstream_monomorphizations_for_provider(
338     tcx: TyCtxt<'_>,
339     def_id: DefId,
340 ) -> Option<&FxHashMap<SubstsRef<'_>, CrateNum>> {
341     debug_assert!(!def_id.is_local());
342     tcx.upstream_monomorphizations(()).get(&def_id)
343 }
344
345 fn upstream_drop_glue_for_provider<'tcx>(
346     tcx: TyCtxt<'tcx>,
347     substs: SubstsRef<'tcx>,
348 ) -> Option<CrateNum> {
349     if let Some(def_id) = tcx.lang_items().drop_in_place_fn() {
350         tcx.upstream_monomorphizations_for(def_id).and_then(|monos| monos.get(&substs).cloned())
351     } else {
352         None
353     }
354 }
355
356 fn is_unreachable_local_definition_provider(tcx: TyCtxt<'_>, def_id: LocalDefId) -> bool {
357     !tcx.reachable_set(()).contains(&def_id)
358 }
359
360 pub fn provide(providers: &mut Providers) {
361     providers.reachable_non_generics = reachable_non_generics_provider;
362     providers.is_reachable_non_generic = is_reachable_non_generic_provider_local;
363     providers.exported_symbols = exported_symbols_provider_local;
364     providers.upstream_monomorphizations = upstream_monomorphizations_provider;
365     providers.is_unreachable_local_definition = is_unreachable_local_definition_provider;
366     providers.upstream_drop_glue_for = upstream_drop_glue_for_provider;
367     providers.wasm_import_module_map = wasm_import_module_map;
368 }
369
370 pub fn provide_extern(providers: &mut Providers) {
371     providers.is_reachable_non_generic = is_reachable_non_generic_provider_extern;
372     providers.upstream_monomorphizations_for = upstream_monomorphizations_for_provider;
373 }
374
375 fn symbol_export_level(tcx: TyCtxt<'_>, sym_def_id: DefId) -> SymbolExportLevel {
376     // We export anything that's not mangled at the "C" layer as it probably has
377     // to do with ABI concerns. We do not, however, apply such treatment to
378     // special symbols in the standard library for various plumbing between
379     // core/std/allocators/etc. For example symbols used to hook up allocation
380     // are not considered for export
381     let codegen_fn_attrs = tcx.codegen_fn_attrs(sym_def_id);
382     let is_extern = codegen_fn_attrs.contains_extern_indicator();
383     let std_internal =
384         codegen_fn_attrs.flags.contains(CodegenFnAttrFlags::RUSTC_STD_INTERNAL_SYMBOL);
385
386     if is_extern && !std_internal {
387         let target = &tcx.sess.target.llvm_target;
388         // WebAssembly cannot export data symbols, so reduce their export level
389         if target.contains("emscripten") {
390             if let Some(Node::Item(&hir::Item { kind: hir::ItemKind::Static(..), .. })) =
391                 tcx.hir().get_if_local(sym_def_id)
392             {
393                 return SymbolExportLevel::Rust;
394             }
395         }
396
397         SymbolExportLevel::C
398     } else {
399         SymbolExportLevel::Rust
400     }
401 }
402
403 /// This is the symbol name of the given instance instantiated in a specific crate.
404 pub fn symbol_name_for_instance_in_crate<'tcx>(
405     tcx: TyCtxt<'tcx>,
406     symbol: ExportedSymbol<'tcx>,
407     instantiating_crate: CrateNum,
408 ) -> String {
409     // If this is something instantiated in the local crate then we might
410     // already have cached the name as a query result.
411     if instantiating_crate == LOCAL_CRATE {
412         return symbol.symbol_name_for_local_instance(tcx).to_string();
413     }
414
415     // This is something instantiated in an upstream crate, so we have to use
416     // the slower (because uncached) version of computing the symbol name.
417     match symbol {
418         ExportedSymbol::NonGeneric(def_id) => {
419             rustc_symbol_mangling::symbol_name_for_instance_in_crate(
420                 tcx,
421                 Instance::mono(tcx, def_id),
422                 instantiating_crate,
423             )
424         }
425         ExportedSymbol::Generic(def_id, substs) => {
426             rustc_symbol_mangling::symbol_name_for_instance_in_crate(
427                 tcx,
428                 Instance::new(def_id, substs),
429                 instantiating_crate,
430             )
431         }
432         ExportedSymbol::DropGlue(ty) => rustc_symbol_mangling::symbol_name_for_instance_in_crate(
433             tcx,
434             Instance::resolve_drop_in_place(tcx, ty),
435             instantiating_crate,
436         ),
437         ExportedSymbol::NoDefId(symbol_name) => symbol_name.to_string(),
438     }
439 }
440
441 fn wasm_import_module_map(tcx: TyCtxt<'_>, cnum: CrateNum) -> FxHashMap<DefId, String> {
442     // Build up a map from DefId to a `NativeLib` structure, where
443     // `NativeLib` internally contains information about
444     // `#[link(wasm_import_module = "...")]` for example.
445     let native_libs = tcx.native_libraries(cnum);
446
447     let def_id_to_native_lib = native_libs
448         .iter()
449         .filter_map(|lib| lib.foreign_module.map(|id| (id, lib)))
450         .collect::<FxHashMap<_, _>>();
451
452     let mut ret = FxHashMap::default();
453     for (def_id, lib) in tcx.foreign_modules(cnum).iter() {
454         let module = def_id_to_native_lib.get(&def_id).and_then(|s| s.wasm_import_module);
455         let module = match module {
456             Some(s) => s,
457             None => continue,
458         };
459         ret.extend(lib.foreign_items.iter().map(|id| {
460             assert_eq!(id.krate, cnum);
461             (*id, module.to_string())
462         }));
463     }
464
465     ret
466 }