2016-02-01 12:53:03 -06:00
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::ty;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-04-14 11:13:15 -05:00
|
|
|
use utils::{match_def_path, paths, span_note_and_lint};
|
2016-02-01 12:53:03 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for calls to `std::mem::drop` with a reference
|
|
|
|
/// instead of an owned value.
|
2016-02-01 12:53:03 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Calling `drop` on a reference will only drop the
|
|
|
|
/// reference itself, which is a no-op. It will not call the `drop` method (from
|
|
|
|
/// the `Drop` trait implementation) on the underlying referenced value, which
|
|
|
|
/// is likely what was intended.
|
2016-02-01 12:53:03 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2016-02-01 12:53:03 -06:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let mut lock_guard = mutex.lock();
|
2016-02-05 17:41:54 -06:00
|
|
|
/// std::mem::drop(&lock_guard) // Should have been drop(lock_guard), mutex still locked
|
2016-02-01 12:53:03 -06:00
|
|
|
/// operation_that_requires_mutex_to_be_unlocked();
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub DROP_REF,
|
|
|
|
Warn,
|
|
|
|
"calls to `std::mem::drop` with a reference instead of an owned value"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2016-02-01 12:53:03 -06:00
|
|
|
|
2016-12-29 21:43:22 -06:00
|
|
|
/// **What it does:** Checks for calls to `std::mem::forget` with a reference
|
|
|
|
/// instead of an owned value.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** Calling `forget` on a reference will only forget the
|
|
|
|
/// reference itself, which is a no-op. It will not forget the underlying referenced
|
|
|
|
/// value, which is likely what was intended.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let x = Box::new(1);
|
|
|
|
/// std::mem::forget(&x) // Should have been forget(x), x will still be dropped
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub FORGET_REF,
|
|
|
|
Warn,
|
|
|
|
"calls to `std::mem::forget` with a reference instead of an owned value"
|
|
|
|
}
|
|
|
|
|
2016-02-01 12:53:03 -06:00
|
|
|
#[allow(missing_copy_implementations)]
|
2016-06-10 09:17:20 -05:00
|
|
|
pub struct Pass;
|
2016-02-01 12:53:03 -06:00
|
|
|
|
2016-06-10 09:17:20 -05:00
|
|
|
impl LintPass for Pass {
|
2016-02-01 12:53:03 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-12-29 21:43:22 -06:00
|
|
|
lint_array!(DROP_REF, FORGET_REF)
|
2016-02-01 12:53:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-12-29 21:22:24 -06:00
|
|
|
if_let_chain!{[
|
|
|
|
let ExprCall(ref path, ref args) = expr.node,
|
|
|
|
let ExprPath(ref qpath) = path.node,
|
|
|
|
args.len() == 1,
|
|
|
|
], {
|
2017-01-13 10:04:56 -06:00
|
|
|
let def_id = cx.tables.qpath_def(qpath, path.id).def_id();
|
2016-12-29 21:43:22 -06:00
|
|
|
let lint;
|
|
|
|
let msg;
|
2017-01-13 10:04:56 -06:00
|
|
|
if match_def_path(cx.tcx, def_id, &paths::DROP) {
|
2016-12-29 21:43:22 -06:00
|
|
|
lint = DROP_REF;
|
|
|
|
msg = "call to `std::mem::drop` with a reference argument. \
|
|
|
|
Dropping a reference does nothing";
|
2017-01-13 10:04:56 -06:00
|
|
|
} else if match_def_path(cx.tcx, def_id, &paths::MEM_FORGET) {
|
2016-12-29 21:43:22 -06:00
|
|
|
lint = FORGET_REF;
|
|
|
|
msg = "call to `std::mem::forget` with a reference argument. \
|
|
|
|
Forgetting a reference does nothing";
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
2016-12-29 21:22:24 -06:00
|
|
|
let arg = &args[0];
|
2017-01-13 10:04:56 -06:00
|
|
|
let arg_ty = cx.tables.expr_ty(arg);
|
2016-12-29 21:22:24 -06:00
|
|
|
if let ty::TyRef(..) = arg_ty.sty {
|
|
|
|
span_note_and_lint(cx,
|
2016-12-29 21:43:22 -06:00
|
|
|
lint,
|
2016-12-29 21:22:24 -06:00
|
|
|
expr.span,
|
2016-12-29 21:43:22 -06:00
|
|
|
msg,
|
2016-12-29 21:22:24 -06:00
|
|
|
arg.span,
|
|
|
|
&format!("argument has type {}", arg_ty.sty));
|
2016-02-01 12:53:03 -06:00
|
|
|
}
|
2016-12-29 21:22:24 -06:00
|
|
|
}}
|
2016-02-01 12:53:03 -06:00
|
|
|
}
|
|
|
|
}
|