Skip to content

Commit 196174d

Browse files
committed
Changes to let_unit_value
* View through locals in `let_unit_value` when determining if inference is required * Don't remove typed let bindings for more functions
1 parent 54feac1 commit 196174d

File tree

6 files changed

+266
-73
lines changed

6 files changed

+266
-73
lines changed

clippy_lints/src/unit_types/let_unit_value.rs

Lines changed: 90 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,24 @@
11
use clippy_utils::diagnostics::span_lint_and_then;
2+
use clippy_utils::get_parent_node;
23
use clippy_utils::source::snippet_with_macro_callsite;
3-
use clippy_utils::visitors::for_each_value_source;
4+
use clippy_utils::visitors::{for_each_local_assignment, for_each_value_source};
45
use core::ops::ControlFlow;
56
use rustc_errors::Applicability;
67
use rustc_hir::def::{DefKind, Res};
7-
use rustc_hir::{Expr, ExprKind, Local, PatKind};
8+
use rustc_hir::{Expr, ExprKind, HirId, HirIdSet, Local, Node, PatKind, QPath, TyKind};
89
use rustc_lint::{LateContext, LintContext};
910
use rustc_middle::lint::in_external_macro;
10-
use rustc_middle::ty::{self, Ty, TypeFoldable, TypeSuperFoldable, TypeVisitor};
11+
use rustc_middle::ty;
1112

1213
use super::LET_UNIT_VALUE;
1314

