2021-03-25 19:29:11 +01:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2020-03-01 12:23:33 +09:00
|
|
|
use rustc_ast::ast;
|
2020-01-07 01:39:50 +09:00
|
|
|
use rustc_hir as hir;
|
2020-01-12 15:08:41 +09:00
|
|
|
use rustc_lint::{self, LateContext, LateLintPass, LintContext};
|
2020-01-11 20:37:08 +09:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 11:00:00 +01:00
|
|
|
use rustc_span::source_map::Span;
|
2020-11-05 14:29:48 +01:00
|
|
|
use rustc_span::sym;
|
2018-07-04 10:51:04 +02:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### What it does
|
2021-10-21 13:11:36 +02:00
|
|
|
/// It lints if an exported function, method, trait method with default impl,
|
2019-03-05 11:50:33 -05:00
|
|
|
/// or trait method impl is not `#[inline]`.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// In general, it is not. Functions can be inlined across
|
2019-03-05 11:50:33 -05:00
|
|
|
/// crates when that's profitable as long as any form of LTO is used. When LTO is disabled,
|
|
|
|
/// functions that are not `#[inline]` cannot be inlined across crates. Certain types of crates
|
|
|
|
/// might intend for most of the methods in their public API to be able to be inlined across
|
|
|
|
/// crates even when LTO is disabled. For these types of crates, enabling this lint might make
|
|
|
|
/// sense. It allows the crate to require all exported methods to be `#[inline]` by default, and
|
|
|
|
/// then opt out for specific methods where this might not make sense.
|
|
|
|
///
|
2021-07-29 12:16:06 +02:00
|
|
|
/// ### Example
|
2019-03-05 11:50:33 -05:00
|
|
|
/// ```rust
|
|
|
|
/// pub fn foo() {} // missing #[inline]
|
|
|
|
/// fn ok() {} // ok
|
|
|
|
/// #[inline] pub fn bar() {} // ok
|
|
|
|
/// #[inline(always)] pub fn baz() {} // ok
|
|
|
|
///
|
|
|
|
/// pub trait Bar {
|
|
|
|
/// fn bar(); // ok
|
|
|
|
/// fn def_bar() {} // missing #[inline]
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// struct Baz;
|
|
|
|
/// impl Baz {
|
2019-08-03 21:24:50 +02:00
|
|
|
/// fn private() {} // ok
|
2019-03-05 11:50:33 -05:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// impl Bar for Baz {
|
|
|
|
/// fn bar() {} // ok - Baz is not exported
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// pub struct PubBaz;
|
|
|
|
/// impl PubBaz {
|
2019-08-03 21:24:50 +02:00
|
|
|
/// fn private() {} // ok
|
|
|
|
/// pub fn not_ptrivate() {} // missing #[inline]
|
2019-03-05 11:50:33 -05:00
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// impl Bar for PubBaz {
|
|
|
|
/// fn bar() {} // missing #[inline]
|
|
|
|
/// fn def_bar() {} // missing #[inline]
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 12:33:31 +01:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-07-04 10:51:04 +02:00
|
|
|
pub MISSING_INLINE_IN_PUBLIC_ITEMS,
|
|
|
|
restriction,
|
2020-01-06 15:30:43 +09:00
|
|
|
"detects missing `#[inline]` attribute for public callables (functions, trait methods, methods...)"
|
2018-07-04 10:51:04 +02:00
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_missing_inline_attrs(cx: &LateContext<'_>, attrs: &[ast::Attribute], sp: Span, desc: &'static str) {
|
2020-11-05 14:29:48 +01:00
|
|
|
let has_inline = attrs.iter().any(|a| a.has_name(sym::inline));
|
2018-07-05 01:53:40 +02:00
|
|
|
if !has_inline {
|
2018-08-28 13:13:42 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
2018-07-05 01:53:40 +02:00
|
|
|
MISSING_INLINE_IN_PUBLIC_ITEMS,
|
|
|
|
sp,
|
|
|
|
&format!("missing `#[inline]` for {}", desc),
|
|
|
|
);
|
2018-07-04 10:51:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-12 15:30:50 +01:00
|
|
|
fn is_executable_or_proc_macro(cx: &LateContext<'_>) -> bool {
|
2020-03-18 23:45:02 +01:00
|
|
|
use rustc_session::config::CrateType;
|
2018-07-04 16:39:52 +02:00
|
|
|
|
2020-07-14 14:59:59 +02:00
|
|
|
cx.tcx
|
|
|
|
.sess
|
|
|
|
.crate_types()
|
|
|
|
.iter()
|
2021-03-12 15:30:50 +01:00
|
|
|
.any(|t: &CrateType| matches!(t, CrateType::Executable | CrateType::ProcMacro))
|
2018-07-04 16:39:52 +02:00
|
|
|
}
|
|
|
|
|
2019-04-08 13:43:55 -07:00
|
|
|
declare_lint_pass!(MissingInline => [MISSING_INLINE_IN_PUBLIC_ITEMS]);
|
2018-07-04 10:51:04 +02:00
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MissingInline {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, it: &'tcx hir::Item<'_>) {
|
2021-03-12 15:30:50 +01:00
|
|
|
if rustc_middle::lint::in_external_macro(cx.sess(), it.span) || is_executable_or_proc_macro(cx) {
|
2018-07-04 16:39:52 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-29 01:07:32 +03:00
|
|
|
if !cx.access_levels.is_exported(it.def_id) {
|
2018-07-04 10:51:04 +02:00
|
|
|
return;
|
|
|
|
}
|
2019-09-27 17:16:06 +02:00
|
|
|
match it.kind {
|
2018-07-16 15:07:39 +02:00
|
|
|
hir::ItemKind::Fn(..) => {
|
2018-07-04 10:51:04 +02:00
|
|
|
let desc = "a function";
|
2021-01-24 13:17:54 +01:00
|
|
|
let attrs = cx.tcx.hir().attrs(it.hir_id());
|
|
|
|
check_missing_inline_attrs(cx, attrs, it.span, desc);
|
2018-07-04 10:51:04 +02:00
|
|
|
},
|
2021-04-08 17:50:13 +02:00
|
|
|
hir::ItemKind::Trait(ref _is_auto, ref _unsafe, ref _generics, _bounds, trait_items) => {
|
2018-07-04 15:32:55 +02:00
|
|
|
// note: we need to check if the trait is exported so we can't use
|
|
|
|
// `LateLintPass::check_trait_item` here.
|
2018-07-04 10:51:04 +02:00
|
|
|
for tit in trait_items {
|
2018-12-08 01:56:03 +01:00
|
|
|
let tit_ = cx.tcx.hir().trait_item(tit.id);
|
2019-09-27 17:16:06 +02:00
|
|
|
match tit_.kind {
|
2018-11-27 21:14:15 +01:00
|
|
|
hir::TraitItemKind::Const(..) | hir::TraitItemKind::Type(..) => {},
|
2020-03-13 04:56:55 +09:00
|
|
|
hir::TraitItemKind::Fn(..) => {
|
2018-07-04 10:51:04 +02:00
|
|
|
if tit.defaultness.has_value() {
|
|
|
|
// trait method with default body needs inline in case
|
|
|
|
// an impl is not provided
|
|
|
|
let desc = "a default trait method";
|
2021-01-30 12:06:04 +01:00
|
|
|
let item = cx.tcx.hir().trait_item(tit.id);
|
2020-11-27 09:41:53 +01:00
|
|
|
let attrs = cx.tcx.hir().attrs(item.hir_id());
|
|
|
|
check_missing_inline_attrs(cx, attrs, item.span, desc);
|
2018-07-04 10:51:04 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
2018-11-27 21:14:15 +01:00
|
|
|
},
|
|
|
|
hir::ItemKind::Const(..)
|
|
|
|
| hir::ItemKind::Enum(..)
|
2021-08-05 16:58:46 -07:00
|
|
|
| hir::ItemKind::Macro(..)
|
2018-11-27 21:14:15 +01:00
|
|
|
| hir::ItemKind::Mod(..)
|
|
|
|
| hir::ItemKind::Static(..)
|
|
|
|
| hir::ItemKind::Struct(..)
|
|
|
|
| hir::ItemKind::TraitAlias(..)
|
|
|
|
| hir::ItemKind::GlobalAsm(..)
|
2019-08-05 07:30:01 +02:00
|
|
|
| hir::ItemKind::TyAlias(..)
|
2018-11-27 21:14:15 +01:00
|
|
|
| hir::ItemKind::Union(..)
|
2019-08-03 08:44:32 +02:00
|
|
|
| hir::ItemKind::OpaqueTy(..)
|
2018-11-27 21:14:15 +01:00
|
|
|
| hir::ItemKind::ExternCrate(..)
|
2020-11-11 22:40:09 +01:00
|
|
|
| hir::ItemKind::ForeignMod { .. }
|
2020-01-18 14:14:36 +09:00
|
|
|
| hir::ItemKind::Impl { .. }
|
2018-11-27 21:14:15 +01:00
|
|
|
| hir::ItemKind::Use(..) => {},
|
2018-07-04 10:51:04 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-06-25 23:41:36 +03:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, impl_item: &'tcx hir::ImplItem<'_>) {
|
2020-03-30 11:02:14 +02:00
|
|
|
use rustc_middle::ty::{ImplContainer, TraitContainer};
|
2021-03-12 15:30:50 +01:00
|
|
|
if rustc_middle::lint::in_external_macro(cx.sess(), impl_item.span) || is_executable_or_proc_macro(cx) {
|
2018-07-04 16:39:52 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-07-04 10:51:04 +02:00
|
|
|
|
|
|
|
// If the item being implemented is not exported, then we don't need #[inline]
|
2021-07-29 01:07:32 +03:00
|
|
|
if !cx.access_levels.is_exported(impl_item.def_id) {
|
2018-07-04 10:51:04 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-27 17:16:06 +02:00
|
|
|
let desc = match impl_item.kind {
|
2020-03-16 16:00:16 +01:00
|
|
|
hir::ImplItemKind::Fn(..) => "a method",
|
2020-05-10 15:05:06 +01:00
|
|
|
hir::ImplItemKind::Const(..) | hir::ImplItemKind::TyAlias(_) => return,
|
2018-07-04 15:32:55 +02:00
|
|
|
};
|
|
|
|
|
2021-01-30 23:25:03 +01:00
|
|
|
let trait_def_id = match cx.tcx.associated_item(impl_item.def_id).container {
|
2018-07-08 08:03:11 +02:00
|
|
|
TraitContainer(cid) => Some(cid),
|
|
|
|
ImplContainer(cid) => cx.tcx.impl_trait_ref(cid).map(|t| t.def_id),
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(trait_def_id) = trait_def_id {
|
2021-07-29 01:07:32 +03:00
|
|
|
if trait_def_id.is_local() && !cx.access_levels.is_exported(impl_item.def_id) {
|
2019-03-26 10:55:03 +01:00
|
|
|
// If a trait is being implemented for an item, and the
|
|
|
|
// trait is not exported, we don't need #[inline]
|
|
|
|
return;
|
2018-07-08 08:03:11 +02:00
|
|
|
}
|
2018-07-04 10:51:04 +02:00
|
|
|
}
|
|
|
|
|
2020-11-27 09:55:10 +01:00
|
|
|
let attrs = cx.tcx.hir().attrs(impl_item.hir_id());
|
|
|
|
check_missing_inline_attrs(cx, attrs, impl_item.span, desc);
|
2018-07-04 10:51:04 +02:00
|
|
|
}
|
|
|
|
}
|