Skip to content

Commit 6ec7359

Browse files
committed
Auto merge of #8699 - Jarcho:vec_init_then_push_7071, r=dswij,xFrednet
Don't lint `vec_init_then_push` when further extended fixes #7071 This will still lint when a larger number of pushes are done (four currently). The exact number could be debated, but this is more readable then a sequence of pushes so it shouldn't be too large. changelog: Don't lint `vec_init_then_push` when further extended. changelog: Remove `mut` binding from `vec_init_then_push` when possible.
2 parents 1c0a61e + f1574cc commit 6ec7359

File tree

5 files changed

+294
-71
lines changed

5 files changed

+294
-71
lines changed

clippy_lints/src/vec_init_then_push.rs

Lines changed: 133 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
11
use clippy_utils::diagnostics::span_lint_and_sugg;
22
use clippy_utils::higher::{get_vec_init_kind, VecInitKind};
33
use clippy_utils::source::snippet;
4-
use clippy_utils::{path_to_local, path_to_local_id};
5-
use if_chain::if_chain;
4+
use clippy_utils::visitors::for_each_local_use_after_expr;
5+
use clippy_utils::{get_parent_expr, path_to_local_id};
6+
use core::ops::ControlFlow;
67
use rustc_errors::Applicability;
7-
use rustc_hir::{BindingAnnotation, Block, Expr, ExprKind, HirId, Local, PatKind, Stmt, StmtKind};
8+
use rustc_hir::def::Res;
9+
use rustc_hir::{
10+
BindingAnnotation, Block, Expr, ExprKind, HirId, Local, Mutability, PatKind, QPath, Stmt, StmtKind, UnOp,
11+
};
812
use rustc_lint::{LateContext, LateLintPass, LintContext};
913
use rustc_middle::lint::in_external_macro;
1014
use rustc_session::{declare_tool_lint, impl_lint_pass};
11-
use rustc_span::Span;
15+
use rustc_span::{Span, Symbol};
1216

