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