2015-08-16 01:54:43 -05:00
|
|
|
//! checks for attributes
|
2015-05-30 08:10:19 -05:00
|
|
|
|
|
|
|
use rustc::lint::*;
|
2015-09-03 09:42:17 -05:00
|
|
|
use rustc_front::hir::*;
|
|
|
|
use reexport::*;
|
2015-09-06 03:53:55 -05:00
|
|
|
use syntax::codemap::Span;
|
2015-08-16 01:54:43 -05:00
|
|
|
|
2015-07-26 09:53:11 -05:00
|
|
|
use utils::{in_macro, match_path, span_lint};
|
2015-05-30 08:10:19 -05:00
|
|
|
|
|
|
|
declare_lint! { pub INLINE_ALWAYS, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"`#[inline(always)]` is a bad idea in most cases" }
|
2015-05-30 08:10:19 -05:00
|
|
|
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct AttrPass;
|
|
|
|
|
|
|
|
impl LintPass for AttrPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(INLINE_ALWAYS)
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
2015-05-30 08:10:19 -05:00
|
|
|
fn check_item(&mut self, cx: &Context, item: &Item) {
|
2015-08-11 13:22:20 -05:00
|
|
|
if is_relevant_item(item) {
|
2015-09-06 03:53:55 -05:00
|
|
|
check_attrs(cx, item.span, &item.ident, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-07 05:03:56 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &Context, item: &ImplItem) {
|
2015-08-11 13:22:20 -05:00
|
|
|
if is_relevant_impl(item) {
|
2015-09-06 03:53:55 -05:00
|
|
|
check_attrs(cx, item.span, &item.ident, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_trait_item(&mut self, cx: &Context, item: &TraitItem) {
|
|
|
|
if is_relevant_trait(item) {
|
2015-09-06 03:53:55 -05:00
|
|
|
check_attrs(cx, item.span, &item.ident, &item.attrs)
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_relevant_item(item: &Item) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
if let &ItemFn(_, _, _, _, _, ref block) = &item.node {
|
|
|
|
is_relevant_block(block)
|
|
|
|
} else { false }
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_relevant_impl(item: &ImplItem) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match item.node {
|
|
|
|
MethodImplItem(_, ref block) => is_relevant_block(block),
|
|
|
|
_ => false
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_relevant_trait(item: &TraitItem) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match item.node {
|
|
|
|
MethodTraitItem(_, None) => true,
|
|
|
|
MethodTraitItem(_, Some(ref block)) => is_relevant_block(block),
|
|
|
|
_ => false
|
|
|
|
}
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_relevant_block(block: &Block) -> bool {
|
2015-08-13 08:36:31 -05:00
|
|
|
for stmt in &block.stmts {
|
2015-08-11 13:22:20 -05:00
|
|
|
match stmt.node {
|
|
|
|
StmtDecl(_, _) => return true,
|
|
|
|
StmtExpr(ref expr, _) | StmtSemi(ref expr, _) => {
|
|
|
|
return is_relevant_expr(expr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-25 07:41:35 -05:00
|
|
|
block.expr.as_ref().map_or(false, |e| is_relevant_expr(e))
|
2015-06-07 05:03:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_relevant_expr(expr: &Expr) -> bool {
|
2015-08-11 13:22:20 -05:00
|
|
|
match expr.node {
|
|
|
|
ExprBlock(ref block) => is_relevant_block(block),
|
|
|
|
ExprRet(Some(ref e)) | ExprParen(ref e) =>
|
2015-08-25 07:41:35 -05:00
|
|
|
is_relevant_expr(e),
|
2015-09-03 09:42:17 -05:00
|
|
|
ExprRet(None) | ExprBreak(_) => false,
|
2015-08-11 13:22:20 -05:00
|
|
|
ExprCall(ref path_expr, _) => {
|
|
|
|
if let ExprPath(_, ref path) = path_expr.node {
|
|
|
|
!match_path(path, &["std", "rt", "begin_unwind"])
|
|
|
|
} else { true }
|
|
|
|
}
|
|
|
|
_ => true
|
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|
|
|
|
|
2015-09-06 03:53:55 -05:00
|
|
|
fn check_attrs(cx: &Context, span: Span, ident: &Ident,
|
|
|
|
attrs: &[Attribute]) {
|
|
|
|
if in_macro(cx, span) { return; }
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
|
|
for attr in attrs {
|
|
|
|
if let MetaList(ref inline, ref values) = attr.node.value.node {
|
|
|
|
if values.len() != 1 || inline != &"inline" { continue; }
|
|
|
|
if let MetaWord(ref always) = values[0].node {
|
|
|
|
if always != &"always" { continue; }
|
|
|
|
span_lint(cx, INLINE_ALWAYS, attr.span, &format!(
|
2015-08-12 03:46:49 -05:00
|
|
|
"you have declared `#[inline(always)]` on `{}`. This \
|
2015-08-11 13:22:20 -05:00
|
|
|
is usually a bad idea. Are you sure?",
|
2015-08-16 01:33:10 -05:00
|
|
|
ident.name));
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 08:10:19 -05:00
|
|
|
}
|