]> git.lizzy.rs Git - rust.git/blob - clippy_utils/src/lib.rs
Improvements to `while_let_on_iterator`
[rust.git] / clippy_utils / src / lib.rs
1 #![feature(box_patterns)]
2 #![feature(in_band_lifetimes)]
3 #![feature(iter_zip)]
4 #![feature(rustc_private)]
5 #![recursion_limit = "512"]
6 #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc, clippy::must_use_candidate)]
7
8 // FIXME: switch to something more ergonomic here, once available.
9 // (Currently there is no way to opt into sysroot crates without `extern crate`.)
10 extern crate rustc_ast;
11 extern crate rustc_ast_pretty;
12 extern crate rustc_attr;
13 extern crate rustc_data_structures;
14 extern crate rustc_errors;
15 extern crate rustc_hir;
16 extern crate rustc_hir_pretty;
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, FnKind, 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, IsAsync, Item, ItemKind, LangItem, Local, MatchSource, Node, Param, Pat, PatKind, Path,
69     PathSegment, 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)
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     get_parent_expr_for_hir(cx, e.hir_id)
825 }
826
827 /// This retrieves the parent for the given `HirId` if it's an expression. This is useful for
828 /// constraint lints
829 pub fn get_parent_expr_for_hir<'tcx>(cx: &LateContext<'tcx>, hir_id: hir::HirId) -> Option<&'tcx Expr<'tcx>> {
830     match get_parent_node(cx.tcx, hir_id) {
831         Some(Node::Expr(parent)) => Some(parent),
832         _ => None,
833     }
834 }
835
836 pub fn get_enclosing_block<'tcx>(cx: &LateContext<'tcx>, hir_id: HirId) -> Option<&'tcx Block<'tcx>> {
837     let map = &cx.tcx.hir();
838     let enclosing_node = map
839         .get_enclosing_scope(hir_id)
840         .and_then(|enclosing_id| map.find(enclosing_id));
841     enclosing_node.and_then(|node| match node {
842         Node::Block(block) => Some(block),
843         Node::Item(&Item {
844             kind: ItemKind::Fn(_, _, eid),
845             ..
846         })
847         | Node::ImplItem(&ImplItem {
848             kind: ImplItemKind::Fn(_, eid),
849             ..
850         }) => match cx.tcx.hir().body(eid).value.kind {
851             ExprKind::Block(ref block, _) => Some(block),
852             _ => None,
853         },
854         _ => None,
855     })
856 }
857
858 /// Gets the loop enclosing the given expression, if any.
859 pub fn get_enclosing_loop(tcx: TyCtxt<'tcx>, expr: &Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
860     let map = tcx.hir();
861     for (_, node) in map.parent_iter(expr.hir_id) {
862         match node {
863             Node::Expr(
864                 e @ Expr {
865                     kind: ExprKind::Loop(..),
866                     ..
867                 },
868             ) => return Some(e),
869             Node::Expr(_) | Node::Stmt(_) | Node::Block(_) | Node::Local(_) | Node::Arm(_) => (),
870             _ => break,
871         }
872     }
873     None
874 }
875
876 /// Gets the parent node if it's an impl block.
877 pub fn get_parent_as_impl(tcx: TyCtxt<'_>, id: HirId) -> Option<&Impl<'_>> {
878     let map = tcx.hir();
879     match map.parent_iter(id).next() {
880         Some((
881             _,
882             Node::Item(Item {
883                 kind: ItemKind::Impl(imp),
884                 ..
885             }),
886         )) => Some(imp),
887         _ => None,
888     }
889 }
890
891 /// Checks if the given expression is the else clause of either an `if` or `if let` expression.
892 pub fn is_else_clause(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
893     let map = tcx.hir();
894     let mut iter = map.parent_iter(expr.hir_id);
895     match iter.next() {
896         Some((arm_id, Node::Arm(..))) => matches!(
897             iter.next(),
898             Some((
899                 _,
900                 Node::Expr(Expr {
901                     kind: ExprKind::Match(_, [_, else_arm], MatchSource::IfLetDesugar { .. }),
902                     ..
903                 })
904             ))
905             if else_arm.hir_id == arm_id
906         ),
907         Some((
908             _,
909             Node::Expr(Expr {
910                 kind: ExprKind::If(_, _, Some(else_expr)),
911                 ..
912             }),
913         )) => else_expr.hir_id == expr.hir_id,
914         _ => false,
915     }
916 }
917
918 /// Checks whether the given expression is a constant integer of the given value.
919 /// unlike `is_integer_literal`, this version does const folding
920 pub fn is_integer_const(cx: &LateContext<'_>, e: &Expr<'_>, value: u128) -> bool {
921     if is_integer_literal(e, value) {
922         return true;
923     }
924     let map = cx.tcx.hir();
925     let parent_item = map.get_parent_item(e.hir_id);
926     if let Some((Constant::Int(v), _)) = map
927         .maybe_body_owned_by(parent_item)
928         .and_then(|body_id| constant(cx, cx.tcx.typeck_body(body_id), e))
929     {
930         value == v
931     } else {
932         false
933     }
934 }
935
936 /// Checks whether the given expression is a constant literal of the given value.
937 pub fn is_integer_literal(expr: &Expr<'_>, value: u128) -> bool {
938     // FIXME: use constant folding
939     if let ExprKind::Lit(ref spanned) = expr.kind {
940         if let LitKind::Int(v, _) = spanned.node {
941             return v == value;
942         }
943     }
944     false
945 }
946
947 /// Returns `true` if the given `Expr` has been coerced before.
948 ///
949 /// Examples of coercions can be found in the Nomicon at
950 /// <https://doc.rust-lang.org/nomicon/coercions.html>.
951 ///
952 /// See `rustc_middle::ty::adjustment::Adjustment` and `rustc_typeck::check::coercion` for more
953 /// information on adjustments and coercions.
954 pub fn is_adjusted(cx: &LateContext<'_>, e: &Expr<'_>) -> bool {
955     cx.typeck_results().adjustments().get(e.hir_id).is_some()
956 }
957
958 /// Returns the pre-expansion span if is this comes from an expansion of the
959 /// macro `name`.
960 /// See also `is_direct_expn_of`.
961 #[must_use]
962 pub fn is_expn_of(mut span: Span, name: &str) -> Option<Span> {
963     loop {
964         if span.from_expansion() {
965             let data = span.ctxt().outer_expn_data();
966             let new_span = data.call_site;
967
968             if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
969                 if mac_name.as_str() == name {
970                     return Some(new_span);
971                 }
972             }
973
974             span = new_span;
975         } else {
976             return None;
977         }
978     }
979 }
980
981 /// Returns the pre-expansion span if the span directly comes from an expansion
982 /// of the macro `name`.
983 /// The difference with `is_expn_of` is that in
984 /// ```rust,ignore
985 /// foo!(bar!(42));
986 /// ```
987 /// `42` is considered expanded from `foo!` and `bar!` by `is_expn_of` but only
988 /// `bar!` by
989 /// `is_direct_expn_of`.
990 #[must_use]
991 pub fn is_direct_expn_of(span: Span, name: &str) -> Option<Span> {
992     if span.from_expansion() {
993         let data = span.ctxt().outer_expn_data();
994         let new_span = data.call_site;
995
996         if let ExpnKind::Macro(MacroKind::Bang, mac_name) = data.kind {
997             if mac_name.as_str() == name {
998                 return Some(new_span);
999             }
1000         }
1001     }
1002
1003     None
1004 }
1005
1006 /// Convenience function to get the return type of a function.
1007 pub fn return_ty<'tcx>(cx: &LateContext<'tcx>, fn_item: hir::HirId) -> Ty<'tcx> {
1008     let fn_def_id = cx.tcx.hir().local_def_id(fn_item);
1009     let ret_ty = cx.tcx.fn_sig(fn_def_id).output();
1010     cx.tcx.erase_late_bound_regions(ret_ty)
1011 }
1012
1013 /// Checks if an expression is constructing a tuple-like enum variant or struct
1014 pub fn is_ctor_or_promotable_const_function(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1015     if let ExprKind::Call(ref fun, _) = expr.kind {
1016         if let ExprKind::Path(ref qp) = fun.kind {
1017             let res = cx.qpath_res(qp, fun.hir_id);
1018             return match res {
1019                 def::Res::Def(DefKind::Variant | DefKind::Ctor(..), ..) => true,
1020                 def::Res::Def(_, def_id) => cx.tcx.is_promotable_const_fn(def_id),
1021                 _ => false,
1022             };
1023         }
1024     }
1025     false
1026 }
1027
1028 /// Returns `true` if a pattern is refutable.
1029 // TODO: should be implemented using rustc/mir_build/thir machinery
1030 pub fn is_refutable(cx: &LateContext<'_>, pat: &Pat<'_>) -> bool {
1031     fn is_enum_variant(cx: &LateContext<'_>, qpath: &QPath<'_>, id: HirId) -> bool {
1032         matches!(
1033             cx.qpath_res(qpath, id),
1034             def::Res::Def(DefKind::Variant, ..) | Res::Def(DefKind::Ctor(def::CtorOf::Variant, _), _)
1035         )
1036     }
1037
1038     fn are_refutable<'a, I: Iterator<Item = &'a Pat<'a>>>(cx: &LateContext<'_>, mut i: I) -> bool {
1039         i.any(|pat| is_refutable(cx, pat))
1040     }
1041
1042     match pat.kind {
1043         PatKind::Wild => false,
1044         PatKind::Binding(_, _, _, pat) => pat.map_or(false, |pat| is_refutable(cx, pat)),
1045         PatKind::Box(ref pat) | PatKind::Ref(ref pat, _) => is_refutable(cx, pat),
1046         PatKind::Lit(..) | PatKind::Range(..) => true,
1047         PatKind::Path(ref qpath) => is_enum_variant(cx, qpath, pat.hir_id),
1048         PatKind::Or(ref pats) => {
1049             // TODO: should be the honest check, that pats is exhaustive set
1050             are_refutable(cx, pats.iter().map(|pat| &**pat))
1051         },
1052         PatKind::Tuple(ref pats, _) => are_refutable(cx, pats.iter().map(|pat| &**pat)),
1053         PatKind::Struct(ref qpath, ref fields, _) => {
1054             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, fields.iter().map(|field| &*field.pat))
1055         },
1056         PatKind::TupleStruct(ref qpath, ref pats, _) => {
1057             is_enum_variant(cx, qpath, pat.hir_id) || are_refutable(cx, pats.iter().map(|pat| &**pat))
1058         },
1059         PatKind::Slice(ref head, ref middle, ref tail) => {
1060             match &cx.typeck_results().node_type(pat.hir_id).kind() {
1061                 rustc_ty::Slice(..) => {
1062                     // [..] is the only irrefutable slice pattern.
1063                     !head.is_empty() || middle.is_none() || !tail.is_empty()
1064                 },
1065                 rustc_ty::Array(..) => {
1066                     are_refutable(cx, head.iter().chain(middle).chain(tail.iter()).map(|pat| &**pat))
1067                 },
1068                 _ => {
1069                     // unreachable!()
1070                     true
1071                 },
1072             }
1073         },
1074     }
1075 }
1076
1077 /// If the pattern is an `or` pattern, call the function once for each sub pattern. Otherwise, call
1078 /// the function once on the given pattern.
1079 pub fn recurse_or_patterns<'tcx, F: FnMut(&'tcx Pat<'tcx>)>(pat: &'tcx Pat<'tcx>, mut f: F) {
1080     if let PatKind::Or(pats) = pat.kind {
1081         pats.iter().copied().for_each(f)
1082     } else {
1083         f(pat)
1084     }
1085 }
1086
1087 /// Checks for the `#[automatically_derived]` attribute all `#[derive]`d
1088 /// implementations have.
1089 pub fn is_automatically_derived(attrs: &[ast::Attribute]) -> bool {
1090     attrs.iter().any(|attr| attr.has_name(sym::automatically_derived))
1091 }
1092
1093 /// Remove blocks around an expression.
1094 ///
1095 /// Ie. `x`, `{ x }` and `{{{{ x }}}}` all give `x`. `{ x; y }` and `{}` return
1096 /// themselves.
1097 pub fn remove_blocks<'tcx>(mut expr: &'tcx Expr<'tcx>) -> &'tcx Expr<'tcx> {
1098     while let ExprKind::Block(ref block, ..) = expr.kind {
1099         match (block.stmts.is_empty(), block.expr.as_ref()) {
1100             (true, Some(e)) => expr = e,
1101             _ => break,
1102         }
1103     }
1104     expr
1105 }
1106
1107 pub fn is_self(slf: &Param<'_>) -> bool {
1108     if let PatKind::Binding(.., name, _) = slf.pat.kind {
1109         name.name == kw::SelfLower
1110     } else {
1111         false
1112     }
1113 }
1114
1115 pub fn is_self_ty(slf: &hir::Ty<'_>) -> bool {
1116     if_chain! {
1117         if let TyKind::Path(QPath::Resolved(None, ref path)) = slf.kind;
1118         if let Res::SelfTy(..) = path.res;
1119         then {
1120             return true
1121         }
1122     }
1123     false
1124 }
1125
1126 pub fn iter_input_pats<'tcx>(decl: &FnDecl<'_>, body: &'tcx Body<'_>) -> impl Iterator<Item = &'tcx Param<'tcx>> {
1127     (0..decl.inputs.len()).map(move |i| &body.params[i])
1128 }
1129
1130 /// Checks if a given expression is a match expression expanded from the `?`
1131 /// operator or the `try` macro.
1132 pub fn is_try<'tcx>(cx: &LateContext<'_>, expr: &'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>> {
1133     fn is_ok(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1134         if_chain! {
1135             if let PatKind::TupleStruct(ref path, ref pat, None) = arm.pat.kind;
1136             if is_lang_ctor(cx, path, ResultOk);
1137             if let PatKind::Binding(_, hir_id, _, None) = pat[0].kind;
1138             if path_to_local_id(arm.body, hir_id);
1139             then {
1140                 return true;
1141             }
1142         }
1143         false
1144     }
1145
1146     fn is_err(cx: &LateContext<'_>, arm: &Arm<'_>) -> bool {
1147         if let PatKind::TupleStruct(ref path, _, _) = arm.pat.kind {
1148             is_lang_ctor(cx, path, ResultErr)
1149         } else {
1150             false
1151         }
1152     }
1153
1154     if let ExprKind::Match(_, ref arms, ref source) = expr.kind {
1155         // desugared from a `?` operator
1156         if let MatchSource::TryDesugar = *source {
1157             return Some(expr);
1158         }
1159
1160         if_chain! {
1161             if arms.len() == 2;
1162             if arms[0].guard.is_none();
1163             if arms[1].guard.is_none();
1164             if (is_ok(cx, &arms[0]) && is_err(cx, &arms[1])) ||
1165                 (is_ok(cx, &arms[1]) && is_err(cx, &arms[0]));
1166             then {
1167                 return Some(expr);
1168             }
1169         }
1170     }
1171
1172     None
1173 }
1174
1175 /// Returns `true` if the lint is allowed in the current context
1176 ///
1177 /// Useful for skipping long running code when it's unnecessary
1178 pub fn is_allowed(cx: &LateContext<'_>, lint: &'static Lint, id: HirId) -> bool {
1179     cx.tcx.lint_level_at_node(lint, id).0 == Level::Allow
1180 }
1181
1182 pub fn strip_pat_refs<'hir>(mut pat: &'hir Pat<'hir>) -> &'hir Pat<'hir> {
1183     while let PatKind::Ref(subpat, _) = pat.kind {
1184         pat = subpat;
1185     }
1186     pat
1187 }
1188
1189 pub fn int_bits(tcx: TyCtxt<'_>, ity: rustc_ty::IntTy) -> u64 {
1190     Integer::from_int_ty(&tcx, ity).size().bits()
1191 }
1192
1193 #[allow(clippy::cast_possible_wrap)]
1194 /// Turn a constant int byte representation into an i128
1195 pub fn sext(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::IntTy) -> i128 {
1196     let amt = 128 - int_bits(tcx, ity);
1197     ((u as i128) << amt) >> amt
1198 }
1199
1200 #[allow(clippy::cast_sign_loss)]
1201 /// clip unused bytes
1202 pub fn unsext(tcx: TyCtxt<'_>, u: i128, ity: rustc_ty::IntTy) -> u128 {
1203     let amt = 128 - int_bits(tcx, ity);
1204     ((u as u128) << amt) >> amt
1205 }
1206
1207 /// clip unused bytes
1208 pub fn clip(tcx: TyCtxt<'_>, u: u128, ity: rustc_ty::UintTy) -> u128 {
1209     let bits = Integer::from_uint_ty(&tcx, ity).size().bits();
1210     let amt = 128 - bits;
1211     (u << amt) >> amt
1212 }
1213
1214 pub fn any_parent_is_automatically_derived(tcx: TyCtxt<'_>, node: HirId) -> bool {
1215     let map = &tcx.hir();
1216     let mut prev_enclosing_node = None;
1217     let mut enclosing_node = node;
1218     while Some(enclosing_node) != prev_enclosing_node {
1219         if is_automatically_derived(map.attrs(enclosing_node)) {
1220             return true;
1221         }
1222         prev_enclosing_node = Some(enclosing_node);
1223         enclosing_node = map.get_parent_item(enclosing_node);
1224     }
1225     false
1226 }
1227
1228 /// Matches a function call with the given path and returns the arguments.
1229 ///
1230 /// Usage:
1231 ///
1232 /// ```rust,ignore
1233 /// if let Some(args) = match_function_call(cx, cmp_max_call, &paths::CMP_MAX);
1234 /// ```
1235 pub fn match_function_call<'tcx>(
1236     cx: &LateContext<'tcx>,
1237     expr: &'tcx Expr<'_>,
1238     path: &[&str],
1239 ) -> Option<&'tcx [Expr<'tcx>]> {
1240     if_chain! {
1241         if let ExprKind::Call(ref fun, ref args) = expr.kind;
1242         if let ExprKind::Path(ref qpath) = fun.kind;
1243         if let Some(fun_def_id) = cx.qpath_res(qpath, fun.hir_id).opt_def_id();
1244         if match_def_path(cx, fun_def_id, path);
1245         then {
1246             return Some(&args)
1247         }
1248     };
1249     None
1250 }
1251
1252 /// Checks if the given `DefId` matches any of the paths. Returns the index of matching path, if
1253 /// any.
1254 pub fn match_any_def_paths(cx: &LateContext<'_>, did: DefId, paths: &[&[&str]]) -> Option<usize> {
1255     let search_path = cx.get_def_path(did);
1256     paths
1257         .iter()
1258         .position(|p| p.iter().map(|x| Symbol::intern(x)).eq(search_path.iter().copied()))
1259 }
1260
1261 /// Checks if the given `DefId` matches the path.
1262 pub fn match_def_path<'tcx>(cx: &LateContext<'tcx>, did: DefId, syms: &[&str]) -> bool {
1263     // We should probably move to Symbols in Clippy as well rather than interning every time.
1264     let path = cx.get_def_path(did);
1265     syms.iter().map(|x| Symbol::intern(x)).eq(path.iter().copied())
1266 }
1267
1268 pub fn match_panic_call(cx: &LateContext<'_>, expr: &'tcx Expr<'_>) -> Option<&'tcx Expr<'tcx>> {
1269     if let ExprKind::Call(func, [arg]) = expr.kind {
1270         expr_path_res(cx, func)
1271             .opt_def_id()
1272             .map_or(false, |id| match_panic_def_id(cx, id))
1273             .then(|| arg)
1274     } else {
1275         None
1276     }
1277 }
1278
1279 pub fn match_panic_def_id(cx: &LateContext<'_>, did: DefId) -> bool {
1280     match_any_def_paths(
1281         cx,
1282         did,
1283         &[
1284             &paths::BEGIN_PANIC,
1285             &paths::BEGIN_PANIC_FMT,
1286             &paths::PANIC_ANY,
1287             &paths::PANICKING_PANIC,
1288             &paths::PANICKING_PANIC_FMT,
1289             &paths::PANICKING_PANIC_STR,
1290         ],
1291     )
1292     .is_some()
1293 }
1294
1295 /// Returns the list of condition expressions and the list of blocks in a
1296 /// sequence of `if/else`.
1297 /// E.g., this returns `([a, b], [c, d, e])` for the expression
1298 /// `if a { c } else if b { d } else { e }`.
1299 pub fn if_sequence<'tcx>(mut expr: &'tcx Expr<'tcx>) -> (Vec<&'tcx Expr<'tcx>>, Vec<&'tcx Block<'tcx>>) {
1300     let mut conds = Vec::new();
1301     let mut blocks: Vec<&Block<'_>> = Vec::new();
1302
1303     while let ExprKind::If(ref cond, ref then_expr, ref else_expr) = expr.kind {
1304         conds.push(&**cond);
1305         if let ExprKind::Block(ref block, _) = then_expr.kind {
1306             blocks.push(block);
1307         } else {
1308             panic!("ExprKind::If node is not an ExprKind::Block");
1309         }
1310
1311         if let Some(ref else_expr) = *else_expr {
1312             expr = else_expr;
1313         } else {
1314             break;
1315         }
1316     }
1317
1318     // final `else {..}`
1319     if !blocks.is_empty() {
1320         if let ExprKind::Block(ref block, _) = expr.kind {
1321             blocks.push(&**block);
1322         }
1323     }
1324
1325     (conds, blocks)
1326 }
1327
1328 /// Checks if the given function kind is an async function.
1329 pub fn is_async_fn(kind: FnKind) -> bool {
1330     matches!(kind, FnKind::ItemFn(_, _, header, _) if header.asyncness == IsAsync::Async)
1331 }
1332
1333 /// Peels away all the compiler generated code surrounding the body of an async function,
1334 pub fn get_async_fn_body(tcx: TyCtxt<'tcx>, body: &Body<'_>) -> Option<&'tcx Expr<'tcx>> {
1335     if let ExprKind::Call(
1336         _,
1337         &[Expr {
1338             kind: ExprKind::Closure(_, _, body, _, _),
1339             ..
1340         }],
1341     ) = body.value.kind
1342     {
1343         if let ExprKind::Block(
1344             Block {
1345                 stmts: [],
1346                 expr:
1347                     Some(Expr {
1348                         kind: ExprKind::DropTemps(expr),
1349                         ..
1350                     }),
1351                 ..
1352             },
1353             _,
1354         ) = tcx.hir().body(body).value.kind
1355         {
1356             return Some(expr);
1357         }
1358     };
1359     None
1360 }
1361
1362 // Finds the `#[must_use]` attribute, if any
1363 pub fn must_use_attr(attrs: &[Attribute]) -> Option<&Attribute> {
1364     attrs.iter().find(|a| a.has_name(sym::must_use))
1365 }
1366
1367 // check if expr is calling method or function with #[must_use] attribute
1368 pub fn is_must_use_func_call(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
1369     let did = match expr.kind {
1370         ExprKind::Call(ref path, _) => if_chain! {
1371             if let ExprKind::Path(ref qpath) = path.kind;
1372             if let def::Res::Def(_, did) = cx.qpath_res(qpath, path.hir_id);
1373             then {
1374                 Some(did)
1375             } else {
1376                 None
1377             }
1378         },
1379         ExprKind::MethodCall(_, _, _, _) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1380         _ => None,
1381     };
1382
1383     did.map_or(false, |did| must_use_attr(&cx.tcx.get_attrs(did)).is_some())
1384 }
1385
1386 /// Gets the node where an expression is either used, or it's type is unified with another branch.
1387 pub fn get_expr_use_or_unification_node(tcx: TyCtxt<'tcx>, expr: &Expr<'_>) -> Option<Node<'tcx>> {
1388     let map = tcx.hir();
1389     let mut child_id = expr.hir_id;
1390     let mut iter = map.parent_iter(child_id);
1391     loop {
1392         match iter.next() {
1393             None => break None,
1394             Some((id, Node::Block(_))) => child_id = id,
1395             Some((id, Node::Arm(arm))) if arm.body.hir_id == child_id => child_id = id,
1396             Some((_, Node::Expr(expr))) => match expr.kind {
1397                 ExprKind::Match(_, [arm], _) if arm.hir_id == child_id => child_id = expr.hir_id,
1398                 ExprKind::Block(..) | ExprKind::DropTemps(_) => child_id = expr.hir_id,
1399                 ExprKind::If(_, then_expr, None) if then_expr.hir_id == child_id => break None,
1400                 _ => break Some(Node::Expr(expr)),
1401             },
1402             Some((_, node)) => break Some(node),
1403         }
1404     }
1405 }
1406
1407 /// Checks if the result of an expression is used, or it's type is unified with another branch.
1408 pub fn is_expr_used_or_unified(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
1409     !matches!(
1410         get_expr_use_or_unification_node(tcx, expr),
1411         None | Some(Node::Stmt(Stmt {
1412             kind: StmtKind::Expr(_)
1413                 | StmtKind::Semi(_)
1414                 | StmtKind::Local(Local {
1415                     pat: Pat {
1416                         kind: PatKind::Wild,
1417                         ..
1418                     },
1419                     ..
1420                 }),
1421             ..
1422         }))
1423     )
1424 }
1425
1426 /// Checks if the expression is the final expression returned from a block.
1427 pub fn is_expr_final_block_expr(tcx: TyCtxt<'_>, expr: &Expr<'_>) -> bool {
1428     matches!(get_parent_node(tcx, expr.hir_id), Some(Node::Block(..)))
1429 }
1430
1431 pub fn is_no_std_crate(cx: &LateContext<'_>) -> bool {
1432     cx.tcx.hir().attrs(hir::CRATE_HIR_ID).iter().any(|attr| {
1433         if let ast::AttrKind::Normal(ref attr, _) = attr.kind {
1434             attr.path == sym::no_std
1435         } else {
1436             false
1437         }
1438     })
1439 }
1440
1441 /// Check if parent of a hir node is a trait implementation block.
1442 /// For example, `f` in
1443 /// ```rust,ignore
1444 /// impl Trait for S {
1445 ///     fn f() {}
1446 /// }
1447 /// ```
1448 pub fn is_trait_impl_item(cx: &LateContext<'_>, hir_id: HirId) -> bool {
1449     if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
1450         matches!(item.kind, ItemKind::Impl(hir::Impl { of_trait: Some(_), .. }))
1451     } else {
1452         false
1453     }
1454 }
1455
1456 /// Check if it's even possible to satisfy the `where` clause for the item.
1457 ///
1458 /// `trivial_bounds` feature allows functions with unsatisfiable bounds, for example:
1459 ///
1460 /// ```ignore
1461 /// fn foo() where i32: Iterator {
1462 ///     for _ in 2i32 {}
1463 /// }
1464 /// ```
1465 pub fn fn_has_unsatisfiable_preds(cx: &LateContext<'_>, did: DefId) -> bool {
1466     use rustc_trait_selection::traits;
1467     let predicates = cx
1468         .tcx
1469         .predicates_of(did)
1470         .predicates
1471         .iter()
1472         .filter_map(|(p, _)| if p.is_global() { Some(*p) } else { None });
1473     traits::impossible_predicates(
1474         cx.tcx,
1475         traits::elaborate_predicates(cx.tcx, predicates)
1476             .map(|o| o.predicate)
1477             .collect::<Vec<_>>(),
1478     )
1479 }
1480
1481 /// Returns the `DefId` of the callee if the given expression is a function or method call.
1482 pub fn fn_def_id(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<DefId> {
1483     match &expr.kind {
1484         ExprKind::MethodCall(..) => cx.typeck_results().type_dependent_def_id(expr.hir_id),
1485         ExprKind::Call(
1486             Expr {
1487                 kind: ExprKind::Path(qpath),
1488                 hir_id: path_hir_id,
1489                 ..
1490             },
1491             ..,
1492         ) => cx.typeck_results().qpath_res(qpath, *path_hir_id).opt_def_id(),
1493         _ => None,
1494     }
1495 }
1496
1497 /// This function checks if any of the lints in the slice is enabled for the provided `HirId`.
1498 /// A lint counts as enabled with any of the levels: `Level::Forbid` | `Level::Deny` | `Level::Warn`
1499 ///
1500 /// ```ignore
1501 /// #[deny(clippy::YOUR_AWESOME_LINT)]
1502 /// println!("Hello, World!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == true
1503 ///
1504 /// #[allow(clippy::YOUR_AWESOME_LINT)]
1505 /// println!("See you soon!"); // <- Clippy code: run_lints(cx, &[YOUR_AWESOME_LINT], id) == false
1506 /// ```
1507 pub fn run_lints(cx: &LateContext<'_>, lints: &[&'static Lint], id: HirId) -> bool {
1508     lints.iter().any(|lint| {
1509         matches!(
1510             cx.tcx.lint_level_at_node(lint, id),
1511             (Level::Forbid | Level::Deny | Level::Warn, _)
1512         )
1513     })
1514 }
1515
1516 /// Returns Option<String> where String is a textual representation of the type encapsulated in the
1517 /// slice iff the given expression is a slice of primitives (as defined in the
1518 /// `is_recursively_primitive_type` function) and None otherwise.
1519 pub fn is_slice_of_primitives(cx: &LateContext<'_>, expr: &Expr<'_>) -> Option<String> {
1520     let expr_type = cx.typeck_results().expr_ty_adjusted(expr);
1521     let expr_kind = expr_type.kind();
1522     let is_primitive = match expr_kind {
1523         rustc_ty::Slice(element_type) => is_recursively_primitive_type(element_type),
1524         rustc_ty::Ref(_, inner_ty, _) if matches!(inner_ty.kind(), &rustc_ty::Slice(_)) => {
1525             if let rustc_ty::Slice(element_type) = inner_ty.kind() {
1526                 is_recursively_primitive_type(element_type)
1527             } else {
1528                 unreachable!()
1529             }
1530         },
1531         _ => false,
1532     };
1533
1534     if is_primitive {
1535         // if we have wrappers like Array, Slice or Tuple, print these
1536         // and get the type enclosed in the slice ref
1537         match expr_type.peel_refs().walk().nth(1).unwrap().expect_ty().kind() {
1538             rustc_ty::Slice(..) => return Some("slice".into()),
1539             rustc_ty::Array(..) => return Some("array".into()),
1540             rustc_ty::Tuple(..) => return Some("tuple".into()),
1541             _ => {
1542                 // is_recursively_primitive_type() should have taken care
1543                 // of the rest and we can rely on the type that is found
1544                 let refs_peeled = expr_type.peel_refs();
1545                 return Some(refs_peeled.walk().last().unwrap().to_string());
1546             },
1547         }
1548     }
1549     None
1550 }
1551
1552 /// returns list of all pairs (a, b) from `exprs` such that `eq(a, b)`
1553 /// `hash` must be comformed with `eq`
1554 pub fn search_same<T, Hash, Eq>(exprs: &[T], hash: Hash, eq: Eq) -> Vec<(&T, &T)>
1555 where
1556     Hash: Fn(&T) -> u64,
1557     Eq: Fn(&T, &T) -> bool,
1558 {
1559     if exprs.len() == 2 && eq(&exprs[0], &exprs[1]) {
1560         return vec![(&exprs[0], &exprs[1])];
1561     }
1562
1563     let mut match_expr_list: Vec<(&T, &T)> = Vec::new();
1564
1565     let mut map: FxHashMap<_, Vec<&_>> =
1566         FxHashMap::with_capacity_and_hasher(exprs.len(), BuildHasherDefault::default());
1567
1568     for expr in exprs {
1569         match map.entry(hash(expr)) {
1570             Entry::Occupied(mut o) => {
1571                 for o in o.get() {
1572                     if eq(o, expr) {
1573                         match_expr_list.push((o, expr));
1574                     }
1575                 }
1576                 o.get_mut().push(expr);
1577             },
1578             Entry::Vacant(v) => {
1579                 v.insert(vec![expr]);
1580             },
1581         }
1582     }
1583
1584     match_expr_list
1585 }
1586
1587 /// Peels off all references on the pattern. Returns the underlying pattern and the number of
1588 /// references removed.
1589 pub fn peel_hir_pat_refs(pat: &'a Pat<'a>) -> (&'a Pat<'a>, usize) {
1590     fn peel(pat: &'a Pat<'a>, count: usize) -> (&'a Pat<'a>, usize) {
1591         if let PatKind::Ref(pat, _) = pat.kind {
1592             peel(pat, count + 1)
1593         } else {
1594             (pat, count)
1595         }
1596     }
1597     peel(pat, 0)
1598 }
1599
1600 /// Peels of expressions while the given closure returns `Some`.
1601 pub fn peel_hir_expr_while<'tcx>(
1602     mut expr: &'tcx Expr<'tcx>,
1603     mut f: impl FnMut(&'tcx Expr<'tcx>) -> Option<&'tcx Expr<'tcx>>,
1604 ) -> &'tcx Expr<'tcx> {
1605     while let Some(e) = f(expr) {
1606         expr = e;
1607     }
1608     expr
1609 }
1610
1611 /// Peels off up to the given number of references on the expression. Returns the underlying
1612 /// expression and the number of references removed.
1613 pub fn peel_n_hir_expr_refs(expr: &'a Expr<'a>, count: usize) -> (&'a Expr<'a>, usize) {
1614     let mut remaining = count;
1615     let e = peel_hir_expr_while(expr, |e| match e.kind {
1616         ExprKind::AddrOf(BorrowKind::Ref, _, e) if remaining != 0 => {
1617             remaining -= 1;
1618             Some(e)
1619         },
1620         _ => None,
1621     });
1622     (e, count - remaining)
1623 }
1624
1625 /// Peels off all references on the expression. Returns the underlying expression and the number of
1626 /// references removed.
1627 pub fn peel_hir_expr_refs(expr: &'a Expr<'a>) -> (&'a Expr<'a>, usize) {
1628     let mut count = 0;
1629     let e = peel_hir_expr_while(expr, |e| match e.kind {
1630         ExprKind::AddrOf(BorrowKind::Ref, _, e) => {
1631             count += 1;
1632             Some(e)
1633         },
1634         _ => None,
1635     });
1636     (e, count)
1637 }
1638
1639 #[macro_export]
1640 macro_rules! unwrap_cargo_metadata {
1641     ($cx: ident, $lint: ident, $deps: expr) => {{
1642         let mut command = cargo_metadata::MetadataCommand::new();
1643         if !$deps {
1644             command.no_deps();
1645         }
1646
1647         match command.exec() {
1648             Ok(metadata) => metadata,
1649             Err(err) => {
1650                 span_lint($cx, $lint, DUMMY_SP, &format!("could not read cargo metadata: {}", err));
1651                 return;
1652             },
1653         }
1654     }};
1655 }
1656
1657 pub fn is_hir_ty_cfg_dependant(cx: &LateContext<'_>, ty: &hir::Ty<'_>) -> bool {
1658     if_chain! {
1659         if let TyKind::Path(QPath::Resolved(_, path)) = ty.kind;
1660         if let Res::Def(_, def_id) = path.res;
1661         then {
1662             cx.tcx.has_attr(def_id, sym::cfg) || cx.tcx.has_attr(def_id, sym::cfg_attr)
1663         } else {
1664             false
1665         }
1666     }
1667 }