2021-03-15 19:55:45 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2021-09-17 13:42:32 -05:00
|
|
|
use clippy_utils::{is_expr_path_def_path, paths, ty::is_uninit_value_valid_for_ty};
|
2021-03-02 10:03:47 -06:00
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_hir as hir;
|
|
|
|
use rustc_lint::LateContext;
|
|
|
|
|
|
|
|
use super::UNINIT_ASSUMED_INIT;
|
|
|
|
|
|
|
|
/// lint for `MaybeUninit::uninit().assume_init()` (we already have the latter)
|
2021-03-10 23:40:20 -06:00
|
|
|
pub(super) fn check(cx: &LateContext<'_>, expr: &hir::Expr<'_>, recv: &hir::Expr<'_>) {
|
2021-03-02 10:03:47 -06:00
|
|
|
if_chain! {
|
2021-04-02 16:35:32 -05:00
|
|
|
if let hir::ExprKind::Call(callee, args) = recv.kind;
|
2021-03-02 10:03:47 -06:00
|
|
|
if args.is_empty();
|
2021-04-07 15:19:25 -05:00
|
|
|
if is_expr_path_def_path(cx, callee, &paths::MEM_MAYBEUNINIT_UNINIT);
|
2021-09-17 13:42:32 -05:00
|
|
|
if !is_uninit_value_valid_for_ty(cx, cx.typeck_results().expr_ty_adjusted(expr));
|
2021-03-02 10:03:47 -06:00
|
|
|
then {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
UNINIT_ASSUMED_INIT,
|
2021-03-10 23:40:20 -06:00
|
|
|
expr.span,
|
2021-03-02 10:03:47 -06:00
|
|
|
"this call for this type may be undefined behavior"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|