2018-05-30 08:15:50 +00:00
|
|
|
use crate::consts::{constant_simple, Constant};
|
2020-01-27 01:56:22 +00:00
|
|
|
use crate::utils::span_lint_and_help;
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::{BinOpKind, Expr, ExprKind};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2015-10-12 02:22:13 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **What it does:** Checks for `0.0 / 0.0`.
|
|
|
|
///
|
2020-04-07 21:41:00 +00:00
|
|
|
/// **Why is this bad?** It's less readable than `f32::NAN` or `f64::NAN`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2020-06-09 14:36:01 +00:00
|
|
|
/// // Bad
|
|
|
|
/// let nan = 0.0f32 / 0.0;
|
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// let nan = f32::NAN;
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2016-02-05 23:13:29 +00:00
|
|
|
pub ZERO_DIVIDED_BY_ZERO,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2020-04-07 21:41:00 +00:00
|
|
|
"usage of `0.0 / 0.0` to obtain NaN instead of `f32::NAN` or `f64::NAN`"
|
2016-02-05 23:13:29 +00:00
|
|
|
}
|
2015-10-12 02:22:13 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(ZeroDiv => [ZERO_DIVIDED_BY_ZERO]);
|
2016-08-06 07:55:04 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for ZeroDiv {
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2015-10-12 02:22:13 +00:00
|
|
|
// check for instances of 0.0/0.0
|
2017-10-23 19:18:02 +00:00
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Binary(ref op, ref left, ref right) = expr.kind;
|
2018-07-12 07:50:09 +00:00
|
|
|
if let BinOpKind::Div = op.node;
|
2016-06-06 00:09:19 +00: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.
|
2020-06-25 23:56:23 +00: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 10:38:11 +00: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;
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
2020-04-07 21:41:00 +00:00
|
|
|
// since we're about to suggest a use of f32::NAN or f64::NAN,
|
2017-10-23 19:18:02 +00:00
|
|
|
// match the precision of the literals that are given.
|
2018-03-13 10:38:11 +00:00
|
|
|
let float_type = match (lhs_value, rhs_value) {
|
|
|
|
(Constant::F64(_), _)
|
|
|
|
| (_, Constant::F64(_)) => "f64",
|
2017-10-23 19:18:02 +00:00
|
|
|
_ => "f32"
|
|
|
|
};
|
2020-01-27 01:56:22 +00:00
|
|
|
span_lint_and_help(
|
2017-11-04 19:56:05 +00:00
|
|
|
cx,
|
|
|
|
ZERO_DIVIDED_BY_ZERO,
|
|
|
|
expr.span,
|
2020-01-06 06:30:43 +00:00
|
|
|
"constant division of `0.0` with `0.0` will always result in NaN",
|
2020-04-18 10:28:29 +00:00
|
|
|
None,
|
2017-11-04 19:56:05 +00:00
|
|
|
&format!(
|
2020-04-07 21:41:00 +00:00
|
|
|
"Consider using `{}::NAN` if you would like a constant representing NaN",
|
2017-11-04 19:56:05 +00:00
|
|
|
float_type,
|
|
|
|
),
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
|
|
|
}
|
2015-10-12 02:22:13 +00:00
|
|
|
}
|
|
|
|
}
|