@@ -16,6 +16,39 @@ use std::f64::consts as f64_consts;
16
16
use sugg:: { format_numeric_literal, Sugg } ;
17
17
use syntax:: ast;
18
18
19
+ declare_clippy_lint ! {
20
+ /// **What it does:** Looks for floating-point expressions that
21
+ /// can be expressed using built-in methods to improve accuracy
22
+ /// at the cost of performance.
23
+ ///
24
+ /// **Why is this bad?** Negatively impacts accuracy.
25
+ ///
26
+ /// **Known problems:** None
27
+ ///
28
+ /// **Example:**
29
+ ///
30
+ /// ```rust
31
+ ///
32
+ /// let a = 3f32;
33
+ /// let _ = a.powf(1.0 / 3.0);
34
+ /// let _ = (1.0 + a).ln();
35
+ /// let _ = a.exp() - 1.0;
36
+ /// ```
37
+ ///
38
+ /// is better expressed as
39
+ ///
40
+ /// ```rust
41
+ ///
42
+ /// let a = 3f32;
43
+ /// let _ = a.cbrt();
44
+ /// let _ = a.ln_1p();
45
+ /// let _ = a.exp_m1();
46
+ /// ```
47
+ pub IMPRECISE_FLOPS ,
48
+ nursery,
49
+ "usage of imprecise floating point operations"
50
+ }
51
+
19
52
declare_clippy_lint ! {
20
53
/// **What it does:** Looks for floating-point expressions that
21
54
/// can be expressed using built-in methods to improve both
@@ -34,12 +67,9 @@ declare_clippy_lint! {
34
67
/// let _ = (2f32).powf(a);
35
68
/// let _ = E.powf(a);
36
69
/// let _ = a.powf(1.0 / 2.0);
37
- /// let _ = a.powf(1.0 / 3.0);
38
70
/// let _ = a.log(2.0);
39
71
/// let _ = a.log(10.0);
40
72
/// let _ = a.log(E);
41
- /// let _ = (1.0 + a).ln();
42
- /// let _ = a.exp() - 1.0;
43
73
/// let _ = a.powf(2.0);
44
74
/// let _ = a * 2.0 + 4.0;
45
75
/// ```
@@ -53,12 +83,9 @@ declare_clippy_lint! {
53
83
/// let _ = a.exp2();
54
84
/// let _ = a.exp();
55
85
/// let _ = a.sqrt();
56
- /// let _ = a.cbrt();
57
86
/// let _ = a.log2();
58
87
/// let _ = a.log10();
59
88
/// let _ = a.ln();
60
- /// let _ = a.ln_1p();
61
- /// let _ = a.exp_m1();
62
89
/// let _ = a.powi(2);
63
90
/// let _ = a.mul_add(2.0, 4.0);
64
91
/// ```
@@ -67,7 +94,10 @@ declare_clippy_lint! {
67
94
"usage of sub-optimal floating point operations"
68
95
}
69
96
70
- declare_lint_pass ! ( FloatingPointArithmetic => [ SUBOPTIMAL_FLOPS ] ) ;
97
+ declare_lint_pass ! ( FloatingPointArithmetic => [
98
+ IMPRECISE_FLOPS ,
99
+ SUBOPTIMAL_FLOPS
100
+ ] ) ;
71
101
72
102
// Returns the specialized log method for a given base if base is constant
73
103
// and is one of 2, 10 and e
@@ -156,7 +186,7 @@ fn check_ln1p(cx: &LateContext<'_, '_>, expr: &Expr<'_>, args: &[Expr<'_>]) {
156
186
157
187
span_lint_and_sugg (
158
188
cx,
159
- SUBOPTIMAL_FLOPS ,
189
+ IMPRECISE_FLOPS ,
160
190
expr. span ,
161
191
"ln(1 + x) can be computed more accurately" ,
162
192
"consider using" ,
@@ -215,18 +245,21 @@ fn check_powf(cx: &LateContext<'_, '_>, expr: &Expr<'_>, args: &[Expr<'_>]) {
215
245
216
246
// Check argument
217
247
if let Some ( ( value, _) ) = constant ( cx, cx. tables , & args[ 1 ] ) {
218
- let ( help, suggestion) = if F32 ( 1.0 / 2.0 ) == value || F64 ( 1.0 / 2.0 ) == value {
248
+ let ( lint , help, suggestion) = if F32 ( 1.0 / 2.0 ) == value || F64 ( 1.0 / 2.0 ) == value {
219
249
(
250
+ SUBOPTIMAL_FLOPS ,
220
251
"square-root of a number can be computed more efficiently and accurately" ,
221
252
format ! ( "{}.sqrt()" , Sugg :: hir( cx, & args[ 0 ] , ".." ) ) ,
222
253
)
223
254
} else if F32 ( 1.0 / 3.0 ) == value || F64 ( 1.0 / 3.0 ) == value {
224
255
(
256
+ IMPRECISE_FLOPS ,
225
257
"cube-root of a number can be computed more accurately" ,
226
258
format ! ( "{}.cbrt()" , Sugg :: hir( cx, & args[ 0 ] , ".." ) ) ,
227
259
)
228
260
} else if let Some ( exponent) = get_integer_from_float_constant ( & value) {
229
261
(
262
+ SUBOPTIMAL_FLOPS ,
230
263
"exponentiation with integer powers can be computed more efficiently" ,
231
264
format ! (
232
265
"{}.powi({})" ,
@@ -240,7 +273,7 @@ fn check_powf(cx: &LateContext<'_, '_>, expr: &Expr<'_>, args: &[Expr<'_>]) {
240
273
241
274
span_lint_and_sugg (
242
275
cx,
243
- SUBOPTIMAL_FLOPS ,
276
+ lint ,
244
277
expr. span ,
245
278
help,
246
279
"consider using" ,
@@ -264,7 +297,7 @@ fn check_expm1(cx: &LateContext<'_, '_>, expr: &Expr<'_>) {
264
297
then {
265
298
span_lint_and_sugg(
266
299
cx,
267
- SUBOPTIMAL_FLOPS ,
300
+ IMPRECISE_FLOPS ,
268
301
expr. span,
269
302
"(e.pow(x) - 1) can be computed more accurately" ,
270
303
"consider using" ,
0 commit comments