14-
pub(super) fn check(cx: &LateContext<'_>, local: &Local<'_>) {
15+
pub(super) fn check<'tcx>(cx: &LateContext<'tcx>, local: &'tcx Local<'_>) {
1516
if let Some(init) = local.init
1617
&& !local.pat.span.from_expansion()
1718
&& !in_external_macro(cx.sess(), local.span)
1819
&& cx.typeck_results().pat_ty(local.pat).is_unit()
1920
{
20-
let needs_inferred = for_each_value_source(init, &mut |e| if needs_inferred_result_ty(cx, e) {
21-
ControlFlow::Continue(())
22-
} else {
23-
ControlFlow::Break(())
24-
}).is_continue();
25-
26-
if needs_inferred {
21+
if local.ty.is_some() && expr_needs_inferred_result(cx, init) {
2722
if !matches!(local.pat.kind, PatKind::Wild) {
2823
span_lint_and_then(
2924
cx,
@@ -62,48 +57,106 @@ pub(super) fn check(cx: &LateContext<'_>, local: &Local<'_>) {
6257
}
6358
}
6459

65-
fn needs_inferred_result_ty(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
66-
let id = match e.kind {
60+
/// Checks sub-expressions which create the value returned by the given expression for whether
61+
/// return value inference is needed. This checks through locals to see if they also need inference
62+
/// at this point.
63+
///
64+
/// e.g.
65+
/// ```rust,ignore
66+
/// let bar = foo();
67+
/// let x: u32 = if true { baz() } else { bar };
68+
/// ```
69+
/// Here the sources of the value assigned to `x` would be `baz()`, and `foo()` via the
70+
/// initialization of `bar`. If both `foo` and `baz` have a return type which require type
71+
/// inference then this function would return `true`.
72+
fn expr_needs_inferred_result<'tcx>(cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) -> bool {
73+
// The locals used for initialization which have yet to be checked.
74+
let mut locals_to_check = Vec::new();
75+
// All the locals which have been added to `locals_to_check`. Needed to prevent cycles.
76+
let mut seen_locals = HirIdSet::default();
77+
if !each_value_source_needs_inference(cx, e, &mut locals_to_check, &mut seen_locals) {
78+
return false;
79+
}
80+
while let Some(id) = locals_to_check.pop() {
81+
if let Some(Node::Local(l)) = get_parent_node(cx.tcx, id) {
82+
if !l.ty.map_or(true, |ty| matches!(ty.kind, TyKind::Infer)) {
83+
return false;
84+
}
85+
if let Some(e) = l.init {
86+
if !each_value_source_needs_inference(cx, e, &mut locals_to_check, &mut seen_locals) {
87+
return false;
88+
}
89+
} else if for_each_local_assignment(cx, id, |e| {
90+
if each_value_source_needs_inference(cx, e, &mut locals_to_check, &mut seen_locals) {
91+
ControlFlow::Continue(())
92+
} else {
93+
ControlFlow::Break(())
94+
}
95+
})
96+
.is_break()
97+
{
98+
return false;
99+
}
100+
}
101+
}
102+
103+
true
104+
}
105+
106+
fn each_value_source_needs_inference(
107+
cx: &LateContext<'_>,
108+
e: &Expr<'_>,
109+
locals_to_check: &mut Vec<HirId>,
110+
seen_locals: &mut HirIdSet,
111+
) -> bool {
112+
for_each_value_source(e, &mut |e| {
113+
if needs_inferred_result_ty(cx, e, locals_to_check, seen_locals) {
114+
ControlFlow::Continue(())
115+
} else {
116+
ControlFlow::Break(())
117+
}
118+
})
119+
.is_continue()
120+
}
121+
122+
fn needs_inferred_result_ty(
123+
cx: &LateContext<'_>,
124+
e: &Expr<'_>,
125+
locals_to_check: &mut Vec<HirId>,
126+
seen_locals: &mut HirIdSet,
127+
) -> bool {
128+
let (id, args) = match e.kind {
67129
ExprKind::Call(
68130
Expr {
69131
kind: ExprKind::Path(ref path),
70132
hir_id,
71133
..
72134
},
73-
_,
135+
args,
74136
) => match cx.qpath_res(path, *hir_id) {
75-
Res::Def(DefKind::AssocFn | DefKind::Fn, id) => id,
137+
Res::Def(DefKind::AssocFn | DefKind::Fn, id) => (id, args),
76138
_ => return false,
77139
},
78-
ExprKind::MethodCall(..) => match cx.typeck_results().type_dependent_def_id(e.hir_id) {
79-
Some(id) => id,
140+
ExprKind::MethodCall(_, args, _) => match cx.typeck_results().type_dependent_def_id(e.hir_id) {
141+
Some(id) => (id, args),
80142
None => return false,
81143
},
144+
ExprKind::Path(QPath::Resolved(None, path)) => {
145+
if let Res::Local(id) = path.res
146+
&& seen_locals.insert(id)
147+
{
148+
locals_to_check.push(id);
149+
}
150+
return true;
151+
},
82152
_ => return false,
83153
};
84154
let sig = cx.tcx.fn_sig(id).skip_binder();
85155
if let ty::Param(output_ty) = *sig.output().kind() {
86-
sig.inputs().iter().all(|&ty| !ty_contains_param(ty, output_ty.index))
156+
sig.inputs().iter().zip(args).all(|(&ty, arg)| {
157+
!ty.is_param(output_ty.index) || each_value_source_needs_inference(cx, arg, locals_to_check, seen_locals)
158+
})
87159
} else {
88160
false
89161
}
90162
}
91-
92-
fn ty_contains_param(ty: Ty<'_>, index: u32) -> bool {
93-
struct Visitor(u32);
94-
impl<'tcx> TypeVisitor<'tcx> for Visitor {
95-
type BreakTy = ();
96-
fn visit_ty(&mut self, ty: Ty<'tcx>) -> ControlFlow<Self::BreakTy> {
97-
if let ty::Param(ty) = *ty.kind() {
98-
if ty.index == self.0 {
99-
ControlFlow::BREAK
100-
} else {
101-
ControlFlow::CONTINUE
102-
}
103-
} else {
104-
ty.super_visit_with(self)
105-
}
106-
}
107-
}
108-
ty.visit_with(&mut Visitor(index)).is_break()
109-
}

clippy_lints/src/unit_types/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ declare_clippy_lint! {
9898

9999
declare_lint_pass!(UnitTypes => [LET_UNIT_VALUE, UNIT_CMP, UNIT_ARG]);
100100

101-
impl LateLintPass<'_> for UnitTypes {
102-
fn check_local(&mut self, cx: &LateContext<'_>, local: &Local<'_>) {
101+
impl<'tcx> LateLintPass<'tcx> for UnitTypes {
102+
fn check_local(&mut self, cx: &LateContext<'tcx>, local: &'tcx Local<'tcx>) {
103103
let_unit_value::check(cx, local);
104104
}
105105

clippy_utils/src/visitors.rs

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,3 +617,49 @@ pub fn any_temporaries_need_ordered_drop<'tcx>(cx: &LateContext<'tcx>, e: &'tcx
617617
})
618618
.is_break()
619619
}
620+
621+
/// Runs the given function for each path expression referencing the given local which occur after
622+
/// the given expression.
623+
pub fn for_each_local_assignment<'tcx, B>(
624+
cx: &LateContext<'tcx>,
625+
local_id: HirId,
626+
f: impl FnMut(&'tcx Expr<'tcx>) -> ControlFlow<B>,
627+
) -> ControlFlow<B> {
628+
struct V<'cx, 'tcx, F, B> {
629+
cx: &'cx LateContext<'tcx>,
630+
local_id: HirId,
631+
res: ControlFlow<B>,
632+
f: F,
633+
}
634+
impl<'cx, 'tcx, F: FnMut(&'tcx Expr<'tcx>) -> ControlFlow<B>, B> Visitor<'tcx> for V<'cx, 'tcx, F, B> {
635+
type NestedFilter = nested_filter::OnlyBodies;
636+
fn nested_visit_map(&mut self) -> Self::Map {
637+
self.cx.tcx.hir()
638+
}
639+
640+
fn visit_expr(&mut self, e: &'tcx Expr<'tcx>) {
641+
if let ExprKind::Assign(lhs, rhs, _) = e.kind
642+
&& self.res.is_continue()
643+
&& path_to_local_id(lhs, self.local_id)
644+
{
645+
self.res = (self.f)(rhs);
646+
self.visit_expr(rhs);
647+
} else {
648+
walk_expr(self, e);
649+
}
650+
}
651+
}
652+
653+
if let Some(b) = get_enclosing_block(cx, local_id) {
654+
let mut v = V {
655+
cx,
656+
local_id,
657+
res: ControlFlow::Continue(()),
658+
f,
659+
};
660+
v.visit_block(b);
661+
v.res
662+
} else {
663+
ControlFlow::Continue(())
664+
}
665+
}

tests/ui/let_unit.fixed

Lines changed: 56 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22

33
#![feature(lint_reasons)]
44
#![warn(clippy::let_unit_value)]
5-
#![allow(clippy::no_effect)]
6-
#![allow(unused)]
5+
#![allow(unused, clippy::no_effect, clippy::needless_late_init, path_statements)]
76

87
macro_rules! let_and_return {
98
($n:expr) => {{
@@ -73,8 +72,8 @@ fn _returns_generic() {
7372
fn f3<T>(x: T) -> T {
7473
x
7574
}
76-
fn f4<T>(mut x: Vec<T>) -> T {
77-
x.pop().unwrap()
75+
fn f5<T: Default>(x: bool) -> Option<T> {
76+
x.then(|| T::default())
7877
}
7978

8079
let _: () = f(); // Ok
@@ -86,8 +85,12 @@ fn _returns_generic() {
8685
f3(()); // Lint
8786
f3(()); // Lint
8887

89-
f4(vec![()]); // Lint
90-
f4(vec![()]); // Lint
88+
// Should lint:
89+
// fn f4<T>(mut x: Vec<T>) -> T {
90+
// x.pop().unwrap()
91+
// }
92+
// let _: () = f4(vec![()]);
93+
// let x: () = f4(vec![()]);
9194

9295
// Ok
9396
let _: () = {
@@ -113,6 +116,53 @@ fn _returns_generic() {
113116
Some(1) => f2(3),
114117
Some(_) => (),
115118
};
119+
120+
let _: () = f5(true).unwrap();
121+
122+
#[allow(clippy::let_unit_value)]
123+
{
124+
let x = f();
125+
let y;
126+
let z;
127+
match 0 {
128+
0 => {
129+
y = f();
130+
z = f();
131+
},
132+
1 => {
133+
println!("test");
134+
y = f();
135+
z = f3(());
136+
},
137+
_ => panic!(),
138+
}
139+
140+
let x1;
141+
let x2;
142+
if true {
143+
x1 = f();
144+
x2 = x1;
145+
} else {
146+
x2 = f();
147+
x1 = x2;
148+
}
149+
150+
let opt;
151+
match f5(true) {
152+
Some(x) => opt = x,
153+
None => panic!(),
154+
};
155+
156+
#[warn(clippy::let_unit_value)]
157+
{
158+
let _: () = x;
159+
let _: () = y;
160+
z;
161+
let _: () = x1;
162+
let _: () = x2;
163+
let _: () = opt;
164+
}
165+
}
116166
}
117167

118168
fn attributes() {

0 commit comments

Comments
 (0)