]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_hir/src/weak_lang_items.rs
Merge commit 'a98e7ab8b94485be6bd03e0c6b8682ecab5b52e6' into clippyup
[rust.git] / compiler / rustc_hir / src / weak_lang_items.rs
1 //! Validity checking for weak lang items
2
3 use crate::def_id::DefId;
4 use crate::{lang_items, LangItem, LanguageItems};
5
6 use rustc_ast as ast;
7 use rustc_data_structures::stable_map::StableMap;
8 use rustc_span::symbol::{sym, Symbol};
9
10 use std::lazy::SyncLazy;
11
12 macro_rules! weak_lang_items {
13     ($($name:ident, $item:ident, $sym:ident;)*) => (
14
15 pub static WEAK_ITEMS_REFS: SyncLazy<StableMap<Symbol, LangItem>> = SyncLazy::new(|| {
16     let mut map = StableMap::default();
17     $(map.insert(sym::$name, LangItem::$item);)*
18     map
19 });
20
21 pub fn link_name(attrs: &[ast::Attribute]) -> Option<Symbol>
22 {
23     lang_items::extract(attrs).and_then(|(name, _)| {
24         $(if name == sym::$name {
25             Some(sym::$sym)
26         } else)* {
27             None
28         }
29     })
30 }
31
32 impl LanguageItems {
33     pub fn is_weak_lang_item(&self, item_def_id: DefId) -> bool {
34         let did = Some(item_def_id);
35
36         $(self.$name() == did)||*
37     }
38 }
39
40 ) }
41
42 weak_lang_items! {
43     panic_impl,         PanicImpl,          rust_begin_unwind;
44     eh_personality,     EhPersonality,      rust_eh_personality;
45     eh_catch_typeinfo,  EhCatchTypeinfo,    rust_eh_catch_typeinfo;
46     oom,                Oom,                rust_oom;
47 }