2016-01-29 00:54:10 +00:00
|
|
|
use rustc::lint::*;
|
2016-03-27 18:59:02 +00:00
|
|
|
use rustc::ty::TypeVariants;
|
2016-04-07 15:46:48 +00:00
|
|
|
use rustc::hir::*;
|
2016-07-03 19:12:43 +00:00
|
|
|
use rustc_const_eval::EvalHint::ExprTypeChecked;
|
|
|
|
use rustc_const_eval::eval_const_expr_partial;
|
2016-01-29 00:54:10 +00:00
|
|
|
use syntax::codemap::Span;
|
2016-06-30 17:49:34 +00:00
|
|
|
use utils::{higher, snippet, span_lint_and_then};
|
2016-01-29 00:54:10 +00:00
|
|
|
|
|
|
|
/// **What it does:** This lint warns about using `&vec![..]` when using `&[..]` would be possible.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is less efficient.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-01-29 21:49:48 +00:00
|
|
|
/// ```rust,ignore
|
2016-01-29 00:54:10 +00:00
|
|
|
/// foo(&vec![1, 2])
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub USELESS_VEC,
|
|
|
|
Warn,
|
|
|
|
"useless `vec!`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
2016-06-10 14:17:20 +00:00
|
|
|
pub struct Pass;
|
2016-01-29 00:54:10 +00:00
|
|
|
|
2016-06-10 14:17:20 +00:00
|
|
|
impl LintPass for Pass {
|
2016-01-29 00:54:10 +00:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(USELESS_VEC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-10 14:17:20 +00:00
|
|
|
impl LateLintPass for Pass {
|
2016-01-29 00:54:10 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
2016-03-03 19:09:31 +00:00
|
|
|
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
|
2016-01-29 00:54:10 +00:00
|
|
|
if_let_chain!{[
|
|
|
|
let TypeVariants::TyRef(_, ref ty) = cx.tcx.expr_ty_adjusted(expr).sty,
|
|
|
|
let TypeVariants::TySlice(..) = ty.ty.sty,
|
|
|
|
let ExprAddrOf(_, ref addressee) = expr.node,
|
|
|
|
], {
|
2016-05-20 17:18:32 +00:00
|
|
|
check_vec_macro(cx, addressee, expr.span);
|
2016-03-28 21:32:55 +00:00
|
|
|
}}
|
|
|
|
|
|
|
|
// search for `for _ in vec![…]`
|
2016-06-29 22:08:43 +00:00
|
|
|
if let Some((_, arg, _)) = higher::for_loop(expr) {
|
2016-05-20 17:18:32 +00:00
|
|
|
// report the error around the `vec!` not inside `<std macros>:`
|
|
|
|
let span = cx.sess().codemap().source_callsite(arg.span);
|
|
|
|
check_vec_macro(cx, arg, span);
|
2016-03-28 21:32:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-20 17:18:32 +00:00
|
|
|
fn check_vec_macro(cx: &LateContext, vec: &Expr, span: Span) {
|
2016-06-30 17:49:34 +00:00
|
|
|
if let Some(vec_args) = higher::vec_macro(cx, vec) {
|
2016-03-28 21:32:55 +00:00
|
|
|
let snippet = match vec_args {
|
2016-07-03 21:56:06 +00:00
|
|
|
higher::VecArgs::Repeat(elem, len) => {
|
2016-07-03 19:12:43 +00:00
|
|
|
if eval_const_expr_partial(cx.tcx, len, ExprTypeChecked, None).is_ok() {
|
2016-06-30 17:50:03 +00:00
|
|
|
format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len")).into()
|
2016-07-03 19:12:43 +00:00
|
|
|
} else {
|
|
|
|
return;
|
2016-06-30 17:50:03 +00:00
|
|
|
}
|
2016-03-28 21:32:55 +00:00
|
|
|
}
|
2016-07-03 21:56:06 +00:00
|
|
|
higher::VecArgs::Vec(args) => {
|
2016-03-28 21:32:55 +00:00
|
|
|
if let Some(last) = args.iter().last() {
|
|
|
|
let span = Span {
|
|
|
|
lo: args[0].span.lo,
|
|
|
|
hi: last.span.hi,
|
|
|
|
expn_id: args[0].span.expn_id,
|
|
|
|
};
|
2016-01-29 00:54:10 +00:00
|
|
|
|
2016-03-28 21:32:55 +00:00
|
|
|
format!("&[{}]", snippet(cx, span, "..")).into()
|
2016-04-14 18:14:03 +00:00
|
|
|
} else {
|
2016-03-28 21:32:55 +00:00
|
|
|
"&[]".into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-01-29 00:54:10 +00:00
|
|
|
|
2016-05-20 17:18:32 +00:00
|
|
|
span_lint_and_then(cx, USELESS_VEC, span, "useless use of `vec!`", |db| {
|
|
|
|
db.span_suggestion(span, "you can use a slice directly", snippet);
|
2016-03-28 21:32:55 +00:00
|
|
|
});
|
2016-01-29 00:54:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|