2018-10-06 11:18:06 -05: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-05-30 03:15:50 -05:00
|
|
|
use crate::reexport::*;
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc::hir::def::Def;
|
|
|
|
use crate::rustc::hir::intravisit::*;
|
2018-11-27 14:14:15 -06:00
|
|
|
use crate::rustc::hir::*;
|
|
|
|
use crate::rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintContext, LintPass};
|
|
|
|
use crate::rustc::{declare_tool_lint, lint_array};
|
2018-09-15 02:21:58 -05:00
|
|
|
use crate::rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
|
|
|
use crate::syntax::source_map::Span;
|
|
|
|
use crate::syntax::symbol::keywords;
|
2018-11-27 14:14:15 -06:00
|
|
|
use crate::utils::{last_path_segment, span_lint};
|
|
|
|
use matches::matches;
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for lifetime annotations which can be removed by
|
|
|
|
/// relying on lifetime elision.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** The additional lifetimes make the code look more
|
|
|
|
/// complicated, while there is nothing out of the ordinary going on. Removing
|
|
|
|
/// them leads to more readable code.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** Potential false negatives: we bail out if the function
|
|
|
|
/// has a `where` clause where lifetimes are mentioned.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2018-11-27 14:14:15 -06:00
|
|
|
/// fn in_and_out<'a>(x: &'a u8, y: u8) -> &'a u8 {
|
|
|
|
/// x
|
|
|
|
/// }
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2018-11-27 14:14:15 -06:00
|
|
|
pub NEEDLESS_LIFETIMES,
|
|
|
|
complexity,
|
|
|
|
"using explicit lifetimes for references in function arguments when elision rules \
|
|
|
|
would allow omitting them"
|
2016-02-05 17:13:29 -06:00
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for lifetimes in generics that are never used
|
|
|
|
/// anywhere else.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** The additional lifetimes make the code look more
|
|
|
|
/// complicated, while there is nothing out of the ordinary going on. Removing
|
|
|
|
/// them leads to more readable code.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** None.
|
2015-12-14 15:16:56 -06:00
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2018-11-27 14:14:15 -06:00
|
|
|
/// fn unused_lifetime<'a>(x: u8) {
|
|
|
|
/// ..
|
|
|
|
/// }
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2018-05-26 03:23:34 -05:00
|
|
|
pub EXTRA_UNUSED_LIFETIMES,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-02-05 17:13:29 -06:00
|
|
|
"unused lifetimes in function definitions"
|
|
|
|
}
|
2015-12-06 15:36:22 -06:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2015-08-12 06:16:09 -05:00
|
|
|
pub struct LifetimePass;
|
|
|
|
|
|
|
|
impl LintPass for LifetimePass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2018-05-26 03:23:34 -05:00
|
|
|
lint_array!(NEEDLESS_LIFETIMES, EXTRA_UNUSED_LIFETIMES)
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LifetimePass {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2018-07-16 08:07:39 -05:00
|
|
|
if let ItemKind::Fn(ref decl, _, ref generics, id) = item.node {
|
2017-04-11 07:09:58 -05:00
|
|
|
check_fn_inner(cx, decl, Some(id), generics, item.span);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx ImplItem) {
|
2017-04-11 07:09:58 -05:00
|
|
|
if let ImplItemKind::Method(ref sig, id) = item.node {
|
2017-10-15 14:39:47 -05:00
|
|
|
check_fn_inner(cx, &sig.decl, Some(id), &item.generics, item.span);
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx TraitItem) {
|
2017-04-11 07:09:58 -05:00
|
|
|
if let TraitItemKind::Method(ref sig, ref body) = item.node {
|
|
|
|
let body = match *body {
|
|
|
|
TraitMethod::Required(_) => None,
|
|
|
|
TraitMethod::Provided(id) => Some(id),
|
|
|
|
};
|
2017-10-15 14:39:47 -05:00
|
|
|
check_fn_inner(cx, &sig.decl, body, &item.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),
|
|
|
|
}
|
2016-01-29 15:18:14 -06:00
|
|
|
|
2017-04-12 04:06:32 -05:00
|
|
|
fn check_fn_inner<'a, 'tcx>(
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
decl: &'tcx FnDecl,
|
|
|
|
body: Option<BodyId>,
|
|
|
|
generics: &'tcx Generics,
|
2017-08-09 02:30:56 -05:00
|
|
|
span: Span,
|
2017-04-12 04:06:32 -05:00
|
|
|
) {
|
2018-07-24 01:55:38 -05:00
|
|
|
if in_external_macro(cx.sess(), span) || has_where_lifetimes(cx, &generics.where_clause) {
|
2015-08-13 10:24:47 -05:00
|
|
|
return;
|
|
|
|
}
|
2016-01-29 15:18:14 -06:00
|
|
|
|
2017-04-11 08:44:13 -05:00
|
|
|
let mut bounds_lts = Vec::new();
|
2018-09-26 23:29:48 -05:00
|
|
|
let types = generics.params.iter().filter(|param| match param.kind {
|
|
|
|
GenericParamKind::Type { .. } => true,
|
|
|
|
GenericParamKind::Lifetime { .. } => false,
|
2018-06-24 19:06:57 -05:00
|
|
|
});
|
|
|
|
for typ in types {
|
|
|
|
for bound in &typ.bounds {
|
|
|
|
let mut visitor = RefVisitor::new(cx);
|
|
|
|
walk_param_bound(&mut visitor, bound);
|
|
|
|
if visitor.lts.iter().any(|lt| matches!(lt, RefLt::Named(_))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if let GenericBound::Trait(ref trait_ref, _) = *bound {
|
|
|
|
let params = &trait_ref
|
|
|
|
.trait_ref
|
|
|
|
.path
|
|
|
|
.segments
|
|
|
|
.last()
|
|
|
|
.expect("a path must have at least one segment")
|
|
|
|
.args;
|
|
|
|
if let Some(ref params) = *params {
|
|
|
|
let lifetimes = params.args.iter().filter_map(|arg| match arg {
|
|
|
|
GenericArg::Lifetime(lt) => Some(lt),
|
|
|
|
GenericArg::Type(_) => None,
|
|
|
|
});
|
|
|
|
for bound in lifetimes {
|
2018-07-01 04:58:29 -05:00
|
|
|
if bound.name != LifetimeName::Static && !bound.is_elided() {
|
2018-06-24 19:06:57 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
bounds_lts.push(bound);
|
2017-04-11 08:44:13 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-24 19:06:57 -05:00
|
|
|
}
|
|
|
|
}
|
2017-12-21 22:42:47 -06:00
|
|
|
if could_use_elision(cx, decl, body, &generics.params, bounds_lts) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_LIFETIMES,
|
|
|
|
span,
|
2018-11-27 14:14:15 -06:00
|
|
|
"explicit lifetimes given in parameter types where they could be elided \
|
|
|
|
(or replaced with `'_` if needed by type declaration)",
|
2017-08-09 02:30:56 -05:00
|
|
|
);
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
2016-05-17 16:25:20 -05:00
|
|
|
report_extra_lifetimes(cx, decl, generics);
|
2015-08-13 10:24:47 -05:00
|
|
|
}
|
|
|
|
|
2017-04-11 08:44:13 -05:00
|
|
|
fn could_use_elision<'a, 'tcx: 'a>(
|
2016-12-21 05:14:54 -06:00
|
|
|
cx: &LateContext<'a, 'tcx>,
|
|
|
|
func: &'tcx FnDecl,
|
2017-04-11 07:09:58 -05:00
|
|
|
body: Option<BodyId>,
|
2017-12-21 22:42:47 -06:00
|
|
|
named_generics: &'tcx [GenericParam],
|
2017-08-09 02:30:56 -05:00
|
|
|
bounds_lts: Vec<&'tcx Lifetime>,
|
2016-12-21 05:14:54 -06:00
|
|
|
) -> 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
|
2017-12-21 22:42:47 -06:00
|
|
|
let allowed_lts = allowed_lts_from(named_generics);
|
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 lifetimes in input argument types
|
|
|
|
for arg in &func.inputs {
|
2017-01-04 17:48:34 -06:00
|
|
|
input_visitor.visit_ty(arg);
|
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
|
|
|
}
|
|
|
|
|
2017-04-11 07:29:58 -05:00
|
|
|
let input_lts = match input_visitor.into_vec() {
|
2017-04-11 08:44:13 -05:00
|
|
|
Some(lts) => lts_from_bounds(lts, bounds_lts.into_iter()),
|
2017-04-11 07:29:58 -05:00
|
|
|
None => return false,
|
|
|
|
};
|
|
|
|
let output_lts = match output_visitor.into_vec() {
|
|
|
|
Some(val) => val,
|
|
|
|
None => return false,
|
|
|
|
};
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2017-04-11 07:09:58 -05:00
|
|
|
if let Some(body_id) = body {
|
2017-09-05 04:33:04 -05:00
|
|
|
let mut checker = BodyLifetimeChecker {
|
|
|
|
lifetimes_used_in_body: false,
|
|
|
|
};
|
2018-12-07 18:56:03 -06:00
|
|
|
checker.visit_expr(&cx.tcx.hir().body(body_id).value);
|
2017-04-11 07:09:58 -05:00
|
|
|
if checker.lifetimes_used_in_body {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
2015-11-18 05:35:18 -06:00
|
|
|
false
|
2015-08-12 06:16:09 -05:00
|
|
|
} 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
|
2018-11-27 14:14:15 -06:00
|
|
|
let unnamed_and_static = input_lts.iter().all(|lt| *lt == RefLt::Unnamed || *lt == RefLt::Static);
|
2017-08-09 02:59:38 -05:00
|
|
|
if unnamed_and_static {
|
2015-08-12 06:16:09 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we have no output reference, so we only need all distinct lifetimes
|
2015-11-18 05:35:18 -06:00
|
|
|
input_lts.len() == unique_lifetimes(&input_lts)
|
2015-08-12 06:16:09 -05:00
|
|
|
} 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]) {
|
2016-01-29 15:18:14 -06:00
|
|
|
(&RefLt::Named(n1), &RefLt::Named(n2)) if n1 == n2 => true,
|
|
|
|
(&RefLt::Named(_), &RefLt::Unnamed) => true,
|
2017-09-05 04:33:04 -05:00
|
|
|
_ => false, /* already elided, different named lifetimes
|
|
|
|
* or something static going on */
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
2015-11-18 05:35:18 -06:00
|
|
|
} else {
|
|
|
|
false
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-11 18:34:52 -05:00
|
|
|
fn allowed_lts_from(named_generics: &[GenericParam]) -> FxHashSet<RefLt> {
|
|
|
|
let mut allowed_lts = FxHashSet::default();
|
2017-12-21 22:42:47 -06:00
|
|
|
for par in named_generics.iter() {
|
2018-06-24 16:42:52 -05:00
|
|
|
if let GenericParamKind::Lifetime { .. } = par.kind {
|
|
|
|
if par.bounds.is_empty() {
|
2018-06-28 08:46:58 -05:00
|
|
|
allowed_lts.insert(RefLt::Named(par.name.ident().name));
|
2017-12-21 22:42:47 -06:00
|
|
|
}
|
2015-08-31 04:11:51 -05:00
|
|
|
}
|
|
|
|
}
|
2016-01-29 15:18:14 -06:00
|
|
|
allowed_lts.insert(RefLt::Unnamed);
|
|
|
|
allowed_lts.insert(RefLt::Static);
|
2015-08-31 04:11:51 -05:00
|
|
|
allowed_lts
|
|
|
|
}
|
|
|
|
|
2016-01-30 06:48:39 -06:00
|
|
|
fn lts_from_bounds<'a, T: Iterator<Item = &'a Lifetime>>(mut vec: Vec<RefLt>, bounds_lts: T) -> Vec<RefLt> {
|
2016-01-29 15:18:14 -06:00
|
|
|
for lt in bounds_lts {
|
2018-07-01 04:58:29 -05:00
|
|
|
if lt.name != LifetimeName::Static {
|
2018-06-28 08:46:58 -05:00
|
|
|
vec.push(RefLt::Named(lt.name.ident().name));
|
2016-01-29 15:18:14 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
vec
|
|
|
|
}
|
|
|
|
|
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 {
|
2018-09-11 18:34:52 -05:00
|
|
|
lts.iter().collect::<FxHashSet<_>>().len()
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
|
2016-01-29 15:18:14 -06:00
|
|
|
/// A visitor usable for `rustc_front::visit::walk_ty()`.
|
2016-12-06 04:32:21 -06:00
|
|
|
struct RefVisitor<'a, 'tcx: 'a> {
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
2016-01-03 22:26:12 -06:00
|
|
|
lts: Vec<RefLt>,
|
2017-04-11 07:29:58 -05:00
|
|
|
abort: bool,
|
2015-11-10 17:12:45 -06:00
|
|
|
}
|
|
|
|
|
2016-01-03 22:26:12 -06:00
|
|
|
impl<'v, 't> RefVisitor<'v, 't> {
|
2017-08-21 06:32:12 -05:00
|
|
|
fn new(cx: &'v LateContext<'v, 't>) -> Self {
|
|
|
|
Self {
|
2018-03-15 10:07:15 -05:00
|
|
|
cx,
|
2016-01-03 22:26:12 -06:00
|
|
|
lts: Vec::new(),
|
2017-04-11 07:29:58 -05:00
|
|
|
abort: false,
|
2016-01-03 22:26:12 -06:00
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
}
|
2015-08-12 06:16:09 -05:00
|
|
|
|
2015-08-12 13:13:14 -05:00
|
|
|
fn record(&mut self, lifetime: &Option<Lifetime>) {
|
2015-11-24 11:44:40 -06:00
|
|
|
if let Some(ref lt) = *lifetime {
|
2018-07-01 04:58:29 -05:00
|
|
|
if lt.name == LifetimeName::Static {
|
2016-01-29 15:18:14 -06:00
|
|
|
self.lts.push(RefLt::Static);
|
2017-02-03 04:52:13 -06:00
|
|
|
} else if lt.is_elided() {
|
|
|
|
self.lts.push(RefLt::Unnamed);
|
2015-08-12 06:16:09 -05:00
|
|
|
} else {
|
2018-06-28 08:46:58 -05:00
|
|
|
self.lts.push(RefLt::Named(lt.name.ident().name));
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-29 15:18:14 -06:00
|
|
|
self.lts.push(RefLt::Unnamed);
|
2015-08-12 06:16:09 -05:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 13:13:14 -05:00
|
|
|
|
2017-04-11 07:29:58 -05:00
|
|
|
fn into_vec(self) -> Option<Vec<RefLt>> {
|
2017-09-05 04:33:04 -05:00
|
|
|
if self.abort {
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(self.lts)
|
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
}
|
|
|
|
|
2016-12-01 15:31:56 -06:00
|
|
|
fn collect_anonymous_lifetimes(&mut self, qpath: &QPath, ty: &Ty) {
|
2018-06-24 08:32:40 -05:00
|
|
|
if let Some(ref last_path_segment) = last_path_segment(qpath).args {
|
2018-06-24 16:42:52 -05:00
|
|
|
if !last_path_segment.parenthesized
|
|
|
|
&& !last_path_segment.args.iter().any(|arg| match arg {
|
|
|
|
GenericArg::Lifetime(_) => true,
|
|
|
|
GenericArg::Type(_) => false,
|
2018-11-27 14:14:15 -06:00
|
|
|
})
|
|
|
|
{
|
2018-12-07 18:56:03 -06:00
|
|
|
let hir_id = self.cx.tcx.hir().node_to_hir_id(ty.id);
|
2017-09-25 21:04:55 -05:00
|
|
|
match self.cx.tables.qpath_def(qpath, hir_id) {
|
|
|
|
Def::TyAlias(def_id) | Def::Struct(def_id) => {
|
|
|
|
let generics = self.cx.tcx.generics_of(def_id);
|
2018-05-17 04:21:15 -05:00
|
|
|
for _ in generics.params.as_slice() {
|
2017-09-25 21:04:55 -05:00
|
|
|
self.record(&None);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
Def::Trait(def_id) => {
|
|
|
|
let trait_def = self.cx.tcx.trait_def(def_id);
|
2018-05-17 04:21:15 -05:00
|
|
|
for _ in &self.cx.tcx.generics_of(trait_def.def_id).params {
|
2017-09-25 21:04:55 -05:00
|
|
|
self.record(&None);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => (),
|
|
|
|
}
|
2015-11-10 17:12:45 -06:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 13:13:14 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for RefVisitor<'a, 'tcx> {
|
2015-08-12 23:43:25 -05:00
|
|
|
// for lifetimes as parameters of generics
|
2016-12-06 04:32:21 -06:00
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2015-08-12 23:43:25 -05:00
|
|
|
self.record(&Some(*lifetime));
|
|
|
|
}
|
2015-09-30 09:40:54 -05:00
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
fn visit_ty(&mut self, ty: &'tcx Ty) {
|
2015-11-10 17:12:45 -06:00
|
|
|
match ty.node {
|
2018-07-12 03:03:06 -05:00
|
|
|
TyKind::Rptr(ref lt, _) if lt.is_elided() => {
|
2015-11-10 17:12:45 -06:00
|
|
|
self.record(&None);
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2018-07-12 03:03:06 -05:00
|
|
|
TyKind::Path(ref path) => {
|
2018-10-05 15:41:40 -05:00
|
|
|
self.collect_anonymous_lifetimes(path, ty);
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-10-05 15:41:40 -05:00
|
|
|
TyKind::Def(item, _) => {
|
2018-12-07 18:56:03 -06:00
|
|
|
if let ItemKind::Existential(ref exist_ty) = self.cx.tcx.hir().expect_item(item.id).node {
|
2018-10-05 15:41:40 -05:00
|
|
|
for bound in &exist_ty.bounds {
|
|
|
|
if let GenericBound::Outlives(_) = *bound {
|
|
|
|
self.record(&None);
|
2018-06-19 02:56:37 -05:00
|
|
|
}
|
2017-11-22 03:55:12 -06:00
|
|
|
}
|
2018-10-05 15:41:40 -05:00
|
|
|
} else {
|
|
|
|
unreachable!()
|
2017-11-22 03:55:12 -06:00
|
|
|
}
|
2018-10-05 15:41:40 -05:00
|
|
|
walk_ty(self, ty);
|
2018-11-27 14:14:15 -06:00
|
|
|
},
|
2018-07-16 08:07:39 -05:00
|
|
|
TyKind::TraitObject(ref bounds, ref lt) => {
|
2017-02-04 06:18:51 -06:00
|
|
|
if !lt.is_elided() {
|
2017-04-11 07:29:58 -05:00
|
|
|
self.abort = true;
|
2017-02-04 06:18:51 -06:00
|
|
|
}
|
|
|
|
for bound in bounds {
|
|
|
|
self.visit_poly_trait_ref(bound, TraitBoundModifier::None);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
},
|
2016-04-14 13:14:03 -05:00
|
|
|
_ => (),
|
2015-09-30 09:40:54 -05:00
|
|
|
}
|
|
|
|
walk_ty(self, ty);
|
|
|
|
}
|
2016-12-06 04:32:21 -06:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
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.
|
2016-12-06 04:32:21 -06:00
|
|
|
fn has_where_lifetimes<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, where_clause: &'tcx 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);
|
2016-01-03 22:26:12 -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
|
2017-12-21 22:42:47 -06:00
|
|
|
let allowed_lts = allowed_lts_from(&pred.bound_generic_params);
|
2015-08-31 04:11:51 -05:00
|
|
|
// now walk the bounds
|
|
|
|
for bound in pred.bounds.iter() {
|
2018-06-24 08:32:40 -05:00
|
|
|
walk_param_bound(&mut visitor, bound);
|
2015-08-31 04:11:51 -05:00
|
|
|
}
|
|
|
|
// and check that all lifetimes are allowed
|
2017-04-11 07:29:58 -05:00
|
|
|
match visitor.into_vec() {
|
|
|
|
None => return false,
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(lts) => {
|
|
|
|
for lt in lts {
|
|
|
|
if !allowed_lts.contains(<) {
|
|
|
|
return true;
|
|
|
|
}
|
2017-04-11 07:29:58 -05:00
|
|
|
}
|
|
|
|
},
|
2015-08-31 04:11:51 -05:00
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
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);
|
2017-01-18 14:35:38 -06:00
|
|
|
walk_ty(&mut visitor, &pred.lhs_ty);
|
|
|
|
walk_ty(&mut visitor, &pred.rhs_ty);
|
2016-01-03 22:26:12 -06:00
|
|
|
if !visitor.lts.is_empty() {
|
|
|
|
return true;
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
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
|
|
|
}
|
2015-12-06 15:36:22 -06:00
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
struct LifetimeChecker {
|
2018-09-11 18:34:52 -05:00
|
|
|
map: FxHashMap<Name, Span>,
|
2016-12-06 04:32:21 -06:00
|
|
|
}
|
2015-12-06 15:36:22 -06:00
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
impl<'tcx> Visitor<'tcx> for LifetimeChecker {
|
2015-12-06 15:36:22 -06:00
|
|
|
// for lifetimes as parameters of generics
|
2016-12-06 04:32:21 -06:00
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2018-06-28 08:46:58 -05:00
|
|
|
self.map.remove(&lifetime.name.ident().name);
|
2015-12-06 15:36:22 -06:00
|
|
|
}
|
2015-12-10 10:44:12 -06:00
|
|
|
|
2017-12-21 22:42:47 -06:00
|
|
|
fn visit_generic_param(&mut self, param: &'tcx GenericParam) {
|
2015-12-10 10:44:12 -06:00
|
|
|
// don't actually visit `<'a>` or `<'a: 'b>`
|
|
|
|
// we've already visited the `'a` declarations and
|
|
|
|
// don't want to spuriously remove them
|
|
|
|
// `'b` in `'a: 'b` is useless unless used elsewhere in
|
|
|
|
// a non-lifetime bound
|
2018-06-24 08:32:40 -05:00
|
|
|
if let GenericParamKind::Type { .. } = param.kind {
|
2017-12-21 22:42:47 -06:00
|
|
|
walk_generic_param(self, param)
|
|
|
|
}
|
2015-12-10 10:44:12 -06:00
|
|
|
}
|
2016-12-06 04:32:21 -06:00
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2015-12-06 15:36:22 -06:00
|
|
|
}
|
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
fn report_extra_lifetimes<'a, 'tcx: 'a>(cx: &LateContext<'a, 'tcx>, func: &'tcx FnDecl, generics: &'tcx Generics) {
|
2018-11-27 14:14:15 -06:00
|
|
|
let hs = generics
|
|
|
|
.params
|
|
|
|
.iter()
|
2018-06-24 16:42:52 -05:00
|
|
|
.filter_map(|par| match par.kind {
|
2018-06-28 08:46:58 -05:00
|
|
|
GenericParamKind::Lifetime { .. } => Some((par.name.ident().name, par.span)),
|
2018-06-24 16:42:52 -05:00
|
|
|
_ => None,
|
|
|
|
})
|
2016-12-20 11:21:30 -06:00
|
|
|
.collect();
|
2016-12-06 04:32:21 -06:00
|
|
|
let mut checker = LifetimeChecker { map: hs };
|
2016-01-14 12:27:24 -06:00
|
|
|
|
2015-12-10 10:44:12 -06:00
|
|
|
walk_generics(&mut checker, generics);
|
2015-12-06 15:36:22 -06:00
|
|
|
walk_fn_decl(&mut checker, func);
|
2016-01-14 12:27:24 -06:00
|
|
|
|
2016-12-06 04:32:21 -06:00
|
|
|
for &v in checker.map.values() {
|
2018-11-27 14:14:15 -06:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
EXTRA_UNUSED_LIFETIMES,
|
|
|
|
v,
|
|
|
|
"this lifetime isn't used in the function definition",
|
|
|
|
);
|
2015-12-06 15:36:22 -06:00
|
|
|
}
|
|
|
|
}
|
2017-04-11 07:09:58 -05:00
|
|
|
|
|
|
|
struct BodyLifetimeChecker {
|
|
|
|
lifetimes_used_in_body: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> Visitor<'tcx> for BodyLifetimeChecker {
|
|
|
|
// for lifetimes as parameters of generics
|
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2018-06-28 08:46:58 -05:00
|
|
|
if lifetime.name.ident().name != keywords::Invalid.name() && lifetime.name.ident().name != "'static" {
|
2017-04-11 07:09:58 -05:00
|
|
|
self.lifetimes_used_in_body = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2017-04-11 08:54:48 -05:00
|
|
|
}
|