1317
declare_clippy_lint! {
1418
/// ### What it does
1519
/// Checks for calls to `push` immediately after creating a new `Vec`.
1620
///
21+
/// If the `Vec` is created using `with_capacity` this will only lint if the capacity is a
22+
/// constant and the number of pushes is greater than or equal to the initial capacity.
23+
///
24+
/// If the `Vec` is extended after the initial sequence of pushes and it was default initialized
25+
/// then this will only lint after there were at least four pushes. This number may change in
26+
/// the future.
27+
///
1728
/// ### Why is this bad?
1829
/// The `vec![]` macro is both more performant and easier to read than
1930
/// multiple `push` calls.
@@ -43,26 +54,88 @@ pub struct VecInitThenPush {
4354
struct VecPushSearcher {
4455
local_id: HirId,
4556
init: VecInitKind,
46-
lhs_is_local: bool,
47-
lhs_span: Span,
57+
lhs_is_let: bool,
58+
let_ty_span: Option<Span>,
59+
name: Symbol,
4860
err_span: Span,
49-
found: u64,
61+
found: u128,
62+
last_push_expr: HirId,
5063
}
5164
impl VecPushSearcher {
5265
fn display_err(&self, cx: &LateContext<'_>) {
53-
match self.init {
66+
let required_pushes_before_extension = match self.init {
5467
_ if self.found == 0 => return,
55-
VecInitKind::WithLiteralCapacity(x) if x > self.found => return,
68+
VecInitKind::WithConstCapacity(x) if x > self.found => return,
69+
VecInitKind::WithConstCapacity(x) => x,
5670
VecInitKind::WithExprCapacity(_) => return,
57-
_ => (),
71+
_ => 3,
5872
};
5973

60-
let mut s = if self.lhs_is_local {
74+
let mut needs_mut = false;
75+
let res = for_each_local_use_after_expr(cx, self.local_id, self.last_push_expr, |e| {
76+
let Some(parent) = get_parent_expr(cx, e) else {
77+
return ControlFlow::Continue(())
78+
};
79+
let adjusted_ty = cx.typeck_results().expr_ty_adjusted(e);
80+
let adjusted_mut = adjusted_ty.ref_mutability().unwrap_or(Mutability::Not);
81+
needs_mut |= adjusted_mut == Mutability::Mut;
82+
match parent.kind {
83+
ExprKind::AddrOf(_, Mutability::Mut, _) => {
84+
needs_mut = true;
85+
return ControlFlow::Break(true);
86+
},
87+
ExprKind::Unary(UnOp::Deref, _) | ExprKind::Index(..) if !needs_mut => {
88+
let mut last_place = parent;
89+
while let Some(parent) = get_parent_expr(cx, parent) {
90+
if matches!(parent.kind, ExprKind::Unary(UnOp::Deref, _) | ExprKind::Field(..))
91+
|| matches!(parent.kind, ExprKind::Index(e, _) if e.hir_id == last_place.hir_id)
92+
{
93+
last_place = parent;
94+
} else {
95+
break;
96+
}
97+
}
98+
needs_mut |= cx.typeck_results().expr_ty_adjusted(last_place).ref_mutability()
99+
== Some(Mutability::Mut)
100+
|| get_parent_expr(cx, last_place)
101+
.map_or(false, |e| matches!(e.kind, ExprKind::AddrOf(_, Mutability::Mut, _)));
102+
},
103+
ExprKind::MethodCall(_, [recv, ..], _)
104+
if recv.hir_id == e.hir_id
105+
&& adjusted_mut == Mutability::Mut
106+
&& !adjusted_ty.peel_refs().is_slice() =>
107+
{
108+
// No need to set `needs_mut` to true. The receiver will be either explicitly borrowed, or it will
109+
// be implicitly borrowed via an adjustment. Both of these cases are already handled by this point.
110+
return ControlFlow::Break(true);
111+
},
112+
ExprKind::Assign(lhs, ..) if e.hir_id == lhs.hir_id => {
113+
needs_mut = true;
114+
return ControlFlow::Break(false);
115+
},
116+
_ => (),
117+
}
118+
ControlFlow::Continue(())
119+
});
120+
121+
// Avoid allocating small `Vec`s when they'll be extended right after.
122+
if res == ControlFlow::Break(true) && self.found <= required_pushes_before_extension {
123+
return;
124+
}
125+
126+
let mut s = if self.lhs_is_let {
61127
String::from("let ")
62128
} else {
63129
String::new()
64130
};
65-
s.push_str(&snippet(cx, self.lhs_span, ".."));
131+
if needs_mut {
132+
s.push_str("mut ");
133+
}
134+
s.push_str(self.name.as_str());
135+
if let Some(span) = self.let_ty_span {
136+
s.push_str(": ");
137+
s.push_str(&snippet(cx, span, "_"));
138+
}
66139
s.push_str(" = vec![..];");
67140

68141
span_lint_and_sugg(
@@ -83,60 +156,63 @@ impl<'tcx> LateLintPass<'tcx> for VecInitThenPush {
83156
}
84157

85158
fn check_local(&mut self, cx: &LateContext<'tcx>, local: &'tcx Local<'tcx>) {
86-
if_chain! {
87-
if !in_external_macro(cx.sess(), local.span);
88-
if let Some(init) = local.init;
89-
if let PatKind::Binding(BindingAnnotation::Mutable, id, _, None) = local.pat.kind;
90-
if let Some(init_kind) = get_vec_init_kind(cx, init);
91-
then {
92-
self.searcher = Some(VecPushSearcher {
93-
local_id: id,
94-
init: init_kind,
95-
lhs_is_local: true,
96-
lhs_span: local.ty.map_or(local.pat.span, |t| local.pat.span.to(t.span)),
97-
err_span: local.span,
98-
found: 0,
99-
});
100-
}
159+
if let Some(init_expr) = local.init
160+
&& let PatKind::Binding(BindingAnnotation::Mutable, id, name, None) = local.pat.kind
161+
&& !in_external_macro(cx.sess(), local.span)
162+
&& let Some(init) = get_vec_init_kind(cx, init_expr)
163+
&& !matches!(init, VecInitKind::WithExprCapacity(_))
164+
{
165+
self.searcher = Some(VecPushSearcher {
166+
local_id: id,
167+
init,
168+
lhs_is_let: true,
169+
name: name.name,
170+
let_ty_span: local.ty.map(|ty| ty.span),
171+
err_span: local.span,
172+
found: 0,
173+
last_push_expr: init_expr.hir_id,
174+
});
101175
}
102176
}
103177

104178
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
105-
if_chain! {
106-
if self.searcher.is_none();
107-
if !in_external_macro(cx.sess(), expr.span);
108-
if let ExprKind::Assign(left, right, _) = expr.kind;
109-
if let Some(id) = path_to_local(left);
110-
if let Some(init_kind) = get_vec_init_kind(cx, right);
111-
then {
112-
self.searcher = Some(VecPushSearcher {
113-
local_id: id,
114-
init: init_kind,
115-
lhs_is_local: false,
116-
lhs_span: left.span,
117-
err_span: expr.span,
118-
found: 0,
119-
});
120-
}
179+
if self.searcher.is_none()
180+
&& let ExprKind::Assign(left, right, _) = expr.kind
181+
&& let ExprKind::Path(QPath::Resolved(None, path)) = left.kind
182+
&& let [name] = &path.segments
183+
&& let Res::Local(id) = path.res
184+
&& !in_external_macro(cx.sess(), expr.span)
185+
&& let Some(init) = get_vec_init_kind(cx, right)
186+
&& !matches!(init, VecInitKind::WithExprCapacity(_))
187+
{
188+
self.searcher = Some(VecPushSearcher {
189+
local_id: id,
190+
init,
191+
lhs_is_let: false,
192+
let_ty_span: None,
193+
name: name.ident.name,
194+
err_span: expr.span,
195+
found: 0,
196+
last_push_expr: expr.hir_id,
197+
});
121198
}
122199
}
123200

124201
fn check_stmt(&mut self, cx: &LateContext<'tcx>, stmt: &'tcx Stmt<'_>) {
125202
if let Some(searcher) = self.searcher.take() {
126-
if_chain! {
127-
if let StmtKind::Expr(expr) | StmtKind::Semi(expr) = stmt.kind;
128-
if let ExprKind::MethodCall(path, [self_arg, _], _) = expr.kind;
129-
if path_to_local_id(self_arg, searcher.local_id);
130-
if path.ident.name.as_str() == "push";
131-
then {
132-
self.searcher = Some(VecPushSearcher {
133-
found: searcher.found + 1,
134-
err_span: searcher.err_span.to(stmt.span),
135-
.. searcher
136-
});
137-
} else {
138-
searcher.display_err(cx);
139-
}
203+
if let StmtKind::Expr(expr) | StmtKind::Semi(expr) = stmt.kind
204+
&& let ExprKind::MethodCall(name, [self_arg, _], _) = expr.kind
205+
&& path_to_local_id(self_arg, searcher.local_id)
206+
&& name.ident.as_str() == "push"
207+
{
208+
self.searcher = Some(VecPushSearcher {
209+
found: searcher.found + 1,
210+
err_span: searcher.err_span.to(stmt.span),
211+
last_push_expr: expr.hir_id,
212+
.. searcher
213+
});
214+
} else {
215+
searcher.display_err(cx);
140216
}
141217
}
142218
}

clippy_utils/src/higher.rs

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
33
#![deny(clippy::missing_docs_in_private_items)]
44

5+
use crate::consts::{constant_simple, Constant};
56
use crate::ty::is_type_diagnostic_item;
67
use crate::{is_expn_of, match_def_path, paths};
78
use if_chain::if_chain;
8-
use rustc_ast::ast::{self, LitKind};
9+
use rustc_ast::ast;
910
use rustc_hir as hir;
1011
use rustc_hir::{Arm, Block, Expr, ExprKind, HirId, LoopSource, MatchSource, Node, Pat, QPath};
1112
use rustc_lint::LateContext;
@@ -431,7 +432,7 @@ pub enum VecInitKind {
431432
/// `Vec::default()` or `Default::default()`
432433
Default,
433434
/// `Vec::with_capacity(123)`
434-
WithLiteralCapacity(u64),
435+
WithConstCapacity(u128),
435436
/// `Vec::with_capacity(slice.len())`
436437
WithExprCapacity(HirId),
437438
}
@@ -449,15 +450,11 @@ pub fn get_vec_init_kind<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) -
449450
return Some(VecInitKind::Default);
450451
} else if name.ident.name.as_str() == "with_capacity" {
451452
let arg = args.get(0)?;
452-
if_chain! {
453-
if let ExprKind::Lit(lit) = &arg.kind;
454-
if let LitKind::Int(num, _) = lit.node;
455-
then {
456-
return Some(VecInitKind::WithLiteralCapacity(num.try_into().ok()?));
457-
}
458-
}
459-
return Some(VecInitKind::WithExprCapacity(arg.hir_id));
460-
}
453+
return match constant_simple(cx, cx.typeck_results(), arg) {
454+
Some(Constant::Int(num)) => Some(VecInitKind::WithConstCapacity(num)),
455+
_ => Some(VecInitKind::WithExprCapacity(arg.hir_id)),
456+
};
457+
};
461458
},
462459
ExprKind::Path(QPath::Resolved(_, path))
463460
if match_def_path(cx, path.res.opt_def_id()?, &paths::DEFAULT_TRAIT_METHOD)

clippy_utils/src/visitors.rs

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::path_to_local_id;
1+
use crate::{get_enclosing_block, path_to_local_id};
22
use core::ops::ControlFlow;
33
use rustc_hir as hir;
44
use rustc_hir::def::{DefKind, Res};
@@ -436,3 +436,61 @@ pub fn for_each_value_source<'tcx, B>(
436436
_ => f(e),
437437
}
438438
}
439+
440+
/// Runs the given function for each path expression referencing the given local which occur after
441+
/// the given expression.
442+
pub fn for_each_local_use_after_expr<'tcx, B>(
443+
cx: &LateContext<'tcx>,
444+
local_id: HirId,
445+
expr_id: HirId,
446+
f: impl FnMut(&'tcx Expr<'tcx>) -> ControlFlow<B>,
447+
) -> ControlFlow<B> {
448+
struct V<'cx, 'tcx, F, B> {
449+
cx: &'cx LateContext<'tcx>,
450+
local_id: HirId,
451+
expr_id: HirId,
452+
found: bool,
453+
res: ControlFlow<B>,
454+
f: F,
455+
}
456+
impl<'cx, 'tcx, F: FnMut(&'tcx Expr<'tcx>) -> ControlFlow<B>, B> Visitor<'tcx> for V<'cx, 'tcx, F, B> {
457+
type NestedFilter = nested_filter::OnlyBodies;
458+
fn nested_visit_map(&mut self) -> Self::Map {
459+
self.cx.tcx.hir()
460+
}
461+
462+
fn visit_expr(&mut self, e: &'tcx Expr<'tcx>) {
463+
if !self.found {
464+
if e.hir_id == self.expr_id {
465+
self.found = true;
466+
} else {
467+
walk_expr(self, e);
468+
}
469+
return;
470+
}
471+
if self.res.is_break() {
472+
return;
473+
}
474+
if path_to_local_id(e, self.local_id) {
475+
self.res = (self.f)(e);
476+
} else {
477+
walk_expr(self, e);
478+
}
479+
}
480+
}
481+
482+
if let Some(b) = get_enclosing_block(cx, local_id) {
483+
let mut v = V {
484+
cx,
485+
local_id,
486+
expr_id,
487+
found: false,
488+
res: ControlFlow::Continue(()),
489+
f,
490+
};
491+
v.visit_block(b);
492+
v.res
493+
} else {
494+
ControlFlow::Continue(())
495+
}
496+
}

0 commit comments

Comments
 (0)