]> git.lizzy.rs Git - rust.git/blob - src/librustc_passes/weak_lang_items.rs
Auto merge of #76035 - tiagolam:master, r=pietroalbini
[rust.git] / src / librustc_passes / weak_lang_items.rs
1 //! Validity checking for weak lang items
2
3 use rustc_data_structures::fx::FxHashSet;
4 use rustc_errors::struct_span_err;
5 use rustc_hir as hir;
6 use rustc_hir::intravisit::{self, NestedVisitorMap, Visitor};
7 use rustc_hir::lang_items::{self, LangItem};
8 use rustc_hir::weak_lang_items::WEAK_ITEMS_REFS;
9 use rustc_middle::middle::lang_items::required;
10 use rustc_middle::ty::TyCtxt;
11 use rustc_session::config::CrateType;
12 use rustc_span::symbol::Symbol;
13 use rustc_span::Span;
14
15 struct Context<'a, 'tcx> {
16     tcx: TyCtxt<'tcx>,
17     items: &'a mut lang_items::LanguageItems,
18 }
19
20 /// Checks the crate for usage of weak lang items, returning a vector of all the
21 /// language items required by this crate, but not defined yet.
22 pub fn check_crate<'tcx>(tcx: TyCtxt<'tcx>, items: &mut lang_items::LanguageItems) {
23     // These are never called by user code, they're generated by the compiler.
24     // They will never implicitly be added to the `missing` array unless we do
25     // so here.
26     if items.eh_personality().is_none() {
27         items.missing.push(LangItem::EhPersonality);
28     }
29     if tcx.sess.target.target.options.is_like_emscripten && items.eh_catch_typeinfo().is_none() {
30         items.missing.push(LangItem::EhCatchTypeinfo);
31     }
32
33     {
34         let mut cx = Context { tcx, items };
35         tcx.hir().krate().visit_all_item_likes(&mut cx.as_deep_visitor());
36     }
37     verify(tcx, items);
38 }
39
40 fn verify<'tcx>(tcx: TyCtxt<'tcx>, items: &lang_items::LanguageItems) {
41     // We only need to check for the presence of weak lang items if we're
42     // emitting something that's not an rlib.
43     let needs_check = tcx.sess.crate_types().iter().any(|kind| match *kind {
44         CrateType::Dylib
45         | CrateType::ProcMacro
46         | CrateType::Cdylib
47         | CrateType::Executable
48         | CrateType::Staticlib => true,
49         CrateType::Rlib => false,
50     });
51     if !needs_check {
52         return;
53     }
54
55     let mut missing = FxHashSet::default();
56     for &cnum in tcx.crates().iter() {
57         for &item in tcx.missing_lang_items(cnum).iter() {
58             missing.insert(item);
59         }
60     }
61
62     for (name, &item) in WEAK_ITEMS_REFS.iter() {
63         if missing.contains(&item) && required(tcx, item) && items.require(item).is_err() {
64             if item == LangItem::PanicImpl {
65                 tcx.sess.err("`#[panic_handler]` function required, but not found");
66             } else if item == LangItem::Oom {
67                 tcx.sess.err("`#[alloc_error_handler]` function required, but not found");
68             } else {
69                 tcx.sess.err(&format!("language item required, but not found: `{}`", name));
70             }
71         }
72     }
73 }
74
75 impl<'a, 'tcx> Context<'a, 'tcx> {
76     fn register(&mut self, name: Symbol, span: Span) {
77         if let Some(&item) = WEAK_ITEMS_REFS.get(&name) {
78             if self.items.require(item).is_err() {
79                 self.items.missing.push(item);
80             }
81         } else {
82             struct_span_err!(self.tcx.sess, span, E0264, "unknown external lang item: `{}`", name)
83                 .emit();
84         }
85     }
86 }
87
88 impl<'a, 'tcx, 'v> Visitor<'v> for Context<'a, 'tcx> {
89     type Map = intravisit::ErasedMap<'v>;
90
91     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
92         NestedVisitorMap::None
93     }
94
95     fn visit_foreign_item(&mut self, i: &hir::ForeignItem<'_>) {
96         let check_name = |attr, sym| self.tcx.sess.check_name(attr, sym);
97         if let Some((lang_item, _)) = lang_items::extract(check_name, &i.attrs) {
98             self.register(lang_item, i.span);
99         }
100         intravisit::walk_foreign_item(self, i)
101     }
102 }