2018-10-23 02:01:45 -05:00
|
|
|
use crate::utils::{
|
2019-08-19 11:30:32 -05:00
|
|
|
has_drop, is_copy, match_def_path, match_type, paths, snippet_opt, span_lint_hir, span_lint_hir_and_then,
|
|
|
|
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;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc::declare_lint_pass;
|
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,
|
2019-09-16 10:50:15 -05:00
|
|
|
visit::{MutatingUseContext, PlaceContext, Visitor as _},
|
2018-12-29 09:04:45 -06:00
|
|
|
};
|
2019-09-16 10:50:15 -05:00
|
|
|
use rustc::ty::{self, fold::TypeVisitor, Ty};
|
2019-10-01 18:02:18 -05:00
|
|
|
use rustc_data_structures::{fx::FxHashMap, transitive_relation::TransitiveRelation};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2019-10-01 18:02:18 -05:00
|
|
|
use rustc_index::bit_set::{BitSet, HybridBitSet};
|
2019-09-16 10:50:15 -05:00
|
|
|
use rustc_mir::dataflow::{
|
|
|
|
do_dataflow, BitDenotation, BottomValue, DataflowResults, DataflowResultsCursor, DebugFormatted, GenKillSet,
|
|
|
|
};
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc_session::declare_tool_lint;
|
2020-01-04 04:00:00 -06:00
|
|
|
use rustc_span::source_map::{BytePos, Span};
|
2018-10-23 02:01:45 -05:00
|
|
|
use std::convert::TryFrom;
|
|
|
|
|
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-12-19 18:07:42 -06:00
|
|
|
/// **What it does:** Checks for a redundant `clone()` (and its relatives) which clones an owned
|
2019-03-05 10:50:33 -06:00
|
|
|
/// 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:**
|
|
|
|
///
|
2019-09-16 10:50:15 -05:00
|
|
|
/// False-negatives: analysis performed by this lint is conservative and limited.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-08-03 14:01:23 -05:00
|
|
|
/// # use std::path::Path;
|
|
|
|
/// # #[derive(Clone)]
|
|
|
|
/// # struct Foo;
|
|
|
|
/// # impl Foo {
|
|
|
|
/// # fn new() -> Self { Foo {} }
|
|
|
|
/// # }
|
|
|
|
/// # fn call(x: Foo) {}
|
2019-03-05 10:50:33 -06:00
|
|
|
/// {
|
|
|
|
/// let x = Foo::new();
|
|
|
|
/// call(x.clone());
|
|
|
|
/// call(x.clone()); // this can just pass `x`
|
|
|
|
/// }
|
|
|
|
///
|
2019-08-03 14:01:23 -05:00
|
|
|
/// ["lorem", "ipsum"].join(" ").to_string();
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2019-08-03 14:01:23 -05:00
|
|
|
/// Path::new("/a/b").join("c").to_path_buf();
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2018-10-23 02:01:45 -05:00
|
|
|
pub REDUNDANT_CLONE,
|
2019-09-16 10:50:15 -05:00
|
|
|
perf,
|
2018-10-23 02:01:45 -05:00
|
|
|
"`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>,
|
2019-12-29 22:02:10 -06:00
|
|
|
_: &'tcx FnDecl<'_>,
|
2019-12-22 08:42:41 -06:00
|
|
|
body: &'tcx Body<'_>,
|
2018-10-23 02:01:45 -05:00
|
|
|
_: 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);
|
2019-12-02 13:39:40 -06:00
|
|
|
let mir_read_only = mir.unwrap_read_only();
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2019-09-16 10:50:15 -05:00
|
|
|
let dead_unwinds = BitSet::new_empty(mir.basic_blocks().len());
|
|
|
|
let maybe_storage_live_result = do_dataflow(
|
|
|
|
cx.tcx,
|
|
|
|
mir,
|
|
|
|
def_id,
|
|
|
|
&[],
|
|
|
|
&dead_unwinds,
|
|
|
|
MaybeStorageLive::new(mir),
|
|
|
|
|bd, p| DebugFormatted::new(&bd.body.local_decls[p]),
|
|
|
|
);
|
|
|
|
let mut possible_borrower = {
|
|
|
|
let mut vis = PossibleBorrowerVisitor::new(cx, mir);
|
2019-12-02 13:39:40 -06:00
|
|
|
vis.visit_body(mir_read_only);
|
2019-09-16 10:50:15 -05:00
|
|
|
vis.into_map(cx, maybe_storage_live_result)
|
|
|
|
};
|
|
|
|
|
2018-10-23 02:01:45 -05:00
|
|
|
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
|
|
|
|
2019-08-19 11:30:32 -05:00
|
|
|
if terminator.source_info.span.from_expansion() {
|
2018-10-25 13:07:29 -05:00
|
|
|
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-05-17 16:53:54 -05:00
|
|
|
let from_borrow = match_def_path(cx, fn_def_id, &paths::CLONE_TRAIT_METHOD)
|
|
|
|
|| match_def_path(cx, fn_def_id, &paths::TO_OWNED_METHOD)
|
2019-05-17 17:58:25 -05:00
|
|
|
|| (match_def_path(cx, 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-05-17 16:53:54 -05:00
|
|
|
&& (match_def_path(cx, fn_def_id, &paths::PATH_TO_PATH_BUF)
|
|
|
|
|| match_def_path(cx, fn_def_id, &paths::OS_STR_TO_OS_STRING));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
if !from_borrow && !from_deref {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
// `{ cloned = &arg; clone(move cloned); }` or `{ cloned = &arg; to_path_buf(cloned); }`
|
2019-09-16 10:50:15 -05:00
|
|
|
let (cloned, cannot_move_out) = unwrap_or_continue!(find_stmt_assigns_to(cx, mir, arg, from_borrow, bb));
|
|
|
|
|
|
|
|
let loc = mir::Location {
|
|
|
|
block: bb,
|
|
|
|
statement_index: bbdata.statements.len(),
|
|
|
|
};
|
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
// Cloned local
|
|
|
|
let local = if from_borrow {
|
|
|
|
// `res = clone(arg)` can be turned into `res = move arg;`
|
|
|
|
// if `arg` is the only borrow of `cloned` at this point.
|
|
|
|
|
|
|
|
if cannot_move_out || !possible_borrower.only_borrowers(&[arg], cloned, loc) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
cloned
|
|
|
|
} else {
|
|
|
|
// `arg` is a reference as it is `.deref()`ed in the previous block.
|
|
|
|
// Look into the predecessor block and find out the source of deref.
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2019-12-02 13:39:40 -06:00
|
|
|
let ps = mir_read_only.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
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
// receiver of the `deref()` call
|
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-07-21 05:52:14 -05:00
|
|
|
if res.base == mir::PlaceBase::Local(cloned);
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_def_path(cx, pred_fn_def_id, &paths::DEREF_TRAIT_METHOD);
|
|
|
|
if match_type(cx, pred_arg_ty, &paths::PATH_BUF)
|
|
|
|
|| match_type(cx, pred_arg_ty, &paths::OS_STRING);
|
2018-10-23 02:01:45 -05:00
|
|
|
then {
|
|
|
|
pred_arg
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-16 10:50:15 -05:00
|
|
|
let (local, cannot_move_out) =
|
|
|
|
unwrap_or_continue!(find_stmt_assigns_to(cx, mir, pred_arg, true, ps[0]));
|
|
|
|
let loc = mir::Location {
|
|
|
|
block: bb,
|
|
|
|
statement_index: mir.basic_blocks()[bb].statements.len(),
|
|
|
|
};
|
2019-09-30 02:16:09 -05:00
|
|
|
|
|
|
|
// This can be turned into `res = move local` if `arg` and `cloned` are not borrowed
|
|
|
|
// at the last statement:
|
|
|
|
//
|
|
|
|
// ```
|
|
|
|
// pred_arg = &local;
|
|
|
|
// cloned = deref(pred_arg);
|
|
|
|
// arg = &cloned;
|
|
|
|
// StorageDead(pred_arg);
|
|
|
|
// res = to_path_buf(cloned);
|
|
|
|
// ```
|
2019-09-28 06:29:35 -05:00
|
|
|
if cannot_move_out || !possible_borrower.only_borrowers(&[arg, cloned], local, loc) {
|
2018-12-09 05:19:21 -06:00
|
|
|
continue;
|
|
|
|
}
|
2019-09-30 02:16:09 -05:00
|
|
|
|
2018-12-09 05:19:21 -06:00
|
|
|
local
|
2018-10-23 02:01:45 -05:00
|
|
|
};
|
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
// `local` cannot be moved out if it is used later
|
2018-10-23 02:01:45 -05:00
|
|
|
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 {
|
2019-09-30 02:16:09 -05:00
|
|
|
local,
|
2018-10-23 02:01:45 -05:00
|
|
|
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;
|
2019-12-02 02:51:35 -06:00
|
|
|
let scope = terminator.source_info.scope;
|
2019-12-02 04:50:46 -06:00
|
|
|
let node = mir.source_scopes[scope]
|
|
|
|
.local_data
|
|
|
|
.as_ref()
|
|
|
|
.assert_crate_local()
|
|
|
|
.lint_root;
|
2018-10-25 07:08:32 -05:00
|
|
|
|
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-09-09 21:56:34 -05:00
|
|
|
let mut app = Applicability::MaybeIncorrect;
|
2019-09-30 02:16:09 -05:00
|
|
|
|
2019-09-09 21:56:34 -05:00
|
|
|
let mut call_snip = &snip[dot + 1..];
|
2019-09-30 02:16:09 -05:00
|
|
|
// Machine applicable when `call_snip` looks like `foobar()`
|
2019-09-09 21:56:34 -05:00
|
|
|
if call_snip.ends_with("()") {
|
|
|
|
call_snip = call_snip[..call_snip.len()-2].trim();
|
|
|
|
if call_snip.as_bytes().iter().all(|b| b.is_ascii_alphabetic() || *b == b'_') {
|
|
|
|
app = Applicability::MachineApplicable;
|
|
|
|
}
|
|
|
|
}
|
2018-10-23 02:01:45 -05:00
|
|
|
|
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(),
|
2019-09-09 21:56:34 -05:00
|
|
|
app,
|
2018-10-23 02:01:45 -05:00
|
|
|
);
|
|
|
|
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>,
|
2019-05-28 17:41:34 -05:00
|
|
|
mir: &'tcx mir::Body<'tcx>,
|
2018-10-25 08:02:46 -05:00
|
|
|
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! {
|
2019-09-16 10:50:15 -05:00
|
|
|
if let mir::TerminatorKind::Call { func, args, destination, .. } = kind;
|
2018-10-25 08:02:46 -05:00
|
|
|
if args.len() == 1;
|
2019-07-21 05:52:14 -05:00
|
|
|
if let mir::Operand::Move(mir::Place { base: mir::PlaceBase::Local(local), .. }) = &args[0];
|
2019-09-26 04:03:36 -05:00
|
|
|
if let ty::FnDef(def_id, _) = func.ty(&*mir, cx.tcx).kind;
|
2018-10-25 08:02:46 -05:00
|
|
|
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
|
2019-09-16 10:50:15 -05:00
|
|
|
/// ``Some((from, whether `from` cannot be moved out))``.
|
|
|
|
fn find_stmt_assigns_to<'tcx>(
|
2018-12-09 05:19:21 -06:00
|
|
|
cx: &LateContext<'_, 'tcx>,
|
2019-05-28 17:41:34 -05:00
|
|
|
mir: &mir::Body<'tcx>,
|
2019-09-16 10:50:15 -05:00
|
|
|
to_local: mir::Local,
|
2018-10-25 08:02:46 -05:00
|
|
|
by_ref: bool,
|
2019-09-16 10:50:15 -05:00
|
|
|
bb: mir::BasicBlock,
|
2018-12-09 05:19:21 -06:00
|
|
|
) -> Option<(mir::Local, CannotMoveOut)> {
|
2019-09-16 10:50:15 -05:00
|
|
|
let rvalue = mir.basic_blocks()[bb].statements.iter().rev().find_map(|stmt| {
|
|
|
|
if let mir::StatementKind::Assign(box (
|
|
|
|
mir::Place {
|
|
|
|
base: mir::PlaceBase::Local(local),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
v,
|
|
|
|
)) = &stmt.kind
|
|
|
|
{
|
|
|
|
return if *local == to_local { Some(v) } else { None };
|
|
|
|
}
|
2018-10-25 08:02:46 -05:00
|
|
|
|
2019-09-16 10:50:15 -05:00
|
|
|
None
|
|
|
|
})?;
|
|
|
|
|
|
|
|
match (by_ref, &*rvalue) {
|
|
|
|
(true, mir::Rvalue::Ref(_, _, place)) | (false, mir::Rvalue::Use(mir::Operand::Copy(place))) => {
|
|
|
|
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>,
|
2019-05-28 17:41:34 -05:00
|
|
|
mir: &mir::Body<'tcx>,
|
2019-07-21 05:52:14 -05:00
|
|
|
place: &mir::Place<'tcx>,
|
2018-12-09 05:19:21 -06:00
|
|
|
) -> Option<(mir::Local, CannotMoveOut)> {
|
2019-07-21 05:52:14 -05:00
|
|
|
use rustc::mir::PlaceRef;
|
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;
|
|
|
|
|
2019-07-21 05:52:14 -05:00
|
|
|
let PlaceRef {
|
|
|
|
base: place_base,
|
|
|
|
mut projection,
|
2019-07-23 19:20:36 -05:00
|
|
|
} = place.as_ref();
|
2019-09-16 10:50:15 -05:00
|
|
|
if let mir::PlaceBase::Local(local) = place_base {
|
2019-09-13 20:49:11 -05:00
|
|
|
while let [base @ .., elem] = projection {
|
2019-07-21 05:52:14 -05:00
|
|
|
projection = base;
|
2019-09-16 10:50:15 -05:00
|
|
|
deref |= matches!(elem, mir::ProjectionElem::Deref);
|
|
|
|
field |= matches!(elem, mir::ProjectionElem::Field(..))
|
|
|
|
&& has_drop(
|
|
|
|
cx,
|
|
|
|
mir::Place::ty_from(place_base, projection, &mir.local_decls, cx.tcx).ty,
|
|
|
|
);
|
2018-12-09 05:19:21 -06:00
|
|
|
}
|
2019-07-21 05:52:14 -05:00
|
|
|
|
|
|
|
Some((*local, deref || field))
|
|
|
|
} else {
|
|
|
|
None
|
2018-12-09 05:19:21 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
2019-04-30 00:31:39 -05:00
|
|
|
self.visit_statement(statement, mir::Location { block, statement_index });
|
2018-10-25 06:33:40 -05:00
|
|
|
|
|
|
|
// Once flagged, skip remaining statements
|
|
|
|
if self.used_other_than_drop {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-25 11:27:28 -05:00
|
|
|
self.visit_terminator(
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-04-30 00:31:39 -05:00
|
|
|
fn visit_local(&mut self, local: &mir::Local, ctx: PlaceContext, _: mir::Location) {
|
2018-10-23 02:01:45 -05:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-16 10:50:15 -05:00
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
/// Determines liveness of each local purely based on `StorageLive`/`Dead`.
|
2019-09-16 10:50:15 -05:00
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
struct MaybeStorageLive<'a, 'tcx> {
|
|
|
|
body: &'a mir::Body<'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> MaybeStorageLive<'a, 'tcx> {
|
|
|
|
fn new(body: &'a mir::Body<'tcx>) -> Self {
|
|
|
|
MaybeStorageLive { body }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> BitDenotation<'tcx> for MaybeStorageLive<'a, 'tcx> {
|
|
|
|
type Idx = mir::Local;
|
|
|
|
fn name() -> &'static str {
|
|
|
|
"maybe_storage_live"
|
|
|
|
}
|
|
|
|
fn bits_per_block(&self) -> usize {
|
|
|
|
self.body.local_decls.len()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn start_block_effect(&self, on_entry: &mut BitSet<mir::Local>) {
|
|
|
|
for arg in self.body.args_iter() {
|
|
|
|
on_entry.insert(arg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn statement_effect(&self, trans: &mut GenKillSet<mir::Local>, loc: mir::Location) {
|
|
|
|
let stmt = &self.body[loc.block].statements[loc.statement_index];
|
|
|
|
|
|
|
|
match stmt.kind {
|
|
|
|
mir::StatementKind::StorageLive(l) => trans.gen(l),
|
|
|
|
mir::StatementKind::StorageDead(l) => trans.kill(l),
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn terminator_effect(&self, _trans: &mut GenKillSet<mir::Local>, _loc: mir::Location) {}
|
|
|
|
|
|
|
|
fn propagate_call_return(
|
|
|
|
&self,
|
|
|
|
_in_out: &mut BitSet<mir::Local>,
|
|
|
|
_call_bb: mir::BasicBlock,
|
|
|
|
_dest_bb: mir::BasicBlock,
|
|
|
|
_dest_place: &mir::Place<'tcx>,
|
|
|
|
) {
|
|
|
|
// Nothing to do when a call returns successfully
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> BottomValue for MaybeStorageLive<'a, 'tcx> {
|
|
|
|
/// bottom = dead
|
|
|
|
const BOTTOM_VALUE: bool = false;
|
|
|
|
}
|
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
/// Collects the possible borrowers of each local.
|
|
|
|
/// For example, `b = &a; c = &a;` will make `b` and (transitively) `c`
|
|
|
|
/// possible borrowers of `a`.
|
2019-09-16 10:50:15 -05:00
|
|
|
struct PossibleBorrowerVisitor<'a, 'tcx> {
|
|
|
|
possible_borrower: TransitiveRelation<mir::Local>,
|
|
|
|
body: &'a mir::Body<'tcx>,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> PossibleBorrowerVisitor<'a, 'tcx> {
|
|
|
|
fn new(cx: &'a LateContext<'a, 'tcx>, body: &'a mir::Body<'tcx>) -> Self {
|
|
|
|
Self {
|
|
|
|
possible_borrower: TransitiveRelation::default(),
|
|
|
|
cx,
|
|
|
|
body,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn into_map(
|
|
|
|
self,
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
maybe_live: DataflowResults<'tcx, MaybeStorageLive<'a, 'tcx>>,
|
|
|
|
) -> PossibleBorrower<'a, 'tcx> {
|
|
|
|
let mut map = FxHashMap::default();
|
|
|
|
for row in (1..self.body.local_decls.len()).map(mir::Local::from_usize) {
|
|
|
|
if is_copy(cx, self.body.local_decls[row].ty) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let borrowers = self.possible_borrower.reachable_from(&row);
|
|
|
|
if !borrowers.is_empty() {
|
|
|
|
let mut bs = HybridBitSet::new_empty(self.body.local_decls.len());
|
|
|
|
for &c in borrowers {
|
|
|
|
if c != mir::Local::from_usize(0) {
|
|
|
|
bs.insert(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bs.is_empty() {
|
|
|
|
map.insert(row, bs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let bs = BitSet::new_empty(self.body.local_decls.len());
|
|
|
|
PossibleBorrower {
|
|
|
|
map,
|
|
|
|
maybe_live: DataflowResultsCursor::new(maybe_live, self.body),
|
|
|
|
bitset: (bs.clone(), bs),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> mir::visit::Visitor<'tcx> for PossibleBorrowerVisitor<'a, 'tcx> {
|
|
|
|
fn visit_assign(&mut self, place: &mir::Place<'tcx>, rvalue: &mir::Rvalue<'_>, _location: mir::Location) {
|
|
|
|
if let mir::PlaceBase::Local(lhs) = place.base {
|
|
|
|
match rvalue {
|
|
|
|
mir::Rvalue::Ref(_, _, borrowed) => {
|
|
|
|
if let mir::PlaceBase::Local(borrowed_local) = borrowed.base {
|
|
|
|
self.possible_borrower.add(borrowed_local, lhs);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
other => {
|
|
|
|
if !ContainsRegion.visit_ty(place.ty(&self.body.local_decls, self.cx.tcx).ty) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
rvalue_locals(other, |rhs| {
|
|
|
|
if lhs != rhs {
|
|
|
|
self.possible_borrower.add(rhs, lhs);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn visit_terminator(&mut self, terminator: &mir::Terminator<'_>, _loc: mir::Location) {
|
|
|
|
if let mir::TerminatorKind::Call {
|
|
|
|
args,
|
|
|
|
destination:
|
|
|
|
Some((
|
|
|
|
mir::Place {
|
|
|
|
base: mir::PlaceBase::Local(dest),
|
|
|
|
..
|
|
|
|
},
|
|
|
|
_,
|
|
|
|
)),
|
|
|
|
..
|
|
|
|
} = &terminator.kind
|
|
|
|
{
|
2019-09-30 02:16:09 -05:00
|
|
|
// If the call returns something with lifetimes,
|
2019-09-16 10:50:15 -05:00
|
|
|
// let's conservatively assume the returned value contains lifetime of all the arguments.
|
2019-09-30 02:16:09 -05:00
|
|
|
// For example, given `let y: Foo<'a> = foo(x)`, `y` is considered to be a possible borrower of `x`.
|
|
|
|
if !ContainsRegion.visit_ty(&self.body.local_decls[*dest].ty) {
|
2019-09-16 10:50:15 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for op in args {
|
|
|
|
match op {
|
|
|
|
mir::Operand::Copy(p) | mir::Operand::Move(p) => {
|
|
|
|
if let mir::PlaceBase::Local(arg) = p.base {
|
|
|
|
self.possible_borrower.add(arg, *dest);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ContainsRegion;
|
|
|
|
|
|
|
|
impl TypeVisitor<'_> for ContainsRegion {
|
|
|
|
fn visit_region(&mut self, _: ty::Region<'_>) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn rvalue_locals(rvalue: &mir::Rvalue<'_>, mut visit: impl FnMut(mir::Local)) {
|
|
|
|
use rustc::mir::Rvalue::*;
|
|
|
|
|
|
|
|
let mut visit_op = |op: &mir::Operand<'_>| match op {
|
|
|
|
mir::Operand::Copy(p) | mir::Operand::Move(p) => {
|
|
|
|
if let mir::PlaceBase::Local(l) = p.base {
|
|
|
|
visit(l)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
};
|
|
|
|
|
|
|
|
match rvalue {
|
|
|
|
Use(op) | Repeat(op, _) | Cast(_, op, _) | UnaryOp(_, op) => visit_op(op),
|
|
|
|
Aggregate(_, ops) => ops.iter().for_each(visit_op),
|
|
|
|
BinaryOp(_, lhs, rhs) | CheckedBinaryOp(_, lhs, rhs) => {
|
|
|
|
visit_op(lhs);
|
|
|
|
visit_op(rhs);
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-30 02:16:09 -05:00
|
|
|
/// Result of `PossibleBorrowerVisitor`.
|
2019-09-16 10:50:15 -05:00
|
|
|
struct PossibleBorrower<'a, 'tcx> {
|
2019-09-30 02:16:09 -05:00
|
|
|
/// Mapping `Local -> its possible borrowers`
|
2019-09-16 10:50:15 -05:00
|
|
|
map: FxHashMap<mir::Local, HybridBitSet<mir::Local>>,
|
2019-09-18 00:56:30 -05:00
|
|
|
maybe_live: DataflowResultsCursor<'a, 'tcx, MaybeStorageLive<'a, 'tcx>>,
|
2019-09-28 06:29:35 -05:00
|
|
|
// Caches to avoid allocation of `BitSet` on every query
|
2019-09-16 10:50:15 -05:00
|
|
|
bitset: (BitSet<mir::Local>, BitSet<mir::Local>),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PossibleBorrower<'_, '_> {
|
2019-09-30 02:16:09 -05:00
|
|
|
/// Returns true if the set of borrowers of `borrowed` living at `at` matches with `borrowers`.
|
2019-09-28 06:29:35 -05:00
|
|
|
fn only_borrowers(&mut self, borrowers: &[mir::Local], borrowed: mir::Local, at: mir::Location) -> bool {
|
2019-09-16 10:50:15 -05:00
|
|
|
self.maybe_live.seek(at);
|
|
|
|
|
|
|
|
self.bitset.0.clear();
|
|
|
|
let maybe_live = &mut self.maybe_live;
|
2019-09-28 06:29:35 -05:00
|
|
|
if let Some(bitset) = self.map.get(&borrowed) {
|
|
|
|
for b in bitset.iter().filter(move |b| maybe_live.contains(*b)) {
|
|
|
|
self.bitset.0.insert(b);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return false;
|
2019-09-16 10:50:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
self.bitset.1.clear();
|
|
|
|
for b in borrowers {
|
|
|
|
self.bitset.1.insert(*b);
|
|
|
|
}
|
|
|
|
|
2019-09-28 06:29:35 -05:00
|
|
|
self.bitset.0 == self.bitset.1
|
2019-09-16 10:50:15 -05:00
|
|
|
}
|
|
|
|
}
|