]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/lib.rs
Auto merge of #84189 - jyn514:clippy-dev, r=Mark-Simulacrum
[rust.git] / clippy_utils / src / lib.rs
1 #![feature(box_patterns)]
2 #![feature(in_band_lifetimes)]
3 #![feature(iter_zip)]
4 #![cfg_attr(bootstrap, feature(or_patterns))]
5 #![feature(rustc_private)]
6 #![recursion_limit = "512"]
7 #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::must_use_candidate)]
8
9 // FIXME: switch to something more ergonomic here, once available.
10 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
11 extern crate rustc_ast;
12 extern crate rustc_ast_pretty;
13 extern crate rustc_attr;
14 extern crate rustc_data_structures;
15 extern crate rustc_errors;
16 extern crate rustc_hir;
17 extern crate rustc_infer;
18 extern crate rustc_lexer;
19 extern crate rustc_lint;
20 extern crate rustc_middle;
21 extern crate rustc_mir;
22 extern crate rustc_session;
23 extern crate rustc_span;
24 extern crate rustc_target;
25 extern crate rustc_trait_selection;
26 extern crate rustc_typeck;
27
28 #[macro_use]
29 pub mod sym_helper;
30
31 #[allow(clippy::module_name_repetitions)]
32 pub mod ast_utils;
33 pub mod attrs;
34 pub mod camel_case;
35 pub mod comparisons;
36 pub mod consts;
37 pub mod diagnostics;
38 pub mod eager_or_lazy;
39 pub mod higher;
40 mod hir_utils;
41 pub mod msrvs;
42 pub mod numeric_literal;
43 pub mod paths;
44 pub mod ptr;
45 pub mod qualify_min_const_fn;
46 pub mod source;
47 pub mod sugg;
48 pub mod ty;
49 pub mod usage;
50 pub mod visitors;
51
52 pub use self::attrs::*;
53 pub use self::hir_utils::{both, count_eq, eq_expr_value, over, SpanlessEq, SpanlessHash};
54
55 use std::collections::hash_map::Entry;
56 use std::hash::BuildHasherDefault;
57
58 use if_chain::if_chain;
59 use rustc_ast::ast::{self, Attribute, BorrowKind, LitKind};
60 use rustc_data_structures::fx::FxHashMap;
61 use rustc_hir as hir;
62 use rustc_hir::def::{DefKind, Res};
63 use rustc_hir::def_id::{DefId, LOCAL_CRATE};
64 use rustc_hir::intravisit::{self, walk_expr, ErasedMap, NestedVisitorMap, Visitor};
65 use rustc_hir::LangItem::{ResultErr, ResultOk};
66 use rustc_hir::{
67     def, Arm, BindingAnnotation, Block, Body, Constness, Destination, Expr, ExprKind, FnDecl, GenericArgs, HirId, Impl,
68     ImplItem, ImplItemKind, Item, ItemKind, LangItem, Local, MatchSource, Node, Param, Pat, PatKind, Path, PathSegment,
69     QPath, Stmt, StmtKind, TraitItem, TraitItemKind, TraitRef, TyKind,
70 };
71 use rustc_lint::{LateContext, Level, Lint, LintContext};
72 use rustc_middle::hir::exports::Export;
73 use rustc_middle::hir::map::Map;
74 use rustc_middle::ty as rustc_ty;
75 use rustc_middle::ty::{layout::IntegerExt, DefIdTree, Ty, TyCtxt, TypeFoldable};
76 use rustc_semver::RustcVersion;
77 use rustc_session::Session;
78 use rustc_span::hygiene::{ExpnKind, MacroKind};
79 use rustc_span::source_map::original_sp;
80 use rustc_span::sym;
81 use rustc_span::symbol::{kw, Symbol};
82 use rustc_span::{Span, DUMMY_SP};
83 use rustc_target::abi::Integer;
84
85 use crate::consts::{constant, Constant};
86 use crate::ty::{can_partially_move_ty, is_recursively_primitive_type};
87
88 pub fn parse_msrv(msrv: &str, sess: Option<&Session>, span: Option<Span>) -> Option<RustcVersion> {
89     if let Ok(version) = RustcVersion::parse(msrv) {
90         return Some(version);
91     } else if let Some(sess) = sess {
92         if let Some(span) = span {
93             sess.span_err(span, &format!("`{}` is not a valid Rust version", msrv));
94         }
95     }
96     None
97 }
98
99 pub fn meets_msrv(msrv: Option<&RustcVersion>, lint_msrv: &RustcVersion) -> bool {
100     msrv.map_or(true, |msrv| msrv.meets(*lint_msrv))
101 }
102
103 #[macro_export]
104 macro_rules! extract_msrv_attr {
105     (LateContext) => {
106         extract_msrv_attr!(@LateContext, ());
107     };
108     (EarlyContext) => {
109         extract_msrv_attr!(@EarlyContext);
110     };
111     (@$context:ident$(, $call:tt)?) => {
112         fn enter_lint_attrs(&mut self, cx: &rustc_lint::$context<'tcx>, attrs: &'tcx [rustc_ast::ast::Attribute]) {
113             use $crate::get_unique_inner_attr;
114             match get_unique_inner_attr(cx.sess$($call)?, attrs, "msrv") {
115                 Some(msrv_attr) => {
116                     if let Some(msrv) = msrv_attr.value_str() {
117                         self.msrv = $crate::parse_msrv(
118                             &msrv.to_string(),
119                             Some(cx.sess$($call)?),
120                             Some(msrv_attr.span),
121                         );
122                     } else {
123                         cx.sess$($call)?.span_err(msrv_attr.span, "bad clippy attribute");
124                     }
125                 },
126                 _ => (),
127             }
128         }
129     };
130 }
131
132 /// Returns `true` if the two spans come from differing expansions (i.e., one is
133 /// from a macro and one isn't).
134 #[must_use]
135 pub fn differing_macro_contexts(lhs: Span, rhs: Span) -> bool {
136     rhs.ctxt() != lhs.ctxt()
137 }
138
139 /// If the given expression is a local binding, find the initializer expression.
140 /// If that initializer expression is another local binding, find its initializer again.
141 /// This process repeats as long as possible (but usually no more than once). Initializer
142 /// expressions with adjustments are ignored. If this is not desired, use [`find_binding_init`]
143 /// instead.
144 ///
145 /// Examples:
146 /// ```ignore
147 /// let abc = 1;
148 /// //        ^ output
149 /// let def = abc;
150 /// dbg!(def)
151 /// //   ^^^ input
152 ///
153 /// // or...
154 /// let abc = 1;
155 /// let def = abc + 2;
156 /// //        ^^^^^^^ output
157 /// dbg!(def)
158 /// //   ^^^ input
159 /// ```
160 pub fn expr_or_init<'a, 'b, 'tcx: 'b>(cx: &LateContext<'tcx>, mut expr: &'a Expr<'b>) -> &'a Expr<'b> {
161     while let Some(init) = path_to_local(expr)
162         .and_then(|id| find_binding_init(cx, id))
163         .filter(|init| cx.typeck_results().expr_adjustments(init).is_empty())
164     {
165         expr = init;
166     }
167     expr
168 }
169
170 /// Finds the initializer expression for a local binding. Returns `None` if the binding is mutable.
171 /// By only considering immutable bindings, we guarantee that the returned expression represents the
172 /// value of the binding wherever it is referenced.
173 ///
174 /// Example: For `let x = 1`, if the `HirId` of `x` is provided, the `Expr` `1` is returned.
175 /// Note: If you have an expression that references a binding `x`, use `path_to_local` to get the
176 /// canonical binding `HirId`.
177 pub fn find_binding_init<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Expr<'tcx>> {
178     let hir = cx.tcx.hir();
179     if_chain! {
180         if let Some(Node::Binding(pat)) = hir.find(hir_id);
181         if matches!(pat.kind, PatKind::Binding(BindingAnnotation::Unannotated, ..));
182         let parent = hir.get_parent_node(hir_id);
183         if let Some(Node::Local(local)) = hir.find(parent);
184         then {
185             return local.init;
186         }
187     }
188     None
189 }
190
191 /// Returns `true` if the given `NodeId` is inside a constant context
192 ///
193 /// # Example
194 ///
195 /// ```rust,ignore
196 /// if in_constant(cx, expr.hir_id) {
197 ///     // Do something
198 /// }
199 /// ```
200 pub fn in_constant(cx: &LateContext<'_>, id: HirId) -> bool {
201     let parent_id = cx.tcx.hir().get_parent_item(id);
202     match cx.tcx.hir().get(parent_id) {
203         Node::Item(&Item {
204             kind: ItemKind::Const(..) | ItemKind::Static(..),
205             ..
206         })
207         | Node::TraitItem(&TraitItem {
208             kind: TraitItemKind::Const(..),
209             ..
210         })
211         | Node::ImplItem(&ImplItem {
212             kind: ImplItemKind::Const(..),
213             ..
214         })
215         | Node::AnonConst(_) => true,
216         Node::Item(&Item {
217             kind: ItemKind::Fn(ref sig, ..),
218             ..
219         })
220         | Node::ImplItem(&ImplItem {
221             kind: ImplItemKind::Fn(ref sig, _),
222             ..
223         }) => sig.header.constness == Constness::Const,
224         _ => false,
225     }
226 }
227
228 /// Checks if a `QPath` resolves to a constructor of a `LangItem`.
229 /// For example, use this to check whether a function call or a pattern is `Some(..)`.
230 pub fn is_lang_ctor(cx: &LateContext<'_>, qpath: &QPath<'_>, lang_item: LangItem) -> bool {
231     if let QPath::Resolved(_, path) = qpath {
232         if let Res::Def(DefKind::Ctor(..), ctor_id) = path.res {
233             if let Ok(item_id) = cx.tcx.lang_items().require(lang_item) {
234                 return cx.tcx.parent(ctor_id) == Some(item_id);
235             }
236         }
237     }
238     false
239 }
240
241 /// Returns `true` if this `span` was expanded by any macro.
242 #[must_use]
243 pub fn in_macro(span: Span) -> bool {
244     if span.from_expansion() {
245         !matches!(span.ctxt().outer_expn_data().kind, ExpnKind::Desugaring(..))
246     } else {
247         false
248     }
249 }
250
251 /// Checks if given pattern is a wildcard (`_`)
252 pub fn is_wild<'tcx>(pat: &impl std::ops::Deref<Target = Pat<'tcx>>) -> bool {
253     matches!(pat.kind, PatKind::Wild)
254 }
255
256 /// Checks if the first type parameter is a lang item.
257 pub fn is_ty_param_lang_item(cx: &LateContext<'_>, qpath: &QPath<'tcx>, item: LangItem) -> Option<&'tcx hir::Ty<'tcx>> {
258     let ty = get_qpath_generic_tys(qpath).next()?;
259
260     if let TyKind::Path(qpath) = &ty.kind {
261         cx.qpath_res(qpath, ty.hir_id)
262             .opt_def_id()
263             .map_or(false, |id| {
264                 cx.tcx.lang_items().require(item).map_or(false, |lang_id| id == lang_id)
265             })
266             .then(|| ty)
267     } else {
268         None
269     }
270 }
271
272 /// Checks if the first type parameter is a diagnostic item.
273 pub fn is_ty_param_diagnostic_item(
274     cx: &LateContext<'_>,
275     qpath: &QPath<'tcx>,
276     item: Symbol,
277 ) -> Option<&'tcx hir::Ty<'tcx>> {
278     let ty = get_qpath_generic_tys(qpath).next()?;
279
280     if let TyKind::Path(qpath) = &ty.kind {
281         cx.qpath_res(qpath, ty.hir_id)
282             .opt_def_id()
283             .map_or(false, |id| cx.tcx.is_diagnostic_item(item, id))
284             .then(|| ty)
285     } else {
286         None
287     }
288 }
289
290 /// Checks if the method call given in `expr` belongs to the given trait.
291 /// This is a deprecated function, consider using [`is_trait_method`].
292 pub fn match_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, path: &[&str]) -> bool {
293     let def_id = cx.typeck_results().type_dependent_def_id(expr.hir_id).unwrap();
294     let trt_id = cx.tcx.trait_of_item(def_id);
295     trt_id.map_or(false, |trt_id| match_def_path(cx, trt_id, path))
296 }
297
298 /// Checks if a method is defined in an impl of a diagnostic item
299 pub fn is_diag_item_method(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
300     if let Some(impl_did) = cx.tcx.impl_of_method(def_id) {
301         if let Some(adt) = cx.tcx.type_of(impl_did).ty_adt_def() {
302             return cx.tcx.is_diagnostic_item(diag_item, adt.did);
303         }
304     }
305     false
306 }
307
308 /// Checks if a method is in a diagnostic item trait
309 pub fn is_diag_trait_item(cx: &LateContext<'_>, def_id: DefId, diag_item: Symbol) -> bool {
310     if let Some(trait_did) = cx.tcx.trait_of_item(def_id) {
311         return cx.tcx.is_diagnostic_item(diag_item, trait_did);
312     }
313     false
314 }
315
316 /// Checks if the method call given in `expr` belongs to the given trait.
317 pub fn is_trait_method(cx: &LateContext<'_>, expr: &Expr<'_>, diag_item: Symbol) -> bool {
318     cx.typeck_results()
319         .type_dependent_def_id(expr.hir_id)
320         .map_or(false, |did| is_diag_trait_item(cx, did, diag_item))
321 }
322
323 /// Checks if an expression references a variable of the given name.
324 pub fn match_var(expr: &Expr<'_>, var: Symbol) -> bool {
325     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
326         if let [p] = path.segments {
327             return p.ident.name == var;
328         }
329     }
330     false
331 }
332
333 pub fn last_path_segment<'tcx>(path: &QPath<'tcx>) -> &'tcx PathSegment<'tcx> {
334     match *path {
335         QPath::Resolved(_, ref path) => path.segments.last().expect("A path must have at least one segment"),
336         QPath::TypeRelative(_, ref seg) => seg,
337         QPath::LangItem(..) => panic!("last_path_segment: lang item has no path segments"),
338     }
339 }
340
341 pub fn get_qpath_generics(path: &QPath<'tcx>) -> Option<&'tcx GenericArgs<'tcx>> {
342     match path {
343         QPath::Resolved(_, p) => p.segments.last().and_then(|s| s.args),
344         QPath::TypeRelative(_, s) => s.args,
345         QPath::LangItem(..) => None,
346     }
347 }
348
349 pub fn get_qpath_generic_tys(path: &QPath<'tcx>) -> impl Iterator<Item = &'tcx hir::Ty<'tcx>> {
350     get_qpath_generics(path)
351         .map_or([].as_ref(), |a| a.args)
352         .iter()
353         .filter_map(|a| {
354             if let hir::GenericArg::Type(ty) = a {
355                 Some(ty)
356             } else {
357                 None
358             }
359         })
360 }
361
362 pub fn single_segment_path<'tcx>(path: &QPath<'tcx>) -> Option<&'tcx PathSegment<'tcx>> {
363     match *path {
364         QPath::Resolved(_, ref path) => path.segments.get(0),
365         QPath::TypeRelative(_, ref seg) => Some(seg),
366         QPath::LangItem(..) => None,
367     }
368 }
369
370 /// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
371 /// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
372 /// `QPath::Resolved.1.res.opt_def_id()`.
373 ///
374 /// Matches a `QPath` against a slice of segment string literals.
375 ///
376 /// There is also `match_path` if you are dealing with a `rustc_hir::Path` instead of a
377 /// `rustc_hir::QPath`.
378 ///
379 /// # Examples
380 /// ```rust,ignore
381 /// match_qpath(path, &["std", "rt", "begin_unwind"])
382 /// ```
383 pub fn match_qpath(path: &QPath<'_>, segments: &[&str]) -> bool {
384     match *path {
385         QPath::Resolved(_, ref path) => match_path(path, segments),
386         QPath::TypeRelative(ref ty, ref segment) => match ty.kind {
387             TyKind::Path(ref inner_path) => {
388                 if let [prefix @ .., end] = segments {
389                     if match_qpath(inner_path, prefix) {
390                         return segment.ident.name.as_str() == *end;
391                     }
392                 }
393                 false
394             },
395             _ => false,
396         },
397         QPath::LangItem(..) => false,
398     }
399 }
400
401 /// If the expression is a path, resolve it. Otherwise, return `Res::Err`.
402 pub fn expr_path_res(cx: &LateContext<'_>, expr: &Expr<'_>) -> Res {
403     if let ExprKind::Path(p) = &expr.kind {
404         cx.qpath_res(p, expr.hir_id)
405     } else {
406         Res::Err
407     }
408 }
409
410 /// Resolves the path to a `DefId` and checks if it matches the given path.
411 pub fn is_qpath_def_path(cx: &LateContext<'_>, path: &QPath<'_>, hir_id: HirId, segments: &[&str]) -> bool {
412     cx.qpath_res(path, hir_id)
413         .opt_def_id()
414         .map_or(false, |id| match_def_path(cx, id, segments))
415 }
416
417 /// If the expression is a path, resolves it to a `DefId` and checks if it matches the given path.
418 pub fn is_expr_path_def_path(cx: &LateContext<'_>, expr: &Expr<'_>, segments: &[&str]) -> bool {
419     expr_path_res(cx, expr)
420         .opt_def_id()
421         .map_or(false, |id| match_def_path(cx, id, segments))
422 }
423
424 /// THIS METHOD IS DEPRECATED and will eventually be removed since it does not match against the
425 /// entire path or resolved `DefId`. Prefer using `match_def_path`. Consider getting a `DefId` from
426 /// `QPath::Resolved.1.res.opt_def_id()`.
427 ///
428 /// Matches a `Path` against a slice of segment string literals.
429 ///
430 /// There is also `match_qpath` if you are dealing with a `rustc_hir::QPath` instead of a
431 /// `rustc_hir::Path`.
432 ///
433 /// # Examples
434 ///
435 /// ```rust,ignore
436 /// if match_path(&trait_ref.path, &paths::HASH) {
437 ///     // This is the `std::hash::Hash` trait.
438 /// }
439 ///
440 /// if match_path(ty_path, &["rustc", "lint", "Lint"]) {
441 ///     // This is a `rustc_middle::lint::Lint`.
442 /// }
443 /// ```
444 pub fn match_path(path: &Path<'_>, segments: &[&str]) -> bool {
445     path.segments
446         .iter()
447         .rev()
448         .zip(segments.iter().rev())
449         .all(|(a, b)| a.ident.name.as_str() == *b)
450 }
451
452 /// If the expression is a path to a local, returns the canonical `HirId` of the local.
453 pub fn path_to_local(expr: &Expr<'_>) -> Option<HirId> {
454     if let ExprKind::Path(QPath::Resolved(None, ref path)) = expr.kind {
455         if let Res::Local(id) = path.res {
456             return Some(id);
457         }
458     }
459     None
460 }
461
462 /// Returns true if the expression is a path to a local with the specified `HirId`.
463 /// Use this function to see if an expression matches a function argument or a match binding.
464 pub fn path_to_local_id(expr: &Expr<'_>, id: HirId) -> bool {
465     path_to_local(expr) == Some(id)
466 }
467
468 /// Gets the definition associated to a path.
469 #[allow(clippy::shadow_unrelated)] // false positive #6563
470 pub fn path_to_res(cx: &LateContext<'_>, path: &[&str]) -> Res {
471     macro_rules! try_res {
472         ($e:expr) => {
473             match $e {
474                 Some(e) => e,
475                 None => return Res::Err,
476             }
477         };
478     }
479     fn item_child_by_name<'tcx>(tcx: TyCtxt<'tcx>, def_id: DefId, name: &str) -> Option<&'tcx Export<HirId>> {
480         tcx.item_children(def_id)
481             .iter()
482             .find(|item| item.ident.name.as_str() == name)
483     }
484
485     let (krate, first, path) = match *path {
486         [krate, first, ref path @ ..] => (krate, first, path),
487         _ => return Res::Err,
488     };
489     let tcx = cx.tcx;
490     let crates = tcx.crates();
491     let krate = try_res!(crates.iter().find(|&&num| tcx.crate_name(num).as_str() == krate));
492     let first = try_res!(item_child_by_name(tcx, krate.as_def_id(), first));
493     let last = path
494         .iter()
495         .copied()
496         // `get_def_path` seems to generate these empty segments for extern blocks.
497         // We can just ignore them.
498         .filter(|segment| !segment.is_empty())
499         // for each segment, find the child item
500         .try_fold(first, |item, segment| {
501             let def_id = item.res.def_id();
502             if let Some(item) = item_child_by_name(tcx, def_id, segment) {
503                 Some(item)
504             } else if matches!(item.res, Res::Def(DefKind::Enum | DefKind::Struct, _)) {
505                 // it is not a child item so check inherent impl items
506                 tcx.inherent_impls(def_id)
507                     .iter()
508                     .find_map(|&impl_def_id| item_child_by_name(tcx, impl_def_id, segment))
509             } else {
510                 None
511             }
512         });
513     try_res!(last).res
514 }
515
516 /// Convenience function to get the `DefId` of a trait by path.
517 /// It could be a trait or trait alias.
518 pub fn get_trait_def_id(cx: &LateContext<'_>, path: &[&str]) -> Option<DefId> {
519     match path_to_res(cx, path) {
520         Res::Def(DefKind::Trait | DefKind::TraitAlias, trait_id) => Some(trait_id),
521         _ => None,
522     }
523 }
524
525 /// Gets the `hir::TraitRef` of the trait the given method is implemented for.
526 ///
527 /// Use this if you want to find the `TraitRef` of the `Add` trait in this example:
528 ///
529 /// ```rust
530 /// struct Point(isize, isize);
531 ///
532 /// impl std::ops::Add for Point {
533 ///     type Output = Self;
534 ///
535 ///     fn add(self, other: Self) -> Self {
536 ///         Point(0, 0)
537 ///     }
538 /// }
539 /// ```
540 pub fn trait_ref_of_method<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx TraitRef<'tcx>> {
541     // Get the implemented trait for the current function
542     let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
543     if_chain! {
544         if parent_impl != hir::CRATE_HIR_ID;
545         if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
546         if let hir::ItemKind::Impl(impl_) = &item.kind;
547         then { return impl_.of_trait.as_ref(); }
548     }
549     None
550 }
551
552 /// Checks if the top level expression can be moved into a closure as is.
553 pub fn can_move_expr_to_closure_no_visit(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>, jump_targets: &[HirId]) -> bool {
554     match expr.kind {
555         ExprKind::Break(Destination { target_id: Ok(id), .. }, _)
556         | ExprKind::Continue(Destination { target_id: Ok(id), .. })
557             if jump_targets.contains(&id) =>
558         {
559             true
560         },
561         ExprKind::Break(..)
562         | ExprKind::Continue(_)
563         | ExprKind::Ret(_)
564         | ExprKind::Yield(..)
565         | ExprKind::InlineAsm(_)
566         | ExprKind::LlvmInlineAsm(_) => false,
567         // Accessing a field of a local value can only be done if the type isn't
568         // partially moved.
569         ExprKind::Field(base_expr, _)
570             if matches!(
571                 base_expr.kind,
572                 ExprKind::Path(QPath::Resolved(_, Path { res: Res::Local(_), .. }))
573             ) && can_partially_move_ty(cx, cx.typeck_results().expr_ty(base_expr)) =>
574         {
575             // TODO: check if the local has been partially moved. Assume it has for now.
576             false
577         }
578         _ => true,
579     }
580 }
581
582 /// Checks if the expression can be moved into a closure as is.
583 pub fn can_move_expr_to_closure(cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) -> bool {
584     struct V<'cx, 'tcx> {
585         cx: &'cx LateContext<'tcx>,
586         loops: Vec<HirId>,
587         allow_closure: bool,
588     }
589     impl Visitor<'tcx> for V<'_, 'tcx> {
590         type Map = ErasedMap<'tcx>;
591         fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
592             NestedVisitorMap::None
593         }
594
595         fn visit_expr(&mut self, e: &'tcx Expr<'_>) {
596             if !self.allow_closure {
597                 return;
598             }
599             if let ExprKind::Loop(b, ..) = e.kind {
600                 self.loops.push(e.hir_id);
601                 self.visit_block(b);
602                 self.loops.pop();
603             } else {
604                 self.allow_closure &= can_move_expr_to_closure_no_visit(self.cx, e, &self.loops);
605                 walk_expr(self, e);
606             }
607         }
608     }
609
610     let mut v = V {
611         cx,
612         allow_closure: true,
613         loops: Vec::new(),
614     };
615     v.visit_expr(expr);
616     v.allow_closure
617 }
618
619 /// Returns the method names and argument list of nested method call expressions that make up
620 /// `expr`. method/span lists are sorted with the most recent call first.
621 pub fn method_calls<'tcx>(
622     expr: &'tcx Expr<'tcx>,
623     max_depth: usize,
624 ) -> (Vec<Symbol>, Vec<&'tcx [Expr<'tcx>]>, Vec<Span>) {
625     let mut method_names = Vec::with_capacity(max_depth);
626     let mut arg_lists = Vec::with_capacity(max_depth);
627     let mut spans = Vec::with_capacity(max_depth);
628
629     let mut current = expr;
630     for _ in 0..max_depth {
631         if let ExprKind::MethodCall(path, span, args, _) = &current.kind {
632             if args.iter().any(|e| e.span.from_expansion()) {
633                 break;
634             }
635             method_names.push(path.ident.name);
636             arg_lists.push(&**args);
637             spans.push(*span);
638             current = &args[0];
639         } else {
640             break;
641         }
642     }
643
644     (method_names, arg_lists, spans)
645 }
646
647 /// Matches an `Expr` against a chain of methods, and return the matched `Expr`s.
648 ///
649 /// For example, if `expr` represents the `.baz()` in `foo.bar().baz()`,
650 /// `method_chain_args(expr, &["bar", "baz"])` will return a `Vec`
651 /// containing the `Expr`s for
652 /// `.bar()` and `.baz()`
653 pub fn method_chain_args<'a>(expr: &'a Expr<'_>, methods: &[&str]) -> Option<Vec<&'a [Expr<'a>]>> {
654     let mut current = expr;
655     let mut matched = Vec::with_capacity(methods.len());
656     for method_name in methods.iter().rev() {
657         // method chains are stored last -> first
658         if let ExprKind::MethodCall(ref path, _, ref args, _) = current.kind {
659             if path.ident.name.as_str() == *method_name {
660                 if args.iter().any(|e| e.span.from_expansion()) {
661                     return None;
662                 }
663                 matched.push(&**args); // build up `matched` backwards
664                 current = &args[0] // go to parent expression
665             } else {
666                 return None;
667             }
668         } else {
669             return None;
670         }
671     }
672     // Reverse `matched` so that it is in the same order as `methods`.
673     matched.reverse();
674     Some(matched)
675 }
676
677 /// Returns `true` if the provided `def_id` is an entrypoint to a program.
678 pub fn is_entrypoint_fn(cx: &LateContext<'_>, def_id: DefId) -> bool {
679     cx.tcx
680         .entry_fn(LOCAL_CRATE)
681         .map_or(false, |(entry_fn_def_id, _)| def_id == entry_fn_def_id.to_def_id())
682 }
683
684 /// Returns `true` if the expression is in the program's `#[panic_handler]`.
685 pub fn is_in_panic_handler(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
686     let parent = cx.tcx.hir().get_parent_item(e.hir_id);
687     let def_id = cx.tcx.hir().local_def_id(parent).to_def_id();
688     Some(def_id) == cx.tcx.lang_items().panic_impl()
689 }
690
691 /// Gets the name of the item the expression is in, if available.
692 pub fn get_item_name(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<Symbol> {
693     let parent_id = cx.tcx.hir().get_parent_item(expr.hir_id);
694     match cx.tcx.hir().find(parent_id) {
695         Some(
696             Node::Item(Item { ident, .. })
697             | Node::TraitItem(TraitItem { ident, .. })
698             | Node::ImplItem(ImplItem { ident, .. }),
699         ) => Some(ident.name),
700         _ => None,
701     }
702 }
703
704 /// Gets the name of a `Pat`, if any.
705 pub fn get_pat_name(pat: &Pat<'_>) -> Option<Symbol> {
706     match pat.kind {
707         PatKind::Binding(.., ref spname, _) => Some(spname.name),
708         PatKind::Path(ref qpath) => single_segment_path(qpath).map(|ps| ps.ident.name),
709         PatKind::Box(ref p) | PatKind::Ref(ref p, _) => get_pat_name(&*p),
710         _ => None,
711     }
712 }
713
714 pub struct ContainsName {
715     pub name: Symbol,
716     pub result: bool,
717 }
718
719 impl<'tcx> Visitor<'tcx> for ContainsName {
720     type Map = Map<'tcx>;
721
722     fn visit_name(&mut self, _: Span, name: Symbol) {
723         if self.name == name {
724             self.result = true;
725         }
726     }
727     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
728         NestedVisitorMap::None
729     }
730 }
731
732 /// Checks if an `Expr` contains a certain name.
733 pub fn contains_name(name: Symbol, expr: &Expr<'_>) -> bool {
734     let mut cn = ContainsName { name, result: false };
735     cn.visit_expr(expr);
736     cn.result
737 }
738
739 /// Returns `true` if `expr` contains a return expression
740 pub fn contains_return(expr: &hir::Expr<'_>) -> bool {
741     struct RetCallFinder {
742         found: bool,
743     }
744
745     impl<'tcx> hir::intravisit::Visitor<'tcx> for RetCallFinder {
746         type Map = Map<'tcx>;
747
748         fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
749             if self.found {
750                 return;
751             }
752             if let hir::ExprKind::Ret(..) = &expr.kind {
753                 self.found = true;
754             } else {
755                 hir::intravisit::walk_expr(self, expr);
756             }
757         }
758
759         fn nested_visit_map(&mut self) -> hir::intravisit::NestedVisitorMap<Self::Map> {
760             hir::intravisit::NestedVisitorMap::None
761         }
762     }
763
764     let mut visitor = RetCallFinder { found: false };
765     visitor.visit_expr(expr);
766     visitor.found
767 }
768
769 struct FindMacroCalls<'a, 'b> {
770     names: &'a [&'b str],
771     result: Vec<Span>,
772 }
773
774 impl<'a, 'b, 'tcx> Visitor<'tcx> for FindMacroCalls<'a, 'b> {
775     type Map = Map<'tcx>;
776
777     fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
778         if self.names.iter().any(|fun| is_expn_of(expr.span, fun).is_some()) {
779             self.result.push(expr.span);
780         }
781         // and check sub-expressions
782         intravisit::walk_expr(self, expr);
783     }
784
785     fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
786         NestedVisitorMap::None
787     }
788 }
789
790 /// Finds calls of the specified macros in a function body.
791 pub fn find_macro_calls(names: &[&str], body: &Body<'_>) -> Vec<Span> {
792     let mut fmc = FindMacroCalls {
793         names,
794         result: Vec::new(),
795     };
796     fmc.visit_expr(&body.value);
797     fmc.result
798 }
799
800 /// Extends the span to the beginning of the spans line, incl. whitespaces.
801 ///
802 /// ```rust,ignore
803 ///        let x = ();
804 /// //             ^^
805 /// // will be converted to
806 ///        let x = ();
807 /// // ^^^^^^^^^^^^^^
808 /// ```
809 fn line_span<T: LintContext>(cx: &T, span: Span) -> Span {
810     let span = original_sp(span, DUMMY_SP);
811     let source_map_and_line = cx.sess().source_map().lookup_line(span.lo()).unwrap();
812     let line_no = source_map_and_line.line;
813     let line_start = source_map_and_line.sf.lines[line_no];
814     Span::new(line_start, span.hi(), span.ctxt())
815 }
816
817 /// Gets the parent node, if any.
818 pub fn get_parent_node(tcx: TyCtxt<'_>, id: HirId) -> Option<Node<'_>> {
819     tcx.hir().parent_iter(id).next().map(|(_, node)| node)
820 }
821
822 /// Gets the parent expression, if any â€“- this is useful to constrain a lint.
823 pub fn get_parent_expr<'tcx>(cx: &LateContext<'tcx>, e: &Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
824     match get_parent_node(cx.tcx, e.hir_id) {
825         Some(Node::Expr(parent)) => Some(parent),
826         _ => None,
827     }
828 }
829
830 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
831     let map = &cx.tcx.hir();
832     let enclosing_node = map
833         .get_enclosing_scope(hir_id)
834         .and_then(|enclosing_id| map.find(enclosing_id));
835     enclosing_node.and_then(|node| match node {
836         Node::Block(block) => Some(block),
837         Node::Item(&Item {
838             kind: ItemKind::Fn(_, _, eid),
839             ..
840         })
841         | Node::ImplItem(&ImplItem {
842             kind: ImplItemKind::Fn(_, eid),
843             ..
844         }) => match cx.tcx.hir().body(eid).value.kind {
845             ExprKind::Block(ref block, _) => Some(block),
846             _ => None,
847         },
848         _ => None,
849     })
850 }
851
852 /// Gets the parent node if it's an impl block.
853 pub fn get_parent_as_impl(tcx: TyCtxt<'_>, id: HirId) -> Option<&Impl<'_>> {
854     let map = tcx.hir();
855     match map.parent_iter(id).next() {
856         Some((
857             _,
858             Node::Item(Item {
859                 kind: ItemKind::Impl(imp),
860                 ..
861             }),
862         )) => Some(imp),
863         _ => None,
864     }
865 }
866
867 /// Checks if the given expression is the else clause of either an `if` or `if let` expression.
868 pub fn is_else_clause(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
869     let map = tcx.hir();
870     let mut iter = map.parent_iter(expr.hir_id);
871     match iter.next() {
872         Some((arm_id, Node::Arm(..))) => matches!(
873             iter.next(),
874             Some((
875                 _,
876                 Node::Expr(Expr {
877                     kind: ExprKind::Match(_, [_, else_arm], MatchSource::IfLetDesugar { .. }),
878                     ..
879                 })
880             ))
881             if else_arm.hir_id == arm_id
882         ),
883         Some((
884             _,
885             Node::Expr(Expr {
886                 kind: ExprKind::If(_, _, Some(else_expr)),
887                 ..
888             }),
889         )) => else_expr.hir_id == expr.hir_id,
890         _ => false,
891     }
892 }
893
894 /// Checks whether the given expression is a constant integer of the given value.
895 /// unlike `is_integer_literal`, this version does const folding
896 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
897     if is_integer_literal(e, value) {
898         return true;
899     }
900     let map = cx.tcx.hir();
901     let parent_item = map.get_parent_item(e.hir_id);
902     if let Some((Constant::Int(v), _)) = map
903         .maybe_body_owned_by(parent_item)
904         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
905     {
906         value == v
907     } else {
908         false
909     }
910 }
911
912 /// Checks whether the given expression is a constant literal of the given value.
913 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
914     // FIXME: use constant folding
915     if let ExprKind::Lit(ref spanned) = expr.kind {
916         if let LitKind::Int(v, _) = spanned.node {
917             return v == value;
918         }
919     }
920     false
921 }
922
923 /// Returns `true` if the given `Expr` has been coerced before.
924 ///
925 /// Examples of coercions can be found in the Nomicon at
926 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
927 ///
928 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
929 /// information on adjustments and coercions.
930 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
931     cx.typeck_results().adjustments().get(e.hir_id).is_some()
932 }
933
934 /// Returns the pre-expansion span if is this comes from an expansion of the
935 /// macro `name`.
936 /// See also `is_direct_expn_of`.
937 #[must_use]
938 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
939     loop {
940         if span.from_expansion() {
941             let data = span.ctxt().outer_expn_data();
942             let new_span = data.call_site;
943
944             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
945                 if mac_name.as_str() == name {
946                     return Some(new_span);
947                 }
948             }
949
950             span = new_span;
951         } else {
952             return None;
953         }
954     }
955 }
956
957 /// Returns the pre-expansion span if the span directly comes from an expansion
958 /// of the macro `name`.
959 /// The difference with `is_expn_of` is that in
960 /// ```rust,ignore
961 /// foo!(bar!(42));
962 /// ```
963 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
964 /// `bar!` by
965 /// `is_direct_expn_of`.
966 #[must_use]
967 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
968     if span.from_expansion() {
969         let data = span.ctxt().outer_expn_data();
970         let new_span = data.call_site;
971
972         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
973             if mac_name.as_str() == name {
974                 return Some(new_span);
975             }
976         }
977     }
978
979     None
980 }
981
982 /// Convenience function to get the return type of a function.
983 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
984     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
985     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
986     cx.tcx.erase_late_bound_regions(ret_ty)
987 }
988
989 /// Checks if an expression is constructing a tuple-like enum variant or struct
990 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
991     if let ExprKind::Call(ref fun, _) = expr.kind {
992         if let ExprKind::Path(ref qp) = fun.kind {
993             let res = cx.qpath_res(qp, fun.hir_id);
994             return match res {
995                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
996                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
997                 _ => false,
998             };
999         }
1000     }
1001     false
1002 }
1003
1004 /// Returns `true` if a pattern is refutable.
1005 // TODO: should be implemented using rustc/mir_build/thir machinery
1006 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
1007     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
1008         matches!(
1009             cx.qpath_res(qpath, id),
1010             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
1011         )
1012     }
1013
1014     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
1015         i.any(|pat| is_refutable(cx, pat))
1016     }
1017
1018     match pat.kind {
1019         PatKind::Wild => false,
1020         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
1021         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
1022         PatKind::Lit(..) | PatKind::Range(..) => true,
1023         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
1024         PatKind::Or(ref pats) => {
1025             // TODO: should be the honest check, that pats is exhaustive set
1026             are_refutable(cx, pats.iter().map(|pat| &**pat))
1027         },
1028         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
1029         PatKind::Struct(ref qpath, ref fields, _) => {
1030             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
1031         },
1032         PatKind::TupleStruct(ref qpath, ref pats, _) => {
1033             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
1034         },
1035         PatKind::Slice(ref head, ref middle, ref tail) => {
1036             match &cx.typeck_results().node_type(pat.hir_id).kind() {
1037                 rustc_ty::Slice(..) => {
1038                     // [..] is the only irrefutable slice pattern.
1039                     !head.is_empty() || middle.is_none() || !tail.is_empty()
1040                 },
1041                 rustc_ty::Array(..) => {
1042                     are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
1043                 },
1044                 _ => {
1045                     // unreachable!()
1046                     true
1047                 },
1048             }
1049         },
1050     }
1051 }
1052
1053 /// If the pattern is an `or` pattern, call the function once for each sub pattern. Otherwise, call
1054 /// the function once on the given pattern.
1055 pub fn recurse_or_patterns<'tcx, F: FnMut(&'tcx Pat<'tcx>)>(pat: &'tcx Pat<'tcx>, mut f: F) {
1056     if let PatKind::Or(pats) = pat.kind {
1057         pats.iter().copied().for_each(f)
1058     } else {
1059         f(pat)
1060     }
1061 }
1062
1063 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
1064 /// implementations have.
1065 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
1066     attrs.iter().any(|attr| attr.has_name(sym::automatically_derived))
1067 }
1068
1069 /// Remove blocks around an expression.
1070 ///
1071 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
1072 /// themselves.
1073 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
1074     while let ExprKind::Block(ref block, ..) = expr.kind {
1075         match (block.stmts.is_empty(), block.expr.as_ref()) {
1076             (true, Some(e)) => expr = e,
1077             _ => break,
1078         }
1079     }
1080     expr
1081 }
1082
1083 pub fn is_self(slf: &Param<'_>) -> bool {
1084     if let PatKind::Binding(.., name, _) = slf.pat.kind {
1085         name.name == kw::SelfLower
1086     } else {
1087         false
1088     }
1089 }
1090
1091 pub fn is_self_ty(slf: &hir::Ty<'_>) -> bool {
1092     if_chain! {
1093         if let TyKind::Path(QPath::Resolved(None, ref path)) = slf.kind;
1094         if let Res::SelfTy(..) = path.res;
1095         then {
1096             return true
1097         }
1098     }
1099     false
1100 }
1101
1102 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
1103     (0..decl.inputs.len()).map(move |i| &body.params[i])
1104 }
1105
1106 /// Checks if a given expression is a match expression expanded from the `?`
1107 /// operator or the `try` macro.
1108 pub fn is_try<'tcx>(cx: &LateContext<'_>, expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1109     fn is_ok(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1110         if_chain! {
1111             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
1112             if is_lang_ctor(cx, path, ResultOk);
1113             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
1114             if path_to_local_id(arm.body, hir_id);
1115             then {
1116                 return true;
1117             }
1118         }
1119         false
1120     }
1121
1122     fn is_err(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1123         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1124             is_lang_ctor(cx, path, ResultErr)
1125         } else {
1126             false
1127         }
1128     }
1129
1130     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1131         // desugared from a `?` operator
1132         if let MatchSource::TryDesugar = *source {
1133             return Some(expr);
1134         }
1135
1136         if_chain! {
1137             if arms.len() == 2;
1138             if arms[0].guard.is_none();
1139             if arms[1].guard.is_none();
1140             if (is_ok(cx, &arms[0]) && is_err(cx, &arms[1])) ||
1141                 (is_ok(cx, &arms[1]) && is_err(cx, &arms[0]));
1142             then {
1143                 return Some(expr);
1144             }
1145         }
1146     }
1147
1148     None
1149 }
1150
1151 /// Returns `true` if the lint is allowed in the current context
1152 ///
1153 /// Useful for skipping long running code when it's unnecessary
1154 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1155     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1156 }
1157
1158 pub fn strip_pat_refs<'hir>(mut pat: &'hir Pat<'hir>) -> &'hir Pat<'hir> {
1159     while let PatKind::Ref(subpat, _) = pat.kind {
1160         pat = subpat;
1161     }
1162     pat
1163 }
1164
1165 pub fn int_bits(tcx: TyCtxt<'_>, ity: rustc_ty::IntTy) -> u64 {
1166     Integer::from_int_ty(&tcx, ity).size().bits()
1167 }
1168
1169 #[allow(clippy::cast_possible_wrap)]
1170 /// Turn a constant int byte representation into an i128
1171 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::IntTy) -> i128 {
1172     let amt = 128 - int_bits(tcx, ity);
1173     ((u as i128) << amt) >> amt
1174 }
1175
1176 #[allow(clippy::cast_sign_loss)]
1177 /// clip unused bytes
1178 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: rustc_ty::IntTy) -> u128 {
1179     let amt = 128 - int_bits(tcx, ity);
1180     ((u as u128) << amt) >> amt
1181 }
1182
1183 /// clip unused bytes
1184 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::UintTy) -> u128 {
1185     let bits = Integer::from_uint_ty(&tcx, ity).size().bits();
1186     let amt = 128 - bits;
1187     (u << amt) >> amt
1188 }
1189
1190 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1191     let map = &tcx.hir();
1192     let mut prev_enclosing_node = None;
1193     let mut enclosing_node = node;
1194     while Some(enclosing_node) != prev_enclosing_node {
1195         if is_automatically_derived(map.attrs(enclosing_node)) {
1196             return true;
1197         }
1198         prev_enclosing_node = Some(enclosing_node);
1199         enclosing_node = map.get_parent_item(enclosing_node);
1200     }
1201     false
1202 }
1203
1204 /// Matches a function call with the given path and returns the arguments.
1205 ///
1206 /// Usage:
1207 ///
1208 /// ```rust,ignore
1209 /// if let Some(args) = match_function_call(cx, cmp_max_call, &paths::CMP_MAX);
1210 /// ```
1211 pub fn match_function_call<'tcx>(
1212     cx: &LateContext<'tcx>,
1213     expr: &'tcx Expr<'_>,
1214     path: &[&str],
1215 ) -> Option<&'tcx [Expr<'tcx>]> {
1216     if_chain! {
1217         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1218         if let ExprKind::Path(ref qpath) = fun.kind;
1219         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1220         if match_def_path(cx, fun_def_id, path);
1221         then {
1222             return Some(&args)
1223         }
1224     };
1225     None
1226 }
1227
1228 /// Checks if the given `DefId` matches any of the paths. Returns the index of matching path, if
1229 /// any.
1230 pub fn match_any_def_paths(cx: &LateContext<'_>, did: DefId, paths: &[&[&str]]) -> Option<usize> {
1231     let search_path = cx.get_def_path(did);
1232     paths
1233         .iter()
1234         .position(|p| p.iter().map(|x| Symbol::intern(x)).eq(search_path.iter().copied()))
1235 }
1236
1237 /// Checks if the given `DefId` matches the path.
1238 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1239     // We should probably move to Symbols in Clippy as well rather than interning every time.
1240     let path = cx.get_def_path(did);
1241     syms.iter().map(|x| Symbol::intern(x)).eq(path.iter().copied())
1242 }
1243
1244 pub fn match_panic_call(cx: &LateContext<'_>, expr: &'tcx Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
1245     if let ExprKind::Call(func, [arg]) = expr.kind {
1246         expr_path_res(cx, func)
1247             .opt_def_id()
1248             .map_or(false, |id| match_panic_def_id(cx, id))
1249             .then(|| arg)
1250     } else {
1251         None
1252     }
1253 }
1254
1255 pub fn match_panic_def_id(cx: &LateContext<'_>, did: DefId) -> bool {
1256     match_any_def_paths(
1257         cx,
1258         did,
1259         &[
1260             &paths::BEGIN_PANIC,
1261             &paths::BEGIN_PANIC_FMT,
1262             &paths::PANIC_ANY,
1263             &paths::PANICKING_PANIC,
1264             &paths::PANICKING_PANIC_FMT,
1265             &paths::PANICKING_PANIC_STR,
1266         ],
1267     )
1268     .is_some()
1269 }
1270
1271 /// Returns the list of condition expressions and the list of blocks in a
1272 /// sequence of `if/else`.
1273 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1274 /// `if a { c } else if b { d } else { e }`.
1275 pub fn if_sequence<'tcx>(mut expr: &'tcx Expr<'tcx>) -> (Vec<&'tcx Expr<'tcx>>, Vec<&'tcx Block<'tcx>>) {
1276     let mut conds = Vec::new();
1277     let mut blocks: Vec<&Block<'_>> = Vec::new();
1278
1279     while let ExprKind::If(ref cond, ref then_expr, ref else_expr) = expr.kind {
1280         conds.push(&**cond);
1281         if let ExprKind::Block(ref block, _) = then_expr.kind {
1282             blocks.push(block);
1283         } else {
1284             panic!("ExprKind::If node is not an ExprKind::Block");
1285         }
1286
1287         if let Some(ref else_expr) = *else_expr {
1288             expr = else_expr;
1289         } else {
1290             break;
1291         }
1292     }
1293
1294     // final `else {..}`
1295     if !blocks.is_empty() {
1296         if let ExprKind::Block(ref block, _) = expr.kind {
1297             blocks.push(&**block);
1298         }
1299     }
1300
1301     (conds, blocks)
1302 }
1303
1304 // Finds the `#[must_use]` attribute, if any
1305 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1306     attrs.iter().find(|a| a.has_name(sym::must_use))
1307 }
1308
1309 // check if expr is calling method or function with #[must_use] attribute
1310 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1311     let did = match expr.kind {
1312         ExprKind::Call(ref path, _) => if_chain! {
1313             if let ExprKind::Path(ref qpath) = path.kind;
1314             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1315             then {
1316                 Some(did)
1317             } else {
1318                 None
1319             }
1320         },
1321         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1322         _ => None,
1323     };
1324
1325     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1326 }
1327
1328 /// Gets the node where an expression is either used, or it's type is unified with another branch.
1329 pub fn get_expr_use_or_unification_node(tcx: TyCtxt<'tcx>, expr: &Expr<'_>) -> Option<Node<'tcx>> {
1330     let map = tcx.hir();
1331     let mut child_id = expr.hir_id;
1332     let mut iter = map.parent_iter(child_id);
1333     loop {
1334         match iter.next() {
1335             None => break None,
1336             Some((id, Node::Block(_))) => child_id = id,
1337             Some((id, Node::Arm(arm))) if arm.body.hir_id == child_id => child_id = id,
1338             Some((_, Node::Expr(expr))) => match expr.kind {
1339                 ExprKind::Match(_, [arm], _) if arm.hir_id == child_id => child_id = expr.hir_id,
1340                 ExprKind::Block(..) | ExprKind::DropTemps(_) => child_id = expr.hir_id,
1341                 ExprKind::If(_, then_expr, None) if then_expr.hir_id == child_id => break None,
1342                 _ => break Some(Node::Expr(expr)),
1343             },
1344             Some((_, node)) => break Some(node),
1345         }
1346     }
1347 }
1348
1349 /// Checks if the result of an expression is used, or it's type is unified with another branch.
1350 pub fn is_expr_used_or_unified(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
1351     !matches!(
1352         get_expr_use_or_unification_node(tcx, expr),
1353         None | Some(Node::Stmt(Stmt {
1354             kind: StmtKind::Expr(_)
1355                 | StmtKind::Semi(_)
1356                 | StmtKind::Local(Local {
1357                     pat: Pat {
1358                         kind: PatKind::Wild,
1359                         ..
1360                     },
1361                     ..
1362                 }),
1363             ..
1364         }))
1365     )
1366 }
1367
1368 /// Checks if the expression is the final expression returned from a block.
1369 pub fn is_expr_final_block_expr(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
1370     matches!(get_parent_node(tcx, expr.hir_id), Some(Node::Block(..)))
1371 }
1372
1373 pub fn is_no_std_crate(cx: &LateContext<'_>) -> bool {
1374     cx.tcx.hir().attrs(hir::CRATE_HIR_ID).iter().any(|attr| {
1375         if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
1376             attr.path == sym::no_std
1377         } else {
1378             false
1379         }
1380     })
1381 }
1382
1383 /// Check if parent of a hir node is a trait implementation block.
1384 /// For example, `f` in
1385 /// ```rust,ignore
1386 /// impl Trait for S {
1387 ///     fn f() {}
1388 /// }
1389 /// ```
1390 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1391     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1392         matches!(item.kind, ItemKind::Impl(hir::Impl { of_trait: Some(_), .. }))
1393     } else {
1394         false
1395     }
1396 }
1397
1398 /// Check if it's even possible to satisfy the `where` clause for the item.
1399 ///
1400 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1401 ///
1402 /// ```ignore
1403 /// fn foo() where i32: Iterator {
1404 ///     for _ in 2i32 {}
1405 /// }
1406 /// ```
1407 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1408     use rustc_trait_selection::traits;
1409     let predicates = cx
1410         .tcx
1411         .predicates_of(did)
1412         .predicates
1413         .iter()
1414         .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1415     traits::impossible_predicates(
1416         cx.tcx,
1417         traits::elaborate_predicates(cx.tcx, predicates)
1418             .map(|o| o.predicate)
1419             .collect::<Vec<_>>(),
1420     )
1421 }
1422
1423 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1424 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1425     match &expr.kind {
1426         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1427         ExprKind::Call(
1428             Expr {
1429                 kind: ExprKind::Path(qpath),
1430                 hir_id: path_hir_id,
1431                 ..
1432             },
1433             ..,
1434         ) => cx.typeck_results().qpath_res(qpath, *path_hir_id).opt_def_id(),
1435         _ => None,
1436     }
1437 }
1438
1439 /// This function checks if any of the lints in the slice is enabled for the provided `HirId`.
1440 /// A lint counts as enabled with any of the levels: `Level::Forbid` | `Level::Deny` | `Level::Warn`
1441 ///
1442 /// ```ignore
1443 /// #[deny(clippy::YOUR_AWESOME_LINT)]
1444 /// println!("Hello, World!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == true
1445 ///
1446 /// #[allow(clippy::YOUR_AWESOME_LINT)]
1447 /// println!("See you soon!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == false
1448 /// ```
1449 pub fn run_lints(cx: &LateContext<'_>, lints: &[&'static Lint], id: HirId) -> bool {
1450     lints.iter().any(|lint| {
1451         matches!(
1452             cx.tcx.lint_level_at_node(lint, id),
1453             (Level::Forbid | Level::Deny | Level::Warn, _)
1454         )
1455     })
1456 }
1457
1458 /// Returns Option<String> where String is a textual representation of the type encapsulated in the
1459 /// slice iff the given expression is a slice of primitives (as defined in the
1460 /// `is_recursively_primitive_type` function) and None otherwise.
1461 pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
1462     let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
1463     let expr_kind = expr_type.kind();
1464     let is_primitive = match expr_kind {
1465         rustc_ty::Slice(element_type) => is_recursively_primitive_type(element_type),
1466         rustc_ty::Ref(_, inner_ty, _) if matches!(inner_ty.kind(), &rustc_ty::Slice(_)) => {
1467             if let rustc_ty::Slice(element_type) = inner_ty.kind() {
1468                 is_recursively_primitive_type(element_type)
1469             } else {
1470                 unreachable!()
1471             }
1472         },
1473         _ => false,
1474     };
1475
1476     if is_primitive {
1477         // if we have wrappers like Array, Slice or Tuple, print these
1478         // and get the type enclosed in the slice ref
1479         match expr_type.peel_refs().walk().nth(1).unwrap().expect_ty().kind() {
1480             rustc_ty::Slice(..) => return Some("slice".into()),
1481             rustc_ty::Array(..) => return Some("array".into()),
1482             rustc_ty::Tuple(..) => return Some("tuple".into()),
1483             _ => {
1484                 // is_recursively_primitive_type() should have taken care
1485                 // of the rest and we can rely on the type that is found
1486                 let refs_peeled = expr_type.peel_refs();
1487                 return Some(refs_peeled.walk().last().unwrap().to_string());
1488             },
1489         }
1490     }
1491     None
1492 }
1493
1494 /// returns list of all pairs (a, b) from `exprs` such that `eq(a, b)`
1495 /// `hash` must be comformed with `eq`
1496 pub fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Vec<(&T, &T)>
1497 where
1498     Hash: Fn(&T) -> u64,
1499     Eq: Fn(&T, &T) -> bool,
1500 {
1501     if exprs.len() == 2 && eq(&exprs[0], &exprs[1]) {
1502         return vec![(&exprs[0], &exprs[1])];
1503     }
1504
1505     let mut match_expr_list: Vec<(&T, &T)> = Vec::new();
1506
1507     let mut map: FxHashMap<_, Vec<&_>> =
1508         FxHashMap::with_capacity_and_hasher(exprs.len(), BuildHasherDefault::default());
1509
1510     for expr in exprs {
1511         match map.entry(hash(expr)) {
1512             Entry::Occupied(mut o) => {
1513                 for o in o.get() {
1514                     if eq(o, expr) {
1515                         match_expr_list.push((o, expr));
1516                     }
1517                 }
1518                 o.get_mut().push(expr);
1519             },
1520             Entry::Vacant(v) => {
1521                 v.insert(vec![expr]);
1522             },
1523         }
1524     }
1525
1526     match_expr_list
1527 }
1528
1529 /// Peels off all references on the pattern. Returns the underlying pattern and the number of
1530 /// references removed.
1531 pub fn peel_hir_pat_refs(pat: &'a Pat<'a>) -> (&'a Pat<'a>, usize) {
1532     fn peel(pat: &'a Pat<'a>, count: usize) -> (&'a Pat<'a>, usize) {
1533         if let PatKind::Ref(pat, _) = pat.kind {
1534             peel(pat, count + 1)
1535         } else {
1536             (pat, count)
1537         }
1538     }
1539     peel(pat, 0)
1540 }
1541
1542 /// Peels of expressions while the given closure returns `Some`.
1543 pub fn peel_hir_expr_while<'tcx>(
1544     mut expr: &'tcx Expr<'tcx>,
1545     mut f: impl FnMut(&'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>>,
1546 ) -> &'tcx Expr<'tcx> {
1547     while let Some(e) = f(expr) {
1548         expr = e;
1549     }
1550     expr
1551 }
1552
1553 /// Peels off up to the given number of references on the expression. Returns the underlying
1554 /// expression and the number of references removed.
1555 pub fn peel_n_hir_expr_refs(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1556     let mut remaining = count;
1557     let e = peel_hir_expr_while(expr, |e| match e.kind {
1558         ExprKind::AddrOf(BorrowKind::Ref, _, e) if remaining != 0 => {
1559             remaining -= 1;
1560             Some(e)
1561         },
1562         _ => None,
1563     });
1564     (e, count - remaining)
1565 }
1566
1567 /// Peels off all references on the expression. Returns the underlying expression and the number of
1568 /// references removed.
1569 pub fn peel_hir_expr_refs(expr: &'a Expr<'a>) -> (&'a Expr<'a>, usize) {
1570     let mut count = 0;
1571     let e = peel_hir_expr_while(expr, |e| match e.kind {
1572         ExprKind::AddrOf(BorrowKind::Ref, _, e) => {
1573             count += 1;
1574             Some(e)
1575         },
1576         _ => None,
1577     });
1578     (e, count)
1579 }
1580
1581 #[macro_export]
1582 macro_rules! unwrap_cargo_metadata {
1583     ($cx: ident, $lint: ident, $deps: expr) => {{
1584         let mut command = cargo_metadata::MetadataCommand::new();
1585         if !$deps {
1586             command.no_deps();
1587         }
1588
1589         match command.exec() {
1590             Ok(metadata) => metadata,
1591             Err(err) => {
1592                 span_lint($cx, $lint, DUMMY_SP, &format!("could not read cargo metadata: {}", err));
1593                 return;
1594             },
1595         }
1596     }};
1597 }
1598
1599 pub fn is_hir_ty_cfg_dependant(cx: &LateContext<'_>, ty: &hir::Ty<'_>) -> bool {
1600     if_chain! {
1601         if let TyKind::Path(QPath::Resolved(_, path)) = ty.kind;
1602         if let Res::Def(_, def_id) = path.res;
1603         then {
1604             cx.tcx.has_attr(def_id, sym::cfg) || cx.tcx.has_attr(def_id, sym::cfg_attr)
1605         } else {
1606             false
1607         }
1608     }
1609 }