]> git.lizzy.rs Git - rust.git/blob - src/librustc/middle/weak_lang_items.rs
stop using csearch in librustc and librustc_lint
[rust.git] / src / librustc / middle / weak_lang_items.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 //! Validity checking for weak lang items
12
13 use session::config;
14 use session::Session;
15 use metadata::util::CrateStore;
16 use middle::lang_items;
17
18 use syntax::ast;
19 use syntax::codemap::Span;
20 use syntax::parse::token::InternedString;
21 use rustc_front::intravisit::Visitor;
22 use rustc_front::intravisit;
23 use rustc_front::hir;
24
25 use std::collections::HashSet;
26
27 macro_rules! weak_lang_items {
28     ($($name:ident, $item:ident, $sym:ident;)*) => (
29
30 struct Context<'a> {
31     sess: &'a Session,
32     items: &'a mut lang_items::LanguageItems,
33 }
34
35 /// Checks the crate for usage of weak lang items, returning a vector of all the
36 /// language items required by this crate, but not defined yet.
37 pub fn check_crate(krate: &hir::Crate,
38                    sess: &Session,
39                    items: &mut lang_items::LanguageItems) {
40     // These are never called by user code, they're generated by the compiler.
41     // They will never implicitly be added to the `missing` array unless we do
42     // so here.
43     if items.eh_personality().is_none() {
44         items.missing.push(lang_items::EhPersonalityLangItem);
45     }
46     if sess.target.target.options.custom_unwind_resume &
47        items.eh_unwind_resume().is_none() {
48         items.missing.push(lang_items::EhUnwindResumeLangItem);
49     }
50
51     {
52         let mut cx = Context { sess: sess, items: items };
53         krate.visit_all_items(&mut cx);
54     }
55     verify(sess, items);
56 }
57
58 pub fn link_name(attrs: &[ast::Attribute]) -> Option<InternedString> {
59     lang_items::extract(attrs).and_then(|name| {
60         $(if &name[..] == stringify!($name) {
61             Some(InternedString::new(stringify!($sym)))
62         } else)* {
63             None
64         }
65     })
66 }
67
68 fn verify(sess: &Session, items: &lang_items::LanguageItems) {
69     // We only need to check for the presence of weak lang items if we're
70     // emitting something that's not an rlib.
71     let needs_check = sess.crate_types.borrow().iter().any(|kind| {
72         match *kind {
73             config::CrateTypeDylib |
74             config::CrateTypeExecutable |
75             config::CrateTypeStaticlib => true,
76             config::CrateTypeRlib => false,
77         }
78     });
79     if !needs_check { return }
80
81     let mut missing = HashSet::new();
82     sess.cstore.iter_crate_data(|cnum, _| {
83         for item in sess.cstore.missing_lang_items(cnum) {
84             missing.insert(item);
85         }
86     });
87
88     $(
89         if missing.contains(&lang_items::$item) && items.$name().is_none() {
90             sess.err(&format!("language item required, but not found: `{}`",
91                               stringify!($name)));
92
93         }
94     )*
95 }
96
97 impl<'a> Context<'a> {
98     fn register(&mut self, name: &str, span: Span) {
99         $(if name == stringify!($name) {
100             if self.items.$name().is_none() {
101                 self.items.missing.push(lang_items::$item);
102             }
103         } else)* {
104             span_err!(self.sess, span, E0264,
105                                "unknown external lang item: `{}`",
106                                        name);
107         }
108     }
109 }
110
111 impl<'a, 'v> Visitor<'v> for Context<'a> {
112     fn visit_foreign_item(&mut self, i: &hir::ForeignItem) {
113         match lang_items::extract(&i.attrs) {
114             None => {}
115             Some(lang_item) => self.register(&lang_item, i.span),
116         }
117         intravisit::walk_foreign_item(self, i)
118     }
119 }
120
121 ) }
122
123 weak_lang_items! {
124     panic_fmt,          PanicFmtLangItem,           rust_begin_unwind;
125     eh_personality,     EhPersonalityLangItem,      rust_eh_personality;
126     eh_unwind_resume,   EhUnwindResumeLangItem,     rust_eh_unwind_resume;
127 }