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