Skip to content

Commit c6cc160

Browse files
committed
needless_borrows_for_generic_args: Fix for &mut
This commit fixes a bug introduced in #12706, where the behavior of the lint has been changed, to avoid suggestions that introduce a move. The motivation in the commit message is quite poor (if the detection for significant drops is not sufficient because it's not transitive, the proper fix would be to make it transitive). However, #12454, the linked issue, provides a good reason for the change — if the value being borrowed is bound to a variable, then moving it will only introduce friction into future refactorings. Thus #12706 changes the logic so that the lint triggers if the value being borrowed is Copy, or is the result of a function call, simplifying the logic to the point where analysing "is this the only use of this value" isn't necessary. However, said PR also introduces an undocumented carveout, where referents that themselves are mutable references are treated as Copy, to catch some cases that we do want to lint against. However, that is not sound — it's possible to consume a mutable reference by moving it. To avoid emitting false suggestions, this PR reintroduces the referent_used_exactly_once logic and runs that check for referents that are themselves mutable references. Thinking about the code shape of &mut x, where x: &mut T, raises the point that while removing the &mut outright won't work, the extra indirection is still undesirable, and perhaps instead we should suggest reborrowing: &mut *x. That, however, is left as possible future work. Fixes #12856
1 parent 10d1f32 commit c6cc160

File tree

3 files changed

+59
-5
lines changed

3 files changed

+59
-5
lines changed

clippy_lints/src/needless_borrows_for_generic_args.rs

+43-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use clippy_config::msrvs::{self, Msrv};
22
use clippy_utils::diagnostics::span_lint_and_then;
3-
use clippy_utils::mir::PossibleBorrowerMap;
3+
use clippy_utils::mir::{enclosing_mir, expr_local, local_assignments, used_exactly_once, PossibleBorrowerMap};
44
use clippy_utils::source::snippet_with_context;
55
use clippy_utils::ty::{implements_trait, is_copy};
66
use clippy_utils::{expr_use_ctxt, peel_n_hir_expr_refs, DefinedTy, ExprUseNode};
@@ -11,6 +11,7 @@ use rustc_hir::{Body, Expr, ExprKind, Mutability, Path, QPath};
1111
use rustc_index::bit_set::BitSet;
1212
use rustc_infer::infer::TyCtxtInferExt;
1313
use rustc_lint::{LateContext, LateLintPass};
14+
use rustc_middle::mir::{Rvalue, StatementKind};
1415
use rustc_middle::ty::{
1516
self, ClauseKind, EarlyBinder, FnSig, GenericArg, GenericArgKind, ParamTy, ProjectionPredicate, Ty,
1617
};
@@ -105,6 +106,7 @@ impl<'tcx> LateLintPass<'tcx> for NeedlessBorrowsForGenericArgs<'tcx> {
105106
}
106107
&& let count = needless_borrow_count(
107108
cx,
109+
&mut self.possible_borrowers,
108110
fn_id,
109111
cx.typeck_results().node_args(hir_id),
110112
i,
@@ -153,9 +155,14 @@ fn path_has_args(p: &QPath<'_>) -> bool {
153155
/// The following constraints will be checked:
154156
/// * The borrowed expression meets all the generic type's constraints.
155157
/// * The generic type appears only once in the functions signature.
156-
/// * The borrowed value is Copy itself OR not a variable (created by a function call)
158+
/// * The borrowed value is:
159+
/// - `Copy` itself, or
160+
/// - the only use of a mutable reference, or
161+
/// - not a variable (created by a function call)
162+
#[expect(clippy::too_many_arguments)]
157163
fn needless_borrow_count<'tcx>(
158164
cx: &LateContext<'tcx>,
165+
possible_borrowers: &mut Vec<(LocalDefId, PossibleBorrowerMap<'tcx, 'tcx>)>,
159166
fn_id: DefId,
160167
callee_args: ty::GenericArgsRef<'tcx>,
161168
arg_index: usize,
@@ -230,9 +237,9 @@ fn needless_borrow_count<'tcx>(
230237

231238
let referent_ty = cx.typeck_results().expr_ty(referent);
232239

233-
if (!is_copy(cx, referent_ty) && !referent_ty.is_ref())
234-
&& let ExprKind::AddrOf(_, _, inner) = reference.kind
235-
&& !matches!(inner.kind, ExprKind::Call(..) | ExprKind::MethodCall(..))
240+
if !(is_copy(cx, referent_ty)
241+
|| referent_ty.is_ref() && referent_used_exactly_once(cx, possible_borrowers, reference)
242+
|| matches!(referent.kind, ExprKind::Call(..) | ExprKind::MethodCall(..)))
236243
{
237244
return false;
238245
}
@@ -335,6 +342,37 @@ fn is_mixed_projection_predicate<'tcx>(
335342
}
336343
}
337344

