]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/missing_inline.rs
address reviews
[rust.git] / clippy_lints / src / missing_inline.rs
1 //   Copyright 2012-2015 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
12 use rustc::hir;
13 use rustc::lint::*;
14 use syntax::ast;
15 use syntax::codemap::Span;
16
17 /// **What it does:** it lints if an exported function, method, trait method with default impl,
18 /// or trait method impl is not `#[inline]`.
19 ///
20 /// **Why is this bad?** In general, it is not. Functions can be inlined across
21 /// crates when that's profitable as long as any form of LTO is used. When LTO is disabled,
22 /// functions that are not `#[inline]` cannot be inlined across crates. Certain types of crates
23 /// might intend for most of the methods in their public API to be able to be inlined across
24 /// crates even when LTO is disabled. For these types of crates, enabling this lint might make sense.
25 /// It allows the crate to require all exported methods to be `#[inline]` by default, and then opt
26 /// out for specific methods where this might not make sense.
27 ///
28 /// **Known problems:** None.
29 ///
30 /// **Example:**
31 /// ```rust
32 /// pub fn foo() {} // missing #[inline]
33 /// fn ok() {} // ok
34 /// #[inline] pub fn bar() {} // ok
35 /// #[inline(always)] pub fn baz() {} // ok
36 ///
37 /// pub trait Bar {
38 ///   fn bar(); // ok
39 ///   fn def_bar() {} // missing #[inline]
40 /// }
41 ///
42 /// struct Baz;
43 /// impl Baz {
44 ///    fn priv() {} // ok
45 /// }
46 ///
47 /// impl Bar for Baz {
48 ///   fn bar() {} // ok - Baz is not exported
49 /// }
50 ///
51 /// pub struct PubBaz;
52 /// impl PubBaz {
53 ///    fn priv() {} // ok
54 ///    pub not_ptriv() {} // missing #[inline]
55 /// }
56 ///
57 /// impl Bar for PubBaz {
58 ///    fn bar() {} // missing #[inline]
59 ///    fn def_bar() {} // missing #[inline]
60 /// }
61 /// ```
62 declare_clippy_lint! {
63     pub MISSING_INLINE_IN_PUBLIC_ITEMS,
64     restriction,
65     "detects missing #[inline] attribute for public callables (functions, trait methods, methods...)"
66 }
67
68 pub struct MissingInline;
69
70 impl MissingInline {
71     fn check_missing_inline_attrs(&self, cx: &LateContext,
72                                   attrs: &[ast::Attribute], sp: Span, desc: &'static str) {
73         let has_inline = attrs
74             .iter()
75             .any(|a| a.name() == "inline" );
76         if !has_inline {
77             cx.span_lint(
78                 MISSING_INLINE_IN_PUBLIC_ITEMS,
79                 sp,
80                 &format!("missing `#[inline]` for {}", desc),
81             );
82         }
83     }
84 }
85
86 impl LintPass for MissingInline {
87     fn get_lints(&self) -> LintArray {
88         lint_array![MISSING_INLINE_IN_PUBLIC_ITEMS]
89     }
90 }
91
92 impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingInline {
93     fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, it: &'tcx hir::Item) {
94         if !cx.access_levels.is_exported(it.id) {
95             return;
96         }
97         match it.node {
98             hir::ItemFn(..) => {
99                 // ignore main()
100                 if it.name == "main" {
101                     let def_id = cx.tcx.hir.local_def_id(it.id);
102                     let def_key = cx.tcx.hir.def_key(def_id);
103                     if def_key.parent == Some(hir::def_id::CRATE_DEF_INDEX) {
104                         return;
105                     }
106                 }
107                 let desc = "a function";
108                 self.check_missing_inline_attrs(cx, &it.attrs, it.span, desc);
109             },
110             hir::ItemTrait(ref _is_auto, ref _unsafe, ref _generics,
111                            ref _bounds, ref trait_items)  => {
112                 // note: we need to check if the trait is exported so we can't use
113                 // `LateLintPass::check_trait_item` here.
114                 for tit in trait_items {
115                     let tit_ = cx.tcx.hir.trait_item(tit.id);
116                     match tit_.node {
117                         hir::TraitItemKind::Const(..) |
118                         hir::TraitItemKind::Type(..) => {},
119                         hir::TraitItemKind::Method(..) => {
120                             if tit.defaultness.has_value() {
121                                 // trait method with default body needs inline in case
122                                 // an impl is not provided
123                                 let desc = "a default trait method";
124                                 let item = cx.tcx.hir.expect_trait_item(tit.id.node_id);
125                                 self.check_missing_inline_attrs(cx, &item.attrs,
126                                                                 item.span, desc);
127                             }
128                         },
129                     }
130                 }
131             }
132             hir::ItemConst(..) |
133             hir::ItemEnum(..) |
134             hir::ItemMod(..) |
135             hir::ItemStatic(..) |
136             hir::ItemStruct(..) |
137             hir::ItemTraitAlias(..) |
138             hir::ItemGlobalAsm(..) |
139             hir::ItemTy(..) |
140             hir::ItemUnion(..) |
141             hir::ItemExistential(..) |
142             hir::ItemExternCrate(..) |
143             hir::ItemForeignMod(..) |
144             hir::ItemImpl(..) |
145             hir::ItemUse(..) => {},
146         };
147     }
148
149     fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, impl_item: &'tcx hir::ImplItem) {
150         use rustc::ty::{TraitContainer, ImplContainer};
151
152         // If the item being implemented is not exported, then we don't need #[inline]
153         if !cx.access_levels.is_exported(impl_item.id) {
154             return;
155         }
156
157         let desc = match impl_item.node {
158             hir::ImplItemKind::Method(..) => "a method",
159             hir::ImplItemKind::Const(..) |
160             hir::ImplItemKind::Type(_) => return,
161         };
162
163         let def_id = cx.tcx.hir.local_def_id(impl_item.id);
164         match cx.tcx.associated_item(def_id).container {
165             TraitContainer(cid) => {
166                 if let Some(n) = cx.tcx.hir.as_local_node_id(cid) {
167                     if !cx.access_levels.is_exported(n) {
168                         // If a trait is being implemented for an item, and the
169                         // trait is not exported, we don't need #[inline]
170                         return;
171                     }
172                 }
173             },
174             ImplContainer(cid) => {
175                 if cx.tcx.impl_trait_ref(cid).is_some() {
176                     let trait_ref = cx.tcx.impl_trait_ref(cid).unwrap();
177                     if let Some(n) = cx.tcx.hir.as_local_node_id(trait_ref.def_id) {
178                         if !cx.access_levels.is_exported(n) {
179                             // If a trait is being implemented for an item, and the
180                             // trait is not exported, we don't need #[inline]
181                             return;
182                         }
183                     }
184                 }
185             },
186         }
187
188         self.check_missing_inline_attrs(cx, &impl_item.attrs, impl_item.span, desc);
189     }
190 }