2021-06-03 06:41:37 +00:00
|
|
|
use clippy_utils::consts::{constant_simple, Constant};
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2022-10-06 07:44:38 +00:00
|
|
|
use clippy_utils::is_trait_method;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::{Expr, ExprKind};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2023-12-01 17:21:58 +00:00
|
|
|
use rustc_session::declare_lint_pass;
|
2022-02-26 13:26:21 +00:00
|
|
|
use rustc_span::sym;
|
2018-06-19 05:37:09 +00:00
|
|
|
use std::cmp::Ordering;
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for expressions where `std::cmp::min` and `max` are
|
2019-03-05 16:50:33 +00:00
|
|
|
/// used to clamp values, but switched so that the result is constant.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// This is in all probability not the intended outcome. At
|
2019-03-05 16:50:33 +00:00
|
|
|
/// the least it hurts readability of the code.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2022-06-04 11:34:07 +00:00
|
|
|
/// ```rust,ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// min(0, max(100, x))
|
2022-06-04 11:34:07 +00:00
|
|
|
///
|
|
|
|
/// // or
|
|
|
|
///
|
2020-08-11 13:43:21 +00:00
|
|
|
/// x.max(100).min(0)
|
|
|
|
/// ```
|
2019-03-05 16:50:33 +00:00
|
|
|
/// 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`.
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 08:18:36 +00:00
|
|
|
pub MIN_MAX,
|
2018-03-28 13:24:26 +00:00
|
|
|
correctness,
|
2016-02-05 23:13:29 +00:00
|
|
|
"`min(_, max(_, _))` (or vice versa) with bounds clamping the result to a constant"
|
|
|
|
}
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(MinMaxPass => [MIN_MAX]);
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MinMaxPass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2015-11-11 16:08:33 +00:00
|
|
|
if let Some((outer_max, outer_c, oe)) = min_max(cx, expr) {
|
2018-06-16 16:33:11 +00:00
|
|
|
if let Some((inner_max, inner_c, ie)) = min_max(cx, oe) {
|
2016-01-04 04:26:12 +00:00
|
|
|
if outer_max == inner_max {
|
|
|
|
return;
|
|
|
|
}
|
2018-06-16 16:33:11 +00:00
|
|
|
match (
|
|
|
|
outer_max,
|
2020-07-17 08:47:04 +00:00
|
|
|
Constant::partial_cmp(cx.tcx, cx.typeck_results().expr_ty(ie), &outer_c, &inner_c),
|
2018-06-16 16:33:11 +00:00
|
|
|
) {
|
2017-09-05 09:33:04 +00:00
|
|
|
(_, None) | (MinMax::Max, Some(Ordering::Less)) | (MinMax::Min, Some(Ordering::Greater)) => (),
|
2015-09-05 10:46:34 +00:00
|
|
|
_ => {
|
2018-06-16 16:33:11 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
MIN_MAX,
|
|
|
|
expr.span,
|
2020-01-06 06:30:43 +00:00
|
|
|
"this `min`/`max` combination leads to constant result",
|
2018-06-16 16:33:11 +00:00
|
|
|
);
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2015-09-05 10:46:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
|
2015-09-05 10:46:34 +00:00
|
|
|
enum MinMax {
|
|
|
|
Min,
|
|
|
|
Max,
|
|
|
|
}
|
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
fn min_max<'a, 'tcx>(cx: &LateContext<'tcx>, expr: &'a Expr<'a>) -> Option<(MinMax, Constant<'tcx>, &'a Expr<'a>)> {
|
2020-08-11 13:43:21 +00:00
|
|
|
match expr.kind {
|
2021-04-08 15:50:13 +00:00
|
|
|
ExprKind::Call(path, args) => {
|
2020-08-11 13:43:21 +00:00
|
|
|
if let ExprKind::Path(ref qpath) = path.kind {
|
|
|
|
cx.typeck_results()
|
|
|
|
.qpath_res(qpath, path.hir_id)
|
|
|
|
.opt_def_id()
|
2022-02-26 13:26:21 +00:00
|
|
|
.and_then(|def_id| match cx.tcx.get_diagnostic_name(def_id) {
|
2022-09-01 09:43:35 +00:00
|
|
|
Some(sym::cmp_min) => fetch_const(cx, None, args, MinMax::Min),
|
|
|
|
Some(sym::cmp_max) => fetch_const(cx, None, args, MinMax::Max),
|
2022-02-26 13:26:21 +00:00
|
|
|
_ => None,
|
2020-08-11 13:43:21 +00:00
|
|
|
})
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
2022-09-01 09:43:35 +00:00
|
|
|
ExprKind::MethodCall(path, receiver, args @ [_], _) => {
|
2022-10-06 07:44:38 +00:00
|
|
|
if cx.typeck_results().expr_ty(receiver).is_floating_point() || is_trait_method(cx, expr, sym::Ord) {
|
2022-09-09 11:36:26 +00:00
|
|
|
if path.ident.name == sym!(max) {
|
|
|
|
fetch_const(cx, Some(receiver), args, MinMax::Max)
|
|
|
|
} else if path.ident.name == sym!(min) {
|
|
|
|
fetch_const(cx, Some(receiver), args, MinMax::Min)
|
2020-08-11 13:43:21 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2022-09-09 11:36:26 +00:00
|
|
|
} else {
|
|
|
|
None
|
2020-08-11 13:43:21 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => None,
|
2016-01-04 04:26:12 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-05 10:46:34 +00:00
|
|
|
|
2023-07-02 12:35:19 +00:00
|
|
|
fn fetch_const<'a, 'tcx>(
|
|
|
|
cx: &LateContext<'tcx>,
|
2022-09-01 09:43:35 +00:00
|
|
|
receiver: Option<&'a Expr<'a>>,
|
|
|
|
args: &'a [Expr<'a>],
|
|
|
|
m: MinMax,
|
2023-07-02 12:35:19 +00:00
|
|
|
) -> Option<(MinMax, Constant<'tcx>, &'a Expr<'a>)> {
|
2022-09-09 11:36:26 +00:00
|
|
|
let mut args = receiver.into_iter().chain(args);
|
|
|
|
let first_arg = args.next()?;
|
|
|
|
let second_arg = args.next()?;
|
2022-09-02 13:48:14 +00:00
|
|
|
if args.next().is_some() {
|
2016-01-04 04:26:12 +00:00
|
|
|
return None;
|
|
|
|
}
|
2022-09-09 11:36:26 +00:00
|
|
|
constant_simple(cx, cx.typeck_results(), first_arg).map_or_else(
|
|
|
|
|| constant_simple(cx, cx.typeck_results(), second_arg).map(|c| (m, c, first_arg)),
|
2020-07-14 12:59:59 +00:00
|
|
|
|c| {
|
2022-09-09 11:36:26 +00:00
|
|
|
if constant_simple(cx, cx.typeck_results(), second_arg).is_none() {
|
2020-07-14 12:59:59 +00:00
|
|
|
// otherwise ignore
|
2022-09-09 11:36:26 +00:00
|
|
|
Some((m, c, second_arg))
|
2020-07-14 12:59:59 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2015-09-05 10:46:34 +00:00
|
|
|
}
|