2015-09-03 09:42:17 -05:00
|
|
|
use rustc_front::hir::*;
|
|
|
|
use reexport::*;
|
2015-08-16 01:54:43 -05:00
|
|
|
use rustc::lint::*;
|
2015-08-12 06:16:09 -05:00
|
|
|
use syntax::codemap::Span;
|
2015-11-19 08:51:30 -06:00
|
|
|
use rustc_front::intravisit::{Visitor, walk_ty, walk_ty_param_bound};
|
2015-11-10 17:12:45 -06:00
|
|
|
use rustc::middle::def::Def::{DefTy, DefTrait};
|
2015-08-12 06:16:09 -05:00
|
|
|
use std::collections::HashSet;
|
2015-08-16 01:54:43 -05:00
|
|
|
|
|
|
|
use utils::{in_external_macro, span_lint};
|
2015-08-12 06:16:09 -05:00
|
|
|
|
|
|
|
declare_lint!(pub NEEDLESS_LIFETIMES, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"using explicit lifetimes for references in function arguments when elision rules \
|
|
|
|
would allow omitting them");
|
2015-08-12 06:16:09 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct LifetimePass;
|
|
|
|
|
|
|
|
impl LintPass for LifetimePass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(NEEDLESS_LIFETIMES)
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl LateLintPass for LifetimePass {
|
|
|
|
fn check_item(&mut self, cx: &LateContext, item: &Item) {
|
2015-08-13 10:24:47 -05:00
|
|
|
if let ItemFn(ref decl, _, _, _, ref generics, _) = item.node {
|
2015-08-30 02:57:52 -05:00
|
|
|
check_fn_inner(cx, decl, None, &generics, item.span);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext, item: &ImplItem) {
|
2015-11-19 08:51:30 -06:00
|
|
|
if let ImplItemKind::Method(ref sig, _) = item.node {
|
2015-08-25 07:41:35 -05:00
|
|
|
check_fn_inner(cx, &sig.decl, Some(&sig.explicit_self),
|
2015-08-30 02:57:52 -05:00
|
|
|
&sig.generics, item.span);
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext, item: &TraitItem) {
|
2015-08-13 10:24:47 -05:00
|
|
|
if let MethodTraitItem(ref sig, _) = item.node {
|
2015-08-25 07:41:35 -05:00
|
|
|
check_fn_inner(cx, &sig.decl, Some(&sig.explicit_self),
|
2015-08-30 02:57:52 -05:00
|
|
|
&sig.generics, item.span);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
/// The lifetime of a &-reference.
|
2015-08-12 06:16:09 -05:00
|
|
|
#[derive(PartialEq, Eq, Hash, Debug)]
|
|
|
|
enum RefLt {
|
|
|
|
Unnamed,
|
|
|
|
Static,
|
|
|
|
Named(Name),
|
|
|
|
}
|
|
|
|
use self::RefLt::*;
|
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
fn check_fn_inner(cx: &LateContext, decl: &FnDecl, slf: Option<&ExplicitSelf>,
|
2015-08-30 02:57:52 -05:00
|
|
|
generics: &Generics, span: Span) {
|
2015-11-10 17:12:45 -06:00
|
|
|
if in_external_macro(cx, span) || has_where_lifetimes(cx, &generics.where_clause) {
|
2015-08-13 10:24:47 -05:00
|
|
|
return;
|
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
if could_use_elision(cx, decl, slf, &generics.lifetimes) {
|
2015-08-13 10:24:47 -05:00
|
|
|
span_lint(cx, NEEDLESS_LIFETIMES, span,
|
|
|
|
"explicit lifetimes given in parameter types where they could be elided");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:12:45 -06:00
|
|
|
fn could_use_elision(cx: &LateContext, func: &FnDecl, slf: Option<&ExplicitSelf>,
|
2015-08-13 10:24:47 -05:00
|
|
|
named_lts: &[LifetimeDef]) -> bool {
|
2015-08-12 06:16:09 -05:00
|
|
|
// There are two scenarios where elision works:
|
|
|
|
// * no output references, all input references have different LT
|
|
|
|
// * output references, exactly one input reference with same LT
|
2015-08-13 10:24:47 -05:00
|
|
|
// All lifetimes must be unnamed, 'static or defined without bounds on the
|
|
|
|
// level of the current item.
|
|
|
|
|
|
|
|
// check named LTs
|
2015-08-31 04:11:51 -05:00
|
|
|
let allowed_lts = allowed_lts_from(named_lts);
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
// these will collect all the lifetimes for references in arg/return types
|
2015-11-10 17:12:45 -06:00
|
|
|
let mut input_visitor = RefVisitor::new(cx);
|
|
|
|
let mut output_visitor = RefVisitor::new(cx);
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
// extract lifetime in "self" argument for methods (there is a "self" argument
|
|
|
|
// in func.inputs, but its type is TyInfer)
|
2015-08-13 10:24:47 -05:00
|
|
|
if let Some(slf) = slf {
|
|
|
|
match slf.node {
|
2015-08-12 13:13:14 -05:00
|
|
|
SelfRegion(ref opt_lt, _, _) => input_visitor.record(opt_lt),
|
|
|
|
SelfExplicit(ref ty, _) => walk_ty(&mut input_visitor, ty),
|
2015-08-12 06:16:09 -05:00
|
|
|
_ => { }
|
|
|
|
}
|
|
|
|
}
|
2015-08-12 13:13:14 -05:00
|
|
|
// extract lifetimes in input argument types
|
|
|
|
for arg in &func.inputs {
|
2015-11-10 17:12:45 -06:00
|
|
|
input_visitor.visit_ty(&arg.ty);
|
2015-08-12 13:13:14 -05:00
|
|
|
}
|
|
|
|
// extract lifetimes in output type
|
2015-08-12 06:16:09 -05:00
|
|
|
if let Return(ref ty) = func.output {
|
2015-11-10 17:12:45 -06:00
|
|
|
output_visitor.visit_ty(ty);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
let input_lts = input_visitor.into_vec();
|
|
|
|
let output_lts = output_visitor.into_vec();
|
|
|
|
|
2015-08-13 10:24:47 -05:00
|
|
|
// check for lifetimes from higher scopes
|
|
|
|
for lt in input_lts.iter().chain(output_lts.iter()) {
|
|
|
|
if !allowed_lts.contains(lt) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 06:16:09 -05:00
|
|
|
// no input lifetimes? easy case!
|
|
|
|
if input_lts.is_empty() {
|
|
|
|
return false;
|
|
|
|
} else if output_lts.is_empty() {
|
|
|
|
// no output lifetimes, check distinctness of input lifetimes
|
|
|
|
|
2015-08-15 02:36:02 -05:00
|
|
|
// only unnamed and static, ok
|
|
|
|
if input_lts.iter().all(|lt| *lt == Unnamed || *lt == Static) {
|
2015-08-12 06:16:09 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we have no output reference, so we only need all distinct lifetimes
|
|
|
|
if input_lts.len() == unique_lifetimes(&input_lts) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// we have output references, so we need one input reference,
|
|
|
|
// and all output lifetimes must be the same
|
|
|
|
if unique_lifetimes(&output_lts) > 1 {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if input_lts.len() == 1 {
|
|
|
|
match (&input_lts[0], &output_lts[0]) {
|
|
|
|
(&Named(n1), &Named(n2)) if n1 == n2 => { return true; }
|
|
|
|
(&Named(_), &Unnamed) => { return true; }
|
|
|
|
(&Unnamed, &Named(_)) => { return true; }
|
|
|
|
_ => { } // already elided, different named lifetimes
|
|
|
|
// or something static going on
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2015-08-31 04:11:51 -05:00
|
|
|
fn allowed_lts_from(named_lts: &[LifetimeDef]) -> HashSet<RefLt> {
|
|
|
|
let mut allowed_lts = HashSet::new();
|
|
|
|
for lt in named_lts {
|
|
|
|
if lt.bounds.is_empty() {
|
|
|
|
allowed_lts.insert(Named(lt.lifetime.name));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
allowed_lts.insert(Unnamed);
|
|
|
|
allowed_lts.insert(Static);
|
|
|
|
allowed_lts
|
|
|
|
}
|
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
/// Number of unique lifetimes in the given vector.
|
2015-08-13 09:28:11 -05:00
|
|
|
fn unique_lifetimes(lts: &[RefLt]) -> usize {
|
2015-08-12 13:13:14 -05:00
|
|
|
lts.iter().collect::<HashSet<_>>().len()
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
|
2015-09-03 09:42:17 -05:00
|
|
|
/// A visitor usable for rustc_front::visit::walk_ty().
|
2015-11-10 17:12:45 -06:00
|
|
|
struct RefVisitor<'v, 't: 'v> {
|
|
|
|
cx: &'v LateContext<'v, 't>, // context reference
|
|
|
|
lts: Vec<RefLt>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl <'v, 't> RefVisitor<'v, 't> {
|
|
|
|
fn new(cx: &'v LateContext<'v, 't>) -> RefVisitor<'v, 't> {
|
|
|
|
RefVisitor { cx: cx, lts: Vec::new() }
|
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
fn record(&mut self, lifetime: &Option<Lifetime>) {
|
2015-08-12 06:16:09 -05:00
|
|
|
if let &Some(ref lt) = lifetime {
|
2015-09-28 00:04:06 -05:00
|
|
|
if lt.name.as_str() == "'static" {
|
2015-11-10 17:12:45 -06:00
|
|
|
self.lts.push(Static);
|
2015-08-12 06:16:09 -05:00
|
|
|
} else {
|
2015-11-10 17:12:45 -06:00
|
|
|
self.lts.push(Named(lt.name));
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
} else {
|
2015-11-10 17:12:45 -06:00
|
|
|
self.lts.push(Unnamed);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 13:13:14 -05:00
|
|
|
|
|
|
|
fn into_vec(self) -> Vec<RefLt> {
|
2015-11-10 17:12:45 -06:00
|
|
|
self.lts
|
|
|
|
}
|
|
|
|
|
|
|
|
fn collect_anonymous_lifetimes(&mut self, path: &Path, ty: &Ty) {
|
|
|
|
let last_path_segment = path.segments.last().map(|s| &s.parameters);
|
|
|
|
if let Some(&AngleBracketedParameters(ref params)) = last_path_segment {
|
|
|
|
if params.lifetimes.is_empty() {
|
|
|
|
let def = self.cx.tcx.def_map.borrow().get(&ty.id).map(|r| r.full_def());
|
|
|
|
match def {
|
|
|
|
Some(DefTy(def_id, _)) => {
|
|
|
|
if let Some(ty_def) = self.cx.tcx.adt_defs.borrow().get(&def_id) {
|
|
|
|
let scheme = ty_def.type_scheme(self.cx.tcx);
|
|
|
|
for _ in scheme.generics.regions.as_slice() {
|
|
|
|
self.record(&None);
|
|
|
|
}
|
|
|
|
}
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
Some(DefTrait(def_id)) => {
|
|
|
|
let trait_def = self.cx.tcx.trait_defs.borrow()[&def_id];
|
|
|
|
for _ in &trait_def.generics.regions {
|
|
|
|
self.record(&None);
|
|
|
|
}
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
_ => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-12 13:13:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-10 17:12:45 -06:00
|
|
|
impl<'v, 't> Visitor<'v> for RefVisitor<'v, 't> {
|
|
|
|
|
2015-08-12 23:43:25 -05:00
|
|
|
// for lifetimes as parameters of generics
|
2015-09-30 09:24:41 -05:00
|
|
|
fn visit_lifetime(&mut self, lifetime: &'v Lifetime) {
|
2015-08-12 23:43:25 -05:00
|
|
|
self.record(&Some(*lifetime));
|
|
|
|
}
|
2015-09-30 09:40:54 -05:00
|
|
|
|
|
|
|
fn visit_ty(&mut self, ty: &'v Ty) {
|
2015-11-10 17:12:45 -06:00
|
|
|
match ty.node {
|
|
|
|
TyRptr(None, _) => {
|
|
|
|
self.record(&None);
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
TyPath(_, ref path) => {
|
|
|
|
self.collect_anonymous_lifetimes(path, ty);
|
2015-11-16 22:39:42 -06:00
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
_ => {}
|
2015-09-30 09:40:54 -05:00
|
|
|
}
|
|
|
|
walk_ty(self, ty);
|
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
2015-08-30 02:57:52 -05:00
|
|
|
|
|
|
|
/// Are any lifetimes mentioned in the `where` clause? If yes, we don't try to
|
|
|
|
/// reason about elision.
|
2015-11-10 17:12:45 -06:00
|
|
|
fn has_where_lifetimes(cx: &LateContext, where_clause: &WhereClause) -> bool {
|
2015-08-30 02:57:52 -05:00
|
|
|
for predicate in &where_clause.predicates {
|
|
|
|
match *predicate {
|
|
|
|
WherePredicate::RegionPredicate(..) => return true,
|
|
|
|
WherePredicate::BoundPredicate(ref pred) => {
|
2015-08-31 04:11:51 -05:00
|
|
|
// a predicate like F: Trait or F: for<'a> Trait<'a>
|
2015-11-10 17:12:45 -06:00
|
|
|
let mut visitor = RefVisitor::new(cx);
|
2015-08-31 04:11:51 -05:00
|
|
|
// walk the type F, it may not contain LT refs
|
|
|
|
walk_ty(&mut visitor, &pred.bounded_ty);
|
2015-11-10 17:12:45 -06:00
|
|
|
if !visitor.lts.is_empty() { return true; }
|
2015-08-31 04:11:51 -05:00
|
|
|
// if the bounds define new lifetimes, they are fine to occur
|
|
|
|
let allowed_lts = allowed_lts_from(&pred.bound_lifetimes);
|
|
|
|
// now walk the bounds
|
|
|
|
for bound in pred.bounds.iter() {
|
|
|
|
walk_ty_param_bound(&mut visitor, bound);
|
|
|
|
}
|
|
|
|
// and check that all lifetimes are allowed
|
|
|
|
for lt in visitor.into_vec() {
|
|
|
|
if !allowed_lts.contains(<) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2015-08-30 02:57:52 -05:00
|
|
|
}
|
|
|
|
WherePredicate::EqPredicate(ref pred) => {
|
2015-11-10 17:12:45 -06:00
|
|
|
let mut visitor = RefVisitor::new(cx);
|
2015-08-31 04:11:51 -05:00
|
|
|
walk_ty(&mut visitor, &pred.ty);
|
2015-11-10 17:12:45 -06:00
|
|
|
if !visitor.lts.is_empty() { return true; }
|
2015-08-30 02:57:52 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-31 04:11:51 -05:00
|
|
|
false
|
2015-08-30 02:57:52 -05:00
|
|
|
}
|