2018-11-20 07:06:29 -06:00
|
|
|
use crate::consts::constant;
|
2018-11-27 08:13:57 -06:00
|
|
|
use crate::utils::{higher, is_copy, snippet_with_applicability, span_lint_and_sugg};
|
2018-11-20 07:06:29 -06:00
|
|
|
use if_chain::if_chain;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::ty::{self, Ty};
|
2019-04-08 15:43:55 -05:00
|
|
|
use rustc::{declare_lint_pass, declare_tool_lint};
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use syntax::source_map::Span;
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 10:50:33 -06:00
|
|
|
/// **What it does:** Checks for usage of `&vec![..]` when using `&[..]` would
|
|
|
|
/// be possible.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is less efficient.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// foo(&vec![1, 2])
|
|
|
|
/// ```
|
2016-01-28 18:54:10 -06:00
|
|
|
pub USELESS_VEC,
|
2018-03-28 08:24:26 -05:00
|
|
|
perf,
|
2016-01-28 18:54:10 -06:00
|
|
|
"useless `vec!`"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(UselessVec => [USELESS_VEC]);
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for UselessVec {
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2016-03-03 13:09:31 -06:00
|
|
|
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2018-08-22 16:34:52 -05:00
|
|
|
if let ty::Ref(_, ty, _) = cx.tables.expr_ty_adjusted(expr).sty;
|
|
|
|
if let ty::Slice(..) = ty.sty;
|
2018-07-12 02:30:57 -05:00
|
|
|
if let ExprKind::AddrOf(_, ref addressee) = expr.node;
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(vec_args) = higher::vec_macro(cx, addressee);
|
|
|
|
then {
|
|
|
|
check_vec_macro(cx, &vec_args, expr.span);
|
|
|
|
}
|
|
|
|
}
|
2016-03-28 16:32:55 -05:00
|
|
|
|
|
|
|
// search for `for _ in vec![…]`
|
2017-10-23 14:18:02 -05: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-04 14:56:05 -05:00
|
|
|
let span = arg.span
|
2019-03-26 04:55:03 -05:00
|
|
|
.ctxt()
|
2019-08-16 11:29:30 -05:00
|
|
|
.outer_expn_data()
|
|
|
|
.call_site
|
2017-11-04 14:56:05 -05:00
|
|
|
.ctxt()
|
2019-08-16 11:29:30 -05:00
|
|
|
.outer_expn_data()
|
|
|
|
.call_site;
|
2017-10-23 14:18:02 -05:00
|
|
|
check_vec_macro(cx, &vec_args, span);
|
|
|
|
}
|
|
|
|
}
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-13 08:34:04 -05:00
|
|
|
fn check_vec_macro<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, vec_args: &higher::VecArgs<'tcx>, span: Span) {
|
2018-11-27 08:13:57 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2016-07-14 12:31:17 -05:00
|
|
|
let snippet = match *vec_args {
|
|
|
|
higher::VecArgs::Repeat(elem, len) => {
|
2018-05-13 06:16:31 -05:00
|
|
|
if constant(cx, cx.tables, len).is_some() {
|
2018-11-27 08:13:57 -06:00
|
|
|
format!(
|
|
|
|
"&[{}; {}]",
|
|
|
|
snippet_with_applicability(cx, elem.span, "elem", &mut applicability),
|
|
|
|
snippet_with_applicability(cx, len.span, "len", &mut applicability)
|
|
|
|
)
|
2016-07-14 12:31:17 -05:00
|
|
|
} else {
|
|
|
|
return;
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2018-11-27 14:14:15 -06:00
|
|
|
higher::VecArgs::Vec(args) => {
|
|
|
|
if let Some(last) = args.iter().last() {
|
|
|
|
let span = args[0].span.to(last.span);
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2018-11-27 14:14:15 -06:00
|
|
|
format!("&[{}]", snippet_with_applicability(cx, span, "..", &mut applicability))
|
|
|
|
} else {
|
|
|
|
"&[]".into()
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2016-07-14 12:31:17 -05:00
|
|
|
};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
USELESS_VEC,
|
|
|
|
span,
|
|
|
|
"useless use of `vec!`",
|
|
|
|
"you can use a slice directly",
|
|
|
|
snippet,
|
2018-11-27 08:13:57 -06:00
|
|
|
applicability,
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2016-01-28 18:54:10 -06:00
|
|
|
}
|
|
|
|
|
2019-01-30 19:15:29 -06:00
|
|
|
/// Returns the item type of the vector (i.e., the `T` in `Vec<T>`).
|
2018-07-23 06:01:12 -05:00
|
|
|
fn vec_type(ty: Ty<'_>) -> Ty<'_> {
|
2018-08-22 16:34:52 -05:00
|
|
|
if let ty::Adt(_, substs) = ty.sty {
|
2016-08-28 10:25:41 -05:00
|
|
|
substs.type_at(0)
|
2016-07-14 12:31:17 -05:00
|
|
|
} else {
|
|
|
|
panic!("The type of `vec!` is a not a struct?");
|
|
|
|
}
|
|
|
|
}
|