2018-11-27 14:14:15 -06:00
|
|
|
use crate::utils::span_lint;
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2019-12-03 17:16:03 -06:00
|
|
|
use rustc_session::declare_tool_lint;
|
2018-11-27 14:14:15 -06:00
|
|
|
use std::f64::consts as f64;
|
2019-11-07 06:27:00 -06:00
|
|
|
use syntax::ast::{FloatTy, LitFloatType, LitKind};
|
2018-12-29 09:04:45 -06:00
|
|
|
use syntax::symbol;
|
2015-05-04 05:01:34 -05:00
|
|
|
|
2018-03-27 10:13:55 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for floating point literals that approximate
|
|
|
|
/// constants which are defined in
|
|
|
|
/// [`std::f32::consts`](https://doc.rust-lang.org/stable/std/f32/consts/#constants)
|
|
|
|
/// or
|
|
|
|
/// [`std::f64::consts`](https://doc.rust-lang.org/stable/std/f64/consts/#constants),
|
|
|
|
/// respectively, suggesting to use the predefined constant.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Usually, the definition in the standard library is more
|
|
|
|
/// precise than what people come up with. If you find that your definition is
|
|
|
|
/// actually more precise, please [file a Rust
|
|
|
|
/// issue](https://github.com/rust-lang/rust/issues).
|
|
|
|
///
|
2019-04-24 11:01:12 -05:00
|
|
|
/// **Known problems:** None.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-11-19 13:14:09 -06:00
|
|
|
/// // Bad
|
2019-03-05 10:50:33 -06:00
|
|
|
/// let x = 3.14;
|
2019-11-19 13:14:09 -06:00
|
|
|
/// let y = 1_f64 / x;
|
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// let x = std::f32::consts::PI;
|
|
|
|
/// let y = std::f64::consts::FRAC_1_PI;
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2015-05-04 05:01:34 -05:00
|
|
|
pub APPROX_CONSTANT,
|
2018-03-27 10:13:55 -05:00
|
|
|
correctness,
|
2016-08-06 03:18:36 -05:00
|
|
|
"the approximate of a known float constant (in `std::fXX::consts`)"
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
|
2015-10-23 23:30:57 -05:00
|
|
|
// Tuples are of the form (constant, name, min_digits)
|
2019-05-17 16:53:54 -05:00
|
|
|
const KNOWN_CONSTS: [(f64, &str, usize); 16] = [
|
|
|
|
(f64::E, "E", 4),
|
|
|
|
(f64::FRAC_1_PI, "FRAC_1_PI", 4),
|
|
|
|
(f64::FRAC_1_SQRT_2, "FRAC_1_SQRT_2", 5),
|
|
|
|
(f64::FRAC_2_PI, "FRAC_2_PI", 5),
|
|
|
|
(f64::FRAC_2_SQRT_PI, "FRAC_2_SQRT_PI", 5),
|
|
|
|
(f64::FRAC_PI_2, "FRAC_PI_2", 5),
|
|
|
|
(f64::FRAC_PI_3, "FRAC_PI_3", 5),
|
|
|
|
(f64::FRAC_PI_4, "FRAC_PI_4", 5),
|
|
|
|
(f64::FRAC_PI_6, "FRAC_PI_6", 5),
|
|
|
|
(f64::FRAC_PI_8, "FRAC_PI_8", 5),
|
|
|
|
(f64::LN_10, "LN_10", 5),
|
|
|
|
(f64::LN_2, "LN_2", 5),
|
|
|
|
(f64::LOG10_E, "LOG10_E", 5),
|
|
|
|
(f64::LOG2_E, "LOG2_E", 5),
|
|
|
|
(f64::PI, "PI", 3),
|
|
|
|
(f64::SQRT_2, "SQRT_2", 5),
|
2017-08-09 02:30:56 -05:00
|
|
|
];
|
2015-05-04 05:01:34 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(ApproxConstant => [APPROX_CONSTANT]);
|
2015-05-04 05:01:34 -05:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ApproxConstant {
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr<'_>) {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Lit(lit) = &e.kind {
|
2019-05-13 13:29:54 -05:00
|
|
|
check_lit(cx, &lit.node, e);
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_lit(cx: &LateContext<'_, '_>, lit: &LitKind, e: &Expr<'_>) {
|
2019-05-13 13:29:54 -05:00
|
|
|
match *lit {
|
2019-11-07 06:27:00 -06:00
|
|
|
LitKind::Float(s, LitFloatType::Suffixed(fty)) => match fty {
|
|
|
|
FloatTy::F32 => check_known_consts(cx, e, s, "f32"),
|
|
|
|
FloatTy::F64 => check_known_consts(cx, e, s, "f64"),
|
|
|
|
},
|
|
|
|
LitKind::Float(s, LitFloatType::Unsuffixed) => check_known_consts(cx, e, s, "f{32, 64}"),
|
2016-01-03 22:26:12 -06:00
|
|
|
_ => (),
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_known_consts(cx: &LateContext<'_, '_>, e: &Expr<'_>, s: symbol::Symbol, module: &str) {
|
2017-03-30 03:21:13 -05:00
|
|
|
let s = s.as_str();
|
2016-10-29 11:56:12 -05:00
|
|
|
if s.parse::<f64>().is_ok() {
|
2019-05-17 18:34:52 -05:00
|
|
|
for &(constant, name, min_digits) in &KNOWN_CONSTS {
|
2017-03-30 03:21:13 -05:00
|
|
|
if is_approx_const(constant, &s, min_digits) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
APPROX_CONSTANT,
|
|
|
|
e.span,
|
|
|
|
&format!(
|
|
|
|
"approximate value of `{}::consts::{}` found. \
|
2017-09-05 04:33:04 -05:00
|
|
|
Consider using it directly",
|
2018-05-22 03:21:42 -05:00
|
|
|
module, &name
|
2017-08-09 02:30:56 -05:00
|
|
|
),
|
|
|
|
);
|
2015-10-23 23:30:57 -05:00
|
|
|
return;
|
2015-10-22 17:19:03 -05:00
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-04 05:01:34 -05:00
|
|
|
}
|
2015-10-23 23:30:57 -05:00
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
/// Returns `false` if the number of significant figures in `value` are
|
2015-10-23 23:30:57 -05:00
|
|
|
/// less than `min_digits`; otherwise, returns true if `value` is equal
|
|
|
|
/// to `constant`, rounded to the number of digits present in `value`.
|
2019-09-18 01:37:41 -05:00
|
|
|
#[must_use]
|
2015-10-23 23:30:57 -05:00
|
|
|
fn is_approx_const(constant: f64, value: &str, min_digits: usize) -> bool {
|
|
|
|
if value.len() <= min_digits {
|
|
|
|
false
|
2019-10-29 01:34:05 -05:00
|
|
|
} else if constant.to_string().starts_with(value) {
|
|
|
|
// The value is a truncated constant
|
|
|
|
true
|
2015-10-23 23:30:57 -05:00
|
|
|
} else {
|
|
|
|
let round_const = format!("{:.*}", value.len() - 2, constant);
|
2019-10-29 01:34:05 -05:00
|
|
|
value == round_const
|
2015-10-23 23:30:57 -05:00
|
|
|
}
|
|
|
|
}
|