2018-10-06 09:18:06 -07:00
|
|
|
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
|
2018-09-15 10:21:58 +03:00
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-07-19 01:00:54 -07:00
|
|
|
use if_chain::if_chain;
|
2018-09-15 10:21:58 +03:00
|
|
|
use crate::rustc::ty::{self, Ty};
|
|
|
|
use crate::syntax::source_map::Span;
|
2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::{higher, is_copy, snippet, span_lint_and_sugg};
|
|
|
|
use crate::consts::constant;
|
2016-01-29 01:54:10 +01:00
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for usage of `&vec![..]` when using `&[..]` would
|
|
|
|
/// be possible.
|
2016-01-29 01:54:10 +01:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is less efficient.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-01-29 22:49:48 +01:00
|
|
|
/// ```rust,ignore
|
2016-01-29 01:54:10 +01:00
|
|
|
/// foo(&vec![1, 2])
|
|
|
|
/// ```
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2016-01-29 01:54:10 +01:00
|
|
|
pub USELESS_VEC,
|
2018-03-28 15:24:26 +02:00
|
|
|
perf,
|
2016-01-29 01:54:10 +01:00
|
|
|
"useless `vec!`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
2016-06-10 16:17:20 +02:00
|
|
|
pub struct Pass;
|
2016-01-29 01:54:10 +01:00
|
|
|
|
2016-06-10 16:17:20 +02:00
|
|
|
impl LintPass for Pass {
|
2016-01-29 01:54:10 +01:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(USELESS_VEC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-03-03 20:09:31 +01:00
|
|
|
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
2018-08-22 23:34:52 +02:00
|
|
|
if let ty::Ref(_, ty, _) = cx.tables.expr_ty_adjusted(expr).sty;
|
|
|
|
if let ty::Slice(..) = ty.sty;
|
2018-07-12 15:30:57 +08:00
|
|
|
if let ExprKind::AddrOf(_, ref addressee) = expr.node;
|
2017-10-23 15:18:02 -04:00
|
|
|
if let Some(vec_args) = higher::vec_macro(cx, addressee);
|
|
|
|
then {
|
|
|
|
check_vec_macro(cx, &vec_args, expr.span);
|
|
|
|
}
|
|
|
|
}
|
2016-03-28 23:32:55 +02:00
|
|
|
|
|
|
|
// search for `for _ in vec![…]`
|
2017-10-23 15:18:02 -04:00
|
|
|
if_chain! {
|
|
|
|
if let Some((_, arg, _)) = higher::for_loop(expr);
|
|
|
|
if let Some(vec_args) = higher::vec_macro(cx, arg);
|
|
|
|
if is_copy(cx, vec_type(cx.tables.expr_ty_adjusted(arg)));
|
|
|
|
then {
|
|
|
|
// report the error around the `vec!` not inside `<std macros>:`
|
2017-11-05 04:56:05 +09:00
|
|
|
let span = arg.span
|
|
|
|
.ctxt()
|
|
|
|
.outer()
|
|
|
|
.expn_info()
|
|
|
|
.map(|info| info.call_site)
|
|
|
|
.expect("unable to get call_site");
|
2017-10-23 15:18:02 -04:00
|
|
|
check_vec_macro(cx, &vec_args, span);
|
|
|
|
}
|
|
|
|
}
|
2016-03-28 23:32:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 15:34:04 +02:00
|
|
|
fn check_vec_macro<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, vec_args: &higher::VecArgs<'tcx>, span: Span) {
|
2016-07-14 19:31:17 +02:00
|
|
|
let snippet = match *vec_args {
|
|
|
|
higher::VecArgs::Repeat(elem, len) => {
|
2018-05-13 13:16:31 +02:00
|
|
|
if constant(cx, cx.tables, len).is_some() {
|
2017-02-05 13:41:09 +09:00
|
|
|
format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len"))
|
2016-07-14 19:31:17 +02:00
|
|
|
} else {
|
|
|
|
return;
|
2016-03-28 23:32:55 +02:00
|
|
|
}
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2017-09-05 11:33:04 +02:00
|
|
|
higher::VecArgs::Vec(args) => if let Some(last) = args.iter().last() {
|
|
|
|
let span = args[0].span.to(last.span);
|
2016-01-29 01:54:10 +01:00
|
|
|
|
2017-02-05 13:41:09 +09:00
|
|
|
format!("&[{}]", snippet(cx, span, ".."))
|
2017-09-05 11:33:04 +02:00
|
|
|
} else {
|
|
|
|
"&[]".into()
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-07-14 19:31:17 +02:00
|
|
|
};
|
2016-01-29 01:54:10 +01:00
|
|
|
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
USELESS_VEC,
|
|
|
|
span,
|
|
|
|
"useless use of `vec!`",
|
|
|
|
"you can use a slice directly",
|
|
|
|
snippet,
|
|
|
|
);
|
2016-01-29 01:54:10 +01:00
|
|
|
}
|
|
|
|
|
2016-07-14 19:31:17 +02:00
|
|
|
/// Return the item type of the vector (ie. the `T` in `Vec<T>`).
|
2018-07-23 13:01:12 +02:00
|
|
|
fn vec_type(ty: Ty<'_>) -> Ty<'_> {
|
2018-08-22 23:34:52 +02:00
|
|
|
if let ty::Adt(_, substs) = ty.sty {
|
2016-08-28 17:25:41 +02:00
|
|
|
substs.type_at(0)
|
2016-07-14 19:31:17 +02:00
|
|
|
} else {
|
|
|
|
panic!("The type of `vec!` is a not a struct?");
|
|
|
|
}
|
|
|
|
}
|