1
1
use clippy_utils:: consts:: { constant, Constant } ;
2
2
use clippy_utils:: diagnostics:: span_lint_and_then;
3
3
use clippy_utils:: sugg:: Sugg ;
4
- use clippy_utils:: visitors:: is_const_evaluatable;
5
- use clippy_utils:: { get_item_name, is_expr_named_const, peel_hir_expr_while} ;
4
+ use clippy_utils:: visitors:: { for_each_expr_without_closures, is_const_evaluatable} ;
5
+ use clippy_utils:: { get_item_name, is_expr_named_const, peel_hir_expr_while, SpanlessEq } ;
6
+ use core:: ops:: ControlFlow ;
6
7
use rustc_errors:: Applicability ;
7
- use rustc_hir:: { BinOpKind , BorrowKind , Expr , ExprKind , UnOp } ;
8
+ use rustc_hir:: { BinOpKind , BorrowKind , Expr , ExprKind , Safety , UnOp } ;
8
9
use rustc_lint:: LateContext ;
9
- use rustc_middle:: ty;
10
+ use rustc_middle:: ty:: { self , Ty , TypeFlags , TypeVisitableExt } ;
10
11
11
12
use super :: { FloatCmpConfig , FLOAT_CMP } ;
12
13
@@ -24,33 +25,40 @@ pub(crate) fn check<'tcx>(
24
25
} ;
25
26
26
27
if matches ! ( op, BinOpKind :: Eq | BinOpKind :: Ne )
27
- && let left = peel_hir_expr_while ( left, peel_expr)
28
- && let right = peel_hir_expr_while ( right, peel_expr)
29
- && is_float ( cx, left )
28
+ && let left_reduced = peel_hir_expr_while ( left, peel_expr)
29
+ && let right_reduced = peel_hir_expr_while ( right, peel_expr)
30
+ && is_float ( cx, left_reduced )
30
31
// Don't lint literal comparisons
31
- && !( matches ! ( left . kind, ExprKind :: Lit ( _) ) && matches ! ( right . kind, ExprKind :: Lit ( _) ) )
32
+ && !( matches ! ( left_reduced . kind, ExprKind :: Lit ( _) ) && matches ! ( right_reduced . kind, ExprKind :: Lit ( _) ) )
32
33
// Allow comparing the results of signum()
33
- && !( is_signum ( cx, left ) && is_signum ( cx, right ) )
34
+ && !( is_signum ( cx, left_reduced ) && is_signum ( cx, right_reduced ) )
34
35
{
35
- let left_c = constant ( cx, cx. typeck_results ( ) , left ) ;
36
+ let left_c = constant ( cx, cx. typeck_results ( ) , left_reduced ) ;
36
37
let is_left_const = left_c. is_some ( ) ;
37
38
if left_c. is_some_and ( |c| is_allowed ( & c) ) {
38
39
return ;
39
40
}
40
- let right_c = constant ( cx, cx. typeck_results ( ) , right ) ;
41
+ let right_c = constant ( cx, cx. typeck_results ( ) , right_reduced ) ;
41
42
let is_right_const = right_c. is_some ( ) ;
42
43
if right_c. is_some_and ( |c| is_allowed ( & c) ) {
43
44
return ;
44
45
}
45
46
46
47
if config. ignore_constant_comparisons
47
- && ( is_left_const || is_const_evaluatable ( cx, left ) )
48
- && ( is_right_const || is_const_evaluatable ( cx, right ) )
48
+ && ( is_left_const || is_const_evaluatable ( cx, left_reduced ) )
49
+ && ( is_right_const || is_const_evaluatable ( cx, right_reduced ) )
49
50
{
50
51
return ;
51
52
}
52
53
53
- if config. ignore_named_constants && ( is_expr_named_const ( cx, left) || is_expr_named_const ( cx, right) ) {
54
+ if config. ignore_named_constants && ( is_expr_named_const ( cx, left_reduced) || is_expr_named_const ( cx, right_reduced) ) {
55
+ return ;
56
+ }
57
+
58
+ if config. ignore_change_detection
59
+ && ( ( is_pure_expr ( cx, left_reduced) && contains_expr ( cx, right, left) )
60
+ || ( is_pure_expr ( cx, right_reduced) && contains_expr ( cx, left, right) ) )
61
+ {
54
62
return ;
55
63
}
56
64
@@ -60,7 +68,7 @@ pub(crate) fn check<'tcx>(
60
68
return ;
61
69
}
62
70
}
63
- let is_comparing_arrays = is_array ( cx, left ) || is_array ( cx, right ) ;
71
+ let is_comparing_arrays = is_array ( cx, left_reduced ) || is_array ( cx, right_reduced ) ;
64
72
let msg = if is_comparing_arrays {
65
73
"strict comparison of `f32` or `f64` arrays"
66
74
} else {
@@ -105,6 +113,79 @@ fn is_allowed(val: &Constant<'_>) -> bool {
105
113
}
106
114
}
107
115
116
+ // This is a best effort guess and may have false positives and negatives.
117
+ fn is_pure_expr < ' tcx > ( cx : & LateContext < ' tcx > , e : & ' tcx Expr < ' _ > ) -> bool {
118
+ match e. kind {
119
+ ExprKind :: Path ( _) | ExprKind :: Lit ( _) => true ,
120
+ ExprKind :: Field ( e, _) | ExprKind :: Cast ( e, _) | ExprKind :: Repeat ( e, _) => is_pure_expr ( cx, e) ,
121
+ ExprKind :: Tup ( args) => args. iter ( ) . all ( |arg| is_pure_expr ( cx, arg) ) ,
122
+ ExprKind :: Struct ( _, fields, base) => {
123
+ base. map_or ( true , |base| is_pure_expr ( cx, base) ) && fields. iter ( ) . all ( |f| is_pure_expr ( cx, f. expr ) )
124
+ } ,
125
+
126
+ // Since rust doesn't actually have the concept of a pure function we
127
+ // have to guess whether it's likely pure from the signature of the
128
+ // function.
129
+ ExprKind :: Unary ( _, e) => is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( e) ) && is_pure_expr ( cx, e) ,
130
+ ExprKind :: Binary ( _, x, y) | ExprKind :: Index ( x, y, _) => {
131
+ is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( x) )
132
+ && is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( y) )
133
+ && is_pure_expr ( cx, x)
134
+ && is_pure_expr ( cx, y)
135
+ } ,
136
+ ExprKind :: MethodCall ( _, recv, args, _) => {
137
+ is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( recv) )
138
+ && is_pure_expr ( cx, recv)
139
+ && cx
140
+ . typeck_results ( )
141
+ . type_dependent_def_id ( e. hir_id )
142
+ . is_some_and ( |did| matches ! ( cx. tcx. fn_sig( did) . skip_binder( ) . skip_binder( ) . safety, Safety :: Safe ) )
143
+ && args
144
+ . iter ( )
145
+ . all ( |arg| is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( arg) ) && is_pure_expr ( cx, arg) )
146
+ } ,
147
+ ExprKind :: Call ( f, args @ [ _, ..] ) => {
148
+ is_pure_expr ( cx, f)
149
+ && is_pure_fn_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( f) )
150
+ && args
151
+ . iter ( )
152
+ . all ( |arg| is_pure_arg_ty ( cx, cx. typeck_results ( ) . expr_ty_adjusted ( arg) ) && is_pure_expr ( cx, arg) )
153
+ } ,
154
+
155
+ _ => false ,
156
+ }
157
+ }
158
+
159
+ fn is_pure_fn_ty < ' tcx > ( cx : & LateContext < ' tcx > , ty : Ty < ' tcx > ) -> bool {
160
+ let sig = match * ty. peel_refs ( ) . kind ( ) {
161
+ ty:: FnDef ( did, _) => cx. tcx . fn_sig ( did) . skip_binder ( ) ,
162
+ ty:: FnPtr ( sig) => sig,
163
+ ty:: Closure ( _, args) => {
164
+ return args. as_closure ( ) . upvar_tys ( ) . iter ( ) . all ( |ty| is_pure_arg_ty ( cx, ty) ) ;
165
+ } ,
166
+ _ => return false ,
167
+ } ;
168
+ matches ! ( sig. skip_binder( ) . safety, Safety :: Safe )
169
+ }
170
+
171
+ fn is_pure_arg_ty < ' tcx > ( cx : & LateContext < ' tcx > , ty : Ty < ' tcx > ) -> bool {
172
+ !ty. is_mutable_ptr ( )
173
+ && ty. is_copy_modulo_regions ( cx. tcx , cx. param_env )
174
+ && ( ty. peel_refs ( ) . is_freeze ( cx. tcx , cx. param_env )
175
+ || !ty. has_type_flags ( TypeFlags :: HAS_FREE_REGIONS | TypeFlags :: HAS_RE_ERASED | TypeFlags :: HAS_RE_BOUND ) )
176
+ }
177
+
178
+ fn contains_expr < ' tcx > ( cx : & LateContext < ' tcx > , corpus : & ' tcx Expr < ' tcx > , e : & ' tcx Expr < ' tcx > ) -> bool {
179
+ for_each_expr_without_closures ( corpus, |corpus| {
180
+ if SpanlessEq :: new ( cx) . eq_expr ( corpus, e) {
181
+ ControlFlow :: Break ( ( ) )
182
+ } else {
183
+ ControlFlow :: Continue ( ( ) )
184
+ }
185
+ } )
186
+ . is_some ( )
187
+ }
188
+
108
189
// Return true if `expr` is the result of `signum()` invoked on a float value.
109
190
fn is_signum ( cx : & LateContext < ' _ > , expr : & Expr < ' _ > ) -> bool {
110
191
if let ExprKind :: MethodCall ( method_name, self_arg, ..) = expr. kind
0 commit comments