2018-10-23 02:01:45 -05:00
|
|
|
use crate::utils::{
|
2019-04-07 12:44:10 -05:00
|
|
|
has_drop, in_macro, is_copy, match_type, paths, snippet_opt, span_lint_hir, span_lint_hir_and_then,
|
2019-03-13 00:51:57 -05:00
|
|
|
walk_ptrs_ty_depth,
|
2018-10-23 02:01:45 -05:00
|
|
|
};
|
|
|
|
use if_chain::if_chain;
|
2018-12-09 05:19:21 -06:00
|
|
|
use matches::matches;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::intravisit::FnKind;
|
2019-02-20 04:11:11 -06:00
|
|
|
use rustc::hir::{def_id, Body, FnDecl, HirId};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::mir::{
|
|
|
|
self, traversal,
|
|
|
|
visit::{MutatingUseContext, PlaceContext, Visitor},
|
|
|
|
TerminatorKind,
|
|
|
|
};
|
2019-03-18 06:43:10 -05:00
|
|
|
use rustc::ty::{self, Ty};
|
2019-04-08 15:43:55 -05:00
|
|
|
use rustc::{declare_lint_pass, declare_tool_lint};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2018-10-23 02:01:45 -05:00
|
|
|
use std::convert::TryFrom;
|
2019-02-24 08:16:16 -06:00
|
|
|
use syntax::source_map::{BytePos, Span};
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2018-10-25 08:02:46 -05:00
|
|
|
macro_rules! unwrap_or_continue {
|
|
|
|
($x:expr) => {
|
|
|
|
match $x {
|
|
|
|
Some(x) => x,
|
|
|
|
None => continue,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for a redudant `clone()` (and its relatives) which clones an owned
|
|
|
|
/// value that is going to be dropped without further use.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It is not always possible for the compiler to eliminate useless
|
|
|
|
/// allocations and deallocations generated by redundant `clone()`s.
|
|
|
|
///
|
|
|
|
/// **Known problems:**
|
|
|
|
///
|
|
|
|
/// * Suggestions made by this lint could require NLL to be enabled.
|
|
|
|
/// * False-positive if there is a borrow preventing the value from moving out.
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// let x = String::new();
|
|
|
|
///
|
|
|
|
/// let y = &x;
|
|
|
|
///
|
|
|
|
/// foo(x.clone()); // This lint suggests to remove this `clone()`
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// {
|
|
|
|
/// let x = Foo::new();
|
|
|
|
/// call(x.clone());
|
|
|
|
/// call(x.clone()); // this can just pass `x`
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// ["lorem", "ipsum"].join(" ").to_string()
|
|
|
|
///
|
|
|
|
/// Path::new("/a/b").join("c").to_path_buf()
|
|
|
|
/// ```
|
2018-10-23 02:01:45 -05:00
|
|
|
pub REDUNDANT_CLONE,
|
|
|
|
nursery,
|
|
|
|
"`clone()` of an owned value that is going to be dropped immediately"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(RedundantClone => [REDUNDANT_CLONE]);
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for RedundantClone {
|
2019-01-13 09:19:02 -06:00
|
|
|
#[allow(clippy::too_many_lines)]
|
2018-10-23 02:01:45 -05:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
_: FnKind<'tcx>,
|
|
|
|
_: &'tcx FnDecl,
|
|
|
|
body: &'tcx Body,
|
|
|
|
_: Span,
|
2019-02-20 04:11:11 -06:00
|
|
|
_: HirId,
|
2018-10-23 02:01:45 -05:00
|
|
|
) {
|
2018-12-07 18:56:03 -06:00
|
|
|
let def_id = cx.tcx.hir().body_owner_def_id(body.id());
|
2018-10-23 02:01:45 -05:00
|
|
|
let mir = cx.tcx.optimized_mir(def_id);
|
|
|
|
|
|
|
|
for (bb, bbdata) in mir.basic_blocks().iter_enumerated() {
|
2018-10-25 11:27:28 -05:00
|
|
|
let terminator = bbdata.terminator();
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2018-10-25 13:07:29 -05:00
|
|
|
if in_macro(terminator.source_info.span) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
// Give up on loops
|
|
|
|
if terminator.successors().any(|s| *s == bb) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-25 08:02:46 -05:00
|
|
|
let (fn_def_id, arg, arg_ty, _) = unwrap_or_continue!(is_call_with_ref_arg(cx, mir, &terminator.kind));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2019-04-07 12:44:10 -05:00
|
|
|
let from_borrow = cx.match_def_path(fn_def_id, &paths::CLONE_TRAIT_METHOD)
|
|
|
|
|| cx.match_def_path(fn_def_id, &paths::TO_OWNED_METHOD)
|
|
|
|
|| (cx.match_def_path(fn_def_id, &paths::TO_STRING_METHOD) && match_type(cx, arg_ty, &paths::STRING));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
let from_deref = !from_borrow
|
2019-04-07 12:44:10 -05:00
|
|
|
&& (cx.match_def_path(fn_def_id, &paths::PATH_TO_PATH_BUF)
|
|
|
|
|| cx.match_def_path(fn_def_id, &paths::OS_STR_TO_OS_STRING));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
if !from_borrow && !from_deref {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2018-10-25 08:02:46 -05:00
|
|
|
// _1 in MIR `{ _2 = &_1; clone(move _2); }` or `{ _2 = _1; to_path_buf(_2); } (from_deref)
|
|
|
|
// In case of `from_deref`, `arg` is already a reference since it is `deref`ed in the previous
|
|
|
|
// block.
|
2018-12-09 05:19:21 -06:00
|
|
|
let (cloned, cannot_move_out) = unwrap_or_continue!(find_stmt_assigns_to(
|
|
|
|
cx,
|
|
|
|
mir,
|
|
|
|
arg,
|
|
|
|
from_borrow,
|
2018-12-10 00:59:21 -06:00
|
|
|
bbdata.statements.iter()
|
2018-12-09 05:19:21 -06:00
|
|
|
));
|
|
|
|
|
|
|
|
if from_borrow && cannot_move_out {
|
|
|
|
continue;
|
|
|
|
}
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
// _1 in MIR `{ _2 = &_1; _3 = deref(move _2); } -> { _4 = _3; to_path_buf(move _4); }`
|
|
|
|
let referent = if from_deref {
|
|
|
|
let ps = mir.predecessors_for(bb);
|
2018-10-25 08:02:46 -05:00
|
|
|
if ps.len() != 1 {
|
|
|
|
continue;
|
|
|
|
}
|
2018-10-25 11:27:28 -05:00
|
|
|
let pred_terminator = mir[ps[0]].terminator();
|
2018-10-25 08:02:46 -05:00
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
let pred_arg = if_chain! {
|
2018-10-25 08:02:46 -05:00
|
|
|
if let Some((pred_fn_def_id, pred_arg, pred_arg_ty, Some(res))) =
|
|
|
|
is_call_with_ref_arg(cx, mir, &pred_terminator.kind);
|
2019-02-26 12:02:22 -06:00
|
|
|
if *res == mir::Place::Base(mir::PlaceBase::Local(cloned));
|
2019-04-07 12:44:10 -05:00
|
|
|
if cx.match_def_path(pred_fn_def_id, &paths::DEREF_TRAIT_METHOD);
|
2018-10-23 02:01:45 -05:00
|
|
|
if match_type(cx, pred_arg_ty, &paths::PATH_BUF)
|
|
|
|
|| match_type(cx, pred_arg_ty, &paths::OS_STRING);
|
|
|
|
then {
|
|
|
|
pred_arg
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-12-09 05:19:21 -06:00
|
|
|
let (local, cannot_move_out) = unwrap_or_continue!(find_stmt_assigns_to(
|
|
|
|
cx,
|
|
|
|
mir,
|
|
|
|
pred_arg,
|
|
|
|
true,
|
2018-12-10 00:59:21 -06:00
|
|
|
mir[ps[0]].statements.iter()
|
2018-12-09 05:19:21 -06:00
|
|
|
));
|
|
|
|
if cannot_move_out {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
local
|
2018-10-23 02:01:45 -05:00
|
|
|
} else {
|
|
|
|
cloned
|
|
|
|
};
|
|
|
|
|
|
|
|
let used_later = traversal::ReversePostorder::new(&mir, bb).skip(1).any(|(tbb, tdata)| {
|
2018-10-25 11:27:28 -05:00
|
|
|
// Give up on loops
|
|
|
|
if tdata.terminator().successors().any(|s| *s == bb) {
|
|
|
|
return true;
|
2018-10-23 02:01:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut vis = LocalUseVisitor {
|
|
|
|
local: referent,
|
|
|
|
used_other_than_drop: false,
|
|
|
|
};
|
|
|
|
vis.visit_basic_block_data(tbb, tdata);
|
|
|
|
vis.used_other_than_drop
|
|
|
|
});
|
|
|
|
|
|
|
|
if !used_later {
|
|
|
|
let span = terminator.source_info.span;
|
2018-10-25 07:08:32 -05:00
|
|
|
let node = if let mir::ClearCrossCrate::Set(scope_local_data) = &mir.source_scope_local_data {
|
|
|
|
scope_local_data[terminator.source_info.scope].lint_root
|
|
|
|
} else {
|
|
|
|
unreachable!()
|
|
|
|
};
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(snip) = snippet_opt(cx, span);
|
|
|
|
if let Some(dot) = snip.rfind('.');
|
|
|
|
then {
|
|
|
|
let sugg_span = span.with_lo(
|
|
|
|
span.lo() + BytePos(u32::try_from(dot).unwrap())
|
|
|
|
);
|
|
|
|
|
2019-03-12 02:01:21 -05:00
|
|
|
span_lint_hir_and_then(cx, REDUNDANT_CLONE, node, sugg_span, "redundant clone", |db| {
|
2019-01-27 06:33:56 -06:00
|
|
|
db.span_suggestion(
|
2018-10-23 02:01:45 -05:00
|
|
|
sugg_span,
|
|
|
|
"remove this",
|
|
|
|
String::new(),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
db.span_note(
|
|
|
|
span.with_hi(span.lo() + BytePos(u32::try_from(dot).unwrap())),
|
|
|
|
"this value is dropped without further use",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
} else {
|
2019-03-12 02:01:21 -05:00
|
|
|
span_lint_hir(cx, REDUNDANT_CLONE, node, span, "redundant clone");
|
2018-10-23 02:01:45 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 08:02:46 -05:00
|
|
|
/// If `kind` is `y = func(x: &T)` where `T: !Copy`, returns `(DefId of func, x, T, y)`.
|
|
|
|
fn is_call_with_ref_arg<'tcx>(
|
|
|
|
cx: &LateContext<'_, 'tcx>,
|
|
|
|
mir: &'tcx mir::Mir<'tcx>,
|
|
|
|
kind: &'tcx mir::TerminatorKind<'tcx>,
|
2019-03-18 06:43:10 -05:00
|
|
|
) -> Option<(def_id::DefId, mir::Local, Ty<'tcx>, Option<&'tcx mir::Place<'tcx>>)> {
|
2018-10-25 08:02:46 -05:00
|
|
|
if_chain! {
|
|
|
|
if let TerminatorKind::Call { func, args, destination, .. } = kind;
|
|
|
|
if args.len() == 1;
|
2019-02-26 12:02:22 -06:00
|
|
|
if let mir::Operand::Move(mir::Place::Base(mir::PlaceBase::Local(local))) = &args[0];
|
2018-10-25 08:02:46 -05:00
|
|
|
if let ty::FnDef(def_id, _) = func.ty(&*mir, cx.tcx).sty;
|
|
|
|
if let (inner_ty, 1) = walk_ptrs_ty_depth(args[0].ty(&*mir, cx.tcx));
|
|
|
|
if !is_copy(cx, inner_ty);
|
|
|
|
then {
|
|
|
|
Some((def_id, *local, inner_ty, destination.as_ref().map(|(dest, _)| dest)))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-09 05:19:21 -06:00
|
|
|
type CannotMoveOut = bool;
|
|
|
|
|
2018-12-10 00:48:34 -06:00
|
|
|
/// Finds the first `to = (&)from`, and returns
|
|
|
|
/// ``Some((from, [`true` if `from` cannot be moved out]))``.
|
2018-10-25 08:02:46 -05:00
|
|
|
fn find_stmt_assigns_to<'a, 'tcx: 'a>(
|
2018-12-09 05:19:21 -06:00
|
|
|
cx: &LateContext<'_, 'tcx>,
|
|
|
|
mir: &mir::Mir<'tcx>,
|
2018-10-25 08:02:46 -05:00
|
|
|
to: mir::Local,
|
|
|
|
by_ref: bool,
|
2018-12-10 00:59:21 -06:00
|
|
|
stmts: impl DoubleEndedIterator<Item = &'a mir::Statement<'tcx>>,
|
2018-12-09 05:19:21 -06:00
|
|
|
) -> Option<(mir::Local, CannotMoveOut)> {
|
2018-12-10 00:59:21 -06:00
|
|
|
stmts
|
|
|
|
.rev()
|
|
|
|
.find_map(|stmt| {
|
2019-02-26 12:02:22 -06:00
|
|
|
if let mir::StatementKind::Assign(mir::Place::Base(mir::PlaceBase::Local(local)), v) = &stmt.kind {
|
2018-12-10 00:59:21 -06:00
|
|
|
if *local == to {
|
|
|
|
return Some(v);
|
2018-10-25 08:02:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-10 00:59:21 -06:00
|
|
|
None
|
|
|
|
})
|
|
|
|
.and_then(|v| {
|
|
|
|
if by_ref {
|
|
|
|
if let mir::Rvalue::Ref(_, _, ref place) = **v {
|
|
|
|
return base_local_and_movability(cx, mir, place);
|
|
|
|
}
|
|
|
|
} else if let mir::Rvalue::Use(mir::Operand::Copy(ref place)) = **v {
|
|
|
|
return base_local_and_movability(cx, mir, place);
|
|
|
|
}
|
|
|
|
None
|
|
|
|
})
|
2018-10-25 08:02:46 -05:00
|
|
|
}
|
|
|
|
|
2018-12-10 00:48:34 -06:00
|
|
|
/// Extracts and returns the undermost base `Local` of given `place`. Returns `place` itself
|
|
|
|
/// if it is already a `Local`.
|
|
|
|
///
|
|
|
|
/// Also reports whether given `place` cannot be moved out.
|
|
|
|
fn base_local_and_movability<'tcx>(
|
2018-12-09 05:19:21 -06:00
|
|
|
cx: &LateContext<'_, 'tcx>,
|
|
|
|
mir: &mir::Mir<'tcx>,
|
|
|
|
mut place: &mir::Place<'tcx>,
|
|
|
|
) -> Option<(mir::Local, CannotMoveOut)> {
|
|
|
|
use rustc::mir::Place::*;
|
2019-02-26 12:02:22 -06:00
|
|
|
use rustc::mir::PlaceBase;
|
2018-12-09 05:19:21 -06:00
|
|
|
|
2018-12-10 00:48:34 -06:00
|
|
|
// Dereference. You cannot move things out from a borrowed value.
|
2018-12-09 05:19:21 -06:00
|
|
|
let mut deref = false;
|
2018-12-10 00:48:34 -06:00
|
|
|
// Accessing a field of an ADT that has `Drop`. Moving the field out will cause E0509.
|
2018-12-09 05:19:21 -06:00
|
|
|
let mut field = false;
|
|
|
|
|
|
|
|
loop {
|
|
|
|
match place {
|
2019-02-26 12:02:22 -06:00
|
|
|
Base(PlaceBase::Local(local)) => return Some((*local, deref || field)),
|
2018-12-09 05:19:21 -06:00
|
|
|
Projection(proj) => {
|
|
|
|
place = &proj.base;
|
|
|
|
deref = deref || matches!(proj.elem, mir::ProjectionElem::Deref);
|
|
|
|
if !field && matches!(proj.elem, mir::ProjectionElem::Field(..)) {
|
2019-04-03 03:48:54 -05:00
|
|
|
field = has_drop(cx, place.ty(&mir.local_decls, cx.tcx).ty);
|
2018-12-09 05:19:21 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => return None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
struct LocalUseVisitor {
|
|
|
|
local: mir::Local,
|
|
|
|
used_other_than_drop: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> mir::visit::Visitor<'tcx> for LocalUseVisitor {
|
2018-10-25 06:33:40 -05:00
|
|
|
fn visit_basic_block_data(&mut self, block: mir::BasicBlock, data: &mir::BasicBlockData<'tcx>) {
|
2018-10-25 11:27:28 -05:00
|
|
|
let statements = &data.statements;
|
2018-10-25 06:33:40 -05:00
|
|
|
for (statement_index, statement) in statements.iter().enumerate() {
|
|
|
|
self.visit_statement(block, statement, mir::Location { block, statement_index });
|
|
|
|
|
|
|
|
// Once flagged, skip remaining statements
|
|
|
|
if self.used_other_than_drop {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 11:27:28 -05:00
|
|
|
self.visit_terminator(
|
|
|
|
block,
|
|
|
|
data.terminator(),
|
|
|
|
mir::Location {
|
2018-10-25 06:33:40 -05:00
|
|
|
block,
|
2018-10-25 11:27:28 -05:00
|
|
|
statement_index: statements.len(),
|
|
|
|
},
|
|
|
|
);
|
2018-10-23 02:01:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_local(&mut self, local: &mir::Local, ctx: PlaceContext<'tcx>, _: mir::Location) {
|
|
|
|
match ctx {
|
2018-12-09 04:18:35 -06:00
|
|
|
PlaceContext::MutatingUse(MutatingUseContext::Drop) | PlaceContext::NonUse(_) => return,
|
2018-12-09 05:19:21 -06:00
|
|
|
_ => {},
|
2018-10-23 02:01:45 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if *local == self.local {
|
|
|
|
self.used_other_than_drop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|