2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2016-07-14 12:31:17 -05:00
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::ty;
|
2016-07-03 14:12:43 -05:00
|
|
|
use rustc_const_eval::EvalHint::ExprTypeChecked;
|
|
|
|
use rustc_const_eval::eval_const_expr_partial;
|
2016-01-28 18:54:10 -06:00
|
|
|
use syntax::codemap::Span;
|
2016-07-14 12:31:17 -05:00
|
|
|
use utils::{higher, is_copy, snippet, span_lint_and_then};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for usage of `&vec![..]` when using `&[..]` would
|
|
|
|
/// be possible.
|
2016-01-28 18:54:10 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This is less efficient.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-01-29 15:49:48 -06:00
|
|
|
/// ```rust,ignore
|
2016-01-28 18:54:10 -06:00
|
|
|
/// foo(&vec![1, 2])
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub USELESS_VEC,
|
|
|
|
Warn,
|
|
|
|
"useless `vec!`"
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug)]
|
2016-06-10 09:17:20 -05:00
|
|
|
pub struct Pass;
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2016-06-10 09:17:20 -05:00
|
|
|
impl LintPass for Pass {
|
2016-01-28 18:54:10 -06:00
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(USELESS_VEC)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-03-03 13:09:31 -06:00
|
|
|
// search for `&vec![_]` expressions where the adjusted type is `&[_]`
|
2016-01-28 18:54:10 -06:00
|
|
|
if_let_chain!{[
|
2016-11-16 14:57:56 -06:00
|
|
|
let ty::TypeVariants::TyRef(_, ref ty) = cx.tcx.tables().expr_ty_adjusted(expr).sty,
|
2016-07-14 12:31:17 -05:00
|
|
|
let ty::TypeVariants::TySlice(..) = ty.ty.sty,
|
2016-01-28 18:54:10 -06:00
|
|
|
let ExprAddrOf(_, ref addressee) = expr.node,
|
2016-07-14 12:31:17 -05:00
|
|
|
let Some(vec_args) = higher::vec_macro(cx, addressee),
|
2016-01-28 18:54:10 -06:00
|
|
|
], {
|
2016-07-14 12:31:17 -05:00
|
|
|
check_vec_macro(cx, &vec_args, expr.span);
|
2016-03-28 16:32:55 -05:00
|
|
|
}}
|
|
|
|
|
|
|
|
// search for `for _ in vec![…]`
|
2016-07-14 12:31:17 -05:00
|
|
|
if_let_chain!{[
|
|
|
|
let Some((_, arg, _)) = higher::for_loop(expr),
|
|
|
|
let Some(vec_args) = higher::vec_macro(cx, arg),
|
2016-11-16 14:57:56 -06:00
|
|
|
is_copy(cx, vec_type(cx.tcx.tables().expr_ty_adjusted(arg)), cx.tcx.map.get_parent(expr.id)),
|
2016-07-14 12:31:17 -05:00
|
|
|
], {
|
2016-05-20 12:18:32 -05:00
|
|
|
// report the error around the `vec!` not inside `<std macros>:`
|
|
|
|
let span = cx.sess().codemap().source_callsite(arg.span);
|
2016-07-14 12:31:17 -05:00
|
|
|
check_vec_macro(cx, &vec_args, span);
|
|
|
|
}}
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-14 12:31:17 -05:00
|
|
|
fn check_vec_macro(cx: &LateContext, vec_args: &higher::VecArgs, span: Span) {
|
|
|
|
let snippet = match *vec_args {
|
|
|
|
higher::VecArgs::Repeat(elem, len) => {
|
|
|
|
if eval_const_expr_partial(cx.tcx, len, ExprTypeChecked, None).is_ok() {
|
|
|
|
format!("&[{}; {}]", snippet(cx, elem.span, "elem"), snippet(cx, len.span, "len")).into()
|
|
|
|
} else {
|
|
|
|
return;
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
2016-07-14 12:31:17 -05:00
|
|
|
}
|
|
|
|
higher::VecArgs::Vec(args) => {
|
|
|
|
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-28 18:54:10 -06:00
|
|
|
|
2016-07-14 12:31:17 -05:00
|
|
|
format!("&[{}]", snippet(cx, span, "..")).into()
|
|
|
|
} else {
|
|
|
|
"&[]".into()
|
2016-03-28 16:32:55 -05:00
|
|
|
}
|
2016-07-14 12:31:17 -05:00
|
|
|
}
|
|
|
|
};
|
2016-01-28 18:54:10 -06:00
|
|
|
|
2016-07-14 12:31:17 -05: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-01-28 18:54:10 -06:00
|
|
|
}
|
|
|
|
|
2016-07-14 12:31:17 -05:00
|
|
|
/// Return the item type of the vector (ie. the `T` in `Vec<T>`).
|
|
|
|
fn vec_type(ty: ty::Ty) -> ty::Ty {
|
2016-09-09 13:24:20 -05:00
|
|
|
if let ty::TyAdt(_, 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?");
|
|
|
|
}
|
|
|
|
}
|