2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::{span_lint_hir, span_lint_hir_and_then};
|
2022-10-23 08:18:45 -05:00
|
|
|
use clippy_utils::mir::{visit_local_usage, LocalUsage, PossibleBorrowerMap};
|
2024-08-24 16:34:45 -05:00
|
|
|
use clippy_utils::source::SpanRangeExt;
|
2022-07-05 11:56:16 -05:00
|
|
|
use clippy_utils::ty::{has_drop, is_copy, is_type_diagnostic_item, is_type_lang_item, walk_ptrs_ty_depth};
|
2024-09-18 15:21:17 -05:00
|
|
|
use clippy_utils::fn_has_unsatisfiable_preds;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-09 01:13:22 -06:00
|
|
|
use rustc_hir::intravisit::FnKind;
|
2023-01-22 12:00:33 -06:00
|
|
|
use rustc_hir::{def_id, Body, FnDecl, LangItem};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2022-10-23 08:18:45 -05:00
|
|
|
use rustc_middle::mir;
|
|
|
|
use rustc_middle::ty::{self, Ty};
|
2023-12-01 11:21:58 -06:00
|
|
|
use rustc_session::declare_lint_pass;
|
2023-01-22 12:00:33 -06:00
|
|
|
use rustc_span::def_id::LocalDefId;
|
2023-11-01 22:10:12 -05:00
|
|
|
use rustc_span::{sym, 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! {
|
2021-07-29 05:16:06 -05: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.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// It is not always possible for the compiler to eliminate useless
|
2019-03-05 10:50:33 -06:00
|
|
|
/// allocations and deallocations generated by redundant `clone()`s.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### 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
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
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
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.32.0"]
|
2018-10-23 02:01:45 -05:00
|
|
|
pub REDUNDANT_CLONE,
|
2023-07-02 07:35:19 -05:00
|
|
|
nursery,
|
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
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for RedundantClone {
|
2022-05-21 06:24:00 -05:00
|
|
|
#[expect(clippy::too_many_lines)]
|
2018-10-23 02:01:45 -05:00
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
2020-06-25 15:41:36 -05:00
|
|
|
cx: &LateContext<'tcx>,
|
2018-10-23 02:01:45 -05:00
|
|
|
_: FnKind<'tcx>,
|
2019-12-29 22:02:10 -06:00
|
|
|
_: &'tcx FnDecl<'_>,
|
2023-01-22 12:00:33 -06:00
|
|
|
_: &'tcx Body<'_>,
|
2018-10-23 02:01:45 -05:00
|
|
|
_: Span,
|
2023-01-22 12:00:33 -06:00
|
|
|
def_id: LocalDefId,
|
2018-10-23 02:01:45 -05:00
|
|
|
) {
|
2020-03-09 23:17:15 -05:00
|
|
|
// Building MIR for `fn`s with unsatisfiable preds results in ICE.
|
2020-04-11 03:01:23 -05:00
|
|
|
if fn_has_unsatisfiable_preds(cx, def_id.to_def_id()) {
|
2020-03-09 23:17:15 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-04-11 03:01:23 -05:00
|
|
|
let mir = cx.tcx.optimized_mir(def_id.to_def_id());
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2022-10-23 08:18:45 -05:00
|
|
|
let mut possible_borrower = PossibleBorrowerMap::new(cx, mir);
|
2019-09-16 10:50:15 -05:00
|
|
|
|
2022-07-04 19:00:00 -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
|
2022-05-16 19:41:01 -05:00
|
|
|
if terminator.successors().any(|s| s == bb) {
|
2018-10-23 02:01:45 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-12 10:31:09 -05:00
|
|
|
let (fn_def_id, arg, arg_ty, clone_ret) =
|
|
|
|
unwrap_or_continue!(is_call_with_ref_arg(cx, mir, &terminator.kind));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2024-08-08 12:13:50 -05:00
|
|
|
let from_borrow = cx.tcx.lang_items().get(LangItem::CloneFn) == Some(fn_def_id)
|
2023-09-26 22:56:38 -05:00
|
|
|
|| cx.tcx.is_diagnostic_item(sym::to_owned_method, fn_def_id)
|
|
|
|
|| (cx.tcx.is_diagnostic_item(sym::to_string_method, fn_def_id)
|
2022-07-05 11:56:16 -05:00
|
|
|
&& is_type_lang_item(cx, arg_ty, LangItem::String));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
let from_deref = !from_borrow
|
2024-09-18 15:21:17 -05:00
|
|
|
&& (cx.tcx.is_diagnostic_item(sym::path_to_pathbuf, fn_def_id)
|
|
|
|
|| cx.tcx.is_diagnostic_item(sym::os_str_to_os_string, fn_def_id));
|
2018-10-23 02:01:45 -05:00
|
|
|
|
|
|
|
if !from_borrow && !from_deref {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
if let ty::Adt(def, _) = arg_ty.kind() {
|
2022-02-26 07:26:21 -06:00
|
|
|
if def.is_manually_drop() {
|
2020-07-26 14:07:07 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-01 11:17:38 -05:00
|
|
|
// `{ arg = &cloned; clone(move arg); }` or `{ arg = &cloned; to_path_buf(arg); }`
|
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(),
|
|
|
|
};
|
|
|
|
|
2020-03-12 10:31:09 -05:00
|
|
|
// `Local` to be cloned, and a local of `clone` call's destination
|
|
|
|
let (local, ret_local) = if from_borrow {
|
2019-09-30 02:16:09 -05:00
|
|
|
// `res = clone(arg)` can be turned into `res = move arg;`
|
|
|
|
// if `arg` is the only borrow of `cloned` at this point.
|
|
|
|
|
2023-01-12 12:48:13 -06:00
|
|
|
if cannot_move_out || !possible_borrower.only_borrowers(&[arg], cloned, loc) {
|
2019-09-30 02:16:09 -05:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-03-12 10:31:09 -05:00
|
|
|
(cloned, clone_ret)
|
2019-09-30 02:16:09 -05:00
|
|
|
} 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
|
|
|
|
2022-07-04 19:00:00 -05:00
|
|
|
let ps = &mir.basic_blocks.predecessors()[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
|
2023-11-16 12:13:24 -06:00
|
|
|
let (pred_arg, deref_clone_ret) = if let Some((pred_fn_def_id, pred_arg, pred_arg_ty, res)) =
|
|
|
|
is_call_with_ref_arg(cx, mir, &pred_terminator.kind)
|
|
|
|
&& res == cloned
|
|
|
|
&& cx.tcx.is_diagnostic_item(sym::deref_method, pred_fn_def_id)
|
|
|
|
&& (is_type_diagnostic_item(cx, pred_arg_ty, sym::PathBuf)
|
|
|
|
|| is_type_diagnostic_item(cx, pred_arg_ty, sym::OsString))
|
|
|
|
{
|
|
|
|
(pred_arg, res)
|
|
|
|
} else {
|
|
|
|
continue;
|
2018-10-23 02:01:45 -05:00
|
|
|
};
|
|
|
|
|
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,
|
2022-07-04 19:00:00 -05:00
|
|
|
statement_index: mir.basic_blocks[bb].statements.len(),
|
2019-09-16 10:50:15 -05:00
|
|
|
};
|
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);
|
|
|
|
// ```
|
2023-01-12 12:48:13 -06: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
|
|
|
|
2020-03-12 10:31:09 -05:00
|
|
|
(local, deref_clone_ret)
|
2018-10-23 02:01:45 -05:00
|
|
|
};
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
let clone_usage = if local == ret_local {
|
|
|
|
CloneUsage {
|
|
|
|
cloned_used: false,
|
|
|
|
cloned_consume_or_mutate_loc: None,
|
|
|
|
clone_consumed_or_mutated: true,
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let clone_usage = visit_clone_usage(local, ret_local, mir, bb);
|
|
|
|
if clone_usage.cloned_used && clone_usage.clone_consumed_or_mutated {
|
|
|
|
// cloned value is used, and the clone is modified or moved
|
|
|
|
continue;
|
|
|
|
} else if let Some(loc) = clone_usage.cloned_consume_or_mutate_loc {
|
|
|
|
// cloned value is mutated, and the clone is alive.
|
2022-01-13 06:18:19 -06:00
|
|
|
if possible_borrower.local_is_alive_at(ret_local, loc) {
|
2021-04-08 10:50:13 -05:00
|
|
|
continue;
|
2020-03-12 10:31:09 -05:00
|
|
|
}
|
2021-04-08 10:50:13 -05:00
|
|
|
}
|
|
|
|
clone_usage
|
|
|
|
};
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
let span = terminator.source_info.span;
|
|
|
|
let scope = terminator.source_info.scope;
|
|
|
|
let node = mir.source_scopes[scope]
|
|
|
|
.local_data
|
|
|
|
.as_ref()
|
|
|
|
.assert_crate_local()
|
|
|
|
.lint_root;
|
|
|
|
|
2024-08-24 16:34:45 -05:00
|
|
|
if let Some(snip) = span.get_source_text(cx)
|
2023-11-16 12:13:24 -06:00
|
|
|
&& let Some(dot) = snip.rfind('.')
|
|
|
|
{
|
|
|
|
let sugg_span = span.with_lo(span.lo() + BytePos(u32::try_from(dot).unwrap()));
|
|
|
|
let mut app = Applicability::MaybeIncorrect;
|
|
|
|
|
|
|
|
let call_snip = &snip[dot + 1..];
|
|
|
|
// Machine applicable when `call_snip` looks like `foobar()`
|
|
|
|
if let Some(call_snip) = call_snip.strip_suffix("()").map(str::trim) {
|
|
|
|
if call_snip
|
|
|
|
.as_bytes()
|
|
|
|
.iter()
|
|
|
|
.all(|b| b.is_ascii_alphabetic() || *b == b'_')
|
|
|
|
{
|
|
|
|
app = Applicability::MachineApplicable;
|
2021-04-08 10:50:13 -05:00
|
|
|
}
|
2023-11-16 12:13:24 -06:00
|
|
|
}
|
2018-10-23 02:01:45 -05:00
|
|
|
|
2023-11-16 12:13:24 -06:00
|
|
|
span_lint_hir_and_then(cx, REDUNDANT_CLONE, node, sugg_span, "redundant clone", |diag| {
|
|
|
|
diag.span_suggestion(sugg_span, "remove this", "", app);
|
|
|
|
if clone_usage.cloned_used {
|
|
|
|
diag.span_note(span, "cloned value is neither consumed nor mutated");
|
|
|
|
} else {
|
|
|
|
diag.span_note(
|
|
|
|
span.with_hi(span.lo() + BytePos(u32::try_from(dot).unwrap())),
|
|
|
|
"this value is dropped without further use",
|
2021-04-08 10:50:13 -05:00
|
|
|
);
|
2023-11-16 12:13:24 -06:00
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
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>(
|
2020-06-25 15:41:36 -05:00
|
|
|
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>,
|
2020-03-12 10:31:09 -05:00
|
|
|
) -> Option<(def_id::DefId, mir::Local, Ty<'tcx>, mir::Local)> {
|
2023-11-16 12:13:24 -06:00
|
|
|
if let mir::TerminatorKind::Call {
|
|
|
|
func,
|
|
|
|
args,
|
|
|
|
destination,
|
|
|
|
..
|
|
|
|
} = kind
|
|
|
|
&& args.len() == 1
|
2024-01-12 01:21:42 -06:00
|
|
|
&& let mir::Operand::Move(mir::Place { local, .. }) = &args[0].node
|
2023-11-16 12:13:24 -06:00
|
|
|
&& let ty::FnDef(def_id, _) = *func.ty(mir, cx.tcx).kind()
|
2024-01-12 01:21:42 -06:00
|
|
|
&& let (inner_ty, 1) = walk_ptrs_ty_depth(args[0].node.ty(mir, cx.tcx))
|
2023-11-16 12:13:24 -06:00
|
|
|
&& !is_copy(cx, inner_ty)
|
|
|
|
{
|
|
|
|
Some((def_id, *local, inner_ty, destination.as_local()?))
|
|
|
|
} else {
|
|
|
|
None
|
2018-10-25 08:02:46 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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>(
|
2020-06-25 15:41:36 -05: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)> {
|
2022-07-04 19:00:00 -05:00
|
|
|
let rvalue = mir.basic_blocks[bb].statements.iter().rev().find_map(|stmt| {
|
2020-01-11 12:41:54 -06:00
|
|
|
if let mir::StatementKind::Assign(box (mir::Place { local, .. }, v)) = &stmt.kind {
|
2019-09-16 10:50:15 -05:00
|
|
|
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
|
|
|
|
})?;
|
|
|
|
|
2022-06-04 06:34:07 -05:00
|
|
|
match (by_ref, rvalue) {
|
2019-09-16 10:50:15 -05:00
|
|
|
(true, mir::Rvalue::Ref(_, _, place)) | (false, mir::Rvalue::Use(mir::Operand::Copy(place))) => {
|
2020-11-23 06:51:04 -06:00
|
|
|
Some(base_local_and_movability(cx, mir, *place))
|
2019-09-16 10:50:15 -05:00
|
|
|
},
|
2020-01-07 22:59:58 -06:00
|
|
|
(false, mir::Rvalue::Ref(_, _, place)) => {
|
|
|
|
if let [mir::ProjectionElem::Deref] = place.as_ref().projection {
|
2020-11-23 06:51:04 -06:00
|
|
|
Some(base_local_and_movability(cx, mir, *place))
|
2020-01-07 22:59:58 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
2019-09-16 10:50:15 -05:00
|
|
|
_ => 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>(
|
2020-06-25 15:41:36 -05:00
|
|
|
cx: &LateContext<'tcx>,
|
2019-05-28 17:41:34 -05:00
|
|
|
mir: &mir::Body<'tcx>,
|
2020-01-11 14:20:18 -06:00
|
|
|
place: mir::Place<'tcx>,
|
2020-11-23 06:51:04 -06:00
|
|
|
) -> (mir::Local, CannotMoveOut) {
|
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;
|
2020-04-12 04:55:47 -05:00
|
|
|
// If projection is a slice index then clone can be removed only if the
|
|
|
|
// underlying type implements Copy
|
|
|
|
let mut slice = false;
|
2018-12-09 05:19:21 -06:00
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
for (base, elem) in place.as_ref().iter_projections() {
|
|
|
|
let base_ty = base.ty(&mir.local_decls, cx.tcx).ty;
|
2020-01-11 12:41:54 -06:00
|
|
|
deref |= matches!(elem, mir::ProjectionElem::Deref);
|
2023-07-02 07:35:19 -05:00
|
|
|
field |= matches!(elem, mir::ProjectionElem::Field(..)) && has_drop(cx, base_ty);
|
|
|
|
slice |= matches!(elem, mir::ProjectionElem::Index(..)) && !is_copy(cx, base_ty);
|
2018-12-09 05:19:21 -06:00
|
|
|
}
|
2020-01-11 12:41:54 -06:00
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
(place.local, deref || field || slice)
|
2018-12-09 05:19:21 -06:00
|
|
|
}
|
|
|
|
|
2021-04-08 10:50:13 -05:00
|
|
|
#[derive(Default)]
|
|
|
|
struct CloneUsage {
|
|
|
|
/// Whether the cloned value is used after the clone.
|
|
|
|
cloned_used: bool,
|
|
|
|
/// The first location where the cloned value is consumed or mutated, if any.
|
|
|
|
cloned_consume_or_mutate_loc: Option<mir::Location>,
|
|
|
|
/// Whether the clone value is mutated.
|
|
|
|
clone_consumed_or_mutated: bool,
|
2018-10-23 02:01:45 -05:00
|
|
|
}
|
2019-09-16 10:50:15 -05:00
|
|
|
|
2022-10-23 08:18:45 -05:00
|
|
|
fn visit_clone_usage(cloned: mir::Local, clone: mir::Local, mir: &mir::Body<'_>, bb: mir::BasicBlock) -> CloneUsage {
|
|
|
|
if let Some((
|
|
|
|
LocalUsage {
|
|
|
|
local_use_locs: cloned_use_locs,
|
|
|
|
local_consume_or_mutate_locs: cloned_consume_or_mutate_locs,
|
2021-08-08 09:49:13 -05:00
|
|
|
},
|
2022-10-23 08:18:45 -05:00
|
|
|
LocalUsage {
|
|
|
|
local_use_locs: _,
|
|
|
|
local_consume_or_mutate_locs: clone_consume_or_mutate_locs,
|
|
|
|
},
|
|
|
|
)) = visit_local_usage(
|
|
|
|
&[cloned, clone],
|
|
|
|
mir,
|
|
|
|
mir::Location {
|
|
|
|
block: bb,
|
|
|
|
statement_index: mir.basic_blocks[bb].statements.len(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.map(|mut vec| (vec.remove(0), vec.remove(0)))
|
|
|
|
{
|
|
|
|
CloneUsage {
|
|
|
|
cloned_used: !cloned_use_locs.is_empty(),
|
|
|
|
cloned_consume_or_mutate_loc: cloned_consume_or_mutate_locs.first().copied(),
|
|
|
|
// Consider non-temporary clones consumed.
|
|
|
|
// TODO: Actually check for mutation of non-temporaries.
|
|
|
|
clone_consumed_or_mutated: mir.local_kind(clone) != mir::LocalKind::Temp
|
|
|
|
|| !clone_consume_or_mutate_locs.is_empty(),
|
2019-09-16 10:50:15 -05:00
|
|
|
}
|
2022-10-23 08:18:45 -05:00
|
|
|
} else {
|
|
|
|
CloneUsage {
|
|
|
|
cloned_used: true,
|
|
|
|
cloned_consume_or_mutate_loc: None,
|
|
|
|
clone_consumed_or_mutated: true,
|
2022-03-14 06:02:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|