rust/clippy_lints/src/needless_pass_by_value.rs

354 lines
13 KiB
Rust
Raw Normal View History

2017-02-18 02:00:36 -06:00
use rustc::hir::*;
use rustc::hir::intravisit::FnKind;
use rustc::lint::*;
use rustc::ty::{self, RegionKind, TypeFoldable};
use rustc::traits;
2017-02-18 02:00:36 -06:00
use rustc::middle::expr_use_visitor as euv;
use rustc::middle::mem_categorization as mc;
use syntax::ast::NodeId;
use syntax_pos::Span;
2017-02-20 03:18:31 -06:00
use syntax::errors::DiagnosticBuilder;
2017-09-05 04:33:04 -05:00
use utils::{get_trait_def_id, implements_trait, in_macro, is_copy, is_self, match_type, multispan_sugg, paths,
2017-10-08 03:51:44 -05:00
snippet, snippet_opt, span_lint_and_then};
use utils::ptr::get_spans;
2017-09-05 04:33:04 -05:00
use std::collections::{HashMap, HashSet};
2017-10-08 03:51:44 -05:00
use std::borrow::Cow;
2017-02-18 02:00:36 -06:00
2017-08-09 02:30:56 -05:00
/// **What it does:** Checks for functions taking arguments by value, but not
/// consuming them in its
/// body.
2017-02-18 02:00:36 -06:00
///
2017-08-09 02:30:56 -05:00
/// **Why is this bad?** Taking arguments by reference is more flexible and can
/// sometimes avoid
/// unnecessary allocations.
2017-02-18 02:00:36 -06:00
///
/// **Known problems:** Hopefully none.
///
/// **Example:**
/// ```rust
/// fn foo(v: Vec<i32>) {
/// assert_eq!(v.len(), 42);
/// }
/// ```
declare_lint! {
pub NEEDLESS_PASS_BY_VALUE,
2017-02-18 02:00:36 -06:00
Warn,
"functions taking arguments by value, but not consuming them in its body"
2017-02-18 02:00:36 -06:00
}
pub struct NeedlessPassByValue;
2017-02-18 02:00:36 -06:00
impl LintPass for NeedlessPassByValue {
2017-02-18 02:00:36 -06:00
fn get_lints(&self) -> LintArray {
lint_array![NEEDLESS_PASS_BY_VALUE]
2017-02-18 02:00:36 -06:00
}
}
2017-03-16 02:57:17 -05:00
macro_rules! need {
($e: expr) => { if let Some(x) = $e { x } else { return; } };
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for NeedlessPassByValue {
2017-02-18 02:00:36 -06:00
fn check_fn(
&mut self,
cx: &LateContext<'a, 'tcx>,
kind: FnKind<'tcx>,
decl: &'tcx FnDecl,
body: &'tcx Body,
span: Span,
2017-08-09 02:30:56 -05:00
node_id: NodeId,
2017-02-18 02:00:36 -06:00
) {
if in_macro(span) {
2017-02-18 02:00:36 -06:00
return;
}
match kind {
2017-09-05 04:33:04 -05:00
FnKind::ItemFn(.., attrs) => for a in attrs {
if_let_chain!{[
a.meta_item_list().is_some(),
let Some(name) = a.name(),
name == "proc_macro_derive",
], {
return;
}}
},
_ => return,
2017-02-18 02:00:36 -06:00
}
2017-03-16 02:57:17 -05:00
let borrow_trait = need!(get_trait_def_id(cx, &paths::BORROW_TRAIT));
let fn_trait = need!(cx.tcx.lang_items().fn_trait());
let sized_trait = need!(cx.tcx.lang_items().sized_trait());
2017-02-18 02:00:36 -06:00
let fn_def_id = cx.tcx.hir.local_def_id(node_id);
let preds = traits::elaborate_predicates(cx.tcx, cx.param_env.caller_bounds.to_vec())
.filter(|p| !p.is_global())
.collect::<Vec<_>>();
let preds = preds
.iter()
.filter_map(|pred| if let ty::Predicate::Trait(ref poly_trait_ref) = *pred {
Some(poly_trait_ref.skip_binder())
} else {
None
})
.filter(|t| t.def_id() != sized_trait && !t.has_escaping_regions())
.collect::<Vec<_>>();
2017-08-09 02:30:56 -05:00
// Collect moved variables and spans which will need dereferencings from the
// function body.
let MovedVariablesCtxt {
moved_vars,
spans_need_deref,
..
} = {
2017-02-18 02:00:36 -06:00
let mut ctx = MovedVariablesCtxt::new(cx);
2017-09-04 09:10:36 -05:00
let region_scope_tree = &cx.tcx.region_scope_tree(fn_def_id);
euv::ExprUseVisitor::new(&mut ctx, cx.tcx, cx.param_env, region_scope_tree, cx.tables).consume_body(body);
ctx
2017-02-18 02:00:36 -06:00
};
let fn_sig = cx.tcx.fn_sig(fn_def_id);
let fn_sig = cx.tcx.erase_late_bound_regions(&fn_sig);
2017-02-18 02:00:36 -06:00
2017-10-08 03:51:44 -05:00
for (idx, ((input, &ty), arg)) in decl.inputs
.iter()
.zip(fn_sig.inputs())
.zip(&body.arguments)
.enumerate()
{
// * Exclude a type that is specifically bounded by `Borrow`.
// * Exclude a type whose reference also fulfills its bound.
// (e.g. `std::borrow::Borrow`, `serde::Serialize`)
let (implements_borrow_trait, all_borrowable_trait) = {
let preds = preds
.iter()
.filter(|t| t.self_ty() == ty)
.collect::<Vec<_>>();
(
preds.iter().any(|t| t.def_id() == borrow_trait),
!preds.is_empty() && preds.iter().all(|t| {
implements_trait(
cx,
cx.tcx.mk_imm_ref(&RegionKind::ReErased, ty),
t.def_id(),
&t.input_types().skip(1).collect::<Vec<_>>(),
)
}),
)
};
2017-02-18 02:00:36 -06:00
if_let_chain! {[
!is_self(arg),
!ty.is_mutable_pointer(),
!is_copy(cx, ty),
!implements_trait(cx, ty, fn_trait, &[]),
!implements_borrow_trait,
!all_borrowable_trait,
2017-02-18 02:00:36 -06:00
2017-09-12 07:26:40 -05:00
let PatKind::Binding(mode, canonical_id, ..) = arg.pat.node,
!moved_vars.contains(&canonical_id),
2017-02-18 02:00:36 -06:00
], {
if mode == BindingAnnotation::Mutable || mode == BindingAnnotation::RefMut {
2017-02-18 02:00:36 -06:00
continue;
}
// Dereference suggestion
2017-02-20 03:18:31 -06:00
let sugg = |db: &mut DiagnosticBuilder| {
2017-09-12 07:26:40 -05:00
let deref_span = spans_need_deref.get(&canonical_id);
if_let_chain! {[
match_type(cx, ty, &paths::VEC),
2017-10-08 03:51:44 -05:00
let Some(clone_spans) =
get_spans(cx, Some(body.id()), idx, &[("clone", ".to_owned()")]),
let TyPath(QPath::Resolved(_, ref path)) = input.node,
let Some(elem_ty) = path.segments.iter()
.find(|seg| seg.name == "Vec")
2017-09-25 21:52:20 -05:00
.and_then(|ps| ps.parameters.as_ref())
.map(|params| &params.types[0]),
], {
let slice_ty = format!("&[{}]", snippet(cx, elem_ty.span, "_"));
db.span_suggestion(input.span,
"consider changing the type to",
slice_ty);
2017-10-08 03:51:44 -05:00
for (span, suggestion) in clone_spans {
db.span_suggestion(
span,
&snippet_opt(cx, span)
.map_or(
"change the call to".into(),
|x| Cow::from(format!("change `{}` to", x)),
),
suggestion.into()
);
}
// cannot be destructured, no need for `*` suggestion
assert!(deref_span.is_none());
2017-10-08 03:51:44 -05:00
return;
}}
if match_type(cx, ty, &paths::STRING) {
2017-10-08 03:51:44 -05:00
if let Some(clone_spans) =
get_spans(cx, Some(body.id()), idx, &[("clone", ".to_string()"), ("as_str", "")]) {
db.span_suggestion(input.span, "consider changing the type to", "&str".to_string());
for (span, suggestion) in clone_spans {
db.span_suggestion(
span,
&snippet_opt(cx, span)
.map_or(
"change the call to".into(),
|x| Cow::from(format!("change `{}` to", x))
),
suggestion.into(),
);
}
assert!(deref_span.is_none());
return;
}
}
2017-02-21 04:03:50 -06:00
let mut spans = vec![(input.span, format!("&{}", snippet(cx, input.span, "_")))];
// Suggests adding `*` to dereference the added reference.
if let Some(deref_span) = deref_span {
spans.extend(
deref_span
.iter()
.cloned()
.map(|span| (span, format!("*{}", snippet(cx, span, "<expr>")))),
);
2017-02-21 03:44:31 -06:00
spans.sort_by_key(|&(span, _)| span);
}
2017-02-21 04:03:50 -06:00
multispan_sugg(db, "consider taking a reference instead".to_string(), spans);
2017-02-20 03:18:31 -06:00
};
span_lint_and_then(
cx,
NEEDLESS_PASS_BY_VALUE,
input.span,
"this argument is passed by value, but not consumed in the function body",
sugg,
);
2017-02-18 02:00:36 -06:00
}}
}
}
}
struct MovedVariablesCtxt<'a, 'tcx: 'a> {
cx: &'a LateContext<'a, 'tcx>,
2017-09-12 07:26:40 -05:00
moved_vars: HashSet<NodeId>,
2017-08-09 02:30:56 -05:00
/// Spans which need to be prefixed with `*` for dereferencing the
/// suggested additional reference.
2017-09-12 07:26:40 -05:00
spans_need_deref: HashMap<NodeId, HashSet<Span>>,
2017-02-18 02:00:36 -06:00
}
impl<'a, 'tcx> MovedVariablesCtxt<'a, 'tcx> {
2017-02-18 02:00:36 -06:00
fn new(cx: &'a LateContext<'a, 'tcx>) -> Self {
2017-08-21 06:32:12 -05:00
Self {
2017-02-18 02:00:36 -06:00
cx: cx,
moved_vars: HashSet::new(),
2017-02-20 03:18:31 -06:00
spans_need_deref: HashMap::new(),
2017-02-18 02:00:36 -06:00
}
}
fn move_common(&mut self, _consume_id: NodeId, _span: Span, cmt: mc::cmt<'tcx>) {
let cmt = unwrap_downcast_or_interior(cmt);
2017-09-12 07:26:40 -05:00
if let mc::Categorization::Local(vid) = cmt.cat {
self.moved_vars.insert(vid);
}
2017-02-18 02:00:36 -06:00
}
2017-02-20 03:18:31 -06:00
fn non_moving_pat(&mut self, matched_pat: &Pat, cmt: mc::cmt<'tcx>) {
2017-02-20 03:18:31 -06:00
let cmt = unwrap_downcast_or_interior(cmt);
if let mc::Categorization::Local(vid) = cmt.cat {
2017-02-20 03:18:31 -06:00
let mut id = matched_pat.id;
loop {
let parent = self.cx.tcx.hir.get_parent_node(id);
if id == parent {
// no parent
return;
}
id = parent;
if let Some(node) = self.cx.tcx.hir.find(id) {
match node {
map::Node::NodeExpr(e) => {
// `match` and `if let`
if let ExprMatch(ref c, ..) = e.node {
self.spans_need_deref
2017-09-12 07:26:40 -05:00
.entry(vid)
2017-02-20 03:18:31 -06:00
.or_insert_with(HashSet::new)
.insert(c.span);
}
},
2017-02-20 03:18:31 -06:00
map::Node::NodeStmt(s) => {
// `let <pat> = x;`
if_let_chain! {[
let StmtDecl(ref decl, _) = s.node,
let DeclLocal(ref local) = decl.node,
], {
self.spans_need_deref
2017-09-12 07:26:40 -05:00
.entry(vid)
2017-02-20 03:18:31 -06:00
.or_insert_with(HashSet::new)
.insert(local.init
.as_ref()
.map(|e| e.span)
.expect("`let` stmt without init aren't caught by match_pat"));
}}
},
2017-02-20 03:18:31 -06:00
_ => {},
2017-02-20 03:18:31 -06:00
}
}
}
}
2017-02-20 03:18:31 -06:00
}
2017-02-18 02:00:36 -06:00
}
impl<'a, 'tcx> euv::Delegate<'tcx> for MovedVariablesCtxt<'a, 'tcx> {
fn consume(&mut self, consume_id: NodeId, consume_span: Span, cmt: mc::cmt<'tcx>, mode: euv::ConsumeMode) {
if let euv::ConsumeMode::Move(_) = mode {
self.move_common(consume_id, consume_span, cmt);
}
2017-02-18 02:00:36 -06:00
}
fn matched_pat(&mut self, matched_pat: &Pat, cmt: mc::cmt<'tcx>, mode: euv::MatchMode) {
if let euv::MatchMode::MovingMatch = mode {
self.move_common(matched_pat.id, matched_pat.span, cmt);
} else {
2017-02-20 03:18:31 -06:00
self.non_moving_pat(matched_pat, cmt);
}
}
2017-02-18 02:00:36 -06:00
fn consume_pat(&mut self, consume_pat: &Pat, cmt: mc::cmt<'tcx>, mode: euv::ConsumeMode) {
if let euv::ConsumeMode::Move(_) = mode {
self.move_common(consume_pat.id, consume_pat.span, cmt);
}
2017-02-18 02:00:36 -06:00
}
2017-05-03 07:13:50 -05:00
fn borrow(&mut self, _: NodeId, _: Span, _: mc::cmt<'tcx>, _: ty::Region, _: ty::BorrowKind, _: euv::LoanCause) {}
2017-02-18 02:00:36 -06:00
2017-02-20 03:18:31 -06:00
fn mutate(&mut self, _: NodeId, _: Span, _: mc::cmt<'tcx>, _: euv::MutateMode) {}
2017-02-18 02:00:36 -06:00
2017-02-20 03:18:31 -06:00
fn decl_without_init(&mut self, _: NodeId, _: Span) {}
2017-02-18 02:00:36 -06:00
}
fn unwrap_downcast_or_interior(mut cmt: mc::cmt) -> mc::cmt {
loop {
match cmt.cat.clone() {
2017-09-05 04:33:04 -05:00
mc::Categorization::Downcast(c, _) | mc::Categorization::Interior(c, _) => {
cmt = c;
},
_ => return cmt,
}
}
}