2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint;
|
2021-12-06 11:33:31 +00:00
|
|
|
use clippy_utils::trait_ref_of_method;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_data_structures::fx::{FxHashMap, FxHashSet};
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::intravisit::{
|
2020-10-09 10:45:29 +00:00
|
|
|
walk_fn_decl, walk_generic_param, walk_generics, walk_item, walk_param_bound, walk_poly_trait_ref, walk_ty,
|
|
|
|
NestedVisitorMap, Visitor,
|
2020-02-21 08:39:38 +00:00
|
|
|
};
|
2020-02-17 09:36:17 +00:00
|
|
|
use rustc_hir::FnRetTy::Return;
|
2020-02-21 08:39:38 +00:00
|
|
|
use rustc_hir::{
|
2020-10-09 10:45:29 +00:00
|
|
|
BareFnTy, BodyId, FnDecl, GenericArg, GenericBound, GenericParam, GenericParamKind, Generics, ImplItem,
|
2021-03-12 14:30:50 +00:00
|
|
|
ImplItemKind, Item, ItemKind, LangItem, Lifetime, LifetimeName, ParamName, PolyTraitRef, TraitBoundModifier,
|
|
|
|
TraitFn, TraitItem, TraitItemKind, Ty, TyKind, WhereClause, WherePredicate,
|
2020-02-21 08:39:38 +00:00
|
|
|
};
|
2020-03-30 18:01:57 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 09:02:14 +00:00
|
|
|
use rustc_middle::hir::map::Map;
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 10:00:00 +00:00
|
|
|
use rustc_span::source_map::Span;
|
2020-08-11 13:43:21 +00:00
|
|
|
use rustc_span::symbol::{kw, Symbol};
|
2019-01-31 01:15:29 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for lifetime annotations which can be removed by
|
2019-03-05 16:50:33 +00:00
|
|
|
/// relying on lifetime elision.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The additional lifetimes make the code look more
|
2019-03-05 16:50:33 +00:00
|
|
|
/// complicated, while there is nothing out of the ordinary going on. Removing
|
|
|
|
/// them leads to more readable code.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Known problems
|
2020-10-09 10:45:29 +00:00
|
|
|
/// - We bail out if the function has a `where` clause where lifetimes
|
2021-12-17 12:40:22 +00:00
|
|
|
/// are mentioned due to potential false positives.
|
2020-10-09 10:45:29 +00:00
|
|
|
/// - Lifetime bounds such as `impl Foo + 'a` and `T: 'a` must be elided with the
|
|
|
|
/// placeholder notation `'_` because the fully elided notation leaves the type bound to `'static`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
2019-11-19 19:03:41 +00:00
|
|
|
/// // Bad: unnecessary lifetime annotations
|
2019-03-05 16:50:33 +00:00
|
|
|
/// fn in_and_out<'a>(x: &'a u8, y: u8) -> &'a u8 {
|
|
|
|
/// x
|
|
|
|
/// }
|
2019-11-19 19:03:41 +00:00
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// fn elided(x: &u8, y: u8) -> &u8 {
|
|
|
|
/// x
|
|
|
|
/// }
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2019-03-05 16:50:33 +00:00
|
|
|
pub NEEDLESS_LIFETIMES,
|
|
|
|
complexity,
|
|
|
|
"using explicit lifetimes for references in function arguments when elision rules \
|
|
|
|
would allow omitting them"
|
2016-02-05 23:13:29 +00:00
|
|
|
}
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for lifetimes in generics that are never used
|
2019-03-05 16:50:33 +00:00
|
|
|
/// anywhere else.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The additional lifetimes make the code look more
|
2019-03-05 16:50:33 +00:00
|
|
|
/// complicated, while there is nothing out of the ordinary going on. Removing
|
|
|
|
/// them leads to more readable code.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
2019-11-19 19:03:41 +00:00
|
|
|
/// // Bad: unnecessary lifetimes
|
2019-03-05 16:50:33 +00:00
|
|
|
/// fn unused_lifetime<'a>(x: u8) {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// // ..
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
2019-11-19 19:03:41 +00:00
|
|
|
///
|
|
|
|
/// // Good
|
|
|
|
/// fn no_lifetime(x: u8) {
|
|
|
|
/// // ...
|
|
|
|
/// }
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2018-05-26 08:23:34 +00:00
|
|
|
pub EXTRA_UNUSED_LIFETIMES,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-02-05 23:13:29 +00:00
|
|
|
"unused lifetimes in function definitions"
|
|
|
|
}
|
2015-12-06 21:36:22 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(Lifetimes => [NEEDLESS_LIFETIMES, EXTRA_UNUSED_LIFETIMES]);
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Lifetimes {
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
|
2019-11-08 20:12:08 +00:00
|
|
|
if let ItemKind::Fn(ref sig, ref generics, id) = item.kind {
|
2021-04-08 15:50:13 +00:00
|
|
|
check_fn_inner(cx, sig.decl, Some(id), generics, item.span, true);
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
2015-08-13 15:24:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
|
2020-03-16 15:00:16 +00:00
|
|
|
if let ImplItemKind::Fn(ref sig, id) = item.kind {
|
2021-10-21 17:41:47 +00:00
|
|
|
let report_extra_lifetimes = trait_ref_of_method(cx, item.def_id).is_none();
|
2019-09-01 06:11:40 +00:00
|
|
|
check_fn_inner(
|
|
|
|
cx,
|
2021-04-08 15:50:13 +00:00
|
|
|
sig.decl,
|
2019-09-01 06:11:40 +00:00
|
|
|
Some(id),
|
|
|
|
&item.generics,
|
|
|
|
item.span,
|
|
|
|
report_extra_lifetimes,
|
|
|
|
);
|
2015-08-13 15:24:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_trait_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx TraitItem<'_>) {
|
2020-03-12 19:56:55 +00:00
|
|
|
if let TraitItemKind::Fn(ref sig, ref body) = item.kind {
|
2017-04-11 12:09:58 +00:00
|
|
|
let body = match *body {
|
2020-03-16 15:00:16 +00:00
|
|
|
TraitFn::Required(_) => None,
|
|
|
|
TraitFn::Provided(id) => Some(id),
|
2017-04-11 12:09:58 +00:00
|
|
|
};
|
2021-04-08 15:50:13 +00:00
|
|
|
check_fn_inner(cx, sig.decl, body, &item.generics, item.span, true);
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-12 18:13:14 +00:00
|
|
|
/// The lifetime of a &-reference.
|
2020-10-09 10:45:29 +00:00
|
|
|
#[derive(PartialEq, Eq, Hash, Debug, Clone)]
|
2015-08-12 11:16:09 +00:00
|
|
|
enum RefLt {
|
|
|
|
Unnamed,
|
|
|
|
Static,
|
2020-08-11 13:43:21 +00:00
|
|
|
Named(Symbol),
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
2016-01-29 21:18:14 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_fn_inner<'tcx>(
|
|
|
|
cx: &LateContext<'tcx>,
|
2019-12-30 04:02:10 +00:00
|
|
|
decl: &'tcx FnDecl<'_>,
|
2017-04-12 09:06:32 +00:00
|
|
|
body: Option<BodyId>,
|
2019-12-30 04:02:10 +00:00
|
|
|
generics: &'tcx Generics<'_>,
|
2017-08-09 07:30:56 +00:00
|
|
|
span: Span,
|
2019-09-01 06:11:40 +00:00
|
|
|
report_extra_lifetimes: bool,
|
2017-04-12 09:06:32 +00:00
|
|
|
) {
|
2021-12-06 11:33:31 +00:00
|
|
|
if span.from_expansion() || has_where_lifetimes(cx, &generics.where_clause) {
|
2015-08-13 15:24:47 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-01-29 21:18:14 +00:00
|
|
|
|
2020-07-14 12:59:59 +00:00
|
|
|
let types = generics
|
|
|
|
.params
|
|
|
|
.iter()
|
|
|
|
.filter(|param| matches!(param.kind, GenericParamKind::Type { .. }));
|
2018-06-25 00:06:57 +00:00
|
|
|
for typ in types {
|
2019-12-30 04:02:10 +00:00
|
|
|
for bound in typ.bounds {
|
2018-06-25 00:06:57 +00:00
|
|
|
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;
|
2021-04-08 15:50:13 +00:00
|
|
|
if let Some(params) = *params {
|
2018-06-25 00:06:57 +00:00
|
|
|
let lifetimes = params.args.iter().filter_map(|arg| match arg {
|
|
|
|
GenericArg::Lifetime(lt) => Some(lt),
|
2019-02-19 07:34:43 +00:00
|
|
|
_ => None,
|
2018-06-25 00:06:57 +00:00
|
|
|
});
|
|
|
|
for bound in lifetimes {
|
2018-07-01 09:58:29 +00:00
|
|
|
if bound.name != LifetimeName::Static && !bound.is_elided() {
|
2018-06-25 00:06:57 +00:00
|
|
|
return;
|
|
|
|
}
|
2017-04-11 13:44:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-06-25 00:06:57 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-08 15:50:13 +00:00
|
|
|
if could_use_elision(cx, decl, body, generics.params) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
NEEDLESS_LIFETIMES,
|
2020-03-16 11:44:24 +00:00
|
|
|
span.with_hi(decl.output.span().hi()),
|
2018-11-27 20:14:15 +00:00
|
|
|
"explicit lifetimes given in parameter types where they could be elided \
|
|
|
|
(or replaced with `'_` if needed by type declaration)",
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2015-08-13 15:24:47 +00:00
|
|
|
}
|
2019-09-01 06:11:40 +00:00
|
|
|
if report_extra_lifetimes {
|
|
|
|
self::report_extra_lifetimes(cx, decl, generics);
|
|
|
|
}
|
2015-08-13 15:24:47 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn could_use_elision<'tcx>(
|
|
|
|
cx: &LateContext<'tcx>,
|
2019-12-30 04:02:10 +00:00
|
|
|
func: &'tcx FnDecl<'_>,
|
2017-04-11 12:09:58 +00:00
|
|
|
body: Option<BodyId>,
|
2019-12-30 04:02:10 +00:00
|
|
|
named_generics: &'tcx [GenericParam<'_>],
|
2016-12-21 11:14:54 +00:00
|
|
|
) -> bool {
|
2015-08-12 11:16:09 +00: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 15:24:47 +00:00
|
|
|
// All lifetimes must be unnamed, 'static or defined without bounds on the
|
|
|
|
// level of the current item.
|
|
|
|
|
|
|
|
// check named LTs
|
2017-12-22 04:42:47 +00:00
|
|
|
let allowed_lts = allowed_lts_from(named_generics);
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2015-08-12 18:13:14 +00:00
|
|
|
// these will collect all the lifetimes for references in arg/return types
|
2015-11-10 23:12:45 +00:00
|
|
|
let mut input_visitor = RefVisitor::new(cx);
|
|
|
|
let mut output_visitor = RefVisitor::new(cx);
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2015-08-12 18:13:14 +00:00
|
|
|
// extract lifetimes in input argument types
|
2019-12-30 04:02:10 +00:00
|
|
|
for arg in func.inputs {
|
2017-01-04 23:48:34 +00:00
|
|
|
input_visitor.visit_ty(arg);
|
2015-08-12 18:13:14 +00:00
|
|
|
}
|
|
|
|
// extract lifetimes in output type
|
2021-04-08 15:50:13 +00:00
|
|
|
if let Return(ty) = func.output {
|
2015-11-10 23:12:45 +00:00
|
|
|
output_visitor.visit_ty(ty);
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
2020-10-09 10:45:29 +00:00
|
|
|
for lt in named_generics {
|
2021-06-03 06:41:37 +00:00
|
|
|
input_visitor.visit_generic_param(lt);
|
2020-10-09 10:45:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if input_visitor.abort() || output_visitor.abort() {
|
|
|
|
return false;
|
|
|
|
}
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2020-10-09 10:45:29 +00:00
|
|
|
if allowed_lts
|
2020-11-05 13:29:48 +00:00
|
|
|
.intersection(
|
|
|
|
&input_visitor
|
2020-10-09 10:45:29 +00:00
|
|
|
.nested_elision_site_lts
|
|
|
|
.iter()
|
|
|
|
.chain(output_visitor.nested_elision_site_lts.iter())
|
|
|
|
.cloned()
|
2020-11-05 13:29:48 +00:00
|
|
|
.filter(|v| matches!(v, RefLt::Named(_)))
|
|
|
|
.collect(),
|
|
|
|
)
|
2020-10-09 10:45:29 +00:00
|
|
|
.next()
|
|
|
|
.is_some()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
let input_lts = input_visitor.lts;
|
|
|
|
let output_lts = output_visitor.lts;
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2017-04-11 12:09:58 +00:00
|
|
|
if let Some(body_id) = body {
|
2017-09-05 09:33:04 +00:00
|
|
|
let mut checker = BodyLifetimeChecker {
|
|
|
|
lifetimes_used_in_body: false,
|
|
|
|
};
|
2018-12-08 00:56:03 +00:00
|
|
|
checker.visit_expr(&cx.tcx.hir().body(body_id).value);
|
2017-04-11 12:09:58 +00:00
|
|
|
if checker.lifetimes_used_in_body {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-13 15:24:47 +00: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 11:16:09 +00:00
|
|
|
// no input lifetimes? easy case!
|
|
|
|
if input_lts.is_empty() {
|
2015-11-18 11:35:18 +00:00
|
|
|
false
|
2015-08-12 11:16:09 +00:00
|
|
|
} else if output_lts.is_empty() {
|
|
|
|
// no output lifetimes, check distinctness of input lifetimes
|
|
|
|
|
2015-08-15 07:36:02 +00:00
|
|
|
// only unnamed and static, ok
|
2018-11-27 20:14:15 +00:00
|
|
|
let unnamed_and_static = input_lts.iter().all(|lt| *lt == RefLt::Unnamed || *lt == RefLt::Static);
|
2017-08-09 07:59:38 +00:00
|
|
|
if unnamed_and_static {
|
2015-08-12 11:16:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// we have no output reference, so we only need all distinct lifetimes
|
2015-11-18 11:35:18 +00:00
|
|
|
input_lts.len() == unique_lifetimes(&input_lts)
|
2015-08-12 11:16:09 +00: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 21:18:14 +00:00
|
|
|
(&RefLt::Named(n1), &RefLt::Named(n2)) if n1 == n2 => true,
|
|
|
|
(&RefLt::Named(_), &RefLt::Unnamed) => true,
|
2017-09-05 09:33:04 +00:00
|
|
|
_ => false, /* already elided, different named lifetimes
|
|
|
|
* or something static going on */
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
2015-11-18 11:35:18 +00:00
|
|
|
} else {
|
|
|
|
false
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 04:02:10 +00:00
|
|
|
fn allowed_lts_from(named_generics: &[GenericParam<'_>]) -> FxHashSet<RefLt> {
|
2018-09-11 23:34:52 +00:00
|
|
|
let mut allowed_lts = FxHashSet::default();
|
2017-12-22 04:42:47 +00:00
|
|
|
for par in named_generics.iter() {
|
2018-06-24 21:42:52 +00:00
|
|
|
if let GenericParamKind::Lifetime { .. } = par.kind {
|
|
|
|
if par.bounds.is_empty() {
|
2018-06-28 13:46:58 +00:00
|
|
|
allowed_lts.insert(RefLt::Named(par.name.ident().name));
|
2017-12-22 04:42:47 +00:00
|
|
|
}
|
2015-08-31 09:11:51 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-29 21:18:14 +00:00
|
|
|
allowed_lts.insert(RefLt::Unnamed);
|
|
|
|
allowed_lts.insert(RefLt::Static);
|
2015-08-31 09:11:51 +00:00
|
|
|
allowed_lts
|
|
|
|
}
|
|
|
|
|
2015-08-12 18:13:14 +00:00
|
|
|
/// Number of unique lifetimes in the given vector.
|
2019-09-18 06:37:41 +00:00
|
|
|
#[must_use]
|
2015-08-13 14:28:11 +00:00
|
|
|
fn unique_lifetimes(lts: &[RefLt]) -> usize {
|
2018-09-11 23:34:52 +00:00
|
|
|
lts.iter().collect::<FxHashSet<_>>().len()
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
const CLOSURE_TRAIT_BOUNDS: [LangItem; 3] = [LangItem::Fn, LangItem::FnMut, LangItem::FnOnce];
|
2020-10-09 10:45:29 +00:00
|
|
|
|
2016-01-29 21:18:14 +00:00
|
|
|
/// A visitor usable for `rustc_front::visit::walk_ty()`.
|
2019-06-19 18:36:23 +00:00
|
|
|
struct RefVisitor<'a, 'tcx> {
|
2020-06-25 20:41:36 +00:00
|
|
|
cx: &'a LateContext<'tcx>,
|
2016-01-04 04:26:12 +00:00
|
|
|
lts: Vec<RefLt>,
|
2020-10-09 10:45:29 +00:00
|
|
|
nested_elision_site_lts: Vec<RefLt>,
|
|
|
|
unelided_trait_object_lifetime: bool,
|
2015-11-10 23:12:45 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'a, 'tcx> RefVisitor<'a, 'tcx> {
|
|
|
|
fn new(cx: &'a LateContext<'tcx>) -> Self {
|
2017-08-21 11:32:12 +00:00
|
|
|
Self {
|
2018-03-15 15:07:15 +00:00
|
|
|
cx,
|
2016-01-04 04:26:12 +00:00
|
|
|
lts: Vec::new(),
|
2020-10-09 10:45:29 +00:00
|
|
|
nested_elision_site_lts: Vec::new(),
|
|
|
|
unelided_trait_object_lifetime: false,
|
2016-01-04 04:26:12 +00:00
|
|
|
}
|
2015-11-10 23:12:45 +00:00
|
|
|
}
|
2015-08-12 11:16:09 +00:00
|
|
|
|
2015-08-12 18:13:14 +00:00
|
|
|
fn record(&mut self, lifetime: &Option<Lifetime>) {
|
2015-11-24 17:44:40 +00:00
|
|
|
if let Some(ref lt) = *lifetime {
|
2018-07-01 09:58:29 +00:00
|
|
|
if lt.name == LifetimeName::Static {
|
2016-01-29 21:18:14 +00:00
|
|
|
self.lts.push(RefLt::Static);
|
2019-07-09 17:57:25 +00:00
|
|
|
} else if let LifetimeName::Param(ParamName::Fresh(_)) = lt.name {
|
|
|
|
// Fresh lifetimes generated should be ignored.
|
2017-02-03 10:52:13 +00:00
|
|
|
} else if lt.is_elided() {
|
|
|
|
self.lts.push(RefLt::Unnamed);
|
2015-08-12 11:16:09 +00:00
|
|
|
} else {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.lts.push(RefLt::Named(lt.name.ident().name));
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
|
|
|
} else {
|
2016-01-29 21:18:14 +00:00
|
|
|
self.lts.push(RefLt::Unnamed);
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-12 18:13:14 +00:00
|
|
|
|
2020-10-09 10:45:29 +00:00
|
|
|
fn all_lts(&self) -> Vec<RefLt> {
|
|
|
|
self.lts
|
|
|
|
.iter()
|
|
|
|
.chain(self.nested_elision_site_lts.iter())
|
|
|
|
.cloned()
|
|
|
|
.collect::<Vec<_>>()
|
2015-11-10 23:12:45 +00:00
|
|
|
}
|
|
|
|
|
2020-10-09 10:45:29 +00:00
|
|
|
fn abort(&self) -> bool {
|
|
|
|
self.unelided_trait_object_lifetime
|
2015-08-12 18:13:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'a, 'tcx> Visitor<'tcx> for RefVisitor<'a, 'tcx> {
|
2020-01-09 07:13:22 +00:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2015-08-13 04:43:25 +00:00
|
|
|
// for lifetimes as parameters of generics
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2015-08-13 04:43:25 +00:00
|
|
|
self.record(&Some(*lifetime));
|
|
|
|
}
|
2015-09-30 14:40:54 +00:00
|
|
|
|
2020-10-09 10:45:29 +00:00
|
|
|
fn visit_poly_trait_ref(&mut self, poly_tref: &'tcx PolyTraitRef<'tcx>, tbm: TraitBoundModifier) {
|
|
|
|
let trait_ref = &poly_tref.trait_ref;
|
2021-03-12 14:30:50 +00:00
|
|
|
if CLOSURE_TRAIT_BOUNDS.iter().any(|&item| {
|
|
|
|
self.cx
|
|
|
|
.tcx
|
|
|
|
.lang_items()
|
|
|
|
.require(item)
|
|
|
|
.map_or(false, |id| Some(id) == trait_ref.trait_def_id())
|
|
|
|
}) {
|
2020-10-09 10:45:29 +00:00
|
|
|
let mut sub_visitor = RefVisitor::new(self.cx);
|
|
|
|
sub_visitor.visit_trait_ref(trait_ref);
|
|
|
|
self.nested_elision_site_lts.append(&mut sub_visitor.all_lts());
|
|
|
|
} else {
|
|
|
|
walk_poly_trait_ref(self, poly_tref, tbm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 04:02:10 +00:00
|
|
|
fn visit_ty(&mut self, ty: &'tcx Ty<'_>) {
|
2019-09-27 15:16:06 +00:00
|
|
|
match ty.kind {
|
2021-11-04 12:52:36 +00:00
|
|
|
TyKind::OpaqueDef(item, bounds) => {
|
2019-03-29 04:47:09 +00:00
|
|
|
let map = self.cx.tcx.hir();
|
2021-01-30 11:06:04 +00:00
|
|
|
let item = map.item(item);
|
2020-10-09 10:45:29 +00:00
|
|
|
walk_item(self, item);
|
2018-10-05 20:41:40 +00:00
|
|
|
walk_ty(self, ty);
|
2021-11-04 12:52:36 +00:00
|
|
|
self.lts.extend(bounds.iter().filter_map(|bound| match bound {
|
|
|
|
GenericArg::Lifetime(l) => Some(RefLt::Named(l.name.ident().name)),
|
|
|
|
_ => None,
|
|
|
|
}));
|
2018-11-27 20:14:15 +00:00
|
|
|
},
|
2020-10-09 10:45:29 +00:00
|
|
|
TyKind::BareFn(&BareFnTy { decl, .. }) => {
|
|
|
|
let mut sub_visitor = RefVisitor::new(self.cx);
|
|
|
|
sub_visitor.visit_fn_decl(decl);
|
|
|
|
self.nested_elision_site_lts.append(&mut sub_visitor.all_lts());
|
|
|
|
return;
|
|
|
|
},
|
2021-03-13 12:44:29 +00:00
|
|
|
TyKind::TraitObject(bounds, ref lt, _) => {
|
2017-02-04 12:18:51 +00:00
|
|
|
if !lt.is_elided() {
|
2020-10-09 10:45:29 +00:00
|
|
|
self.unelided_trait_object_lifetime = true;
|
2017-02-04 12:18:51 +00:00
|
|
|
}
|
|
|
|
for bound in bounds {
|
|
|
|
self.visit_poly_trait_ref(bound, TraitBoundModifier::None);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
},
|
2016-04-14 18:14:03 +00:00
|
|
|
_ => (),
|
2015-09-30 14:40:54 +00:00
|
|
|
}
|
|
|
|
walk_ty(self, ty);
|
|
|
|
}
|
2020-03-15 22:41:20 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2016-12-06 10:32:21 +00:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2015-08-12 11:16:09 +00:00
|
|
|
}
|
2015-08-30 07:57:52 +00:00
|
|
|
|
2019-03-10 17:19:47 +00:00
|
|
|
/// Are any lifetimes mentioned in the `where` clause? If so, we don't try to
|
2015-08-30 07:57:52 +00:00
|
|
|
/// reason about elision.
|
2020-06-25 20:41:36 +00:00
|
|
|
fn has_where_lifetimes<'tcx>(cx: &LateContext<'tcx>, where_clause: &'tcx WhereClause<'_>) -> bool {
|
2019-12-30 04:02:10 +00:00
|
|
|
for predicate in where_clause.predicates {
|
2015-08-30 07:57:52 +00:00
|
|
|
match *predicate {
|
|
|
|
WherePredicate::RegionPredicate(..) => return true,
|
|
|
|
WherePredicate::BoundPredicate(ref pred) => {
|
2015-08-31 09:11:51 +00:00
|
|
|
// a predicate like F: Trait or F: for<'a> Trait<'a>
|
2015-11-10 23:12:45 +00:00
|
|
|
let mut visitor = RefVisitor::new(cx);
|
2015-08-31 09:11:51 +00:00
|
|
|
// walk the type F, it may not contain LT refs
|
2021-04-08 15:50:13 +00:00
|
|
|
walk_ty(&mut visitor, pred.bounded_ty);
|
2020-10-28 22:36:07 +00:00
|
|
|
if !visitor.all_lts().is_empty() {
|
2016-01-04 04:26:12 +00:00
|
|
|
return true;
|
|
|
|
}
|
2015-08-31 09:11:51 +00:00
|
|
|
// if the bounds define new lifetimes, they are fine to occur
|
2021-04-08 15:50:13 +00:00
|
|
|
let allowed_lts = allowed_lts_from(pred.bound_generic_params);
|
2015-08-31 09:11:51 +00:00
|
|
|
// now walk the bounds
|
|
|
|
for bound in pred.bounds.iter() {
|
2018-06-24 13:32:40 +00:00
|
|
|
walk_param_bound(&mut visitor, bound);
|
2015-08-31 09:11:51 +00:00
|
|
|
}
|
|
|
|
// and check that all lifetimes are allowed
|
2020-10-28 22:36:07 +00:00
|
|
|
if visitor.all_lts().iter().any(|it| !allowed_lts.contains(it)) {
|
|
|
|
return true;
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2015-08-30 07:57:52 +00:00
|
|
|
WherePredicate::EqPredicate(ref pred) => {
|
2015-11-10 23:12:45 +00:00
|
|
|
let mut visitor = RefVisitor::new(cx);
|
2021-04-08 15:50:13 +00:00
|
|
|
walk_ty(&mut visitor, pred.lhs_ty);
|
|
|
|
walk_ty(&mut visitor, pred.rhs_ty);
|
2016-01-04 04:26:12 +00:00
|
|
|
if !visitor.lts.is_empty() {
|
|
|
|
return true;
|
|
|
|
}
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2015-08-30 07:57:52 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-31 09:11:51 +00:00
|
|
|
false
|
2015-08-30 07:57:52 +00:00
|
|
|
}
|
2015-12-06 21:36:22 +00:00
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
struct LifetimeChecker {
|
2020-08-11 13:43:21 +00:00
|
|
|
map: FxHashMap<Symbol, Span>,
|
2016-12-06 10:32:21 +00:00
|
|
|
}
|
2015-12-06 21:36:22 +00:00
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
impl<'tcx> Visitor<'tcx> for LifetimeChecker {
|
2020-01-09 07:13:22 +00:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2015-12-06 21:36:22 +00:00
|
|
|
// for lifetimes as parameters of generics
|
2016-12-06 10:32:21 +00:00
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2018-06-28 13:46:58 +00:00
|
|
|
self.map.remove(&lifetime.name.ident().name);
|
2015-12-06 21:36:22 +00:00
|
|
|
}
|
2015-12-10 16:44:12 +00:00
|
|
|
|
2019-12-30 04:02:10 +00:00
|
|
|
fn visit_generic_param(&mut self, param: &'tcx GenericParam<'_>) {
|
2015-12-10 16:44:12 +00: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 13:32:40 +00:00
|
|
|
if let GenericParamKind::Type { .. } = param.kind {
|
2021-06-03 06:41:37 +00:00
|
|
|
walk_generic_param(self, param);
|
2017-12-22 04:42:47 +00:00
|
|
|
}
|
2015-12-10 16:44:12 +00:00
|
|
|
}
|
2020-03-15 22:41:20 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2016-12-06 10:32:21 +00:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2015-12-06 21:36:22 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn report_extra_lifetimes<'tcx>(cx: &LateContext<'tcx>, func: &'tcx FnDecl<'_>, generics: &'tcx Generics<'_>) {
|
2018-11-27 20:14:15 +00:00
|
|
|
let hs = generics
|
|
|
|
.params
|
|
|
|
.iter()
|
2018-06-24 21:42:52 +00:00
|
|
|
.filter_map(|par| match par.kind {
|
2018-06-28 13:46:58 +00:00
|
|
|
GenericParamKind::Lifetime { .. } => Some((par.name.ident().name, par.span)),
|
2018-06-24 21:42:52 +00:00
|
|
|
_ => None,
|
|
|
|
})
|
2016-12-20 17:21:30 +00:00
|
|
|
.collect();
|
2016-12-06 10:32:21 +00:00
|
|
|
let mut checker = LifetimeChecker { map: hs };
|
2016-01-14 18:27:24 +00:00
|
|
|
|
2015-12-10 16:44:12 +00:00
|
|
|
walk_generics(&mut checker, generics);
|
2015-12-06 21:36:22 +00:00
|
|
|
walk_fn_decl(&mut checker, func);
|
2016-01-14 18:27:24 +00:00
|
|
|
|
2016-12-06 10:32:21 +00:00
|
|
|
for &v in checker.map.values() {
|
2018-11-27 20:14:15 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
EXTRA_UNUSED_LIFETIMES,
|
|
|
|
v,
|
|
|
|
"this lifetime isn't used in the function definition",
|
|
|
|
);
|
2015-12-06 21:36:22 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-11 12:09:58 +00:00
|
|
|
|
|
|
|
struct BodyLifetimeChecker {
|
|
|
|
lifetimes_used_in_body: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'tcx> Visitor<'tcx> for BodyLifetimeChecker {
|
2020-01-09 07:13:22 +00:00
|
|
|
type Map = Map<'tcx>;
|
|
|
|
|
2017-04-11 12:09:58 +00:00
|
|
|
// for lifetimes as parameters of generics
|
|
|
|
fn visit_lifetime(&mut self, lifetime: &'tcx Lifetime) {
|
2020-12-30 01:28:08 +00:00
|
|
|
if lifetime.name.ident().name != kw::Empty && lifetime.name.ident().name != kw::StaticLifetime {
|
2017-04-11 12:09:58 +00:00
|
|
|
self.lifetimes_used_in_body = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-15 22:41:20 +00:00
|
|
|
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
|
2017-04-11 12:09:58 +00:00
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
2017-04-11 13:54:48 +00:00
|
|
|
}
|