2016-02-24 10:38:57 -06:00
|
|
|
use consts::{Constant, constant_simple, FloatWidth};
|
2015-10-11 21:22:13 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2015-11-16 23:22:57 -06:00
|
|
|
use utils::span_help_and_lint;
|
2015-10-11 21:22:13 -05:00
|
|
|
|
2016-02-05 17:41:54 -06:00
|
|
|
/// `ZeroDivZeroPass` is a pass that checks for a binary expression that consists
|
2016-03-19 11:48:29 -05:00
|
|
|
/// `of 0.0/0.0`, which is always `NaN`. It is more clear to replace instances of
|
2016-02-05 17:41:54 -06:00
|
|
|
/// `0.0/0.0` with `std::f32::NaN` or `std::f64::NaN`, depending on the precision.
|
2015-10-11 21:22:13 -05:00
|
|
|
pub struct ZeroDivZeroPass;
|
|
|
|
|
2016-02-05 17:41:54 -06:00
|
|
|
/// **What it does:** This lint checks for `0.0 / 0.0`.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** It's less readable than `std::f32::NAN` or `std::f64::NAN`
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example** `0.0f32 / 0.0`
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub ZERO_DIVIDED_BY_ZERO,
|
|
|
|
Warn,
|
|
|
|
"usage of `0.0 / 0.0` to obtain NaN instead of std::f32::NaN or std::f64::NaN"
|
|
|
|
}
|
2015-10-11 21:22:13 -05:00
|
|
|
|
|
|
|
impl LintPass for ZeroDivZeroPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(ZERO_DIVIDED_BY_ZERO)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl LateLintPass for ZeroDivZeroPass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
|
|
|
// check for instances of 0.0/0.0
|
|
|
|
if_let_chain! {
|
|
|
|
[
|
|
|
|
let ExprBinary(ref op, ref left, ref right) = expr.node,
|
|
|
|
let BinOp_::BiDiv = op.node,
|
|
|
|
// 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.
|
2016-02-01 05:51:33 -06:00
|
|
|
let Some(Constant::Float(ref lhs_value, lhs_width)) = constant_simple(left),
|
|
|
|
let Some(Constant::Float(ref rhs_value, rhs_width)) = constant_simple(right),
|
2015-10-11 21:22:13 -05:00
|
|
|
let Some(0.0) = lhs_value.parse().ok(),
|
|
|
|
let Some(0.0) = rhs_value.parse().ok()
|
|
|
|
],
|
|
|
|
{
|
|
|
|
// 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.
|
|
|
|
let float_type = match (lhs_width, rhs_width) {
|
2016-02-15 10:00:06 -06:00
|
|
|
(FloatWidth::F64, _)
|
|
|
|
| (_, FloatWidth::F64) => "f64",
|
2015-10-11 21:22:13 -05:00
|
|
|
_ => "f32"
|
|
|
|
};
|
|
|
|
span_help_and_lint(cx, ZERO_DIVIDED_BY_ZERO, expr.span,
|
|
|
|
"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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|