2019-05-14 03:06:21 -05:00
|
|
|
use crate::utils::{match_def_path, paths, snippet, span_lint_and_then, walk_ptrs_ty_depth};
|
2018-10-20 22:46:13 -05:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 10:39:50 -06:00
|
|
|
use rustc_hir::{BorrowKind, Expr, ExprKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2018-10-20 22:46:13 -05:00
|
|
|
|
|
|
|
use std::iter;
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for calls of `mem::discriminant()` on a non-enum type.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The value of `mem::discriminant()` on non-enum types
|
|
|
|
/// is unspecified.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2019-03-05 16:23:50 -06:00
|
|
|
/// use std::mem;
|
|
|
|
///
|
2019-03-05 10:50:33 -06:00
|
|
|
/// mem::discriminant(&"hello");
|
|
|
|
/// mem::discriminant(&&Some(2));
|
|
|
|
/// ```
|
2018-10-20 22:46:13 -05:00
|
|
|
pub MEM_DISCRIMINANT_NON_ENUM,
|
|
|
|
correctness,
|
2020-01-06 00:30:43 -06:00
|
|
|
"calling `mem::descriminant` on non-enum type"
|
2018-10-20 22:46:13 -05:00
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(MemDiscriminant => [MEM_DISCRIMINANT_NON_ENUM]);
|
2018-10-20 22:46:13 -05:00
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MemDiscriminant {
|
2019-12-27 01:12:26 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2018-10-20 22:46:13 -05:00
|
|
|
if_chain! {
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Call(ref func, ref func_args) = expr.kind;
|
2018-10-20 22:46:13 -05:00
|
|
|
// is `mem::discriminant`
|
2019-09-27 10:16:06 -05:00
|
|
|
if let ExprKind::Path(ref func_qpath) = func.kind;
|
2020-06-25 21:55:23 -05:00
|
|
|
if let Some(def_id) = cx.qpath_res(func_qpath, func.hir_id).opt_def_id();
|
2019-05-17 16:53:54 -05:00
|
|
|
if match_def_path(cx, def_id, &paths::MEM_DISCRIMINANT);
|
2018-10-20 22:46:13 -05:00
|
|
|
// type is non-enum
|
2020-06-25 18:56:23 -05:00
|
|
|
let ty_param = cx.tables().node_substs(func.hir_id).type_at(0);
|
2018-10-20 22:46:13 -05:00
|
|
|
if !ty_param.is_enum();
|
|
|
|
|
|
|
|
then {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MEM_DISCRIMINANT_NON_ENUM,
|
|
|
|
expr.span,
|
|
|
|
&format!("calling `mem::discriminant` on non-enum type `{}`", ty_param),
|
2020-04-17 01:08:00 -05:00
|
|
|
|diag| {
|
2018-10-20 22:46:13 -05:00
|
|
|
// if this is a reference to an enum, suggest dereferencing
|
|
|
|
let (base_ty, ptr_depth) = walk_ptrs_ty_depth(ty_param);
|
|
|
|
if ptr_depth >= 1 && base_ty.is_enum() {
|
|
|
|
let param = &func_args[0];
|
|
|
|
|
|
|
|
// cancel out '&'s first
|
|
|
|
let mut derefs_needed = ptr_depth;
|
|
|
|
let mut cur_expr = param;
|
|
|
|
while derefs_needed > 0 {
|
2019-11-27 16:30:10 -06:00
|
|
|
if let ExprKind::AddrOf(BorrowKind::Ref, _, ref inner_expr) = cur_expr.kind {
|
2018-10-20 22:46:13 -05:00
|
|
|
derefs_needed -= 1;
|
|
|
|
cur_expr = inner_expr;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let derefs: String = iter::repeat('*').take(derefs_needed).collect();
|
2020-04-17 01:08:00 -05:00
|
|
|
diag.span_suggestion(
|
2018-10-20 22:46:13 -05:00
|
|
|
param.span,
|
|
|
|
"try dereferencing",
|
|
|
|
format!("{}{}", derefs, snippet(cx, cur_expr.span, "<param>")),
|
2018-10-21 14:27:01 -05:00
|
|
|
Applicability::MachineApplicable,
|
2018-10-20 22:46:13 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|