rust/clippy_lints/src/zero_div_zero.rs

62 lines
2.5 KiB
Rust
Raw Normal View History

2018-05-30 10:15:50 +02:00
use crate::consts::{constant_simple, Constant};
use crate::utils::span_lint_and_help;
2018-11-27 21:14:15 +01:00
use if_chain::if_chain;
2020-02-21 09:39:38 +01:00
use rustc_hir::{BinOpKind, Expr, ExprKind};
2020-01-12 15:08:41 +09:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 20:37:08 +09:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2018-03-28 15:24:26 +02:00
declare_clippy_lint! {
/// **What it does:** Checks for `0.0 / 0.0`.
///
/// **Why is this bad?** It's less readable than `std::f32::NAN` or
/// `std::f64::NAN`.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// 0.0f32 / 0.0;
/// ```
pub ZERO_DIVIDED_BY_ZERO,
2018-03-28 15:24:26 +02:00
complexity,
2020-01-06 15:30:43 +09:00
"usage of `0.0 / 0.0` to obtain NaN instead of `std::f32::NAN` or `std::f64::NAN`"
}
2019-04-08 13:43:55 -07:00
declare_lint_pass!(ZeroDiv => [ZERO_DIVIDED_BY_ZERO]);
2019-04-08 13:43:55 -07:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ZeroDiv {
2019-12-27 16:12:26 +09:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
// check for instances of 0.0/0.0
if_chain! {
2019-09-27 17:16:06 +02:00
if let ExprKind::Binary(ref op, ref left, ref right) = expr.kind;
2018-07-12 15:50:09 +08:00
if let BinOpKind::Div = op.node;
2016-06-06 02:09:19 +02:00
// TODO - constant_simple does not fold many operations involving floats.
// That's probably fine for this lint - it's pretty unlikely that someone would
// do something like 0.0/(2.0 - 2.0), but it would be nice to warn on that case too.
2018-05-13 13:16:31 +02:00
if let Some(lhs_value) = constant_simple(cx, cx.tables, left);
if let Some(rhs_value) = constant_simple(cx, cx.tables, right);
2018-03-13 11:38:11 +01:00
if Constant::F32(0.0) == lhs_value || Constant::F64(0.0) == lhs_value;
if Constant::F32(0.0) == rhs_value || Constant::F64(0.0) == rhs_value;
then {
// since we're about to suggest a use of std::f32::NaN or std::f64::NaN,
// match the precision of the literals that are given.
2018-03-13 11:38:11 +01:00
let float_type = match (lhs_value, rhs_value) {
(Constant::F64(_), _)
| (_, Constant::F64(_)) => "f64",
_ => "f32"
};
span_lint_and_help(
cx,
ZERO_DIVIDED_BY_ZERO,
expr.span,
2020-01-06 15:30:43 +09:00
"constant division of `0.0` with `0.0` will always result in NaN",
&format!(
"Consider using `std::{}::NAN` if you would like a constant representing NaN",
float_type,
),
);
}
}
}
}