2017-09-05 04:33:04 -05:00
|
|
|
use consts::{constant_simple, Constant};
|
2015-09-18 21:53:04 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2017-09-05 04:33:04 -05:00
|
|
|
use std::cmp::{Ordering, PartialOrd};
|
2016-04-26 06:31:52 -05:00
|
|
|
use utils::{match_def_path, paths, span_lint};
|
2015-09-05 05:46:34 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for expressions where `std::cmp::min` and `max` are
|
|
|
|
/// used to clamp values, but switched so that the result is constant.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** This is in all probability not the intended outcome. At
|
|
|
|
/// the least it hurts readability of the code.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// min(0, max(100, x))
|
|
|
|
/// ```
|
|
|
|
/// It will always be equal to `0`. Probably the author meant to clamp the value
|
|
|
|
/// between 0 and 100, but has erroneously swapped `min` and `max`.
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub MIN_MAX,
|
|
|
|
Warn,
|
2016-02-05 17:13:29 -06:00
|
|
|
"`min(_, max(_, _))` (or vice versa) with bounds clamping the result to a constant"
|
|
|
|
}
|
2015-09-05 05:46:34 -05:00
|
|
|
|
|
|
|
#[allow(missing_copy_implementations)]
|
|
|
|
pub struct MinMaxPass;
|
|
|
|
|
|
|
|
impl LintPass for MinMaxPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-11-16 23:22:57 -06:00
|
|
|
lint_array!(MIN_MAX)
|
2015-09-05 05:46:34 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-09-05 05:46:34 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MinMaxPass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2015-11-11 10:08:33 -06:00
|
|
|
if let Some((outer_max, outer_c, oe)) = min_max(cx, expr) {
|
|
|
|
if let Some((inner_max, inner_c, _)) = min_max(cx, oe) {
|
2016-01-03 22:26:12 -06:00
|
|
|
if outer_max == inner_max {
|
|
|
|
return;
|
|
|
|
}
|
2015-09-05 05:46:34 -05:00
|
|
|
match (outer_max, outer_c.partial_cmp(&inner_c)) {
|
2017-09-05 04:33:04 -05:00
|
|
|
(_, None) | (MinMax::Max, Some(Ordering::Less)) | (MinMax::Min, Some(Ordering::Greater)) => (),
|
2015-09-05 05:46:34 -05:00
|
|
|
_ => {
|
2016-01-03 22:26:12 -06:00
|
|
|
span_lint(cx, MIN_MAX, expr.span, "this min/max combination leads to constant result");
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-09-05 05:46:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
|
|
enum MinMax {
|
|
|
|
Min,
|
|
|
|
Max,
|
|
|
|
}
|
|
|
|
|
2015-11-11 10:08:33 -06:00
|
|
|
fn min_max<'a>(cx: &LateContext, expr: &'a Expr) -> Option<(MinMax, Constant, &'a Expr)> {
|
2015-09-05 06:15:18 -05:00
|
|
|
if let ExprCall(ref path, ref args) = expr.node {
|
2016-12-01 15:31:56 -06:00
|
|
|
if let ExprPath(ref qpath) = path.node {
|
2017-08-15 04:10:49 -05:00
|
|
|
let def_id = cx.tables.qpath_def(qpath, path.hir_id).def_id();
|
2015-11-11 10:08:33 -06:00
|
|
|
|
2017-01-13 10:04:56 -06:00
|
|
|
if match_def_path(cx.tcx, def_id, &paths::CMP_MIN) {
|
2017-03-01 11:46:18 -06:00
|
|
|
fetch_const(cx, args, MinMax::Min)
|
2017-01-13 10:04:56 -06:00
|
|
|
} else if match_def_path(cx.tcx, def_id, &paths::CMP_MAX) {
|
2017-03-01 11:46:18 -06:00
|
|
|
fetch_const(cx, args, MinMax::Max)
|
2015-09-05 05:46:34 -05:00
|
|
|
} else {
|
2016-01-13 11:32:05 -06:00
|
|
|
None
|
2015-09-05 05:46:34 -05:00
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
2015-09-05 05:46:34 -05:00
|
|
|
|
2017-03-01 11:46:18 -06:00
|
|
|
fn fetch_const<'a>(cx: &LateContext, args: &'a [Expr], m: MinMax) -> Option<(MinMax, Constant, &'a Expr)> {
|
2016-01-03 22:26:12 -06:00
|
|
|
if args.len() != 2 {
|
|
|
|
return None;
|
|
|
|
}
|
2017-03-01 11:46:18 -06:00
|
|
|
if let Some(c) = constant_simple(cx, &args[0]) {
|
|
|
|
if constant_simple(cx, &args[1]).is_none() {
|
2016-01-03 22:26:12 -06:00
|
|
|
// otherwise ignore
|
2015-09-05 05:46:34 -05:00
|
|
|
Some((m, c, &args[1]))
|
2016-01-03 22:26:12 -06:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-03-01 11:46:18 -06:00
|
|
|
} else if let Some(c) = constant_simple(cx, &args[1]) {
|
2016-06-21 16:53:24 -05:00
|
|
|
Some((m, c, &args[0]))
|
2015-09-05 05:46:34 -05:00
|
|
|
} else {
|
2016-06-21 16:53:24 -05:00
|
|
|
None
|
2015-09-05 05:46:34 -05:00
|
|
|
}
|
|
|
|
}
|