2015-09-29 06:11:19 -05:00
|
|
|
use rustc::lint::*;
|
2016-03-27 13:59:02 -05:00
|
|
|
use rustc::ty::{TypeAndMut, TypeVariants, MethodCall, TyS};
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-02-24 10:38:57 -06:00
|
|
|
use utils::span_lint;
|
2015-09-29 06:11:19 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Detects giving a mutable reference to a function that only
|
|
|
|
/// requires an immutable reference.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** The immutable reference rules out all other references
|
|
|
|
/// to the value. Also the code misleads about the intent of the call site.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
|
|
|
/// my_vec.push(&mut value)
|
|
|
|
/// ```
|
2015-09-29 06:11:19 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub UNNECESSARY_MUT_PASSED,
|
|
|
|
Warn,
|
2016-08-06 03:18:36 -05:00
|
|
|
"an argument passed as a mutable reference although the callee only demands an \
|
2015-09-29 06:11:19 -05:00
|
|
|
immutable reference"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct UnnecessaryMutPassed;
|
|
|
|
|
|
|
|
impl LintPass for UnnecessaryMutPassed {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(UNNECESSARY_MUT_PASSED)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UnnecessaryMutPassed {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2015-09-30 06:08:29 -05:00
|
|
|
let borrowed_table = cx.tcx.tables.borrow();
|
2015-09-29 11:43:38 -05:00
|
|
|
match e.node {
|
|
|
|
ExprCall(ref fn_expr, ref arguments) => {
|
2016-02-01 04:28:39 -06:00
|
|
|
let function_type = borrowed_table.node_types
|
2016-12-20 11:21:30 -06:00
|
|
|
.get(&fn_expr.id)
|
|
|
|
.expect("A function with an unknown type is called. If this happened, the compiler would have \
|
|
|
|
aborted the compilation long ago");
|
2016-12-01 15:31:56 -06:00
|
|
|
if let ExprPath(ref path) = fn_expr.node {
|
2017-01-04 17:53:16 -06:00
|
|
|
check_arguments(cx,
|
|
|
|
arguments,
|
|
|
|
function_type,
|
|
|
|
&print::to_string(print::NO_ANN, |s| s.print_qpath(path, false)));
|
2016-02-01 04:28:39 -06:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2015-09-29 11:43:38 -05:00
|
|
|
ExprMethodCall(ref name, _, ref arguments) => {
|
|
|
|
let method_call = MethodCall::expr(e.id);
|
2016-02-01 04:28:39 -06:00
|
|
|
let method_type = borrowed_table.method_map.get(&method_call).expect("This should never happen.");
|
2016-04-26 10:05:39 -05:00
|
|
|
check_arguments(cx, arguments, method_type.ty, &name.node.as_str())
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-04-14 13:14:03 -05:00
|
|
|
_ => (),
|
2015-09-29 06:11:19 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-09-30 06:08:29 -05:00
|
|
|
|
2016-11-23 15:44:00 -06:00
|
|
|
fn check_arguments(cx: &LateContext, arguments: &[Expr], type_definition: &TyS, name: &str) {
|
2016-03-10 11:13:49 -06:00
|
|
|
match type_definition.sty {
|
2016-08-01 09:59:14 -05:00
|
|
|
TypeVariants::TyFnDef(_, _, fn_type) |
|
|
|
|
TypeVariants::TyFnPtr(fn_type) => {
|
2016-12-11 01:57:19 -06:00
|
|
|
let parameters = fn_type.sig.skip_binder().inputs();
|
2016-03-10 11:13:49 -06:00
|
|
|
for (argument, parameter) in arguments.iter().zip(parameters.iter()) {
|
|
|
|
match parameter.sty {
|
2016-04-14 13:14:03 -05:00
|
|
|
TypeVariants::TyRef(_, TypeAndMut { mutbl: MutImmutable, .. }) |
|
|
|
|
TypeVariants::TyRawPtr(TypeAndMut { mutbl: MutImmutable, .. }) => {
|
2016-03-10 11:13:49 -06:00
|
|
|
if let ExprAddrOf(MutMutable, _) = argument.node {
|
|
|
|
span_lint(cx,
|
|
|
|
UNNECESSARY_MUT_PASSED,
|
|
|
|
argument.span,
|
|
|
|
&format!("The function/method \"{}\" doesn't need a mutable reference", name));
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-04-14 13:14:03 -05:00
|
|
|
_ => (),
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-09-30 06:08:29 -05:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-03-10 11:13:49 -06:00
|
|
|
_ => (),
|
2015-09-30 06:08:29 -05:00
|
|
|
}
|
|
|
|
}
|