345+
fn referent_used_exactly_once<'tcx>(
346+
cx: &LateContext<'tcx>,
347+
possible_borrowers: &mut Vec<(LocalDefId, PossibleBorrowerMap<'tcx, 'tcx>)>,
348+
reference: &Expr<'tcx>,
349+
) -> bool {
350+
if let Some(mir) = enclosing_mir(cx.tcx, reference.hir_id)
351+
&& let Some(local) = expr_local(cx.tcx, reference)
352+
&& let [location] = *local_assignments(mir, local).as_slice()
353+
&& let block_data = &mir.basic_blocks[location.block]
354+
&& let Some(statement) = block_data.statements.get(location.statement_index)
355+
&& let StatementKind::Assign(box (_, Rvalue::Ref(_, _, place))) = statement.kind
356+
&& !place.is_indirect_first_projection()
357+
{
358+
let body_owner_local_def_id = cx.tcx.hir().enclosing_body_owner(reference.hir_id);
359+
if possible_borrowers
360+
.last()
361+
.map_or(true, |&(local_def_id, _)| local_def_id != body_owner_local_def_id)
362+
{
363+
possible_borrowers.push((body_owner_local_def_id, PossibleBorrowerMap::new(cx, mir)));
364+
}
365+
let possible_borrower = &mut possible_borrowers.last_mut().unwrap().1;
366+
// If `only_borrowers` were used here, the `copyable_iterator::warn` test would fail. The reason is
367+
// that `PossibleBorrowerVisitor::visit_terminator` considers `place.local` a possible borrower of
368+
// itself. See the comment in that method for an explanation as to why.
369+
possible_borrower.bounded_borrowers(&[local], &[local, place.local], place.local, location)
370+
&& used_exactly_once(mir, place.local).unwrap_or(false)
371+
} else {
372+
false
373+
}
374+
}
375+
338376
// Iteratively replaces `param_ty` with `new_ty` in `args`, and similarly for each resulting
339377
// projected type that is a type parameter. Returns `false` if replacing the types would have an
340378
// effect on the function signature beyond substituting `new_ty` for `param_ty`.

tests/ui/needless_borrows_for_generic_args.fixed

+8
Original file line numberDiff line numberDiff line change
@@ -333,4 +333,12 @@ fn main() {
333333
f(&y); // Don't lint
334334
f("".to_owned()); // Lint
335335
}
336+
{
337+
fn takes_writer<T: std::io::Write>(_: T) {}
338+
339+
fn f(mut buffer: &mut Vec<u8>) {
340+
takes_writer(&mut buffer); // Don't lint, would make buffer unavailable later
341+
buffer.extend(b"\n");
342+
}
343+
}
336344
}

tests/ui/needless_borrows_for_generic_args.rs

+8
Original file line numberDiff line numberDiff line change
@@ -333,4 +333,12 @@ fn main() {
333333
f(&y); // Don't lint
334334
f(&"".to_owned()); // Lint
335335
}
336+
{
337+
fn takes_writer<T: std::io::Write>(_: T) {}
338+
339+
fn f(mut buffer: &mut Vec<u8>) {
340+
takes_writer(&mut buffer); // Don't lint, would make buffer unavailable later
341+
buffer.extend(b"\n");
342+
}
343+
}
336344
}

0 commit comments

Comments
 (0)